diff options
author | 2021-02-23 04:07:05 +0100 | |
---|---|---|
committer | 2021-02-23 04:07:05 +0100 | |
commit | e34ea2f1c108d1900e251d17b38563536345d2de (patch) | |
tree | 481a29f165e6b475ff94ab51e40b6e582eacec4f | |
parent | Add green question mark to default config (diff) |
Send DM when user claims help channel
-rw-r--r-- | bot/exts/help_channels/_cog.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/bot/exts/help_channels/_cog.py b/bot/exts/help_channels/_cog.py index 0995c8a79..a18ddc900 100644 --- a/bot/exts/help_channels/_cog.py +++ b/bot/exts/help_channels/_cog.py @@ -102,6 +102,7 @@ class HelpChannels(commands.Cog): await _cooldown.revoke_send_permissions(message.author, self.scheduler) await _message.pin(message) + await _message.dm_on_open(message) # Add user with channel for dormant check. await _caches.claimants.set(message.channel.id, message.author.id) |