This commit is contained in:
Daniel Odendahl Jr
2018-11-03 18:58:02 +00:00
parent 730c6d89a5
commit 70e209b49a
+1 -1
View File
@@ -36,7 +36,7 @@ module.exports = class ShipCommand extends Command {
const level = random.integer(0, 100); const level = random.integer(0, 100);
return msg.say(oneLine` return msg.say(oneLine`
${first.id === this.client.user.id ? 'Me' : first.username} and ${first.id === this.client.user.id ? 'Me' : first.username} and
${second.id === this.client.user.id ? 'me' : second.username} have a compatability of... **${level}%**!${botText} ${second.id === this.client.user.id ? 'me' : second.username} have a compatability of... **${level}%**! ${botText}
`); `);
} }
}; };