This commit is contained in:
Dmitry 2024-01-10 21:15:20 +07:00
parent d21e1a9227
commit 50d9b7a0d1
2 changed files with 6 additions and 0 deletions

View file

@ -0,0 +1,5 @@
// priority: 0
const registerComputerCraftBlockTags = (event) => {
event.add('computercraft:turtle_hoe_harvestable', '#tfc:mineable_with_sharp_tool')
}

View file

@ -33,6 +33,7 @@ ServerEvents.tags('item', event => {
*/
ServerEvents.tags('block', event => {
registerTFCBlockTags(event)
registerComputerCraftBlockTags(event)
})
/**