Skip to content

Commit 289a624

Browse files
authored
Merge pull request #25 from Coolbossco/patch-1
Added '/select-application' msg when you add an application
2 parents 386ddf5 + 982565b commit 289a624

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

commands/Settings/AddApplication.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ module.exports = {
5656
id: IdGenerator()
5757
});
5858
await db.set(`applications_${idfrom}`, applications);
59-
interaction.editReply({ embeds: [new EmbedBuilder().setTitle(`Application with name ${!application ? sellerkey.substring(0, 6) : application} has been added!`).setColor(Colors.Green).setTimestamp()], ephemeral: ephemeral })
59+
interaction.editReply({ embeds: [new EmbedBuilder().setTitle(`Application with name ${!application ? sellerkey.substring(0, 6) : application} has been added!`).setColor(Colors.Green).setTimestamp().setFoorter({ text: "Please use the command '/select-application' to start using the bot." })], ephemeral: ephemeral })
6060
}
6161
else {
6262
interaction.editReply({ embeds: [new EmbedBuilder().setTitle(json.message).addFields([{ name: 'Note:', value: `Your seller key is most likely invalid. Change your seller key with \`/add-application\` command.` }]).setColor(Colors.Red).setFooter({ text: "KeyAuth Discord Bot" }).setTimestamp()], ephemeral: ephemeral })
@@ -73,4 +73,4 @@ function IdGenerator() {
7373
uuid += possible.charAt(Math.floor(Math.random() * possible.length));
7474
}
7575
return uuid;
76-
}
76+
}

0 commit comments

Comments
 (0)