mirror of
https://github.com/Ellpeck/NaturesAura.git
synced 2024-11-22 19:58:34 +01:00
reduce the cached amount actually
This commit is contained in:
parent
6f13d970dd
commit
26616ce0c2
1 changed files with 1 additions and 1 deletions
|
@ -93,7 +93,7 @@ public class WorldData implements IWorldData {
|
||||||
|
|
||||||
public void addMossStone(BlockPos pos) {
|
public void addMossStone(BlockPos pos) {
|
||||||
this.recentlyConvertedMossStones.add(pos);
|
this.recentlyConvertedMossStones.add(pos);
|
||||||
if (this.recentlyConvertedMossStones.size() > 2048)
|
if (this.recentlyConvertedMossStones.size() > 512)
|
||||||
this.recentlyConvertedMossStones.remove(0);
|
this.recentlyConvertedMossStones.remove(0);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue