From efd110d20fad68d571aba1f688ac3d85daf83892 Mon Sep 17 00:00:00 2001
From: Kashargul <144968721+Kashargul@users.noreply.github.com>
Date: Tue, 1 Oct 2024 08:41:15 +0200
Subject: [PATCH] no old spans
---
code/modules/paperwork/faxmachine.dm | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/code/modules/paperwork/faxmachine.dm b/code/modules/paperwork/faxmachine.dm
index 1af8171ef5f..df048f0b053 100644
--- a/code/modules/paperwork/faxmachine.dm
+++ b/code/modules/paperwork/faxmachine.dm
@@ -305,13 +305,13 @@ Extracted to its own procedure for easier logic handling with paper bundles.
else if(istype(O, /obj/item/toner))
if(toner <= 10) //allow replacing when low toner is affecting the print darkness
user.drop_item()
- to_chat(user, "You insert the toner cartridge into \the [src].")
+ to_chat(user, span_notice("You insert the toner cartridge into \the [src]."))
playsound(loc, 'sound/machines/click.ogg', 50, 1)
var/obj/item/toner/T = O
toner += T.toner_amount
qdel(O)
else
- to_chat(user, "This cartridge is not yet ready for replacement! Use up the rest of the toner.")
+ to_chat(user, span_notice("This cartridge is not yet ready for replacement! Use up the rest of the toner."))
playsound(loc, 'sound/machines/buzz-two.ogg', 75, 1)
return