From 9668074d940617d1b357b6ed21d571bbcfa4df01 Mon Sep 17 00:00:00 2001 From: Alex King <89047260+Kinglykrab@users.noreply.github.com> Date: Sat, 30 Aug 2025 13:56:14 -0400 Subject: [PATCH] [Bug Fix] Fix Recipe Inspect Bug (#4994) --- zone/client_packet.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/zone/client_packet.cpp b/zone/client_packet.cpp index 1f273a191..143a44d4e 100644 --- a/zone/client_packet.cpp +++ b/zone/client_packet.cpp @@ -16001,7 +16001,7 @@ void Client::Handle_OP_TradeSkillRecipeInspect(const EQApplicationPacket* app) const auto& v = TradeskillRecipeEntriesRepository::GetWhere( content_db, fmt::format( - "`recipe_id` = {} AND `componentcount` = 0 AND `successcount` > 0 LIMIT 1", + "`recipe_id` = {} AND `componentcount` = 0 AND `successcount` > 0 ORDER BY `id` ASC LIMIT 1", s->recipe_id ) );