summaryrefslogtreecommitdiff
path: root/modules/chanserv/access.cpp
diff options
context:
space:
mode:
authorAdam <Adam@anope.org>2017-10-08 11:42:56 -0400
committerAdam <Adam@anope.org>2017-10-08 11:42:56 -0400
commit1e52b087139ceb33b114a7fa20a2c6d3d453d371 (patch)
tree64ec3426409816a1113beeb49abaeaee2ba8c92f /modules/chanserv/access.cpp
parent20c7bcad55597f17c01089ae2ec0c458bafa705f (diff)
Fix loading of chanserv/access
Diffstat (limited to 'modules/chanserv/access.cpp')
-rw-r--r--modules/chanserv/access.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/chanserv/access.cpp b/modules/chanserv/access.cpp
index 32a6422cb..43892a34b 100644
--- a/modules/chanserv/access.cpp
+++ b/modules/chanserv/access.cpp
@@ -63,7 +63,7 @@ class AccessChanAccessImpl : public AccessChanAccess
int Compare(ChanAccess *other) override
{
if (this->GetSerializableType() != other->GetSerializableType())
- return ChanAccess::Compare(other);
+ return ChanAccessImpl::Compare(other);
int lev = this->GetLevel();
int theirlev = anope_dynamic_static_cast<AccessChanAccess *>(other)->GetLevel();