[Bug Fix] Fix Recipe Inspect Bug (#4994)

This commit is contained in:
Alex King
2025-08-30 13:56:14 -04:00
committed by GitHub
parent 822a5dcac4
commit 9668074d94
+1 -1
View File
@@ -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
)
);