forked from VoxeLibre/VoxeLibre
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)
|
return meta["get_" .. datatype](meta, "mcl_burning:" .. name)
|
||||||
else
|
else
|
||||||
local luaentity = obj:get_luaentity()
|
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
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue