From 234927611b553e8fa0d0ee6ce3212e1d37482218 Mon Sep 17 00:00:00 2001 From: Nxer <43300390+Nxer@users.noreply.github.com> Date: Mon, 25 Dec 2023 21:16:59 +0800 Subject: [PATCH] fix simple washer recipe issue about Nq Process (#229) * fix simple washer recipe issue about Nq Process * Update NaquadahReworkRecipeLoader.java * Update NaquadahReworkRecipeLoader.java * Update NaquadahReworkRecipeLoader.java --------- Co-authored-by: Martin Robertz --- .../java/goodgenerator/loader/NaquadahReworkRecipeLoader.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/main/java/goodgenerator/loader/NaquadahReworkRecipeLoader.java b/src/main/java/goodgenerator/loader/NaquadahReworkRecipeLoader.java index a733b87f..27f5fbd3 100644 --- a/src/main/java/goodgenerator/loader/NaquadahReworkRecipeLoader.java +++ b/src/main/java/goodgenerator/loader/NaquadahReworkRecipeLoader.java @@ -1126,7 +1126,8 @@ public static void Remover() { if (GT_Utility.isStackValid(input)) { int[] oreDict = OreDictionary.getOreIDs(input); for (int oreDictID : oreDict) { - if (OreDictionary.getOreName(oreDictID).startsWith("dustImpureNaq")) { + if (OreDictionary.getOreName(oreDictID).startsWith("dustImpureNaq") + || OreDictionary.getOreName(oreDictID).startsWith("dustPureNaq")) { GT_Recipe tRecipe = recipe.copy(); boolean modified = false; for (int i = 0; i < tRecipe.mOutputs.length; i++) {