[MIRROR] Prevents moonicorns from placing fairy grass on space/chasm/lava/water turfs [MDB IGNORE] (#23838)

* Prevents moonicorns from placing fairy grass on space/chasm/lava/water turfs (#78368)

## About The Pull Request

Apparently space turfs aren't openspace. Who knew!
They already don't create bridges over openspace turfs, so no reason for
em to make space bridges either.

## Changelog

🆑
fix: fixed moonicorns making space/chasm/lava/water bridges with their
fairy grass
/🆑

* Prevents moonicorns from placing fairy grass on space/chasm/lava/water turfs

---------

Co-authored-by: Sealed101 <cool.bullseye@yandex.ru>
This commit is contained in:
SkyratBot
2023-09-21 14:21:42 -04:00
committed by GitHub
co-authored by Sealed101
parent ef02f48599
commit c31e4d5cf1
@@ -26,7 +26,7 @@
SIGNAL_HANDLER
var/turf/destination = target.loc
if(!isturf(destination) || istype(destination, turf_type) || isopenspaceturf(destination))
if(!isturf(destination) || istype(destination, turf_type) || isgroundlessturf(destination))
return
destination.PlaceOnTop(turf_type)