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)