1
0
mirror of https://github.com/anope/anope.git synced 2026-07-03 15:13:14 +02:00

Merge branch '2.0' into 2.1.

This commit is contained in:
Sadie Powell
2023-06-03 21:42:06 +01:00
27 changed files with 1541 additions and 1474 deletions
+2 -2
View File
@@ -121,11 +121,11 @@ Server::Server(Server *up, const Anope::string &sname, unsigned shops, const Ano
ChannelMode *cm = ModeManager::FindChannelModeByName(it2->first);
if (!cm || cm->type != MODE_LIST)
continue;
ModeManager::StackerAdd(c->ci->WhoSends(), c, cm, true, it2->second);
ModeManager::StackerAdd(c->WhoSends(), c, cm, true, it2->second);
}
if (!c->topic.empty() && !c->topic_setter.empty())
IRCD->SendTopic(c->ci->WhoSends(), c);
IRCD->SendTopic(c->WhoSends(), c);
c->syncing = true;
}