added high quality fabric tags to phantom silk and nylon

This commit is contained in:
Pyritie
2025-06-04 20:01:04 +01:00
parent 435f514db2
commit 3f172255ac
2 changed files with 4 additions and 3 deletions

View File

@@ -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

View File

@@ -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