From 09cab06ab8b1c794b370962c2d60e17c8d00b7e9 Mon Sep 17 00:00:00 2001 From: Mario Date: Fri, 21 Aug 2015 15:50:15 +1000 Subject: [PATCH] Make TimePath happy --- qcsrc/common/effects.qc | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/qcsrc/common/effects.qc b/qcsrc/common/effects.qc index cddfd60e5..81dbd704f 100644 --- a/qcsrc/common/effects.qc +++ b/qcsrc/common/effects.qc @@ -39,10 +39,12 @@ void Read_Effect(bool is_new) eff_cnt = ReadByte(); if(is_new) - if(eff_trail) - WarpZone_TrailParticles(world, particleeffectnum(eff.eent_eff_name), v, vel); - else - pointparticles(particleeffectnum(eff.eent_eff_name), v, vel, eff_cnt); + { + if(eff_trail) + WarpZone_TrailParticles(world, particleeffectnum(eff.eent_eff_name), v, vel); + else + pointparticles(particleeffectnum(eff.eent_eff_name), v, vel, eff_cnt); + } } #endif -- 2.39.2