Merge branch 'features/v5/internal-updates' of https://github.com/IntellectualSites/PlotSquared into features/v5/internal-updates

This commit is contained in:
dordsor21
2020-03-20 12:12:30 +00:00
3 changed files with 22 additions and 6 deletions

View File

@ -187,7 +187,7 @@ public class HybridPlotManager extends ClassicPlotManager {
ChunkManager.chunkTask(pos1, pos2, new RunnableVal<int[]>() {
@Override public void run(int[] value) {
// If the chunk isn't near the edge and it isn't an augmented world we can just regen the whole chunk
if (canRegen && (value[6] == 0) && PlotSquared.imp().getServerVersion()[1] == 13) {
if (canRegen && (value[6] == 0)) {
queue.regenChunk(value[0], value[1]);
return;
}