From decc42ed1e9dbd476e0aacf857484f627693076b Mon Sep 17 00:00:00 2001 From: Dragon Fire Date: Wed, 13 May 2020 18:46:12 -0400 Subject: [PATCH] Fix --- structures/phone/PhoneCall.js | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/structures/phone/PhoneCall.js b/structures/phone/PhoneCall.js index aefb3395..a1e13ba2 100644 --- a/structures/phone/PhoneCall.js +++ b/structures/phone/PhoneCall.js @@ -13,10 +13,11 @@ module.exports = class PhoneCall { } async start() { - await this.origin.send(`☎️ Calling **${this.recipient.guild.name}**...`); if (this.ownerOrigin) { - await this.recipient.send(`☎️ Incoming **ADMIN** call from **${this.origin.guild.name}**...`); + await this.origin.send(`☎️ Admin call started with **${this.recipient.guild.name}**.`); + await this.recipient.send(`☎️ An **ADMIN** call from **${this.origin.guild.name}** has begun.`); } else { + await this.origin.send(`☎️ Calling **${this.recipient.guild.name}**...`); await this.recipient.send(`☎️ Incoming call from **${this.origin.guild.name}**. Pick up?`); const validation = await verify(this.recipient, null); if (!validation) {