From f482f3160a5823b20c8b2d4a1fb43c393f5b4244 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lukas=20Br=C3=BCbach?= Date: Tue, 26 May 2026 23:27:44 +0200 Subject: [PATCH] Use options from dialog. Took 39 seconds --- cockatrice/src/game/player/player_dialogs.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cockatrice/src/game/player/player_dialogs.cpp b/cockatrice/src/game/player/player_dialogs.cpp index bc223c66f..c0f4eb931 100644 --- a/cockatrice/src/game/player/player_dialogs.cpp +++ b/cockatrice/src/game/player/player_dialogs.cpp @@ -147,7 +147,7 @@ void PlayerDialogs::onMoveTopCardsUntilDialogRequested(MoveTopCardsUntilOptions if (!dlg.exec()) { return; } - playerActions->moveTopCardsUntil(dlg.getExpr(), options); + playerActions->moveTopCardsUntil(dlg.getExpr(), dlg.getOptions()); } void PlayerDialogs::onMoveBottomCardsToDialogRequested(int defaultNumberBottomCards,