Update Versions

This commit is contained in:
Daniel Odendahl Jr
2017-06-15 04:46:17 +00:00
parent 38be7bb8d2
commit 70558b2c32
3 changed files with 11 additions and 11 deletions
+2 -6
View File
@@ -103,12 +103,8 @@ module.exports = class BattleCommand extends Command {
this.fighting.delete(msg.guild.id);
return msg.say(stripIndents`
The match is over!
**Winner:** ${userHP > oppoHP ?
`${msg.author.username} (${userHP}HP)` :
`${opponent.username} (${oppoHP}HP)`}
**Loser:** ${userHP > oppoHP ?
`${opponent.username} (${oppoHP}HP)` :
`${msg.author.username} (${userHP}HP)`}
**Winner:** ${userHP > oppoHP ? `${msg.author.username} (${userHP})` : `${opponent.username} (${oppoHP})`}
**Loser:** ${userHP > oppoHP ? `${opponent.username} (${oppoHP})` : `${msg.author.username} (${userHP})`}
`);
}
};