1
0
mirror of https://github.com/anope/anope.git synced 2026-07-05 04:33:12 +02:00

fixed a small bug in the ratbox protocol module

This commit is contained in:
DukePyrolator
2011-01-08 08:18:46 +01:00
parent 47b87e903b
commit 2e7d08c10b
+1 -1
View File
@@ -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;