From 784aece1dc8d84b8c351c88163b66ba8626aca23 Mon Sep 17 00:00:00 2001 From: miozune Date: Tue, 2 Aug 2022 22:32:38 +0900 Subject: Add Hypogen wires (#255) --- src/main/java/gtPlusPlus/core/recipe/RECIPES_General.java | 1 + .../xmod/gregtech/registration/gregtech/GregtechConduits.java | 3 +++ 2 files changed, 4 insertions(+) (limited to 'src/main/java/gtPlusPlus') 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){ -- cgit