From 3379c2fed5a666a9071f401d7028397ed77fd5a7 Mon Sep 17 00:00:00 2001 From: Paul Carroll <57120760+carrollpaul@users.noreply.github.com> Date: Thu, 31 Jul 2025 08:13:45 -0400 Subject: [PATCH] Use getShortcut instead of getSingleShortcut Co-authored-by: RickyRister <42636155+RickyRister@users.noreply.github.com> --- cockatrice/src/game/player/player.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cockatrice/src/game/player/player.cpp b/cockatrice/src/game/player/player.cpp index 32efcb52d..80ef33ad4 100644 --- a/cockatrice/src/game/player/player.cpp +++ b/cockatrice/src/game/player/player.cpp @@ -1002,7 +1002,7 @@ void Player::setShortcutsActive() while (counterIterator.hasNext()) { counterIterator.next().value()->setShortcutsActive(); } - aIncrementAllCardCounters->setShortcut(shortcuts.getSingleShortcut("Player/aIncrementAllCardCounters")); + aIncrementAllCardCounters->setShortcuts(shortcuts.getShortcut("Player/aIncrementAllCardCounters")); aViewSideboard->setShortcut(shortcuts.getSingleShortcut("Player/aViewSideboard")); aViewLibrary->setShortcut(shortcuts.getSingleShortcut("Player/aViewLibrary")); aViewHand->setShortcut(shortcuts.getSingleShortcut("Player/aViewHand"));