From 3f172255acbaa4652af7c08e4f5780f0808d762d Mon Sep 17 00:00:00 2001 From: Pyritie Date: Wed, 4 Jun 2025 20:01:04 +0100 Subject: [PATCH] added high quality fabric tags to phantom silk and nylon --- CHANGELOG.md | 1 + kubejs/server_scripts/tfg/tags.js | 6 +++--- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1eba972df..89ea117f1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -16,6 +16,7 @@ - Changed LV chem reactor quest to work with any container of rubber instead of just a rubber bucket (#1116) @ofoxsmith - Added perfect overclock to the electric greenhouse so it scales better with the pyro oven @Pyritie - Increased durability of the blue steel diving suit to match blue steel armor @Pyritie +- Phantom Silk and Polycaprolactam Fabric now count as High Quality Fabric @Pyritie ### Bug fixes - Fixed issue where "melts into" tooltips and certain timers on Jade were missing (#1102) @Xikaro - Improved block ordering logic with AoE mining tools to reduce incorrect cave-ins @voidstar240 diff --git a/kubejs/server_scripts/tfg/tags.js b/kubejs/server_scripts/tfg/tags.js index bc59f145b..852abde96 100644 --- a/kubejs/server_scripts/tfg/tags.js +++ b/kubejs/server_scripts/tfg/tags.js @@ -58,6 +58,8 @@ const registerTFGItemTags = (event) => { //#region Cloth & String event.add('forge:cloth', 'tfg:phantom_silk') event.add('forge:cloth', 'tfg:polycaprolactam_fabric') + event.add('tfc:high_quality_cloth', 'tfg:phantom_silk') + event.add('tfc:high_quality_cloth', 'tfg:polycaprolactam_fabric') event.add('tfc:sewing_light_cloth', 'tfg:phantom_silk') event.add('tfc:sewing_dark_cloth', 'tfg:polycaprolactam_fabric') event.add('forge:string', 'tfg:phantom_thread') @@ -137,9 +139,7 @@ const registerTFGItemTags = (event) => { // Universal Circuits - global.UNIVERSAL_CIRCUIT_TIERS.forEach(tier => { - event.add(`gtceu:circuits/${tier}`, `tfg:${tier}_universal_circuit`); - }) + global.UNIVERSAL_CIRCUIT_TIERS.forEach(tier => { event.add(`gtceu:circuits/${tier}`, `tfg:${tier}_universal_circuit`); }) // #endregion