From ed6c4221d4ec2efc3eea6c2e8069245e83d95378 Mon Sep 17 00:00:00 2001 From: Samual Lenks Date: Sun, 19 Aug 2012 12:32:49 -0400 Subject: [PATCH] Make the effect have slightly less alpha --- qcsrc/client/particles.qc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qcsrc/client/particles.qc b/qcsrc/client/particles.qc index 14a5d9f57..361d244a1 100644 --- a/qcsrc/client/particles.qc +++ b/qcsrc/client/particles.qc @@ -310,7 +310,7 @@ void Net_ReadNexgunBeamParticle() void Draw_Shockwave() { - float a = bound(0, (0.6 - ((time - self.sw_time) / 0.4)), 0.6); + float a = bound(0, (0.5 - ((time - self.sw_time) / 0.4)), 0.5); if not(a) { remove(self); } -- 2.39.2