From: FruitieX Date: Wed, 17 Nov 2010 18:21:27 +0000 (+0200) Subject: also don't draw it if the match ended or we are in the mapvote screen (intermission) X-Git-Tag: xonotic-v0.1.0preview~122^2^2~2 X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=95974901c0fc4db713bc0a1d11f7bbaa22a55ffe;p=xonotic%2Fxonotic-data.pk3dir.git also don't draw it if the match ended or we are in the mapvote screen (intermission) --- diff --git a/qcsrc/client/View.qc b/qcsrc/client/View.qc index c2e6ea52b..8f684cc06 100644 --- a/qcsrc/client/View.qc +++ b/qcsrc/client/View.qc @@ -697,9 +697,9 @@ void CSQC_UpdateView(float w, float h) } } - if(spectatee_status == -1) + if(spectatee_status == -1 || intermission) { - myhealth_flash = 0; // observing + myhealth_flash = 0; // observing, or match ended myhealth_flash_temp = 0; }