fixed missing saw recipes #2967

This commit is contained in:
Pyritie 2026-02-03 20:39:27 +00:00
parent 811956bf8c
commit 430317bcc8
4 changed files with 10 additions and 7 deletions

View file

@ -24,13 +24,6 @@ function registerMacawsForTFCRecipes(event) {
}).id(`tfg:shaped/${wood}_wired_fence`)
})
event.remove({input: ['mcw_tfc_aio:roofs/gray_roofs/gray_roof_slab','#tfc:saws']})
event.shapeless('minecraft:gray_terracotta', [
'mcw_tfc_aio:roofs/gray_roofs/gray_roof_slab',
'mcw_tfc_aio:roofs/gray_roofs/gray_roof_slab'
]).id('minecraft:gray_terracotta')
event.shaped(`4x mcw_tfc_aio:fences/other_fences/hedge`, [
'BAB',
'BAB'

View file

@ -0,0 +1,8 @@
// priority: 0
"use strict";
function registerMacawsForTFCItemTags(event) {
global.MINECRAFT_DYE_NAMES.forEach(color => {
event.remove(`mcw_tfc_aio:${color}_roofs`, `mcw_tfc_aio:roofs/${color}_roofs/${color}_roof_slab`);
})
}

View file

@ -37,6 +37,7 @@ ServerEvents.tags('item', event => {
registerGreateItemTags(event)
registerGTCEUItemTags(event)
registerImmersiveAircraftItemTags(event)
registerMacawsForTFCItemTags(event)
registerMegaCellsItemTags(event)
registerMinecraftItemTags(event)
registerModernMarkingsItemTags(event)