diff options
| author | Adam- <Adam-@5417fbe8-f217-4b02-8779-1006273d7864> | 2010-02-06 20:16:30 +0000 |
|---|---|---|
| committer | Adam- <Adam-@5417fbe8-f217-4b02-8779-1006273d7864> | 2010-02-06 20:16:30 +0000 |
| commit | 6b2f9e25cd962b6bd5f4a4c3d6ca418fb67dfa63 (patch) | |
| tree | ec53ce143e95bb59ed22461364efec75a63d9f5f /src/protocol | |
| parent | 4099944013af67964be367b66b170edfb0db2404 (diff) | |
Fix typo in inspircd11 that would cause people not to get status from FJOINs
git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@2784 5417fbe8-f217-4b02-8779-1006273d7864
Diffstat (limited to 'src/protocol')
| -rw-r--r-- | src/protocol/inspircd11.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/protocol/inspircd11.c b/src/protocol/inspircd11.c index 8ab4c2693..35f3b6edb 100644 --- a/src/protocol/inspircd11.c +++ b/src/protocol/inspircd11.c @@ -516,7 +516,7 @@ int anope_event_fjoin(const char *source, int ac, const char **av) { ChannelMode *cm = ModeManager::FindChannelModeByChar(ch); - if (cm) + if (!cm) { Alog() << "Recieved unknown mode prefix " << buf[0] << " in FJOIN string"; buf.erase(buf.begin()); |
