From 3af43a8e8d948b21c0a924528a2f1a643547cd2f Mon Sep 17 00:00:00 2001 From: Aeadoin <109764533+Aeadoin@users.noreply.github.com> Date: Sat, 8 Apr 2023 17:45:06 -0400 Subject: [PATCH] [Hotfix] Resolve loading of inventory (#3272) --- common/shareddb.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/common/shareddb.cpp b/common/shareddb.cpp index aef3cbe6c..a48c33212 100644 --- a/common/shareddb.cpp +++ b/common/shareddb.cpp @@ -515,7 +515,8 @@ bool SharedDatabase::GetSharedBank(uint32 id, EQ::InventoryProfile *inv, bool is } auto results = QueryDatabase(query); - if (!results.Success() || !results.RowCount()) { + // If we have no results we still need to return true + if (!results.Success()) { return false; }