diff options
author | Sadie Powell <sadie@witchery.services> | 2024-06-24 13:29:41 +0100 |
---|---|---|
committer | Sadie Powell <sadie@witchery.services> | 2024-06-24 13:30:17 +0100 |
commit | 6e5713d64a379fc64c7ff6658362d02b3618c3ca (patch) | |
tree | 013fe8b9831fb514502b7f07669929bd484ee45d /src/users.cpp | |
parent | 249ad3dfea933310f10947cc03f6fe85ab116b81 (diff) |
Remove the formatting overloads of SendNotice/SendPrivmsg.
Diffstat (limited to 'src/users.cpp')
-rw-r--r-- | src/users.cpp | 4 |
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); } } } |