diff options
author | Nxer <43300390+Nxer@users.noreply.github.com> | 2023-12-25 21:16:59 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-12-25 14:16:59 +0100 |
commit | 234927611b553e8fa0d0ee6ce3212e1d37482218 (patch) | |
tree | 42647a74a3df3a225a03c10c2d1c972a3c97db30 /src/main/java/goodgenerator/loader/NaquadahReworkRecipeLoader.java | |
parent | c1221d92e2171cb6fdbf19ee915d6a13ea2c15e5 (diff) | |
download | GT5-Unofficial-234927611b553e8fa0d0ee6ce3212e1d37482218.tar.gz GT5-Unofficial-234927611b553e8fa0d0ee6ce3212e1d37482218.tar.bz2 GT5-Unofficial-234927611b553e8fa0d0ee6ce3212e1d37482218.zip |
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 <dream-master@gmx.net>
Diffstat (limited to 'src/main/java/goodgenerator/loader/NaquadahReworkRecipeLoader.java')
-rw-r--r-- | src/main/java/goodgenerator/loader/NaquadahReworkRecipeLoader.java | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/main/java/goodgenerator/loader/NaquadahReworkRecipeLoader.java b/src/main/java/goodgenerator/loader/NaquadahReworkRecipeLoader.java index a733b87f55..27f5fbd339 100644 --- a/src/main/java/goodgenerator/loader/NaquadahReworkRecipeLoader.java +++ b/src/main/java/goodgenerator/loader/NaquadahReworkRecipeLoader.java @@ -1126,7 +1126,8 @@ public class NaquadahReworkRecipeLoader { 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++) { |