Skip to content
This repository has been archived by the owner on Feb 1, 2025. It is now read-only.

Commit

Permalink
fix(client): oxygen indicator disappering below 0
Browse files Browse the repository at this point in the history
  • Loading branch information
m3ftwz committed Feb 15, 2022
1 parent dfd7ece commit ee34818
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion client.lua
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ CreateThread(function()
action = "general",
hp = GetEntityHealth(ped) - 100,
armour = GetPedArmour(ped),
oxygen = IsPedSwimmingUnderWater(ped) and underwaterTime >= 0 and underwaterTime or 100,
oxygen = IsPedSwimmingUnderWater(ped) and underwaterTime or 100,
showSpeedo = isDriving,
showFuel = dx.showFuel and isDriving,
showVoice = dx.showVoice,
Expand Down

0 comments on commit ee34818

Please sign in to comment.