From 790657c2c6d717a7479e4330bd7af9e05a64aaab Mon Sep 17 00:00:00 2001 From: Kinglykrab Date: Tue, 26 Aug 2025 22:54:12 -0400 Subject: [PATCH] [Bug Fix] Fix Recipe Inspect Bug --- 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 ) );