Init before registering command

This commit is contained in:
2022-11-11 12:52:54 -06:00
parent 460a3e08d2
commit 5f70ffd69b
5 changed files with 5 additions and 5 deletions

View File

@@ -11,8 +11,8 @@ class HelpManager(BaseGameManager):
"""Commands that run when a player asks for help"""
def __init__(self):
self.commands.append(("help", self.help))
super().__init__()
self.commands.append(("help", self.help))
async def help(self):
"""help command - Sends a DM to the requesting user with available commands"""