From f4db1e3aadbf45167d8dec7f95327a8d065b5761 Mon Sep 17 00:00:00 2001 From: Eric Vintimilla <1682329+blendax78@users.noreply.github.com> Date: Wed, 4 Oct 2023 14:03:25 -0400 Subject: [PATCH] fix: Fix animal trainer pet list only showing first pet. (#1532) --- Projects/UOContent/Mobiles/Vendors/NPC/AnimalTrainer.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Projects/UOContent/Mobiles/Vendors/NPC/AnimalTrainer.cs b/Projects/UOContent/Mobiles/Vendors/NPC/AnimalTrainer.cs index a276c2b6a..5779ff98c 100644 --- a/Projects/UOContent/Mobiles/Vendors/NPC/AnimalTrainer.cs +++ b/Projects/UOContent/Mobiles/Vendors/NPC/AnimalTrainer.cs @@ -124,7 +124,7 @@ namespace Server.Mobiles if (!pet.Deleted) { list.Add(pet); - break; + continue; } pet.IsStabled = false;