diff --git a/commands/100-games/nowplaying.js b/commands/100-games/startplaying.js similarity index 96% rename from commands/100-games/nowplaying.js rename to commands/100-games/startplaying.js index 8eaad99..fd4093b 100644 --- a/commands/100-games/nowplaying.js +++ b/commands/100-games/startplaying.js @@ -4,8 +4,8 @@ const { checkGameStorage, getUserRegistration, createPlayingGameEntry, getBeaten module.exports = { data: new SlashCommandBuilder() - .setName('nowplaying') - .setDescription('Log a game that you are currently playing towards the 100 game challenge!') + .setName('startplaying') + .setDescription('Log a game that you have started playing towards the 100 game challenge!') .addStringOption(option => option.setName('gamename').setDescription('The name of the game.').setRequired(true)) .addNumberOption(option => option.setName('gameid').setDescription('The IGDB game id.').setMinValue(0)), async execute(interaction) {