diff --git a/index.html b/index.html index 390f29c..19ddc30 100644 --- a/index.html +++ b/index.html @@ -45,7 +45,7 @@ import pyroulette as pr from random import random, randint players = [] -for _ in range(1, 20): +for _ in range(1, 50): c = random() if c < 0.25: min_games = randint(1, 100) @@ -55,7 +55,7 @@ for _ in range(1, 20): min_games = randint(1, 2) # min_games = 100 # this caps out at about $250 wallet. need to bet bigger to win bigger. - players.extend(pr.generate_players(num_players=25, min_num_games=min_games, total_budget=100)) + players.extend(pr.generate_players(num_players=10, min_num_games=min_games, total_budget=100)) players = pr.play_roulette(players, games=100)