Skip to content
Snippets Groups Projects
Commit 0d1a2c8e authored by Chris N's avatar Chris N
Browse files

Fix biomes not shifting correctly

Cubes may be symmetrical... but I'm not stressing.
parent 71da7c21
No related branches found
No related tags found
No related merge requests found
......@@ -273,9 +273,9 @@ minetest.register_on_generated(function(minp, maxp, seed)
nixz = nixz + 1
vi = vi + 1
end
nixz = nixz - sidelen
nixz = nixz - sidelen --shift the 2D index back
end
nixz = nixz + sidelen --shift the 2D index up a layer
end
--send data back to voxelmanip
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment