From a4f93033acfde6f44ff780bad2d4cd7cc603ba1e Mon Sep 17 00:00:00 2001 From: AwesomeAim <30537683+AwesomeAim@users.noreply.github.com> Date: Sun, 20 Mar 2022 21:20:47 -0700 Subject: [PATCH] Correct loadCommandHelp variable names, return if too many arguments on help, and add behaviour if no help exists --- core/src/commands/moderation.cpp | 6 +++++- core/src/config_manager.cpp | 8 ++++---- 2 files changed, 9 insertions(+), 5 deletions(-) diff --git a/core/src/commands/moderation.cpp b/core/src/commands/moderation.cpp index 26f9b8c..ad85eae 100644 --- a/core/src/commands/moderation.cpp +++ b/core/src/commands/moderation.cpp @@ -170,11 +170,15 @@ void AOClient::cmdHelp(int argc, QStringList argv) { if(argc > 1) { sendServerMessage("Too many arguments. Please only use the command name."); + return; } QString l_command_name = argv[0]; ConfigManager::help l_command_info = ConfigManager::commandHelp(l_command_name); - sendServerMessage("==Help==\n" +l_command_info.usage + "\n" + l_command_info.text); + if (l_command_info.usage.isEmpty() || l_command_info.text.isEmpty()) // my picoseconds :( + sendServerMessage("Unable to find the command " + l_command_name + "."); + else + sendServerMessage("==Help==\n" +l_command_info.usage + "\n" + l_command_info.text); } void AOClient::cmdMOTD(int argc, QStringList argv) diff --git a/core/src/config_manager.cpp b/core/src/config_manager.cpp index 56c0780..58bbd09 100644 --- a/core/src/config_manager.cpp +++ b/core/src/config_manager.cpp @@ -185,17 +185,17 @@ QStringList ConfigManager::ordered_songs() void ConfigManager::loadCommandHelp() { - QFile l_music_json("config/text/commandhelp.json"); - l_music_json.open(QIODevice::ReadOnly | QIODevice::Text); + QFile l_help_json("config/text/commandhelp.json"); + l_help_json.open(QIODevice::ReadOnly | QIODevice::Text); QJsonParseError l_error; - QJsonDocument l_music_list_json = QJsonDocument::fromJson(l_music_json.readAll(), &l_error); + QJsonDocument l_help_list_json = QJsonDocument::fromJson(l_help_json.readAll(), &l_error); if (!(l_error.error == QJsonParseError::NoError)) { //Non-Terminating error. qWarning() << "Unable to load help information. The following error occurred: " + l_error.errorString(); } // Akashi expects the helpfile to contain multiple entires, so it always checks for an array first. - QJsonArray l_Json_root_array = l_music_list_json.array(); + QJsonArray l_Json_root_array = l_help_list_json.array(); QJsonObject l_child_obj; for (int i = 0; i <= l_Json_root_array.size() -1; i++){