diff options
author | Sadie Powell <sadie@witchery.services> | 2024-02-22 11:18:05 +0000 |
---|---|---|
committer | Sadie Powell <sadie@witchery.services> | 2024-02-22 11:18:05 +0000 |
commit | 7cba665270958b6e25add883df73df4976259e54 (patch) | |
tree | 79e02db8866fad38d41737e72fc3215f0ea1e6f2 /modules/protocol/bahamut.cpp | |
parent | 9502567453cccfe6193cb0def511e11078bb4463 (diff) |
Fix some oversights in commit 82fa7e1467.
Diffstat (limited to 'modules/protocol/bahamut.cpp')
-rw-r--r-- | modules/protocol/bahamut.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/protocol/bahamut.cpp b/modules/protocol/bahamut.cpp index 7a0c357ca..642e6f193 100644 --- a/modules/protocol/bahamut.cpp +++ b/modules/protocol/bahamut.cpp @@ -237,7 +237,7 @@ public: */ void SendSVSKillInternal(const MessageSource &source, User *user, const Anope::string &buf) override { - Uplink::Send("SVSKILL", user->nick, buf); + Uplink::Send(source, "SVSKILL", user->nick, buf); } void SendBOB() override |