]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/commitdiff
Prevent reticle from showing during the respawn zoom effect or for spectators
authorMircea Kitsune <sonichedgehog_hyperblast00@yahoo.com>
Thu, 24 Jun 2010 16:10:44 +0000 (19:10 +0300)
committerMircea Kitsune <sonichedgehog_hyperblast00@yahoo.com>
Thu, 24 Jun 2010 16:10:44 +0000 (19:10 +0300)
qcsrc/client/View.qc

index c65da4c5cffb80a3555873cc39024247b57fb177..0d2f138ea8bd6a522eb5ba116bb9ac779d4f68de 100644 (file)
@@ -556,7 +556,9 @@ void CSQC_UpdateView(float w, float h)
        // reticle_type is changed to the item we are zooming / aiming with, to decide which reticle to use
        // It must be a persisted float for fading out to work properly (you let go of the zoom button for the
        // view to go back to normal, so reticle_type would become 0 as we fade out and use that image instead)
-       if(button_zoom)
+       if(spectatee_status || getstati(STAT_HEALTH) <= 0)
+               reticle_type = -1; // prevent reticle from showing during the respawn zoom effect or for spectators
+       else if(button_zoom)
                reticle_type = 0; // normal zoom
        else if(activeweapon == WEP_NEX && button_attack2)
                reticle_type = 1; // nex zoom