AppleSkin

AppleSkin

236M Downloads

Crash on 1.19.4 Fabric

FlameFire26 opened this issue · 5 comments

commented

Fabric ver. 0.14.19, Fabric API ver. 0.81.1

Installed mods:
modmenu-6.2.2
appleskin-fabric-mc1.19.4-2.4.3

crash-report-2023-5-18_1.11.26.zip

Downgrade Fabric to 0.14.18 and API 0.78.0, the peoblem remains.

commented

Java have tried JDK 17.0.3.1/18.0.2.1/19.0.2

commented

Can't reproduce this, everything seems to be working fine for me. Tried with:

  • appleskin-fabric-mc1.19.4-2.4.3
  • fabric-api-0.81.1+1.19.4
  • modmenu-6.2.2
  • Fabric Loader v0.14.19
  • Java 17.0.2
commented

I was using an integration package to test it. Maybe it's had do some changes to the game.
I download a new 1.19.4 to find that it has no problem.
Sorry for that.

commented

The crash says that Mixin can't find a constructor of BeforeInc that takes an InjectionPointData, but it does exist:

public BeforeInc(InjectionPointData data)
{
super(data);
this.ordinal = data.getOrdinal();
this.intValue = Ints.tryParse(data.get("intValue", ""));
}

so the crash log is confusing.

commented