[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
🆑
fix: Fixes kudzu being able to spawn on openspace turfs resulting in it
getting stuck
/🆑

* Fixes kudzu being able to spawn on openspace turfs resulting in it getting stuck

---------

Co-authored-by: SmArtKar <44720187+SmArtKar@users.noreply.github.com>
This commit is contained in:
SkyratBot
2024-08-22 08:16:47 +07:00
committed by GitHub
co-authored by SmArtKar
parent 922ea687d5
commit 09b6a754c0
@@ -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)