mirror of
https://git.minetest.land/MineClone2/MineClone2.git
synced 2024-11-28 05:43:43 +01:00
Fix mobs spawn with 0 health if mob_difficulty=0
This commit is contained in:
parent
0e733f1677
commit
c6903b48f1
@ -3118,7 +3118,7 @@ local function scale_difficulty(value, default, min, special)
|
||||
if (not value) or (value == default) or (value == special) then
|
||||
return default
|
||||
else
|
||||
return max(min, value) * difficulty
|
||||
return max(min, value * difficulty)
|
||||
end
|
||||
end
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user