From 4fccb0c3d3e6a65a9fea837933068933d7a8371e Mon Sep 17 00:00:00 2001 From: Mark Sturgill Date: Sat, 2 Nov 2013 01:05:50 -0700 Subject: [PATCH] reduce timer queuing interval to 1ms (from 10ms) to prevent timer stacking with new high resolution timers (tested in production by vorspire) --- Server/Timer.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Server/Timer.cs b/Server/Timer.cs index 2fbd9b28a..6c1170eb6 100644 --- a/Server/Timer.cs +++ b/Server/Timer.cs @@ -353,7 +353,7 @@ namespace Server if ( loaded ) Core.Set(); - m_Signal.WaitOne( 10, false ); + m_Signal.WaitOne(1, false); } } }