aboutsummaryrefslogtreecommitdiff
path: root/src/Java/gtPlusPlus/xmod/gregtech/loaders
diff options
context:
space:
mode:
author‭huajijam <strhuaji@gmail.com>2019-02-05 12:26:34 +0800
committer‭huajijam <strhuaji@gmail.com>2019-02-05 12:26:34 +0800
commit40d7e5da9f5b84213e2c3e4596fdc69b94bd523e (patch)
tree900ad3e45065d8ab8229d0f01823054d3b99583f /src/Java/gtPlusPlus/xmod/gregtech/loaders
parent8e8a95f5a047a192a64d1e85fb297debac3decbc (diff)
parent3187b70de7bd7bb6eee323dd0f7f9e191fd8e7cf (diff)
downloadGT5-Unofficial-40d7e5da9f5b84213e2c3e4596fdc69b94bd523e.tar.gz
GT5-Unofficial-40d7e5da9f5b84213e2c3e4596fdc69b94bd523e.tar.bz2
GT5-Unofficial-40d7e5da9f5b84213e2c3e4596fdc69b94bd523e.zip
Automatic synchronization
Diffstat (limited to 'src/Java/gtPlusPlus/xmod/gregtech/loaders')
-rw-r--r--src/Java/gtPlusPlus/xmod/gregtech/loaders/RecipeGen_Fluids.java11
1 files changed, 6 insertions, 5 deletions
diff --git a/src/Java/gtPlusPlus/xmod/gregtech/loaders/RecipeGen_Fluids.java b/src/Java/gtPlusPlus/xmod/gregtech/loaders/RecipeGen_Fluids.java
index 433c07e948..9fe2aeb12e 100644
--- a/src/Java/gtPlusPlus/xmod/gregtech/loaders/RecipeGen_Fluids.java
+++ b/src/Java/gtPlusPlus/xmod/gregtech/loaders/RecipeGen_Fluids.java
@@ -214,11 +214,12 @@ public class RecipeGen_Fluids extends RecipeGen_Base {
// Shape_Mold_Screw,
// Shape_Mold_Ring,
- ItemList mold_Rod = ItemList.valueOf("Shape_Mold_Rod");
- ItemList mold_Rod_Long = ItemList.valueOf("Shape_Mold_Rod_Long");
- ItemList mold_Bolt = ItemList.valueOf("Shape_Mold_Bolt");
- ItemList mold_Screw = ItemList.valueOf("Shape_Mold_Screw");
- ItemList mold_Ring = ItemList.valueOf("Shape_Mold_Ring");
+
+ ItemList mold_Rod = gtPlusPlus.core.util.Utils.getValueOfItemList("Shape_Mold_Rod", null);
+ ItemList mold_Rod_Long = gtPlusPlus.core.util.Utils.getValueOfItemList("Shape_Mold_Rod_Long", null);
+ ItemList mold_Bolt = gtPlusPlus.core.util.Utils.getValueOfItemList("Shape_Mold_Bolt", null);
+ ItemList mold_Screw = gtPlusPlus.core.util.Utils.getValueOfItemList("Shape_Mold_Screw", null);
+ ItemList mold_Ring = gtPlusPlus.core.util.Utils.getValueOfItemList("Shape_Mold_Ring", null);
// Rod
if (ItemUtils.checkForInvalidItems(material.getRod(1)))