From a42b7715ec2196a55a6510a4ab85e337a2a93570 Mon Sep 17 00:00:00 2001 From: Ethryan <3237986+Ethryan@users.noreply.github.com> Date: Fri, 24 May 2024 19:49:26 +0200 Subject: Fixing Raw Ores and removed old commented out code (#89) --- src/main/java/com/elisis/gtnhlanth/loader/RecipeLoader.java | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'src/main') 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; -- cgit