[1.19.2] KubeJS and FTB Ultimine
GWSheridan opened this issue ยท 0 comments
Minecraft Version
1.19.2
KubeJS Version
1902.6,2-build54
Rhino Version
1902.2.3-build.54
Architectury Version
6.5.85
Forge/Fabric Version
43.3.0
Describe your issue
When having the startup script that changes mining speed of stone, cobblestone and deepslate. While mining with FTB Ultimine with mining tunnel shape it will delete ore above the current tool harvest level. Example mine with stone pickaxe target block deepslate and diamond is in the way. It will mine the blocks and delete the diamond ore no diamonds given. I have included the script used
FTB Ultimate version 1902.4.1-build.90
`BlockEvents.modification(event => {
event.modify('minecraft:stone', block => {
block.destroySpeed = 3.0
});
event.modify('minecraft:cobblestone', block => {
block.destroySpeed = 3.0
});
event.modify('minecraft:deepslate', block => {
block.destroySpeed = 7.0
});
})`