Fix smashOnBreak not being honored

This commit is contained in:
DBotThePony 2024-04-22 22:22:01 +07:00
parent 934e8f8479
commit fd583cf2b9
Signed by: DBot
GPG Key ID: DCC23B5715498507

View File

@ -628,7 +628,7 @@ open class WorldObject(val config: Registry.Entry<ObjectDefinition>) : TileEntit
override fun onRemove(world: World<*, *>, reason: RemovalReason) {
super.onRemove(world, reason)
val doSmash = health <= 0.0
val doSmash = health <= 0.0 || lookupProperty("smashOnBreak") { JsonPrimitive(config.value.smashOnBreak) }.asBoolean
fun spawnRandomItems(poolName: String, optionsName: String, seedName: String): Boolean {
val dropPool = lookupProperty(poolName) { JsonPrimitive("") }.asString