fix: blackjack room max bet update

max bet amount : 5k >>> 10k
This commit is contained in:
Milo
2025-11-03 23:47:56 +01:00
parent 4aad234f19
commit c0eb347f9a
2 changed files with 2 additions and 2 deletions

View File

@@ -131,7 +131,7 @@ export function publicPlayerView(player) {
// Build initial room object
export function createBlackjackRoom({
minBet = 10,
maxBet = 1000,
maxBet = 10000,
fakeMoney = false,
decks = 6,
hitSoft17 = false,

View File

@@ -26,7 +26,7 @@ export function blackjackRoutes(io) {
// --- Singleton continuous room ---
const room = createBlackjackRoom({
minBet: 10,
maxBet: 5000,
maxBet: 10000,
fakeMoney: false,
decks: 6,
hitSoft17: false, // S17 (dealer stands on soft 17) if false