mirror of
https://github.com/anope/anope.git
synced 2026-07-04 04:43:13 +02:00
Removed notice_user() and replaced all calls with Used::SendMessage.
git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@2078 5417fbe8-f217-4b02-8779-1006273d7864
This commit is contained in:
@@ -157,9 +157,7 @@ class CommandNSInfo : public Command
|
||||
/* If we have any info on this user */
|
||||
char *c;
|
||||
if (na->nc->GetExt("os_info", c))
|
||||
{
|
||||
notice_user(s_NickServ, u, " OperInfo: %s", c);
|
||||
}
|
||||
u->SendMessage(s_NickServ, " OperInfo: %s", c);
|
||||
}
|
||||
}
|
||||
return MOD_CONT;
|
||||
@@ -271,7 +269,7 @@ class CommandCSInfo : public Command
|
||||
/* If we have any info on this channel */
|
||||
char *c;
|
||||
if (ci->GetExt("os_info", c))
|
||||
notice_user(s_ChanServ, u, " OperInfo: %s", c);
|
||||
u->SendMessage(s_ChanServ, " OperInfo: %s", c);
|
||||
}
|
||||
}
|
||||
return MOD_CONT;
|
||||
|
||||
Reference in New Issue
Block a user