1
0
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:
cyberbotx
2009-02-15 23:09:41 +00:00
parent 629422ed86
commit c5a376cbc8
12 changed files with 15 additions and 49 deletions
+2 -4
View File
@@ -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;