pass seed to noise functions

This commit is contained in:
dfsek
2021-07-19 19:24:54 -07:00
parent 7acfc5e3d0
commit 3bf8fe7901
79 changed files with 299 additions and 382 deletions
@@ -11,7 +11,7 @@ public class NoiseDistributor implements Distributor {
}
@Override
public boolean matches(int x, int z) {
return sampler.getNoise(x, z) > 0;
public boolean matches(int x, int z, long seed) {
return sampler.getNoiseSeeded(seed, x, z) > 0;
}
}