summaryrefslogtreecommitdiff
path: root/farming
diff options
context:
space:
mode:
authorVanessa Dannenberg <vanessa.e.dannenberg@gmail.com>2018-09-12 20:35:41 -0400
committerVanessa Dannenberg <vanessa.e.dannenberg@gmail.com>2018-09-12 20:35:41 -0400
commit818eabb92fe8646db505fe985d16e65c9df1b761 (patch)
treec5f018e1f6eaa5807890c7387162a080e8fb8879 /farming
parent2a51091530254499eb7505f69d315dcd3134ec56 (diff)
downloaddreambuilder_modpack-818eabb92fe8646db505fe985d16e65c9df1b761.tar
dreambuilder_modpack-818eabb92fe8646db505fe985d16e65c9df1b761.tar.gz
dreambuilder_modpack-818eabb92fe8646db505fe985d16e65c9df1b761.tar.bz2
dreambuilder_modpack-818eabb92fe8646db505fe985d16e65c9df1b761.tar.xz
dreambuilder_modpack-818eabb92fe8646db505fe985d16e65c9df1b761.zip
update blox, coloredwood, farming, homedecor, unified bricks, unified dyes, and Jordach's skin
Diffstat (limited to 'farming')
-rw-r--r--farming/README.md2
-rw-r--r--farming/crops/melon.lua7
-rw-r--r--farming/crops/pumpkin.lua7
3 files changed, 7 insertions, 9 deletions
diff --git a/farming/README.md b/farming/README.md
index 272ff79..012edd4 100644
--- a/farming/README.md
+++ b/farming/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/farming/crops/melon.lua b/farming/crops/melon.lua
index 1791fdf..43c0809 100644
--- a/farming/crops/melon.lua
+++ b/farming/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/farming/crops/pumpkin.lua b/farming/crops/pumpkin.lua
index 4abbe13..c864d55 100644
--- a/farming/crops/pumpkin.lua
+++ b/farming/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"}},
})