From d18d9267f2beb77856e68a98c431d09367de2b38 Mon Sep 17 00:00:00 2001 From: Emily J Date: Sat, 10 Oct 2020 13:29:39 +1100 Subject: [PATCH] create collection for cooldown --- bot/index.js | 1 + 1 file changed, 1 insertion(+) diff --git a/bot/index.js b/bot/index.js index 7ffc6ac..5d432b7 100644 --- a/bot/index.js +++ b/bot/index.js @@ -29,6 +29,7 @@ class Custom extends Client { // Create collections to store loaded commands and aliases in this.commands = new Collection(); this.aliases = new Collection(); + this.cooldown = new Collection(); const handlers = require("./util/handlers"); this.commandHandler = new handlers.CommandHandler(this);