summaryrefslogtreecommitdiff
path: root/melon.lua
diff options
context:
space:
mode:
authorTenPlus1 <kinsellaja@yahoo.com>2018-03-12 16:45:15 +0000
committerTenPlus1 <kinsellaja@yahoo.com>2018-03-12 16:45:15 +0000
commit77198100f3bfa57de2d616bee3d2dfd3a48c02a9 (patch)
tree3b63fb8c7408cf072f669670012b4249a5573e4c /melon.lua
parentbb208f8d5b9c4926a2651d2734fac85a0e7902e8 (diff)
added food groups to make items more compatible with other mods
Diffstat (limited to 'melon.lua')
-rw-r--r--melon.lua6
1 files changed, 5 insertions, 1 deletions
diff --git a/melon.lua b/melon.lua
index e2f6564..2165558 100644
--- a/melon.lua
+++ b/melon.lua
@@ -5,6 +5,7 @@ local S = farming.intllib
minetest.register_craftitem("farming:melon_slice", {
description = S("Melon Slice"),
inventory_image = "farming_melon_slice.png",
+ groups = {food_melon_slice = 1, flammable = 3},
on_place = function(itemstack, placer, pointed_thing)
return farming.place_seed(itemstack, placer, pointed_thing, "farming:melon_1")
end,
@@ -77,6 +78,9 @@ crop_def.description = S("Melon")
crop_def.tiles = {"farming_melon_top.png", "farming_melon_top.png", "farming_melon_side.png"}
crop_def.selection_box = {-.5, -.5, -.5, .5, .5, .5}
crop_def.walkable = true
-crop_def.groups = {snappy = 1, oddly_breakable_by_hand = 1, flammable = 2, plant = 1}
+crop_def.groups = {
+ food_melon = 1, snappy = 1, oddly_breakable_by_hand = 1,
+ flammable = 2, plant = 1
+}
crop_def.drop = "farming:melon_slice 9"
minetest.register_node("farming:melon_8", table.copy(crop_def))