diff --git a/plugins/include/amxconst.inc b/plugins/include/amxconst.inc index 7550c2ec..d4d51087 100755 --- a/plugins/include/amxconst.inc +++ b/plugins/include/amxconst.inc @@ -213,6 +213,14 @@ public stock const MaxClients; /* Maximum number of players the server supports */ #define VOL_NORM 1.0 +/** + * Sound behavior constants + */ +#define SND_SPAWNING (1<<8) // we're spawing, used in some cases for ambients +#define SND_STOP (1<<5) // stop sound +#define SND_CHANGE_VOL (1<<6) // change sound vol +#define SND_CHANGE_PITCH (1<<7) // change sound pitch + /** * @endsection */ @@ -400,14 +408,6 @@ enum #define FP_STRING 2 #define FP_ARRAY 4 -/** - * Sound behavior constants - */ -#define SND_SPAWNING (1<<8) // we're spawing, used in some cases for ambients -#define SND_STOP (1<<5) // stop sound -#define SND_CHANGE_VOL (1<<6) // change sound vol -#define SND_CHANGE_PITCH (1<<7) // change sound pitch - /** * LibType constants */