Skip to content

Commit

Permalink
[MIRROR] Fix spiderlings growing that shouldn't grow
Browse files Browse the repository at this point in the history
  • Loading branch information
SierraKomodo authored and SuhEugene committed Oct 14, 2023
1 parent 39dbd73 commit d5d928b
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) || istype(loc, /obj/item/organ/external) && 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 d5d928b

Please sign in to comment.