1
0
mirror of https://github.com/anope/anope.git synced 2026-06-28 01:56:38 +02:00

fixed a small bug in the ratbox protocol module

(cherry picked from commit 2e7d08c10b)
This commit is contained in:
DukePyrolator
2011-01-08 08:18:46 +01:00
committed by Adam
parent c7979d98fa
commit 39d34f7174
+1 -1
View File
@@ -247,7 +247,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;