Chocohead

Results 56 comments of Chocohead

Wonderful to see you got it working :) > How do you have 8u332 on XP? Stock can only run up to 8u241? I'm wanting to do this stock. I'm...

> Might not be fixable here. If I downgrade those to run on XP, in ModernFix, mixin.perf.faster_texture_stitching fails to load resources causing MC to hang on the loading screen. If...

This is a direct result of NeoForge merging together two Minecraft interface methods which otherwise have no common parent. `method_57832` is [`ComponentMap#contains`](https://maven.fabricmc.net/docs/yarn-1.21.5+build.1/net/minecraft/component/ComponentMap.html#contains(net.minecraft.component.ComponentType)) `method_57826` is [`ComponentHolder#contains`](https://maven.fabricmc.net/docs/yarn-1.21.5+build.1/net/minecraft/component/ComponentHolder.html#contains(net.minecraft.component.ComponentType)) `ComponentMap` and `ComponentHolder` both extend...

It's not `ComponentMap` or `ComponentHolder` which need the mappings, they've both already got them, it's `ComponentsAccess`. I guess it would be something like... ``` tiny 2 0 intermediary official named...

Seems this issue is a duplicate of #271. ArchLoom 1.10 fixes it by (arbitrarily?) culling the Intermediary methods out so there is only one for a hierarchy.

Loader expects AWs to be in the target namespace: https://github.com/FabricMC/fabric-loader/blob/a2c52480db25121535b124e2997ce4490c58cef4/src/main/java/net/fabricmc/loader/impl/FabricLoaderImpl.java#L527 Knot presumes this is `named` in dev or `intermediary` out of dev: https://github.com/FabricMC/fabric-loader/blob/a2c52480db25121535b124e2997ce4490c58cef4/src/main/java/net/fabricmc/loader/impl/launch/knot/Knot.java#L258-L260 Loader only remaps AWs when in dev,...