From b12bf0f52156ddf3cf78ccf5efe00baf993ebb1b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lukas=20Br=C3=BCbach?= Date: Sun, 14 Sep 2025 12:49:31 +0200 Subject: [PATCH] Waiting for this action to complete before pushing another build. Took 19 minutes --- cockatrice/src/game/zones/logic/table_zone_logic.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/cockatrice/src/game/zones/logic/table_zone_logic.cpp b/cockatrice/src/game/zones/logic/table_zone_logic.cpp index e0c4b38a2..cb45674c8 100644 --- a/cockatrice/src/game/zones/logic/table_zone_logic.cpp +++ b/cockatrice/src/game/zones/logic/table_zone_logic.cpp @@ -18,6 +18,7 @@ void TableZoneLogic::addCardImpl(CardItem *card, int _x, int _y) if (!card->getFaceDown()) { card->setPT(card->getCardInfo().getPowTough()); } + qInfo() << "Triggering a build"; card->setGridPoint(QPoint(_x, _y)); card->setVisible(true); }