Skip to content

Commit

Permalink
🐛 Fix achievements command
Browse files Browse the repository at this point in the history
  • Loading branch information
Androz2091 committed Jan 10, 2021
1 parent 6f5f18b commit 3740722
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion commands/Economy/achievements.js
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ class Achievements extends Command {
embed.addField(message.translate("economy/achievements:INVITE"), message.translate("economy/achievements:PROGRESS", {
now: data.userData.achievements.invite.progress.now,
total: data.userData.achievements.invite.progress.total,
percent: Math.round(100 * (data.userData.achievements.rep.progress.now/data.userData.achievements.invite.progress.total))
percent: Math.round(100 * (data.userData.achievements.invite.progress.now/data.userData.achievements.invite.progress.total))
}));

message.channel.send(embed);
Expand Down

0 comments on commit 3740722

Please sign in to comment.