From: MirceaKitsune Date: Tue, 7 Sep 2010 00:33:44 +0000 (+0300) Subject: Put the regurgitate_prepare sound on a different channel than the regurgitate sound... X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=c9c412b1f7ec51c2e4b623d3e15db41b71e6300f;p=voretournament%2Fvoretournament.git Put the regurgitate_prepare sound on a different channel than the regurgitate sound, so one doesn't cut the other. Too bad this didn't make it in 0.2, so the effect will be missing for a while. --- diff --git a/data/qcsrc/server/vore.qc b/data/qcsrc/server/vore.qc index 1296b015..00d21e15 100644 --- a/data/qcsrc/server/vore.qc +++ b/data/qcsrc/server/vore.qc @@ -332,7 +332,7 @@ void Vore() if(time > self.regurgitate_button_delay) { self.regurgitate_prepare = time + cvar("g_balance_vore_regurgitate_delay"); - PlayerSound(self, playersound_regurgitate_prepare, CHAN_PAIN, VOICETYPE_PLAYERSOUND); + PlayerSound(self, playersound_regurgitate_prepare, CHAN_VOICE, VOICETYPE_PLAYERSOUND); self.regurgitate_button_delay = time + button_delay; } }