forked from mtcontrib/farming
melon blocks need cutting board to chop into slices
This commit is contained in:
parent
8e03d9761a
commit
594b09ee66
@ -13,7 +13,7 @@ This mod works by adding your new plant to the {growing=1} group and numbering t
|
|||||||
|
|
||||||
### Changelog:
|
### Changelog:
|
||||||
|
|
||||||
- 1.38 - Pumpkin grows into block, use chopping board to cut into slices, cocoa pods are no longer walkable
|
- 1.38 - Pumpkin grows into block, use chopping board to cut into slices, same with melon 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.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.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
|
- 1.35 - Deprecated bronze/mese/diamond hoe's, added hoe bomb and deprecated hoe's as lucky block prizes
|
||||||
|
@ -22,10 +22,10 @@ minetest.register_craft({
|
|||||||
})
|
})
|
||||||
|
|
||||||
minetest.register_craft({
|
minetest.register_craft({
|
||||||
|
type = "shapeless",
|
||||||
output = "farming:melon_slice 9",
|
output = "farming:melon_slice 9",
|
||||||
recipe = {
|
recipe = {"farming:melon_8", "farming:cutting_board"},
|
||||||
{"", "farming:melon_8", ""},
|
replacements = {{"farming:cutting_board", "farming:cutting_board"}},
|
||||||
}
|
|
||||||
})
|
})
|
||||||
|
|
||||||
-- melon definition
|
-- melon definition
|
||||||
@ -82,5 +82,5 @@ crop_def.groups = {
|
|||||||
food_melon = 1, snappy = 1, oddly_breakable_by_hand = 1,
|
food_melon = 1, snappy = 1, oddly_breakable_by_hand = 1,
|
||||||
flammable = 2, plant = 1
|
flammable = 2, plant = 1
|
||||||
}
|
}
|
||||||
crop_def.drop = "farming:melon_slice 9"
|
--crop_def.drop = "farming:melon_slice 9"
|
||||||
minetest.register_node("farming:melon_8", table.copy(crop_def))
|
minetest.register_node("farming:melon_8", table.copy(crop_def))
|
||||||
|
Loading…
Reference in New Issue
Block a user