From: MirceaKitsune Date: Fri, 16 Mar 2012 13:46:33 +0000 (+0200) Subject: Correct ground impact particle count when healthsize is disabled X-Git-Url: https://git.xonotic.org/?a=commitdiff_plain;h=39a405511cf3cbc165400131a833cf21fa0aede0;p=voretournament%2Fvoretournament.git Correct ground impact particle count when healthsize is disabled --- diff --git a/data/qcsrc/server/cl_physics.qc b/data/qcsrc/server/cl_physics.qc index 9e000474..a2016435 100644 --- a/data/qcsrc/server/cl_physics.qc +++ b/data/qcsrc/server/cl_physics.qc @@ -912,12 +912,12 @@ void SV_PlayerPhysics() if(trace_dphitq3surfaceflags & Q3SURFACEFLAG_METALSTEPS) { GlobalSound(globalsound_metalfall, CHAN_PLAYER, VOICETYPE_PLAYERSOUND, VOL_BASE); - pointparticles(particleeffectnum("ground_metal"), self.origin, '0 0 0', 1); + pointparticles(particleeffectnum("ground_metal"), self.origin, '0 0 0', PARTICLE_MULTIPLIER); } else { GlobalSound(globalsound_fall, CHAN_PLAYER, VOICETYPE_PLAYERSOUND, VOL_BASE); - pointparticles(particleeffectnum("ground_dirt"), self.origin, '0 0 0', 1); + pointparticles(particleeffectnum("ground_dirt"), self.origin, '0 0 0', PARTICLE_MULTIPLIER); } } }