We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9fb57f3 commit 6a6e8a6Copy full SHA for 6a6e8a6
BlueMapCore/src/main/java/de/bluecolored/bluemap/core/mca/MCAWorld.java
@@ -95,7 +95,7 @@ public BlockState getBlockState(Vector3i pos) {
95
96
@Override
97
public MCAChunk getChunkAtBlock(int x, int y, int z) {
98
- return getChunk(new Vector2i(x >> 4, z >> 4));
+ return getChunk(x >> 4, z >> 4);
99
}
100
101
@@ -191,7 +191,7 @@ public void invalidateChunkCache() {
191
192
193
public void invalidateChunkCache(int x, int z) {
194
- chunkCache.invalidate(new Vector2i(x, z));
+ chunkCache.invalidate(vec2i(x, z));
195
196
197
0 commit comments