mirror of
https://github.com/IntellectualSites/PlotSquared.git
synced 2024-11-22 05:06:44 +01:00
Fix biome stripes (whoops)
This commit is contained in:
parent
91c742c141
commit
3ced832b80
@ -71,8 +71,8 @@ public class GenChunk extends ScopedLocalBlockQueue {
|
||||
return;
|
||||
}
|
||||
Biome biome = Biome.valueOf(biomeName.toUpperCase());
|
||||
for (int x = 0; x <= 15; x++) {
|
||||
for (int z = 0; z < 15; z++) {
|
||||
for (int x = 0; x < 16; x++) {
|
||||
for (int z = 0; z < 16; z++) {
|
||||
this.grid.setBiome(x, z, biome);
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user