This commit is contained in:
eaglercraft
2024-11-20 20:24:20 -08:00
parent fef7defbe7
commit 8b8ae0669a
30 changed files with 169 additions and 198 deletions

View File

@@ -61,7 +61,7 @@ public class BlockPos extends Vec3i {
}
public BlockPos(Vec3i source) {
this(source.getX(), source.getY(), source.getZ());
this(source.x, source.y, source.z);
}
/**+