public static final BlockEntityType<TestBlockEntity> TEST_BLOCK_ENTITY =
Registry.register(Registries.BLOCK_ENTITY_TYPE, Identifier.of(Testmod.MOD_ID, "test_block_entity"),
FabricBlockEntityTypeBuilder.create(TestBlockEntity::new, ModBlocks.TEST).build(null));
The error I am encountering is in:
TestBlockEntity::new, ModBlocks.TEST
with it being: Cannot resolve method 'create(<method reference>, Block)'
any ideas on the issue?