From dfb1249efc4ea2cbf902748ba1928f1d4c232578 Mon Sep 17 00:00:00 2001 From: Martin Michelsen Date: Mon, 27 Nov 2023 10:34:41 -0800 Subject: [PATCH] add comment about 11/2000 symbol chat --- src/ReceiveSubcommands.cc | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/ReceiveSubcommands.cc b/src/ReceiveSubcommands.cc index d4964e69..80b2cb73 100644 --- a/src/ReceiveSubcommands.cc +++ b/src/ReceiveSubcommands.cc @@ -579,6 +579,8 @@ static void on_send_guild_card(shared_ptr c, uint8_t command, uint8_t fl static void on_symbol_chat(shared_ptr c, uint8_t command, uint8_t flag, const void* data, size_t size) { const auto& cmd = check_size_t(data, size); if (c->can_chat && (cmd.client_id == c->lobby_client_id)) { + // The 11/2000 DC prototype supports sybol chats, but the object values are + // different, so we don't forward symbol chats across that version boundary. forward_subcommand(c, command, flag, data, size); } }