aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormiozune <miozune@gmail.com>2023-02-17 13:50:12 +0900
committerGitHub <noreply@github.com>2023-02-17 04:50:12 +0000
commit94f577bd2e678b675d2b96df75bc4cd70c6fe114 (patch)
tree03ad929829df9f651dc8ad93a6cf871e0e5e10bd
parent11c0eef9045dafefc4f2e7bd93aa1a15e72e191d (diff)
downloadGT5-Unofficial-94f577bd2e678b675d2b96df75bc4cd70c6fe114.tar.gz
GT5-Unofficial-94f577bd2e678b675d2b96df75bc4cd70c6fe114.tar.bz2
GT5-Unofficial-94f577bd2e678b675d2b96df75bc4cd70c6fe114.zip
Don't modify EOH recipes (#285)
Former-commit-id: 4f239276d3bcd239225523656c9994593f7e288a
-rw-r--r--src/main/java/com/github/bartimaeusnek/bartworks/system/material/GT_Enhancement/PlatinumSludgeOverHaul.java3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/main/java/com/github/bartimaeusnek/bartworks/system/material/GT_Enhancement/PlatinumSludgeOverHaul.java b/src/main/java/com/github/bartimaeusnek/bartworks/system/material/GT_Enhancement/PlatinumSludgeOverHaul.java
index 6658474734..fadea47d5d 100644
--- a/src/main/java/com/github/bartimaeusnek/bartworks/system/material/GT_Enhancement/PlatinumSludgeOverHaul.java
+++ b/src/main/java/com/github/bartimaeusnek/bartworks/system/material/GT_Enhancement/PlatinumSludgeOverHaul.java
@@ -656,7 +656,8 @@ public class PlatinumSludgeOverHaul {
// gt machines
maploop: for (GT_Recipe.GT_Recipe_Map map : GT_Recipe.GT_Recipe_Map.sMappings) {
if (map == GT_Recipe.GT_Recipe_Map.sFusionRecipes || map == GT_Recipe.GT_Recipe_Map.sUnboxinatorRecipes
- || map == GT_Recipe.GT_Recipe_Map.sBoxinatorRecipes)
+ || map == GT_Recipe.GT_Recipe_Map.sBoxinatorRecipes
+ || map.mUnlocalizedName.equals("gt.recipe.eyeofharmony"))
continue;
HashSet<GT_Recipe> toDel = new HashSet<>();
recipeloop: for (GT_Recipe recipe : map.mRecipeList) {