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

Fix 96af354ad5 to not burst topics if they are not set

This commit is contained in:
Adam
2013-12-10 20:17:29 -05:00
parent 3ddfa2fc1d
commit a282a5c9c4
+2 -1
View File
@@ -124,7 +124,8 @@ Server::Server(Server *up, const Anope::string &sname, unsigned shops, const Ano
ModeManager::StackerAdd(c->ci->WhoSends(), c, cm, true, it2->second);
}
IRCD->SendTopic(c->ci->WhoSends(), c);
if (!c->topic.empty() && !c->topic_setter.empty())
IRCD->SendTopic(c->ci->WhoSends(), c);
}
}
}