fix/compare combat rating

This commit is contained in:
SowinskiBraeden committed 2023-11-09 19:03:38 -08:00
1 parent 665abad887
commit 886fd6aff8
2 files changed
+3 -1

No files matched your search

+2
View File
@@ -63,6 +63,8 @@ module.exports = {
if (!client.exists(self.highestCombatRating) || self.highestCombatRating < selfDataMax) self.highestCombatRating = selfDataMax;
if (!client.exists(comp.highestCombatRating) || comp.highestCombatRating < compDataMax) comp.highestCombatRating = compDataMax;
let tag = comp.discordID != "" ? `<@${comp.discordID}>` : comp.gamertag;
let statsEmbed = new EmbedBuilder()
.setColor(client.config.Colors.Default)
.setDescription(`<@${interaction.member.user.id}> vs ${tag} Combat Rating`)