* sound overhaul * renaming folders correctly * sound code and compile fixes * sounds working testing prey-induced loop, as well * loops should stop upon ejections
15 lines
403 B
Plaintext
15 lines
403 B
Plaintext
//max channel is 1024. Only go lower from here, because byond tends to pick the first availiable channel to play sounds on
|
|
#define CHANNEL_LOBBYMUSIC 1024
|
|
#define CHANNEL_ADMIN 1023
|
|
#define CHANNEL_VOX 1022
|
|
#define CHANNEL_JUKEBOX 1021
|
|
|
|
//Citadel code
|
|
#define CHANNEL_PRED 1020
|
|
#define CHANNEL_PREY 1019
|
|
|
|
//THIS SHOULD ALWAYS BE THE LOWEST ONE!
|
|
//KEEP IT UPDATED
|
|
|
|
#define CHANNEL_HIGHEST_AVAILABLE 1018
|