mirror of
https://github.com/TotalFreedomMC/TF-PlotSquared.git
synced 2025-02-11 11:40:41 +00:00
Fix biome stripes (whoops)
This commit is contained in:
parent
91c742c141
commit
3ced832b80
1 changed files with 2 additions and 2 deletions
|
@ -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 a new issue