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

Added dried Kelp and bone block recipes to the Electric Press

This commit is contained in:
TheBusyBiscuit 2020-05-30 13:36:48 +02:00
parent 929f26d103
commit 343a18a95d
2 changed files with 7 additions and 0 deletions

View File

@ -20,6 +20,10 @@
## Release Candidate 13 (TBD)
#### Additions
* Added Dried Kelp Blocks recipe to the Electric Press
* Added Bone Blocks recipe to the Electric Press
#### Fixes
* Fixed Ore Washer recipes showing up twice
* Fixed #1942

View File

@ -24,6 +24,9 @@ public abstract class ElectricPress extends AContainer implements RecipeDisplayI
addRecipe(5, new ItemStack(Material.GLASS), new ItemStack(Material.GLASS_PANE, 3));
addRecipe(4, new ItemStack(Material.SNOWBALL, 4), new ItemStack(Material.SNOW_BLOCK));
addRecipe(4, new ItemStack(Material.MAGMA_CREAM, 4), new ItemStack(Material.MAGMA_BLOCK));
addRecipe(3, new ItemStack(Material.DRIED_KELP, 9), new ItemStack(Material.DRIED_KELP_BLOCK));
addRecipe(3, new ItemStack(Material.BONE_MEAL, 9), new ItemStack(Material.BONE_BLOCK));
addRecipe(6, SlimefunItems.COPPER_INGOT, new CustomItem(SlimefunItems.COPPER_WIRE, 3));
addRecipe(16, new CustomItem(SlimefunItems.STEEL_INGOT, 8), SlimefunItems.STEEL_PLATE);