diff options
author | 2021-07-08 21:30:39 -0400 | |
---|---|---|
committer | 2021-07-09 14:02:38 -0400 | |
commit | 342b645a124317b20c5e9feb3c42e43468167b8b (patch) | |
tree | b2254186c362e3206975d56782f61e2e2b412120 | |
parent | Reversed scoreboard so that winners are on top (diff) |
Tweaked minimum solution distribution
-rw-r--r-- | bot/exts/evergreen/duck_game.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bot/exts/evergreen/duck_game.py b/bot/exts/evergreen/duck_game.py index 13e6165f..fb54fcfd 100644 --- a/bot/exts/evergreen/duck_game.py +++ b/bot/exts/evergreen/duck_game.py @@ -30,7 +30,7 @@ INCORRECT_GOOSE = -1 while still making the end of the game unpredictable. Note: this is *not* the same as the distribution of number of solutions. """ -SOLN_DISTR = 0, 0.05, 0.1, 0.1, 0.15, 0.2, 0.2, 0.15, .05 +SOLN_DISTR = 0, 0.05, 0.05, 0.1, 0.15, 0.25, 0.2, 0.15, .05 p = Path("bot", "resources", "evergreen", "all_cards.png") ALL_CARDS = Image.open(p) |