From 1e52b087139ceb33b114a7fa20a2c6d3d453d371 Mon Sep 17 00:00:00 2001 From: Adam Date: Sun, 8 Oct 2017 11:42:56 -0400 Subject: Fix loading of chanserv/access --- modules/chanserv/access.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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(other)->GetLevel(); -- cgit