mirror of
https://github.com/IntellectualSites/PlotSquared.git
synced 2025-06-25 02:04:44 +02:00
Update desc for debugpaste
This commit is contained in:
@ -34,8 +34,8 @@ public class GenChunk extends ScopedLocalBlockQueue {
|
||||
return;
|
||||
}
|
||||
BiomeType biome = SpongeUtil.getBiome(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.biome.setBiome(this.bx + x, this.bz + z, biome);
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user