-.-
This commit is contained in:
dordsor21 2023-06-05 22:26:41 +01:00
parent 4b06796e76
commit 5da5b216f3
No known key found for this signature in database
GPG Key ID: 1E53E88969FFCF0B

View File

@ -409,7 +409,7 @@ public interface Region extends Iterable<BlockVector3>, Cloneable, IBatchProcess
for (int y = 0, index = 0; y < 16; y++) { for (int y = 0, index = 0; y < 16; y++) {
for (int z = 0; z < 16; z++) { for (int z = 0; z < 16; z++) {
for (int x = 0; x < 16; x++, index++) { for (int x = 0; x < 16; x++, index++) {
if (arr[index] != BlockTypesCache.ReservedIDs.__RESERVED__ && !contains(x, y, z)) { if (arr[index] != BlockTypesCache.ReservedIDs.__RESERVED__ && !contains(bx + x, by + y, bz + z)) {
arr[index] = BlockTypesCache.ReservedIDs.__RESERVED__; arr[index] = BlockTypesCache.ReservedIDs.__RESERVED__;
} }
} }