Merge pull request #13224 from Heroman3003/spiderlingnefr

Makes spiderlings not vencrawl when they're more than 75% grown
This commit is contained in:
Novacat
2022-07-01 21:25:06 +00:00
committed by CHOMPStation2
parent acb9521a80
commit ffc07aab0f
+1 -1
View File
@@ -269,7 +269,7 @@
walk_to(src, target_atom, 5)
if(prob(25))
src.visible_message("<span class='notice'>\The [src] skitters[pick(" away"," around","")].</span>")
else if(prob(5))
else if(amount_grown < 75 && prob(5))
//vent crawl!
for(var/obj/machinery/atmospherics/unary/vent_pump/v in view(7,src))
if(!v.welded)