mirror of
https://github.com/IntellectualSites/PlotSquared.git
synced 2024-11-21 20:56:45 +01:00
fix: fix generation by re-adding important method
This commit is contained in:
parent
77b2bd166a
commit
745b06a008
@ -185,6 +185,35 @@ public class BukkitPlotGenerator extends ChunkGenerator implements GeneratorWrap
|
|||||||
world.setWaterAnimalSpawnLimit(limit);
|
world.setWaterAnimalSpawnLimit(limit);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void generateNoise(
|
||||||
|
@NotNull final WorldInfo worldInfo,
|
||||||
|
@NotNull final Random random,
|
||||||
|
final int chunkX,
|
||||||
|
final int chunkZ,
|
||||||
|
@NotNull final ChunkData chunkData
|
||||||
|
) {
|
||||||
|
if (this.platformGenerator != this) {
|
||||||
|
this.platformGenerator.generateNoise(worldInfo, random, chunkX, chunkZ, chunkData);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
int minY = chunkData.getMinHeight();
|
||||||
|
int maxY = chunkData.getMaxHeight();
|
||||||
|
GenChunk result = new GenChunk(minY, maxY);
|
||||||
|
// Set the chunk location
|
||||||
|
result.setChunk(new ChunkWrapper(worldInfo.getName(), chunkX, chunkZ));
|
||||||
|
// Set the result data
|
||||||
|
result.setChunkData(chunkData);
|
||||||
|
result.result = null;
|
||||||
|
|
||||||
|
// Catch any exceptions (as exceptions usually thrown)
|
||||||
|
try {
|
||||||
|
generate(BlockVector2.at(chunkX, chunkZ), worldInfo.getName(), result, false);
|
||||||
|
} catch (Throwable e) {
|
||||||
|
LOGGER.error("Error attempting to generate chunk.", e);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void generateSurface(
|
public void generateSurface(
|
||||||
@NotNull final WorldInfo worldInfo,
|
@NotNull final WorldInfo worldInfo,
|
||||||
@ -248,6 +277,11 @@ public class BukkitPlotGenerator extends ChunkGenerator implements GeneratorWrap
|
|||||||
return super.getBaseHeight(worldInfo, random, x, z, heightMap);
|
return super.getBaseHeight(worldInfo, random, x, z, heightMap);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The entire method is deprecated, but kept for compatibility with versions lower than or equal to 1.16.2.
|
||||||
|
* The method will be removed in future versions, because WorldEdit and FastAsyncWorldEdit only support the latest point
|
||||||
|
* release.
|
||||||
|
*/
|
||||||
@SuppressWarnings("deprecation") // The entire method is deprecated, but kept for compatibility with <=1.16.2
|
@SuppressWarnings("deprecation") // The entire method is deprecated, but kept for compatibility with <=1.16.2
|
||||||
@Override
|
@Override
|
||||||
@Deprecated(since = "TODO")
|
@Deprecated(since = "TODO")
|
||||||
@ -258,8 +292,8 @@ public class BukkitPlotGenerator extends ChunkGenerator implements GeneratorWrap
|
|||||||
if (this.platformGenerator != this) {
|
if (this.platformGenerator != this) {
|
||||||
return this.platformGenerator.generateChunkData(world, random, x, z, biome);
|
return this.platformGenerator.generateChunkData(world, random, x, z, biome);
|
||||||
} else {
|
} else {
|
||||||
// Return super as it will throw an exception caught by the server that will mean this method is no longer used.
|
// Throw exception to be caught by the server that indicates the new generation API is being used.
|
||||||
return super.generateChunkData(world, random, x, z, biome);
|
throw new UnsupportedOperationException("Using new generation methods. This method is unsupported.");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user