diff options
| author | 2020-02-28 11:15:38 -0800 | |
|---|---|---|
| committer | 2020-03-22 15:54:41 -0700 | |
| commit | 5a9661106186ab370b31aa2858210f121a944846 (patch) | |
| tree | e0cc0cb40cc8daefdc984bdd7df8b181a47f2513 | |
| parent | BotCog: determine if a help channel by checking its category (diff) | |
HelpChannels: move newest in-use channel to the top
This gives the newest questions the most visibility.
| -rw-r--r-- | bot/cogs/help_channels.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/bot/cogs/help_channels.py b/bot/cogs/help_channels.py index 45509e1c7..ab2f5b8c3 100644 --- a/bot/cogs/help_channels.py +++ b/bot/cogs/help_channels.py @@ -431,6 +431,7 @@ class HelpChannels(Scheduler, commands.Cog): category=self.in_use_category, sync_permissions=True, topic=IN_USE_TOPIC, + position=0, ) timeout = constants.HelpChannels.idle_minutes * 60 |