Skip to content

Commit

Permalink
Update life.dm
Browse files Browse the repository at this point in the history
  • Loading branch information
Discozavisim committed Feb 4, 2025
1 parent 92aad43 commit dd97535
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion code/modules/mob/living/carbon/life.dm
Original file line number Diff line number Diff line change
Expand Up @@ -544,7 +544,9 @@ All effects don't start immediately, but rather get worse over time; the rate is
Dizzy(10)

if(drunkenness >= 51)
if(prob(3))
if(iscathayan(src))
drunkenness = 50
else if(prob(3))
add_confusion(15)
vomit() // vomiting clears toxloss, consider this a blessing
Dizzy(25)
Expand Down

0 comments on commit dd97535

Please sign in to comment.