Skip to content

Commit 0b27410

Browse files
resolve conflicts
1 parent dbf0fc5 commit 0b27410

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/main/java/cam72cam/mod/world/ChunkPos.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ public static long asLong(int x, int y, int z) {
4343

4444
//For 1.16- It turned out processing Y will take much more unnecessary effort...
4545
public static long asLongExcludeY(AxisAlignedBB aabb) {
46-
return asLong(new Vec3d((aabb.maxX + aabb.minX) / 2, 0, (aabb.maxZ + aabb.minZ) / 2)));
46+
return asLong(new Vec3d((aabb.maxX + aabb.minX) / 2, 0, (aabb.maxZ + aabb.minZ) / 2));
4747
}
4848

4949
public static long asLong(AxisAlignedBB aabb) {

0 commit comments

Comments
 (0)