aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--bot/constants.py2
-rw-r--r--bot/exts/help_channels/_cog.py2
2 files changed, 2 insertions, 2 deletions
diff --git a/bot/constants.py b/bot/constants.py
index 1f9a55614..d2eb78cf6 100644
--- a/bot/constants.py
+++ b/bot/constants.py
@@ -339,7 +339,7 @@ class _HelpChannels(EnvConfig):
idle_minutes = 30
deleted_idle_minutes = 5
# Roles which are allowed to use the command which makes channels dormant
- cmd_whitelist: list[int] = [Roles.helpers]
+ cmd_whitelist = Guild.moderation_roles
HelpChannels = _HelpChannels()
diff --git a/bot/exts/help_channels/_cog.py b/bot/exts/help_channels/_cog.py
index 0d41388a7..2d2bc27aa 100644
--- a/bot/exts/help_channels/_cog.py
+++ b/bot/exts/help_channels/_cog.py
@@ -68,7 +68,7 @@ class HelpForum(commands.Cog):
"""
Make the help post this command was called in dormant.
- May only be invoked by the channel's claimant or by staff.
+ May only be invoked by the channel's claimant or by mods+.
"""
# Don't use a discord.py check because the check needs to fail silently.
if await self.close_check(ctx):