corrade-vassal

Subversion Repositories:
Compare Path: Rev
With Path: Rev
?path1? @ 4  →  ?path2? @ 5
/Vassal/Vassal/VassalConfiguration.cs
@@ -67,6 +67,7 @@
private string _vigenereSecret = string.Empty;
private uint _teleportTimeout = 30000;
private uint _dataTimeout = 15000;
private uint _regionRestartDelay = 120000;
 
public string Group
{
@@ -230,6 +231,24 @@
}
}
 
public uint RegionRestartDelay
{
get
{
lock (VassalConfigurationLock)
{
return _regionRestartDelay;
}
}
set
{
lock (VassalConfigurationLock)
{
_regionRestartDelay = value;
}
}
}
 
public static void Save(string file, ref VassalConfiguration configuration)
{
lock (VassalConfigurationLock)