Skip to content

Commit

Permalink
massively drops the odds of self respiration messages being sent to chat
Browse files Browse the repository at this point in the history
  • Loading branch information
AlbertNanotracen committed Sep 26, 2024
1 parent 2104394 commit 1f55a40
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion monkestation/code/modules/virology/disease/symtoms/stage4.dm
Original file line number Diff line number Diff line change
Expand Up @@ -447,7 +447,8 @@
mob.losebreath = max(0, mob.losebreath - multiplier)
mob.adjustOxyLoss(-2 * multiplier)
if(multiplier >= 4)
to_chat(mob, span_notice("[pick("Your lungs feel great.", "You realize you haven't been breathing.", "You don't feel the need to breathe.")]"))
if(prob(2.5))
to_chat(mob, span_notice("[pick("Your lungs feel great.", "You realize you haven't been breathing.", "You don't feel the need to breathe.")]"))
if(breathing)
breathing = FALSE
ADD_TRAIT(mob, TRAIT_NOBREATH, type)
Expand Down

0 comments on commit 1f55a40

Please sign in to comment.