Skip to content

Commit

Permalink
Resolve blocks passed to block entity (#176)
Browse files Browse the repository at this point in the history
  • Loading branch information
ChampionAsh5357 authored Oct 11, 2024
1 parent 26c33c8 commit e7cc93b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/blockentities/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ public static final Supplier<BlockEntityType<MyBlockEntity>> MY_BLOCK_ENTITY = B
MyBlockEntity::new,
// A vararg of blocks that can have this block entity.
// This assumes the existence of the referenced blocks as DeferredBlock<Block>s.
MyBlocks.MY_BLOCK_1, MyBlocks.MY_BLOCK_2
MyBlocks.MY_BLOCK_1.get(), MyBlocks.MY_BLOCK_2.get()
)
// Build using null; vanilla does some datafixer shenanigans with the parameter that we don't need.
.build(null)
Expand Down

0 comments on commit e7cc93b

Please sign in to comment.