mirror of
https://git.minetest.land/MineClone2/MineClone2.git
synced 2024-11-24 20:03:45 +01:00
Fix #992
This commit is contained in:
parent
0e0628bcc5
commit
b6aabfc853
@ -12,7 +12,7 @@ function mcl_burning.get(obj, datatype, name)
|
||||
return meta["get_" .. datatype](meta, "mcl_burning:" .. name)
|
||||
else
|
||||
local luaentity = obj:get_luaentity()
|
||||
return luaentity["mcl_burning_" .. name] or mcl_burning.get_default(datatype)
|
||||
return luaentity and luaentity["mcl_burning_" .. name] or mcl_burning.get_default(datatype)
|
||||
end
|
||||
end
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user