mirror of
https://git.minetest.land/VoxeLibre/VoxeLibre.git
synced 2024-11-16 16:11:06 +01:00
Change burning API to check whether weather is actually happening (e.g. hot biomes)
This commit is contained in:
parent
a5c5e4c8a0
commit
2782414586
1 changed files with 2 additions and 1 deletions
|
@ -14,7 +14,8 @@ function mcl_burning.is_burning(obj)
|
|||
end
|
||||
|
||||
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
|
||||
|
||||
function mcl_burning.get_collisionbox(obj, smaller, storage)
|
||||
|
|
Loading…
Reference in a new issue