mirror of
https://github.com/EQEmu/Server.git
synced 2026-06-28 09:17:15 +00:00
Inventory load fix
This commit is contained in:
+1
-1
@@ -671,7 +671,7 @@ bool SharedDatabase::GetInventory(Client *c)
|
|||||||
EQ::InventoryProfile &inv = c->GetInv();
|
EQ::InventoryProfile &inv = c->GetInv();
|
||||||
|
|
||||||
// Retrieve character inventory
|
// Retrieve character inventory
|
||||||
auto results = InventoryRepository::GetWhere(*this, fmt::format("`charid` = '{}' ORDER BY `slotid`", char_id));
|
auto results = InventoryRepository::GetWhere(*this, fmt::format("`character_id` = '{}' ORDER BY `slot_id`", char_id));
|
||||||
auto e_results = CharacterEvolvingItemsRepository::GetWhere(
|
auto e_results = CharacterEvolvingItemsRepository::GetWhere(
|
||||||
*this, fmt::format("`character_id` = '{}' AND `deleted_at` IS NULL", char_id)
|
*this, fmt::format("`character_id` = '{}' AND `deleted_at` IS NULL", char_id)
|
||||||
);
|
);
|
||||||
|
|||||||
Reference in New Issue
Block a user