From b27b458557cf3830d699276003437406199e869d Mon Sep 17 00:00:00 2001 From: Martin Michelsen Date: Wed, 30 Aug 2023 18:55:15 -0700 Subject: [PATCH] always send tournament entry state command if client doesn't have card defs --- src/ReceiveCommands.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ReceiveCommands.cc b/src/ReceiveCommands.cc index 0282e558..60630814 100644 --- a/src/ReceiveCommands.cc +++ b/src/ReceiveCommands.cc @@ -2508,7 +2508,7 @@ static void on_61_98(shared_ptr s, shared_ptr c, send_ep3_card_list_update(s, c); auto team = c->ep3_tournament_team.lock(); auto tourn = team ? team->tournament.lock() : nullptr; - if (tourn && !(c->flags & Client::Flag::IS_EP3_TRIAL_EDITION)) { + if (!(c->flags & Client::Flag::IS_EP3_TRIAL_EDITION)) { send_ep3_confirm_tournament_entry(s, c, tourn); } }