This commit is contained in:
asayre 2010-12-20 11:31:46 +00:00
parent 67af95cf0b
commit 2f603d30e3
2 changed files with 2 additions and 2 deletions

View file

@ -53,7 +53,7 @@ namespace Server {
saveThread.Join();
if (UseSequentialWriters)
if (permitBackgroundWrite && UseSequentialWriters) //If we're permitted to write in the background, but we don't anyways, then notify.
World.NotifyDiskWriteComplete();
}
}

View file

@ -53,7 +53,7 @@ namespace Server {
SaveItems(metrics);
SaveGuilds(metrics);
if (UseSequentialWriters)
if (permitBackgroundWrite && UseSequentialWriters) //If we're permitted to write in the background, but we don't anyways, then notify.
World.NotifyDiskWriteComplete();
}