debug events handler

This commit is contained in:
SowinskiBraeden committed 2023-07-01 10:21:54 -07:00
1 parent fb10f4cbd7
commit 78626d5f83
4 files changed
+23 -17

No files matched your search

+2 -2
View File
@@ -82,7 +82,7 @@ module.exports = {
name: args[0].options[2].value,
gamertag: args[0].options[0].value,
channel: args[0].options[3].value,
time: args[0].options[1],
time: args[0].options[1].value,
creationDate: new Date(),
};
@@ -98,7 +98,7 @@ module.exports = {
const successCreatePlayerTrack = new EmbedBuilder()
.setColor(client.config.Colors.Default)
.setDescription(`**Success:** Successfully created **${event.name}** that will last **${event.time} minutes**`)
.setDescription(`**Success:** Successfully created **${event.name}** that will last **${event.time} minutes.**`)
return interaction.send({ embeds: [successCreatePlayerTrack] });
+1 -1
View File
@@ -52,7 +52,7 @@ module.exports = {
let notFound = new EmbedBuilder()
.setColor(client.config.Colors.Default)
.setDescription(`**Record Not Found**\n/ The gamertag \` ${playerStat.gamertag} \` currently has no linked Discord account.`);
.setDescription(`**Record Not Found**\n The gamertag \` ${playerStat.gamertag} \` currently has no linked Discord account.`);
return interaction.send({ embeds: [notFound] })
},