Merge pull request #8356 from Verkister/patch-82

Fixes non-growing spiderlings growing.
This commit is contained in:
Atermonera
2022-02-26 14:08:49 -05:00
committed by VirgoBot
parent 0f8b721e89
commit 8bf40bf593
+1 -1
View File
@@ -171,7 +171,7 @@
pixel_y = rand(6,-6)
START_PROCESSING(SSobj, src)
//50% chance to grow up
if(prob(50))
if(amount_grown != -1 && prob(50))
amount_grown = 1
get_light_and_color(parent)
..()