Forgot about verify.js changes.

This commit is contained in:
Kwafuri
2024-02-12 23:26:20 +00:00
parent f205bdc1c4
commit ea4b4481b7
+1 -2
View File
@@ -8,6 +8,7 @@ module.exports = {
description: 'To verify yourself.',
type: ApplicationCommandType.ChatInput,
run: async (client, interaction) => {
await interaction.deferReply({ ephemeral: true });
const guildId = interaction.guild.id;
async function generateCaptcha(count) {
@@ -16,8 +17,6 @@ module.exports = {
var lowchars = "abcdefghijklmnopqrstuvwxyz";
var nums = "0123456789";
//get a random letter/number from upchars, lowchars, and nums
var chars = upchars + lowchars + nums;
var captcha = "";
for (var i = 0; i < count; i++) {