mirror of
https://github.com/plexusorg/Plex-FAWE.git
synced 2025-07-02 11:26:42 +00:00
Minor changes
This commit is contained in:
@ -72,13 +72,13 @@ public class SingleThreadQueueExtent extends ExtentBatchProcessorHolder implemen
|
||||
}
|
||||
|
||||
@Override
|
||||
public IChunkGet getCachedGet(int x, int z) {
|
||||
return cacheGet.get(x, z);
|
||||
public IChunkGet getCachedGet(int chunkX, int chunkZ) {
|
||||
return cacheGet.get(chunkX, chunkZ);
|
||||
}
|
||||
|
||||
@Override
|
||||
public IChunkSet getCachedSet(int x, int z) {
|
||||
return cacheSet.get(x, z);
|
||||
public IChunkSet getCachedSet(int chunkX, int chunkZ) {
|
||||
return cacheSet.get(chunkX, chunkZ);
|
||||
}
|
||||
|
||||
/**
|
||||
|
Reference in New Issue
Block a user