V0.2.1
This commit is contained in:
@ -19,7 +19,7 @@ namespace CoopClient
|
||||
|
||||
private bool GameLoaded = false;
|
||||
|
||||
public static readonly string CurrentModVersion = Enum.GetValues(typeof(ModVersion)).Cast<ModVersion>().Last().ToString();
|
||||
public static readonly string CurrentModVersion = "V0_2_1";
|
||||
|
||||
public static bool ShareNpcsWithPlayers = false;
|
||||
public static bool NpcsAllowed = false;
|
||||
|
@ -93,12 +93,6 @@ namespace CoopClient
|
||||
public float W { get; set; }
|
||||
}
|
||||
|
||||
public enum ModVersion
|
||||
{
|
||||
V0_1_0,
|
||||
V0_2_0
|
||||
}
|
||||
|
||||
public enum PacketTypes
|
||||
{
|
||||
HandshakePacket,
|
||||
|
@ -56,12 +56,6 @@ namespace CoopServer
|
||||
public float W { get; set; }
|
||||
}
|
||||
|
||||
public enum ModVersion
|
||||
{
|
||||
V0_1_0,
|
||||
V0_2_0
|
||||
}
|
||||
|
||||
public enum PacketTypes
|
||||
{
|
||||
HandshakePacket,
|
||||
|
@ -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);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user