diff options
| author | 2008-08-17 16:16:49 +0000 | |
|---|---|---|
| committer | 2008-08-17 16:16:49 +0000 | |
| commit | 985c2bd1e6ea0bba467143406b83ba4a9f77fce1 (patch) | |
| tree | a86d30051ed1f3df98bcc36da36f059f3ea74408 /src/mode.cpp | |
| parent | Another edge case suggested by peavey (passes) (diff) | |
Add OnParameterMissing to modehandler, called when the mode handler should have a parameter, but the parser found none
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@10149 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/mode.cpp')
| -rw-r--r-- | src/mode.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/mode.cpp b/src/mode.cpp index a530f2eca..7de334689 100644 --- a/src/mode.cpp +++ b/src/mode.cpp @@ -142,6 +142,10 @@ void ModeHandler::DisplayEmptyList(User*, Channel*) { } +void ModeHandler::OnParameterMissing(User* user, User* dest, Channel* channel) +{ +} + bool ModeHandler::CheckTimeStamp(time_t theirs, time_t ours, const std::string&, const std::string&, Channel*) { return (ours < theirs); @@ -571,6 +575,7 @@ void ModeParser::Process(const std::vector<std::string>& parameters, User *user, else { /* No parameter, continue to the next mode */ + modehandlers[handler_id]->OnParameterMissing(user, targetuser, targetchannel); continue; } |
