Fixed Embed for Scorestreaks

This commit is contained in:
ThunderE75 2022-01-27 11:19:42 +05:30
parent e6949c1fc4
commit 0741513851

View file

@ -136,7 +136,7 @@ module.exports = {
.addFields(
{
name: "Cost",
value: `\`\`\`${d.cost}\`\`\``,
value: `${d.cost}`,
inline: true,
},
{
@ -151,7 +151,13 @@ module.exports = {
},
{
name: "More Info",
value: `\`\`\`${d.special ? d.special : "** **"}\`\`\``,
value: `\`\`\`
${
d.special
? d.special
: ""
}
\`\`\``,
inline: false,
}
)