diff --git a/docs/blocks/index.md b/docs/blocks/index.md index 3622a17dd..5a0c07605 100644 --- a/docs/blocks/index.md +++ b/docs/blocks/index.md @@ -106,7 +106,7 @@ public static final DeferredBlock EXAMPLE_BLOCK = BLOCKS.registerBlock( ); ``` -Internally, this will simply call `BLOCKS.register("example_block", () -> new Block(new BlockBehaviour.Properties()))` by applying the properties parameter to the provided block factory (which is commonly the constructor). +Internally, this will simply call `BLOCKS.register("example_block", () -> new Block(BlockBehaviour.Properties.of()))` by applying the properties parameter to the provided block factory (which is commonly the constructor). If you want to use `Block::new`, you can leave out the factory entirely: