Everyone should have check new players

This commit is contained in:
ZomgPonies
2015-02-21 09:25:43 -05:00
parent 15e6a60c0b
commit b0a3d7e1cc
+3 -3
View File
@@ -1,9 +1,10 @@
//admin verb groups - They can overlap if you so wish. Only one of each verb will exist in the verbs list regardless
var/list/admin_verbs_default = list(
// /datum/admins/proc/show_player_panel, /*shows an interface for individual players, with various links (links require additional flags*/
/client/proc/deadmin_self /*destroys our own admin datum so we can play as a regular player*/
/client/proc/deadmin_self, /*destroys our own admin datum so we can play as a regular player*/
// /client/proc/check_antagonists, /*shows all antags*/
// /client/proc/deadchat /*toggles deadchat on/off*/
/client/proc/cmd_mentor_check_new_players
)
var/list/admin_verbs_admin = list(
/client/proc/check_antagonists, /*shows all antags*/
@@ -176,8 +177,7 @@ var/list/admin_verbs_mod = list(
var/list/admin_verbs_mentor = list(
/client/proc/cmd_admin_pm_context, /*right-click adminPM interface*/
/client/proc/cmd_admin_pm_panel, /*admin-pm list*/
/client/proc/cmd_admin_pm_by_key_panel, /*admin-pm list by key*/
/client/proc/cmd_mentor_check_new_players
/client/proc/cmd_admin_pm_by_key_panel /*admin-pm list by key*/
)
/client/proc/add_admin_verbs()