From b9cd17d9dc6a071f9d51ce89a2287a182d3f3fe9 Mon Sep 17 00:00:00 2001 From: James Osborne Date: Sun, 7 Jun 2026 16:53:41 -0400 Subject: [PATCH] Do not use BB color tokens in game list names --- src/SendCommands.cc | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/src/SendCommands.cc b/src/SendCommands.cc index 78bd52f7..9bc086f7 100644 --- a/src/SendCommands.cc +++ b/src/SendCommands.cc @@ -2195,11 +2195,7 @@ void send_game_menu_t(std::shared_ptr c, bool is_spectator_team_list, bo } } - if ((c->version() == Version::BB_V4) && (l->brutal_peeps_tier >= 1)) { - e.name.encode("$C4" + l->name, c->language()); - } else { - e.name.encode(l->name, c->language()); - } + e.name.encode(l->name, c->language()); } send_command_vt(c, is_spectator_team_list ? 0xE6 : 0x08, entries.size() - 1, entries);