diff options
| author | Jordan Byrne <draknyte1@hotmail.com> | 2017-12-07 18:09:21 +1000 |
|---|---|---|
| committer | Jordan Byrne <draknyte1@hotmail.com> | 2017-12-07 18:09:21 +1000 |
| commit | 10acb2fc2695c4e3f6d933d98dc9b9f87a0c539e (patch) | |
| tree | 5e66617d98f113f2bbc9e07a3f3f7a6e3c6f1b6a /src/Java/gtPlusPlus/core/recipe | |
| parent | c964170c46c7242097fcd3076ba61a7851191472 (diff) | |
| download | GT5-Unofficial-10acb2fc2695c4e3f6d933d98dc9b9f87a0c539e.tar.gz GT5-Unofficial-10acb2fc2695c4e3f6d933d98dc9b9f87a0c539e.tar.bz2 GT5-Unofficial-10acb2fc2695c4e3f6d933d98dc9b9f87a0c539e.zip | |
+ Added Recipes for every single machine component from LV -> IV.
$ Small fix to GT Stack grabber.
$ Small fix to circuit tiering in CI.
Diffstat (limited to 'src/Java/gtPlusPlus/core/recipe')
| -rw-r--r-- | src/Java/gtPlusPlus/core/recipe/common/CI.java | 27 |
1 files changed, 17 insertions, 10 deletions
diff --git a/src/Java/gtPlusPlus/core/recipe/common/CI.java b/src/Java/gtPlusPlus/core/recipe/common/CI.java index 996682464b..ad5e4c634c 100644 --- a/src/Java/gtPlusPlus/core/recipe/common/CI.java +++ b/src/Java/gtPlusPlus/core/recipe/common/CI.java @@ -269,21 +269,24 @@ public class CI { return GregtechItemList.Old_Circuit_Advanced.get(1); } else if (tier == 4){ - return GregtechItemList.Old_Circuit_Elite.get(1); + return GregtechItemList.Old_Circuit_Data.get(1); } else if (tier == 5){ - return GregtechItemList.Old_Circuit_Master.get(1); + return GregtechItemList.Old_Circuit_Elite.get(1); } else if (tier == 6){ - return GregtechItemList.Old_Circuit_Ultimate.get(1); + return GregtechItemList.Old_Circuit_Master.get(1); } else if (tier == 7){ - return GregtechItemList.Circuit_IV.get(1); + return GregtechItemList.Old_Circuit_Ultimate.get(1); } else if (tier == 8){ - return GregtechItemList.Circuit_LuV.get(1); + return GregtechItemList.Circuit_IV.get(1); } else if (tier == 9){ + return GregtechItemList.Circuit_LuV.get(1); + } + else if (tier == 10){ return GregtechItemList.Circuit_ZPM.get(1); } } @@ -306,23 +309,27 @@ public class CI { } else if (tier == 4){ //return ItemList.Circuit_Elite.get(1); - return "circuitElite"; + return "circuitData"; } else if (tier == 5){ + //return ItemList.Circuit_Elite.get(1); + return "circuitElite"; + } + else if (tier == 6){ //return ItemList.Circuit_Master.get(1); return "circuitMaster"; } - else if (tier == 6){ + else if (tier == 7){ //return ItemList.Circuit_Ultimate.get(1); return "circuitUltimate"; } - else if (tier == 7){ + else if (tier == 8){ return "circuitSuperconductor"; } - else if (tier == 8){ + else if (tier == 9){ return "circuitInfinite"; } - else if (tier == 9){ + else if (tier == 10){ return "circuitQuantum"; } } |
