From 3dc8354c9e0091403ebaff5cba905fa05a2dd091 Mon Sep 17 00:00:00 2001 From: Markus Mittendrein Date: Sun, 8 Nov 2015 03:06:08 +0100 Subject: Enclose unknown command in command-not-existant-message in help command --- src/crsm.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/crsm.cpp b/src/crsm.cpp index c588816..aff238c 100644 --- a/src/crsm.cpp +++ b/src/crsm.cpp @@ -1922,7 +1922,7 @@ CMD_FUNCTION_IMPL(help) } else { - respond(client, "Der Befehl " + args + " existiert nicht.\n"); + respond(client, "Der Befehl \"" + args + "\" existiert nicht.\n"); } } return Success; -- cgit v1.2.3-54-g00ecf