Should fix glowstone

This commit is contained in:
boy0001 2014-12-14 01:43:12 +11:00
parent 29615999b9
commit 8140581e4e

View File

@ -1589,14 +1589,14 @@ public class PlotMain extends JavaPlugin {
try { try {
new SetBlockFast(); new SetBlockFast();
PlotHelper.canSetFast = true; PlotHelper.canSetFast = true;
} catch (final Exception e) { } catch (final Throwable e) {
PlotHelper.canSetFast = false; PlotHelper.canSetFast = false;
} }
try { try {
new SendChunk(); new SendChunk();
PlotHelper.canSendChunk = true; PlotHelper.canSendChunk = true;
} catch (final Exception e) { } catch (final Throwable e) {
PlotHelper.canSendChunk = false; PlotHelper.canSendChunk = false;
} }
} }