Add a check to prevent PlotSquared Features from trying to load.

This commit is contained in:
MattBDev 2019-10-09 16:28:33 -04:00
parent da3019ae3d
commit 183d733825

View File

@ -84,10 +84,12 @@ public class FaweBukkit implements IFawe, Listener {
if (PaperLib.isPaper() && Settings.IMP.EXPERIMENTAL.DYNAMIC_CHUNK_RENDERING > 1) { if (PaperLib.isPaper() && Settings.IMP.EXPERIMENTAL.DYNAMIC_CHUNK_RENDERING > 1) {
new RenderListener(plugin); new RenderListener(plugin);
} }
try { if (Bukkit.getPluginManager().getPlugin("PlotSquared") != null) {
WEManager.IMP.managers.add(new PlotSquaredFeature()); try {
} catch (Exception ignored) { WEManager.IMP.managers.add(new PlotSquaredFeature());
//Not everyone uses or needs PlotSquared. } catch (Exception ignored) {
//Not everyone uses or needs PlotSquared.
}
} }
} catch (final Throwable e) { } catch (final Throwable e) {
e.printStackTrace(); e.printStackTrace();