diff --git a/Scripts/Mobiles/Special/Harrower.cs b/Scripts/Mobiles/Special/Harrower.cs index 370902970..66cea06e5 100644 --- a/Scripts/Mobiles/Special/Harrower.cs +++ b/Scripts/Mobiles/Special/Harrower.cs @@ -522,6 +522,8 @@ namespace Server.Mobiles public TeleportTimer( Mobile owner ) : base( TimeSpan.FromSeconds( 5.0 ), TimeSpan.FromSeconds( 5.0 ) ) { + Priority = TimerPriority.TwoFiftyMS; + m_Owner = owner; } @@ -608,6 +610,8 @@ namespace Server.Mobiles public GoodiesTimer( Map map, int x, int y ) : base( TimeSpan.FromSeconds( Utility.RandomDouble() * 10.0 ) ) { + Priority = TimerPriority.TwoFiftyMS; + m_Map = map; m_X = x; m_Y = y;