forked from mtcontrib/food
override function fix if no groups
This commit is contained in:
parent
dbcd373e30
commit
e4b9ff0373
2
init.lua
2
init.lua
@ -45,9 +45,11 @@ function food.support(group,mod,item)
|
|||||||
-- Need to copy this table, not modify it in place, otherwise it can change
|
-- Need to copy this table, not modify it in place, otherwise it can change
|
||||||
-- the groups for ALL craftitems that use the default groups.
|
-- the groups for ALL craftitems that use the default groups.
|
||||||
g = {}
|
g = {}
|
||||||
|
if data.groups then
|
||||||
for k, v in pairs(data.groups) do
|
for k, v in pairs(data.groups) do
|
||||||
g[k] = v
|
g[k] = v
|
||||||
end
|
end
|
||||||
|
end
|
||||||
g["food_"..group] = 1
|
g["food_"..group] = 1
|
||||||
minetest.override_item(item, {groups = g})
|
minetest.override_item(item, {groups = g})
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user