Minor Changes
Removed a pointless check in yCoordHelper and corrected some comments in RiftRegenerator. It turns out that ChunkProviderServer.chunkExists() returns whether a chunk is loaded, not whether it has already been created.
This commit is contained in:
@@ -215,10 +215,7 @@ public class yCoordHelper
|
||||
{
|
||||
for (int dz = -1; dz <= 1; dz++)
|
||||
{
|
||||
if (!provider.chunkExists(chunkX + dx, chunkZ + dz))
|
||||
{
|
||||
provider.loadChunk(chunkX, chunkZ);
|
||||
}
|
||||
provider.loadChunk(chunkX, chunkZ);
|
||||
}
|
||||
}
|
||||
return target;
|
||||
|
||||
@@ -95,8 +95,8 @@ public class RiftRegenerator implements IRegularTickReceiver {
|
||||
return;
|
||||
|
||||
// The chunk at the given location must be loaded.
|
||||
// FIXME: I can't figure out how to check if a chunk is loaded.
|
||||
// Will only check if the chunk exists for now. This isn't a big deal. --SenseiKiwi
|
||||
// Note: ChunkProviderServer.chunkExists() returns whether a chunk is
|
||||
// loaded, not whether it has already been created.
|
||||
if (!world.getChunkProvider().chunkExists(x >> 4, z >> 4))
|
||||
return;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user