From d2e1ce44ca5c248529202bbf561ab7237ae131ee Mon Sep 17 00:00:00 2001 From: MirceaKitsune Date: Sun, 26 Sep 2010 17:47:56 +0300 Subject: [PATCH] Don't show artwork for spectators. Perhaps someone could make it show for spectated players (non-observer spectators), but I'm not bothering with that for now. --- data/qcsrc/client/View.qc | 1 + 1 file changed, 1 insertion(+) diff --git a/data/qcsrc/client/View.qc b/data/qcsrc/client/View.qc index 28539b03..76f3f2c5 100644 --- a/data/qcsrc/client/View.qc +++ b/data/qcsrc/client/View.qc @@ -492,6 +492,7 @@ void CSQC_UpdateView(float w, float h) // Draw Artwork if(intermission && !isdemo()) // the match has ended + if(!spectatee_status) { if(artwork_image == "") { -- 2.39.2