diff options
author | Ethryan <3237986+Ethryan@users.noreply.github.com> | 2024-05-24 19:49:26 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-05-24 18:49:26 +0100 |
commit | a42b7715ec2196a55a6510a4ab85e337a2a93570 (patch) | |
tree | 025d32aada0cd9abc3e770bf1710991f971e84ed /src/main/java | |
parent | cfdc7a5c9d039884a2ff8f4f9226efc86013a156 (diff) | |
download | GT5-Unofficial-a42b7715ec2196a55a6510a4ab85e337a2a93570.tar.gz GT5-Unofficial-a42b7715ec2196a55a6510a4ab85e337a2a93570.tar.bz2 GT5-Unofficial-a42b7715ec2196a55a6510a4ab85e337a2a93570.zip |
Fixing Raw Ores and removed old commented out code (#89)
Diffstat (limited to 'src/main/java')
-rw-r--r-- | src/main/java/com/elisis/gtnhlanth/loader/RecipeLoader.java | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/main/java/com/elisis/gtnhlanth/loader/RecipeLoader.java b/src/main/java/com/elisis/gtnhlanth/loader/RecipeLoader.java index 6e253c3542..173745edc2 100644 --- a/src/main/java/com/elisis/gtnhlanth/loader/RecipeLoader.java +++ b/src/main/java/com/elisis/gtnhlanth/loader/RecipeLoader.java @@ -2506,8 +2506,9 @@ public class RecipeLoader { if (GT_Utility.isStackValid(input)) { int[] oreDict = OreDictionary.getOreIDs(input); for (int oreDictID : oreDict) { - if ((OreDictionary.getOreName(oreDictID).startsWith("ore") || OreDictionary.getOreName(oreDictID) - .startsWith("crushed")) /* && OreDictionary.getOreName(oreDictID).contains("Cerium") */) { + if ((OreDictionary.getOreName(oreDictID).startsWith("ore") + || OreDictionary.getOreName(oreDictID).startsWith("rawOre") + || OreDictionary.getOreName(oreDictID).startsWith("crushed"))) { GT_Log.out.print(OreDictionary.getOreName(oreDictID)); GT_Recipe tRecipe = recipe.copy(); boolean modified = false; |