mirror of
https://github.com/plexusorg/Plex-FAWE.git
synced 2025-07-13 14:58:35 +00:00
Fix oregen
This commit is contained in:
@ -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);
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user