forked from VoxeLibre/VoxeLibre
Change burning API to check whether weather is actually happening (e.g. hot biomes)
This commit is contained in:
parent
04dee4ba54
commit
249f642985
|
@ -14,7 +14,8 @@ function mcl_burning.is_burning(obj)
|
||||||
end
|
end
|
||||||
|
|
||||||
function mcl_burning.is_affected_by_rain(obj)
|
function mcl_burning.is_affected_by_rain(obj)
|
||||||
return mcl_weather.rain.raining and mcl_weather.is_outdoor(obj:get_pos())
|
local pos = obj:get_pos()
|
||||||
|
return mcl_weather.rain.raining and mcl_weather.is_outdoor(pos) and mcl_weather.has_rain(pos)
|
||||||
end
|
end
|
||||||
|
|
||||||
function mcl_burning.get_collisionbox(obj, smaller, storage)
|
function mcl_burning.get_collisionbox(obj, smaller, storage)
|
||||||
|
|
Loading…
Reference in New Issue