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 {
new SetBlockFast();
PlotHelper.canSetFast = true;
} catch (final Exception e) {
} catch (final Throwable e) {
PlotHelper.canSetFast = false;
}
try {
new SendChunk();
PlotHelper.canSendChunk = true;
} catch (final Exception e) {
} catch (final Throwable e) {
PlotHelper.canSendChunk = false;
}
}