honestly its probably best i can find out if i need to

This commit is contained in:
2025-12-20 07:35:15 -05:00
parent d620b20ecf
commit d862a7aa37

View File

@@ -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 });
},