diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/account-server/storage.cpp | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/src/account-server/storage.cpp b/src/account-server/storage.cpp index 1869a166..27a72f22 100644 --- a/src/account-server/storage.cpp +++ b/src/account-server/storage.cpp @@ -1760,10 +1760,7 @@ void Storage::syncDatabase() { int id = XML::getProperty(node, "id", 0); - // This is here to """help""" us get away from *Athena items. - // This is nonsense since the config is incompatible anyway. - // TODO: Change this line in a specific commit to: if (id < 1) - if (id < 500) + if (id < 1) continue; int weight = XML::getProperty(node, "weight", 0); |