From 57e2d38e310d2e6abb879a339538718ad3726038 Mon Sep 17 00:00:00 2001 From: warriorstar-orion Date: Mon, 21 Oct 2024 15:27:50 -0400 Subject: [PATCH] fix: TESTING-enabled admin rank helper procs (#27124) --- code/modules/admin/admin_ranks.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/modules/admin/admin_ranks.dm b/code/modules/admin/admin_ranks.dm index e6d6844116c..596dc3251eb 100644 --- a/code/modules/admin/admin_ranks.dm +++ b/code/modules/admin/admin_ranks.dm @@ -139,7 +139,7 @@ GLOBAL_PROTECT(admin_ranks) // this shit is being protected for obvious reasons holder.rights = GLOB.admin_ranks[newrank] else holder = new /datum/admins(newrank,GLOB.admin_ranks[newrank],ckey) - remove_admin_verbs() + hide_verbs() holder.associate(src) /client/verb/changerights(newrights as num) @@ -147,7 +147,7 @@ GLOBAL_PROTECT(admin_ranks) // this shit is being protected for obvious reasons holder.rights = newrights else holder = new /datum/admins("testing",newrights,ckey) - remove_admin_verbs() + hide_verbs() holder.associate(src) #endif