From d862a7aa37e3c123b2df8e285deeee8559e71306 Mon Sep 17 00:00:00 2001 From: Kira Date: Sat, 20 Dec 2025 07:35:15 -0500 Subject: [PATCH] honestly its probably best i can find out if i need to --- commands/status.js | 1 + 1 file changed, 1 insertion(+) diff --git a/commands/status.js b/commands/status.js index 6cafa9a..871f938 100644 --- a/commands/status.js +++ b/commands/status.js @@ -11,6 +11,7 @@ module.exports = { ), async execute(interaction) { const message = interaction.options.getString('message'); + console.log(`${interaction.user.tag} is changing the status to ${message}`); interaction.client.user.setActivity(message, { type: ActivityType.Custom }); await interaction.reply({ content: `Status updated to: ${message}`, ephemeral: true }); },