[Hotfix] Resolve loading of inventory (#3272)

This commit is contained in:
Aeadoin 2023-04-08 17:45:06 -04:00 committed by GitHub
parent 647bcce30b
commit 3af43a8e8d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

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