Compare commits

...

1 Commits

Author SHA1 Message Date
epCode 46ae74f6da Fix water breathing problem 2022-01-04 16:55:25 -08: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