Getting this error:
SkytilsMod/src/main/java/gg/skytils/skytilsmod/mixins/transformers/gui/MixinGuiIngameForge.java:46: error: highlightingItemStack has private access in GuiIngame
GuiIngameForgeHookKt.modifyItemHighlightPosition(args, highlightingItemStack);
This file last changed months ago, but I compiled 1.10.9 when the release came out just fine. Haven't tried downgrading to 1.10.9 and compiling yet, so I don't know if its a environment change that broke it in my system, but nothing relevant seems to be changed in Gradle configuration when looking at commits between 1.10.9-1.10.10, so I have no idea how this issue didn't occur before, because I have checked and GuiIngame#higlightingItemStack is, actually private, and not protected, therefore extending GuiIngame in the mixin should not let us access this field. I suspect a @Shadow field or another Accessor Mixin is required to access this field, but I'm not sure how it worked before at all. Maybe my gradle caches got corrupted or cleaned in my system and Skytils CI is still using a cache and thats the reason why it failed only on my system and just now instead of before?
I also don't have any idea how this does not cause an error in runtime - possibly I have another mod that has a Access Transformer configured to make the field public?