This commit is contained in:
Dragon Fire
2021-04-24 08:37:43 -04:00
parent 8889c54196
commit c23a2da72e
+3 -1
View File
@@ -2,7 +2,9 @@ const Collection = require('@discordjs/collection');
const Timer = require('./Timer');
module.exports = class TimerManager extends Collection {
constructor(client) {
constructor(client, options) {
super(options);
Object.defineProperty(this, 'client', { value: client });
}