1
0
mirror of https://github.com/anope/anope.git synced 2026-06-25 05:16:38 +02:00

Only grant an account an identifier when the identifier is needed.

This commit is contained in:
Sadie Powell
2020-11-19 14:12:18 +00:00
parent 3856538e48
commit 74f18d7b1d
-6
View File
@@ -551,12 +551,6 @@ 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, ());