From fd7f8eba960981482fabf350995bf753feebb176 Mon Sep 17 00:00:00 2001 From: Andrew Lee Date: Mon, 3 Mar 2025 11:42:27 -0500 Subject: More commands ported; Almost all 2.x features have been added --- bot/src/commands/info.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'bot/src/commands/info.js') diff --git a/bot/src/commands/info.js b/bot/src/commands/info.js index 64d8f7a..33e1665 100644 --- a/bot/src/commands/info.js +++ b/bot/src/commands/info.js @@ -7,7 +7,7 @@ export default { .setName('info') .setDescription('Shows information about the host.'), async execute(interaction) { - const embed = new EmbedBuilder() + const hostEmbed = new EmbedBuilder() .setTitle('Information on AleeBot\'s Host') .addFields( { name: 'OS Hostname: ', value: hostname(), inline: true }, @@ -17,6 +17,6 @@ export default { { name: 'OS Version: ', value: release(), inline: true } ) .setColor(abEmbedColour); - return await interaction.reply({ embeds: [embed] }); + return await interaction.reply({ embeds: [hostEmbed] }); } }; -- cgit v1.2.3