diff options
author | 2023-02-13 23:55:38 +0000 | |
---|---|---|
committer | 2023-02-13 23:55:38 +0000 | |
commit | 9e18532ec4027786d3426c42a34f601cc68feeae (patch) | |
tree | 5ad37f2372ba5d0d3c061d38c4446044a254315b | |
parent | Merge branch 'main' into swfarnsworth-modmail-account-mention (diff) | |
parent | Merge pull request #2401 from python-discord/legacy_role (diff) |
Merge branch 'main' into swfarnsworth-modmail-account-mention
-rw-r--r-- | bot/constants.py | 1 | ||||
-rw-r--r-- | bot/exts/info/subscribe.py | 1 | ||||
-rw-r--r-- | config-default.yml | 1 |
3 files changed, 3 insertions, 0 deletions
diff --git a/bot/constants.py b/bot/constants.py index 3c29ce887..f1fb5471f 100644 --- a/bot/constants.py +++ b/bot/constants.py @@ -489,6 +489,7 @@ class Roles(metaclass=YAMLGetter): lovefest: int pyweek_announcements: int revival_of_code: int + legacy_help_channels_access: int contributors: int help_cooldown: int diff --git a/bot/exts/info/subscribe.py b/bot/exts/info/subscribe.py index 86a209214..7f4b4f95a 100644 --- a/bot/exts/info/subscribe.py +++ b/bot/exts/info/subscribe.py @@ -49,6 +49,7 @@ class AssignableRole: ASSIGNABLE_ROLES = ( AssignableRole(constants.Roles.announcements, None), AssignableRole(constants.Roles.pyweek_announcements, None), + AssignableRole(constants.Roles.legacy_help_channels_access, None), AssignableRole(constants.Roles.lovefest, (1, 2)), AssignableRole(constants.Roles.advent_of_code, (11, 12)), AssignableRole(constants.Roles.revival_of_code, (7, 8, 9, 10)), diff --git a/config-default.yml b/config-default.yml index ac76a670a..de0f7e4e8 100644 --- a/config-default.yml +++ b/config-default.yml @@ -271,6 +271,7 @@ guild: lovefest: 542431903886606399 pyweek_announcements: 897568414044938310 revival_of_code: 988801794668908655 + legacy_help_channels_access: 1074780483776417964 contributors: 295488872404484098 help_cooldown: 699189276025421825 |