This commit is contained in:
Elias Fleckenstein 2021-01-20 16:20:45 +01:00
parent 0e0628bcc5
commit b6aabfc853
1 changed files with 1 additions and 1 deletions

View File

@ -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