diff options
| author | 2005-11-30 15:26:42 +0000 | |
|---|---|---|
| committer | 2005-11-30 15:26:42 +0000 | |
| commit | 0739e7c099618eb1848f5a72ec4d896095033a76 (patch) | |
| tree | d4d04a29cfacd912ed270e76c71fd190951c26e4 /src/modules.cpp | |
| parent | Made a simple booboo (diff) | |
Added a parameter to OnRehash for the rehash parameter
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@2058 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/modules.cpp')
| -rw-r--r-- | src/modules.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules.cpp b/src/modules.cpp index f9bdeefcf..a1c9ca811 100644 --- a/src/modules.cpp +++ b/src/modules.cpp @@ -312,7 +312,7 @@ void Module::OnUserJoin(userrec* user, chanrec* channel) { } void Module::OnUserPart(userrec* user, chanrec* channel) { } void Module::OnPacketTransmit(std::string &data, std::string serv) { } void Module::OnPacketReceive(std::string &data, std::string serv) { } -void Module::OnRehash() { } +void Module::OnRehash(std::string parameter) { } void Module::OnServerRaw(std::string &raw, bool inbound, userrec* user) { } int Module::OnUserPreJoin(userrec* user, chanrec* chan, const char* cname) { return 0; } int Module::OnExtendedMode(userrec* user, void* target, char modechar, int type, bool mode_on, string_list ¶ms) { return false; } |
