From 38c4d09028cb3219c64d29490b767eea9f5230f4 Mon Sep 17 00:00:00 2001 From: nullptr-w8 <79784082+nullptr-w8@users.noreply.github.com> Date: Sun, 14 Nov 2021 05:19:34 +0500 Subject: [PATCH] fix: Fixes animal taming timeout in case target is cancelled. (#842) --- Projects/UOContent/Skills/AnimalTaming.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Projects/UOContent/Skills/AnimalTaming.cs b/Projects/UOContent/Skills/AnimalTaming.cs index 99833a41e..99b1293ef 100644 --- a/Projects/UOContent/Skills/AnimalTaming.cs +++ b/Projects/UOContent/Skills/AnimalTaming.cs @@ -33,7 +33,7 @@ namespace Server.SkillHandlers m.SendLocalizedMessage(502789); // Tame which animal? } - return TimeSpan.FromHours(6.0); + return TimeSpan.FromSeconds(30); } public static bool CheckMastery(Mobile tamer, BaseCreature creature) =>