buttons again #1625

This commit is contained in:
Pyritie
2025-08-15 22:47:44 +01:00
parent aad81501af
commit beed3094f3

View File

@@ -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) => {