mirror of
https://github.com/EQEmu/Server.git
synced 2026-05-31 00:46:46 +00:00
[Bug Fix] Fix Tradeskill Queries (#4661)
This commit is contained in:
@@ -13,12 +13,12 @@ void ShowRecipe(Client *c, const Seperator *sep)
|
||||
const uint16 recipe_id = static_cast<uint16>(Strings::ToUnsignedInt(sep->arg[2]));
|
||||
|
||||
const auto& re = TradeskillRecipeEntriesRepository::GetWhere(
|
||||
database,
|
||||
content_db,
|
||||
fmt::format("recipe_id = {} ORDER BY id ASC", recipe_id)
|
||||
);
|
||||
|
||||
const auto& r = TradeskillRecipeRepository::GetWhere(
|
||||
database,
|
||||
content_db,
|
||||
fmt::format("id = {}", recipe_id)
|
||||
);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user