diff --git a/structures/phone/PhoneManager.js b/structures/phone/PhoneManager.js index 952cdc4f..cb714145 100644 --- a/structures/phone/PhoneManager.js +++ b/structures/phone/PhoneManager.js @@ -2,9 +2,9 @@ const Collection = require('@discordjs/collection'); module.exports = class PhoneManager extends Collection { constructor(client, options) { - Object.defineProperty(this, 'client', { value: client }); - super(options); + + Object.defineProperty(this, 'client', { value: client }); } inCall(channel) { @@ -19,5 +19,4 @@ module.exports = class PhoneManager extends Collection { || (origin.guild && recipient.guild && origin.topic.includes(``)) || (origin.guild && origin.topic.includes(``)); } - };