Compare commits

..

1 Commits

Author SHA1 Message Date
baz 8e5d77abe4 Update .gitignore 2023-12-11 23:05:32 +00:00
2 changed files with 2 additions and 1 deletions

2
.gitignore vendored
View File

@ -1,4 +1,4 @@
node_modules
.env
config.json
.sqlite
*.sqlite

View File

@ -30,6 +30,7 @@ module.exports = {
if (!games[0]) return interaction.followUp('No game found.');
// await games.sort((a, b) => parseInt(b.total_rating_count) - parseInt(a.total_rating_count));
await games.sort((a, b) => {
return (a.total_rating_count == null) - (b.total_rating_count == null) || +(a.total_rating_count > b.total_rating_count) || -(a.total_rating_count < b.total_rating_count);
});