21 lines
735 B
Java
21 lines
735 B
Java
package net.minecraft.util.datafix.fixes;
|
|
|
|
import com.mojang.datafixers.DSL;
|
|
import com.mojang.datafixers.Typed;
|
|
import com.mojang.datafixers.schemas.Schema;
|
|
import com.mojang.serialization.Dynamic;
|
|
|
|
public class EntityBrushableBlockFieldsRenameFix extends NamedEntityFix {
|
|
public EntityBrushableBlockFieldsRenameFix(Schema outputSchema) {
|
|
super(outputSchema, false, "EntityBrushableBlockFieldsRenameFix", References.BLOCK_ENTITY, "minecraft:brushable_block");
|
|
}
|
|
|
|
public Dynamic<?> fixTag(Dynamic<?> tag) {
|
|
return tag.renameField("loot_table", "LootTable").renameField("loot_table_seed", "LootTableSeed");
|
|
}
|
|
|
|
@Override
|
|
protected Typed<?> fix(Typed<?> typed) {
|
|
return typed.update(DSL.remainderFinder(), this::fixTag);
|
|
}
|
|
}
|