Skip to content

Commit

Permalink
RANKED MATCH ENDED -> MATCH ENDED
Browse files Browse the repository at this point in the history
  • Loading branch information
geneotech committed Aug 10, 2024
1 parent 5c80766 commit 1d14fcc
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 4 deletions.
2 changes: 2 additions & 0 deletions docs/pages/todo/todo_done.md
Original file line number Diff line number Diff line change
Expand Up @@ -7336,3 +7336,5 @@ This will discard your redo history."

- unbind f1 and f3 on web cause someone might do it accidentally

- use disjoint port ranges for web, or just use muxing and successive ports
- fix 'RANKED MATCH ENDED'
16 changes: 12 additions & 4 deletions src/view/mode_gui/arena/arena_mode_gui.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1296,10 +1296,18 @@ void arena_gui_state::draw_mode_gui(
draw_warmup_indicator(first, second);
}
else {
draw_warmup_indicator(
larger_colored("RANKED MATCH ENDED.", white),
secs_left_text
);
if (is_ranked_server) {
draw_warmup_indicator(
larger_colored("RANKED MATCH ENDED.", white),
secs_left_text
);
}
else {
draw_warmup_indicator(
larger_colored("MATCH ENDED.", white),
secs_left_text
);
}
}
}
else {
Expand Down

0 comments on commit 1d14fcc

Please sign in to comment.