feat(blackjack): add split functionality to the game #116

Merged
jleibl merged 4 commits from task/CAS-50/add_rest_blackjack_logic_with_frontend_animations into main 2025-04-02 09:41:19 +00:00
Showing only changes of commit e9c4d4fbed - Show all commits

View file

@ -46,11 +46,7 @@ public class BlackJackService {
return game;
}
if (game.isSplit()) {
dealCardToPlayer(game);
} else {
dealCardToPlayer(game);
}
dealCardToPlayer(game);
updateGameStateAndBalance(game);