diff options
author | Sadie Powell <sadie@witchery.services> | 2024-07-14 15:21:00 +0100 |
---|---|---|
committer | Sadie Powell <sadie@witchery.services> | 2024-07-14 15:21:00 +0100 |
commit | ff65b68dfa081055daa8bea6142fcfb73371e1bb (patch) | |
tree | 60949c5f2c639cc3b77454c7cccc40b72317efc0 /modules/protocol/inspircd.cpp | |
parent | 94456a606336e7ac2e51caadb46895ce89078c39 (diff) |
Fix the name of the key parameter in SendSVSJoin.
Diffstat (limited to 'modules/protocol/inspircd.cpp')
-rw-r--r-- | modules/protocol/inspircd.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/protocol/inspircd.cpp b/modules/protocol/inspircd.cpp index 0b0a60c8b..364421359 100644 --- a/modules/protocol/inspircd.cpp +++ b/modules/protocol/inspircd.cpp @@ -509,7 +509,7 @@ public: SendAddLine("Z", x->GetHost(), timeleft, x->by, x->GetReason()); } - void SendSVSJoin(const MessageSource &source, User *u, const Anope::string &chan, const Anope::string &other) override + void SendSVSJoin(const MessageSource &source, User *u, const Anope::string &chan, const Anope::string &key) override { Uplink::Send(source, "SVSJOIN", u->GetUID(), chan); } |