@@ -64,8 +64,8 @@ public WorldRegionsRegion(@Nonnull final MCAWorld world) {
6464 public Iterator <BlockVector3 > iterator () {
6565 Queue <BlockVector2 > queue = new ArrayDeque <>(getChunks ());
6666 return new Iterator <>() {
67- private final int by = min .getY ();
68- private final int ty = max .getY ();
67+ private final int by = min .y ();
68+ private final int ty = max .y ();
6969 private final MutableBlockVector3 mutable = new MutableBlockVector3 ();
7070
7171 private BlockVector2 chunk = queue .poll ();
@@ -156,7 +156,7 @@ public int getWidth() {
156156 BlockVector3 min = getMinimumPoint ();
157157 BlockVector3 max = getMaximumPoint ();
158158
159- return max .getX () - min .getX () + 1 ;
159+ return max .x () - min .x () + 1 ;
160160 }
161161
162162 /**
@@ -169,7 +169,7 @@ public int getHeight() {
169169 BlockVector3 min = getMinimumPoint ();
170170 BlockVector3 max = getMaximumPoint ();
171171
172- return max .getY () - min .getY () + 1 ;
172+ return max .y () - min .y () + 1 ;
173173 }
174174
175175 /**
@@ -182,7 +182,7 @@ public int getLength() {
182182 BlockVector3 min = getMinimumPoint ();
183183 BlockVector3 max = getMaximumPoint ();
184184
185- return max .getZ () - min .getZ () + 1 ;
185+ return max .z () - min .z () + 1 ;
186186 }
187187
188188 @ Override
@@ -233,8 +233,8 @@ public Iterator<BlockVector3> iterator() {
233233
234234 return new Iterator <>() {
235235 private final MutableBlockVector3 mutable = new MutableBlockVector3 ();
236- private final int by = min .getY () >> 4 ;
237- private final int ty = max .getY () >> 4 ;
236+ private final int by = min .y () >> 4 ;
237+ private final int ty = max .y () >> 4 ;
238238
239239 private BlockVector2 chunk = chunks .poll ();
240240 private int y ;
@@ -267,7 +267,7 @@ public Throwable fillInStackTrace() {
267267
268268 @ Override
269269 public int size () {
270- return getChunks ().size () * ((max .getY () >> 4 ) - (min .getY () >> 4 ));
270+ return getChunks ().size () * ((max .y () >> 4 ) - (min .y () >> 4 ));
271271 }
272272 };
273273 }
0 commit comments