From b1cc4275cd3e8f12e5c4432043582beff59f531d Mon Sep 17 00:00:00 2001 From: Kashargul <144968721+Kashargul@users.noreply.github.com> Date: Fri, 4 Oct 2024 13:00:01 +0200 Subject: [PATCH] . --- code/modules/casino/slots.dm | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/code/modules/casino/slots.dm b/code/modules/casino/slots.dm index c3d490580d2..bfc9e074911 100644 --- a/code/modules/casino/slots.dm +++ b/code/modules/casino/slots.dm @@ -59,7 +59,7 @@ /obj/machinery/slot_machine/attackby(obj/item/W as obj, mob/user as mob) if(busy) - to_chat(user,"The slot machine is currently running. ") + to_chat(user,span_notice("The slot machine is currently running.")) return if(W.has_tool_quality(TOOL_WRENCH)) playsound(src, W.usesound, 100, 1) @@ -104,10 +104,10 @@ if (isbroken) return if (busy) - to_chat(user,"The slot machine is currently rolling. ") + to_chat(user,span_notice("The slot machine is currently rolling.")) return if(cashmoney.worth < 5) - to_chat(user,"You dont have enough chips to gamble! ") + to_chat(user,span_notice("You dont have enough chips to gamble!")) return to_chat(user,span_notice("You puts 5 credits in the slot machine and presses start.")) @@ -289,7 +289,7 @@ /obj/machinery/station_slot_machine/attackby(obj/item/W as obj, mob/user as mob) if(busy) - to_chat(user,"The slot machine is currently running. ") + to_chat(user,span_notice("The slot machine is currently running.")) return if(W.has_tool_quality(TOOL_WRENCH)) playsound(src, W.usesound, 100, 1) @@ -333,10 +333,10 @@ if (isbroken) return if (busy) - to_chat(user,"The slot machine is currently rolling. ") + to_chat(user,span_notice("The slot machine is currently rolling.")) return if(cashmoney.worth < 5) - to_chat(user,"You dont have enough Thalers to gamble! ") + to_chat(user,span_notice("You dont have enough Thalers to gamble!")) return to_chat(user,span_notice("You puts 5 Thalers in the slot machine and presses start."))