9
0
mirror of https://github.com/VolmitSoftware/Iris.git synced 2025-12-30 04:29:05 +00:00

Fix crash issues

This commit is contained in:
Daniel Mills
2020-10-12 19:59:24 -04:00
parent e72ea21b6b
commit ac2dcee6c3
3 changed files with 20 additions and 7 deletions

View File

@@ -87,7 +87,15 @@ public class EditManager implements Listener
if(Bukkit.getPluginManager().isPluginEnabled("WorldEdit"))
{
e = new WEBlockEditor(world);
try
{
e = new WEBlockEditor(world);
}
catch(Throwable ex)
{
e = new BukkitBlockEditor(world);
}
}
else