From e9bce4d90df00299460efac8e3980f8719966ff5 Mon Sep 17 00:00:00 2001 From: Fox-McCloud Date: Sat, 3 Sep 2016 00:42:19 -0400 Subject: [PATCH] Fixes Mentors Having Access to Roundstart Logout --- code/game/gamemodes/game_mode.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/game/gamemodes/game_mode.dm b/code/game/gamemodes/game_mode.dm index 0b8eaf9eded..fe4d9208904 100644 --- a/code/game/gamemodes/game_mode.dm +++ b/code/game/gamemodes/game_mode.dm @@ -388,7 +388,7 @@ proc/display_roundstart_logout_report() for(var/mob/M in mob_list) - if(M.client && M.client.holder) + if(M.client && M.client.holder && (M.client.holder.rights & R_ADMIN)) to_chat(M, msg)