Clibano Furnace world breaker
Reaviik opened this issue · 2 comments
Describe the bug
The error occurs when a Clibano Kiln is broken. Instead of being completely disassembled, it remains assembled, but with the insides invisible. Additionally, this error causes a server crash, resulting in no drops when breaking blocks and items left on the ground disappearing.
To Reproduce
Steps to reproduce the behavior:
- Make a Clibano Furnace
- Craft any item
- Break the furnace
Expected behavior
Versions
- Minecraft: 1.20.1
- Forbidden & Arcanus: 2.2.6
- Forge: 47.2.20
- Fork: Arclight 1.0.5
Additional context
Add any other context about the problem here.
I don't think older versions than 1.21.1 get any updates, but I made a fix with KubeJS mod. You have to make a server script and copy this code
BlockEvents.broken('forbidden_arcanus:clibano_center', event => {
event.block.set('minecraft:air')
event.cancel()
})
BlockEvents.broken('forbidden_arcanus:clibano_corner', event => {
event.block.set('minecraft:air')
event.cancel()
})
BlockEvents.broken('forbidden_arcanus:clibano_side_vertical', event => {
event.block.set('minecraft:air')
event.cancel()
})
BlockEvents.broken('forbidden_arcanus:clibano_side_horizontal', event => {
event.block.set('minecraft:air')
event.cancel()
})