1
0
Fork 0

Merge branch 'master' of gitlab.libraryofcode.org:engineering/cloudservices

master
Matthew 2022-02-03 15:11:06 -05:00
commit 86fb5a7dee
No known key found for this signature in database
GPG Key ID: 210AF32ADE3B5C4B
1 changed files with 1 additions and 1 deletions

View File

@ -28,7 +28,7 @@ export default class DeleteAccount extends Command {
try {
await this.client.util.messageCollector(message,
`***Please confirm that you are permanently deleting ${username}'s account by entering ${verify}. This action cannot be reversed.***`,
15000, true, [verify], (msg) => !(msg.author.id === message.author.id));
15000, true, [verify], (msg) => msg.author.id === message.author.id);
} catch (error) {
if (error.message.includes('Did not supply')) return message;
throw error;