diff --git a/code/datums/datacore.dm b/code/datums/datacore.dm index b258a18b94c..38b1dd5954d 100644 --- a/code/datums/datacore.dm +++ b/code/datums/datacore.dm @@ -5,129 +5,6 @@ //This list tracks characters spawned in the world and cannot be modified in-game. Currently referenced by respawn_character(). var/list/locked = list() -/datum/datacore/proc/get_manifest(monochrome, OOC) - var/list/heads = new() - var/list/sec = new() - var/list/eng = new() - var/list/med = new() - var/list/sci = new() - var/list/ser = new() - var/list/sup = new() - var/list/bot = new() - var/list/misc = new() - var/list/isactive = new() - var/dat = {" -
-| Name | Rank | Activity |
|---|---|---|
| Heads | ||
| [name] | [heads[name]] | [isactive[name]] |
| Security | ||
| [name] | [sec[name]] | [isactive[name]] |
| Engineering | ||
| [name] | [eng[name]] | [isactive[name]] |
| Medical | ||
| [name] | [med[name]] | [isactive[name]] |
| Science | ||
| [name] | [sci[name]] | [isactive[name]] |
| Service | ||
| [name] | [ser[name]] | [isactive[name]] |
| Supply | ||
| [name] | [sup[name]] | [isactive[name]] |
| Silicon | ||
| [name] | [bot[name]] | [isactive[name]] |
| Miscellaneous | ||
| [name] | [misc[name]] | [isactive[name]] |