From c41ec4dd5f7459f918802954683cc63f20bb4abc Mon Sep 17 00:00:00 2001 From: Pyritie Date: Thu, 25 Dec 2025 17:04:51 +0000 Subject: [PATCH] fix unusable tfc stone knives that you can find in some ruins --- kubejs/server_scripts/tfc/tags.js | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/kubejs/server_scripts/tfc/tags.js b/kubejs/server_scripts/tfc/tags.js index 2fde44765..4d830893b 100644 --- a/kubejs/server_scripts/tfc/tags.js +++ b/kubejs/server_scripts/tfc/tags.js @@ -369,6 +369,12 @@ function registerTFCItemTags(event) { global.TFC_DRY_MUD_BRICKS.forEach((dryMudBrick) => { event.add("tfc:dry_mud_bricks", dryMudBrick); }); + + // Workaround for some of the ruin structures having tfc knives + event.add('tfc:knives', 'tfc:stone/knife/sedimentary') + event.add('tfc:knives', 'tfc:stone/knife/metamorphic') + event.add('tfc:knives', 'tfc:stone/knife/igneous_intrusive') + event.add('tfc:knives', 'tfc:stone/knife/igneous_extrusive') } /** @param {TagEvent.Block} event */