diff --git a/collab-vm-server-1.3/User.cs b/collab-vm-server-1.3/User.cs index c0cd96a..9d01c0f 100644 --- a/collab-vm-server-1.3/User.cs +++ b/collab-vm-server-1.3/User.cs @@ -97,7 +97,7 @@ public class User } this.timeOut = false; this.timeoutTimer.Stop(); - this.timeoutTimer.Interval = 3000; + this.timeoutTimer.Interval = 10000; this.timeoutTimer.Start(); switch (msgArr[0]) { diff --git a/collab-vm-server-1.3/VM.cs b/collab-vm-server-1.3/VM.cs index d50598d..7fe9365 100644 --- a/collab-vm-server-1.3/VM.cs +++ b/collab-vm-server-1.3/VM.cs @@ -1,5 +1,3 @@ -using System.Collections; -using System.Collections.Concurrent; using System.Net; using CollabVM.Server.Config; using SixLabors.ImageSharp; @@ -16,7 +14,7 @@ public class VM // Public properties and events public VMController Controller { get; } public VMConfig Config { get; } - public SynchronizedCollection Users { get; } = new(); + public List Users { get; } = new(); public CircularBuffer.CircularBuffer ChatHistory { get; } = new((int)Program.Config.Chat.ChatHistoryLength); public TurnQueue TurnQueue { get; } = new(Program.Config.Turns.TurnTime); public ResetVote? Vote { get; private set; } diff --git a/collab-vm-server-1.3/collab-vm-server-1.3.csproj b/collab-vm-server-1.3/collab-vm-server-1.3.csproj index 2571006..618f4ad 100644 --- a/collab-vm-server-1.3/collab-vm-server-1.3.csproj +++ b/collab-vm-server-1.3/collab-vm-server-1.3.csproj @@ -15,7 +15,6 @@ -