2025-11-24 22:52:51 +03:00

40 lines
1.7 KiB
Java

/*
* Decompiled with CFR 0.152.
*
* Could not load the following classes:
* com.mojang.datafixers.DSL
* com.mojang.datafixers.DataFix
* com.mojang.datafixers.OpticFinder
* com.mojang.datafixers.TypeRewriteRule
* 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.DataFix;
import com.mojang.datafixers.OpticFinder;
import com.mojang.datafixers.TypeRewriteRule;
import com.mojang.datafixers.schemas.Schema;
import com.mojang.datafixers.types.Type;
import net.minecraft.util.datafix.LegacyComponentDataFixUtils;
import net.minecraft.util.datafix.fixes.References;
public class ItemLoreFix
extends DataFix {
public ItemLoreFix(Schema outputSchema) {
super(outputSchema, false);
}
protected TypeRewriteRule makeRule() {
Type itemStackType = this.getInputSchema().getType(References.ITEM_STACK);
Type textComponentType = this.getInputSchema().getType(References.TEXT_COMPONENT);
OpticFinder tagFinder = itemStackType.findField("tag");
OpticFinder displayFinder = tagFinder.type().findField("display");
OpticFinder loreFinder = displayFinder.type().findField("Lore");
OpticFinder textComponentFinder = DSL.typeFinder((Type)textComponentType);
return this.fixTypeEverywhereTyped("Item Lore componentize", itemStackType, itemStack -> itemStack.updateTyped(tagFinder, tag -> tag.updateTyped(displayFinder, display -> display.updateTyped(loreFinder, lore -> lore.update(textComponentFinder, textComponent -> textComponent.mapSecond(LegacyComponentDataFixUtils::createTextComponentJson))))));
}
}