Cooking : prevent crash when dropping custom entities inside the cauldron
This commit is contained in:
parent
0455037a6b
commit
b695cc3d33
@ -119,7 +119,7 @@ minetest.register_abm({
|
|||||||
|
|
||||||
local ingredients = {}
|
local ingredients = {}
|
||||||
for _, obj in pairs(objs) do
|
for _, obj in pairs(objs) do
|
||||||
if obj and obj:get_luaentity() then
|
if obj and obj:get_luaentity().itemstring then
|
||||||
local itemstring = obj:get_luaentity().itemstring:match(":([%w_]+)")
|
local itemstring = obj:get_luaentity().itemstring:match(":([%w_]+)")
|
||||||
if ingredients == {} then
|
if ingredients == {} then
|
||||||
for _, rep in pairs(ingredients) do
|
for _, rep in pairs(ingredients) do
|
||||||
|
Loading…
Reference in New Issue
Block a user