summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorSadie Powell <sadie@witchery.services>2020-11-19 14:12:18 +0000
committerSadie Powell <sadie@witchery.services>2020-11-19 14:12:18 +0000
commit74f18d7b1d6952d5ffafec36bf82cbaf307fabb8 (patch)
tree4f73ad7956eee52e8c2396bc301dce91b283892d /src
parent3856538e485b4e2dc96ec3cf30fae5a9c1ea6e86 (diff)
Only grant an account an identifier when the identifier is needed.
Diffstat (limited to 'src')
-rw-r--r--src/init.cpp6
1 files changed, 0 insertions, 6 deletions
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<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, ());