summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/access.cpp16
1 files changed, 16 insertions, 0 deletions
diff --git a/src/access.cpp b/src/access.cpp
index 61536ed81..3559a8209 100644
--- a/src/access.cpp
+++ b/src/access.cpp
@@ -115,6 +115,10 @@ ChanAccess *AccessGroup::Highest() const
bool AccessGroup::operator>(const AccessGroup &other) const
{
+ if (this->SuperAdmin)
+ return true;
+ else if (this->Founder && !other.Founder)
+ return true;
for (size_t i = CA_SIZE; i > 0; --i)
if (this->HasPriv(static_cast<ChannelAccess>(i - 1)) && !other.HasPriv(static_cast<ChannelAccess>(i - 1)))
return true;
@@ -123,6 +127,10 @@ bool AccessGroup::operator>(const AccessGroup &other) const
bool AccessGroup::operator<(const AccessGroup &other) const
{
+ if (other.SuperAdmin)
+ return false;
+ else if (other.Founder && !this->Founder)
+ return true;
for (size_t i = CA_SIZE; i > 0; --i)
if (!this->HasPriv(static_cast<ChannelAccess>(i - 1)) && other.HasPriv(static_cast<ChannelAccess>(i - 1)))
return true;
@@ -131,6 +139,10 @@ bool AccessGroup::operator<(const AccessGroup &other) const
bool AccessGroup::operator>=(const AccessGroup &other) const
{
+ if (this->SuperAdmin)
+ return true;
+ else if (this->Founder)
+ return true;
for (size_t i = CA_SIZE; i > 0; --i)
{
bool this_p = this->HasPriv(static_cast<ChannelAccess>(i - 1)),
@@ -145,6 +157,10 @@ bool AccessGroup::operator>=(const AccessGroup &other) const
bool AccessGroup::operator<=(const AccessGroup &other) const
{
+ if (other.SuperAdmin)
+ return true;
+ else if (other.Founder)
+ return true;
for (size_t i = CA_SIZE; i > 0; --i)
{
bool this_p = this->HasPriv(static_cast<ChannelAccess>(i - 1)),