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.schemas.Schema; import com.mojang.datafixers.types.Type; import com.mojang.datafixers.util.Pair; import com.mojang.serialization.Dynamic; import java.util.Objects; public class ForcePoiRebuild extends DataFix { public ForcePoiRebuild(Schema outputSchema, boolean changesType) { super(outputSchema, changesType); } @Override protected TypeRewriteRule makeRule() { Type>> type = DSL.named(References.POI_CHUNK.typeName(), DSL.remainderType()); if (!Objects.equals(type, this.getInputSchema().getType(References.POI_CHUNK))) { throw new IllegalStateException("Poi type is not what was expected."); } else { return this.fixTypeEverywhere("POI rebuild", type, dynamicOps -> pair -> pair.mapSecond(ForcePoiRebuild::cap)); } } private static Dynamic cap(Dynamic dynamic) { return dynamic.update("Sections", dynamicx -> dynamicx.updateMapValues(pair -> pair.mapSecond(dynamicxx -> dynamicxx.remove("Valid")))); } }