diff options
author | Robin Burchell w00t@inspircd.org <Robin Burchell w00t@inspircd.org@5417fbe8-f217-4b02-8779-1006273d7864> | 2008-09-30 18:45:11 +0000 |
---|---|---|
committer | Robin Burchell w00t@inspircd.org <Robin Burchell w00t@inspircd.org@5417fbe8-f217-4b02-8779-1006273d7864> | 2008-09-30 18:45:11 +0000 |
commit | 58ab9f234cdabbf1a181fcd4d090a7b7b98836cc (patch) | |
tree | afa29b4847f1c67c11ece155e6469c533b1bcbee /src/messages.c | |
parent | 6e0bee3ab1cd085f7ef572c7762ea9425e6dd418 (diff) |
Added cmd_message() function to IRCDProtoNew class. (Replaces cmd_notice)
git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@1227 5417fbe8-f217-4b02-8779-1006273d7864
Diffstat (limited to 'src/messages.c')
-rw-r--r-- | src/messages.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/messages.c b/src/messages.c index 169cb8ec6..db81fdc80 100644 --- a/src/messages.c +++ b/src/messages.c @@ -120,7 +120,7 @@ int m_privmsg(const char *source, const char *receiver, const char *msg) if (!u) { alog("%s: user record for %s not found", msg, source); - anope_cmd_notice(receiver, source, + anope_cmd_message(receiver, source, getstring(NULL, USER_RECORD_NOT_FOUND)); return MOD_CONT; } |