Let admins create server polls

This commit is contained in:
Markolie
2015-09-23 20:17:21 +02:00
parent cab53d90bf
commit e95eb8f3b8
6 changed files with 135 additions and 6 deletions
+2 -5
View File
@@ -1,10 +1,7 @@
//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/hide_verbs, /*hides all our adminverbs*/
// /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(
@@ -162,7 +159,8 @@ var/list/admin_verbs_possess = list(
/proc/release
)
var/list/admin_verbs_permissions = list(
/client/proc/edit_admin_permissions
/client/proc/edit_admin_permissions,
/client/proc/create_poll
)
var/list/admin_verbs_rejuv = list(
/client/proc/respawn_character,
@@ -182,7 +180,6 @@ var/list/admin_verbs_mod = list(
/datum/admins/proc/show_player_panel,
/client/proc/jobbans,
/client/proc/debug_variables /*allows us to -see- the variables of any instance in the game. +VAREDIT needed to modify*/
// /client/proc/cmd_admin_subtle_message /*send an message to somebody as a 'voice in their head'*/
)
var/list/admin_verbs_mentor = list(