create collection for cooldown

This commit is contained in:
Emily 2020-10-10 13:29:39 +11:00
parent 2503b1a18a
commit d18d9267f2

View file

@ -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);