Fix crash in damage handler

This commit is contained in:
Elias Fleckenstein 2021-04-17 13:59:46 +02:00
parent 6bbea11fb8
commit 6724a8d0ed
1 changed files with 1 additions and 1 deletions

View File

@ -60,7 +60,7 @@ function mcl_armor.damage_modifier(obj, hp_change, reason)
end
end
if reason.source and enchantments.thorns > 0 then
if reason.source and enchantments.thorns and enchantments.thorns > 0 then
local do_irregular_damage = enchantments.thorns > 10
if do_irregular_damage or thorns_damage_regular < 4 and math.random() < enchantments.thorns * 0.15 then