Skip to content

Commit

Permalink
remove combiner recipe for ores
Browse files Browse the repository at this point in the history
  • Loading branch information
maggi373 committed Oct 18, 2024
1 parent a39d95b commit ee9b452
Showing 1 changed file with 0 additions and 16 deletions.
16 changes: 0 additions & 16 deletions src/main/java/mekanism/common/integration/OreDictManager.java
Original file line number Diff line number Diff line change
Expand Up @@ -118,14 +118,6 @@ public static void init() {
RecipeHandler.addCrusherRecipe(StackUtils.size(ore, 1), new ItemStack(MekanismItems.Dust, 1, resource.ordinal()));
}

if (!Mekanism.hooks.EFRLoaded) {
try {
for (ItemStack ore : OreDictionary.getOres("dust" + resource.getOredictName())) {
RecipeHandler.addCombinerRecipe(StackUtils.size(ore, 8), StackUtils.size(OreDictionary.getOres("ore" + resource.getOredictName()).get(0), 1));
}
} catch (Exception e) {
}
}
}

if (MekanismConfig.recipes.enableOsmiumBlock) {
Expand Down Expand Up @@ -247,14 +239,6 @@ public static void init() {
} catch (Exception e) {
}
}
if (!Mekanism.hooks.EFRLoaded) {
for (ItemStack ore : OreDictionary.getOres("dust" + s)) {
try {
RecipeHandler.addCombinerRecipe(StackUtils.size(ore, 8), StackUtils.size(OreDictionary.getOres("ore" + s).get(0), 1));
} catch (Exception e) {
}
}
}
}

for (ItemStack ore : OreDictionary.getOres("oreYellorite")) {
Expand Down

0 comments on commit ee9b452

Please sign in to comment.