From a02b5a85e2f4861c40ede8bb95a928adac845aa1 Mon Sep 17 00:00:00 2001 From: Marco Hladik Date: Wed, 23 Feb 2022 01:17:57 -0800 Subject: [PATCH] Client: Fix typo that the compiler gracefully cleaned up for us. --- src/shared/fx_explosion.qc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/shared/fx_explosion.qc b/src/shared/fx_explosion.qc index a583173..55c3186 100755 --- a/src/shared/fx_explosion.qc +++ b/src/shared/fx_explosion.qc @@ -65,7 +65,7 @@ FX_Explosion(vector vecPos) //eExplosion.think = FX_Explosion_Animate; eExplosion.SetRenderMode(RM_ADDITIVE); eExplosion.SetRenderAmt(1.0f); - eExplosion.SetRenderColor(1,1,1); + eExplosion.SetRenderColor([1,1,1]); eExplosion.drawmask = MASK_ENGINE; eExplosion.maxframe = modelframecount(eExplosion.modelindex); eExplosion.loops = 0;