diff options
Diffstat (limited to 'src/cmd_notice.cpp')
-rw-r--r-- | src/cmd_notice.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/cmd_notice.cpp b/src/cmd_notice.cpp index f1e814198..6825ea5ea 100644 --- a/src/cmd_notice.cpp +++ b/src/cmd_notice.cpp @@ -69,7 +69,7 @@ void cmd_notice::Handle (const char** parameters, int pcnt, userrec *user) } if (*parameters[0] == '#') { - chan = FindChan(parameters[0]); + chan = ServerInstance->FindChan(parameters[0]); if (chan) { if (IS_LOCAL(user)) @@ -113,7 +113,7 @@ void cmd_notice::Handle (const char** parameters, int pcnt, userrec *user) return; } - dest = Find(parameters[0]); + dest = ServerInstance->FindNick(parameters[0]); if (dest) { int MOD_RESULT = 0; |