diff options
author | TymanWasTaken <32660892+tymanwastaken@users.noreply.github.com> | 2021-05-12 02:24:20 -0600 |
---|---|---|
committer | TymanWasTaken <32660892+tymanwastaken@users.noreply.github.com> | 2021-05-12 02:24:20 -0600 |
commit | 6cae6bf5faf97b7be15ef282f8d86c6db349036b (patch) | |
tree | fcb4b9f178c1c7c497fd083429749a1bef9dc3e3 /src/lib/extensions | |
parent | ca380193453a1bfa12d3da38bb7a0ea96d8577b9 (diff) | |
download | tanzanite-6cae6bf5faf97b7be15ef282f8d86c6db349036b.tar.gz tanzanite-6cae6bf5faf97b7be15ef282f8d86c6db349036b.tar.bz2 tanzanite-6cae6bf5faf97b7be15ef282f8d86c6db349036b.zip |
add actual level calculation and level command, no actual leveling yet though
Diffstat (limited to 'src/lib/extensions')
-rw-r--r-- | src/lib/extensions/BotClient.ts | 2 |
1 files changed, 1 insertions, 1 deletions
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 } |