From 4681343b3cafec623e4088db79f1ee86c2e48861 Mon Sep 17 00:00:00 2001 From: Aurorablade Date: Sat, 14 Nov 2015 14:34:07 -0500 Subject: [PATCH] removes shadow thing --- code/modules/flufftext/Hallucination.dm | 31 +------------------------ 1 file changed, 1 insertion(+), 30 deletions(-) diff --git a/code/modules/flufftext/Hallucination.dm b/code/modules/flufftext/Hallucination.dm index c49da02d6c7..0151136b580 100644 --- a/code/modules/flufftext/Hallucination.dm +++ b/code/modules/flufftext/Hallucination.dm @@ -766,33 +766,4 @@ var/list/non_fakeattack_weapons = list(/obj/item/weapon/gun/projectile, /obj/ite if(client) client.images += halbody spawn(rand(50,80)) //Only seen for a brief moment. if(client) client.images -= halbody - halbody = null - - -//spooky stuff -/obj/effect/hallucination/simple/shadowman - image_icon = 'icons/mob/mob.dmi' - image_state = "shadow" - -/obj/effect/hallucination/simple/shadowman/New(loc,var/mob/living/carbon/T) - ..() - name = "Strange Shadow" - return - - -/obj/effect/hallucination/shadow_scare - var/obj/effect/hallucination/simple/shadowman/s = null - -/obj/effect/hallucination/shadow_scare/New(loc,var/mob/living/carbon/T) - target = T - var/turf/start = T.loc - var/screen_border = pick(SOUTH,EAST,WEST,NORTH) - var/shadow_direction = pick(SOUTH,EAST,WEST,NORTH) - for(var/i = 0,i<11,i++) - start = get_step(start,screen_border) - s = new(start,shadow_direction) - for(var/i = 0,i<11,i++) - sleep(5) - s.loc = get_step(get_turf(s),get_dir(s,shadow_direction)) - s.Show() - qdel(s) + halbody = null \ No newline at end of file