Closed antonilol closed 4 years ago
Also getting this issue.
This is due to Chunk.java line 65.
Simply comment out this.biomes = level.getIntArray("Biomes");
It'll work, at the expense of not having biome information, I haven't looked into it further.
This is due to Minecraft 1.13+ using an IntArrayTag to store biome ids, while older versions still use a ByteArrayTag.
The MCA library does currently not support Minecraft versions below 1.13. It is unlikely, that I will make it backwards compatible. Maybe someone else wants to do that and create a pull request.
When i executed this:
MCAFile mcaFile = MCAUtil.readMCAFile("r.0.0.mca");
this error occurs:java.lang.ClassCastException: Cannot cast net.querz.nbt.ByteArrayTag to net.querz.nbt.IntArrayTag
The file r.0.0.mca exists
Anyone help me