diff --git a/commands/util/command-leaderboard-import.js b/commands/util/command-leaderboard-import.js index eed2304a..8ec20eda 100644 --- a/commands/util/command-leaderboard-import.js +++ b/commands/util/command-leaderboard-import.js @@ -48,7 +48,7 @@ module.exports = class CommandLeaderboardImportCommand extends Command { if (typeof value !== 'number') continue; const found = this.client.registry.commands.get(id); if (!found || found.uses === undefined) continue; - found.uses += value; + found.uses = value; } return msg.say('Successfully imported command leaderboard.'); }