Skip to content

Commit

Permalink
[MIRROR] Addendum to Baystation12#34339
Browse files Browse the repository at this point in the history
  • Loading branch information
Qlonever authored and SuhEugene committed Nov 23, 2023
1 parent 579ad32 commit 10e05e5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion code/modules/mob/living/carbon/human/human_damage.dm
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@
/mob/living/carbon/human/setOxyLoss(amount)
if (!need_breathe())
return
amount = clamp(amount, 0, 100) / 100
amount = (clamp(amount, 0, 100) - getOxyLoss()) / 100
adjustOxyLoss(amount * species.total_health)

/mob/living/carbon/human/adjustOxyLoss(amount)
Expand Down

0 comments on commit 10e05e5

Please sign in to comment.