mirror of
https://github.com/cassoule/flopobot_v2.git
synced 2026-03-18 21:40:27 +01:00
fix: blackjack room max bet update
max bet amount : 5k >>> 10k
This commit is contained in:
@@ -131,7 +131,7 @@ export function publicPlayerView(player) {
|
|||||||
// Build initial room object
|
// Build initial room object
|
||||||
export function createBlackjackRoom({
|
export function createBlackjackRoom({
|
||||||
minBet = 10,
|
minBet = 10,
|
||||||
maxBet = 1000,
|
maxBet = 10000,
|
||||||
fakeMoney = false,
|
fakeMoney = false,
|
||||||
decks = 6,
|
decks = 6,
|
||||||
hitSoft17 = false,
|
hitSoft17 = false,
|
||||||
|
|||||||
@@ -26,7 +26,7 @@ export function blackjackRoutes(io) {
|
|||||||
// --- Singleton continuous room ---
|
// --- Singleton continuous room ---
|
||||||
const room = createBlackjackRoom({
|
const room = createBlackjackRoom({
|
||||||
minBet: 10,
|
minBet: 10,
|
||||||
maxBet: 5000,
|
maxBet: 10000,
|
||||||
fakeMoney: false,
|
fakeMoney: false,
|
||||||
decks: 6,
|
decks: 6,
|
||||||
hitSoft17: false, // S17 (dealer stands on soft 17) if false
|
hitSoft17: false, // S17 (dealer stands on soft 17) if false
|
||||||
|
|||||||
Reference in New Issue
Block a user