Fix oregen

This commit is contained in:
Jesse Boyd
2018-09-14 07:38:29 +10:00
parent 8ed67f66ad
commit 83464013ba
2 changed files with 5 additions and 5 deletions

View File

@ -266,8 +266,8 @@ public interface Extent extends InputExtent, OutputExtent {
if (random.nextInt(100) > rarity) {
continue;
}
int x = (chunkPos.getBlockX() << 4) + PseudoRandom.random.nextInt(16);
int z = (chunkPos.getBlockZ() << 4) + PseudoRandom.random.nextInt(16);
int x = (chunkPos.getBlockX() << 4) + random.nextInt(16);
int z = (chunkPos.getBlockZ() << 4) + random.nextInt(16);
gen.spawn(random, x, z);
}
}