From 4384c51e2d4fb6c86e93386374cebfbd5931dcbf Mon Sep 17 00:00:00 2001 From: Dragon Fire Date: Tue, 19 May 2020 14:07:46 -0400 Subject: [PATCH] Fix --- structures/phone/PhoneCall.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/structures/phone/PhoneCall.js b/structures/phone/PhoneCall.js index fd5f673f..cc9e4cea 100644 --- a/structures/phone/PhoneCall.js +++ b/structures/phone/PhoneCall.js @@ -57,7 +57,7 @@ module.exports = class PhoneCall { await this.origin.send('☎️ No voicemail will be left.'); } else { await this.origin.send('☎️ Please leave your message (max 280 characters) after the beep. _Beep_.'); - const voicemail = await this.origin.awaitMessages(res => res.content && res.content.length >= 280, { + const voicemail = await this.origin.awaitMessages(res => res.content && res.content.length <= 280, { time: 30000, max: 1 });