Darkhax-Minecraft / Bookshelf

A library mod which adds additional code support beyond what is provided by Forge.
GNU Lesser General Public License v2.1
145 stars 39 forks source link

Mixin Error while starting #206

Closed Kapitencraft closed 1 year ago

Kapitencraft commented 1 year ago

Well, the crash report should speak for it self crash_report.txt

Darkhax commented 1 year ago

Hello, it looks like you are trying to use Bookshelf in a development environment without Mixin remapping enabled. This is required to load mixins using your development mappings of choice. You can see an example of this here.

Kapitencraft commented 1 year ago

It appears that is not all, there is a new error: crash_report.txt

Darkhax commented 1 year ago

Mod dependencies on Forge need to be deobfuscated for development environments. You should also be using the maven and not a mods folder on your system.


repositories {
    maven { 
      url 'https://maven.blamejared.com' 
    }
}

dependencies {

    implementation fg.deobf("net.darkhax.bookshelf:Bookshelf-Forge-1.19.3:17.0.2")
}