From 40aa08bd4f391d8d3f6d41d3b539de5bc4c5c679 Mon Sep 17 00:00:00 2001 From: Martin Michelsen Date: Tue, 31 May 2022 21:01:16 -0700 Subject: [PATCH] fix item pickup bug --- src/ReceiveSubcommands.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ReceiveSubcommands.cc b/src/ReceiveSubcommands.cc index 450c4516..c7d2d167 100644 --- a/src/ReceiveSubcommands.cc +++ b/src/ReceiveSubcommands.cc @@ -418,7 +418,7 @@ static void process_subcommand_pick_up_item(shared_ptr, const string& data) { auto* cmd = check_size_sc(data); - if (!l->is_game() || (cmd->client_id != c->lobby_client_id)) { + if (!l->is_game()) { return; } if (l->version == GameVersion::BB) {