From 7bd7e8325085ec11ac3cb5a503b51c5534a57447 Mon Sep 17 00:00:00 2001 From: Neerti Date: Sat, 24 Jun 2017 15:15:11 -0400 Subject: [PATCH] Removes staff exemption for AFK kicking. As requested by a few staff members, this serves to keep the staffwho list more representative of who is actually available to help. The current inactivity timer is rather generous so hopefully this won't impede admins who are actually there. --- code/controllers/Processes/inactivity.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/controllers/Processes/inactivity.dm b/code/controllers/Processes/inactivity.dm index 26cc136ccc..b1029e0391 100644 --- a/code/controllers/Processes/inactivity.dm +++ b/code/controllers/Processes/inactivity.dm @@ -6,7 +6,7 @@ if(config.kick_inactive) for(last_object in clients) var/client/C = last_object - if(!C.holder && C.is_afk(config.kick_inactive MINUTES)) + if(C.is_afk(config.kick_inactive MINUTES)) if(!istype(C.mob, /mob/observer/dead)) log_access("AFK: [key_name(C)]") C << "You have been inactive for more than [config.kick_inactive] minute\s and have been disconnected."