From 8bb96d719bdb08a2c38d42d1f99353d434d387ad Mon Sep 17 00:00:00 2001 From: Dragon Fire Date: Tue, 7 Jul 2020 11:03:51 -0400 Subject: [PATCH] Fix --- commands/phone/phone-info.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commands/phone/phone-info.js b/commands/phone/phone-info.js index fcb4859a..70d3db64 100644 --- a/commands/phone/phone-info.js +++ b/commands/phone/phone-info.js @@ -15,7 +15,7 @@ module.exports = class PhoneInfoCommand extends Command { }); } - async run(msg) { + run(msg) { const origin = this.client.phone.find(call => call.origin.id === msg.channel.id); const recipient = this.client.phone.find(call => call.recipient.id === msg.channel.id); if (!origin && !recipient) return msg.reply('☎️ This channel is not in a phone call.');