diff options
| author | 2022-01-31 00:03:39 +0000 | |
|---|---|---|
| committer | 2022-01-31 00:03:47 +0000 | |
| commit | 54db5b5e0aa65eac64ca3ce783a7bdb400134656 (patch) | |
| tree | 930e3674b64275d45e6f3c7185160af3ac036f65 /src/modules/m_auditorium.cpp | |
| parent | Fix a bunch of weird uses of .c_str(). (diff) | |
Fix the case of Membership::GetRank.
Diffstat (limited to 'src/modules/m_auditorium.cpp')
| -rw-r--r-- | src/modules/m_auditorium.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/m_auditorium.cpp b/src/modules/m_auditorium.cpp index 979173d0b..0bb3a9478 100644 --- a/src/modules/m_auditorium.cpp +++ b/src/modules/m_auditorium.cpp @@ -101,7 +101,7 @@ public: return true; ModResult res = CheckExemption::Call(exemptionprov, memb->user, memb->chan, "auditorium-vis"); - return res.check(OpsVisible && memb->getRank() >= OP_VALUE); + return res.check(OpsVisible && memb->GetRank() >= OP_VALUE); } /* Can they see this specific membership? */ |
