From 1a27127c39c00947a5eb3d67458b443142e172fd Mon Sep 17 00:00:00 2001 From: Akkadius Date: Mon, 20 Jan 2025 23:21:37 -0600 Subject: [PATCH] [Hotfix] Fix query error in character_evolving_items --- common/shareddb.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/shareddb.cpp b/common/shareddb.cpp index c51b79885..679bffe9d 100644 --- a/common/shareddb.cpp +++ b/common/shareddb.cpp @@ -661,7 +661,7 @@ bool SharedDatabase::GetInventory(Client *c) // Retrieve character inventory auto results = InventoryRepository::GetWhere(*this, fmt::format("`charid` = '{}' ORDER BY `slotid`", char_id)); 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()) {