Catch Throwable instead of Exception when setting up BukkitJsonMessageHandler

This commit is contained in:
Luck
2017-09-04 13:03:09 +01:00
Unverified
parent fbe9d9f128
commit e1b51dd6af
@@ -91,7 +91,7 @@ public class BukkitJsonMessageHandler {
setup(player);
setup = true;
return true;
} catch (Exception e) {
} catch (Throwable e) {
triedAndFailed = true;
return false;
}