summaryrefslogtreecommitdiff
path: root/modules/commands/cs_seen.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'modules/commands/cs_seen.cpp')
-rw-r--r--modules/commands/cs_seen.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/commands/cs_seen.cpp b/modules/commands/cs_seen.cpp
index 289988867..ce88efa44 100644
--- a/modules/commands/cs_seen.cpp
+++ b/modules/commands/cs_seen.cpp
@@ -376,9 +376,9 @@ class CSSeen : public Module
UpdateUser(u, PART, u->nick, "", channel, msg);
}
- void OnUserKicked(Channel *c, User *target, const Anope::string &source, const Anope::string &msg) anope_override
+ void OnUserKicked(Channel *c, User *target, MessageSource &source, const Anope::string &msg) anope_override
{
- UpdateUser(target, KICK, target->nick, source, c->name, msg);
+ UpdateUser(target, KICK, target->nick, source.GetSource(), c->name, msg);
}
private: