Skip to content

Commit

Permalink
Ой)
Browse files Browse the repository at this point in the history
  • Loading branch information
SmiLeYre committed Apr 5, 2024
1 parent b3a5384 commit a5fe84c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions code/datums/components/mood.dm
Original file line number Diff line number Diff line change
Expand Up @@ -196,21 +196,21 @@
setInsanityEffect(MAJOR_INSANITY_PEN)
master.add_movespeed_modifier(/datum/movespeed_modifier/sanity/insane)
master.add_actionspeed_modifier(/datum/actionspeed_modifier/low_sanity)
if(!master || master.prefs.windownoise)
if(!master || master.client.prefs.windownoise)
master.overlay_fullscreen("depression", /atom/movable/screen/fullscreen/scaled/depression, 3)
sanity_level = 6
if(SANITY_CRAZY to SANITY_UNSTABLE)
setInsanityEffect(MINOR_INSANITY_PEN)
master.add_movespeed_modifier(/datum/movespeed_modifier/sanity/crazy)
master.add_actionspeed_modifier(/datum/actionspeed_modifier/low_sanity)
if(!master || master.prefs.windownoise)
if(!master || master.client.prefs.windownoise)
master.overlay_fullscreen("depression", /atom/movable/screen/fullscreen/scaled/depression, 2)
sanity_level = 5
if(SANITY_UNSTABLE to SANITY_DISTURBED)
setInsanityEffect(SLIGHT_INSANITY_PEN)
master.add_movespeed_modifier(/datum/movespeed_modifier/sanity/disturbed)
master.add_actionspeed_modifier(/datum/actionspeed_modifier/low_sanity)
if(!master || master.prefs.windownoise)
if(!master || master.client.prefs.windownoise)
master.overlay_fullscreen("depression", /atom/movable/screen/fullscreen/scaled/depression, 1)
sanity_level = 4
if(SANITY_DISTURBED to SANITY_NEUTRAL)
Expand Down

0 comments on commit a5fe84c

Please sign in to comment.