package net.minecraft.util.datafix.fixes; import com.mojang.datafixers.DSL; import com.mojang.datafixers.DataFix; import com.mojang.datafixers.TypeRewriteRule; import com.mojang.datafixers.Typed; import com.mojang.datafixers.DSL.TypeReference; import com.mojang.datafixers.schemas.Schema; public class EntityFallDistanceFloatToDoubleFix extends DataFix { private final TypeReference type; public EntityFallDistanceFloatToDoubleFix(final Schema outputSchema, final TypeReference type) { super(outputSchema, false); this.type = type; } @Override protected TypeRewriteRule makeRule() { return this.fixTypeEverywhereTyped( "EntityFallDistanceFloatToDoubleFixFor" + this.type.typeName(), this.getOutputSchema().getType(this.type), EntityFallDistanceFloatToDoubleFix::fixEntity ); } private static Typed fixEntity(final Typed entity) { return entity.update( DSL.remainderFinder(), remainder -> remainder.renameAndFixField("FallDistance", "fall_distance", fallDistance -> fallDistance.createDouble(fallDistance.asFloat(0.0F))) ); } }