mirror of
https://github.com/IntellectualSites/PlotSquared.git
synced 2025-07-02 13:44:43 +02:00
misc fixes
This commit is contained in:
@ -275,7 +275,12 @@ public class BukkitMain extends JavaPlugin implements Listener, IPlotMain {
|
||||
BlockUpdateUtil.setBlockManager = BukkitSetBlockManager.setBlockManager;
|
||||
try {
|
||||
new SendChunk();
|
||||
MainUtil.canSendChunk = true;
|
||||
if (checkVersion(1, 7, 10) && !checkVersion(1, 7, 11)) {
|
||||
MainUtil.canSendChunk = false;
|
||||
}
|
||||
else {
|
||||
MainUtil.canSendChunk = true;
|
||||
}
|
||||
} catch (final Throwable e) {
|
||||
MainUtil.canSendChunk = false;
|
||||
}
|
||||
|
Reference in New Issue
Block a user