summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorPhilipp Sehmisch <crush@themanaworld.org>2009-01-18 14:21:03 +0100
committerPhilipp Sehmisch <crush@themanaworld.org>2009-01-18 14:21:03 +0100
commit64877056e3b297707b02c93f89185cea6a5f39a3 (patch)
tree6387fc4a89e279fd557507868014824170e64977 /src
parentc59fe51b4c9c08ccb2e001baf9b2f347fc2fc0ee (diff)
downloadmanaserv-64877056e3b297707b02c93f89185cea6a5f39a3.tar.gz
manaserv-64877056e3b297707b02c93f89185cea6a5f39a3.tar.bz2
manaserv-64877056e3b297707b02c93f89185cea6a5f39a3.tar.xz
manaserv-64877056e3b297707b02c93f89185cea6a5f39a3.zip
Made command handler even more helpful when entering an invalid command.
Diffstat (limited to 'src')
-rw-r--r--src/game-server/commandhandler.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/game-server/commandhandler.cpp b/src/game-server/commandhandler.cpp
index 9aefbcab..3c716da5 100644
--- a/src/game-server/commandhandler.cpp
+++ b/src/game-server/commandhandler.cpp
@@ -844,6 +844,6 @@ void CommandHandler::handleCommand(Character *player,
}
else
{
- say("command not found", player);
+ say("Command not found. Enter @help to view the list of available commands.", player);
}
}