aboutsummaryrefslogtreecommitdiff
path: root/ShiftOS_TheReturn/ServerManager.cs
diff options
context:
space:
mode:
authorMichael <[email protected]>2017-05-06 09:44:47 -0400
committerMichael <[email protected]>2017-05-06 09:44:47 -0400
commit57277a01d685b0e29a79e5d74a1465a2ceb23ef9 (patch)
tree5f74b518bf121567076e0e270241beb38aa41f47 /ShiftOS_TheReturn/ServerManager.cs
parentba585e7614100b4e86dd0f043ee4be6341b67ea2 (diff)
downloadshiftos_thereturn-57277a01d685b0e29a79e5d74a1465a2ceb23ef9.tar.gz
shiftos_thereturn-57277a01d685b0e29a79e5d74a1465a2ceb23ef9.tar.bz2
shiftos_thereturn-57277a01d685b0e29a79e5d74a1465a2ceb23ef9.zip
Most of TriWrite is implemented.
Diffstat (limited to 'ShiftOS_TheReturn/ServerManager.cs')
-rw-r--r--ShiftOS_TheReturn/ServerManager.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/ShiftOS_TheReturn/ServerManager.cs b/ShiftOS_TheReturn/ServerManager.cs
index 792b38d..825064b 100644
--- a/ShiftOS_TheReturn/ServerManager.cs
+++ b/ShiftOS_TheReturn/ServerManager.cs
@@ -55,7 +55,7 @@ namespace ShiftOS.Engine
private static NetObjectClient client { get; set; }
private static bool UserDisconnect = false;
- public static TimeSpan DigitalSocietyPing
+ public static long DigitalSocietyPing
{
get;
private set;
@@ -148,7 +148,7 @@ namespace ShiftOS.Engine
{
if (PingTimer.IsRunning)
{
- DigitalSocietyPing = PingTimer.Elapsed;
+ DigitalSocietyPing = PingTimer.ElapsedMilliseconds;
PingTimer.Reset();
}
var msg = a.Data.Object as ServerMessage;