diff --git a/CHANGELOG.md b/CHANGELOG.md index f37e7368a..90395bec3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -26,6 +26,7 @@ * Added config option to disable backwards compatibility and improve performance * Added ReactorExplodeEvent to the API * Compatibility mode status is now included in /sf versions +* Added Nether Quartz Ore Crusher Recipe #### Changes * Coolant Cells now last twice as long 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 f4bb9e3fd..03b37556e 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 @@ -42,7 +42,7 @@ public class OreCrusher extends MultiBlockMachine { public void postRegister() { super.postRegister(); - displayRecipes.addAll(Arrays.asList(new ItemStack(Material.COAL_ORE), doubleOres.getCoal(), new ItemStack(Material.LAPIS_ORE), doubleOres.getLapisLazuli(), new ItemStack(Material.REDSTONE_ORE), doubleOres.getRedstone(), new ItemStack(Material.DIAMOND_ORE), doubleOres.getDiamond(), new ItemStack(Material.EMERALD_ORE), doubleOres.getEmerald())); + displayRecipes.addAll(Arrays.asList(new ItemStack(Material.COAL_ORE), doubleOres.getCoal(), new ItemStack(Material.LAPIS_ORE), doubleOres.getLapisLazuli(), new ItemStack(Material.REDSTONE_ORE), doubleOres.getRedstone(), new ItemStack(Material.DIAMOND_ORE), doubleOres.getDiamond(), new ItemStack(Material.EMERALD_ORE), doubleOres.getEmerald(), new ItemStack(Material.NETHER_QUARTZ_ORE), doubleOres.getNetherQuartz())); } @Override @@ -85,6 +85,7 @@ public class OreCrusher extends MultiBlockMachine { private final ItemStack redstone = new ItemStack(Material.REDSTONE, 4); private final ItemStack diamond = new ItemStack(Material.DIAMOND, 1); private final ItemStack emerald = new ItemStack(Material.EMERALD, 1); + private final ItemStack quartz = new ItemStack(Material.QUARTZ, 1); public DoubleOreSetting() { super("double-ores", true); @@ -96,6 +97,7 @@ public class OreCrusher extends MultiBlockMachine { redstone.setAmount(value ? 8 : 4); diamond.setAmount(value ? 2 : 1); emerald.setAmount(value ? 2 : 1); + quartz.setAmount(value ? 2 : 1); SlimefunItem ironDust = SlimefunItem.getByID("IRON_DUST"); if (ironDust != null) { @@ -140,6 +142,10 @@ public class OreCrusher extends MultiBlockMachine { return emerald; } + public ItemStack getNetherQuartz() { + return quartz; + } + } }