From 2f2034eb642599d8bb31da69ff58e718507f696d Mon Sep 17 00:00:00 2001 From: deuce <> Date: Sun, 2 Feb 2014 06:41:52 +0000 Subject: [PATCH] Fix roulette max bet. --- xtrn/mc/roulette.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xtrn/mc/roulette.js b/xtrn/mc/roulette.js index b906b9c35b..06661b926c 100644 --- a/xtrn/mc/roulette.js +++ b/xtrn/mc/roulette.js @@ -355,7 +355,7 @@ function roulette_bets() switch((ch=console.getkeys("BS", 5000))) { default: money=parseInt(ch); - if(money < 10 || money > 500 || isNaN(money)) + if(money < 10 || money > 5000 || isNaN(money)) console.print('Illegal amount'+'\r\n'); if(money % 10) { console.crlf(); -- GitLab