Replace missed global config, fixes #94

This commit is contained in:
stujones11 2017-03-19 13:27:04 +00:00
parent 709535dff0
commit 5517be8ff2
1 changed files with 1 additions and 1 deletions

View File

@ -387,7 +387,7 @@ minetest.register_on_player_hpchange(function(player, hp_change)
end
armor.def[name].state = state
armor.def[name].count = items
heal_max = heal_max * ARMOR_HEAL_MULTIPLIER
heal_max = heal_max * armor.config.heal_multiplier
if heal_max > math.random(100) then
hp_change = 0
end