diff options
| author | 2009-09-13 20:30:47 +0000 | |
|---|---|---|
| committer | 2009-09-13 20:30:47 +0000 | |
| commit | 91df762e93212958db487d8517addba1a63a4ddd (patch) | |
| tree | 62ef9a5e926a0ba1dac698c742faf5908da400fb /src/modules/m_timedbans.cpp | |
| parent | Change Extensible to use strongly typed entries (diff) | |
| download | inspircd++-91df762e93212958db487d8517addba1a63a4ddd.tar.gz inspircd++-91df762e93212958db487d8517addba1a63a4ddd.tar.bz2 inspircd++-91df762e93212958db487d8517addba1a63a4ddd.zip | |
Membership* changes
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@11697 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/modules/m_timedbans.cpp')
| -rw-r--r-- | src/modules/m_timedbans.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/modules/m_timedbans.cpp b/src/modules/m_timedbans.cpp index 17e9cd50e..11ff23a12 100644 --- a/src/modules/m_timedbans.cpp +++ b/src/modules/m_timedbans.cpp @@ -44,8 +44,8 @@ class CommandTban : public Command Channel* channel = ServerInstance->FindChan(parameters[0]); if (channel) { - int cm = channel->GetStatus(user); - if ((cm == STATUS_HOP) || (cm == STATUS_OP)) + int cm = channel->GetPrefixValue(user); + if ((cm == HALFOP_VALUE) || (cm == OP_VALUE)) { if (!ServerInstance->IsValidMask(parameters[2])) { |
