From 0633564e6afd7313794ac469763f884440981782 Mon Sep 17 00:00:00 2001 From: Matthew R Date: Sun, 27 Oct 2019 21:18:20 -0400 Subject: [PATCH] perms is declared but never used --- src/class/Command.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/class/Command.ts b/src/class/Command.ts index 16177ac..ba3ee3f 100644 --- a/src/class/Command.ts +++ b/src/class/Command.ts @@ -28,5 +28,6 @@ export default class Command { this.aliases = []; this.guildOnly = true; this.client = client; + this.permissions = {}; } }