forked from VoxeLibre/VoxeLibre
Fix water breathing problem
This commit is contained in:
parent
f803a25aea
commit
ac17553c91
|
@ -195,7 +195,7 @@ minetest.register_globalstep(function(dtime)
|
||||||
if player:get_pos() then mcl_potions._add_spawner(player, "#2E5299") end
|
if player:get_pos() then mcl_potions._add_spawner(player, "#2E5299") end
|
||||||
|
|
||||||
if player:get_breath() then
|
if player:get_breath() then
|
||||||
if player:get_breath() < 10 then player:set_breath(10) end
|
player:set_breath(10)
|
||||||
end
|
end
|
||||||
|
|
||||||
if EF.water_breathing[player].timer >= EF.water_breathing[player].dur then
|
if EF.water_breathing[player].timer >= EF.water_breathing[player].dur then
|
||||||
|
|
Loading…
Reference in New Issue