mirror of
https://github.com/IntellectualSites/PlotSquared.git
synced 2024-11-22 13:16:45 +01:00
Fix StackOverFlow
This commit is contained in:
parent
4e391136c0
commit
cb596ee6ea
@ -89,7 +89,7 @@ public class LocationOffsetDelegateQueueCoordinator extends DelegateQueueCoordin
|
|||||||
public boolean setBiome(int x, int z, @NonNull BiomeType biome) {
|
public boolean setBiome(int x, int z, @NonNull BiomeType biome) {
|
||||||
boolean result = true;
|
boolean result = true;
|
||||||
for (int y = 0; y < 256; y++) {
|
for (int y = 0; y < 256; y++) {
|
||||||
result &= this.setBiome(x, z, biome);
|
result &= this.setBiome(x, y, z, biome);
|
||||||
}
|
}
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user