diff options
-rw-r--r-- | npc/003-9/gambler.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/npc/003-9/gambler.txt b/npc/003-9/gambler.txt index ea1cc6425..bf2cc68b6 100644 --- a/npc/003-9/gambler.txt +++ b/npc/003-9/gambler.txt @@ -197,7 +197,7 @@ L_Start: clear; mesc l("How much you'll bet? You have %s Casino Coins.", fnum(countitem(CasinoCoins))); - input .@bet, 0, countitem(CasinoCoins); + input .@bet, 0, min(1000, countitem(CasinoCoins)); if (.@bet < 1 || .@bet > countitem(CasinoCoins)) goto L_Quit; L_Select: |