made action errors log to the log file

This commit is contained in:
Jared 2017-10-21 22:49:39 +02:00
parent 390a12a084
commit b61f5e857d

View file

@ -47,6 +47,7 @@ public class ModTweaker {
LATE_ADDITIONS.forEach(CraftTweakerAPI::apply); LATE_ADDITIONS.forEach(CraftTweakerAPI::apply);
} catch(Exception e) { } catch(Exception e) {
e.printStackTrace(); e.printStackTrace();
CraftTweakerAPI.logError("Error while applying actions", e);
} }
} }
} }