From 698d969b9b5e45dff351462505b1f7044fbf5c33 Mon Sep 17 00:00:00 2001 From: mark Date: Sat, 8 Aug 2009 10:32:11 +0000 Subject: [PATCH] default of everytick is painful need to rework some timer code --- Scripts/Mobiles/Special/Harrower.cs | 4 ++++ 1 file changed, 4 insertions(+) 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;