From 7c46eeac27137d19b2782e3662cc66d745c35b93 Mon Sep 17 00:00:00 2001 From: Dragon Fire Date: Thu, 3 Dec 2020 15:01:20 -0500 Subject: [PATCH] Fix --- commands/phone/phone-block.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commands/phone/phone-block.js b/commands/phone/phone-block.js index b5f1fbc7..515f8ed1 100644 --- a/commands/phone/phone-block.js +++ b/commands/phone/phone-block.js @@ -20,7 +20,7 @@ module.exports = class PhoneBlockCommand extends Command { }); } - run(msg, { query }) { + async run(msg, { query }) { const channels = this.client.channels.cache.filter(channel => { const search = query.toLowerCase(); return channel.guild && (channel.name.includes(search) || channel.id === search);