We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
If I use negative number in setblock position, chunk error occurs! please fix it. (or my mistake?)
The text was updated successfully, but these errors were encountered:
I could not replicate the bug. Are you running the newest version?
Sorry, something went wrong.
hmm... see this: please see minecraft version.
code: for(int a = -1023; a < 1024; a++){ for(int b = -1023; b < 1024; b++){ world.setBlock(a,10,b... } }
so, minecraft 1.8 below: (red : error)
or my computer's error?
Found the cause of the error in NBTExplorer. normal chunk:
error chunk:
so, I change your code.
Region.java, line 195
chunk = new Chunk(this, chunkX, chunkZ, layers);
-> chunk = new Chunk(this, chunkX + (xPos * 32), chunkZ + (zPos * 32), layers);
No branches or pull requests
If I use negative number in setblock position, chunk error occurs!

please fix it.
(or my mistake?)
The text was updated successfully, but these errors were encountered: