aboutsummaryrefslogtreecommitdiffstats
path: root/include/modes
diff options
context:
space:
mode:
authorGravatar Daniel De Graaf2010-08-05 09:10:54 -0400
committerGravatar Daniel De Graaf2010-08-05 09:10:54 -0400
commit818f9f79047e27979720495dd67df8a6ead9d212 (patch)
treef1d44a54d60351c9992407c1c84f28a1e04e4c57 /include/modes
parentCall OnCheckJoin for override joins so hooks are still run (diff)
Allow OnParameterMissing to fill in the missing parameter
Diffstat (limited to 'include/modes')
-rw-r--r--include/modes/umode_s.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/modes/umode_s.h b/include/modes/umode_s.h
index 131a9a669..54eced270 100644
--- a/include/modes/umode_s.h
+++ b/include/modes/umode_s.h
@@ -22,6 +22,6 @@ class ModeUserServerNoticeMask : public ModeHandler
public:
ModeUserServerNoticeMask();
ModeAction OnModeChange(User* source, User* dest, Channel* channel, std::string &parameter, bool adding);
- void OnParameterMissing(User* user, User* dest, Channel* channel);
+ void OnParameterMissing(User* user, User* dest, Channel* channel, std::string& parameter);
std::string GetUserParameter(User* user);
};