From a6cd5c3347aa0f6e50e0991fc9a25c30faae794c Mon Sep 17 00:00:00 2001 From: Daniel Odendahl Jr Date: Fri, 15 Mar 2019 14:38:11 +0000 Subject: [PATCH] Fix --- commands/analyze/ship.js | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/commands/analyze/ship.js b/commands/analyze/ship.js index 55ad4a54..bee49491 100644 --- a/commands/analyze/ship.js +++ b/commands/analyze/ship.js @@ -38,8 +38,9 @@ module.exports = class ShipCommand extends Command { : `Haha even a bot thinks ${authorInvolved ? 'you\'re' : 'they\'re'} lame.` : ''; return msg.say(oneLine` - ${first.id === this.client.user.id ? 'Me' : first.username} and - ${second.id === this.client.user.id ? 'I' : second.username} have a compatability of... **${level}%**! ${botText} + ${first.id === this.client.user.id ? first.id === msg.author.id ? 'You' : 'Me' : first.username} and + ${second.id === this.client.user.id ? second.id === msg.author.id ? 'you' : 'I' : second.username} have a + compatability of... **${level}%**! ${botText} `); } };