diff --git a/command/CODM/scorestreak.js b/command/CODM/scorestreak.js index 7a45b4d..b083294 100644 --- a/command/CODM/scorestreak.js +++ b/command/CODM/scorestreak.js @@ -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, } )