What to do when chunks get broken?
#1
So this happened and may have caused recent teleportation bugs. I am not sure yet. I've got the server messages that a few chunks have been regenerated. 
After checking, I found one of these regenerated chunks is right in town-center.

I have a ton of backup files, but how do I determine which files to copy BACK, so progress on other chunks has not been lost? Can I stand in a specific area and look up in what file it is stored?
Reply
Thanks given by:
#2
It would be mostly impossible to "fix" this by only overwriting files, since the world files store 32x32 chunks each. You will need a special program for that to pick just the single chunk.

As for the location, the formula is simple, filename is "r.<floor(ChunkX / 32)>.<floor(ChunkZ / 32)>.mca", where the "floor" function rounds the number towards negative infinity.
Reply
Thanks given by:
#3
Thanks so much for helping. Smile I'm not a math person, to be honest. Or even just a numbers person. Coordindates, I can do, that is about the extent of it. Gotta admit that I don't understand the formula. Which is normal for me. I don't understand most any formula. I'd at least like to take a glance at each regenerated area and see if I can deal with it, or have to do something. One of these was in town-center but I lucked out and it was just a simple barn that I just rebuilt in 15 minutes. Good as new. No underground tunnels that were disconnected, either. The list of regenerated chunks is actually quite long, but it seems to be only little pieces here and there, all from the same big, biiiig file. r.0.0 ....

Maybe the SD card is slowly dying, I'm not sure what caused the bad chunks. Instead of 20, there must have been hundreds sheep in that pen. 5 of the 15 minutes I spent on "removing" sheep. Ended up with 10 or so stacks of mutton.
Reply
Thanks given by:
#4
Suppose the chunk is 70, 40. Let's apply the formula:

r.<floor(ChunkX / 32)>.<floor(ChunkZ / 32)>.mca

"ChunkX / 32" is 70 / 32, which is 2.1875
"ChunkZ / 32" is 40 / 32, which is 1.25

Flooring simply means "remove the fractions", so 2.1875 becomes 2, and 1.25 becomes 1.

Therefore, the file name is:
r.2.1.mca

In other words:
Code:
r.<floor(ChunkX / 32)>.<floor(ChunkZ / 32)>.mca =
r.<floor(70 / 32)>.<floor(40 / 32)>.mca =
r.<floor(2.1875)>.<floor(1.25)>.mca =
r.2.1.mca
Reply
Thanks given by:
#5
They say that things you don't understand will often look like magic to you. So, I guess this is true for me and my skillz of unraveling this even on a basic level. I learned now that all the re-generated chunks are in just one file, so far so good.

Now how do I find out where to teleport/travel to find the spots that got regenerated?

Example from the log:

Code:
Warn [16:24:11] Loading chunk [6, 9] for world world from file r.0.0.mca failed: NBT parsing failed. Offloading old chunk data to file world/region/badchunks/ch.6.9.2016-08-16-16-24-11.dat and regenerating chunk.
Warn [16:24:11] Loading chunk [6, 9] for world world from file r.0.0.mca failed: NBT parsing failed. Offloading old chunk data to file world/region/badchunks/ch.6.9.2016-08-16-16-24-11.dat and regenerating chunk.
Warn [16:24:12] Loading chunk [6, 9] for world world from file r.0.0.mca failed: NBT parsing failed. Offloading old chunk data to file world/region/badchunks/ch.6.9.2016-08-16-16-24-12.dat and regenerating chunk.
Warn [16:24:12] Loading chunk [6, 9] for world world from file r.0.0.mca failed: NBT parsing failed. Offloading old chunk data to file world/region/badchunks/ch.6.9.2016-08-16-16-24-12.dat and regenerating chunk.
Warn [16:24:12] Loading chunk [6, 9] for world world from file r.0.0.mca failed: NBT parsing failed. Offloading old chunk data to file world/region/badchunks/ch.6.9.2016-08-16-16-24-12.dat and regenerating chunk.
Warn [16:24:12] Loading chunk [6, 9] for world world from file r.0.0.mca failed: NBT parsing failed. Offloading old chunk data to file world/region/badchunks/ch.6.9.2016-08-16-16-24-12.dat and regenerating chunk.
Warn [16:24:12] Loading chunk [6, 9] for world world from file r.0.0.mca failed: NBT parsing failed. Offloading old chunk data to file world/region/badchunks/ch.6.9.2016-08-16-16-24-12.dat and regenerating chunk.
Warn [16:24:12] Loading chunk [6, 9] for world world from file r.0.0.mca failed: NBT parsing failed. Offloading old chunk data to file world/region/badchunks/ch.6.9.2016-08-16-16-24-12.dat and regenerating chunk.
Warn [16:24:12] Loading chunk [6, 9] for world world from file r.0.0.mca failed: NBT parsing failed. Offloading old chunk data to file world/region/badchunks/ch.6.9.2016-08-16-16-24-12.dat and regenerating chunk.
Warn [16:24:12] Loading chunk [6, 9] for world world from file r.0.0.mca failed: NBT parsing failed. Offloading old chunk data to file world/region/badchunks/ch.6.9.2016-08-16-16-24-12.dat and regenerating chunk.
Warn [16:24:12] Loading chunk [6, 9] for world world from file r.0.0.mca failed: NBT parsing failed. Offloading old chunk data to file world/region/badchunks/ch.6.9.2016-08-16-16-24-12.dat and regenerating chunk.
Warn [16:24:12] Loading chunk [6, 9] for world world from file r.0.0.mca failed: NBT parsing failed. Offloading old chunk data to file world/region/badchunks/ch.6.9.2016-08-16-16-24-12.dat and regenerating chunk.
Warn [16:24:13] Loading chunk [6, 9] for world world from file r.0.0.mca failed: NBT parsing failed. Offloading old chunk data to file world/region/badchunks/ch.6.9.2016-08-16-16-24-13.dat and regenerating chunk.
Warn [16:24:13] Loading chunk [6, 9] for world world from file r.0.0.mca failed: NBT parsing failed. Offloading old chunk data to file world/region/badchunks/ch.6.9.2016-08-16-16-24-13.dat and regenerating chunk.
Warn [16:24:13] Loading chunk [6, 9] for world world from file r.0.0.mca failed: NBT parsing failed. Offloading old chunk data to file world/region/badchunks/ch.6.9.2016-08-16-16-24-13.dat and regenerating chunk.
Warn [16:24:13] Loading chunk [6, 9] for world world from file r.0.0.mca failed: NBT parsing failed. Offloading old chunk data to file world/region/badchunks/ch.6.9.2016-08-16-16-24-13.dat and regenerating chunk.
Warn [16:24:13] Loading chunk [6, 9] for world world from file r.0.0.mca failed: NBT parsing failed. Offloading old chunk data to file world/region/badchunks/ch.6.9.2016-08-16-16-24-13.dat and regenerating chunk.
Warn [16:24:13] Loading chunk [6, 9] for world world from file r.0.0.mca failed: NBT parsing failed. Offloading old chunk data to file world/region/badchunks/ch.6.9.2016-08-16-16-24-13.dat and regenerating chunk.
Warn [16:24:13] Loading chunk [6, 9] for world world from file r.0.0.mca failed: NBT parsing failed. Offloading old chunk data to file world/region/badchunks/ch.6.9.2016-08-16-16-24-13.dat and regenerating chunk.
Warn [16:24:13] Loading chunk [6, 9] for world world from file r.0.0.mca failed: NBT parsing failed. Offloading old chunk data to file world/region/badchunks/ch.6.9.2016-08-16-16-24-13.dat and regenerating chunk.
Warn [16:24:13] Loading chunk [6, 9] for world world from file r.0.0.mca failed: NBT parsing failed. Offloading old chunk data to file world/region/badchunks/ch.6.9.2016-08-16-16-24-13.dat and regenerating chunk.
Warn [16:24:13] Loading chunk [6, 9] for world world from file r.0.0.mca failed: NBT parsing failed. Offloading old chunk data to file world/region/badchunks/ch.6.9.2016-08-16-16-24-13.dat and regenerating chunk.
Warn [16:24:14] Loading chunk [6, 9] for world world from file r.0.0.mca failed: NBT parsing failed. Offloading old chunk data to file world/region/badchunks/ch.6.9.2016-08-16-16-24-14.dat and regenerating chunk.
Warn [16:24:14] Loading chunk [6, 9] for world world from file r.0.0.mca failed: NBT parsing failed. Offloading old chunk data to file world/region/badchunks/ch.6.9.2016-08-16-16-24-14.dat and regenerating chunk.
Warn [16:24:14] Loading chunk [6, 9] for world world from file r.0.0.mca failed: NBT parsing failed. Offloading old chunk data to file world/region/badchunks/ch.6.9.2016-08-16-16-24-14.dat and regenerating chunk.
Warn [16:24:14] Loading chunk [6, 9] for world world from file r.0.0.mca failed: NBT parsing failed. Offloading old chunk data to file world/region/badchunks/ch.6.9.2016-08-16-16-24-14.dat and regenerating chunk.
Warn [16:24:14] Loading chunk [6, 9] for world world from file r.0.0.mca failed: NBT parsing failed. Offloading old chunk data to file world/region/badchunks/ch.6.9.2016-08-16-16-24-14.dat and regenerating chunk.
Warn [16:24:14] Loading chunk [6, 9] for world world from file r.0.0.mca failed: NBT parsing failed. Offloading old chunk data to file world/region/badchunks/ch.6.9.2016-08-16-16-24-14.dat and regenerating chunk.
Warn [16:24:14] Loading chunk [6, 9] for world world from file r.0.0.mca failed: NBT parsing failed. Offloading old chunk data to file world/region/badchunks/ch.6.9.2016-08-16-16-24-14.dat and regenerating chunk.
Warn [16:24:14] Loading chunk [6, 9] for world world from file r.0.0.mca failed: NBT parsing failed. Offloading old chunk data to file world/region/badchunks/ch.6.9.2016-08-16-16-24-14.dat and regenerating chunk.
Warn [16:24:14] Loading chunk [6, 9] for world world from file r.0.0.mca failed: NBT parsing failed. Offloading old chunk data to file world/region/badchunks/ch.6.9.2016-08-16-16-24-14.dat and regenerating chunk.
Warn [16:24:14] Loading chunk [6, 9] for world world from file r.0.0.mca failed: NBT parsing failed. Offloading old chunk data to file world/region/badchunks/ch.6.9.2016-08-16-16-24-14.dat and regenerating chunk.
Warn [16:24:15] Loading chunk [6, 9] for world world from file r.0.0.mca failed: NBT parsing failed. Offloading old chunk data to file world/region/badchunks/ch.6.9.2016-08-16-16-24-15.dat and regenerating chunk.
Warn [16:24:15] Loading chunk [6, 9] for world world from file r.0.0.mca failed: NBT parsing failed. Offloading old chunk data to file world/region/badchunks/ch.6.9.2016-08-16-16-24-15.dat and regenerating chunk.
Warn [16:24:15] Loading chunk [6, 9] for world world from file r.0.0.mca failed: NBT parsing failed. Offloading old chunk data to file world/region/badchunks/ch.6.9.2016-08-16-16-24-15.dat and regenerating chunk.
Warn [16:24:15] Loading chunk [6, 9] for world world from file r.0.0.mca failed: NBT parsing failed. Offloading old chunk data to file world/region/badchunks/ch.6.9.2016-08-16-16-24-15.dat and regenerating chunk.
Warn [16:24:15] Loading chunk [6, 9] for world world from file r.0.0.mca failed: NBT parsing failed. Offloading old chunk data to file world/region/badchunks/ch.6.9.2016-08-16-16-24-15.dat and regenerating chunk.
Warn [16:24:15] Loading chunk [6, 9] for world world from file r.0.0.mca failed: NBT parsing failed. Offloading old chunk data to file world/region/badchunks/ch.6.9.2016-08-16-16-24-15.dat and regenerating chunk.
Warn [16:24:15] Loading chunk [6, 9] for world world from file r.0.0.mca failed: NBT parsing failed. Offloading old chunk data to file world/region/badchunks/ch.6.9.2016-08-16-16-24-15.dat and regenerating chunk.
Warn [16:24:15] Loading chunk [6, 9] for world world from file r.0.0.mca failed: NBT parsing failed. Offloading old chunk data to file world/region/badchunks/ch.6.9.2016-08-16-16-24-15.dat and regenerating chunk.
Warn [16:24:15] Loading chunk [6, 9] for world world from file r.0.0.mca failed: NBT parsing failed. Offloading old chunk data to file world/region/badchunks/ch.6.9.2016-08-16-16-24-15.dat and regenerating chunk.
Warn [16:24:15] Loading chunk [6, 9] for world world from file r.0.0.mca failed: NBT parsing failed. Offloading old chunk data to file world/region/badchunks/ch.6.9.2016-08-16-16-24-15.dat and regenerating chunk.
Warn [16:24:16] Loading chunk [6, 9] for world world from file r.0.0.mca failed: NBT parsing failed. Offloading old chunk data to file world/region/badchunks/ch.6.9.2016-08-16-16-24-16.dat and regenerating chunk.
Warn [16:24:16] Loading chunk [6, 9] for world world from file r.0.0.mca failed: NBT parsing failed. Offloading old chunk data to file world/region/badchunks/ch.6.9.2016-08-16-16-24-16.dat and regenerating chunk.
Warn [16:24:16] Loading chunk [6, 9] for world world from file r.0.0.mca failed: NBT parsing failed. Offloading old chunk data to file world/region/badchunks/ch.6.9.2016-08-16-16-24-16.dat and regenerating chunk.
Warn [16:24:16] Loading chunk [6, 9] for world world from file r.0.0.mca failed: NBT parsing failed. Offloading old chunk data to file world/region/badchunks/ch.6.9.2016-08-16-16-24-16.dat and regenerating chunk.
Warn [16:24:16] Loading chunk [6, 9] for world world from file r.0.0.mca failed: NBT parsing failed. Offloading old chunk data to file world/region/badchunks/ch.6.9.2016-08-16-16-24-16.dat and regenerating chunk.
Warn [16:24:16] Loading chunk [6, 9] for world world from file r.0.0.mca failed: NBT parsing failed. Offloading old chunk data to file world/region/badchunks/ch.6.9.2016-08-16-16-24-16.dat and regenerating chunk.
Warn [16:24:16] Loading chunk [6, 9] for world world from file r.0.0.mca failed: NBT parsing failed. Offloading old chunk data to file world/region/badchunks/ch.6.9.2016-08-16-16-24-16.dat and regenerating chunk.
Warn [16:24:16] Loading chunk [6, 9] for world world from file r.0.0.mca failed: NBT parsing failed. Offloading old chunk data to file world/region/badchunks/ch.6.9.2016-08-16-16-24-16.dat and regenerating chunk.
Warn [16:24:16] Loading chunk [6, 9] for world world from file r.0.0.mca failed: NBT parsing failed. Offloading old chunk data to file world/region/badchunks/ch.6.9.2016-08-16-16-24-16.dat and regenerating chunk.
Warn [16:24:17] Loading chunk [6, 9] for world world from file r.0.0.mca failed: NBT parsing failed. Offloading old chunk data to file world/region/badchunks/ch.6.9.2016-08-16-16-24-17.dat and regenerating chunk.
Warn [16:24:17] Loading chunk [6, 9] for world world from file r.0.0.mca failed: NBT parsing failed. Offloading old chunk data to file world/region/badchunks/ch.6.9.2016-08-16-16-24-17.dat and regenerating chunk.
Warn [16:24:17] Loading chunk [6, 9] for world world from file r.0.0.mca failed: NBT parsing failed. Offloading old chunk data to file world/region/badchunks/ch.6.9.2016-08-16-16-24-17.dat and regenerating chunk.
Warn [16:24:17] Loading chunk [6, 9] for world world from file r.0.0.mca failed: NBT parsing failed. Offloading old chunk data to file world/region/badchunks/ch.6.9.2016-08-16-16-24-17.dat and regenerating chunk.
Warn [16:24:17] Loading chunk [6, 9] for world world from file r.0.0.mca failed: NBT parsing failed. Offloading old chunk data to file world/region/badchunks/ch.6.9.2016-08-16-16-24-17.dat and regenerating chunk.
Warn [16:24:17] Loading chunk [6, 9] for world world from file r.0.0.mca failed: NBT parsing failed. Offloading old chunk data to file world/region/badchunks/ch.6.9.2016-08-16-16-24-17.dat and regenerating chunk.
Warn [16:24:17] Loading chunk [6, 9] for world world from file r.0.0.mca failed: NBT parsing failed. Offloading old chunk data to file world/region/badchunks/ch.6.9.2016-08-16-16-24-17.dat and regenerating chunk.
Warn [16:24:17] Loading chunk [6, 9] for world world from file r.0.0.mca failed: NBT parsing failed. Offloading old chunk data to file world/region/badchunks/ch.6.9.2016-08-16-16-24-17.dat and regenerating chunk.
Warn [16:24:17] Loading chunk [6, 9] for world world from file r.0.0.mca failed: NBT parsing failed. Offloading old chunk data to file world/region/badchunks/ch.6.9.2016-08-16-16-24-17.dat and regenerating chunk.
Warn [16:24:17] Loading chunk [6, 9] for world world from file r.0.0.mca failed: NBT parsing failed. Offloading old chunk data to file world/region/badchunks/ch.6.9.2016-08-16-16-24-17.dat and regenerating chunk.
Warn [16:24:18] Loading chunk [6, 9] for world world from file r.0.0.mca failed: NBT parsing failed. Offloading old chunk data to file world/region/badchunks/ch.6.9.2016-08-16-16-24-18.dat and regenerating chunk.
Warn [16:24:18] Loading chunk [6, 9] for world world from file r.0.0.mca failed: NBT parsing failed. Offloading old chunk data to file world/region/badchunks/ch.6.9.2016-08-16-16-24-18.dat and regenerating chunk.
Warn [16:24:18] Loading chunk [6, 9] for world world from file r.0.0.mca failed: NBT parsing failed. Offloading old chunk data to file world/region/badchunks/ch.6.9.2016-08-16-16-24-18.dat and regenerating chunk.
Warn [16:24:18] Loading chunk [6, 9] for world world from file r.0.0.mca failed: NBT parsing failed. Offloading old chunk data to file world/region/badchunks/ch.6.9.2016-08-16-16-24-18.dat and regenerating chunk.
Warn [16:24:18] Loading chunk [6, 9] for world world from file r.0.0.mca failed: NBT parsing failed. Offloading old chunk data to file world/region/badchunks/ch.6.9.2016-08-16-16-24-18.dat and regenerating chunk.
Warn [16:24:18] Loading chunk [6, 9] for world world from file r.0.0.mca failed: NBT parsing failed. Offloading old chunk data to file world/region/badchunks/ch.6.9.2016-08-16-16-24-18.dat and regenerating chunk.
Warn [16:24:18] Loading chunk [6, 9] for world world from file r.0.0.mca failed: NBT parsing failed. Offloading old chunk data to file world/region/badchunks/ch.6.9.2016-08-16-16-24-18.dat and regenerating chunk.
Warn [16:24:18] Loading chunk [6, 9] for world world from file r.0.0.mca failed: NBT parsing failed. Offloading old chunk data to file world/region/badchunks/ch.6.9.2016-08-16-16-24-18.dat and regenerating chunk.
Warn [16:24:18] Loading chunk [6, 9] for world world from file r.0.0.mca failed: NBT parsing failed. Offloading old chunk data to file world/region/badchunks/ch.6.9.2016-08-16-16-24-18.dat and regenerating chunk.
Warn [16:24:18] Loading chunk [6, 9] for world world from file r.0.0.mca failed: NBT parsing failed. Offloading old chunk data to file world/region/badchunks/ch.6.9.2016-08-16-16-24-18.dat and regenerating chunk.
Warn [16:24:19] Loading chunk [6, 9] for world world from file r.0.0.mca failed: NBT parsing failed. Offloading old chunk data to file world/region/badchunks/ch.6.9.2016-08-16-16-24-19.dat and regenerating chunk.
Warn [16:24:19] Loading chunk [6, 9] for world world from file r.0.0.mca failed: NBT parsing failed. Offloading old chunk data to file world/region/badchunks/ch.6.9.2016-08-16-16-24-19.dat and regenerating chunk.
Warn [16:24:19] Loading chunk [6, 9] for world world from file r.0.0.mca failed: NBT parsing failed. Offloading old chunk data to file world/region/badchunks/ch.6.9.2016-08-16-16-24-19.dat and regenerating chunk.
Warn [16:24:19] Loading chunk [6, 9] for world world from file r.0.0.mca failed: NBT parsing failed. Offloading old chunk data to file world/region/badchunks/ch.6.9.2016-08-16-16-24-19.dat and regenerating chunk.
Warn [16:24:19] Loading chunk [6, 9] for world world from file r.0.0.mca failed: NBT parsing failed. Offloading old chunk data to file world/region/badchunks/ch.6.9.2016-08-16-16-24-19.dat and regenerating chunk.
Warn [16:24:19] Loading chunk [6, 9] for world world from file r.0.0.mca failed: NBT parsing failed. Offloading old chunk data to file world/region/badchunks/ch.6.9.2016-08-16-16-24-19.dat and regenerating chunk.
Warn [16:24:19] Loading chunk [6, 9] for world world from file r.0.0.mca failed: NBT parsing failed. Offloading old chunk data to file world/region/badchunks/ch.6.9.2016-08-16-16-24-19.dat and regenerating chunk.
Warn [16:24:19] Loading chunk [6, 9] for world world from file r.0.0.mca failed: NBT parsing failed. Offloading old chunk data to file world/region/badchunks/ch.6.9.2016-08-16-16-24-19.dat and regenerating chunk.
Warn [16:24:19] Loading chunk [6, 9] for world world from file r.0.0.mca failed: NBT parsing failed. Offloading old chunk data to file world/region/badchunks/ch.6.9.2016-08-16-16-24-19.dat and regenerating chunk.
Warn [16:24:19] Loading chunk [6, 9] for world world from file r.0.0.mca failed: NBT parsing failed. Offloading old chunk data to file world/region/badchunks/ch.6.9.2016-08-16-16-24-19.dat and regenerating chunk.
Warn [16:24:20] Loading chunk [6, 9] for world world from file r.0.0.mca failed: NBT parsing failed. Offloading old chunk data to file world/region/badchunks/ch.6.9.2016-08-16-16-24-20.dat and regenerating chunk.
Warn [16:24:20] Loading chunk [6, 9] for world world from file r.0.0.mca failed: NBT parsing failed. Offloading old chunk data to file world/region/badchunks/ch.6.9.2016-08-16-16-24-20.dat and regenerating chunk.
Warn [16:24:20] Loading chunk [6, 9] for world world from file r.0.0.mca failed: NBT parsing failed. Offloading old chunk data to file world/region/badchunks/ch.6.9.2016-08-16-16-24-20.dat and regenerating chunk.
Warn [16:24:20] Loading chunk [6, 9] for world world from file r.0.0.mca failed: NBT parsing failed. Offloading old chunk data to file world/region/badchunks/ch.6.9.2016-08-16-16-24-20.dat and regenerating chunk.
Warn [16:24:20] Loading chunk [6, 9] for world world from file r.0.0.mca failed: NBT parsing failed. Offloading old chunk data to file world/region/badchunks/ch.6.9.2016-08-16-16-24-20.dat and regenerating chunk.
Warn [16:24:20] Loading chunk [6, 9] for world world from file r.0.0.mca failed: NBT parsing failed. Offloading old chunk data to file world/region/badchunks/ch.6.9.2016-08-16-16-24-20.dat and regenerating chunk.
Warn [16:24:20] Loading chunk [6, 9] for world world from file r.0.0.mca failed: NBT parsing failed. Offloading old chunk data to file world/region/badchunks/ch.6.9.2016-08-16-16-24-20.dat and regenerating chunk.
Warn [16:24:20] Loading chunk [6, 9] for world world from file r.0.0.mca failed: NBT parsing failed. Offloading old chunk data to file world/region/badchunks/ch.6.9.2016-08-16-16-24-20.dat and regenerating chunk.
Warn [16:24:20] Loading chunk [6, 9] for world world from file r.0.0.mca failed: NBT parsing failed. Offloading old chunk data to file world/region/badchunks/ch.6.9.2016-08-16-16-24-20.dat and regenerating chunk.
Warn [16:24:20] Loading chunk [6, 9] for world world from file r.0.0.mca failed: NBT parsing failed. Offloading old chunk data to file world/region/badchunks/ch.6.9.2016-08-16-16-24-20.dat and regenerating chunk.
Warn [16:24:21] Loading chunk [6, 9] for world world from file r.0.0.mca failed: NBT parsing failed. Offloading old chunk data to file world/region/badchunks/ch.6.9.2016-08-16-16-24-21.dat and regenerating chunk.
Warn [16:24:21] Loading chunk [6, 9] for world world from file r.0.0.mca failed: NBT parsing failed. Offloading old chunk data to file world/region/badchunks/ch.6.9.2016-08-16-16-24-21.dat and regenerating chunk.
Warn [16:24:21] Loading chunk [6, 9] for world world from file r.0.0.mca failed: NBT parsing failed. Offloading old chunk data to file world/region/badchunks/ch.6.9.2016-08-16-16-24-21.dat and regenerating chunk.
Warn [16:24:21] Loading chunk [6, 9] for world world from file r.0.0.mca failed: NBT parsing failed. Offloading old chunk data to file world/region/badchunks/ch.6.9.2016-08-16-16-24-21.dat and regenerating chunk.
Warn [16:24:21] Loading chunk [6, 9] for world world from file r.0.0.mca failed: NBT parsing failed. Offloading old chunk data to file world/region/badchunks/ch.6.9.2016-08-16-16-24-21.dat and regenerating chunk.
Warn [16:24:21] Loading chunk [6, 9] for world world from file r.0.0.mca failed: NBT parsing failed. Offloading old chunk data to file world/region/badchunks/ch.6.9.2016-08-16-16-24-21.dat and regenerating chunk.
Warn [16:24:21] Loading chunk [6, 9] for world world from file r.0.0.mca failed: NBT parsing failed. Offloading old chunk data to file world/region/badchunks/ch.6.9.2016-08-16-16-24-21.dat and regenerating chunk.
Warn [16:24:21] Loading chunk [6, 9] for world world from file r.0.0.mca failed: NBT parsing failed. Offloading old chunk data to file world/region/badchunks/ch.6.9.2016-08-16-16-24-21.dat and regenerating chunk.
Warn [16:24:21] Loading chunk [6, 9] for world world from file r.0.0.mca failed: NBT parsing failed. Offloading old chunk data to file world/region/badchunks/ch.6.9.2016-08-16-16-24-21.dat and regenerating chunk.
Warn [16:24:21] Loading chunk [6, 9] for world world from file r.0.0.mca failed: NBT parsing failed. Offloading old chunk data to file world/region/badchunks/ch.6.9.2016-08-16-16-24-21.dat and regenerating chunk.
Warn [16:24:22] Loading chunk [6, 9] for world world from file r.0.0.mca failed: NBT parsing failed. Offloading old chunk data to file world/region/badchunks/ch.6.9.2016-08-16-16-24-22.dat and regenerating chunk.
Warn [16:24:22] Loading chunk [6, 9] for world world from file r.0.0.mca failed: NBT parsing failed. Offloading old chunk data to file world/region/badchunks/ch.6.9.2016-08-16-16-24-22.dat and regenerating chunk.
Warn [16:24:22] Loading chunk [6, 9] for world world from file r.0.0.mca failed: NBT parsing failed. Offloading old chunk data to file world/region/badchunks/ch.6.9.2016-08-16-16-24-22.dat and regenerating chunk.
Warn [16:24:22] Loading chunk [6, 9] for world world from file r.0.0.mca failed: NBT parsing failed. Offloading old chunk data to file world/region/badchunks/ch.6.9.2016-08-16-16-24-22.dat and regenerating chunk.
Warn [16:24:22] Loading chunk [6, 9] for world world from file r.0.0.mca failed: NBT parsing failed. Offloading old chunk data to file world/region/badchunks/ch.6.9.2016-08-16-16-24-22.dat and regenerating chunk.
Warn [16:24:22] Loading chunk [6, 9] for world world from file r.0.0.mca failed: NBT parsing failed. Offloading old chunk data to file world/region/badchunks/ch.6.9.2016-08-16-16-24-22.dat and regenerating chunk.
Warn [16:24:22] Loading chunk [6, 9] for world world from file r.0.0.mca failed: NBT parsing failed. Offloading old chunk data to file world/region/badchunks/ch.6.9.2016-08-16-16-24-22.dat and regenerating chunk.
Warn [16:24:22] Loading chunk [6, 9] for world world from file r.0.0.mca failed: NBT parsing failed. Offloading old chunk data to file world/region/badchunks/ch.6.9.2016-08-16-16-24-22.dat and regenerating chunk.
Warn [16:24:22] Loading chunk [6, 9] for world world from file r.0.0.mca failed: NBT parsing failed. Offloading old chunk data to file world/region/badchunks/ch.6.9.2016-08-16-16-24-22.dat and regenerating chunk.
Warn [16:24:22] Loading chunk [6, 9] for world world from file r.0.0.mca failed: NBT parsing failed. Offloading old chunk data to file world/region/badchunks/ch.6.9.2016-08-16-16-24-22.dat and regenerating chunk.
Warn [16:24:23] Loading chunk [6, 9] for world world from file r.0.0.mca failed: NBT parsing failed. Offloading old chunk data to file world/region/badchunks/ch.6.9.2016-08-16-16-24-23.dat and regenerating chunk.
Warn [16:24:23] Loading chunk [6, 9] for world world from file r.0.0.mca failed: NBT parsing failed. Offloading old chunk data to file world/region/badchunks/ch.6.9.2016-08-16-16-24-23.dat and regenerating chunk.
Warn [16:24:23] Loading chunk [6, 9] for world world from file r.0.0.mca failed: NBT parsing failed. Offloading old chunk data to file world/region/badchunks/ch.6.9.2016-08-16-16-24-23.dat and regenerating chunk.
Warn [16:24:23] Loading chunk [6, 9] for world world from file r.0.0.mca failed: NBT parsing failed. Offloading old chunk data to file world/region/badchunks/ch.6.9.2016-08-16-16-24-23.dat and regenerating chunk.
Warn [16:24:23] Loading chunk [6, 9] for world world from file r.0.0.mca failed: NBT parsing failed. Offloading old chunk data to file world/region/badchunks/ch.6.9.2016-08-16-16-24-23.dat and regenerating chunk.
Warn [16:24:23] Loading chunk [6, 9] for world world from file r.0.0.mca failed: NBT parsing failed. Offloading old chunk data to file world/region/badchunks/ch.6.9.2016-08-16-16-24-23.dat and regenerating chunk.
Warn [16:24:23] Loading chunk [6, 9] for world world from file r.0.0.mca failed: NBT parsing failed. Offloading old chunk data to file world/region/badchunks/ch.6.9.2016-08-16-16-24-23.dat and regenerating chunk.
Warn [16:24:23] Loading chunk [6, 9] for world world from file r.0.0.mca failed: NBT parsing failed. Offloading old chunk data to file world/region/badchunks/ch.6.9.2016-08-16-16-24-23.dat and regenerating chunk.
Warn [16:24:23] Loading chunk [6, 9] for world world from file r.0.0.mca failed: NBT parsing failed. Offloading old chunk data to file world/region/badchunks/ch.6.9.2016-08-16-16-24-23.dat and regenerating chunk.
Warn [16:24:24] Loading chunk [6, 9] for world world from file r.0.0.mca failed: NBT parsing failed. Offloading old chunk data to file world/region/badchunks/ch.6.9.2016-08-16-16-24-24.dat and regenerating chunk.
Warn [16:24:24] Loading chunk [6, 9] for world world from file r.0.0.mca failed: NBT parsing failed. Offloading old chunk data to file world/region/badchunks/ch.6.9.2016-08-16-16-24-24.dat and regenerating chunk.
Warn [16:24:24] Loading chunk [6, 9] for world world from file r.0.0.mca failed: NBT parsing failed. Offloading old chunk data to file world/region/badchunks/ch.6.9.2016-08-16-16-24-24.dat and regenerating chunk.
Warn [16:24:24] Loading chunk [6, 9] for world world from file r.0.0.mca failed: NBT parsing failed. Offloading old chunk data to file world/region/badchunks/ch.6.9.2016-08-16-16-24-24.dat and regenerating chunk.
Warn [16:24:24] Loading chunk [6, 9] for world world from file r.0.0.mca failed: NBT parsing failed. Offloading old chunk data to file world/region/badchunks/ch.6.9.2016-08-16-16-24-24.dat and regenerating chunk.
Warn [16:24:24] Loading chunk [6, 9] for world world from file r.0.0.mca failed: NBT parsing failed. Offloading old chunk data to file world/region/badchunks/ch.6.9.2016-08-16-16-24-24.dat and regenerating chunk.
Warn [16:24:24] Loading chunk [6, 9] for world world from file r.0.0.mca failed: NBT parsing failed. Offloading old chunk data to file world/region/badchunks/ch.6.9.2016-08-16-16-24-24.dat and regenerating chunk.
Warn [16:24:24] Loading chunk [6, 9] for world world from file r.0.0.mca failed: NBT parsing failed. Offloading old chunk data to file world/region/badchunks/ch.6.9.2016-08-16-16-24-24.dat and regenerating chunk.
Warn [16:24:24] Loading chunk [6, 9] for world world from file r.0.0.mca failed: NBT parsing failed. Offloading old chunk data to file world/region/badchunks/ch.6.9.2016-08-16-16-24-24.dat and regenerating chunk.
Warn [16:24:24] Loading chunk [6, 9] for world world from file r.0.0.mca failed: NBT parsing failed. Offloading old chunk data to file world/region/badchunks/ch.6.9.2016-08-16-16-24-24.dat and regenerating chunk.
Warn [16:24:25] Loading chunk [6, 9] for world world from file r.0.0.mca failed: NBT parsing failed. Offloading old chunk data to file world/region/badchunks/ch.6.9.2016-08-16-16-24-25.dat and regenerating chunk.
Warn [16:24:25] Loading chunk [6, 9] for world world from file r.0.0.mca failed: NBT parsing failed. Offloading old chunk data to file world/region/badchunks/ch.6.9.2016-08-16-16-24-25.dat and regenerating chunk.
Warn [16:24:25] Loading chunk [6, 9] for world world from file r.0.0.mca failed: NBT parsing failed. Offloading old chunk data to file world/region/badchunks/ch.6.9.2016-08-16-16-24-25.dat and regenerating chunk.
Warn [16:24:25] Loading chunk [6, 9] for world world from file r.0.0.mca failed: NBT parsing failed. Offloading old chunk data to file world/region/badchunks/ch.6.9.2016-08-16-16-24-25.dat and regenerating chunk.
Warn [16:24:25] Loading chunk [6, 9] for world world from file r.0.0.mca failed: NBT parsing failed. Offloading old chunk data to file world/region/badchunks/ch.6.9.2016-08-16-16-24-25.dat and regenerating chunk.
Warn [16:24:25] Loading chunk [6, 9] for world world from file r.0.0.mca failed: NBT parsing failed. Offloading old chunk data to file world/region/badchunks/ch.6.9.2016-08-16-16-24-25.dat and regenerating chunk.
Warn [16:24:25] Loading chunk [6, 9] for world world from file r.0.0.mca failed: NBT parsing failed. Offloading old chunk data to file world/region/badchunks/ch.6.9.2016-08-16-16-24-25.dat and regenerating chunk.
Warn [16:24:25] Loading chunk [6, 9] for world world from file r.0.0.mca failed: NBT parsing failed. Offloading old chunk data to file world/region/badchunks/ch.6.9.2016-08-16-16-24-25.dat and regenerating chunk.
Warn [16:24:25] Loading chunk [6, 9] for world world from file r.0.0.mca failed: NBT parsing failed. Offloading old chunk data to file world/region/badchunks/ch.6.9.2016-08-16-16-24-25.dat and regenerating chunk.
Warn [16:24:25] Loading chunk [6, 9] for world world from file r.0.0.mca failed: NBT parsing failed. Offloading old chunk data to file world/region/badchunks/ch.6.9.2016-08-16-16-24-25.dat and regenerating chunk.
Warn [16:24:26] Loading chunk [6, 9] for world world from file r.0.0.mca failed: NBT parsing failed. Offloading old chunk data to file world/region/badchunks/ch.6.9.2016-08-16-16-24-26.dat and regenerating chunk.
Warn [16:24:26] Loading chunk [6, 9] for world world from file r.0.0.mca failed: NBT parsing failed. Offloading old chunk data to file world/region/badchunks/ch.6.9.2016-08-16-16-24-26.dat and regenerating chunk.
Warn [16:24:26] Loading chunk [6, 9] for world world from file r.0.0.mca failed: NBT parsing failed. Offloading old chunk data to file world/region/badchunks/ch.6.9.2016-08-16-16-24-26.dat and regenerating chunk.
Warn [16:24:26] Loading chunk [6, 9] for world world from file r.0.0.mca failed: NBT parsing failed. Offloading old chunk data to file world/region/badchunks/ch.6.9.2016-08-16-16-24-26.dat and regenerating chunk.
Warn [16:24:26] Loading chunk [6, 9] for world world from file r.0.0.mca failed: NBT parsing failed. Offloading old chunk data to file world/region/badchunks/ch.6.9.2016-08-16-16-24-26.dat and regenerating chunk.
Warn [16:24:26] Loading chunk [6, 9] for world world from file r.0.0.mca failed: NBT parsing failed. Offloading old chunk data to file world/region/badchunks/ch.6.9.2016-08-16-16-24-26.dat and regenerating chunk.
Warn [16:24:26] Loading chunk [6, 9] for world world from file r.0.0.mca failed: NBT parsing failed. Offloading old chunk data to file world/region/badchunks/ch.6.9.2016-08-16-16-24-26.dat and regenerating chunk.
Warn [16:24:26] Loading chunk [6, 9] for world world from file r.0.0.mca failed: NBT parsing failed. Offloading old chunk data to file world/region/badchunks/ch.6.9.2016-08-16-16-24-26.dat and regenerating chunk.
Warn [16:24:26] Loading chunk [6, 9] for world world from file r.0.0.mca failed: NBT parsing failed. Offloading old chunk data to file world/region/badchunks/ch.6.9.2016-08-16-16-24-26.dat and regenerating chunk.
Warn [16:24:26] Loading chunk [6, 9] for world world from file r.0.0.mca failed: NBT parsing failed. Offloading old chunk data to file world/region/badchunks/ch.6.9.2016-08-16-16-24-26.dat and regenerating chunk.
Warn [16:24:27] Loading chunk [6, 9] for world world from file r.0.0.mca failed: NBT parsing failed. Offloading old chunk data to file world/region/badchunks/ch.6.9.2016-08-16-16-24-27.dat and regenerating chunk.
Warn [16:24:27] Loading chunk [6, 9] for world world from file r.0.0.mca failed: NBT parsing failed. Offloading old chunk data to file world/region/badchunks/ch.6.9.2016-08-16-16-24-27.dat and regenerating chunk.
Warn [16:24:27] Loading chunk [6, 9] for world world from file r.0.0.mca failed: NBT parsing failed. Offloading old chunk data to file world/region/badchunks/ch.6.9.2016-08-16-16-24-27.dat and regenerating chunk.
Warn [16:24:27] Loading chunk [6, 9] for world world from file r.0.0.mca failed: NBT parsing failed. Offloading old chunk data to file world/region/badchunks/ch.6.9.2016-08-16-16-24-27.dat and regenerating chunk.
Warn [16:24:27] Loading chunk [6, 9] for world world from file r.0.0.mca failed: NBT parsing failed. Offloading old chunk data to file world/region/badchunks/ch.6.9.2016-08-16-16-24-27.dat and regenerating chunk.
Warn [16:24:27] Loading chunk [6, 9] for world world from file r.0.0.mca failed: NBT parsing failed. Offloading old chunk data to file world/region/badchunks/ch.6.9.2016-08-16-16-24-27.dat and regenerating chunk.
Warn [16:24:27] Loading chunk [6, 9] for world world from file r.0.0.mca failed: NBT parsing failed. Offloading old chunk data to file world/region/badchunks/ch.6.9.2016-08-16-16-24-27.dat and regenerating chunk.
Warn [16:24:27] Loading chunk [6, 9] for world world from file r.0.0.mca failed: NBT parsing failed. Offloading old chunk data to file world/region/badchunks/ch.6.9.2016-08-16-16-24-27.dat and regenerating chunk.
Warn [16:24:27] Loading chunk [6, 9] for world world from file r.0.0.mca failed: NBT parsing failed. Offloading old chunk data to file world/region/badchunks/ch.6.9.2016-08-16-16-24-27.dat and regenerating chunk.
Warn [16:24:27] Loading chunk [6, 9] for world world from file r.0.0.mca failed: NBT parsing failed. Offloading old chunk data to file world/region/badchunks/ch.6.9.2016-08-16-16-24-27.dat and regenerating chunk.
Warn [16:24:28] Loading chunk [6, 9] for world world from file r.0.0.mca failed: NBT parsing failed. Offloading old chunk data to file world/region/badchunks/ch.6.9.2016-08-16-16-24-28.dat and regenerating chunk.
Warn [16:24:28] Loading chunk [6, 9] for world world from file r.0.0.mca failed: NBT parsing failed. Offloading old chunk data to file world/region/badchunks/ch.6.9.2016-08-16-16-24-28.dat and regenerating chunk.
Warn [16:24:28] Loading chunk [6, 9] for world world from file r.0.0.mca failed: NBT parsing failed. Offloading old chunk data to file world/region/badchunks/ch.6.9.2016-08-16-16-24-28.dat and regenerating chunk.
Warn [16:24:28] Loading chunk [6, 9] for world world from file r.0.0.mca failed: NBT parsing failed. Offloading old chunk data to file world/region/badchunks/ch.6.9.2016-08-16-16-24-28.dat and regenerating chunk.
Warn [16:24:28] Loading chunk [6, 9] for world world from file r.0.0.mca failed: NBT parsing failed. Offloading old chunk data to file world/region/badchunks/ch.6.9.2016-08-16-16-24-28.dat and regenerating chunk.
Warn [16:24:28] Loading chunk [6, 9] for world world from file r.0.0.mca failed: NBT parsing failed. Offloading old chunk data to file world/region/badchunks/ch.6.9.2016-08-16-16-24-28.dat and regenerating chunk.
Warn [16:24:28] Loading chunk [6, 9] for world world from file r.0.0.mca failed: NBT parsing failed. Offloading old chunk data to file world/region/badchunks/ch.6.9.2016-08-16-16-24-28.dat and regenerating chunk.
Warn [16:24:28] Loading chunk [6, 9] for world world from file r.0.0.mca failed: NBT parsing failed. Offloading old chunk data to file world/region/badchunks/ch.6.9.2016-08-16-16-24-28.dat and regenerating chunk.
Warn [16:24:28] Loading chunk [6, 9] for world world from file r.0.0.mca failed: NBT parsing failed. Offloading old chunk data to file world/region/badchunks/ch.6.9.2016-08-16-16-24-28.dat and regenerating chunk.
Warn [16:24:28] Loading chunk [6, 9] for world world from file r.0.0.mca failed: NBT parsing failed. Offloading old chunk data to file world/region/badchunks/ch.6.9.2016-08-16-16-24-28.dat and regenerating chunk.
Warn [16:24:29] Loading chunk [6, 9] for world world from file r.0.0.mca failed: NBT parsing failed. Offloading old chunk data to file world/region/badchunks/ch.6.9.2016-08-16-16-24-29.dat and regenerating chunk.
Warn [16:24:29] Loading chunk [6, 9] for world world from file r.0.0.mca failed: NBT parsing failed. Offloading old chunk data to file world/region/badchunks/ch.6.9.2016-08-16-16-24-29.dat and regenerating chunk.
Warn [16:24:29] Loading chunk [6, 9] for world world from file r.0.0.mca failed: NBT parsing failed. Offloading old chunk data to file world/region/badchunks/ch.6.9.2016-08-16-16-24-29.dat and regenerating chunk.
Warn [16:24:29] Loading chunk [6, 9] for world world from file r.0.0.mca failed: NBT parsing failed. Offloading old chunk data to file world/region/badchunks/ch.6.9.2016-08-16-16-24-29.dat and regenerating chunk.
Warn [16:24:29] Loading chunk [6, 9] for world world from file r.0.0.mca failed: NBT parsing failed. Offloading old chunk data to file world/region/badchunks/ch.6.9.2016-08-16-16-24-29.dat and regenerating chunk.
Warn [16:24:29] Loading chunk [6, 9] for world world from file r.0.0.mca failed: NBT parsing failed. Offloading old chunk data to file world/region/badchunks/ch.6.9.2016-08-16-16-24-29.dat and regenerating chunk.
Warn [16:24:29] Loading chunk [6, 9] for world world from file r.0.0.mca failed: NBT parsing failed. Offloading old chunk data to file world/region/badchunks/ch.6.9.2016-08-16-16-24-29.dat and regenerating chunk.
Warn [16:24:29] Loading chunk [6, 9] for world world from file r.0.0.mca failed: NBT parsing failed. Offloading old chunk data to file world/region/badchunks/ch.6.9.2016-08-16-16-24-29.dat and regenerating chunk.
Warn [16:24:29] Loading chunk [6, 9] for world world from file r.0.0.mca failed: NBT parsing failed. Offloading old chunk data to file world/region/badchunks/ch.6.9.2016-08-16-16-24-29.dat and regenerating chunk.
Warn [16:24:29] Loading chunk [6, 9] for world world from file r.0.0.mca failed: NBT parsing failed. Offloading old chunk data to file world/region/badchunks/ch.6.9.2016-08-16-16-24-29.dat and regenerating chunk.
Warn [16:24:30] Loading chunk [6, 9] for world world from file r.0.0.mca failed: NBT parsing failed. Offloading old chunk data to file world/region/badchunks/ch.6.9.2016-08-16-16-24-30.dat and regenerating chunk.
Warn [16:24:30] Loading chunk [6, 9] for world world from file r.0.0.mca failed: NBT parsing failed. Offloading old chunk data to file world/region/badchunks/ch.6.9.2016-08-16-16-24-30.dat and regenerating chunk.
Warn [16:24:30] Loading chunk [6, 9] for world world from file r.0.0.mca failed: NBT parsing failed. Offloading old chunk data to file world/region/badchunks/ch.6.9.2016-08-16-16-24-30.dat and regenerating chunk.
Warn [16:24:30] Loading chunk [6, 9] for world world from file r.0.0.mca failed: NBT parsing failed. Offloading old chunk data to file world/region/badchunks/ch.6.9.2016-08-16-16-24-30.dat and regenerating chunk.
Warn [16:24:30] Loading chunk [6, 9] for world world from file r.0.0.mca failed: NBT parsing failed. Offloading old chunk data to file world/region/badchunks/ch.6.9.2016-08-16-16-24-30.dat and regenerating chunk.
Warn [16:24:30] Loading chunk [6, 9] for world world from file r.0.0.mca failed: NBT parsing failed. Offloading old chunk data to file world/region/badchunks/ch.6.9.2016-08-16-16-24-30.dat and regenerating chunk.
Warn [16:24:30] Loading chunk [6, 9] for world world from file r.0.0.mca failed: NBT parsing failed. Offloading old chunk data to file world/region/badchunks/ch.6.9.2016-08-16-16-24-30.dat and regenerating chunk.
Warn [16:24:30] Loading chunk [6, 9] for world world from file r.0.0.mca failed: NBT parsing failed. Offloading old chunk data to file world/region/badchunks/ch.6.9.2016-08-16-16-24-30.dat and regenerating chunk.
Warn [16:24:30] Loading chunk [6, 9] for world world from file r.0.0.mca failed: NBT parsing failed. Offloading old chunk data to file world/region/badchunks/ch.6.9.2016-08-16-16-24-30.dat and regenerating chunk.

That is a lot, isn't it. And this isn't even half. But interestingly I found only one regenerated spot total. Where is all that?
Reply
Thanks given by:
#6
It's all about one single chunk, [6, 9], which is at X coords 96 - 112 and Y coords 144 - 160
Reply
Thanks given by:
#7
Could you also post the offloaded data file "world/region/badchunks/ch.6.9.2016-08-16-16-24-30.dat"? Or basically anything in the badchunks folder.
Reply
Thanks given by:
#8
Sorry for the delay, yes, will do that after the weekend. Smile
Reply
Thanks given by:
#9
Haven't forgotten, will do that soon, life is a bit of a ride right about now.
Reply
Thanks given by:
#10
I'm wondering if a "Chunk backup management tool" would be useful for server admins. It could shuffle chunks around between a world and several backups of the world, so you could easily swap out the bad chunk for one from the latest backup.

I was thinking about writing such a tool, with a nice Qt-based GUI (so it would be cross-platform), but it always got pushed to background by more pressing things.
Reply
Thanks given by:




Users browsing this thread: 1 Guest(s)