From abe8afab6715cb2c8deafe37b696f0861dfb8e1d Mon Sep 17 00:00:00 2001 From: TheBusyBiscuit Date: Mon, 8 Jun 2020 23:25:45 +0200 Subject: [PATCH] More balancing for Organic Food/Fertilizer --- CHANGELOG.md | 1 + .../slimefun4/implementation/setup/SlimefunItemSetup.java | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 34a85e86b..622373867 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -30,6 +30,7 @@ #### Changes * Fixed a few memory leaks * Crafting Organic Food/Fertilizer yields more output now +* Organic Food (Melon) now uses Melon Slices instead of Melon blocks #### Fixes * Fixed Ore Washer recipes showing up twice diff --git a/src/main/java/io/github/thebusybiscuit/slimefun4/implementation/setup/SlimefunItemSetup.java b/src/main/java/io/github/thebusybiscuit/slimefun4/implementation/setup/SlimefunItemSetup.java index a6265bb21..5808c0476 100644 --- a/src/main/java/io/github/thebusybiscuit/slimefun4/implementation/setup/SlimefunItemSetup.java +++ b/src/main/java/io/github/thebusybiscuit/slimefun4/implementation/setup/SlimefunItemSetup.java @@ -2968,7 +2968,7 @@ public final class SlimefunItemSetup { new OrganicFood(categories.misc, SlimefunItems.BEETROOT_ORGANIC_FOOD, Material.BEETROOT) .register(plugin); - new OrganicFood(categories.misc, SlimefunItems.MELON_ORGANIC_FOOD, Material.MELON) + new OrganicFood(categories.misc, SlimefunItems.MELON_ORGANIC_FOOD, Material.MELON_SLICE) .register(plugin); new OrganicFood(categories.misc, SlimefunItems.APPLE_ORGANIC_FOOD, Material.APPLE)