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

Commit

Permalink
fix simple washer Pure Dust of Cerium and Samarium issue (#80)
Browse files Browse the repository at this point in the history
  • Loading branch information
Nxer authored Dec 25, 2023
1 parent c8b096e commit 2b2aa36
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/main/java/com/elisis/gtnhlanth/loader/RecipeLoader.java
Original file line number Diff line number Diff line change
Expand Up @@ -2939,7 +2939,9 @@ public static void removeCeriumSources() {
int[] oreDict = OreDictionary.getOreIDs(input);
for (int oreDictID : oreDict) {
if (OreDictionary.getOreName(oreDictID).startsWith("dustImpureCerium")
|| OreDictionary.getOreName(oreDictID).startsWith("dustImpureSamarium")) {
|| OreDictionary.getOreName(oreDictID).startsWith("dustImpureSamarium")
|| OreDictionary.getOreName(oreDictID).startsWith("dustPureSamarium")
|| OreDictionary.getOreName(oreDictID).startsWith("dustPureCerium")) {
GT_Recipe tRecipe = recipe.copy();
for (int i = 0; i < tRecipe.mOutputs.length; i++) {
if (!GT_Utility.isStackValid(tRecipe.mOutputs[i])) continue;
Expand Down

0 comments on commit 2b2aa36

Please sign in to comment.