diff --git a/code/game/machinery/medical_kiosk.dm b/code/game/machinery/medical_kiosk.dm
index fcd358a943b..4c8d8719a16 100644
--- a/code/game/machinery/medical_kiosk.dm
+++ b/code/game/machinery/medical_kiosk.dm
@@ -76,7 +76,7 @@
return
// Service begins, delay
- visible_message("\The [src] scans [user] thoroughly!")
+ visible_message("\The [src] scans [user] thoroughly!")
flick("kiosk_active", src)
if(!do_after(user, 10 SECONDS, src, exclusive = TASK_ALL_EXCLUSIVE) || inoperable())
suspend()
@@ -86,13 +86,13 @@
switch(choice)
if("Health Scan")
var/health_report = tell_health_info(user)
- to_chat(user, "Health report results:"+health_report)
+ to_chat(user, "Health report results:"+health_report)
if("Backup Scan")
if(!our_db)
- to_chat(user, "Backup scan results:
DATABASE ERROR!")
+ to_chat(user, "Backup scan results:
DATABASE ERROR!")
else
var/scan_report = do_backup_scan(user)
- to_chat(user, "Backup scan results:"+scan_report)
+ to_chat(user, "Backup scan results:"+scan_report)
// Standby
suspend()