Make BlockStateInterface.AIR final
This commit is contained in:
parent
b46fad1442
commit
9654892e54
@ -38,7 +38,7 @@ public class BlockStateInterface implements Helper {
|
|||||||
private static Chunk prev = null;
|
private static Chunk prev = null;
|
||||||
private static CachedRegion prevCached = null;
|
private static CachedRegion prevCached = null;
|
||||||
|
|
||||||
private static IBlockState AIR = Blocks.AIR.getDefaultState();
|
private static final IBlockState AIR = Blocks.AIR.getDefaultState();
|
||||||
|
|
||||||
public static IBlockState get(BlockPos pos) {
|
public static IBlockState get(BlockPos pos) {
|
||||||
return get(pos.getX(), pos.getY(), pos.getZ());
|
return get(pos.getX(), pos.getY(), pos.getZ());
|
||||||
|
Loading…
Reference in New Issue
Block a user