Skip to content

Commit

Permalink
#167 Shuffle cards every time
Browse files Browse the repository at this point in the history
  • Loading branch information
b0n541 committed Oct 22, 2023
1 parent 8238da3 commit 71fed8a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions jskat-base/src/main/java/org/jskat/control/SkatGame.java
Original file line number Diff line number Diff line change
Expand Up @@ -265,12 +265,12 @@ public void dealCards() {
// Skat game has no cards, yet
deck = new CardDeck();

log.debug("shuffling...");
deck.shuffle();

log.debug(deck.toString());
}

log.info("shuffling...");
deck.shuffle();

doSleep(maxSleep);

log.debug("dealing...");
Expand Down

0 comments on commit 71fed8a

Please sign in to comment.