diff --git a/Server/Main.cs b/Server/Main.cs index d33269a1f..335b1653d 100644 --- a/Server/Main.cs +++ b/Server/Main.cs @@ -132,11 +132,12 @@ namespace Server public static long TickCount { get { long t = 0; - +#if !MONO // TODO: Unreliable with certain system configurations. if (_HighRes) SafeNativeMethods.QueryPerformanceCounter(out t); else +#endif t = DateTime.UtcNow.Ticks; return (long)((double)t * _Frequency);