From 6cae6bf5faf97b7be15ef282f8d86c6db349036b Mon Sep 17 00:00:00 2001 From: TymanWasTaken <32660892+tymanwastaken@users.noreply.github.com> Date: Wed, 12 May 2021 02:24:20 -0600 Subject: add actual level calculation and level command, no actual leveling yet though --- src/lib/extensions/BotClient.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/lib/extensions') diff --git a/src/lib/extensions/BotClient.ts b/src/lib/extensions/BotClient.ts index 7ac0051..e2de812 100644 --- a/src/lib/extensions/BotClient.ts +++ b/src/lib/extensions/BotClient.ts @@ -259,7 +259,7 @@ export class BotClient extends AkairoClient { { sequelize: this.db } ); try { - await this.db.sync({ alter: true }); // Sync all tables to fix everything if updated + await this.db.sync(); // Sync all tables to fix everything if updated } catch { // Ignore error } -- cgit