diff options
author | miozune <miozune@gmail.com> | 2022-08-02 22:32:38 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-08-02 14:32:38 +0100 |
commit | 784aece1dc8d84b8c351c88163b66ba8626aca23 (patch) | |
tree | 1e841a47be9d55b970890447cb003fd887549bc6 | |
parent | c2b74940dc9658373beadd7d2393077fc5210ea0 (diff) | |
download | GT5-Unofficial-784aece1dc8d84b8c351c88163b66ba8626aca23.tar.gz GT5-Unofficial-784aece1dc8d84b8c351c88163b66ba8626aca23.tar.bz2 GT5-Unofficial-784aece1dc8d84b8c351c88163b66ba8626aca23.zip |
Add Hypogen wires (#255)
-rw-r--r-- | src/main/java/gtPlusPlus/core/recipe/RECIPES_General.java | 1 | ||||
-rw-r--r-- | src/main/java/gtPlusPlus/xmod/gregtech/registration/gregtech/GregtechConduits.java | 3 |
2 files changed, 4 insertions, 0 deletions
diff --git a/src/main/java/gtPlusPlus/core/recipe/RECIPES_General.java b/src/main/java/gtPlusPlus/core/recipe/RECIPES_General.java index 25c5ee5f9e..2e1ca10e4e 100644 --- a/src/main/java/gtPlusPlus/core/recipe/RECIPES_General.java +++ b/src/main/java/gtPlusPlus/core/recipe/RECIPES_General.java @@ -467,6 +467,7 @@ public class RECIPES_General { generateWireRecipes(ALLOY.HG1223); generateWireRecipes(ALLOY.LEAGRISIUM); generateWireRecipes(ALLOY.TRINIUM_TITANIUM); + generateWireRecipes(ELEMENT.STANDALONE.HYPOGEN); GT_Materials[] g = new GT_Materials[] { GT_Materials.Staballoy, diff --git a/src/main/java/gtPlusPlus/xmod/gregtech/registration/gregtech/GregtechConduits.java b/src/main/java/gtPlusPlus/xmod/gregtech/registration/gregtech/GregtechConduits.java index c2a9ca65a5..a9bb0b693e 100644 --- a/src/main/java/gtPlusPlus/xmod/gregtech/registration/gregtech/GregtechConduits.java +++ b/src/main/java/gtPlusPlus/xmod/gregtech/registration/gregtech/GregtechConduits.java @@ -153,6 +153,9 @@ public class GregtechConduits { customWireFactory(ALLOY.TRINIUM_TITANIUM, 2048, BaseWireID + 89, 1, 2, 16); } + // need to go back id because fluid pipes already occupy + makeCustomWires(ELEMENT.STANDALONE.HYPOGEN, BaseWireID - 15, 0, 0, 8, GT_Values.V[11], false, true); + //superConductorFactory(GT_Materials.Superconductor, 524288, 30660, 0, 0, 8); if (LoadedMods.Thaumcraft){ |