From 356abb6698af0b84e201b092a60f19cf3eb3631e Mon Sep 17 00:00:00 2001 From: James Osborne Date: Mon, 25 May 2026 18:57:00 -0400 Subject: [PATCH] Treat tab-padded BB room names as crossplay opt-in --- src/ReceiveCommands.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ReceiveCommands.cc b/src/ReceiveCommands.cc index 2af0fa76..41281dce 100644 --- a/src/ReceiveCommands.cc +++ b/src/ReceiveCommands.cc @@ -4953,7 +4953,7 @@ static bool game_name_enables_full_crossplay(const string& name, Version creator // Ex... if (creator_version == Version::BB_V4) { size_t offset = 0; - while ((offset < name.size()) && (name[offset] == ' ')) { + while ((offset < name.size()) && ((name[offset] == ' ') || (name[offset] == '\t'))) { offset++; }