From e63bb573e024bae3ef94da1bd9a920cbdc397549 Mon Sep 17 00:00:00 2001 From: Cactus Date: Wed, 21 Aug 2019 18:21:13 -0400 Subject: [PATCH] spiders need a small or larger mob to feed from --- code/modules/mob/living/simple_animal/animals/giant_spider.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/mob/living/simple_animal/animals/giant_spider.dm b/code/modules/mob/living/simple_animal/animals/giant_spider.dm index 99d6c2f18f..5ba28f371b 100644 --- a/code/modules/mob/living/simple_animal/animals/giant_spider.dm +++ b/code/modules/mob/living/simple_animal/animals/giant_spider.dm @@ -553,7 +553,7 @@ Spider Procs walk(src,0) spawn(50) if(busy == SPINNING_COCOON) - if(cocoon_target && istype(cocoon_target.loc, /turf) && get_dist(src,cocoon_target) <= 1) + if(cocoon_target && istype(cocoon_target.loc, /turf) && get_dist(src,cocoon_target) <= 1 && !istiny(cocoon_target)) //Chompstation edit var/obj/effect/spider/cocoon/C = new(cocoon_target.loc) var/large_cocoon = 0 C.pixel_x = cocoon_target.pixel_x