diff options
author | Adam <Adam@anope.org> | 2017-10-08 11:42:56 -0400 |
---|---|---|
committer | Adam <Adam@anope.org> | 2017-10-08 11:42:56 -0400 |
commit | 1e52b087139ceb33b114a7fa20a2c6d3d453d371 (patch) | |
tree | 64ec3426409816a1113beeb49abaeaee2ba8c92f /modules | |
parent | 20c7bcad55597f17c01089ae2ec0c458bafa705f (diff) |
Fix loading of chanserv/access
Diffstat (limited to 'modules')
-rw-r--r-- | modules/chanserv/access.cpp | 2 |
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(); |