From 94bc5be370e14a3c26bb63b4bee596ffdc203afd Mon Sep 17 00:00:00 2001 From: Skillz Date: Thu, 25 Feb 2021 16:58:10 -0500 Subject: [PATCH] let end user do server --- src/bot.ts | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/src/bot.ts b/src/bot.ts index 8c5b27241..ed1dd04e2 100644 --- a/src/bot.ts +++ b/src/bot.ts @@ -109,10 +109,7 @@ export async function startBigBrainBot(data: BigBrainBotConfig) { ); // PROXY DOESNT NEED US SPAWNING SHARDS - if (data.wsPort) { - // Need HTTP Server to listen to proxy - console.log("TODO: make http"); - } else { + if (!data.wsPort) { // Initial API connection to get info about bots connection botGatewayData = await getGatewayBot(); proxyWSURL = botGatewayData.url;