dev #4

Merged
corbz merged 29 commits from dev into master 2025-02-16 20:52:11 +00:00
Showing only changes of commit 5d551b3dd8 - Show all commits

4
bot.py
View File

@ -67,8 +67,8 @@ class DiscordBot(commands.Bot):
async def get_ingame_channel(self) -> TextChannel:
"""
"""
channel = self.bot.get_channel(self.bot.in_game_channel_id)
return channel or await self.bot.fetch_channel(self.bot.in_game_channel_id)
channel = self.get_channel(self.in_game_channel_id)
return channel or await self.fetch_channel(self.in_game_channel_id)
def get_bot_token() -> str: