summaryrefslogtreecommitdiff
path: root/src/commands
diff options
context:
space:
mode:
authorAttila Molnar <attilamolnar@hush.com>2014-01-25 12:40:21 +0100
committerAttila Molnar <attilamolnar@hush.com>2014-01-25 12:40:21 +0100
commit1db0e984be491125d8f954aa22f17cad1d4c453f (patch)
treee60fea152f40c36b975472725f40eb89c76cf7fd /src/commands
parentf3f8eae2cd68d8ce2c57f5df58db5833fb659cf5 (diff)
Add Channel* parameter to OnSendWhoLine
Diffstat (limited to 'src/commands')
-rw-r--r--src/commands/cmd_who.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/commands/cmd_who.cpp b/src/commands/cmd_who.cpp
index 37a04af83..afc27fb9b 100644
--- a/src/commands/cmd_who.cpp
+++ b/src/commands/cmd_who.cpp
@@ -228,7 +228,7 @@ void CommandWho::SendWhoLine(User* user, const std::vector<std::string>& parms,
wholine.append(" :0 " + u->fullname);
- FOREACH_MOD(OnSendWhoLine, (user, parms, u, wholine));
+ FOREACH_MOD(OnSendWhoLine, (user, parms, u, ch, wholine));
if (!wholine.empty())
whoresults.push_back(wholine);