summaryrefslogtreecommitdiff
path: root/src/modules.cpp
diff options
context:
space:
mode:
authorGravatar w00t2008-01-02 22:58:47 +0000
committerGravatar w00t2008-01-02 22:58:47 +0000
commitf5c3e3782bfeb3ffb634f86eadb8ffecbc36f176 (patch)
treea7f04b0d1f5d15b1e477bd0af477f53795b338d1 /src/modules.cpp
parentm_clones: Only show the number of clones and IP for each entry over the limit... (diff)
Add param 'opername' to event OnPostOper. This will help make a (slightly nicer) version of dz's patch to allow modes in <oper>
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@8615 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/modules.cpp')
-rw-r--r--src/modules.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules.cpp b/src/modules.cpp
index 6fecc1f50..0ee715b27 100644
--- a/src/modules.cpp
+++ b/src/modules.cpp
@@ -120,7 +120,7 @@ int Module::OnUserPreJoin(User*, Channel*, const char*, std::string&) { return
void Module::OnMode(User*, void*, int, const std::string&) { }
Version Module::GetVersion() { return Version(1,0,0,0,VF_VENDOR,-1); }
void Module::OnOper(User*, const std::string&) { }
-void Module::OnPostOper(User*, const std::string&) { }
+void Module::OnPostOper(User*, const std::string&, const std::string &) { }
void Module::OnInfo(User*) { }
void Module::OnWhois(User*, User*) { }
int Module::OnUserPreInvite(User*, User*, Channel*) { return 0; }