From ef60d386ddb47151171cf1f7a5967d11bcbdfa71 Mon Sep 17 00:00:00 2001 From: SkyratBot <59378654+SkyratBot@users.noreply.github.com> Date: Mon, 3 Aug 2020 16:35:56 +0200 Subject: [PATCH] [MIRROR] mood multipliers are applied once instead of per moodlet (#181) * mood multiplier no longer applies per moodlet (#52632) * mood multipliers are applied once instead of per moodlet Co-authored-by: Theos --- code/datums/components/mood.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/datums/components/mood.dm b/code/datums/components/mood.dm index c3e46d289e2..022e20896ee 100644 --- a/code/datums/components/mood.dm +++ b/code/datums/components/mood.dm @@ -97,8 +97,8 @@ mood += event.mood_change if(!event.hidden) shown_mood += event.mood_change - mood *= mood_modifier - shown_mood *= mood_modifier + mood *= mood_modifier + shown_mood *= mood_modifier switch(mood) if(-INFINITY to MOOD_LEVEL_SAD4)