diff --git a/Server/Diagnostics/BaseProfile.cs b/Server/Diagnostics/BaseProfile.cs index 0eeaacbda..586acb4f8 100644 --- a/Server/Diagnostics/BaseProfile.cs +++ b/Server/Diagnostics/BaseProfile.cs @@ -5,7 +5,7 @@ * copyright : (C) The RunUO Software Team * email : info@runuo.com * - * $Id: PacketProfile.cs 4 2006-06-15 04:28:39Z mark $ + * $Id$ * ***************************************************************************/ @@ -40,7 +40,7 @@ namespace Server.Diagnostics { private string _name; - private int _count; + private long _count; private TimeSpan _totalTime; private TimeSpan _peakTime; @@ -53,7 +53,7 @@ namespace Server.Diagnostics { } } - public int Count { + public long Count { get { return _count; } diff --git a/Server/Diagnostics/GumpProfile.cs b/Server/Diagnostics/GumpProfile.cs index ec2df112b..dc5bee085 100644 --- a/Server/Diagnostics/GumpProfile.cs +++ b/Server/Diagnostics/GumpProfile.cs @@ -5,7 +5,7 @@ * copyright : (C) The RunUO Software Team * email : info@runuo.com * - * $Id: PacketProfile.cs 4 2006-06-15 04:28:39Z mark $ + * $Id$ * ***************************************************************************/ diff --git a/Server/Diagnostics/PacketProfile.cs b/Server/Diagnostics/PacketProfile.cs index 0b08cda7f..e97033c7d 100644 --- a/Server/Diagnostics/PacketProfile.cs +++ b/Server/Diagnostics/PacketProfile.cs @@ -5,7 +5,7 @@ * copyright : (C) The RunUO Software Team * email : info@runuo.com * - * $Id: PacketProfile.cs 4 2006-06-15 04:28:39Z mark $ + * $Id$ * ***************************************************************************/ @@ -79,9 +79,9 @@ namespace Server.Diagnostics { return prof; } - private int _created; + private long _created; - public int Created { + public long Created { get { return _created; } diff --git a/Server/Diagnostics/TargetProfile.cs b/Server/Diagnostics/TargetProfile.cs index 417cd7ce7..06af35ab2 100644 --- a/Server/Diagnostics/TargetProfile.cs +++ b/Server/Diagnostics/TargetProfile.cs @@ -5,7 +5,7 @@ * copyright : (C) The RunUO Software Team * email : info@runuo.com * - * $Id: PacketProfile.cs 4 2006-06-15 04:28:39Z mark $ + * $Id$ * ***************************************************************************/ diff --git a/Server/Diagnostics/TimerProfile.cs b/Server/Diagnostics/TimerProfile.cs index 3d2f72a75..ca1ae62a7 100644 --- a/Server/Diagnostics/TimerProfile.cs +++ b/Server/Diagnostics/TimerProfile.cs @@ -5,7 +5,7 @@ * copyright : (C) The RunUO Software Team * email : info@runuo.com * - * $Id: PacketProfile.cs 4 2006-06-15 04:28:39Z mark $ + * $Id$ * ***************************************************************************/ @@ -47,9 +47,9 @@ namespace Server.Diagnostics { return prof; } - private int _created, _started, _stopped; + private long _created, _started, _stopped; - public int Created { + public long Created { get { return _created; } @@ -58,7 +58,7 @@ namespace Server.Diagnostics { } } - public int Started { + public long Started { get { return _started; } @@ -67,7 +67,7 @@ namespace Server.Diagnostics { } } - public int Stopped { + public long Stopped { get { return _stopped; }