diff --git a/README.md b/README.md index 272ff79..012edd4 100644 --- a/README.md +++ b/README.md @@ -13,7 +13,7 @@ This mod works by adding your new plant to the {growing=1} group and numbering t ### Changelog: -- 1.38 - Pumpkin grows into block, use chopping board to cut into slices, same with melon block, cocoa pods are no longer walkable +- 1.38 - Pumpkin grows into block, use chopping board to cut into 4x slices, same with melon block, 2x2 slices makes a block, cocoa pods are no longer walkable - 1.37 - Added custom 'growth_check(pos, nodename) function for crop nodes to use (check cocoa.lua for example) - 1.36 - Added Beetroot, Beetroot Soup (6x beetroot, 1x bowl), fix register_plant() issue, add new recipes - 1.35 - Deprecated bronze/mese/diamond hoe's, added hoe bomb and deprecated hoe's as lucky block prizes diff --git a/crops/melon.lua b/crops/melon.lua index 1791fdf..43c0809 100644 --- a/crops/melon.lua +++ b/crops/melon.lua @@ -15,15 +15,14 @@ minetest.register_craftitem("farming:melon_slice", { minetest.register_craft({ output = "farming:melon_8", recipe = { - {"farming:melon_slice", "farming:melon_slice", "farming:melon_slice"}, - {"farming:melon_slice", "farming:melon_slice", "farming:melon_slice"}, - {"farming:melon_slice", "farming:melon_slice", "farming:melon_slice"}, + {"farming:melon_slice", "farming:melon_slice"}, + {"farming:melon_slice", "farming:melon_slice"}, } }) minetest.register_craft({ type = "shapeless", - output = "farming:melon_slice 9", + output = "farming:melon_slice 4", recipe = {"farming:melon_8", "farming:cutting_board"}, replacements = {{"farming:cutting_board", "farming:cutting_board"}}, }) diff --git a/crops/pumpkin.lua b/crops/pumpkin.lua index 4abbe13..c864d55 100644 --- a/crops/pumpkin.lua +++ b/crops/pumpkin.lua @@ -19,15 +19,14 @@ minetest.register_craftitem("farming:pumpkin_slice", { minetest.register_craft({ output = "farming:pumpkin", recipe = { - {"farming:pumpkin_slice", "farming:pumpkin_slice", "farming:pumpkin_slice"}, - {"farming:pumpkin_slice", "farming:pumpkin_slice", "farming:pumpkin_slice"}, - {"farming:pumpkin_slice", "farming:pumpkin_slice", "farming:pumpkin_slice"}, + {"farming:pumpkin_slice", "farming:pumpkin_slice"}, + {"farming:pumpkin_slice", "farming:pumpkin_slice"}, } }) minetest.register_craft({ type = "shapeless", - output = "farming:pumpkin_slice 9", + output = "farming:pumpkin_slice 4", recipe = {"farming:pumpkin", "farming:cutting_board"}, replacements = {{"farming:cutting_board", "farming:cutting_board"}}, })