Fixed infinite loop causing massive CPU usage

This commit is contained in:
MattBDev 2020-02-13 18:32:26 -05:00
parent 7e7fc89e81
commit 86539c1758

View File

@ -70,14 +70,12 @@ public interface IBatchProcessor {
}
try {
int layer = (minY - 15) >> 4;
Fawe.imp().debug("layer: " + layer + " < " +((maxY + 15) >> 4));
while (layer < (maxY + 15) >> 4) {
if (layer > -1) {
if (layer >= -1) {
if (set.hasSection(layer)) {
return true;
}
layer++;
Fawe.imp().debug("layer++ : " + layer);
}
}
} catch (ArrayIndexOutOfBoundsException exception) {