Print exception on failed schematic setup

This commit is contained in:
Jesse Boyd 2019-04-13 13:06:21 +10:00
parent 04779d28fb
commit 50acf4f51f
No known key found for this signature in database
GPG Key ID: 59F1DE6293AF6E1F

View File

@ -120,6 +120,7 @@ public class HybridPlotWorld extends ClassicPlotWorld {
try { try {
setupSchematics(); setupSchematics();
} catch (Exception ignored) { } catch (Exception ignored) {
ignored.printStackTrace();
PlotSquared.debug("&c - road schematics are disabled for this world."); PlotSquared.debug("&c - road schematics are disabled for this world.");
} }
} }