[Bug] Crash with MineLittlePony when placing armor stand
Fauli1221 opened this issue ยท 4 comments
Bug Description
The game crashes when placing an armor stand
How to Reproduce?
- Install both MineLittlePony and Debugify and it's required dependencies
- start game and open a world
- place armor stand
Expected Behavior
The game should not crash
Version
2.0.0
Mod Loader Version
0.14.7
Mod Loader
Fabric
Logs or additional context
Has not been reported.
- I made sure this bug hasn't already been reported.
Is on most update to date version.
- I made sure I am using the most up to date mod loader and mod version.
Hi, developer for Mine Little Pony here.
The problem is with this mixin here:
You cannot introduce an override to generic methods in mixins like this as it breaks the super calls from subclasses that were built against the original before your mixin was applied. It's because when you factor in the bridge methods the compiler generates, you end up with a loop where the method in your mixin is calling the bridge my class, which calls the method in my class, which then calls the method in your mixin via super, et infinitum.