From fb1fd1261bbbeedb42c977a4bfde9b59ca53f226 Mon Sep 17 00:00:00 2001 From: meow20 <62257265+meow20@users.noreply.github.com> Date: Sat, 30 Sep 2023 14:25:57 +0200 Subject: [PATCH] Prevents alien resin from growing over chasms/lava (#22589) * the actual fix commit * Update aliens.dm --- code/game/objects/structures/aliens.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/game/objects/structures/aliens.dm b/code/game/objects/structures/aliens.dm index c82a9598882..c11b47c82cd 100644 --- a/code/game/objects/structures/aliens.dm +++ b/code/game/objects/structures/aliens.dm @@ -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()