mirror of
https://github.com/arthur-pbty/xiao.git
synced 2026-06-07 23:05:04 +02:00
Fix
This commit is contained in:
@@ -68,7 +68,7 @@ module.exports = class SmogonCommand extends Command {
|
||||
embed.addField(`❯ ${games[game]}`, `[${data.smogonTiers[game].join('/')}](${data.smogonURL(game)})`, true);
|
||||
}
|
||||
if (fetchGames.length % 3 !== 0 && fetchGames.length > 3) {
|
||||
for (let i = 0; i > 3 - (fetchGames.length % 3); i++) {
|
||||
for (let i = 0; i < 3 - (fetchGames.length % 3); i++) {
|
||||
embed.addField('\u200B', '\u200B', true);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user