This commit is contained in:
EntenKoeniq
2021-07-12 09:35:36 +02:00
parent 47f7635145
commit ad5f436f46
4 changed files with 4 additions and 16 deletions

View File

@ -56,12 +56,6 @@ namespace CoopServer
public float W { get; set; }
}
public enum ModVersion
{
V0_1_0,
V0_2_0
}
public enum PacketTypes
{
HandshakePacket,

View File

@ -19,7 +19,7 @@ namespace CoopServer
class Server
{
public static readonly string CurrentModVersion = Enum.GetValues(typeof(ModVersion)).Cast<ModVersion>().Last().ToString();
public static readonly string CurrentModVersion = "V0_2_1";
public static readonly Settings MainSettings = Util.Read<Settings>("CoopSettings.xml");
private readonly Blocklist MainBlocklist = Util.Read<Blocklist>("Blocklist.xml");
@ -109,8 +109,8 @@ namespace CoopServer
}
else
{
// Sleep for 10s
Thread.Sleep(10000);
// Sleep for 12.5s
Thread.Sleep(12500);
}
}
}