From f2e1c60c5c83af7886cf04b186219d9bb1cc8bd9 Mon Sep 17 00:00:00 2001 From: MirceaKitsune Date: Sun, 26 Sep 2010 17:35:22 +0300 Subject: [PATCH] Comments --- data/qcsrc/client/View.qc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/data/qcsrc/client/View.qc b/data/qcsrc/client/View.qc index 1cdb755b..28539b03 100644 --- a/data/qcsrc/client/View.qc +++ b/data/qcsrc/client/View.qc @@ -491,17 +491,17 @@ void CSQC_UpdateView(float w, float h) teamradar_view(); // Draw Artwork - if(intermission && !isdemo()) // match has ended + if(intermission && !isdemo()) // the match has ended { if(artwork_image == "") { - if(getstati(STAT_WINNING)) + if(getstati(STAT_WINNING)) // we are the winner { if(!cvar("cl_artwork_won")) return; artwork_image = strcat("gfx/artwork_won_", ftos(floor(1 + (random() * cvar("cl_artwork_won"))))); } - else + else // we have lost { if(!cvar("cl_artwork_lost")) return; -- 2.39.2