From 86169ad0fad168e69d25dcb065d2c7ecfc45be58 Mon Sep 17 00:00:00 2001 From: Lion Kortlepel Date: Sun, 5 Dec 2021 00:55:42 +0100 Subject: [PATCH] TConsole: Add notice about help command on wrong command --- src/TConsole.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/TConsole.cpp b/src/TConsole.cpp index 0bca9a8..afb44ac 100644 --- a/src/TConsole.cpp +++ b/src/TConsole.cpp @@ -289,7 +289,7 @@ void TConsole::RunAsCommand(const std::string& cmd, bool IgnoreNotACommand) { } if (NonNilFutures.size() == 0) { if (!IgnoreNotACommand) { - Application::Console().WriteRaw("Error: Unknown command: '" + cmd + "'"); + Application::Console().WriteRaw("Error: Unknown command: '" + cmd + "'. Type 'help' to see a list of valid commands."); } } else { std::stringstream Reply;