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:
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user