From 3e007b88e4c9ea91f63172a8d13e5685f12c07e0 Mon Sep 17 00:00:00 2001 From: Crescent Date: Sat, 26 Jun 2021 01:21:40 -0500 Subject: [PATCH] Attempting to use multiple pings lmao --- commands/social/Wink.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commands/social/Wink.js b/commands/social/Wink.js index 47d5780..2d56c1f 100644 --- a/commands/social/Wink.js +++ b/commands/social/Wink.js @@ -34,7 +34,7 @@ module.exports = { let name = message.guild ? message.member.displayName : message.author.username; let uname = message.guild.members.cache.get(mention.id).displayName; return message.channel.send(new Discord.MessageEmbed() - .setAuthor(`${message.guild ? message.member.displayName : message.author.username} holds ${uname.endsWith('s') ? `${uname}'` : `${uname}'s`} hand!`, message.author.avatarURL()) + .setAuthor(`${message.guild ? message.member.displayName : message.author.username} winks at ${message.guild.members.cache.get(mention.id).displayName}!`, message.author.avatarURL()) .setImage(String(Array.from(saves.values())[Math.floor(Math.random() * saves.size)])) .setColor('8a2be2') );