mirror of
https://github.com/arthur-pbty/xiao.git
synced 2026-06-12 15:57:43 +02:00
Update Versions
This commit is contained in:
@@ -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})`}
|
||||
`);
|
||||
}
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user