debug new lookup commands

This commit is contained in:
SowinskiBraeden committed 2023-06-07 14:23:46 -07:00
1 parent 824e84dc24
commit 3fe27458b8
4 files changed
+6 -3

No files matched your search

+1 -1
View File
@@ -47,7 +47,7 @@ module.exports = {
.setColor(client.config.Colors.Yellow)
.setDescription(`**Record Found**\n> The gamertag \` ${playerStat.gamertag} \` is currently linked to <@${playerStat.discordID}>.`)
return interaction.send({ embeds: [found], components: [opt] });
return interaction.send({ embeds: [found] });
}
let notFound = new EmbedBuilder()
+1 -1
View File
@@ -46,7 +46,7 @@ module.exports = {
.setColor(client.config.Colors.Yellow)
.setDescription(`**Record Found**\n> The user <@${playerStat.discordID}> has linked the gamertag \` ${playerStat.gamertag} \`.`)
return interaction.send({ embeds: [found], components: [opt] });
return interaction.send({ embeds: [found] });
},
},
}