fix settings game_name

This commit is contained in:
Denis-Cosmin Nutiu 2024-01-26 20:00:06 +02:00
parent 587092ddfe
commit 0ab4170916

View file

@ -7,7 +7,8 @@ from src.bot.discord.bot import NucuBot
def main():
settings = Settings()
bot = NucuBot.create(
command_prefix=settings.discord.command_prefix, game_name=settings.game_name
command_prefix=settings.discord.command_prefix,
game_name=settings.discord.game_name,
)
bot.run(settings.discord.token)