mirror of
https://github.com/PolyhedralDev/Terra.git
synced 2025-08-16 16:35:41 +00:00
fix padding
This commit is contained in:
parent
3269f9ec8b
commit
c9d7af5274
@ -46,8 +46,8 @@ public class DensityChunkLayerSampler implements ChunkLayerSampler {
|
|||||||
|
|
||||||
samples = new double[blendExtentYExtent * blendExtent];
|
samples = new double[blendExtentYExtent * blendExtent];
|
||||||
|
|
||||||
int xOrigin = chunkX << 4;
|
int xOrigin = (chunkX << 4) - 1;
|
||||||
int zOrigin = chunkZ << 4;
|
int zOrigin = (chunkZ << 4) - 1;
|
||||||
|
|
||||||
for (int x = 0; x < 18; x += blendDensity) {
|
for (int x = 0; x < 18; x += blendDensity) {
|
||||||
for (int z = 0; z < 18; z += blendDensity) {
|
for (int z = 0; z < 18; z += blendDensity) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user