Add syntax suggestion on invalid argument

+ Fill in help file
This commit is contained in:
Salanto 2021-09-15 22:45:38 +02:00
parent 970b0975b4
commit 650a071006
2 changed files with 631 additions and 640 deletions

File diff suppressed because it is too large Load Diff

View File

@ -200,6 +200,7 @@ void AOClient::handleCommand(QString command, int argc, QStringList argv)
if (argc < l_info.minArgs) { if (argc < l_info.minArgs) {
sendServerMessage("Invalid command syntax."); sendServerMessage("Invalid command syntax.");
sendServerMessage("The expected syntax for this command is: \n" + ConfigManager::commandHelp(command).usage);
return; return;
} }