diff options
| author | 2009-09-13 20:30:47 +0000 | |
|---|---|---|
| committer | 2009-09-13 20:30:47 +0000 | |
| commit | 91df762e93212958db487d8517addba1a63a4ddd (patch) | |
| tree | 62ef9a5e926a0ba1dac698c742faf5908da400fb /src/modes/cmode_b.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/modes/cmode_b.cpp')
| -rw-r--r-- | src/modes/cmode_b.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modes/cmode_b.cpp b/src/modes/cmode_b.cpp index 36078f4b2..9c9c2129c 100644 --- a/src/modes/cmode_b.cpp +++ b/src/modes/cmode_b.cpp @@ -31,7 +31,7 @@ ModeChannelBan::ModeChannelBan(InspIRCd* Instance) : ModeHandler(Instance, NULL, ModeAction ModeChannelBan::OnModeChange(User* source, User*, Channel* channel, std::string ¶meter, bool adding) { - int status = channel->GetStatus(source); + int status = channel->GetPrefixValue(source); /* Call the correct method depending on wether we're adding or removing the mode */ if (adding) { |
