forked from VoxeLibre/VoxeLibre
Correct regeneration amount - 1/2 heart per cycle
This commit is contained in:
parent
3ab5035312
commit
38a4e6ed89
|
@ -77,7 +77,7 @@ function mcl_potions.regeneration_func(player, factor, duration)
|
||||||
for i=1,math.floor(duration/factor) do
|
for i=1,math.floor(duration/factor) do
|
||||||
minetest.after(i*factor, function()
|
minetest.after(i*factor, function()
|
||||||
if player:get_hp() < 20 then
|
if player:get_hp() < 20 then
|
||||||
player:set_hp(player:get_hp() + 0.5)
|
player:set_hp(player:get_hp() + 1)
|
||||||
end
|
end
|
||||||
end )
|
end )
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in New Issue