From 24a6bdb0e2dfc1740906d609075f85d4355c19b9 Mon Sep 17 00:00:00 2001 From: Syping Date: Fri, 27 Mar 2026 00:43:31 +0100 Subject: [PATCH] slashcommands: improve my command descriptions --- src/core/slashcommands.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/core/slashcommands.cpp b/src/core/slashcommands.cpp index 00c2bc4..cbfe365 100644 --- a/src/core/slashcommands.cpp +++ b/src/core/slashcommands.cpp @@ -491,9 +491,9 @@ void slashcommands::register_commands(dpp::cluster *bot, bot::settings::settings command_list.add_option(languages_list_subcommand); commands.push_back(command_list); - dpp::slashcommand command_my("my", "Personal options", bot->me.id); + dpp::slashcommand command_my("my", "Personal settings", bot->me.id); command_my.set_dm_permission(true); - dpp::command_option language_subcommand(dpp::co_sub_command, "language", "Set target language"); + dpp::command_option language_subcommand(dpp::co_sub_command, "language", "Set personal target language"); language_subcommand.add_option(target_option); command_my.add_option(language_subcommand); commands.push_back(command_my);