From 19c1fe215a59e6a7f5c690e87786a3a041b25216 Mon Sep 17 00:00:00 2001 From: terencehill Date: Thu, 14 Feb 2013 20:32:52 +0100 Subject: [PATCH] No hud blood effect while the player is frozen --- qcsrc/client/View.qc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/qcsrc/client/View.qc b/qcsrc/client/View.qc index dac205e72..25a47e217 100644 --- a/qcsrc/client/View.qc +++ b/qcsrc/client/View.qc @@ -862,8 +862,8 @@ void CSQC_UpdateView(float w, float h) } } } - - if(autocvar_hud_damage) + + if(autocvar_hud_damage && !getstati(STAT_FROZEN)) { splash_size_x = max(vid_conwidth, vid_conheight); splash_size_y = max(vid_conwidth, vid_conheight); -- 2.39.2