From 2f2d6d823c3f01bdd4cca3f2f0769ba44ddc4d66 Mon Sep 17 00:00:00 2001 From: Matthew R Date: Sat, 28 Mar 2020 04:57:59 -0400 Subject: [PATCH] disable parse commands --- src/commands/parse.ts | 1 + src/commands/parseall.ts | 1 + 2 files changed, 2 insertions(+) diff --git a/src/commands/parse.ts b/src/commands/parse.ts index f23f682..b7df469 100644 --- a/src/commands/parse.ts +++ b/src/commands/parse.ts @@ -12,6 +12,7 @@ export default class Parse extends Command { this.description = 'Gets information on a user\'s x509 certificate.'; this.usage = `${this.client.config.prefix}parse [username || user ID]`; this.permissions = { roles: ['446104438969466890'] }; + this.enabled = false; } public async run(message: Message, args: string[]) { // eslint-disable-line diff --git a/src/commands/parseall.ts b/src/commands/parseall.ts index 7e1164a..d4ecc18 100644 --- a/src/commands/parseall.ts +++ b/src/commands/parseall.ts @@ -16,6 +16,7 @@ export default class Parseall extends Command { this.usage = `${this.client.config.prefix}parseall`; this.permissions = { roles: ['446104438969466890'] }; this.aliases = ['checkcerts', 'verifyall', 'verifycerts']; + this.enabled = false; } public async run(message: Message, args: string[]) {