Fix me using the wrong helper in mood printout (#90082)

## About The Pull Request

Duration is infinite, amount is what matters

## Changelog

🆑 Melbert
fix: Fixed drunkness mood printout
/🆑
This commit is contained in:
MrMelbert
2025-03-18 16:53:05 -05:00
committed by GitHub
parent d1a291e3bc
commit e7b21f0332
+1 -1
View File
@@ -354,7 +354,7 @@
if(0 to NUTRITION_LEVEL_STARVING)
msg += "[span_boldwarning("I'm starving!")]<br>"
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)