Skip to content

Commit

Permalink
remove tenth not divide by ten
Browse files Browse the repository at this point in the history
  • Loading branch information
ynot01 committed Jan 24, 2025
1 parent 245f52a commit 26442eb
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -891,7 +891,7 @@
M.adjustFireLoss(-0.5*REM, 0)
M.adjustOxyLoss(-0.5*REM, 0)
if(M.losebreath >= 4)
M.losebreath = floor(M.losebreath / 10)
M.losebreath = floor(M.losebreath * 0.9)
if(M.losebreath < 0)
M.losebreath = 0
M.adjustStaminaLoss(-0.5*REM, 0)
Expand Down

0 comments on commit 26442eb

Please sign in to comment.