Compare commits

...

1 commit

Author SHA1 Message Date
Ethan Lane 97a36c0f24 Fix list not being sorted
All checks were successful
Test / build (push) Successful in 9s
2024-07-22 18:45:21 +01:00

View file

@ -16,7 +16,8 @@ export default class AllBalance extends Command {
public override async execute(interaction: CommandInteraction) { public override async execute(interaction: CommandInteraction) {
const users = await User.FetchAll(User); const users = await User.FetchAll(User);
const filteredUsers = users.filter(x => x.Currency > 0); const filteredUsers = users.filter(x => x.Currency > 0)
.sort((a, b) => b.Currency - a.Currency);
const embed = new EmbedBuilder() const embed = new EmbedBuilder()
.setColor(EmbedColours.Ok) .setColor(EmbedColours.Ok)