mirror of
https://github.com/vgstation-coders/vgstation13.git
synced 2025-12-09 16:14:13 +00:00
* Radio headset sounds * SQL stuff * wtf * typo * fixed db Co-authored-by: Damian <damian@autistici.org>
21 lines
634 B
Plaintext
21 lines
634 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
|
|
|
|
// /datum/preferences/var/headset_sound
|
|
#define HEADSET_SOUND_DISABLED 0
|
|
#define HEADSET_SOUND_TRANSMIT 1
|
|
#define HEADSET_SOUND_ALL 2 |