Fix the toVerify reply when a user runs /verify

This commit is contained in:
ExtrasContainer
2024-02-04 20:24:14 +00:00
parent ed2faadec1
commit f39d45e22d
+4 -1
View File
@@ -72,7 +72,6 @@ module.exports = {
return buffer;
}
if (interaction.channel.id !== cfg.guilds[guildId].channelId) {
return interaction.reply({ content: cfg.messages.wrongChannel, ephemeral: true })
}
@@ -153,6 +152,10 @@ module.exports = {
}
const captcha = await generateCaptcha(cfg.captchaCount);
await interaction.reply({
content: cfg.messages.toVerify,
ephemeral: true
});
verifyUser(captcha);
}
}