From 86150e93150c2684febc03eec4256b8bc1494da8 Mon Sep 17 00:00:00 2001 From: GDN <96800819+GDNgit@users.noreply.github.com> Date: Sat, 23 Sep 2023 22:55:01 -0500 Subject: [PATCH] fixes viewruntimes not being able to use a verb I gave them (#22512) --- code/modules/admin/verbs/debug.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/admin/verbs/debug.dm b/code/modules/admin/verbs/debug.dm index 895bb877fa1..a19295752f0 100644 --- a/code/modules/admin/verbs/debug.dm +++ b/code/modules/admin/verbs/debug.dm @@ -959,7 +959,7 @@ GLOBAL_PROTECT(AdminProcCallSpamPrevention) set category = "Debug" set name = "Visualise Active Turfs" - if(!check_rights(R_DEBUG)) + if(!check_rights(R_DEBUG | R_VIEWRUNTIMES)) return // This can potentially iterate through a list thats 20k things long. Give ample warning to the user