diff --git a/commands/utilities/server.js b/commands/utilities/serverinfo.js similarity index 92% rename from commands/utilities/server.js rename to commands/utilities/serverinfo.js index 277a28a..c9f8418 100644 --- a/commands/utilities/server.js +++ b/commands/utilities/serverinfo.js @@ -2,7 +2,7 @@ const { SlashCommandBuilder } = require('discord.js'); module.exports = { data: new SlashCommandBuilder() - .setName('server') + .setName('serverinfo') .setDescription('Provides information about the server.'), async execute(interaction) { await interaction.reply(`This server is ${interaction.guild.name} and has ${interaction.guild.memberCount} members.`);