You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Blocks placed at certain coordinates appear in the wrong place.
For example, all the blocks placed at z=-512 or x=-512 will actually appear at z=-2048 or x=-2048, respectfully.
Tested with J2Blocks v1.1 and Minecraft 1.12.2.
Example to reproduce:
val layers =DefaultLayers()
layers.setLayers(0, 1, Material.BEDROCK)
layers.setLayers(2, 5, Material.GRASS)
val generator =FlatGenerator(layers)
val level =Level("ConsistencyTest", generator)
level.gameType =GameType.CREATIVE
level.setSpawnPoint(-512, 11, -512)
level.mapFeatures =falseval world =World(level, layers)
for (x in-2000..2000) {
for (z in-2000..2000) {
for (y in5..10) {
world.setBlock(x, y, z, StoneBlock.STONE)
}
}
}
world.save()
The text was updated successfully, but these errors were encountered:
Blocks placed at certain coordinates appear in the wrong place.
For example, all the blocks placed at z=-512 or x=-512 will actually appear at z=-2048 or x=-2048, respectfully.
Tested with J2Blocks v1.1 and Minecraft 1.12.2.
Example to reproduce:
The text was updated successfully, but these errors were encountered: