diff options
author | TenPlus1 <kinsellaja@yahoo.com> | 2018-09-08 17:42:20 +0100 |
---|---|---|
committer | TenPlus1 <kinsellaja@yahoo.com> | 2018-09-08 17:42:20 +0100 |
commit | d3d1feba0e3f153a99a234487835869a8bde6585 (patch) | |
tree | b9c7a1376048e36bacf2007ba6899dc1f93b3ddb | |
parent | 7b52870d54aca50e0d36a9263eeccc3e2d5fb2a5 (diff) |
melon/pumpkin give 4 slices when cut with chopping board, 2x2 slices = block
-rw-r--r-- | README.md | 2 | ||||
-rw-r--r-- | crops/melon.lua | 7 | ||||
-rw-r--r-- | crops/pumpkin.lua | 7 |
3 files changed, 7 insertions, 9 deletions
@@ -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"}}, }) |