diff options
Diffstat (limited to '')
| -rw-r--r-- | bot/__main__.py | 10 | 
1 files changed, 5 insertions, 5 deletions
| diff --git a/bot/__main__.py b/bot/__main__.py index d39e93bf..970614ce 100644 --- a/bot/__main__.py +++ b/bot/__main__.py @@ -62,11 +62,11 @@ async def main() -> None:      async with aiohttp.ClientSession() as session:          bot.instance = Bot( -            guild_id=constants.Client.guild, +            guild_id=constants.Bot.guild,              http_session=session,              redis_session=await _create_redis_session(), -            command_prefix=commands.when_mentioned_or(constants.Client.prefix), -            activity=discord.Game(name=f"Commands: {constants.Client.prefix}help"), +            command_prefix=commands.when_mentioned_or(constants.Bot.prefix), +            activity=discord.Game(name=f"Commands: {constants.Bot.prefix}help"),              case_insensitive=True,              allowed_mentions=discord.AllowedMentions(everyone=False, roles=allowed_roles),              intents=intents, @@ -78,10 +78,10 @@ async def main() -> None:                  channels=constants.WHITELISTED_CHANNELS,                  roles=constants.STAFF_ROLES,              )) -            if constants.Client.in_ci: +            if constants.Bot.in_ci:                  await test_bot_in_ci(_bot)              else: -                await _bot.start(constants.Client.token) +                await _bot.start(constants.Bot.token)  asyncio.run(main()) | 
