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

Reworked live SQL support yet again

This commit is contained in:
Adam
2012-04-23 05:08:26 -04:00
parent 63c639e108
commit 573e49a7ea
172 changed files with 2517 additions and 2217 deletions
+3 -3
View File
@@ -37,11 +37,11 @@ class CommandMSSendAll : public Command
return;
}
NickAlias *na = findnick(u->nick);
const NickAlias *na = findnick(u->nick);
for (nickcore_map::const_iterator it = NickCoreList.begin(), it_end = NickCoreList.end(); it != it_end; ++it)
for (nickcore_map::const_iterator it = NickCoreList->begin(), it_end = NickCoreList->end(); it != it_end; ++it)
{
NickCore *nc = it->second;
const NickCore *nc = it->second;
if ((na && na->nc == nc) || !nc->display.equals_ci(u->nick))
memoserv->Send(u->nick, nc->display, text);