diff options
author | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2006-08-28 01:02:41 +0000 |
---|---|---|
committer | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2006-08-28 01:02:41 +0000 |
commit | fe3799248f7d4cf50b1ba704615d5952dede8917 (patch) | |
tree | 313e7860f6c377ce09fbde15a3e908fc00b970c6 /src/modules.cpp | |
parent | 4b4efad8a37fcf52e526f3d0aa218b6ab2beb6d9 (diff) |
Add support for NAMESX
Tidy up m_alias blank lines
Add m_namesx.so to example conf (no extra config tags required for it, it "just works")
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@5039 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/modules.cpp')
-rw-r--r-- | src/modules.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/modules.cpp b/src/modules.cpp index c6bacaa54..bb6092570 100644 --- a/src/modules.cpp +++ b/src/modules.cpp @@ -209,6 +209,7 @@ void Module::OnChannelDelete(chanrec* chan) { }; Priority Module::Prioritize() { return PRIORITY_DONTCARE; } void Module::OnSetAway(userrec* user) { }; void Module::OnCancelAway(userrec* user) { }; +int Module::OnUserList(userrec* user, chanrec* Ptr) { return 0; }; /* server is a wrapper class that provides methods to all of the C-style * exports in the core |