Fixes #3344, Wrong iterator algorithm in PlotRangeIterator (#3345)

This commit is contained in:
Pascal Bürklin
2021-11-23 20:52:23 +01:00
committed by GitHub
parent a9f08bc885
commit 8f3fa419c4
2 changed files with 16 additions and 2 deletions

View File

@ -302,7 +302,7 @@ public final class PlotId {
// first increase y, then x
if (this.y == this.end.getY()) {
this.x++;
this.y = 0;
this.y = this.start.getY();
} else {
this.y++;
}