From 191bc855ac182dc4930db0359e028e2e8438a636 Mon Sep 17 00:00:00 2001 From: Matthew R Date: Mon, 13 Jul 2020 00:05:48 -0400 Subject: [PATCH] limit store msgs commands to Directors only --- src/commands/storemessages.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/commands/storemessages.ts b/src/commands/storemessages.ts index ef93c6b..44d1292 100644 --- a/src/commands/storemessages.ts +++ b/src/commands/storemessages.ts @@ -9,7 +9,7 @@ export default class StoreMessages extends Command { this.description = 'Fetches 1000 messages from the specified channel and stores them in a HTML file.'; this.usage = `${this.client.config.prefix}storemessages [member ID]`; this.aliases = ['sm']; - this.permissions = 3; + this.permissions = 7; this.guildOnly = true; this.enabled = true; }