reverse NoiseDistributor threshold

This commit is contained in:
dfsek
2021-12-15 19:37:38 -07:00
parent d92a68e3f2
commit 799e1c9bf3

View File

@@ -23,6 +23,6 @@ public class NoiseDistributor implements Distributor {
@Override
public boolean matches(int x, int z, long seed) {
return sampler.noise(seed, x, z) > threshold;
return sampler.noise(seed, x, z) < threshold;
}
}