1
0
mirror of https://codeberg.org/tenplus1/farming.git synced 2025-06-29 23:01:00 +02:00

melon blocks need cutting board to chop into slices

This commit is contained in:
TenPlus1
2018-08-13 21:42:54 +01:00
parent 8e03d9761a
commit 594b09ee66
2 changed files with 5 additions and 5 deletions

View File

@ -22,10 +22,10 @@ minetest.register_craft({
})
minetest.register_craft({
type = "shapeless",
output = "farming:melon_slice 9",
recipe = {
{"", "farming:melon_8", ""},
}
recipe = {"farming:melon_8", "farming:cutting_board"},
replacements = {{"farming:cutting_board", "farming:cutting_board"}},
})
-- melon definition
@ -82,5 +82,5 @@ crop_def.groups = {
food_melon = 1, snappy = 1, oddly_breakable_by_hand = 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))