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))