Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 6d04e5e

Browse files
committedAug 8, 2024·
Fix function call name
1 parent cfe1647 commit 6d04e5e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎commands/admin.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ module.exports = {
6363
return await interaction.reply("Removed unverified members.");
6464
} else if (interaction.options.getSubcommand() === COMMAND_DROPUSERTABLE) {
6565
const userDB = global.userDB;
66-
await userDB.drop_table();
66+
await userDB.deleteUsers();
6767

6868
return await interaction.editReply("Deleted user table.");
6969
}

0 commit comments

Comments
 (0)
Please sign in to comment.