mirror of
https://github.com/vgstation-coders/vgstation13.git
synced 2025-12-09 16:14:13 +00:00
* Refactored job preferences * remove more useless shit * i swear it's useless * step * keep the list clean
17 lines
500 B
Plaintext
17 lines
500 B
Plaintext
//used in /datum/preferences/var/alternate_option
|
|
#define GET_RANDOM_JOB 0
|
|
#define BE_ASSISTANT 1
|
|
#define RETURN_TO_LOBBY 2
|
|
#define GET_EMPTY_JOB 3
|
|
|
|
// /datum/preferences/var/special_popup
|
|
#define SPECIAL_POPUP_DISABLED 0 // only output to chat
|
|
#define SPECIAL_POPUP_EXCLUSIVE 1 // only output to special
|
|
#define SPECIAL_POPUP_USE_BOTH 2 // output to both chat and special
|
|
|
|
// /datum/preferences/var/jobs
|
|
#define JOB_PREF_HIGH 3
|
|
#define JOB_PREF_MED 2
|
|
#define JOB_PREF_LOW 1
|
|
#define JOB_PREF_NEVER 0
|