Created
December 20, 2017 17:35
-
-
Save Barteks2x/9d222434aa87b3529fadb72df3c7ebda to your computer and use it in GitHub Desktop.
stdin
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Set<IBlockState> blockStates = new HashSet<IBlockState>(); | |
Block.REGISTRY.forEach(block -> { | |
if (!block.hasTileEntity(block.getDefaultState())) { | |
blockStates.add(block.getDefaultState()); | |
} | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment