From bbf735a00bb600f9dec5a04f5399e52d2704d4c2 Mon Sep 17 00:00:00 2001 From: cib Date: Fri, 22 Jun 2012 04:46:05 -0700 Subject: [PATCH] Moderators can now identify antagonists. --- code/modules/admin/player_panel.dm | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/code/modules/admin/player_panel.dm b/code/modules/admin/player_panel.dm index a0e9d99858f..b1086d6a4da 100644 --- a/code/modules/admin/player_panel.dm +++ b/code/modules/admin/player_panel.dm @@ -118,7 +118,7 @@ if (!usr.client.holder) return var/dat = "Player Menu" - dat += "" + dat += "
Name/Real NameIP/CIDInfoOptions
" //add to this if wanting to add back in IP checking //add if you want to know their ip to the lists below var/list/mobs = get_sorted_mobs() @@ -208,14 +208,14 @@ "} -/* switch(is_special_character(M)) + switch(is_special_character(M)) if(0) - dat += {""} + dat += {""} if(1) - dat += {""} + dat += {""} if(2) - dat += {""} -*/ + dat += {""} + dat += "
Name/Real NameIP/CIDInfoOptionsTraitor?
IP:Type Assigned Job Traitor?(IP: [M.lastKnownIP])PMTraitor?LoyalTraitor?AntagTraitor?Mode-Antag
" usr << browse(dat, "window=players;size=600x600")