Skip to content

Commit

Permalink
[MIRROR] Blackout drunkard warning adjustment [MDB IGNORE] (#25558) (#…
Browse files Browse the repository at this point in the history
…1078)

* Blackout drunkard warning adjustment (#80210)

---------

Co-authored-by: SkyratBot <[email protected]>
Co-authored-by: Rhials <[email protected]>
  • Loading branch information
3 people authored Dec 12, 2023
1 parent e13f27e commit c4c6d90
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions code/datums/brain_damage/split_personality.dm
Original file line number Diff line number Diff line change
Expand Up @@ -293,8 +293,8 @@
if(duration_in_seconds <= 0)
qdel(src)
return
else if(duration_in_seconds <= 50)
to_chat(owner, span_warning("You have 50 seconds left before sobering up!"))
else if(duration_in_seconds <= 60 && !(duration_in_seconds % 20))
to_chat(owner, span_warning("You have [duration_in_seconds] seconds left before sobering up!"))
if(prob(10) && !HAS_TRAIT(owner, TRAIT_DISCOORDINATED_TOOL_USER))
ADD_TRAIT(owner, TRAIT_DISCOORDINATED_TOOL_USER, TRAUMA_TRAIT)
owner.balloon_alert(owner, "dexterity reduced temporarily!")
Expand Down

0 comments on commit c4c6d90

Please sign in to comment.