# HG changeset patch # User Adam Kaminski # Date 1641574888 18000 # Fri Jan 07 12:01:28 2022 -0500 # Node ID 553923055b2aff76721480c635aedbde40088134 # Parent 8a5b9dc4cc6be3b7515fcb46460fe148a491a0d8 Fixed: the "x waves left" and "x monsters left" strings still weren't being drawn on the same line. diff -r 8a5b9dc4cc6b -r 553923055b2a src/scoreboard.cpp --- a/src/scoreboard.cpp Fri Jan 07 11:46:39 2022 -0500 +++ b/src/scoreboard.cpp Fri Jan 07 12:01:28 2022 -0500 @@ -767,6 +767,10 @@ else text.Format( "%d%% monsters left", static_cast( lRemaining )); + // [AK] Render the number of monsters left on the same line as the number of waves left in invasion. + if ( invasion && wavelimit ) + scoreboard_TryToPrependLimit( lines, text ); + lines.push_back( text ); ulNumLimits++; }