From e709df4186d8419e6ed801d33fd46d82bb3c5086 Mon Sep 17 00:00:00 2001 From: Xander3359 <66163761+Xander3359@users.noreply.github.com> Date: Sat, 20 Apr 2024 03:19:27 -0400 Subject: [PATCH 1/2] admin stuff --- code/modules/admin/admin_verbs.dm | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/code/modules/admin/admin_verbs.dm b/code/modules/admin/admin_verbs.dm index 6a58fd47ca7..6574446c24c 100644 --- a/code/modules/admin/admin_verbs.dm +++ b/code/modules/admin/admin_verbs.dm @@ -12,12 +12,14 @@ GLOBAL_PROTECT(admin_verbs_default) /client/proc/ghost_up, /client/proc/ghost_down, /client/proc/jumptoarea, - /client/proc/jumptokey, + /client/proc/jumptokey, /client/proc/jumptomob, /client/proc/returntolobby, /datum/verbs/menu/Admin/verb/playerpanel, /client/proc/check_antagonists, - /client/proc/cmd_admin_say + /client/proc/cmd_admin_say, + /client/proc/deadmin, /*destroys our own admin datum so we can play as a regular player*/ + /client/proc/set_context_menu_enabled, ) GLOBAL_LIST_INIT(admin_verbs_admin, world.AVerbsAdmin()) GLOBAL_PROTECT(admin_verbs_admin) @@ -25,8 +27,6 @@ GLOBAL_PROTECT(admin_verbs_admin) return list( /client/proc/adjusttriumph, /client/proc/end_party, - /client/proc/set_context_menu_enabled, - /client/proc/deadmin, /*destroys our own admin datum so we can play as a regular player*/ /client/proc/cmd_admin_say, /*admin-only ooc chat*/ /client/proc/hide_verbs, /*hides all our adminverbs*/ /client/proc/hide_most_verbs, /*hides all our hideable adminverbs*/ From 10ab20d6a7d50f21ffba1f957f59bd50824271ce Mon Sep 17 00:00:00 2001 From: Xander3359 <66163761+Xander3359@users.noreply.github.com> Date: Sat, 20 Apr 2024 03:25:07 -0400 Subject: [PATCH 2/2] debug job slots I guess --- code/modules/admin/verbs/randomverbs.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/admin/verbs/randomverbs.dm b/code/modules/admin/verbs/randomverbs.dm index 3ead57a4453..71c48930d1e 100644 --- a/code/modules/admin/verbs/randomverbs.dm +++ b/code/modules/admin/verbs/randomverbs.dm @@ -598,7 +598,7 @@ Traitors and the like can also be revived with the previous role mostly intact. set category = "Admin" set name = "Manage Job Slots" - if(!check_rights(R_ADMIN)) + if(!check_rights(R_DEBUG)) return holder.manage_free_slots() SSblackbox.record_feedback("tally", "admin_verb", 1, "Manage Job Slots") //If you are copy-pasting this, ensure the 2nd parameter is unique to the new proc!