From b8586bf9cb0b8d53103525ffd1272e3aed4f193d Mon Sep 17 00:00:00 2001 From: Paul Coene Date: Wed, 19 Aug 2020 14:57:21 -0400 Subject: [PATCH] Update main.cpp --- world/main.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/world/main.cpp b/world/main.cpp index 0ec3ae0bf..03ec9fbee 100644 --- a/world/main.cpp +++ b/world/main.cpp @@ -326,7 +326,10 @@ int main(int argc, char** argv) { LogInfo("Current hotfix in use: [{}]", hotfix_name.c_str()); } } - + + LogInfo("Purging expired data buckets"); + database.PurgeAllDeletedDataBuckets(); + LogInfo("Loading zones"); world_store.LoadZones(); @@ -341,9 +344,6 @@ int main(int argc, char** argv) { database.ClearInvSnapshots(); LogInfo("Loading items"); - LogInfo("Purging player sold merchant items"); - MerchantlistTempRepository::Truncate(); - if (!content_db.LoadItems(hotfix_name)) { LogError("Error: Could not load item data. But ignoring"); }