From 75461a6496ef18e778713673357728a619500d95 Mon Sep 17 00:00:00 2001 From: Pyritie Date: Tue, 29 Jul 2025 11:55:53 +0100 Subject: [PATCH] oh so THAT's how you remove material properties --- CHANGELOG.md | 2 ++ kubejs/startup_scripts/gtceu/materials.js | 2 ++ 2 files changed, 4 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index e52c903b1..f745b184e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -11,6 +11,8 @@ - Added recipe for backpack feeding upgrade (#1462) @Pyritie - Greate shaft recipes are now shapeless (#1453) @Pyritie - Added crafting table recipes for matches and the matchbox (#1449) @Pyritie +- Added faster recipes for crafting dough @Pyritie +- Black bronze now has a fluid pipe instead of an item pipe, so the drum has proper containment info @Pyritie ### Bug fixes - Fixed not being able to craft fine wire in a coiling machine for materials that didn't also have normal wire @Pyritie - Fixed cobalt brass and potin double plates not being obtainable until MV @Pyritie diff --git a/kubejs/startup_scripts/gtceu/materials.js b/kubejs/startup_scripts/gtceu/materials.js index 72398f083..2dc3221dd 100644 --- a/kubejs/startup_scripts/gtceu/materials.js +++ b/kubejs/startup_scripts/gtceu/materials.js @@ -273,6 +273,8 @@ const registerGTCEuMaterialModification = (event) => { GTMaterials.Bismuth.setProperty(PropertyKey.ITEM_PIPE, new $ITEM_PIPE_PROPERTY(16384, 0.125)); // Bis bronze fluid pipe - same stats as bronze GTMaterials.BismuthBronze.setProperty(PropertyKey.FLUID_PIPE, new $FLUID_PIPE_PROPERTY(1696, 20, true, false, false, false)); + GTMaterials.BlackBronze.getProperties().removeProperty(PropertyKey.ITEM_PIPE); + GTMaterials.BlackBronze.setProperty(PropertyKey.FLUID_PIPE, new $FLUID_PIPE_PROPERTY(1696, 20, true, false, false, false)); // Red steel fluid pipe - same flow rate as aluminium, bad heat tolerance (same as PE) but can do cryo GTMaterials.RedSteel.setProperty(PropertyKey.FLUID_PIPE, new $FLUID_PIPE_PROPERTY(370, 75, true, false, true, false)); // Blue steel fluid pipe - same flow rate as aluminium, same temp tolerance as tungsten