Rename searchgame to searchgames

This commit is contained in:
baz 2023-11-30 23:19:08 +00:00
parent d986b2cb7f
commit 193f172ced
1 changed files with 1 additions and 1 deletions

View File

@ -2,7 +2,7 @@ const { SlashCommandBuilder, EmbedBuilder } = require('discord.js');
module.exports = {
data: new SlashCommandBuilder()
.setName('searchgame')
.setName('searchgames')
.setDescription('Searches the igdb database for matching games.')
.addStringOption(option => option.setName('gamename').setDescription('The name of the game').setRequired(true)),