Skip to content

Commit

Permalink
fix(recipes): ✏️[Ore Washing Plant] now turns Mek's Dirty Dust into…
Browse files Browse the repository at this point in the history
… `Purified Crushed Ore` instead of plain dust
  • Loading branch information
Krutoy242 committed May 11, 2024
1 parent bb4c518 commit 119f977
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions scripts/category/oreDict_iterator.zs
Original file line number Diff line number Diff line change
Expand Up @@ -112,10 +112,10 @@ for ore_entry in oreDict {
if (!isNull(ore_name)) {
if (ore_name == 'Aluminum') continue;

val dust = oreDict.get('dust' ~ ore_name);
if (isNull(dust) || dust.empty) continue;
val output = oreDict.get('crushedPurified' ~ ore_name);
if (isNull(output) || output.empty) continue;

mods.ic2.OreWasher.addRecipe([dust.firstItem], ore_entry);
mods.ic2.OreWasher.addRecipe([output.firstItem], ore_entry);

continue;
}
Expand Down

0 comments on commit 119f977

Please sign in to comment.