Skip to content
This repository has been archived by the owner on Mar 10, 2021. It is now read-only.

Commit

Permalink
Fix errors during default-file-creation or config-processing stopping…
Browse files Browse the repository at this point in the history
… remaining execution.

Closes #182
  • Loading branch information
bonii-xx committed Oct 3, 2015
1 parent 2393c1c commit 2f80b67
Showing 1 changed file with 2 additions and 2 deletions.
Expand Up @@ -48,7 +48,7 @@ public static void doOverride(String type, IOverride overrider)
defaultConfig.save();
} catch(RuntimeException e) {
IMCHandler.bigWarning("An Error occurred while creating default files for the %s Override", type);
throw e;
Log.error(e);
}

try {
Expand All @@ -60,7 +60,7 @@ public static void doOverride(String type, IOverride overrider)
config.save();
} catch(RuntimeException e) {
IMCHandler.bigWarning("An Error occurred while processing the Override for %s", type);
throw e;
Log.error(e);
}
}
}

0 comments on commit 2f80b67

Please sign in to comment.