From: MirceaKitsune Date: Sun, 26 Sep 2010 14:35:22 +0000 (+0300) Subject: Comments X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=f2e1c60c5c83af7886cf04b186219d9bb1cc8bd9;p=voretournament%2Fvoretournament.git Comments --- 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;