From 29c7b0a5f9eff289c234c756f539146fdec1f50b Mon Sep 17 00:00:00 2001 From: Bsian Date: Thu, 31 Oct 2019 20:32:12 +0000 Subject: [PATCH] Stop base command from registering --- src/Client.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Client.ts b/src/Client.ts index c9285e9..683b4c8 100644 --- a/src/Client.ts +++ b/src/Client.ts @@ -28,7 +28,7 @@ export default class Client extends Eris.Client { process.title = 'cloudservices'; this.config = config; this.util = new Util(this); - this.commands = new Collection({ base: Command }); + this.commands = new Collection(); this.db = { Account, Domain, Moderation }; this.stores = { emojis }; this.signale = signale;