9
0
mirror of https://github.com/Samsuik/Sakura.git synced 2025-12-28 11:19:08 +00:00

reduce the blockpos to entity table size

This commit is contained in:
Samsuik
2025-11-05 13:17:47 +00:00
parent 1416585c70
commit 8f1e16bd0e

View File

@@ -9,7 +9,7 @@ import org.jspecify.annotations.Nullable;
@NullMarked
final class LenientStrategy implements MergeStrategy {
static final LenientStrategy INSTANCE = new LenientStrategy();
private final BlockPosToEntityTable entityTable = new BlockPosToEntityTable(512);
private final BlockPosToEntityTable entityTable = new BlockPosToEntityTable(128);
@Override
public boolean trackHistory() {