From bacb672045d7e3be0873da8c5a46f8442955e8d2 Mon Sep 17 00:00:00 2001 From: March 7th <71698422+aiko-chan-ai@users.noreply.github.com> Date: Tue, 10 Jan 2023 23:18:53 +0700 Subject: [PATCH] fix: eslint --- src/structures/VoiceChannel.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/structures/VoiceChannel.js b/src/structures/VoiceChannel.js index b0b95c7..9e3932f 100644 --- a/src/structures/VoiceChannel.js +++ b/src/structures/VoiceChannel.js @@ -120,7 +120,8 @@ class VoiceChannel extends BaseGuildVoiceChannel { if (permissions.has(Permissions.FLAGS.ADMINISTRATOR, false)) return true; return ( - this.guild.members.me.communicationDisabledUntilTimestamp < Date.now() && permissions.has(Permissions.FLAGS.SPEAK, false) + this.guild.members.me.communicationDisabledUntilTimestamp < Date.now() && + permissions.has(Permissions.FLAGS.SPEAK, false) ); }