Compare commits

...

1 Commits

Author SHA1 Message Date
epCode ac17553c91 Fix water breathing problem 2022-02-12 23:15:14 +00:00
1 changed files with 1 additions and 1 deletions

View File

@ -195,7 +195,7 @@ minetest.register_globalstep(function(dtime)
if player:get_pos() then mcl_potions._add_spawner(player, "#2E5299") end
if player:get_breath() then
if player:get_breath() < 10 then player:set_breath(10) end
player:set_breath(10)
end
if EF.water_breathing[player].timer >= EF.water_breathing[player].dur then