Vanilla only needs 12k~ states right now, 32k is unnecessary.
Dieser Commit ist enthalten in:
wizjany 2019-06-15 20:24:47 -04:00
Ursprung 0aa0dbfd11
Commit 61fd44fa8c

Datei anzeigen

@ -51,7 +51,7 @@ public final class BlockStateIdAccess {
return id < blockStates.length ? blockStates[id] : null;
}
private static BlockState[] blockStates = new BlockState[2 << 14];
private static BlockState[] blockStates = new BlockState[2 << 13];
public static void register(BlockState blockState) {
OptionalInt id = getBlockStateId(blockState);