diff --git a/commands/verify.js b/commands/verify.js index 706fa16..f92c55b 100644 --- a/commands/verify.js +++ b/commands/verify.js @@ -42,14 +42,24 @@ module.exports = { } if (!ign) { - interaction.editReply("Please provide a player's IGN."); + interaction.editReply({ + embeds: [{ + description: " Please provide your in-game name.", + color: embedColor + }] + }) return; } try { await fetch(mojang + ign); } catch (err) { - interaction.editReply("That player doesn't exist. [Mojang]"); + interaction.editReply({ + embeds: [{ + description: " That player does not exist.", + color: embedColor + }] + }); return; } @@ -62,7 +72,7 @@ module.exports = { if (!stats.data.player) { interaction.editReply({ embeds: [{ - description: "That player hasn't played Hypixel before.", + description: " That player hasn't played Hypixel before.", color: embedColor }] });