From: MirceaKitsune Date: Mon, 28 Feb 2011 02:51:30 +0000 (+0200) Subject: Fix a code typo X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=e4a797f6492b93258bd50b64ffaddf692094bd3d;p=voretournament%2Fvoretournament.git Fix a code typo --- diff --git a/data/qcsrc/server/g_damage.qc b/data/qcsrc/server/g_damage.qc index 483ff0c7..edc14f05 100644 --- a/data/qcsrc/server/g_damage.qc +++ b/data/qcsrc/server/g_damage.qc @@ -60,10 +60,10 @@ float damage_headshotbonus; // bonus multiplier for head shots, set to 0 after u .float taunt_soundtime; .float taunt_soundtype; -void SetAutoTaunt(entity e, float t_soundtime, float soundtype) +void SetAutoTaunt(entity e, float t_soundtime, float t_soundtype) { e.taunt_soundtime = t_soundtime; - e.taunt_soundtype = soundtype; + e.taunt_soundtype = t_soundtype; } float IsDifferentTeam(entity a, entity b)