fixed missing saw recipes #2967
This commit is contained in:
parent
811956bf8c
commit
430317bcc8
4 changed files with 10 additions and 7 deletions
|
|
@ -3,6 +3,7 @@
|
|||
## Unreleased
|
||||
### Changes
|
||||
### Bug fixes
|
||||
- Fixed all the missing crafting table saw recipes (#2967)
|
||||
### Translation updates
|
||||
|
||||
## [0.11.19] - 03-02-2026
|
||||
|
|
|
|||
|
|
@ -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'
|
||||
|
|
|
|||
8
kubejs/server_scripts/macaws_for_tfc/tags.js
Normal file
8
kubejs/server_scripts/macaws_for_tfc/tags.js
Normal 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`);
|
||||
})
|
||||
}
|
||||
|
|
@ -37,6 +37,7 @@ ServerEvents.tags('item', event => {
|
|||
registerGreateItemTags(event)
|
||||
registerGTCEUItemTags(event)
|
||||
registerImmersiveAircraftItemTags(event)
|
||||
registerMacawsForTFCItemTags(event)
|
||||
registerMegaCellsItemTags(event)
|
||||
registerMinecraftItemTags(event)
|
||||
registerModernMarkingsItemTags(event)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue