diff options
author | 2020-09-28 03:37:32 +0100 | |
---|---|---|
committer | 2020-09-28 03:37:32 +0100 | |
commit | aab900877e285aade1bc45966e9b029d5559f04e (patch) | |
tree | aaaadb8f1f3a080604b15c728a7d17184d203e41 /bot/constants.py | |
parent | sync Pipfile and Pipfile.lock (diff) | |
parent | PR #458 Deps: update Pillow to 7.2 (diff) |
Merge branch 'master' into minesweeper-contribution
Diffstat (limited to 'bot/constants.py')
-rw-r--r-- | bot/constants.py | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/bot/constants.py b/bot/constants.py index fa428a61..935b90e0 100644 --- a/bot/constants.py +++ b/bot/constants.py @@ -84,6 +84,7 @@ class Client(NamedTuple): token = environ.get("SEASONALBOT_TOKEN") sentry_dsn = environ.get("SEASONALBOT_SENTRY_DSN") debug = environ.get("SEASONALBOT_DEBUG", "").lower() == "true" + github_bot_repo = "https://github.com/python-discord/seasonalbot" # Override seasonal locks: 1 (January) to 12 (December) month_override = int(environ["MONTH_OVERRIDE"]) if "MONTH_OVERRIDE" in environ else None @@ -122,6 +123,11 @@ class Emojis: pull_request_closed = "<:PRClosed:629695470519713818>" merge = "<:PRMerged:629695470570176522>" + status_online = "<:status_online:470326272351010816>" + status_idle = "<:status_idle:470326266625785866>" + status_dnd = "<:status_dnd:470326272082313216>" + status_offline = "<:status_offline:470326266537705472>" + class Hacktoberfest(NamedTuple): voice_id = 514420006474219521 @@ -177,6 +183,7 @@ class Roles(NamedTuple): verified = 352427296948486144 helpers = 267630620367257601 rockstars = 458226413825294336 + core_developers = 587606783669829632 class Tokens(NamedTuple): @@ -262,3 +269,6 @@ POSITIVE_REPLIES = [ "Aye aye, cap'n!", "I'll allow it.", ] + +class Wikipedia: + total_chance = 3 |