From fed34b7963f10a085f717e6ae0fc04ee0cabb464 Mon Sep 17 00:00:00 2001 From: Dragon Fire Date: Sun, 24 Mar 2024 17:11:10 -0400 Subject: [PATCH] Fix --- commands/games-sp/google-feud.js | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/commands/games-sp/google-feud.js b/commands/games-sp/google-feud.js index a220c522..9e1f9aec 100644 --- a/commands/games-sp/google-feud.js +++ b/commands/games-sp/google-feud.js @@ -92,6 +92,11 @@ module.exports = class GoogleFeudCommand extends Command { const num = formatNumber(10000 - (i * 1000)); embed.addField(`❯ ${num}`, display[i], true); } + if (suggestions.length % 3 !== 0 && suggestions.length > 3) { + for (let i = 0; i < 3 - (suggestions.length % 3); i++) { + embed.addField('\u200B', '\u200B', true); + } + } return embed; } };