From 0673aa89400dfaf91f9fae94da0b866d3ad85c92 Mon Sep 17 00:00:00 2001 From: Drulikar Date: Wed, 18 Oct 2023 13:13:42 -0700 Subject: [PATCH] Accurate kick message --- code/controllers/subsystem/inactivity.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/controllers/subsystem/inactivity.dm b/code/controllers/subsystem/inactivity.dm index f65fa98d1c8f..7e861bd15bce 100644 --- a/code/controllers/subsystem/inactivity.dm +++ b/code/controllers/subsystem/inactivity.dm @@ -21,5 +21,5 @@ SUBSYSTEM_DEF(inactivity) if(current.is_afk(INACTIVITY_KICK)) if(!istype(current.mob, /mob/dead)) log_access("AFK: [key_name(current)]") - to_chat(current, SPAN_WARNING("You have been inactive for more than 10 minutes and have been disconnected.")) + to_chat(current, SPAN_WARNING("You have been inactive for more than [INACTIVITY_KICK / 600] minutes and have been disconnected.")) qdel(current)