* 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.
28 lines
763 B
Plaintext
28 lines
763 B
Plaintext
//////////////
|
|
GLOBAL_VAR_INIT(NEARSIGHTBLOCK, 0)
|
|
GLOBAL_VAR_INIT(EPILEPSYBLOCK, 0)
|
|
GLOBAL_VAR_INIT(COUGHBLOCK, 0)
|
|
GLOBAL_VAR_INIT(TOURETTESBLOCK, 0)
|
|
GLOBAL_VAR_INIT(NERVOUSBLOCK, 0)
|
|
GLOBAL_VAR_INIT(BLINDBLOCK, 0)
|
|
GLOBAL_VAR_INIT(DEAFBLOCK, 0)
|
|
GLOBAL_VAR_INIT(HULKBLOCK, 0)
|
|
GLOBAL_VAR_INIT(TELEBLOCK, 0)
|
|
GLOBAL_VAR_INIT(FIREBLOCK, 0)
|
|
GLOBAL_VAR_INIT(XRAYBLOCK, 0)
|
|
GLOBAL_VAR_INIT(CLUMSYBLOCK, 0)
|
|
GLOBAL_VAR_INIT(STRANGEBLOCK, 0)
|
|
GLOBAL_VAR_INIT(RACEBLOCK, 0)
|
|
|
|
GLOBAL_LIST(bad_se_blocks)
|
|
GLOBAL_LIST(good_se_blocks)
|
|
GLOBAL_LIST(op_se_blocks)
|
|
|
|
GLOBAL_VAR(NULLED_SE)
|
|
GLOBAL_VAR(NULLED_UI)
|
|
|
|
GLOBAL_LIST_EMPTY(global_mutations) // list of hidden mutation things
|
|
|
|
GLOBAL_LIST_EMPTY(bad_mutations)
|
|
GLOBAL_LIST_EMPTY(good_mutations)
|
|
GLOBAL_LIST_EMPTY(not_good_mutations) |