From 0527c1005f3be0131e8da3a23bf6006ad136fbcb Mon Sep 17 00:00:00 2001 From: TheDZD Date: Mon, 4 May 2015 21:49:30 -0400 Subject: [PATCH] Update to Antag OOC Only holder with R_ADMIN, and antagonists will be able to see AOOC. --- code/modules/admin/verbs/antag-ooc.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/modules/admin/verbs/antag-ooc.dm b/code/modules/admin/verbs/antag-ooc.dm index 12064823184..400c60b2dea 100644 --- a/code/modules/admin/verbs/antag-ooc.dm +++ b/code/modules/admin/verbs/antag-ooc.dm @@ -13,8 +13,8 @@ display_name = holder.fakekey for(var/mob/M in mob_list) - if((M.mind && M.mind.special_role && M.client) || (M.client && M.client.holder)) + if((M.mind && M.mind.special_role && M.client) || (M.client && M.client.holder && (M.client.holder.rights & R_ADMIN)) ) M << "AOOC: [display_name]: [msg]" - log_ooc("(ANTAG) [key] : [msg]") \ No newline at end of file + log_ooc("(ANTAG) [key] : [msg]")