diff options
author | Naram Qashat cyberbotx@cyberbotx.com <Naram Qashat cyberbotx@cyberbotx.com@5417fbe8-f217-4b02-8779-1006273d7864> | 2008-10-02 18:58:23 +0000 |
---|---|---|
committer | Naram Qashat cyberbotx@cyberbotx.com <Naram Qashat cyberbotx@cyberbotx.com@5417fbe8-f217-4b02-8779-1006273d7864> | 2008-10-02 18:58:23 +0000 |
commit | 8001cc147dded5bb8acefe6cb93d6defb3f92562 (patch) | |
tree | 992174ee5e58a4b57b0d745020849fa8902b3d8b /src/users.c | |
parent | a22c4bf1daa18e11141a94ecd20dfd8af4944adb (diff) |
Replaced anope_cmd_notice() with direct call to SendNotice() in IRCDProto class.
git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@1334 5417fbe8-f217-4b02-8779-1006273d7864
Diffstat (limited to 'src/users.c')
-rw-r--r-- | src/users.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/users.c b/src/users.c index 16d9528e4..dee3f645c 100644 --- a/src/users.c +++ b/src/users.c @@ -301,7 +301,7 @@ void User::SendMessage(const char *source, const std::string &msg) } else { - anope_cmd_notice(source, this->nick, msg.c_str()); + ircdproto->SendNotice(source, this->nick, msg.c_str()); } } |