From af667da9013b4b65feaa30998837f6da7efd7493 Mon Sep 17 00:00:00 2001 From: AndroidSFV Date: Sun, 2 Jun 2013 19:20:28 -0500 Subject: [PATCH] Makes the admin "Show Crew Manifest" verb inside the secrets window actually show the Crew Manifest, instead of the old dumb way of just looking at whatever ID human players are holding. --- code/modules/admin/topic.dm | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/code/modules/admin/topic.dm b/code/modules/admin/topic.dm index 6d540d096ac..0484ba0bd04 100644 --- a/code/modules/admin/topic.dm +++ b/code/modules/admin/topic.dm @@ -2076,9 +2076,8 @@ if("manifest") var/dat = "Showing Crew Manifest.
" dat += "" - for(var/mob/living/carbon/human/H in mob_list) - if(H.ckey) - dat += text("", H.name, H.get_assignment()) + for(var/datum/data/record/t in data_core.general) + dat += text("", t.fields["name"], t.fields["rank"]) dat += "
NamePosition
[][]
[][]
" usr << browse(dat, "window=manifest;size=440x410") if("DNA")