Skip to content

Commit

Permalink
Don't inline Checks and Counters field
Browse files Browse the repository at this point in the history
  • Loading branch information
Glazelf committed Jun 19, 2024
1 parent 555b75a commit c0d1b3a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions commands/api/pokemon.js
Original file line number Diff line number Diff line change
Expand Up @@ -399,7 +399,7 @@ export default async (client, interaction, ephemeral) => {
{ name: "Spreads:", value: spreadsString, inline: true },
{ name: "Teammates:", value: teammatesString, inline: true }
]);
if (countersString.length > 0) pokemonEmbed.addFields([{ name: "Checks and Counters:", value: countersString, inline: true }]);
if (countersString.length > 0) pokemonEmbed.addFields([{ name: "Checks and Counters:", value: countersString, inline: false }]);
} else {
// Format generic data display
let usageList = [];
Expand Down Expand Up @@ -693,4 +693,4 @@ export const config = {
description: "Whether the reply will be private."
}]
}]
};
};

0 comments on commit c0d1b3a

Please sign in to comment.