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 */