From 96fb1c8bcc463cdc0f6229fb1d9ac829cde89f81 Mon Sep 17 00:00:00 2001 From: Verkister Date: Thu, 25 Nov 2021 15:42:59 +0200 Subject: [PATCH] Fixes non-growing spiderlings growing. They had functionally 0 difference whatsoever to the regular type here. --- code/game/objects/effects/spiders.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/game/objects/effects/spiders.dm b/code/game/objects/effects/spiders.dm index 3f22fa876b..f7c44dd2af 100644 --- a/code/game/objects/effects/spiders.dm +++ b/code/game/objects/effects/spiders.dm @@ -156,7 +156,7 @@ pixel_y = rand(6,-6) START_PROCESSING(SSobj, src) //50% chance to grow up - if(prob(50)) + if(!istype(src, /obj/effect/spider/spiderling/non_growing) && prob(50)) amount_grown = 1 get_light_and_color(parent) . = ..(ml)