From b4573d93d0cbb849439a5beb8d4e5f83b04e5733 Mon Sep 17 00:00:00 2001 From: Selis <12716288+ItsSelis@users.noreply.github.com> Date: Thu, 3 Jul 2025 22:17:10 +0200 Subject: [PATCH] Allows ranks with R_ADMIN permission to see rLOOC (#17948) --- code/modules/client/verbs/ooc.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/client/verbs/ooc.dm b/code/modules/client/verbs/ooc.dm index 5c2a533d2a4..33545d6cdd5 100644 --- a/code/modules/client/verbs/ooc.dm +++ b/code/modules/client/verbs/ooc.dm @@ -163,7 +163,7 @@ // Admins with RLOOC displayed who weren't already in for(var/client/admin in GLOB.admins) if(!(admin in receivers) && admin.prefs?.read_preference(/datum/preference/toggle/holder/show_rlooc)) - if(check_rights_for(admin, R_SERVER)) //Stop rLOOC showing for retired staff + if(check_rights_for(admin, (R_SERVER|R_ADMIN))) //Stop rLOOC showing for retired staff r_receivers |= admin msg = GLOB.is_valid_url.Replace(msg,span_linkify("$1"))