From cfd0406ee2a33e4027eb141358c7127632704820 Mon Sep 17 00:00:00 2001 From: Skillz4Killz Date: Tue, 9 Nov 2021 17:59:49 +0000 Subject: [PATCH] change: prettier code --- src/bot.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/bot.ts b/src/bot.ts index 4545ab000..e1303a44e 100644 --- a/src/bot.ts +++ b/src/bot.ts @@ -138,7 +138,7 @@ export function createBot( activeGuildIds: new Set(), constants: createBotConstants(), handlers: createBotGatewayHandlers({}), - } + }; // @ts-ignore itoh cache types plz bot.cache = createCache(bot as Bot, options.cache); @@ -275,7 +275,7 @@ export function setupBot(bot: Bot) { export async function startBot(bot: Bot) { // SETUP BOT bot = setupBot(bot); - + // START REST bot.rest = createRestManager({ token: bot.token, debug: bot.events.debug }); if (!bot.botGatewayData) bot.botGatewayData = await bot.helpers.getGatewayBot();