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 += "| Name/Real Name | IP/CID | Info | Options |
"
+ dat += "| Name/Real Name | IP/CID | Info | Options | Traitor? |
"
//add IP: | to this if wanting to add back in IP checking Type | Assigned Job | Traitor? |
//add (IP: [M.lastKnownIP]) | if you want to know their ip to the lists below
var/list/mobs = get_sorted_mobs()
@@ -208,14 +208,14 @@
PM |
"}
-/* switch(is_special_character(M))
+ switch(is_special_character(M))
if(0)
- dat += {"Traitor? | "}
+ dat += {"Loyal | "}
if(1)
- dat += {"Traitor? | "}
+ dat += {"Antag | "}
if(2)
- dat += {"Traitor? | "}
-*/
+ dat += {"Mode-Antag | "}
+
dat += "
"
usr << browse(dat, "window=players;size=600x600")