]> git.rm.cloudns.org Git - xonotic/xonotic-data.pk3dir.git/commitdiff
Make the effect have slightly less alpha
authorSamual Lenks <samual@xonotic.org>
Sun, 19 Aug 2012 16:32:49 +0000 (12:32 -0400)
committerSamual Lenks <samual@xonotic.org>
Sun, 19 Aug 2012 16:32:49 +0000 (12:32 -0400)
qcsrc/client/particles.qc

index 14a5d9f57b68d0155d0a031627cc4a5b34017f68..361d244a1e48892938582782837918d00b47967f 100644 (file)
@@ -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); }