aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Boris Muratov <[email protected]>2024-08-05 15:52:08 +0300
committerGravatar GitHub <[email protected]>2024-08-05 13:52:08 +0100
commitbb34af0945c985601fa8a613591d1cd093202ffb (patch)
tree326cffd88258fa7696da31370f1b33ff4ad7de13
parentMerge pull request #3106 from typhonshambo/main (diff)
Legacy Help Channels Access -> Archived Channels Access (#3141)
-rw-r--r--bot/constants.py2
-rw-r--r--bot/exts/info/subscribe.py2
2 files changed, 2 insertions, 2 deletions
diff --git a/bot/constants.py b/bot/constants.py
index 1ec88aee9..b62372297 100644
--- a/bot/constants.py
+++ b/bot/constants.py
@@ -138,7 +138,7 @@ class _Roles(EnvConfig, env_prefix="roles_"):
lovefest: int = 542431903886606399
pyweek_announcements: int = 897568414044938310
revival_of_code: int = 988801794668908655
- legacy_help_channels_access: int = 1074780483776417964
+ archived_channels_access: int = 1074780483776417964
contributors: int = 295488872404484098
partners: int = 323426753857191936
diff --git a/bot/exts/info/subscribe.py b/bot/exts/info/subscribe.py
index 5e33474bf..8dc98c558 100644
--- a/bot/exts/info/subscribe.py
+++ b/bot/exts/info/subscribe.py
@@ -25,7 +25,7 @@ class AssignableRole:
ASSIGNABLE_ROLES = (
AssignableRole(constants.Roles.announcements),
AssignableRole(constants.Roles.pyweek_announcements),
- AssignableRole(constants.Roles.legacy_help_channels_access),
+ AssignableRole(constants.Roles.archived_channels_access),
AssignableRole(constants.Roles.lovefest),
AssignableRole(constants.Roles.advent_of_code),
AssignableRole(constants.Roles.revival_of_code),