mirror of
https://github.com/EQEmu/Server.git
synced 2025-12-15 16:41:29 +00:00
[Hotfix] Fix query error in character_evolving_items
This commit is contained in:
parent
75698a809f
commit
1a27127c39
@ -661,7 +661,7 @@ bool SharedDatabase::GetInventory(Client *c)
|
|||||||
// 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("`charid` = '{}' ORDER BY `slotid`", char_id));
|
||||||
auto e_results = CharacterEvolvingItemsRepository::GetWhere(
|
auto e_results = CharacterEvolvingItemsRepository::GetWhere(
|
||||||
*this, fmt::format("`char_id` = '{}' AND `deleted_at` IS NULL", char_id)
|
*this, fmt::format("`character_id` = '{}' AND `deleted_at` IS NULL", char_id)
|
||||||
);
|
);
|
||||||
|
|
||||||
if (results.empty()) {
|
if (results.empty()) {
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user