Skip to content

Commit

Permalink
[MIRROR] fix spiderlings not growing when in limbs
Browse files Browse the repository at this point in the history
  • Loading branch information
MuckerMayhem authored and SuhEugene committed Oct 11, 2023
1 parent a2c90c5 commit 9ee9595
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion code/game/objects/effects/spiders.dm
Original file line number Diff line number Diff line change
Expand Up @@ -283,7 +283,7 @@
else if(prob(1))
src.visible_message(SPAN_NOTICE("\The [src] skitters."))

if (istype(loc, /turf) && amount_grown > 0)
if (istype(loc, /turf) || istype(loc, /obj/item/organ/external) && amount_grown > 0)
amount_grown += rand(0,2)

/obj/effect/decal/cleanable/spiderling_remains
Expand Down

0 comments on commit 9ee9595

Please sign in to comment.