mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-07-19 02:54:41 +01:00
Prevents alien resin from growing over chasms/lava (#22589)
* the actual fix commit * Update aliens.dm
This commit is contained in:
@@ -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()
|
||||
|
||||
Reference in New Issue
Block a user