From 8f10b2af1916b09ceafbd49e1157d11580c7d4e6 Mon Sep 17 00:00:00 2001 From: castawaynont <76170211+castawaynont@users.noreply.github.com> Date: Tue, 23 Jun 2026 07:46:01 -0700 Subject: [PATCH] chuunicasting notifies when healing is on cooldown (#96620) ## About The Pull Request now notifies in chat when your chuuni heal on spellcast fails due to the cooldown ## Why It's Good For The Game clarity good, theres no indication of the healing cooldown anywhere else ## Changelog :cl: xyc fix: chuuni casting now notifies you when the healing on spellcast is on cooldown /:cl: --- code/datums/components/chuunibyou.dm | 1 + 1 file changed, 1 insertion(+) diff --git a/code/datums/components/chuunibyou.dm b/code/datums/components/chuunibyou.dm index 5373b3f7987..0eb07f0d70e 100644 --- a/code/datums/components/chuunibyou.dm +++ b/code/datums/components/chuunibyou.dm @@ -97,6 +97,7 @@ casting_spell = FALSE if(!COOLDOWN_FINISHED(src, heal_cooldown)) + to_chat(source, span_danger("Your chuuni powers are on cooldown! You fail to heal!")) return COOLDOWN_START(src, heal_cooldown, CHUUNIBYOU_COOLDOWN_TIME)