]> git.rm.cloudns.org Git - xonotic/xonotic-data.pk3dir.git/commitdiff
Hide leadlimit on scoreboard if more than fraglimit 1465/head
authorotta8634 <k9wolf@pm.me>
Mon, 10 Feb 2025 07:31:31 +0000 (15:31 +0800)
committerotta8634 <k9wolf@pm.me>
Mon, 10 Feb 2025 08:42:43 +0000 (16:42 +0800)
With a frag limit less than the lead limit, the lead limit can never be achieved, so displaying it is redundant.
Made it not show in such cases.

qcsrc/client/hud/panel/scoreboard.qc

index c5f1a2987f266a2128d52d8bc14e9e1bf37d46c3..6ab7fc830b0ef18166c98053646706ef140fe896 100644 (file)
@@ -2478,7 +2478,7 @@ void Scoreboard_Draw()
                                        str = strcat(str, "^7 / "); // delimiter
                                str = strcat(str, Scoreboard_Fraglimit_Draw(fl, false));
                        }
-                       if(ll > 0)
+                       if(ll > 0 && (ll < fl || fl <= 0))
                        {
                                if(tl > 0 || fl > 0)
                                {