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

More balancing for Organic Food/Fertilizer

This commit is contained in:
TheBusyBiscuit 2020-06-08 23:25:45 +02:00
parent bd712472d5
commit abe8afab67
2 changed files with 2 additions and 1 deletions

View File

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

View File

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