From 281c0ce582a0bedaab5b87839e61f614e380e844 Mon Sep 17 00:00:00 2001 From: Fermi Date: Thu, 13 Jun 2019 01:02:39 +0100 Subject: [PATCH] Reduced happiness mood effects. --- code/datums/mood_events/drug_events.dm | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/code/datums/mood_events/drug_events.dm b/code/datums/mood_events/drug_events.dm index 89e93d3361..469bf80979 100644 --- a/code/datums/mood_events/drug_events.dm +++ b/code/datums/mood_events/drug_events.dm @@ -40,16 +40,16 @@ /datum/mood_event/happiness_drug description = "I can't feel anything and I never want this to end.\n" - mood_change = 50 + mood_change = 10 /datum/mood_event/happiness_drug_good_od description = "YES! YES!! YES!!!\n" - mood_change = 100 + mood_change = 20 timeout = 300 //special_screen_obj = "mood_happiness_good" Originally in tg, but I personally think they look dumb /datum/mood_event/happiness_drug_bad_od description = "NO! NO!! NO!!!\n" - mood_change = -100 + mood_change = -20 timeout = 300 - //special_screen_obj = "mood_happiness_bad" Originally in tg \ No newline at end of file + //special_screen_obj = "mood_happiness_bad" Originally in tg