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; }