mirror of
https://github.com/Caraxi/mare.client.git
synced 2025-12-12 17:07:22 +01:00
remove requirement to hold ctrl, remove puzzle
This commit is contained in:
parent
9bdbd1c3fa
commit
fafb103ce2
9 changed files with 31 additions and 187 deletions
|
|
@ -36,9 +36,12 @@ public class FileCacheManager : IDisposable
|
|||
_configuration = configuration;
|
||||
CsvPath = Path.Combine(configDirectoryName, "FileCache.csv");
|
||||
|
||||
if (File.Exists(CsvBakPath))
|
||||
lock (_fileWriteLock)
|
||||
{
|
||||
File.Move(CsvBakPath, CsvPath, true);
|
||||
if (File.Exists(CsvBakPath))
|
||||
{
|
||||
File.Move(CsvBakPath, CsvPath, true);
|
||||
}
|
||||
}
|
||||
|
||||
if (File.Exists(CsvPath))
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue