Create: Steam 'n' Rails

Create: Steam 'n' Rails

37M Downloads

Issue Launching Forge Due to Missing Lithium Class

Closed this issue ยท 1 comments

commented

Context

Hi there,

I really love what you're doing with Steam 'n' Rails โ€” the mod is awesome! ๐Ÿš‚
However, when trying to launch Minecraft (Forge 47.4.0 on 1.20.1), I'm getting a crash because the game is looking for a Lithium class (me.jellysquid.mods.lithium.common.ai.pathing.PathNodeDefaults) that isn't there.

Since Lithium is a Fabric-only mod, and I'm on Forge, this causes Minecraft to fail at startup.
Is there a fix coming soon, or maybe a Forge-compatible workaround you could recommend?

Thanks a lot for your amazing work and your time! ๐Ÿ™

Crash Report

https://api.mclo.gs/1/raw/XDillW3

commented

This isn't caused by steam n rails, you have another mod trying to mixin into lithium (or one of its forks), you'll have to do a binary search to figure out which mod

Try a binary search:

The binary search is a way of finding a faulty thing amongst a lot of other things, without having to remove the things one-by-one. This is useful for finding a broken mod among hundreds of mods, without having to spend time testing the mods one-by-one.

The procedure is simple:

  1. Remove half of the existing things, and put them aside.
  2. Run the program / game.
  3. Does the issue still exist?
    If YES: Repeat from step 1 with the current things.
    IF NO: Swap out the current things with the ones set aside, and repeat from step 1.
  4. Repeat this process until the problematic thing/s have been found.