diff --git a/CHANGELOG.md b/CHANGELOG.md index 4034c6368..e7b45d6ef 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -29,6 +29,7 @@ * Added Enhanced Auto-Crafter * Added "Smart-Filling" mode to Cargo Input nodes * Added "Netherite Ingot -> Netherite Block" recipe to Electric Press +* Added "Slimeballs -> Slime Block" recipe to Electric Press * Added Armor Forge Auto-Crafter * Auto-Crafters can now be turned on and off * Added Produce Collector to automate Milk and Mushroom Stew diff --git a/src/main/java/io/github/thebusybiscuit/slimefun4/implementation/items/electric/machines/ElectricPress.java b/src/main/java/io/github/thebusybiscuit/slimefun4/implementation/items/electric/machines/ElectricPress.java index 87ecdd16e..5c00354db 100644 --- a/src/main/java/io/github/thebusybiscuit/slimefun4/implementation/items/electric/machines/ElectricPress.java +++ b/src/main/java/io/github/thebusybiscuit/slimefun4/implementation/items/electric/machines/ElectricPress.java @@ -36,6 +36,7 @@ public class ElectricPress extends AContainer implements RecipeDisplayItem { 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(4, new ItemStack(Material.SLIME_BALL, 9), new ItemStack(Material.SLIME_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));