forked from Mineclonia/Mineclonia
move hudbar stuff outside initial statement.
This commit is contained in:
parent
af1ab424fc
commit
67e4e814f4
|
@ -638,10 +638,6 @@ function mcl_potions.poison_func(player, factor, duration)
|
||||||
|
|
||||||
is_poisoned[player] = {step = factor, dur = duration, timer = 0}
|
is_poisoned[player] = {step = factor, dur = duration, timer = 0}
|
||||||
|
|
||||||
if player:is_player() then
|
|
||||||
potions_set_hudbar(player)
|
|
||||||
end
|
|
||||||
|
|
||||||
else
|
else
|
||||||
|
|
||||||
local victim = is_poisoned[player]
|
local victim = is_poisoned[player]
|
||||||
|
@ -651,6 +647,11 @@ function mcl_potions.poison_func(player, factor, duration)
|
||||||
victim.timer = 0
|
victim.timer = 0
|
||||||
|
|
||||||
end
|
end
|
||||||
|
|
||||||
|
if player:is_player() then
|
||||||
|
potions_set_hudbar(player)
|
||||||
|
end
|
||||||
|
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
||||||
|
@ -660,10 +661,6 @@ function mcl_potions.regeneration_func(player, factor, duration)
|
||||||
|
|
||||||
is_regenerating[player] = {step = factor, dur = duration, timer = 0}
|
is_regenerating[player] = {step = factor, dur = duration, timer = 0}
|
||||||
|
|
||||||
if player:is_player() then
|
|
||||||
potions_set_hudbar(player)
|
|
||||||
end
|
|
||||||
|
|
||||||
else
|
else
|
||||||
|
|
||||||
local victim = is_regenerating[player]
|
local victim = is_regenerating[player]
|
||||||
|
@ -673,6 +670,11 @@ function mcl_potions.regeneration_func(player, factor, duration)
|
||||||
victim.timer = 0
|
victim.timer = 0
|
||||||
|
|
||||||
end
|
end
|
||||||
|
|
||||||
|
if player:is_player() then
|
||||||
|
potions_set_hudbar(player)
|
||||||
|
end
|
||||||
|
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue