From 70f3f6656dd371cab322b705cbfc686bf0f8acf2 Mon Sep 17 00:00:00 2001 From: MirceaKitsune Date: Tue, 15 Nov 2011 22:46:55 +0200 Subject: [PATCH] Fix last commit --- data/qcsrc/client/View.qc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/data/qcsrc/client/View.qc b/data/qcsrc/client/View.qc index 0b3600e1..bb51586b 100644 --- a/data/qcsrc/client/View.qc +++ b/data/qcsrc/client/View.qc @@ -300,7 +300,7 @@ void CSQC_UpdateView(float w, float h) // helper system if(cvar("cl_helper")) - if not(getstati(STAT_ARMOR) < g_power && time > power_boot) + if not(getstati(STAT_ARMOR) < g_power || time <= power_boot) { if(intermission || respawned || spectatee_status < 0 || getstati(STAT_HEALTH) <= 0 || getstati(STAT_VORE_EATEN)) { @@ -1159,7 +1159,7 @@ void CSQC_UpdateView(float w, float h) localcmd(strcat("bf ", cvar_string("cl_flash_respawn_color"), " ", cvar_string("cl_flash_respawn"), "\n")); if not(getstati(STAT_VORE_EATEN)) // crosshair is useless if we're in the stomach - if not(getstati(STAT_ARMOR) < g_power && time > power_boot) + if not(getstati(STAT_ARMOR) < g_power || time <= power_boot) { // crosshair goes VERY LAST if(!scoreboard_active && !ons_showmap && !camera_active) { -- 2.39.2