From 615c6c732a804d82406ec3e3a99598eb31f096ca Mon Sep 17 00:00:00 2001 From: ZomgPonies Date: Wed, 6 Nov 2013 08:03:50 -0500 Subject: [PATCH] Undead event bugfix --- .../mob/living/simple_animal/hostile/retaliate/retaliate.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/mob/living/simple_animal/hostile/retaliate/retaliate.dm b/code/modules/mob/living/simple_animal/hostile/retaliate/retaliate.dm index 6e18ea979a4..a92325743a1 100644 --- a/code/modules/mob/living/simple_animal/hostile/retaliate/retaliate.dm +++ b/code/modules/mob/living/simple_animal/hostile/retaliate/retaliate.dm @@ -51,5 +51,5 @@ /mob/living/simple_animal/hostile/retaliate/DestroySurroundings() for(var/dir in cardinal) // North, South, East, West var/obj/structure/obstacle = locate(/obj/structure, get_step(src, dir)) - if(istype(istype(obstacle, /obj/structure/closet) || istype(obstacle, /obj/structure/table)) + if(istype(obstacle, /obj/structure/closet) || istype(obstacle, /obj/structure/table)) obstacle.attack_animal(src) \ No newline at end of file