Rename nowplaying to startplaying
This commit is contained in:
parent
1098cfadaa
commit
72817556a6
|
@ -4,8 +4,8 @@ const { checkGameStorage, getUserRegistration, createPlayingGameEntry, getBeaten
|
||||||
|
|
||||||
module.exports = {
|
module.exports = {
|
||||||
data: new SlashCommandBuilder()
|
data: new SlashCommandBuilder()
|
||||||
.setName('nowplaying')
|
.setName('startplaying')
|
||||||
.setDescription('Log a game that you are currently playing towards the 100 game challenge!')
|
.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))
|
.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)),
|
.addNumberOption(option => option.setName('gameid').setDescription('The IGDB game id.').setMinValue(0)),
|
||||||
async execute(interaction) {
|
async execute(interaction) {
|
Loading…
Reference in New Issue