From 3b1311951638bc54efbbb245632e2b3ab460f741 Mon Sep 17 00:00:00 2001 From: IRONM00N <64110067+IRONM00N@users.noreply.github.com> Date: Sun, 3 Oct 2021 18:16:11 -0400 Subject: new links, bug fixes, excape rtl charecters in welcome messages --- src/bot.ts | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'src/bot.ts') diff --git a/src/bot.ts b/src/bot.ts index 46b857d..1354c31 100644 --- a/src/bot.ts +++ b/src/bot.ts @@ -1,8 +1,7 @@ import 'module-alias/register'; import 'source-map-support/register'; import config from './config/options'; -import { BushClient } from './lib/'; +import { BushClient } from './lib'; BushClient.preStart(); -const client = new BushClient(config); -void client.start(); +void new BushClient(config).start(); -- cgit