Skip to content

Commit 24a6bdb

Browse files
committed
slashcommands: improve my command descriptions
1 parent 3f84c5f commit 24a6bdb

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/core/slashcommands.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -491,9 +491,9 @@ void slashcommands::register_commands(dpp::cluster *bot, bot::settings::settings
491491
command_list.add_option(languages_list_subcommand);
492492
commands.push_back(command_list);
493493

494-
dpp::slashcommand command_my("my", "Personal options", bot->me.id);
494+
dpp::slashcommand command_my("my", "Personal settings", bot->me.id);
495495
command_my.set_dm_permission(true);
496-
dpp::command_option language_subcommand(dpp::co_sub_command, "language", "Set target language");
496+
dpp::command_option language_subcommand(dpp::co_sub_command, "language", "Set personal target language");
497497
language_subcommand.add_option(target_option);
498498
command_my.add_option(language_subcommand);
499499
commands.push_back(command_my);

0 commit comments

Comments
 (0)