mirror of
https://git.minetest.land/Mineclonia/Mineclonia.git
synced 2024-11-05 09:15:05 +00:00
Give mobs sunburn at correct light level
Before this patch, the light level that makes mobs that burn in sunlight catch fire had been mistakenly specified as minetest.LIGHT_MAX or more. The correct light level for sunlight is LIGHT_SUN, which is one higher than minetest.LIGHT_MAX. Since minetest.LIGHT_MAX is the maximum light value that a node can have and torches emit light at that light level, mobs that burn in sunlight caught fire inside torch nodes.
This commit is contained in:
parent
fc47f0a87e
commit
66dd87af25
1 changed files with 3 additions and 1 deletions
|
@ -14,6 +14,8 @@ local DEFAULT_FALL_SPEED = -10
|
|||
local FLOP_HEIGHT = 5.0
|
||||
local FLOP_HOR_SPEED = 1.5
|
||||
|
||||
local LIGHT_SUN = minetest.LIGHT_MAX + 1
|
||||
|
||||
local MOB_CAP = {}
|
||||
MOB_CAP.hostile = 70
|
||||
MOB_CAP.passive = 10
|
||||
|
@ -1057,7 +1059,7 @@ local do_env_damage = function(self)
|
|||
if mod_worlds then
|
||||
_, dim = mcl_worlds.y_to_layer(pos.y)
|
||||
end
|
||||
if (self.sunlight_damage ~= 0 or self.ignited_by_sunlight) and (minetest.get_node_light(pos) or 0) >= minetest.LIGHT_MAX and dim == "overworld" then
|
||||
if (self.sunlight_damage ~= 0 or self.ignited_by_sunlight) and (minetest.get_node_light(pos) or 0) == LIGHT_SUN and dim == "overworld" then
|
||||
if self.ignited_by_sunlight then
|
||||
mcl_burning.set_on_fire(self.object, 10)
|
||||
else
|
||||
|
|
Loading…
Reference in a new issue