Expanded mod powers to include temporary job bans, temporary global bans, muting, and subtle messaging.

This commit is contained in:
DJSnapshot
2013-10-14 23:48:26 -07:00
parent 6a2c91196a
commit c7821741c2
3 changed files with 32 additions and 121 deletions

View File

@@ -234,7 +234,8 @@ var/list/admin_verbs_mod = list(
/datum/admins/proc/show_player_info,
/client/proc/player_panel_new,
/datum/admins/proc/show_skills,
/client/proc/dsay
/client/proc/jobbans,
/client/proc/cmd_admin_subtle_message /*send an message to somebody as a 'voice in their head'*/
)
/client/proc/add_admin_verbs()
if(holder)
@@ -581,11 +582,11 @@ var/list/admin_verbs_mod = list(
set category = "Debug"
set name = "Kill Air"
set desc = "Toggle Air Processing"
if(air_processing_killed)
air_processing_killed = 0
if(kill_air)
kill_air = 0
usr << "<b>Enabled air processing.</b>"
else
air_processing_killed = 1
kill_air = 1
usr << "<b>Disabled air processing.</b>"
feedback_add_details("admin_verb","KA") //If you are copy-pasting this, ensure the 2nd parameter is unique to the new proc!
log_admin("[key_name(usr)] used 'kill air'.")