]> de.git.xonotic.org Git - voretournament/voretournament.git/blobdiff - data/qcsrc/server/vore.qc
Prefix all sounds as .wav, since this is the way it's done in the code for all others.
[voretournament/voretournament.git] / data / qcsrc / server / vore.qc
index 2c83a711ef7ef71df258eb91646832cde296d55d..c4b467ec68cc651c01fe1d443df1c68a80f13215 100644 (file)
@@ -380,8 +380,8 @@ void Vore_Teamheal()
                // play beep sound when a team mate was healed to the maximum amount, to both the prey and the predator\r
                if(self.health >= cvar("g_balance_vore_teamheal_stable"))\r
                {\r
-                       play2(self, "misc/beep.ogg");\r
-                       play2(self.predator, "misc/beep.ogg");\r
+                       play2(self, "misc/beep.wav");\r
+                       play2(self.predator, "misc/beep.wav");\r
                }\r
        }\r
 }\r
@@ -396,7 +396,7 @@ void Vore_StomachKick()
                float damage;\r
                damage = ceil(random() * (cvar("g_balance_vore_kick_damage_max") - cvar("g_balance_vore_kick_damage_min")) + cvar("g_balance_vore_kick_damage_min"));\r
                Damage(self.predator, self, self, damage, DEATH_STOMACHKICK, self.predator.origin, v_forward * cvar("g_balance_vore_kick_force"));\r
-               sound(self.predator, CHAN_PROJECTILE, "weapons/stomachkick.ogg", VOL_BASE, ATTN_NORM);\r
+               sound(self.predator, CHAN_PROJECTILE, "weapons/stomachkick.wav", VOL_BASE, ATTN_NORM);\r
                self.predator.punchangle_x -= self.predator.cvar_cl_vore_kick_punchangle;\r
 \r
                if(random() < cvar("g_balance_vore_kick_escapeprobability"))\r