aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar MarkKoz <[email protected]>2020-02-28 07:45:02 -0800
committerGravatar MarkKoz <[email protected]>2020-03-22 15:54:40 -0700
commitf01400c2516add585b8dcc90417e0273b3f87cde (patch)
tree3652227582f022d400819a37baffabb1ccd68529
parentHelpChannels: add a minimum interval between helper notifications (diff)
HelpChannels: adjust the helper notification message
-rw-r--r--bot/cogs/help_channels.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/bot/cogs/help_channels.py b/bot/cogs/help_channels.py
index 809551131..f63370b24 100644
--- a/bot/cogs/help_channels.py
+++ b/bot/cogs/help_channels.py
@@ -460,9 +460,9 @@ class HelpChannels(Scheduler, commands.Cog):
if should_send:
helpers_channel = self.bot.get_channel(constants.Channels.helpers)
await helpers_channel.send(
- f"<@&{constants.Roles.helpers}> a help channel is in needed but none are "
- f"available. Consider freeing up some in-use channels manually by using "
- f"the `!dormant` command within the channels."
+ f"<@&{constants.Roles.helpers}> a new available help channel is needed but there "
+ f"are no more dormant ones. Consider freeing up some in-use channels manually by "
+ f"using the `!dormant` command within the channels."
)
@commands.Cog.listener()