]> git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/commitdiff
No need to use macros for this, just declare them directly
authorSamual <samual@xonotic.org>
Mon, 2 Apr 2012 03:17:43 +0000 (23:17 -0400)
committerSamual <samual@xonotic.org>
Mon, 2 Apr 2012 03:17:43 +0000 (23:17 -0400)
qcsrc/server/mutators/gamemode_ctf.qh

index 47f37567a458afb1e8fa53f8687feddc160a992c..427c65fc94be7bdfaaac88de0e06d60db28aaedb 100644 (file)
@@ -37,15 +37,12 @@ void spawnfunc_ctf_team();
 #define WPCOLOR_DROPPEDFLAG(t) (('0.25 0.25 0.25' + colormapPaletteColor(t - 1, FALSE)) * 0.5)
 
 // sounds 
-.string noise4;
-.string noise5;
-
 #define snd_flag_taken noise
 #define snd_flag_returned noise1
 #define snd_flag_capture noise2
 #define snd_flag_respawn noise3
-#define snd_flag_dropped noise4
-#define snd_flag_touch noise5
+.string snd_flag_dropped;
+.string snd_flag_touch;
 
 // list of flags on the map
 entity ctf_worldflaglist;