diff --git a/commands/100-games/planGame.js b/commands/100-games/planGame.js index 5a06bca..e7aea7f 100644 --- a/commands/100-games/planGame.js +++ b/commands/100-games/planGame.js @@ -49,7 +49,7 @@ module.exports = { const coverUrl = await getCoverURL(game.cover); const embed = new EmbedBuilder() - .setColor(0xFFD700) + .setColor(0x43ABEC) .setAuthor({ name: `${interaction.user.displayName} is planning to beat a game!`, iconURL: interaction.user.avatarURL() }) .setTitle(`${game.name}!`) .setThumbnail(`${coverUrl}`) diff --git a/commands/100-games/startplaying.js b/commands/100-games/startplaying.js index fd4093b..af87361 100644 --- a/commands/100-games/startplaying.js +++ b/commands/100-games/startplaying.js @@ -49,7 +49,7 @@ module.exports = { const coverUrl = await getCoverURL(game.cover); const embed = new EmbedBuilder() - .setColor(0xFFD700) + .setColor(0x00C921) .setAuthor({ name: `${interaction.user.displayName} has started playing a new game!`, iconURL: interaction.user.avatarURL() }) .setTitle(`${game.name}!`) .setThumbnail(`${coverUrl}`)