diff --git a/code/modules/admin/player_panel.dm b/code/modules/admin/player_panel.dm
index 082553f3092..2f1d523bb65 100644
--- a/code/modules/admin/player_panel.dm
+++ b/code/modules/admin/player_panel.dm
@@ -455,6 +455,16 @@
dat += "
[mob_loc.loc] | "
else
dat += "| Head not found! |
"
+ if(ticker.mode.num_players_started() >= 30
+ for(var/datum/mind/N in ticker.mode.get_extra_living_heads())
+ var/mob/M = N.current
+ if(M)
+ dat += "| [M.real_name][M.client ? "" : " (logged out)"][M.stat == 2 ? " (DEAD)" : ""] | "
+ dat += "PM | "
+ var/turf/mob_loc = get_turf_loc(M)
+ dat += "[mob_loc.loc] |
"
+ else
+ dat += "| Head not found! |
"
dat += ""
if(ticker.mode.name == "nations")