diff options
author | 2022-10-29 20:11:56 +0530 | |
---|---|---|
committer | 2022-10-29 20:11:56 +0530 | |
commit | ac58e84e3f8780e7d9b9c0a6642159badb0454be (patch) | |
tree | ead9dbfbf8d39fe4229c8f62d6ecf595769bd3ee /bot/exts/core/help.py | |
parent | Catch more status codes in Wolfram commands (#1136) (diff) |
updated bot/exts/core/help.py for Issue #1122
Diffstat (limited to 'bot/exts/core/help.py')
-rw-r--r-- | bot/exts/core/help.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bot/exts/core/help.py b/bot/exts/core/help.py index fa9c2e03..30deaff4 100644 --- a/bot/exts/core/help.py +++ b/bot/exts/core/help.py @@ -220,11 +220,11 @@ class HelpSession: async def prepare(self) -> None: """Sets up the help session pages, events, message and reactions.""" await self.build_pages() + await self.update_page() self._bot.add_listener(self.on_reaction_add) self._bot.add_listener(self.on_message_delete) - await self.update_page() self.add_reactions() def add_reactions(self) -> None: |