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

Added Ore Block Recipes

Added following recipes to the electric press:
Diamond -> Diamond Block
Redstone -> Redstone Block
Lapis -> Lapis Block
Gold -> Gold Block
Iron -> Iron Block
This commit is contained in:
BurningBrimstone 2019-12-11 00:56:19 -05:00 committed by GitHub
parent c879e5ebb7
commit 642f5fe464
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -41,6 +41,11 @@ public abstract class ElectricPress extends AContainer implements RecipeDisplayI
registerRecipe(new MachineRecipe(4, new ItemStack[] {new ItemStack(Material.QUARTZ, 4)}, new ItemStack[] {new ItemStack(Material.QUARTZ_BLOCK)})); registerRecipe(new MachineRecipe(4, new ItemStack[] {new ItemStack(Material.QUARTZ, 4)}, new ItemStack[] {new ItemStack(Material.QUARTZ_BLOCK)}));
registerRecipe(new MachineRecipe(4, new ItemStack[] {new ItemStack(Material.IRON_NUGGET, 9)}, new ItemStack[] {new ItemStack(Material.IRON_INGOT)})); registerRecipe(new MachineRecipe(4, new ItemStack[] {new ItemStack(Material.IRON_NUGGET, 9)}, new ItemStack[] {new ItemStack(Material.IRON_INGOT)}));
registerRecipe(new MachineRecipe(4, new ItemStack[] {new ItemStack(Material.GOLD_NUGGET, 9)}, new ItemStack[] {new ItemStack(Material.GOLD_INGOT)})); registerRecipe(new MachineRecipe(4, new ItemStack[] {new ItemStack(Material.GOLD_NUGGET, 9)}, new ItemStack[] {new ItemStack(Material.GOLD_INGOT)}));
registerRecipe(new MachineRecipe(4, new ItemStack[] {new ItemStack(Material.GOLD_INGOT, 9)}, new ItemStack[] {new ItemStack(Material.GOLD_BLOCK)}));
registerRecipe(new MachineRecipe(4, new ItemStack[] {new ItemStack(Material.IRON_INGOT, 9)}, new ItemStack[] {new ItemStack(Material.IRON_BLOCK)}));
registerRecipe(new MachineRecipe(4, new ItemStack[] {new ItemStack(Material.DIAMOND, 9)}, new ItemStack[] {new ItemStack(Material.DIAMOND_BLOCK)}));
registerRecipe(new MachineRecipe(4, new ItemStack[] {new ItemStack(Material.REDSTONE, 9)}, new ItemStack[] {new ItemStack(Material.REDSTONE_BLOCK)}));
registerRecipe(new MachineRecipe(4, new ItemStack[] {new ItemStack(Material.LAPIS_LAZULI, 9)}, new ItemStack[] {new ItemStack(Material.LAPIS_BLOCK)}));
} }
@Override @Override