Skip to content

Commit

Permalink
Do not use the cache if the techtree cache is not present
Browse files Browse the repository at this point in the history
  • Loading branch information
sarbian committed May 23, 2015
1 parent 8c4831f commit ee11e48
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions moduleManager.cs
Original file line number Diff line number Diff line change
Expand Up @@ -875,6 +875,7 @@ private void IsCacheUpToDate()
useCache = useCache && version.Equals(Assembly.GetExecutingAssembly().GetName().Version.ToString());
useCache = useCache && File.Exists(cachePath);
useCache = useCache && File.Exists(physicsPath);
useCache = useCache && File.Exists(techTreePath);
log("Cache SHA = " + storedSHA);
log("useCache = " + useCache);
}
Expand Down

0 comments on commit ee11e48

Please sign in to comment.