Fixes to Scorestreaks Command
This commit is contained in:
parent
ff1cc6aae3
commit
a1cdd5cd2a
1 changed files with 7 additions and 7 deletions
|
@ -133,7 +133,7 @@ module.exports = {
|
|||
const embed = new MessageEmbed()
|
||||
.setTitle(d.scorestreak)
|
||||
.setURL(d.preview_video)
|
||||
.setDescription(`\`\`\`${d.description}\`\`\``)
|
||||
.setDescription(`<:nyx_description:897379659665264650> **Description** \`\`\`\n${d.description}\`\`\``)
|
||||
.addFields(
|
||||
{
|
||||
name: "Cost",
|
||||
|
@ -151,16 +151,16 @@ module.exports = {
|
|||
{
|
||||
name: "AI-Assisted",
|
||||
value: `
|
||||
${d.manual == false
|
||||
${d.manual != false
|
||||
? "<a:nyx_checkmark:897240322411724841> Yes"
|
||||
: "<a:nyx_cross:897244999211696198> No"}`,
|
||||
inline: true
|
||||
},
|
||||
{
|
||||
name: "More Info",
|
||||
value: `\`\`\`${d.special}\`\`\``,
|
||||
inline: false
|
||||
}
|
||||
// {
|
||||
// name: "More Info",
|
||||
// value: `\`\`\`${d.special}\`\`\``,
|
||||
// inline: false
|
||||
// }
|
||||
)
|
||||
.setThumbnail(`${d.preview}`)
|
||||
.setFooter(`Made by ${client.author}`, client.user.displayAvatarURL())
|
||||
|
|
Loading…
Reference in a new issue