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 /modules/protocol/inspircd.cpp | |
parent | 249ad3dfea933310f10947cc03f6fe85ab116b81 (diff) |
Remove the formatting overloads of SendNotice/SendPrivmsg.
Diffstat (limited to 'modules/protocol/inspircd.cpp')
-rw-r--r-- | modules/protocol/inspircd.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/protocol/inspircd.cpp b/modules/protocol/inspircd.cpp index 3dd26931b..e3cf294f4 100644 --- a/modules/protocol/inspircd.cpp +++ b/modules/protocol/inspircd.cpp @@ -207,7 +207,7 @@ public: { if (spanningtree_proto_ver >= 1206) { - IRCD->SendNoticeInternal(bi, target->GetUID(), msg, { + IRCD->SendNotice(bi, target->GetUID(), msg, { { "~context", context->name }, }); return; @@ -219,7 +219,7 @@ public: { if (spanningtree_proto_ver >= 1206) { - IRCD->SendPrivmsgInternal(bi, target->GetUID(), msg, { + IRCD->SendPrivmsg(bi, target->GetUID(), msg, { { "~context", context->name }, }); return; |