fix: blackjack playtime 15s -> 20s

This commit is contained in:
milo
2025-10-20 18:50:37 +02:00
parent b2df6a5b49
commit 27c9e9e6ad
2 changed files with 2 additions and 2 deletions

View File

@@ -32,7 +32,7 @@ export function blackjackRoutes(io) {
hitSoft17: false, // S17 (dealer stands on soft 17) if false
blackjackPayout: 1.5, // 3:2
cutCardRatio: 0.25,
phaseDurations: { bettingMs: 10000, dealMs: 2000, playMsPerPlayer: 15000, revealMs: 1000, payoutMs: 7000 },
phaseDurations: { bettingMs: 10000, dealMs: 2000, playMsPerPlayer: 20000, revealMs: 1000, payoutMs: 7000 },
animation: { dealerDrawMs: 1000 }
});