minecraft-source/src/net/minecraft/util/datafix/fixes/ChunkLightRemoveFix.java

24 lines
1.1 KiB
Java

package net.minecraft.util.datafix.fixes;
import com.mojang.datafixers.Dynamic;
import com.mojang.datafixers.Typed;
import com.mojang.datafixers.OpticFinder;
import com.mojang.datafixers.types.Type;
import com.mojang.datafixers.DSL;
import com.mojang.datafixers.TypeRewriteRule;
import com.mojang.datafixers.schemas.Schema;
import com.mojang.datafixers.DataFix;
public class ChunkLightRemoveFix extends DataFix {
public ChunkLightRemoveFix(final Schema schema, final boolean boolean2) {
super(schema, boolean2);
}
protected TypeRewriteRule makeRule() {
final Type<?> type2 = this.getInputSchema().getType(References.CHUNK);
final Type<?> type3 = type2.findFieldType("Level");
final OpticFinder<?> opticFinder4 = DSL.fieldFinder("Level", (Type)type3);
return this.fixTypeEverywhereTyped("ChunkLightRemoveFix", (Type)type2, this.getOutputSchema().getType(References.CHUNK), typed -> typed.updateTyped((OpticFinder)opticFinder4, typed -> typed.update(DSL.remainderFinder(), dynamic -> dynamic.remove("isLightOn"))));
}
}