* Maps and things no code/icons * helpers defines globalvars * Onclick world.dm orphaned_procs * subsystems Round vote and shuttle autocall done here too * datums * Game folder * Admin - chatter modules * clothing - mining * modular computers - zambies * client * mob level 1 * mob stage 2 + simple_animal * silicons n brains * mob stage 3 + Alien/Monkey * human mobs * icons updated * some sounds * emitter y u no commit * update tgstation.dme * compile fixes * travis fixes Also removes Fast digest mode, because reasons. * tweaks for travis Mentors are broke again Also fixes Sizeray guns * oxygen loss fix for vore code. * removes unused code * some code updates * bulk fixes * further fixes * outside things * whoops. * Maint bar ported * GLOBs.
21 lines
1.2 KiB
Plaintext
21 lines
1.2 KiB
Plaintext
GLOBAL_LIST_EMPTY(clients) //all clients
|
|
GLOBAL_LIST_EMPTY(admins) //all clients whom are admins
|
|
GLOBAL_PROTECT(admins)
|
|
GLOBAL_LIST_EMPTY(deadmins) //all clients who have used the de-admin verb.
|
|
GLOBAL_PROTECT(deadmins)
|
|
GLOBAL_LIST_EMPTY(directory) //all ckeys with associated client
|
|
GLOBAL_LIST_EMPTY(stealthminID) //reference list with IDs that store ckeys, for stealthmins
|
|
|
|
//Since it didn't really belong in any other category, I'm putting this here
|
|
//This is for procs to replace all the goddamn 'in world's that are chilling around the code
|
|
|
|
GLOBAL_LIST_EMPTY(player_list) //all mobs **with clients attached**. Excludes /mob/dead/new_player
|
|
GLOBAL_LIST_EMPTY(mob_list) //all mobs, including clientless
|
|
GLOBAL_LIST_EMPTY(living_mob_list) //all alive mobs, including clientless. Excludes /mob/dead/new_player
|
|
GLOBAL_LIST_EMPTY(dead_mob_list) //all dead mobs, including clientless. Excludes /mob/dead/new_player
|
|
GLOBAL_LIST_EMPTY(joined_player_list) //all clients that have joined the game at round-start or as a latejoin.
|
|
GLOBAL_LIST_EMPTY(silicon_mobs) //all silicon mobs
|
|
GLOBAL_LIST_EMPTY(ai_list)
|
|
GLOBAL_LIST_EMPTY(pai_list)
|
|
GLOBAL_LIST_EMPTY(available_ai_shells)
|
|
GLOBAL_LIST_EMPTY(language_datums) |