mirror of
https://github.com/plexusorg/Plex-FAWE.git
synced 2025-01-09 01:17:36 +00:00
Add a check to prevent PlotSquared Features from trying to load.
This commit is contained in:
parent
da3019ae3d
commit
183d733825
@ -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();
|
||||||
|
Loading…
Reference in New Issue
Block a user