From c5acdc23bbb9594acb9e909c812ddc553a22dec2 Mon Sep 17 00:00:00 2001 From: terencehill Date: Fri, 12 Aug 2016 12:02:31 +0200 Subject: [PATCH] Simplify --- qcsrc/common/mutators/mutator/waypoints/waypointsprites.qc | 2 -- 1 file changed, 2 deletions(-) diff --git a/qcsrc/common/mutators/mutator/waypoints/waypointsprites.qc b/qcsrc/common/mutators/mutator/waypoints/waypointsprites.qc index c1b642fe9..e99303823 100644 --- a/qcsrc/common/mutators/mutator/waypoints/waypointsprites.qc +++ b/qcsrc/common/mutators/mutator/waypoints/waypointsprites.qc @@ -461,8 +461,6 @@ void Draw_WaypointSprite(entity this) { if (this.lifetime > 0) this.alpha = pow(bound(0, (this.fadetime - time) / this.lifetime, 1), waypointsprite_timealphaexponent); - else if (this.lifetime < 0) - this.alpha = (time < this.fadetime) ? 1 : 0; // no fading out effect else this.alpha = 1; -- 2.39.2