mirror of
https://github.com/VolmitSoftware/Iris.git
synced 2025-07-19 18:55:18 +00:00
Hmmm
This commit is contained in:
parent
a1d6431348
commit
ddd29529ea
@ -47,6 +47,7 @@ public abstract class CeilingChunkGenerator extends PostBlockChunkGenerator
|
|||||||
ceilingCached = false;
|
ceilingCached = false;
|
||||||
cacheCeiling = null;
|
cacheCeiling = null;
|
||||||
cacheFloor = null;
|
cacheFloor = null;
|
||||||
|
getCache().targetChunk(0, 0);
|
||||||
}
|
}
|
||||||
|
|
||||||
private void targetFloor()
|
private void targetFloor()
|
||||||
|
@ -102,4 +102,8 @@ public class AtomicMulticache {
|
|||||||
public void updateHeight(int x, int z, int h) {
|
public void updateHeight(int x, int z, int h) {
|
||||||
height.put(pos(x, z), (double) h);
|
height.put(pos(x, z), (double) h);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public double getSize() {
|
||||||
|
return height.size();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user