From 3e25865bb2d4ccf88b9e5499e69fac4d931d9570 Mon Sep 17 00:00:00 2001 From: Leland Kemble <70413276+lelandkemble@users.noreply.github.com> Date: Fri, 12 Sep 2025 10:39:16 -0400 Subject: [PATCH] Names the ice cream status effect (#92942) ## About The Pull Request There was no name for the eating ice cream status effect so it defaults to the curse of mundanity. This gives it the name "Cooling Off" ## Why It's Good For The Game Dispels the curse Makes it at least vaguely clear what the status effect actually does. ## Changelog :cl: qol: Eating ice cream no longer curses you /:cl: --- code/datums/status_effects/buffs/food/chilling.dm | 1 + 1 file changed, 1 insertion(+) diff --git a/code/datums/status_effects/buffs/food/chilling.dm b/code/datums/status_effects/buffs/food/chilling.dm index 8b1d60fbcc1..0827ac5a4af 100644 --- a/code/datums/status_effects/buffs/food/chilling.dm +++ b/code/datums/status_effects/buffs/food/chilling.dm @@ -8,6 +8,7 @@ owner.adjust_bodytemperature(-2.75 * strength * seconds_between_ticks, min_temp = minimum_temp) /atom/movable/screen/alert/status_effect/icecream_chilling + name = "Cooling Off" desc = "Nothing beats a cup of ice cream during hot, plasma-floody day..." icon_state = "food_icecream"