diff options
| author | 2019-01-06 19:48:58 -0500 | |
|---|---|---|
| committer | 2019-01-06 19:48:58 -0500 | |
| commit | f0f37e657c6ec3c28fcfbdcd1dfbfb7e8d0729f1 (patch) | |
| tree | 0cfe4132b4cd779287951158df1d93a006902fd9 | |
| parent | Change single quotes to double quotes for the sake of consistency (diff) | |
Update constraint on seek so it can't be less than 1
| -rw-r--r-- | bot/cogs/free.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bot/cogs/free.py b/bot/cogs/free.py index 73946dec1..697e15f4b 100644 --- a/bot/cogs/free.py +++ b/bot/cogs/free.py @@ -36,7 +36,7 @@ class Free: if user is not None and seek == 2: seek = 3 - elif seek > 10: + elif not 0 < seek < 10: seek = 3 for channel in python_help.channels: |