From 193f172ced64f0629b5c40ff167458929ae67386 Mon Sep 17 00:00:00 2001 From: baz Date: Thu, 30 Nov 2023 23:19:08 +0000 Subject: [PATCH] Rename searchgame to searchgames --- commands/100-games/{searchGame.js => searchGames.js} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename commands/100-games/{searchGame.js => searchGames.js} (99%) diff --git a/commands/100-games/searchGame.js b/commands/100-games/searchGames.js similarity index 99% rename from commands/100-games/searchGame.js rename to commands/100-games/searchGames.js index 1f2f4ac..5b4e4e0 100644 --- a/commands/100-games/searchGame.js +++ b/commands/100-games/searchGames.js @@ -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)),