From e2db8ffea8470301217af0137855ce4b9aa61dbe Mon Sep 17 00:00:00 2001 From: Akkadius Date: Mon, 24 Feb 2025 17:24:18 -0600 Subject: [PATCH] [Hotfix] Clear m_completed_shared_tasks before reloading --- zone/client.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/zone/client.h b/zone/client.h index ef597fd35..03f24952a 100644 --- a/zone/client.h +++ b/zone/client.h @@ -1305,6 +1305,8 @@ public: return; } + m_completed_shared_tasks.clear(); + for (auto row = results.begin(); row != results.end(); ++row) { m_completed_shared_tasks.push_back(std::stoi(row[0])); }