mirror of
https://github.com/EQEmu/Server.git
synced 2025-12-11 12:41:30 +00:00
[Bug Fix] Fix #show recipe uint16 Cap (#4978)
This commit is contained in:
parent
d142e1ca81
commit
d876c6df2a
@ -10,7 +10,7 @@ void ShowRecipe(Client *c, const Seperator *sep)
|
||||
return;
|
||||
}
|
||||
|
||||
const uint16 recipe_id = static_cast<uint16>(Strings::ToUnsignedInt(sep->arg[2]));
|
||||
const uint32 recipe_id = Strings::ToUnsignedInt(sep->arg[2]);
|
||||
|
||||
const auto& re = TradeskillRecipeEntriesRepository::GetWhere(
|
||||
content_db,
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user