From 7a29b39771d5bae9a126613dfaa6d6451da73f2d Mon Sep 17 00:00:00 2001 From: Martin Michelsen Date: Fri, 24 Apr 2026 20:36:45 -0700 Subject: [PATCH] allow 6xCB in free-play --- src/ReceiveSubcommands.cc | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/ReceiveSubcommands.cc b/src/ReceiveSubcommands.cc index 55ee7d97..1b428d75 100644 --- a/src/ReceiveSubcommands.cc +++ b/src/ReceiveSubcommands.cc @@ -4307,9 +4307,6 @@ asio::awaitable on_transfer_item_via_mail_message_bb(shared_ptr c, if (!l->is_game()) { throw runtime_error("6xCB command sent in non-game lobby"); } - if (!l->check_flag(Lobby::Flag::QUEST_IN_PROGRESS) && !l->check_flag(Lobby::Flag::JOINABLE_QUEST_IN_PROGRESS)) { - throw runtime_error("6xCB command sent during free play"); - } if (cmd.header.client_id != c->lobby_client_id) { throw runtime_error("6xCB command sent by incorrect client"); }