diff --git a/src/commands/createaccount.ts b/src/commands/createaccount.ts index 4546c61..9e6eb35 100644 --- a/src/commands/createaccount.ts +++ b/src/commands/createaccount.ts @@ -45,23 +45,6 @@ export default class CreateAccount extends Command { await this.client.util.createAccount(passHash, etcPasswd, args[2], args[0], args[1], message.author.id); await this.client.util.createModerationLog(args[0], message.member, 0); - /* - const log = await new this.client.db.Moderation({ - username: args[2], userID: args[0], logID: uuid(), moderatorID: message.author.id, reason: 'User requested account creation', type: 0, date: new Date(), - }); - await log.save(); - - const embed = new RichEmbed(); - embed.setTitle('Cloud Account | Create'); - embed.setColor('00ff00'); - embed.addField('User', `${args[2]} | <@${args[0]}>`); - embed.addField('Engineer', `<@${message.author.id}>`, true); - embed.addField('Reason', 'User requested account creation'); - embed.setFooter(this.client.user.username, this.client.user.avatarURL); - embed.setTimestamp(); - // @ts-ignore - this.client.createMessage('580950455581147146', { embed }); - */ this.client.util.transport.sendMail({ to: args[1], diff --git a/src/functions/checkLock.ts b/src/functions/checkLock.ts index 48c83b9..8ef6313 100644 --- a/src/functions/checkLock.ts +++ b/src/functions/checkLock.ts @@ -14,32 +14,6 @@ export default function checkLock(client: Client): void { await moderation.updateOne({ 'expiration.processed': true }); await account.updateOne({ locked: false }); await client.util.createModerationLog(account.userID, client.user, 3, 'Auto'); - /* - const mod = new client.db.Moderation({ - username: account.username, - userID: account.userID, - logID: uuid(), - moderatorID: client.user.id, - reason: 'Auto', - type: 3, - date: new Date(), - }); - await mod.save(); - const embed = new RichEmbed(); - embed.setTitle('Account Infraction | Unlock'); - embed.setColor(3066993); - embed.addField('User', `${account.username} | <@${account.userID}>`, true); - embed.addField('Supervisor', 'SYSTEM', true); - embed.addField('Reason', 'Auto', true); - embed.setFooter(client.user.username, client.user.avatarURL); - embed.setTimestamp(); - client.getDMChannel(account.userID).then((user) => { - // @ts-ignore - user.createMessage({ embed }); - }); - // @ts-ignore - client.createMessage('580950455581147146', { embed }); - */ client.signale.complete(`Unlocked account ${account.username} | Queue date at ${moderation.expiration.date.toLocaleString('en-us')}`); } });