mirror of
https://github.com/IntellectualSites/PlotSquared.git
synced 2024-11-02 08:50:17 +01:00
Potential fix to skip chunks being kept loaded
This commit is contained in:
parent
3651b3ac8d
commit
259fe94f83
@ -252,10 +252,11 @@ public final class BukkitMain extends JavaPlugin implements Listener, IPlotMain
|
|||||||
if (!result) {
|
if (!result) {
|
||||||
continue outer;
|
continue outer;
|
||||||
}
|
}
|
||||||
} while (index < chunks.length
|
if (System.currentTimeMillis() - start > 5) {
|
||||||
&& System.currentTimeMillis() - start < 5);
|
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
} while (index < chunks.length);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user