diff --git a/kubejs/server_scripts/tfc/tags.js b/kubejs/server_scripts/tfc/tags.js index 9b7427fe0..93bd2ba28 100644 --- a/kubejs/server_scripts/tfc/tags.js +++ b/kubejs/server_scripts/tfc/tags.js @@ -443,6 +443,11 @@ const registerTFCBlockTags = (event) => { const brick_blacklist = ('drying|slab|stairs|wall|additionalplacements'); event.add('tfc:bloomery_insulation', `/^(?=.*brick)(?!.*(${brick_blacklist})).*/`); event.add('tfc:forge_insulation', `/^(?=.*brick)(?!.*(${brick_blacklist})).*/`); + + global.TFC_STONE_TYPES.forEach(stone => { + event.add('minecraft:stone_buttons', `tfc:rock/button/${stone}`) + event.add('minecraft:buttons', `tfc:rock/button/${stone}`) + }) } const registerTFCFluidTags = (event) => {