From 74f18d7b1d6952d5ffafec36bf82cbaf307fabb8 Mon Sep 17 00:00:00 2001 From: Sadie Powell Date: Thu, 19 Nov 2020 14:12:18 +0000 Subject: Only grant an account an identifier when the identifier is needed. --- src/init.cpp | 6 ------ 1 file changed, 6 deletions(-) (limited to 'src/init.cpp') diff --git a/src/init.cpp b/src/init.cpp index 31eae9901..d02b69293 100644 --- a/src/init.cpp +++ b/src/init.cpp @@ -551,12 +551,6 @@ void Anope::Init(int ac, char **av) EventReturn MOD_RESULT; FOREACH_RESULT(OnLoadDatabase, MOD_RESULT, ()); static_cast(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, ()); -- cgit