Back to mods
Easy Data Fix project artwork

Modrinth · Minecraft mod

Easy Data Fix

A library that enables modders to register custom data fixers.

Choose a version Pick your version below, then grab the matching file.

Quick answer

Which Easy Data Fix release matches 26.2?

Updated last month
Best match for your filters 1.2.0+mc26.1-neoforge
Game version 26.1, 26.1.1, 26.1.2
Loader NeoForge

Easy Data Fix 1.2.0+mc26.1-neoforge targets 26.1, 26.1.1, 26.1.2 with NeoForge. Do not install it on the client. It must be installed on the dedicated server. No extra mods listed for this file.

Where it goes

Is Easy Data Fix required on the client, server, or both?

Do not install it on the client. It must be installed on the dedicated server.

Client Not supported
Dedicated server Required
Loader for this release NeoForge
Required install it here Optional supported, not mandatory Not supported do not install here Source doesn’t say do not assume

This file is marked server-only.

What else does Easy Data Fix 1.2.0+mc26.1-neoforge need?

1.2.0+mc26.1-neoforge on 26.2. Every mod below is checked against that same setup.

No extra mods listed for this file

This file does not list any required mods. Do not add a library just because a different file uses it.

This file does not list any required or optional mods.

Before you install it

Add Easy Data Fix without breaking your instance.

Built for Easy Data Fix 1.2.0+mc26.1-neoforge on 26.2. Pick another file and the loader, install side or required mods may change.

  1. 01

    Stick to this file

    Use 1.2.0+mc26.1-neoforge. It targets 26.1, 26.1.1, 26.1.2 with NeoForge; another release may have different loader, side or dependency requirements.

  2. 02

    Bring the mods it needs

    This file does not list any required mods. Do not add a library just because a different file uses it.

  3. 03

    Put it on the correct side

    Do not install it on the client. It must be installed on the dedicated server.

  4. 04

    Pick the file you checked

    Use the “Get this file” button beside 1.2.0+mc26.1-neoforge. It opens that exact file at the source.

About this project

What does Easy Data Fix add?

easy data fix icon

Easy Data Fix

A library that enables modders to register custom data fixers.

About The Project

Easy Data Fix is a small library mod that aids in creation of data fixers for mods, allowing custom mod game data to be converted between different versions of the game safly. The mod wraps the builtin DataFixerUpper classes which are as Mojang says "a set of utilities designed for incremental building, merging, and optimization of data transformations"

Use

  1. Download easy_data_fix-<loader>-x.x.x+mc26.1 from on of the places at the top of this README.
  2. Copy the downloaded jar file to your mods folder.

Using The Library In Development

To setup data fixers for your mod you first need to add the library as a dependency in your build.gradle file, then you just need to register them on pre-launch using Easy Data Fix's API. See example below.

build.gradle

repositories {
    mavenCentral()
    maven { url 'https://jitpack.io' }
}

dependencies {
    ...

    // Replace <Tag> with the release tag string from the Releases page
    implementation "org.codeberg.VoxelBill:easy-data-fix:<Tag>"
}

ExampleFix.java

public class ExampleFix implements PreLaunchEntrypoint {
    @Override
    public void onPreLaunch() {
        DataFixerRegistry.addDataFix("Description of data fixer", builder -> {
            // dataVersion = The Minecraft data version used in the version your upgrading to.
            // SchemaVersion = The builtin schema class that goes with the data version.
            // Example: (4773, V4771::new) = 26.1 full release
            Schema schema = builder.addSchema(dataVersion, V[SchemaVersion]::new);
            builder.addFixer(BlockRenameFix.create(schema, "Fixer Name", DataFixerAPI.createRenamer("example_mod:mod_block", "example_mod:new_mod_block")));
            builder.addFixer(ItemRenameFix.create(schema, "Fixer Name", DataFixerAPI.createRenamer("example_mod:mod_item", "example_mod:new_mod_item")));
        });
        // You may also have multiple DataFixerRegistry here to better organize your data fixes or to support other versions.
    }
}

Getting Started With Development

To get a local copy up and running, follow these simple steps.

Prerequisites

Ensure you have the following installed on your machine:

  • Java Development Kit (JDK): Version 25 or higher.
  • Gradle: Version 9.2 or higher.
  • Minecraft: Version 26.1

Build

  1. Clone the repository
git clone https://codeberg.org/VoxelBill/easy-data-fix.git
  1. Navigate to the project directory
cd easy-data-fix
  1. Build the project with Gradle
./gradlew clean build

You can find the built mod at easy-data-fix/build/libs/easy_data_fix-<loader>-x.x.x+mc26.1.jar.

Project description from Modrinth.

Pick your setup

Easy Data Fix by Minecraft version and loader

Choose the version and loader you play, then open the matching release.

32 available setups

Showing the newest 12 of 16 game versions. Older files are in the list below.

Check the dependencies, then try the file in a copied instance before changing a world you care about.

Recent files

Easy Data Fix versions and loaders

2 of 4 releases match
Clear filters

Looking for an older file? The official Modrinth project page is in Resources.