We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d055204 commit d626433Copy full SHA for d626433
commands/travelguide.js
@@ -359,9 +359,7 @@ module.exports = {
359
collector.on("collect", async (message) => {
360
const entryIndex = parseInt(message.content.trim());
361
if (isNaN(entryIndex) || entryIndex < 1 || entryIndex > userEntries.length) {
362
- await interaction.followUp(
363
- "Invalid entry number. No entry was deleted.",
364
- );
+ await interaction.followUp("Invalid entry number. No entry was deleted.");
365
return;
366
}
367
// Confirm entry
@@ -392,7 +390,6 @@ module.exports = {
392
390
393
391
394
});
395
-
396
397
398
collector.on("end", (collected) => {});
0 commit comments