From d876c6df2ae79075a76c01b088e86c04a85dfe1c Mon Sep 17 00:00:00 2001 From: Alex King <89047260+Kinglykrab@users.noreply.github.com> Date: Mon, 11 Aug 2025 14:06:13 -0400 Subject: [PATCH] [Bug Fix] Fix #show recipe uint16 Cap (#4978) --- zone/gm_commands/show/recipe.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/zone/gm_commands/show/recipe.cpp b/zone/gm_commands/show/recipe.cpp index e4bd45ad1..e9f8db666 100644 --- a/zone/gm_commands/show/recipe.cpp +++ b/zone/gm_commands/show/recipe.cpp @@ -10,7 +10,7 @@ void ShowRecipe(Client *c, const Seperator *sep) return; } - const uint16 recipe_id = static_cast(Strings::ToUnsignedInt(sep->arg[2])); + const uint32 recipe_id = Strings::ToUnsignedInt(sep->arg[2]); const auto& re = TradeskillRecipeEntriesRepository::GetWhere( content_db,