This commit is contained in:
Daniel Odendahl Jr
2019-03-15 14:40:55 +00:00
parent a6cd5c3347
commit 929dbbd85e
+2 -2
View File
@@ -38,8 +38,8 @@ 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 ? 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
${first.id === this.client.user.id ? 'Me' : first.id === msg.author.id ? 'You' : first.username} and
${second.id === this.client.user.id ? 'I' : second.id === msg.author.id ? 'you' : second.username} have a
compatability of... **${level}%**! ${botText}
`);
}