From 6be06f07f637cbea759ecf5983e493e535380bf4 Mon Sep 17 00:00:00 2001 From: ybw0014 Date: Sun, 11 Jul 2021 22:22:56 +0800 Subject: [PATCH] Adds deepslate iron, gold, copper ores, and copper ore to Ore Crusher --- .../items/multiblocks/OreCrusher.java | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/src/main/java/io/github/thebusybiscuit/slimefun4/implementation/items/multiblocks/OreCrusher.java b/src/main/java/io/github/thebusybiscuit/slimefun4/implementation/items/multiblocks/OreCrusher.java index a9c652ed0..d47d5c104 100644 --- a/src/main/java/io/github/thebusybiscuit/slimefun4/implementation/items/multiblocks/OreCrusher.java +++ b/src/main/java/io/github/thebusybiscuit/slimefun4/implementation/items/multiblocks/OreCrusher.java @@ -151,6 +151,19 @@ public class OreCrusher extends MultiBlockMachine { new ItemStack(Material.DEEPSLATE_EMERALD_ORE), doubleOres.getEmerald() )); // @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)); } }