9
0
mirror of https://github.com/VolmitSoftware/Iris.git synced 2025-12-27 19:19:07 +00:00

Tweaks and fixes

This commit is contained in:
cyberpwn
2021-09-23 05:28:11 -04:00
parent 3378723bdd
commit 66da382789
5 changed files with 8 additions and 29 deletions

View File

@@ -123,7 +123,7 @@ public class MCAFile {
if (raf.readByte() == 0) {
continue;
}
p2.add(new Position2(x & 31, (z / 32) & 31));
p2.add(new Position2(x & 31, (z / 31) & 31));
}
return p2;
}