GameLogic::shuffleToDeck incorrectly doesn't shuffle a card into the deck if player.getDeck().getCount() < MAX_DECK_SIZE. The following issue will occur:
Build a deck with Prince Malchezaar and White Eyes.
Draw White Eyes, Innervate, Innervate, play all three.
Observe The Storm Guardian isn't shuffled into your deck.
This comparison is just incorrect in GameLogic::shuffleToDeck.
GameLogic::shuffleToDeck
incorrectly doesn't shuffle a card into the deck ifplayer.getDeck().getCount() < MAX_DECK_SIZE
. The following issue will occur:This comparison is just incorrect in
GameLogic::shuffleToDeck
.