diff options
author | Sadie Powell <sadie@witchery.services> | 2021-02-18 23:59:28 +0000 |
---|---|---|
committer | Sadie Powell <sadie@witchery.services> | 2021-02-18 23:59:28 +0000 |
commit | c68b81eac87314fb0da83a83fed8679e521cf8eb (patch) | |
tree | 1200203b739e52f652a9ba1170e4813270780edb /src/init.cpp | |
parent | 8b2c1548ab46401f96d4e2e0f8258664e21744fb (diff) | |
parent | 4d271e021042f0b2708abaff5ff3cfb1504a5cc0 (diff) |
Merge branch '2.0' into 2.1.
Diffstat (limited to 'src/init.cpp')
-rw-r--r-- | src/init.cpp | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/src/init.cpp b/src/init.cpp index 1f60dd4b7..049829bc4 100644 --- a/src/init.cpp +++ b/src/init.cpp @@ -1,6 +1,6 @@ /* Initialization and related routines. * - * (C) 2003-2020 Anope Team + * (C) 2003-2021 Anope Team * Contact us at team@anope.org * * Please read COPYING and README for further details. @@ -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, ()); |