From cf1382d88c5e3298923c8cb243b7bc5751e68b53 Mon Sep 17 00:00:00 2001 From: Andrew Lee Date: Sun, 2 Mar 2025 22:27:57 -0500 Subject: Ported more commands; Made embed colour a const; Cleanup --- bot/src/commands/settings.js | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 bot/src/commands/settings.js (limited to 'bot/src/commands/settings.js') diff --git a/bot/src/commands/settings.js b/bot/src/commands/settings.js new file mode 100644 index 0000000..a04d1c2 --- /dev/null +++ b/bot/src/commands/settings.js @@ -0,0 +1,10 @@ +import { SlashCommandBuilder } from 'discord.js'; + +export default { + data: new SlashCommandBuilder() + .setName('settings') + .setDescription('User settings for AleeBot.'), + async execute(interaction) { + return await interaction.reply(`**PONG!** :ping_pong: ${Math.round(interaction.client.ws.ping)} ms`); + } +}; -- cgit v1.2.3