im trying to make a mod that makes carpet players use baritone. someone made a serverside port of baritone called automatone and it uses quilt mappings. i modified it to become a fabric mod that used a plugin so the quilt mappings could run on loom.
Then i have carpet as another dependency and it uses mojmap mappings. And my mod uses yarn mappings. The mods got along it was able to build until I tried to register something with cardinal components like it said in automatone's readme, and I think the mappings are incompatible.
I get this error when I have this line EntityPlayerMPFake.class
public void registerEntityComponentFactories(EntityComponentFactoryRegistry registry) {
registry.registerFor(
EntityPlayerMPFake.class,
IBaritone.KEY,
BaritoneAPI.getProvider().componentFactory()
);
``