From 9c24afb86253d9691757fd73d5fc06369836c331 Mon Sep 17 00:00:00 2001 From: Dragon Fire Date: Tue, 1 Dec 2020 20:23:23 -0500 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 36327e99..6d94f262 100644 --- a/structures/phone/PhoneCall.js +++ b/structures/phone/PhoneCall.js @@ -31,7 +31,7 @@ module.exports = class PhoneCall { } else { await this.origin.send(`☎️ Calling **${this.recipient.guild.name} (${this.recipient.id})**...`); if (this.originDM) { - await this.recipient.send(`☎️ Incoming call from **${this.startUser.tag}'s DM (${this.origin.id})**. Pick up?`); + await this.recipient.send(`☎️ Incoming call from **${this.startUser.tag}'s DM (${this.startUser.id})**. Pick up?`); } else { await this.recipient.send(`☎️ Incoming call from **${this.origin.guild.name} (${this.origin.id})**. Pick up?`); }