diff --git a/zone/bot_command.cpp b/zone/bot_command.cpp index 854054bfa9..0b46c7b63f 100644 --- a/zone/bot_command.cpp +++ b/zone/bot_command.cpp @@ -203,7 +203,7 @@ int bot_command_init(void) bot_command_add("spellsettingstoggle", "Toggle a bot spell use", AccountStatus::Player, bot_command_spell_settings_toggle) || bot_command_add("spellsettingsupdate", "Update a bot spell setting entry", AccountStatus::Player, bot_command_spell_settings_update) || bot_command_add("spelltypeids", "Lists spelltypes by ID", AccountStatus::Player, bot_command_spelltype_ids) || - bot_command_add("spelltypenames", "Lists spelltypes by shortname", AccountStatus::Player, bot_command_spelltype_names) || + bot_command_add("spelltype_shortnames", "Lists spelltypes by shortname", AccountStatus::Player, bot_command_spelltype_names) || bot_command_add("suspend", "Suspends a bot's AI processing until released", AccountStatus::Player, bot_command_suspend) || bot_command_add("taunt", "Toggles taunt use by a bot", AccountStatus::Player, bot_command_taunt) || bot_command_add("timer", "Checks or clears timers of the chosen type.", AccountStatus::GMMgmt, bot_command_timer) || diff --git a/zone/client_bot.cpp b/zone/client_bot.cpp index b5621840fa..b89553dd16 100644 --- a/zone/client_bot.cpp +++ b/zone/client_bot.cpp @@ -296,7 +296,7 @@ void Client::SendSpellTypePrompts(bool commanded_types, bool client_only_types) fmt::format("^spelltypeids client"), "ID" ), Saylink::Silent( - fmt::format("^spelltypenames client"), "Shortname" + fmt::format("^spelltype_shortnames client"), "Shortname" ) ).c_str() ); @@ -316,13 +316,13 @@ void Client::SendSpellTypePrompts(bool commanded_types, bool client_only_types) fmt::format("^spelltypeids 40+"), "40+" ), Saylink::Silent( - fmt::format("^spelltypenames 0-19"), "Shortname 0-19" + fmt::format("^spelltype_shortnames 0-19"), "Shortname 0-19" ), Saylink::Silent( - fmt::format("^spelltypenames 20-39"), "20-39" + fmt::format("^spelltype_shortnames 20-39"), "20-39" ), Saylink::Silent( - fmt::format("^spelltypenames 40+"), "40+" + fmt::format("^spelltype_shortnames 40+"), "40+" ) ).c_str() ); @@ -337,7 +337,7 @@ void Client::SendSpellTypePrompts(bool commanded_types, bool client_only_types) fmt::format("^spelltypeids commanded"), "ID" ), Saylink::Silent( - fmt::format("^spelltypenames commanded"), "Shortname" + fmt::format("^spelltype_shortnames commanded"), "Shortname" ) ).c_str() );