Skip to content

Commit

Permalink
Prevents nightingale from trying to breaking some stuff. Fix #44
Browse files Browse the repository at this point in the history
  • Loading branch information
sarbian committed Jan 9, 2016
1 parent f32b316 commit c5f00d9
Showing 1 changed file with 10 additions and 3 deletions.
13 changes: 10 additions & 3 deletions moduleManager.cs
Expand Up @@ -684,14 +684,21 @@ Coroutine StartCoroutine(IEnumerator enumerator, bool blocking)

private IEnumerator ProcessPatch(bool blocking)
{
IsCacheUpToDate();
yield return null;

try
{
IsCacheUpToDate();
}
catch (Exception)
{
useCache = false;
}

#if DEBUG
useCache = false;
#endif

yield return null;

List<string> excludePaths = PrePatchInit();

yield return null;
Expand Down

0 comments on commit c5f00d9

Please sign in to comment.