From 5d93b735dbb0a7a99f5082262fc148ab87ad63fd Mon Sep 17 00:00:00 2001 From: Kinglykrab Date: Mon, 11 Aug 2025 13:01:04 -0400 Subject: [PATCH] [Bug Fix] Fix #show recipe uint16 Cap --- 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,