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
| public static final DeferredRegister.Blocks BLOCKS = DeferredRegister.createBlocks(ID); | |
| public static final DeferredRegister.Items ITEMS = DeferredRegister.createItems(ID); | |
| public static final ColorCollection<DeferredHolder<Block, Block>> WOOL_BLOCKS = registerBlocks( | |
| BLOCKS, | |
| "wool", | |
| (color, properties) -> new Block(properties), | |
| color -> BlockBehaviour.Properties.ofFullCopy(Blocks.WOOL.pick(color)) | |
| ); |
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
| { | |
| "branches": { | |
| "releases": { | |
| "type": "release" | |
| }, | |
| "snapshots": { | |
| "type": "all" | |
| }, | |
| "26.1.x": { | |
| "type": "all", |