From 4ab175d8126d497b88e60490ee592667619be3b2 Mon Sep 17 00:00:00 2001 From: silicons <2003111+silicons@users.noreply.github.com> Date: Tue, 28 Jul 2020 12:10:34 -0700 Subject: [PATCH] sigh --- .../mob/living/simple_animal/guardian/types/explosive.dm | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/code/modules/mob/living/simple_animal/guardian/types/explosive.dm b/code/modules/mob/living/simple_animal/guardian/types/explosive.dm index 4f44a51b32..c5369afc20 100644 --- a/code/modules/mob/living/simple_animal/guardian/types/explosive.dm +++ b/code/modules/mob/living/simple_animal/guardian/types/explosive.dm @@ -37,7 +37,7 @@ if(isobj(A) && Adjacent(A)) if(bomb_cooldown <= world.time && !stat) var/datum/component/killerqueen/K = A.AddComponent(/datum/component/killerqueen, CALLBACK(src, .proc/on_explode), CALLBACK(src, .proc/on_failure), \ - examine_message = "It glows with a strange light!")) + examine_message = "It glows with a strange light!") QDEL_IN(K, 1 MINUTES) to_chat(src, "Success! Bomb armed!") bomb_cooldown = world.time + 200 @@ -46,10 +46,10 @@ /mob/living/simple_animal/hostile/guardian/bomb/proc/on_explode(atom/bomb, atom/victim) if((victim == src) || (victim == summoner) || (hasmatchingsummoner(victim))) - to_chat(victim, "[src] glows with a strange light, and you don't touch it.") + to_chat(victim, "[src] glows with a strange light, and you don't touch it.") return FALSE - to_chat(spawner, "One of your explosive traps caught [victim]!") + to_chat(src, "One of your explosive traps caught [victim]!") to_chat(victim, "[bomb] was boobytrapped!") /mob/living/simple_animal/hostile/guardian/bomb/proc/on_failure(atom/bomb) - to_chat(spawner, "Failure! Your trap didn't catch anyone this time.") + to_chat(src, "Failure! Your trap didn't catch anyone this time.")