Skip to content
This repository has been archived by the owner on May 25, 2024. It is now read-only.

Commit

Permalink
fix simple washer recipe issue about Nq Process (#229)
Browse files Browse the repository at this point in the history
* fix simple washer recipe issue about Nq Process

* Update NaquadahReworkRecipeLoader.java

* Update NaquadahReworkRecipeLoader.java

* Update NaquadahReworkRecipeLoader.java

---------

Co-authored-by: Martin Robertz <[email protected]>
  • Loading branch information
Nxer and Dream-Master authored Dec 25, 2023
1 parent c1221d9 commit 2349276
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -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++) {
Expand Down

0 comments on commit 2349276

Please sign in to comment.