Create

Create

101M Downloads

error when loading the mod

i-love-mods-and-codesss opened this issue ยท 1 comments

commented

Context

i just pressed the start button in the launcher but every time it says "Error loading mod"
and the error is
"create (create) has failed to load correctly"
"org.spongepowered.asm.mixin.transformer.throwables.MixinTrans"
"formerError: An unexspected critical error was encountered"
image

Crash Report

https://mclo.gs/CW0dmz2

commented

Some mod is mixing into classes that create removed, Do a binary search to figure out which mod:

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.