From a9d945e4c7c9bce6826b551fff89c79d4d002a84 Mon Sep 17 00:00:00 2001 From: AffectedArc07 Date: Tue, 5 May 2020 10:32:04 +0100 Subject: [PATCH] Adds MC VIEWING to the VIEWRUNTIMES permission --- code/modules/mob/mob.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/modules/mob/mob.dm b/code/modules/mob/mob.dm index d08ef11db0f..12ce5c88103 100644 --- a/code/modules/mob/mob.dm +++ b/code/modules/mob/mob.dm @@ -964,8 +964,8 @@ GLOBAL_LIST_INIT(slot_equipment_priority, list( \ for(var/obj/effect/proc_holder/spell/S in mind.spell_list) add_spell_to_statpanel(S) - - if(is_admin(src)) + // Allow admins + PR reviewers to VIEW the panel. Doesnt mean they can click things. + if(is_admin(src) || check_rights(R_VIEWRUNTIMES)) if(statpanel("MC")) //looking at that panel var/turf/T = get_turf(client.eye) stat("Location:", COORD(T))