forked from VoxeLibre/VoxeLibre
Fix crash / luacheck warning caused by armor with thorns level > 10
This commit is contained in:
parent
079cedaa34
commit
772f48ed58
|
@ -68,7 +68,7 @@ mcl_damage.register_modifier(function(obj, damage, reason)
|
||||||
|
|
||||||
if do_irregular_damage or thorns_damage_regular < 4 and math.random() < enchantments.thorns * 0.15 then
|
if do_irregular_damage or thorns_damage_regular < 4 and math.random() < enchantments.thorns * 0.15 then
|
||||||
if do_irregular_damage then
|
if do_irregular_damage then
|
||||||
thorns_damage_irregular = thorns_damage_irregular + throrns_level - 10
|
thorns_damage_irregular = thorns_damage_irregular + enchantments.thorns - 10
|
||||||
else
|
else
|
||||||
thorns_damage_regular = math.min(4, thorns_damage_regular + math.random(4))
|
thorns_damage_regular = math.min(4, thorns_damage_regular + math.random(4))
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in New Issue