From 2de2c7793e221389063ec429db1cba9881c00014 Mon Sep 17 00:00:00 2001 From: Pyritie Date: Wed, 31 Dec 2025 01:15:50 +0000 Subject: [PATCH] depots are now forge insulation --- CHANGELOG.md | 1 + kubejs/server_scripts/tfc/tags.js | 1 + 2 files changed, 2 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4814497d8..3ffc80c58 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,7 @@ ## Unreleased ### Changes +- Create Depots now count as forge insulation, so a basin can output directly onto one @Pyritie ### Bug fixes ### Translation updates diff --git a/kubejs/server_scripts/tfc/tags.js b/kubejs/server_scripts/tfc/tags.js index f9aaed748..708eedae4 100644 --- a/kubejs/server_scripts/tfc/tags.js +++ b/kubejs/server_scripts/tfc/tags.js @@ -476,6 +476,7 @@ function 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})).*/`); + event.add("tfc:forge_insulation", 'create:depot'); global.TFC_STONE_TYPES.forEach((stone) => { event.add("minecraft:stone_buttons", `tfc:rock/button/${stone}`);