From 95c21c164addc6260a47af418636ceb49097843d Mon Sep 17 00:00:00 2001 From: Dragon Fire Date: Tue, 1 Dec 2020 21:00:58 -0500 Subject: [PATCH] Fix --- commands/phone/phone-info.js | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/commands/phone/phone-info.js b/commands/phone/phone-info.js index e3aa8148..e1119485 100644 --- a/commands/phone/phone-info.js +++ b/commands/phone/phone-info.js @@ -23,10 +23,9 @@ module.exports = class PhoneInfoCommand extends Command { const embed = new MessageEmbed() .setColor(0x00AE86) .setThumbnail(otherChannelDM - ? call.origin.startUser.displayAvatarURL({ format: 'png' }) + ? call.startUser.displayAvatarURL({ format: 'png' }) : otherChannel.guild.iconURL({ format: 'png' })) - .addField('❯ Recipient Channel', - otherChannelDM ? `@${call.origin.startUser.tag}` : `#${otherChannel.name}`, true) + .addField('❯ Recipient Channel', otherChannelDM ? `@${call.startUser.tag}` : `#${otherChannel.name}`, true) .addField('❯ Recipient Server', otherChannelDM ? 'DM' : otherChannel.guild.name, true) .addField('❯ Recipient ID', otherChannel.id, true) .addField('❯ Call Duration', call.durationDisplay, true)