mirror of
https://github.com/PolyhedralDev/Terra.git
synced 2025-07-01 07:26:09 +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];
|
||||
|
||||
int xOrigin = chunkX << 4;
|
||||
int zOrigin = chunkZ << 4;
|
||||
int xOrigin = (chunkX << 4) - 1;
|
||||
int zOrigin = (chunkZ << 4) - 1;
|
||||
|
||||
for (int x = 0; x < 18; x += blendDensity) {
|
||||
for (int z = 0; z < 18; z += blendDensity) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user