From c19d735e7b3d287e7784f4505e97bfaacebfc0fc Mon Sep 17 00:00:00 2001 From: Datraen Date: Sat, 2 Jan 2016 22:19:44 -0500 Subject: [PATCH] Adds more accesses to things. --- code/modules/admin/admin_verbs.dm | 6 ++++-- code/modules/admin/verbs/randomverbs.dm | 6 +++--- 2 files changed, 7 insertions(+), 5 deletions(-) diff --git a/code/modules/admin/admin_verbs.dm b/code/modules/admin/admin_verbs.dm index 8d0ef780b0..256eef4e05 100644 --- a/code/modules/admin/admin_verbs.dm +++ b/code/modules/admin/admin_verbs.dm @@ -195,7 +195,8 @@ var/list/admin_verbs_debug = list( /client/proc/Jump, /client/proc/jumptomob, /client/proc/jumptocoord, - /client/proc/dsay + /client/proc/dsay, + /client/proc/admin_ghost /*allows us to ghost/reenter body at will*/ ) var/list/admin_verbs_paranoid_debug = list( @@ -306,7 +307,8 @@ var/list/admin_verbs_mod = list( /client/proc/jobbans, /client/proc/cmd_admin_subtle_message, /*send an message to somebody as a 'voice in their head'*/ /datum/admins/proc/paralyze_mob, - /client/proc/cmd_admin_direct_narrate + /client/proc/cmd_admin_direct_narrate, + /client/proc/allow_character_respawn /* Allows a ghost to respawn */ ) var/list/admin_verbs_mentor = list( diff --git a/code/modules/admin/verbs/randomverbs.dm b/code/modules/admin/verbs/randomverbs.dm index 6216abbe21..014cd8988f 100644 --- a/code/modules/admin/verbs/randomverbs.dm +++ b/code/modules/admin/verbs/randomverbs.dm @@ -122,7 +122,7 @@ set category = "Special Verbs" set name = "Direct Narrate" - if(!check_rights(R_ADMIN|R_MOD)) + if(!holder) src << "Only administrators and moderators may use this command." return @@ -256,9 +256,9 @@ Ccomp's first proc. /client/proc/allow_character_respawn() set category = "Special Verbs" set name = "Allow player to respawn" - set desc = "Let's the player bypass the 30 minute wait to respawn or allow them to re-enter their corpse." + set desc = "Let's the player bypass the 15 minute wait to respawn or allow them to re-enter their corpse." if(!holder) - src << "Only administrators may use this command." + src << "Only administrators and moderators may use this command." var/list/ghosts= get_ghosts(1,1) var/target = input("Please, select a ghost!", "COME BACK TO LIFE!", null, null) as null|anything in ghosts