diff options
author | DukePyrolator <DukePyrolator@anope.org> | 2011-01-08 08:18:46 +0100 |
---|---|---|
committer | DukePyrolator <DukePyrolator@anope.org> | 2011-01-08 08:18:46 +0100 |
commit | 2e7d08c10b12ff740e0a3cd2259b523007f4fdf6 (patch) | |
tree | 5c6afbd66438f79b8d9405c55474b69bf384bc3e /modules/protocol/ratbox.cpp | |
parent | 47b87e903bc0e848baebe633e65c5419567de7ee (diff) |
fixed a small bug in the ratbox protocol module
Diffstat (limited to 'modules/protocol/ratbox.cpp')
-rw-r--r-- | modules/protocol/ratbox.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/protocol/ratbox.cpp b/modules/protocol/ratbox.cpp index 00587bf02..9d8864d10 100644 --- a/modules/protocol/ratbox.cpp +++ b/modules/protocol/ratbox.cpp @@ -243,7 +243,7 @@ class RatboxProto : public IRCDProto void SendTopic(BotInfo *bi, Channel *c) { - bool needjoin = c->FindUser(bi) != NULL; + bool needjoin = c->FindUser(bi) == NULL; if (needjoin) { ChannelStatus status; |