mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-08-27 23:27:34 +01:00
[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:
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user