mirror of
https://github.com/array-in-a-matrix/brainwine.git
synced 2025-04-02 11:11:58 -04:00
Rename getChunks to getLoadedChunks because accuracy
This commit is contained in:
parent
ca418318ce
commit
ea21a746e4
2 changed files with 3 additions and 3 deletions
|
@ -203,7 +203,7 @@ public class ChunkManager {
|
|||
return chunk;
|
||||
}
|
||||
|
||||
public Collection<Chunk> getChunks() {
|
||||
public Collection<Chunk> getLoadedChunks() {
|
||||
return Collections.unmodifiableCollection(chunks.values());
|
||||
}
|
||||
}
|
||||
|
|
|
@ -730,8 +730,8 @@ public class Zone {
|
|||
return chunkManager.getChunk(index);
|
||||
}
|
||||
|
||||
public Collection<Chunk> getChunks() {
|
||||
return chunkManager.getChunks();
|
||||
public Collection<Chunk> getLoadedChunks() {
|
||||
return chunkManager.getLoadedChunks();
|
||||
}
|
||||
|
||||
public void setSurface(int x, int surface) {
|
||||
|
|
Loading…
Add table
Reference in a new issue