Debugify

Debugify

16M Downloads

[Bug] Crash with MineLittlePony when placing armor stand

Fauli1221 opened this issue ยท 4 comments

commented

Bug Description

The game crashes when placing an armor stand

How to Reproduce?

  1. Install both MineLittlePony and Debugify and it's required dependencies
  2. start game and open a world
  3. 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

https://mclo.gs/NCRfPQ3

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.
commented

Does disabling MC-197260 fix the issue? (Basic > Client)

commented

yes, disabling MC-197260 does fix the issue

commented

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.

commented

mine little pony