From 09b6a754c0cdb162c62952f32feccfb74b9bb04c Mon Sep 17 00:00:00 2001 From: SkyratBot <59378654+SkyratBot@users.noreply.github.com> Date: Thu, 22 Aug 2024 03:16:47 +0200 Subject: [PATCH] [MIRROR] Fixes kudzu being able to spawn on openspace turfs resulting in it getting stuck (#29503) * Fixes kudzu being able to spawn on openspace turfs resulting in it getting stuck (#85976) ## About The Pull Request Closes #79752 Never got actually fixed ## Changelog :cl: fix: Fixes kudzu being able to spawn on openspace turfs resulting in it getting stuck /:cl: * Fixes kudzu being able to spawn on openspace turfs resulting in it getting stuck --------- Co-authored-by: SmArtKar <44720187+SmArtKar@users.noreply.github.com> --- code/modules/events/space_vines/vine_event.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/events/space_vines/vine_event.dm b/code/modules/events/space_vines/vine_event.dm index 03350abdb09..ce9881c9907 100644 --- a/code/modules/events/space_vines/vine_event.dm +++ b/code/modules/events/space_vines/vine_event.dm @@ -39,7 +39,7 @@ for(var/area/station/hallway/area in GLOB.areas) for(var/turf/open/floor in area.get_turfs_from_all_zlevels()) - if(floor.Enter(vine)) + if(!isopenspaceturf(floor) && floor.Enter(vine)) turfs += floor qdel(vine)