Fixed Embed for Scorestreaks
This commit is contained in:
parent
e6949c1fc4
commit
0741513851
1 changed files with 8 additions and 2 deletions
|
@ -136,7 +136,7 @@ module.exports = {
|
||||||
.addFields(
|
.addFields(
|
||||||
{
|
{
|
||||||
name: "Cost",
|
name: "Cost",
|
||||||
value: `\`\`\`${d.cost}\`\`\``,
|
value: `${d.cost}`,
|
||||||
inline: true,
|
inline: true,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
@ -151,7 +151,13 @@ module.exports = {
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: "More Info",
|
name: "More Info",
|
||||||
value: `\`\`\`${d.special ? d.special : "** **"}\`\`\``,
|
value: `\`\`\`
|
||||||
|
${
|
||||||
|
d.special
|
||||||
|
? d.special
|
||||||
|
: ""
|
||||||
|
}
|
||||||
|
\`\`\``,
|
||||||
inline: false,
|
inline: false,
|
||||||
}
|
}
|
||||||
)
|
)
|
||||||
|
|
Loading…
Reference in a new issue