diff options
author | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2006-01-09 22:10:25 +0000 |
---|---|---|
committer | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2006-01-09 22:10:25 +0000 |
commit | f2b3537ee93ecd718b1146d17c4de730f44c8366 (patch) | |
tree | 0653e8b0c8f8ba975f2705551f652f70e5066656 /src | |
parent | 2415d071e1f29916bdff82318d480effac9a5c70 (diff) |
Fix to naming scheme
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@2762 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src')
-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 ebb8e3550..74e69d380 100644 --- a/src/modules.cpp +++ b/src/modules.cpp @@ -298,7 +298,7 @@ void Module::OnDelQLine(userrec* source, std::string nickmask) { }; void Module::OnDelELine(userrec* source, std::string hostmask) { }; void Module::OnCleanup(int target_type, void* item) { }; void Module::Implements(char* Implements) { for (int j = 0; j < 255; j++) Implements[j] = 0; }; -Priority Modules::Prioritize() { return PRIORITY_DONTCARE; } +Priority Module::Prioritize() { return PRIORITY_DONTCARE; } /* server is a wrapper class that provides methods to all of the C-style * exports in the core |