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

Core prep for p10 stuff

This commit is contained in:
Adam
2014-05-21 08:50:40 -04:00
parent 5a1257b7f0
commit f627a3bacd
27 changed files with 166 additions and 138 deletions
+2 -2
View File
@@ -719,7 +719,7 @@ static void LoadBots()
READ(read_int32(&created, f));
READ(read_int16(&chancount, f));
BotInfo *bi = BotInfo::Find(nick);
BotInfo *bi = BotInfo::Find(nick, true);
if (!bi)
bi = new BotInfo(nick, user, host, real);
bi->created = created;
@@ -975,7 +975,7 @@ static void LoadChannels()
}
READ(read_string(buffer, f));
ci->bi = BotInfo::Find(buffer);
ci->bi = BotInfo::Find(buffer, true);
READ(read_int32(&tmp32, f));
if (tmp32 & OLD_BS_DONTKICKOPS)