diff --git a/commands/check.js b/commands/check.js index bc5feb0..2dc6e4a 100644 --- a/commands/check.js +++ b/commands/check.js @@ -83,21 +83,21 @@ module.exports = { const hsduelswins = stats.data.stats.Duels.general.wins if (hsbwstars < bwstars && hsbwfkdr < bwfdkr && hsbwwins < bwwins) { - var bwtitle = ":cross_a: This player does not meet the BedWars requirements." + var bwtitle = " This player does not meet the BedWars requirements." } else { - var bwtitle = ":check_a: This player meets the BedWars requirements." + var bwtitle = " This player meets the BedWars requirements." } if (hsswstars < swstars) { - var swtitle = ":cross_a: This player does not meet the SkyWars requirements." + var swtitle = " This player does not meet the SkyWars requirements." } else { - var swtitle = ":check_a: This player meets the SkyWars requirements." + var swtitle = " This player meets the SkyWars requirements." } if (hsduelswins < duelswins) { - var duelstitle = ":cross_a: This player does not meet the Duels requirements." + var duelstitle = " This player does not meet the Duels requirements." } else { - var duelstitle = ":check_a: This player meets the Duels requirements." + var duelstitle = " This player meets the Duels requirements." } try { diff --git a/events/buttons/checkstats.js b/events/buttons/checkstats.js index 80917b8..9641f01 100644 --- a/events/buttons/checkstats.js +++ b/events/buttons/checkstats.js @@ -65,21 +65,21 @@ module.exports = { const hsduelswins = stats.data.stats.Duels.general.wins if (hsbwstars < bwstars && hsbwfkdr < bwfdkr && hsbwwins < bwwins) { - var bwtitle = ":cross_a: This player does not meet the BedWars requirements." + var bwtitle = " This player does not meet the BedWars requirements." } else { - var bwtitle = ":check_a: This player meets the BedWars requirements." + var bwtitle = " This player meets the BedWars requirements." } if (hsswstars < swstars) { - var swtitle = ":cross_a: This player does not meet the SkyWars requirements." + var swtitle = " This player does not meet the SkyWars requirements." } else { - var swtitle = ":check_a: This player meets the SkyWars requirements." + var swtitle = " This player meets the SkyWars requirements." } if (hsduelswins < duelswins) { - var duelstitle = ":cross_a: This player does not meet the Duels requirements." + var duelstitle = " This player does not meet the Duels requirements." } else { - var duelstitle = ":check_a: This player meets the Duels requirements." + var duelstitle = " This player meets the Duels requirements." } try {