From b655e008236d9c9f46bbd784d0234254336a4aec Mon Sep 17 00:00:00 2001 From: Tyler Date: Sun, 30 Nov 2025 18:36:25 -0600 Subject: [PATCH] expand the Facade Whitelist (#2299) * expand the Facade Whitelist 1. add Reconstituted Stone blocks (likely missing due to oversight) 2. fixes Domum Ornamentum Bricks missing (due to a typo) Both groups seem intended to be whitelisted. Of the variants, only the "normal" Reconstituted Stone is already whitelisted (due to being a **storage block**). This PR adds each missing Reconstituted Stone variant individually, but using `forge` or `minecraft` tags for stone/bricks (rather than the `tfc` tag) may be better. I'm unfamiliar with the best & recommended practices. Signed-off-by: Tyler * Update tags.facades.js Signed-off-by: Tyler * add Reconstituted Stone blocks Signed-off-by: Tyler --------- Signed-off-by: Tyler --- kubejs/server_scripts/tfg/tags.facades.js | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/kubejs/server_scripts/tfg/tags.facades.js b/kubejs/server_scripts/tfg/tags.facades.js index 13c5b8ea6..cb12fa3e3 100644 --- a/kubejs/server_scripts/tfg/tags.facades.js +++ b/kubejs/server_scripts/tfg/tags.facades.js @@ -23,7 +23,7 @@ function registerFacadeWhitelistTags(event) { '#minecraft:terracotta', '#forge:concretes', '#create:casing', - '#dormum_ornamentum:brick_items', + '#domum_ornamentum:brick_items', '#simplylight:any_lamp_on', '#simplylight:any_lamp_off', '#minecraft:planks', @@ -38,7 +38,14 @@ function registerFacadeWhitelistTags(event) { '#tfg:ad_astra_calorite_blocks', '#tfg:ad_astra_etrium_blocks', '#tfg:titanium_concrete', - + + //reconstituted stone blocks + 'minecraft:smooth_stone', + 'minecraft:stone_bricks', + 'minecraft:cracked_stone_bricks', + 'minecraft:chiseled_stone_bricks', + 'minecraft:mossy_stone_bricks', + //rnr shingles 'rnr:ceramic_roof', 'rnr:terracotta_roof',