From f28e6d140d95f8e15910c2ede79f83dfbbd1f1e4 Mon Sep 17 00:00:00 2001 From: Dragon Fire Date: Sat, 13 Feb 2021 19:22:26 -0500 Subject: [PATCH] Fix lint --- structures/phone/PhoneManager.js | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) 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(``)); } - };