From b98c2b59b60275484fdae9072ff494e9dae4456d Mon Sep 17 00:00:00 2001 From: ClairionCM <115504494+ClairionCM@users.noreply.github.com> Date: Tue, 16 Jan 2024 05:46:29 +0100 Subject: [PATCH] Update code/game/objects/items/devices/whistle.dm Co-authored-by: Zonespace <41448081+Zonespace27@users.noreply.github.com> --- code/game/objects/items/devices/whistle.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/game/objects/items/devices/whistle.dm b/code/game/objects/items/devices/whistle.dm index c0196568b593..7abc5d760590 100644 --- a/code/game/objects/items/devices/whistle.dm +++ b/code/game/objects/items/devices/whistle.dm @@ -30,7 +30,7 @@ /obj/item/device/whistle/proc/whistle_playsound(mob/user) if(!COOLDOWN_FINISHED(src, spam_cooldown)) - to_chat(user, SPAN_DANGER("\ You are out of breath after using [src]! Wait [COOLDOWN_SECONDSLEFT(src, spam_cooldown)] second(s).")) + to_chat(user, SPAN_DANGER("You are out of breath after using [src]! Wait [COOLDOWN_SECONDSLEFT(src, spam_cooldown)] second\s.")) return user.visible_message(SPAN_WARNING("[user] blows into [src]!"))