From 1b7cd0575201150a6440d5c31500e37b253db770 Mon Sep 17 00:00:00 2001 From: MoreRobustThanYou Date: Sun, 15 Oct 2017 22:03:30 -0400 Subject: [PATCH 1/2] EI NATH! now causes a flash of light (#31691) i've been reading too much harry potter --- code/modules/spells/spell_types/godhand.dm | 3 +++ 1 file changed, 3 insertions(+) diff --git a/code/modules/spells/spell_types/godhand.dm b/code/modules/spells/spell_types/godhand.dm index 33f947408a..5ddfb704bf 100644 --- a/code/modules/spells/spell_types/godhand.dm +++ b/code/modules/spells/spell_types/godhand.dm @@ -54,6 +54,9 @@ return var/mob/M = target do_sparks(4, FALSE, M.loc) + for(var/mob/living/L in view(src, 7)) + if(L != user) + L.flash_act(affect_silicon = FALSE) M.gib() ..()