1
0
mirror of https://github.com/anope/anope.git synced 2026-06-29 03:26:38 +02:00

Implement support for immutable account identifiers.

This commit is contained in:
Sadie Powell
2020-09-10 15:15:34 +01:00
committed by GitHub
parent ff28985384
commit 8180dd414e
6 changed files with 201 additions and 4 deletions
+6
View File
@@ -551,6 +551,12 @@ void Anope::Init(int ac, char **av)
EventReturn MOD_RESULT;
FOREACH_RESULT(OnLoadDatabase, MOD_RESULT, ());
static_cast<void>(MOD_RESULT);
/* Compatibility for databases without ids */
for (nickcore_map::iterator it = NickCoreList->begin(), it_end = NickCoreList->end(); it != it_end; ++it)
it->second->GetId();
/* End compatibility for databases without ids */
Log() << "Databases loaded";
FOREACH_MOD(OnPostInit, ());