From: Samual Lenks Date: Sun, 19 Aug 2012 16:32:49 +0000 (-0400) Subject: Make the effect have slightly less alpha X-Git-Tag: xonotic-v0.8.0~152^2~408^2~6 X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=ed6c4221d4ec2efc3eea6c2e8069245e83d95378;p=xonotic%2Fxonotic-data.pk3dir.git Make the effect have slightly less alpha --- 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); }