]> git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/commitdiff
Fix a couple of extensions left in W_Sound calls
authorMario <zacjardine@y7mail.com>
Wed, 26 Aug 2015 01:27:19 +0000 (11:27 +1000)
committerMario <zacjardine@y7mail.com>
Wed, 26 Aug 2015 01:27:19 +0000 (11:27 +1000)
qcsrc/client/casings.qc
qcsrc/common/weapons/w_seeker.qc

index 09c2e685365f8915633d7c954e96d2af62dfd7ba..61d7f10ba5c9be8715e8d9e833a53b41de9dd188 100644 (file)
@@ -146,10 +146,10 @@ void Casings_Precache()
 {
        precache_model("models/casing_shell.mdl");
        precache_model("models/casing_bronze.iqm");
-       precache_sound(W_Sound("brass1.wav"));
-       precache_sound(W_Sound("brass2.wav"));
-       precache_sound(W_Sound("brass3.wav"));
-       precache_sound(W_Sound("casings1.wav"));
-       precache_sound(W_Sound("casings2.wav"));
-       precache_sound(W_Sound("casings3.wav"));
+       precache_sound(W_Sound("brass1"));
+       precache_sound(W_Sound("brass2"));
+       precache_sound(W_Sound("brass3"));
+       precache_sound(W_Sound("casings1"));
+       precache_sound(W_Sound("casings2"));
+       precache_sound(W_Sound("casings3"));
 }
index 8d8a24194d6eb18da941774188c5cd8068f9abc6..9fcd8b68a744a52e648c69f3620dca72d238edbd 100644 (file)
@@ -250,7 +250,7 @@ void W_Seeker_Fire_Missile(vector f_diff, entity m_target)
        W_DecreaseAmmo(WEP_CVAR(seeker, missile_ammo));
 
        makevectors(self.v_angle);
-       W_SetupShot_ProjectileSize(self, '-2 -2 -2', '2 2 2', false, 2, W_Sound("seeker_fire.wav"), CH_WEAPON_A, 0);
+       W_SetupShot_ProjectileSize(self, '-2 -2 -2', '2 2 2', false, 2, W_Sound("seeker_fire"), CH_WEAPON_A, 0);
        w_shotorg += f_diff;
        Send_Effect("seeker_muzzleflash", w_shotorg, w_shotdir * 1000, 1);