From 8927239681ea011e7204b3e03f5dec941c33cbb2 Mon Sep 17 00:00:00 2001 From: YakumoChen Date: Sat, 1 Jun 2019 22:10:34 +0000 Subject: [PATCH] AFK Timeout text fix (#44245) Fixes a button in the afk timeout prompt. --- code/controllers/subsystem/server_maint.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/controllers/subsystem/server_maint.dm b/code/controllers/subsystem/server_maint.dm index 958c250c96c..63925d4a587 100644 --- a/code/controllers/subsystem/server_maint.dm +++ b/code/controllers/subsystem/server_maint.dm @@ -37,7 +37,7 @@ SUBSYSTEM_DEF(server_maint) var/cmob = C.mob if (!isnewplayer(cmob) || !SSticker.queued_players.Find(cmob)) log_access("AFK: [key_name(C)]") - to_chat(C, "You have been inactive for more than [DisplayTimeText(afk_period)] and have been disconnected.
clicking here to reconnect") + to_chat(C, "You have been inactive for more than [DisplayTimeText(afk_period)] and have been disconnected.
You may reconnect via the button in the file menu or by clicking here to reconnect.") QDEL_IN(C, 1) //to ensure they get our message before getting disconnected continue