Terrascript - Smart waterlog
astrsh opened this issue ยท 2 comments
Would be nice to be able to set an option within terrascript scripts that adds the waterlogged blockstate to any block() function if the x, y, z returns "OCEAN" with the check() function
This is possible to implement by hand but would be very time consuming - especially if you have a large amount of scripts that run into this issue:
Might be interesting to have a function like enableWaterLogging()
, and then all future blocks placed in water will be waterlogged, then disableWaterLogging()
to stop it.
Alternatively, we could just do waterLogging(true)
and waterLogging(false)
.
Implemented as setWatelog(bool)
in 5028582