1
mirror of https://github.com/StarWishsama/Slimefun4.git synced 2024-09-20 03:35:51 +00:00

Merge pull request #3168 from guizhanss/feature/more-in-ore-crusher

Adds deepslate iron, gold, copper ores, and copper ore to Ore Crusher
This commit is contained in:
Daniel Walsh 2021-07-12 11:43:41 +01:00 committed by GitHub
commit 6392af004f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -151,6 +151,19 @@ public class OreCrusher extends MultiBlockMachine {
new ItemStack(Material.DEEPSLATE_EMERALD_ORE), doubleOres.getEmerald() new ItemStack(Material.DEEPSLATE_EMERALD_ORE), doubleOres.getEmerald()
)); ));
// @formatter:on // @formatter:on
// More deepslate ores and copper ore
displayRecipes.add(new ItemStack(Material.DEEPSLATE_IRON_ORE));
displayRecipes.add(new SlimefunItemStack(SlimefunItems.IRON_DUST, isOreDoublingEnabled() ? 2 : 1));
displayRecipes.add(new ItemStack(Material.DEEPSLATE_GOLD_ORE));
displayRecipes.add(new SlimefunItemStack(SlimefunItems.GOLD_DUST, isOreDoublingEnabled() ? 2 : 1));
displayRecipes.add(new ItemStack(Material.DEEPSLATE_COPPER_ORE));
displayRecipes.add(new SlimefunItemStack(SlimefunItems.COPPER_DUST, isOreDoublingEnabled() ? 2 : 1));
displayRecipes.add(new ItemStack(Material.COPPER_ORE));
displayRecipes.add(new SlimefunItemStack(SlimefunItems.COPPER_DUST, isOreDoublingEnabled() ? 2 : 1));
} }
} }