mirror of
https://github.com/rubenwardy/food.git
synced 2024-11-13 05:40:34 +01:00
Fixed small bug and disabled debug
This commit is contained in:
parent
99e837691a
commit
37cc9d8ff4
11
init.lua
11
init.lua
|
@ -8,10 +8,10 @@
|
|||
-- =====================================
|
||||
|
||||
food = {
|
||||
supported={},
|
||||
atsup={},
|
||||
df={},
|
||||
debug=true
|
||||
supported = {},
|
||||
atsup = {},
|
||||
df = {},
|
||||
debug = false
|
||||
}
|
||||
|
||||
function food.support(group,mod,item)
|
||||
|
@ -30,7 +30,7 @@ function food.support(group,mod,item)
|
|||
local data = minetest.registered_items[item]
|
||||
|
||||
if not data then
|
||||
print("item '",item.."' not found")
|
||||
print("item '"..item.."' not found")
|
||||
return
|
||||
end
|
||||
|
||||
|
@ -154,6 +154,7 @@ food.asupport("potato",function()
|
|||
minetest.register_craftitem("food:potato", {
|
||||
description = "Potato",
|
||||
inventory_image = "food_potato.png",
|
||||
groups = {food_potato = 1}
|
||||
})
|
||||
minetest.register_craft({
|
||||
output = "food:potato",
|
||||
|
|
Loading…
Reference in New Issue
Block a user