diff options
author | 2025-04-26 00:49:38 +0100 | |
---|---|---|
committer | 2025-04-26 00:49:38 +0100 | |
commit | 9a2abfcce54b9c10621e7a76273adb5a4c47d2db (patch) | |
tree | 6155590c6c2277c7402a4219e37f68cc64377e78 | |
parent | Always allow bot owners to run commands (diff) |
Start numbers timer loop
-rw-r--r-- | arthur/exts/fun/numbers.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arthur/exts/fun/numbers.py b/arthur/exts/fun/numbers.py index 5034718..b9d91b5 100644 --- a/arthur/exts/fun/numbers.py +++ b/arthur/exts/fun/numbers.py @@ -11,6 +11,7 @@ class Numbers(commands.GroupCog): def __init__(self, bot: commands.Bot): self.bot = bot self.devops_vc: discord.VoiceChannel | discord.StageChannel | None = None + self.devops_vc_check.start() async def cog_load(self) -> None: """Join devops channel on cog load.""" |