This commit is contained in:
Leijurv 2018-12-29 14:50:21 -10:00
parent 1da72ba473
commit 258700ee7b
No known key found for this signature in database
GPG Key ID: 44A3EA646EADAC6A

View File

@ -215,7 +215,7 @@ public final class CachedWorld implements ICachedWorld, Helper {
if (mostRecentlyModified == null) {
return new BlockPos(0, 0, 0);
}
return new BlockPos(mostRecentlyModified.x * 16 + 8, 0, mostRecentlyModified.z * 16 + 8);
return new BlockPos(mostRecentlyModified.x << 4 + 8, 0, mostRecentlyModified.z << 4 + 8);
}
private synchronized List<CachedRegion> allRegions() {