1
mirror of https://github.com/StarWishsama/Slimefun4.git synced 2024-09-19 19:25:48 +00:00

Added Nether Quartz Ore Crusher Recipe

This commit is contained in:
TheBusyBiscuit 2020-06-22 22:49:07 +02:00
parent bab94652bc
commit 1c50d29fa8
2 changed files with 8 additions and 1 deletions

View File

@ -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

View File

@ -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;
}
}
}