From e7b21f0332bca87cebf74159dfac7ef0331ddb6c Mon Sep 17 00:00:00 2001 From: MrMelbert <51863163+MrMelbert@users.noreply.github.com> Date: Tue, 18 Mar 2025 16:53:05 -0500 Subject: [PATCH] Fix me using the wrong helper in mood printout (#90082) ## About The Pull Request Duration is infinite, amount is what matters ## Changelog :cl: Melbert fix: Fixed drunkness mood printout /:cl: --- code/datums/mood.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/datums/mood.dm b/code/datums/mood.dm index 1a5d5f9a70c..f15094be846 100644 --- a/code/datums/mood.dm +++ b/code/datums/mood.dm @@ -354,7 +354,7 @@ if(0 to NUTRITION_LEVEL_STARVING) msg += "[span_boldwarning("I'm starving!")]
" - var/drunkness = mob_parent.get_timed_status_effect_duration(/datum/status_effect/inebriated) + var/drunkness = mob_parent.get_drunk_amount() if(drunkness >= 1) msg += span_notice("My current drunkenness: ") switch(drunkness)