diff options
author | 2020-09-30 21:29:11 +0200 | |
---|---|---|
committer | 2020-09-30 21:29:11 +0200 | |
commit | 15324b3428e80d2e7a37ba84443983684e834ffc (patch) | |
tree | 14fd6dbec0b6ed3928dc06c2a35d7fa6b0b514b9 /bot | |
parent | Remove SpookySound Cog that played sounds in voice (diff) |
Update the Hacktoberfest channel constant
I've updated the Hacktoberfest channel ID to the ID of the new channel
just created for the 2020 edition of the event.
Diffstat (limited to 'bot')
-rw-r--r-- | bot/constants.py | 2 | ||||
-rw-r--r-- | bot/exts/halloween/hacktoberstats.py | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/bot/constants.py b/bot/constants.py index 0c376344..7ec8ac27 100644 --- a/bot/constants.py +++ b/bot/constants.py @@ -74,7 +74,7 @@ class Channels(NamedTuple): python_discussion = 267624335836053506 show_your_projects = int(environ.get("CHANNEL_SHOW_YOUR_PROJECTS", 303934982764625920)) show_your_projects_discussion = 360148304664723466 - hacktoberfest_2019 = 628184417646411776 + hacktoberfest_2020 = 760857070781071431 class Client(NamedTuple): diff --git a/bot/exts/halloween/hacktoberstats.py b/bot/exts/halloween/hacktoberstats.py index db5e37f2..92429c1b 100644 --- a/bot/exts/halloween/hacktoberstats.py +++ b/bot/exts/halloween/hacktoberstats.py @@ -18,7 +18,7 @@ log = logging.getLogger(__name__) CURRENT_YEAR = datetime.now().year # Used to construct GH API query PRS_FOR_SHIRT = 4 # Minimum number of PRs before a shirt is awarded -HACKTOBER_WHITELIST = WHITELISTED_CHANNELS + (Channels.hacktoberfest_2019,) +HACKTOBER_WHITELIST = WHITELISTED_CHANNELS + (Channels.hacktoberfest_2020,) class HacktoberStats(commands.Cog): |