summaryrefslogtreecommitdiff
path: root/src/users.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/users.cpp')
-rw-r--r--src/users.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/users.cpp b/src/users.cpp
index 9462881f1..9b370ea06 100644
--- a/src/users.cpp
+++ b/src/users.cpp
@@ -337,9 +337,9 @@ namespace
for (Anope::string tok; sep.GetToken(tok);)
{
if (target->ShouldPrivmsg())
- IRCD->SendPrivmsgInternal(source, target->GetUID(), tok, tags);
+ IRCD->SendPrivmsg(source, target->GetUID(), tok, tags);
else
- IRCD->SendNoticeInternal(source, target->GetUID(), tok, tags);
+ IRCD->SendNotice(source, target->GetUID(), tok, tags);
}
}
}