From ee870b42d79ba59bbecdce0bf7a9d701f5f502aa Mon Sep 17 00:00:00 2001 From: SoundScopes Date: Sun, 21 Dec 2014 22:16:12 +0000 Subject: [PATCH] Check New players --- code/modules/admin/admin_verbs.dm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/code/modules/admin/admin_verbs.dm b/code/modules/admin/admin_verbs.dm index 9a93b738..52ba5aa0 100644 --- a/code/modules/admin/admin_verbs.dm +++ b/code/modules/admin/admin_verbs.dm @@ -6,7 +6,6 @@ var/list/admin_verbs_default = list( /client/proc/hide_verbs, /*hides all our adminverbs*/ /client/proc/hide_most_verbs, /*hides all our hideable adminverbs*/ /client/proc/debug_variables, /*allows us to -see- the variables of any instance in the game. +VAREDIT needed to modify*/ -// /client/proc/cmd_mentor_check_new_players //redundant // /client/proc/deadchat /*toggles deadchat on/off*/ ) var/list/admin_verbs_admin = list( @@ -48,6 +47,7 @@ var/list/admin_verbs_admin = list( /client/proc/cmd_admin_direct_narrate, /*send text directly to a player with no padding. Useful for narratives and fluff-text*/ /client/proc/cmd_admin_world_narrate, /*sends text to all players with no padding*/ /client/proc/cmd_admin_create_centcom_report, + /client/proc/cmd_mentor_check_new_players, /client/proc/check_words, /*displays cult-words*/ /client/proc/check_ai_laws, /*shows AI and borg laws*/ /client/proc/check_antagonists, @@ -316,6 +316,7 @@ var/list/admin_verbs_mod = list( /client/proc/toggledebuglogs, /client/proc/toggleprayers, /datum/admins/proc/PlayerNotes, + /client/proc/cmd_mentor_check_new_players, /client/proc/admin_ghost, /*allows us to ghost/reenter body at will*/ /client/proc/cmd_mod_say, /client/proc/check_ai_laws,