Prevents alien resin from growing over chasms/lava (#22589)

* the actual fix commit

* Update aliens.dm
This commit is contained in:
meow20
2023-09-30 14:25:57 +02:00
committed by GitHub
parent 97debc25b2
commit fb1fd1261b
+1 -1
View File
@@ -350,7 +350,7 @@
return
for(var/turf/T in U.GetAtmosAdjacentTurfs())
if(locate(/obj/structure/alien/weeds) in T || isspaceturf(T))
if((locate(/obj/structure/alien/weeds) in T) || isspaceturf(T) || islava(T) || ischasm(T))
continue
new /obj/structure/alien/weeds(T, linked_node)
check_surroundings()