From 2729ade2880b8a7e43bfccc206d347cae8545f8e Mon Sep 17 00:00:00 2001 From: Tigercat2000 Date: Fri, 10 Apr 2015 11:13:18 -0700 Subject: [PATCH] Add spaceworms to /obj/effect/tear exception list This commit adds /mob/living/simple_animal/hostile/spaceWorm to the obj/effect/tear blocked mobs list, to prevent /obj/effect/tear from spawning them. --- code/modules/events/tear.dm | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/code/modules/events/tear.dm b/code/modules/events/tear.dm index a11455b351d..412f34de47d 100644 --- a/code/modules/events/tear.dm +++ b/code/modules/events/tear.dm @@ -59,7 +59,9 @@ /mob/living/simple_animal/hostile/panther, /mob/living/simple_animal/hostile/snake, /mob/living/simple_animal/hostile/retaliate, - /mob/living/simple_animal/hostile/retaliate/clown + /mob/living/simple_animal/hostile/retaliate/clown, + /mob/living/simple_animal/hostile/spaceWorm/, + /mob/living/simple_animal/hostile/spaceWorm/wormHead/ )//exclusion list for things you don't want the reaction to create. var/list/critters = typesof(/mob/living/simple_animal/hostile) - blocked // list of possible hostile mobs