Update desc for debugpaste

This commit is contained in:
Jesse Boyd
2016-06-19 13:44:14 +10:00
parent 8512adf9d6
commit c2f10a7065
3 changed files with 3 additions and 7 deletions

View File

@ -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);
}
}