From 72817556a6d0058b65687f4f180a8350a1be00b7 Mon Sep 17 00:00:00 2001 From: baz Date: Sun, 11 Feb 2024 20:35:33 +0000 Subject: [PATCH] Rename nowplaying to startplaying --- commands/100-games/{nowplaying.js => startplaying.js} | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) rename commands/100-games/{nowplaying.js => startplaying.js} (96%) 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) {