1
0
mirror of https://github.com/anope/anope.git synced 2026-07-06 14:13:13 +02:00

Fixed the remaining commands to always show all users help and to appear in the command list

git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@2520 5417fbe8-f217-4b02-8779-1006273d7864
This commit is contained in:
Adam-
2009-09-27 07:50:32 +00:00
parent 5695a8b595
commit 9d87b0f923
5 changed files with 4 additions and 22 deletions
+2 -10
View File
@@ -125,9 +125,6 @@ class CommandNSOInfo : public Command
bool OnHelp(User *u, const ci::string &subcommand)
{
if (!is_oper(u))
return false;
me->NoticeLang(s_NickServ, u, OINFO_HELP);
return true;
}
@@ -202,9 +199,6 @@ class CommandCSOInfo : public Command
bool OnHelp(User *u, const ci::string &subcommand)
{
if (!is_oper(u))
return false;
me->NoticeLang(s_ChanServ, u, OCINFO_HELP);
return true;
}
@@ -611,14 +605,12 @@ class OSInfo : public Module
void NickServHelp(User *u)
{
if (is_oper(u))
this->NoticeLang(s_NickServ, u, OINFO_HELP_CMD);
this->NoticeLang(s_NickServ, u, OINFO_HELP_CMD);
}
void ChanServHelp(User *u)
{
if (is_oper(u))
this->NoticeLang(s_ChanServ, u, OCINFO_HELP_CMD);
this->NoticeLang(s_ChanServ, u, OCINFO_HELP_CMD);
}
};