diff options
author | cyberbotx <cyberbotx@5417fbe8-f217-4b02-8779-1006273d7864> | 2009-03-23 04:29:25 +0000 |
---|---|---|
committer | cyberbotx <cyberbotx@5417fbe8-f217-4b02-8779-1006273d7864> | 2009-03-23 04:29:25 +0000 |
commit | ce09914e1d767e88f6f5d72ac622d1321c91f9ee (patch) | |
tree | c8849a22d6843e562977f45126d525ea6ae07f73 /src/core/ns_help.c | |
parent | 656cc9973e5fbedf1ad25951c9fe80cbaa2fb3bb (diff) |
Fix part #2 of bug #1010, patched partially by Adam and cleaned up / finished by me, the help commands should work as expected now, including "help set ..." and similar help entries.
git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@2194 5417fbe8-f217-4b02-8779-1006273d7864
Diffstat (limited to 'src/core/ns_help.c')
-rw-r--r-- | src/core/ns_help.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/core/ns_help.c b/src/core/ns_help.c index 6b335bd24..061293824 100644 --- a/src/core/ns_help.c +++ b/src/core/ns_help.c @@ -26,6 +26,7 @@ class CommandNSHelp : public Command CommandReturn Execute(User *u, std::vector<std::string> ¶ms) { const char *cmd = params[0].c_str(); + if (!stricmp(cmd, "SET LANGUAGE")) { int i; |