mirror of
https://github.com/VOREStation/VOREStation.git
synced 2026-08-21 19:19:12 +01:00
* 1 * Full conversion * . * . --------- Co-authored-by: Kashargul <144968721+Kashargul@users.noreply.github.com>
13 lines
356 B
Plaintext
13 lines
356 B
Plaintext
/datum/admin_secret_item/admin_secret/show_crew_manifest
|
|
name = "Show Crew Manifest"
|
|
|
|
/datum/admin_secret_item/admin_secret/show_crew_manifest/execute(var/mob/user)
|
|
. = ..()
|
|
if(!.)
|
|
return
|
|
var/dat
|
|
dat += "<h4>Crew Manifest</h4>"
|
|
dat += GLOB.data_core.get_manifest()
|
|
|
|
user << browse("<html>[dat]</html>", "window=manifest;size=370x420;can_close=1")
|