42 lines
1.5 KiB
Java
42 lines
1.5 KiB
Java
/*
|
|
* Decompiled with CFR 0.152.
|
|
*
|
|
* Could not load the following classes:
|
|
* com.mojang.datafixers.DSL
|
|
* com.mojang.datafixers.OpticFinder
|
|
* com.mojang.datafixers.Typed
|
|
* com.mojang.datafixers.schemas.Schema
|
|
* com.mojang.datafixers.types.Type
|
|
*/
|
|
package net.minecraft.util.datafix.fixes;
|
|
|
|
import com.mojang.datafixers.DSL;
|
|
import com.mojang.datafixers.OpticFinder;
|
|
import com.mojang.datafixers.Typed;
|
|
import com.mojang.datafixers.schemas.Schema;
|
|
import com.mojang.datafixers.types.Type;
|
|
import java.util.List;
|
|
import net.minecraft.util.datafix.LegacyComponentDataFixUtils;
|
|
import net.minecraft.util.datafix.fixes.NamedEntityFix;
|
|
import net.minecraft.util.datafix.fixes.References;
|
|
|
|
public class SignTextStrictJsonFix
|
|
extends NamedEntityFix {
|
|
private static final List<String> LINE_FIELDS = List.of("Text1", "Text2", "Text3", "Text4");
|
|
|
|
public SignTextStrictJsonFix(Schema outputSchema) {
|
|
super(outputSchema, false, "SignTextStrictJsonFix", References.BLOCK_ENTITY, "Sign");
|
|
}
|
|
|
|
@Override
|
|
protected Typed<?> fix(Typed<?> entity) {
|
|
for (String lineField : LINE_FIELDS) {
|
|
OpticFinder lineF = entity.getType().findField(lineField);
|
|
OpticFinder textComponentF = DSL.typeFinder((Type)this.getInputSchema().getType(References.TEXT_COMPONENT));
|
|
entity = entity.updateTyped(lineF, line -> line.update(textComponentF, textComponent -> textComponent.mapSecond(LegacyComponentDataFixUtils::rewriteFromLenient)));
|
|
}
|
|
return entity;
|
|
}
|
|
}
|
|
|