diff options
author | Sadie Powell <sadie@witchery.services> | 2024-02-21 20:45:38 +0000 |
---|---|---|
committer | Sadie Powell <sadie@witchery.services> | 2024-02-22 00:14:08 +0000 |
commit | aefbb4fbdab80a41c3f88566abcba4b92b2d36d5 (patch) | |
tree | 81b6ba768c99606101fbce39d54d9d521d1a1e20 /modules/protocol/ratbox.cpp | |
parent | 9b77fdf5b680e4a084effe56345a9d01cfbf6f11 (diff) |
Rework SendModeInternal to be usable with Uplink::Send.
Diffstat (limited to 'modules/protocol/ratbox.cpp')
-rw-r--r-- | modules/protocol/ratbox.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/protocol/ratbox.cpp b/modules/protocol/ratbox.cpp index 361acb007..d76ad9c15 100644 --- a/modules/protocol/ratbox.cpp +++ b/modules/protocol/ratbox.cpp @@ -53,7 +53,7 @@ public: void SendAkillDel(const XLine *x) override { hybrid->SendAkillDel(x); } void SendJoin(User *user, Channel *c, const ChannelStatus *status) override { hybrid->SendJoin(user, c, status); } void SendServer(const Server *server) override { hybrid->SendServer(server); } - void SendModeInternal(const MessageSource &source, User *u, const Anope::string &buf) override { hybrid->SendModeInternal(source, u, buf); } + void SendModeInternal(const MessageSource &source, User *u, const Anope::string &modes, const std::vector<Anope::string> &values) override { hybrid->SendModeInternal(source, u, modes, values); } void SendChannel(Channel *c) override { hybrid->SendChannel(c); } bool IsIdentValid(const Anope::string &ident) override { return hybrid->IsIdentValid(ident); } |