Jump to content

[1.20.1] NoClassDefFoundError at runtime for library imported using "minecraftLibrary"


Flopticode

Recommended Posts

Hello,

I developed a Java library and I am trying to import it into my 1.20.1 Minecraft mod using Forge 47.2.0. I added my libs folder as a flatDir repository using the following code:

repositories
{
     flatDir
     {
         dir 'src/main/resources/libs'
     }
}

and I added my library (mc-astar-1.1.jar) to the classpath by adding

minecraftLibrary "blank:mc-astar:1.1"

to my dependencies block, which should be enough for properly importing the library, according to the docs. However, the library only seems to be added to the compiletime classpath, but not to the runtime classpath as the Java compiler doesn't report any compile-time errors and a NoClassDefFoundError is thrown as soon as I try to access any classes contained in the library. To ensure that my library is not the issue I tried to import the Java Discord API as a jar library as well and it didn't work either.

I already spent a few hours solving this problem, so I will greatly appreciate any hint about what detail I am missing here.

Thank you!

Link to comment
Share on other sites

Thank you, that source improved my understanding on gradle dependencies, but unfortunately it didn't fix my problem. I tried to add the dependency to the "implementation" configuration, but the library is still not present at runtime. Just to test, I also tried to explicitly add the dependency to the "runtimeOnly" configuration as well, which didn't change anything either.

Link to comment
Share on other sites

Sure, though it's pretty much the default one from the Forge MDK

plugins {
    id 'eclipse'
    id 'idea'
    id 'maven-publish'
    id 'net.minecraftforge.gradle' version '[6.0,6.2)'
}

version = mod_version
group = mod_group_id

base {
    archivesName = mod_id
}

java.toolchain.languageVersion = JavaLanguageVersion.of(17)

println "Java: ${System.getProperty 'java.version'}, JVM: ${System.getProperty 'java.vm.version'} (${System.getProperty 'java.vendor'}), Arch: ${System.getProperty 'os.arch'}"
minecraft {
    mappings channel: mapping_channel, version: mapping_version
    copyIdeResources = true
    runs {
        configureEach {
            workingDirectory project.file('run')
            property 'forge.logging.markers', 'REGISTRIES'
            property 'forge.logging.console.level', 'debug'

            mods {
                "mcastartest" {
                    source sourceSets.main
                }
            }
        }

        client {
            property 'forge.enabledGameTestNamespaces', mod_id
        }
        server {
            property 'forge.enabledGameTestNamespaces', mod_id
            args '--nogui'
        }
        gameTestServer {
            property 'forge.enabledGameTestNamespaces', mod_id
        }

        data {
            workingDirectory project.file('run-data')
            args '--mod', mod_id, '--all', '--output', file('src/generated/resources/'), '--existing', file('src/main/resources/')
        }
    }
}

sourceSets.main.resources { srcDir 'src/generated/resources' }

repositories
{
     flatDir
     {
         dir 'src/main/resources/libs'
     }
}

dependencies
{
    minecraft "net.minecraftforge:forge:${minecraft_version}-${forge_version}"

    implementation "blank:mc-astar:1.1"
}

tasks.named('processResources', ProcessResources).configure {
    var replaceProperties = [
            minecraft_version: minecraft_version, minecraft_version_range: minecraft_version_range,
            forge_version: forge_version, forge_version_range: forge_version_range,
            loader_version_range: loader_version_range,
            mod_id: mod_id, mod_name: mod_name, mod_license: mod_license, mod_version: mod_version,
            mod_authors: mod_authors, mod_description: mod_description,
    ]
    inputs.properties replaceProperties

    filesMatching(['META-INF/mods.toml', 'pack.mcmeta']) {
        expand replaceProperties + [project: project]
    }
}

tasks.named('jar', Jar).configure {
    manifest {
        attributes([
                'Specification-Title'     : mod_id,
                'Specification-Vendor'    : mod_authors,
                'Specification-Version'   : '1',
                'Implementation-Title'    : project.name,
                'Implementation-Version'  : project.jar.archiveVersion,
                'Implementation-Vendor'   : mod_authors,
                'Implementation-Timestamp': new Date().format("yyyy-MM-dd'T'HH:mm:ssZ")
        ])
    }
    
    finalizedBy 'reobfJar'
}

publishing {
    publications {
        register('mavenJava', MavenPublication) {
            artifact jar
        }
    }
    repositories {
        maven {
            url "file://${project.projectDir}/mcmodsrepo"
        }
    }
}

tasks.withType(JavaCompile).configureEach {
    options.encoding = 'UTF-8'
}

 

Link to comment
Share on other sites

That's what I thought too at first, but when I tried just the filename, the project failed to compile. Then I looked up the classpath generated by gradle and saw that it added "mc-astar-1.1.jar" at the project's root directory, not in "src/main/resources/libs" as I would have expected.

Link to comment
Share on other sites

I don't get a specific error from gradle, it returns "BUILD SUCCESSFUL". However, eclipse shows an entry

mc-astar-1.1.jar - P:\Java\MinecraftModding\1.20.1\MCAStarMod (missing)

in the classpath window after refreshing the gradle project. This obviously implies several "The import mc_astar_java cannot be resolved" compile errors everywhere I use the library's packages in the Java code.

On the other hand, if I add the path in the "implementation" statement in the gradle file, the classpath shows

mc-astar-1.1.jar - P:\Java\MinecraftModding\1.20.1\MCAStarMod\src\main\resources\libs

and I get no compile errors, meaning it should at least find the library (right?)

Edited by Flopticode
Link to comment
Share on other sites

It's the same situation as in this post from before:

On 11/19/2023 at 8:38 PM, Flopticode said:

I tried the following now

implementation files("src/main/resources/libs/mc-astar-1.1.jar")

and it throws still the same NoClassDefFoundError. Also tried it again with the JDA just to be sure my API is not the problem and it also didn't work.

So I guess in theory I could export my mod to use it in-game like an end-user would, but I don't think I can properly develop a mod without any debugging / testing tools from the IDE.

Link to comment
Share on other sites

First of all i do not recommend you to include you mod as a jar file, it's recommend to publish it to a local maven repository which you then include in your other projects.

Secondly, I don't recommend you use native code with Minecraft. I have already tried this but have found that this can lead to terrible errors.

I have tested the whole thing myself in my IDE and it works for me in IntelliJ:

repositories {
  // ...
  flatDir {
    dirs("libs") // jar file must be in "<project_root>/libs"
  }
  // ...
}

dependencies {
  // ...
  implementation fg.deobf("blank:MC-AStar:1.20:1.0") // File pattern must be <name>-<mc_version>-<dependency_version>
  // ...
}
Edited by Luis_ST
Link to comment
Share on other sites

You're right, I have now set up a local maven repo and published my library to it. That should make things way easier in the future.

I think in my case native code is a good option because the dll does not interact with Minecraft directly at all, it is always controlled through a mod. I'm aware of the potential problems (memory leaks, segfaults, hardware dependencies, ...) that native code can cause, but I am very experienced in C++ and always double check these errors in my code.

Is it possible that you tested this with a mod, not a library? afaik fg.deobf is just for deobfuscating mods so that they can run in development environments. Also my library has no MC version as it is completely independent from Minecraft (just features pathfinding functions for an abstract world). I tested your gradle script anyway (that was before I set up the Maven repo btw, so this still refers to the jar inside the 'libs' folder) and it didn't seem to work (gradle throws an exception that the artifact was not found, probably due to the fact that fg.deobf can't handle that dependency as it is not a mod?).

After I set up the maven repo, I added it to my gradle file like this

repositories
{
     maven {
     	url "P:/repos/maven"
     }
}

and I retested some of the previous options, hoping that it just didn't work for flat dirs (obviously I tried just one of these at a time):

minecraftLibrary "flopticode:mc-astar:1.1"
implementation "flopticode:mc-astar:1.1"
minecraftLibrary fg.deobf("flopticode:mc-astar:1.1")
implementation fg.deobf("flopticode:mc-astar:1.1")

All of these result in the same NoClassDefFoundError. At this point I am completely confused why it doesn't work as I did exactly what this entry from the Forge Documentation says.

Link to comment
Share on other sites

Quote
plugins {
    id 'eclipse'
    id 'idea'
    id 'maven-publish'
    id 'net.minecraftforge.gradle' version '[6.0,6.2)'
}

version = mod_version
group = mod_group_id

base {
    archivesName = mod_id
}

java.toolchain.languageVersion = JavaLanguageVersion.of(17)

println "Java: ${System.getProperty 'java.version'}, JVM: ${System.getProperty 'java.vm.version'} (${System.getProperty 'java.vendor'}), Arch: ${System.getProperty 'os.arch'}"
minecraft {
    mappings channel: mapping_channel, version: mapping_version
    copyIdeResources = true
    runs {
        configureEach {
            workingDirectory project.file('run')
            property 'forge.logging.markers', 'REGISTRIES'
            property 'forge.logging.console.level', 'debug'

            mods {
                "mcastartest" {
                    source sourceSets.main
                }
            }
        }

        client {
            property 'forge.enabledGameTestNamespaces', mod_id
        }
        server {
            property 'forge.enabledGameTestNamespaces', mod_id
            args '--nogui'
        }
        gameTestServer {
            property 'forge.enabledGameTestNamespaces', mod_id
        }

        data {
            workingDirectory project.file('run-data')
            args '--mod', mod_id, '--all', '--output', file('src/generated/resources/'), '--existing', file('src/main/resources/')
        }
    }
}

sourceSets.main.resources { srcDir 'src/generated/resources' }

repositories
{
     maven {
     	url "P:/repos/maven"
     }
}

dependencies
{
    minecraft "net.minecraftforge:forge:${minecraft_version}-${forge_version}"
    minecraftLibrary "flopticode:mc-astar:1.1"
}

tasks.named('processResources', ProcessResources).configure {
    var replaceProperties = [
            minecraft_version: minecraft_version, minecraft_version_range: minecraft_version_range,
            forge_version: forge_version, forge_version_range: forge_version_range,
            loader_version_range: loader_version_range,
            mod_id: mod_id, mod_name: mod_name, mod_license: mod_license, mod_version: mod_version,
            mod_authors: mod_authors, mod_description: mod_description,
    ]
    inputs.properties replaceProperties

    filesMatching(['META-INF/mods.toml', 'pack.mcmeta']) {
        expand replaceProperties + [project: project]
    }
}

tasks.named('jar', Jar).configure {
    manifest {
        attributes([
                'Specification-Title'     : mod_id,
                'Specification-Vendor'    : mod_authors,
                'Specification-Version'   : '1',
                'Implementation-Title'    : project.name,
                'Implementation-Version'  : project.jar.archiveVersion,
                'Implementation-Vendor'   : mod_authors,
                'Implementation-Timestamp': new Date().format("yyyy-MM-dd'T'HH:mm:ssZ")
        ])
    }
    
    finalizedBy 'reobfJar'
}

publishing {
    publications {
        register('mavenJava', MavenPublication) {
            artifact jar
        }
    }
    repositories {
        maven {
            url "file://${project.projectDir}/mcmodsrepo"
        }
    }
}

tasks.withType(JavaCompile).configureEach {
    options.encoding = 'UTF-8'
}

 

 

Link to comment
Share on other sites

  • 2 months later...
  • 2 weeks later...

Unfortunately not. In my case I was able to just copy my whole library code into my project, which is really bad practice, but seems to be the only option until the forge team develops a usable and working interface for non-mod libs...

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Unfortunately, your content contains terms that we do not allow. Please edit your content to remove the highlighted words below.
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Announcements



  • Recently Browsing

    • No registered users viewing this page.
  • Posts

    • Corrected item registration code: (for the ModItems class) public static final RegistryObject<Item> LEMON_JUICE_BOTTLE = ITEMS.register("lemon_juice_bottle", () -> new HoneyBottleItem(new Item.Properties().stacksTo(1) .food((new FoodProperties.Builder()).nutrition(3).saturationMod(0.25F) .effect(() -> new MobEffectInstance(MobEffects.DAMAGE_RESISTANCE, 1500), 0.5f).build())));
    • Apologies for the late reply. You'll need to register the item in ModItems; if you're following those tutorials, that's the only place you should ever register items. Otherwise, the mod will fail to register them properly and you'll get all sorts of interesting errors. Looking back at the code snipped I posted, I think that actually has some errors. I'm adding a lemon juice bottle to my mod just to ensure that it works correctly, and I will reply when I have solved the problems.
    • I might have an idea why your original method was causing so much trouble. See this while loop? You're only incrementing the number of blocks you've corrupted if you find one that you can corrupt. What happens if you can't find any? The while loop will run forever (a long time). This could happen if, for instance, the feature generates inside a vein of blocks that aren't marked as STONE_ABERRANTABLE. There are two alternate strategies I'd recommend to fix this.  First, you could simply increment numBlockCorrupted regardless of whether you've actually corrupted the block. This is the simplest and quickest way, and it should ensure that the loop runs no more than numBlocksToCorrupt times.  Alternatively, you could add a "kill switch" that keeps track of how many times the loop runs, and then ends it after a certain limit of your choosing. That could look something like this:  // Keeps track of how many blocks have been checked so far. int numBlocksChecked = 0; // Check up to twice as many blocks as you actually want to corrupt. // This is a good compromise between speed and actually getting the number of blocks // that you want to corrupt. int numBlocksToCheck = numBlocksToCorrupt * 2; // Modified the while loop condition to end after a certain number of blocks are checked. while (numBlocksCorrupted < numBlocksToCorrupt && numBlocksChecked < numBlocksToCheck) {                 // Generate a random position within the area, using the offset origin                 BlockPos randomPos = offsetOrigin.offset(                         ctx.random().nextInt(2 * areaSizeX + 1) - areaSizeX, // between -areaSize and areaSize                         ctx.random().nextInt(2 * areaSizeY + 1) - areaSizeY,                         ctx.random().nextInt(2 * areaSizeZ + 1) - areaSizeZ                 );                 // If the block at the random position is in the IS_ORE_ABERRANTABLE tag, replace it                 if (world.getBlockState(randomPos).is(ModBlockTags.STONE_ABERRANTABLE)) {                     world.setBlock(randomPos, surroundingBlockState, 2);                     numBlocksCorrupted++;                 } // Increment the number of blocks that you've checked. numBlocksChecked++;             } Let me know if you're still running into lag problems or are confused by my explanation.
    • So I have been trying to open modded 1.12.2 minecraft but it crashes when it opens and it says Exit Code-1 Can somebody please help me. Here is the crash report:   --- Minecraft Crash Report ---- WARNING: coremods are present:   IELoadingPlugin (ImmersiveEngineering-core-0.12-98.jar)   LibrarianLib Plugin (librarianlib-1.12.2-4.22.jar)   MixinLoader (viaforge-mc1122-3.6.0.jar)   McLib core mod (mclib-2.4.2-1.12.2.jar)   EFFLL (LiteLoader ObjectHolder fix) (ExtraFoamForLiteLoader-1.0.0.jar)   MekanismCoremod (Mekanism-1.12.2-9.8.3.390.jar)   LogisticsPipesCoreLoader (logisticspipes-0.10.3.114.jar)   AppleCore (AppleCore-mc1.12.2-3.4.0.jar)   BiomeTweakerCore (BiomeTweakerCore-1.12.2-1.0.39.jar)   ObfuscatePlugin (obfuscate-0.4.2-1.12.2.jar)   Regeneration (Regeneration-3.0.3.jar)   UniDictCoreMod (UniDict-1.12.2-3.0.10.jar)   ReflectorsPlugin (EnderStorage-1.12.2-2.5.0.jar)   EntityCullingEarlyLoader (entityculling-1.12.2-1.6.3.jar)   Controllable (controllable-0.11.2-1.12.2.jar)   craftfallessentials (CraftfallEssentials-1.12.2-1.2.6.jar)   SecurityCraftLoadingPlugin ([1.12.2] SecurityCraft v1.9.9.jar)   LoadingPlugin (ResourceLoader-MC1.12.1-1.5.3.jar)   MalisisCorePlugin (malisiscore-1.12.2-6.5.1.jar)   pymtech (PymTech-1.12.2-1.0.2.jar)   IvToolkit (IvToolkit-1.3.3-1.12.jar)   JeiUtilitiesLoadingPlugin (JEI-Utilities-1.12.2-0.2.12.jar)   LoadingPlugin (RandomThings-MC1.12.2-4.2.7.4.jar)   SSLoadingPlugin (SereneSeasons-1.12.2-1.2.18-universal.jar)   Do not report to Forge! (If you haven't disabled the FoamFix coremod, try disabling it in the config! Note that this bit of text will still appear.) (foamfix-0.10.15-1.12.2.jar)   FTBUltimineASM (ftb-ultimine-1202.3.5.jar)   ForgelinPlugin (Forgelin-1.8.4.jar)   Backpacked (backpacked-1.4.3-1.12.2.jar)   ForgelinPlugin (Forgelin-Continuous-1.9.23.0.jar)   HCASM (HammerLib-1.12.2-12.2.50.jar)   LucraftCoreExtendedID (LucraftCoreIDExtender.jar)   NWRTweak (redstonepaste-mc1.12-1.7.5.jar)   CTMCorePlugin (CTM-MC1.12.2-1.0.2.31.jar)   LucraftCoreCoreMod (LucraftCore-1.12.2-2.4.17.jar)   EnderCorePlugin (EnderCore-1.12.2-0.5.78-core.jar)   TransformerLoader (OpenComputers-MC1.12.2-1.8.5+179e1c3.jar)   llibrary (llibrary-core-1.0.11-1.12.2.jar)   ShetiPhian-ASM (ShetiPhian-ASM-1.12.0.jar)   PhosphorFMLLoadingPlugin (phosphor-1.12.2-0.2.6+build50.jar)   MekanismTweaks (mekanismtweaks-1.1.jar)   ShutdownPatcher (mcef-1.12.2-1.11-coremod.jar)   TNTUtilities Core (tnt_utilities-mc1.12-1.2.3.jar) Contact their authors BEFORE contacting forge // Shall we play a game? Time: 5/9/24 7:21 PM Description: Initializing game java.lang.NullPointerException: Initializing game     at net.minecraft.client.gui.GuiMainMenu.handler$zca000$hookViaForgeButton(GuiMainMenu.java:686)     at net.minecraft.client.gui.GuiMainMenu.func_73866_w_(GuiMainMenu.java:218)     at net.minecraft.client.gui.GuiScreen.func_146280_a(GuiScreen.java:478)     at net.minecraft.client.Minecraft.func_147108_a(Minecraft.java:1018)     at net.minecraft.client.Minecraft.func_71384_a(Minecraft.java:545)     at net.minecraft.client.Minecraft.func_99999_d(Minecraft.java:378)     at net.minecraft.client.main.Main.main(SourceFile:123)     at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)     at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)     at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)     at java.lang.reflect.Method.invoke(Method.java:497)     at net.minecraft.launchwrapper.Launch.launch(Launch.java:135)     at net.minecraft.launchwrapper.Launch.main(Launch.java:28)     at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)     at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)     at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)     at java.lang.reflect.Method.invoke(Method.java:497)     at gg.essential.loader.stage2.relaunch.Relaunch.relaunch(Relaunch.java:124)     at gg.essential.loader.stage2.EssentialLoader.preloadEssential(EssentialLoader.java:328)     at gg.essential.loader.stage2.EssentialLoader.loadPlatform(EssentialLoader.java:116)     at gg.essential.loader.stage2.EssentialLoaderBase.load(EssentialLoaderBase.java:148)     at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)     at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)     at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)     at java.lang.reflect.Method.invoke(Method.java:497)     at gg.essential.loader.stage1.EssentialLoaderBase.load(EssentialLoaderBase.java:293)     at gg.essential.loader.stage1.EssentialSetupTweaker.<init>(EssentialSetupTweaker.java:44)     at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)     at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62)     at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45)     at java.lang.reflect.Constructor.newInstance(Constructor.java:422)     at gg.essential.loader.stage0.EssentialSetupTweaker.loadStage1(EssentialSetupTweaker.java:53)     at gg.essential.loader.stage0.EssentialSetupTweaker.<init>(EssentialSetupTweaker.java:26)     at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)     at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62)     at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45)     at java.lang.reflect.Constructor.newInstance(Constructor.java:422)     at java.lang.Class.newInstance(Class.java:442)     at net.minecraft.launchwrapper.Launch.launch(Launch.java:98)     at net.minecraft.launchwrapper.Launch.main(Launch.java:28) A detailed walkthrough of the error, its code path and all known details is as follows: --------------------------------------------------------------------------------------- -- Head -- Thread: Client thread Stacktrace:     at net.minecraft.client.gui.GuiMainMenu.handler$zca000$hookViaForgeButton(GuiMainMenu.java:686)     at net.minecraft.client.gui.GuiMainMenu.func_73866_w_(GuiMainMenu.java:218)     at net.minecraft.client.gui.GuiScreen.func_146280_a(GuiScreen.java:478)     at net.minecraft.client.Minecraft.func_147108_a(Minecraft.java:1018)     at net.minecraft.client.Minecraft.func_71384_a(Minecraft.java:545) -- Initialization -- Details: Stacktrace:     at net.minecraft.client.Minecraft.func_99999_d(Minecraft.java:378)     at net.minecraft.client.main.Main.main(SourceFile:123)     at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)     at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)     at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)     at java.lang.reflect.Method.invoke(Method.java:497)     at net.minecraft.launchwrapper.Launch.launch(Launch.java:135)     at net.minecraft.launchwrapper.Launch.main(Launch.java:28)     at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)     at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)     at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)     at java.lang.reflect.Method.invoke(Method.java:497)     at gg.essential.loader.stage2.relaunch.Relaunch.relaunch(Relaunch.java:124)     at gg.essential.loader.stage2.EssentialLoader.preloadEssential(EssentialLoader.java:328)     at gg.essential.loader.stage2.EssentialLoader.loadPlatform(EssentialLoader.java:116)     at gg.essential.loader.stage2.EssentialLoaderBase.load(EssentialLoaderBase.java:148)     at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)     at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)     at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)     at java.lang.reflect.Method.invoke(Method.java:497)     at gg.essential.loader.stage1.EssentialLoaderBase.load(EssentialLoaderBase.java:293)     at gg.essential.loader.stage1.EssentialSetupTweaker.<init>(EssentialSetupTweaker.java:44)     at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)     at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62)     at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45)     at java.lang.reflect.Constructor.newInstance(Constructor.java:422)     at gg.essential.loader.stage0.EssentialSetupTweaker.loadStage1(EssentialSetupTweaker.java:53)     at gg.essential.loader.stage0.EssentialSetupTweaker.<init>(EssentialSetupTweaker.java:26)     at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)     at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62)     at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45)     at java.lang.reflect.Constructor.newInstance(Constructor.java:422)     at java.lang.Class.newInstance(Class.java:442)     at net.minecraft.launchwrapper.Launch.launch(Launch.java:98)     at net.minecraft.launchwrapper.Launch.main(Launch.java:28) -- System Details -- Details:     Minecraft Version: 1.12.2     Operating System: Windows 10 (amd64) version 10.0     Java Version: 1.8.0_51, Oracle Corporation     Java VM Version: Java HotSpot(TM) 64-Bit Server VM (mixed mode), Oracle Corporation     Memory: 912338720 bytes (870 MB) / 3868721152 bytes (3689 MB) up to 11542724608 bytes (11008 MB)     JVM Flags: 3 total; -XX:HeapDumpPath=MojangTricksIntelDriversForPerformance_javaw.exe_minecraft.exe.heapdump -Xmx12384m -Xms256m     IntCache: cache: 0, tcache: 0, allocated: 0, tallocated: 0     FML: MCP 9.42 Powered by Forge 14.23.5.2860 380 mods loaded, 0 mods active     States: 'U' = Unloaded 'L' = Loaded 'C' = Constructed 'H' = Pre-initialized 'I' = Initialized 'J' = Post-initialized 'A' = Available 'D' = Disabled 'E' = Errored     | State | ID                                | Version                         | Source                                             | Signature                                |     |:----- |:--------------------------------- |:------------------------------- |:-------------------------------------------------- |:---------------------------------------- |     |       | minecraft                         | 1.12.2                          | minecraft.jar                                      | None                                     |     |       | mcp                               | 9.42                            | minecraft.jar                                      | None                                     |     |       | FML                               | 8.0.99.99                       | forge-1.12.2-14.23.5.2860.jar                      | e3c3d50c7c986df74c645c0ac54639741c90a557 |     |       | forge                             | 14.23.5.2860                    | forge-1.12.2-14.23.5.2860.jar                      | e3c3d50c7c986df74c645c0ac54639741c90a557 |     |       | ivtoolkit                         | 1.3.3-1.12                      | minecraft.jar                                      | None                                     |     |       | controllable                      | 0.11.2                          | controllable-0.11.2-1.12.2.jar                     | None                                     |     |       | mclib_core                        | 2.4.2                           | minecraft.jar                                      | None                                     |     |       | backpacked                        | 1.4.2                           | backpacked-1.4.3-1.12.2.jar                        | None                                     |     |       | biometweakercore                  | 1.0.39                          | minecraft.jar                                      | None                                     |     |       | foamfixcore                       | 7.7.4                           | minecraft.jar                                      | None                                     |     |       | obfuscate                         | 0.4.2                           | minecraft.jar                                      | None                                     |     |       | opencomputers|core                | 1.8.5                           | minecraft.jar                                      | None                                     |     |       | tnt_utilities_core                | 1.2.3                           | minecraft.jar                                      | None                                     |     |       | essential                         | 1.0.0                           | Essential (forge_1.12.2).processed.jar             | None                                     |     |       | skinlayers3d                      | 1.2.0                           | 3dSkinLayers-forge-mc1.12.2-1.2.0.jar              | None                                     |     |       | servercountryflags                | 1.8.1                           | servercountryflags-1.8.1-1.12.2-FORGE.jar          | None                                     |     |       | securitycraft                     | v1.9.9                          | [1.12.2] SecurityCraft v1.9.9.jar                  | None                                     |     |       | acheads                           | 2.1.1                           | AbyssalCraft Heads-1.12.2-2.1.1.jar                | None                                     |     |       | acintegration                     | 1.11.3                          | AbyssalCraft Integration-1.12.2-1.11.3.jar         | None                                     |     |       | abyssalcraft                      | 1.10.5                          | AbyssalCraft-1.12.2-1.10.5.jar                     | None                                     |     |       | actuallyadditions                 | 1.12.2-r152                     | ActuallyAdditions-1.12.2-r152.jar                  | None                                     |     |       | actuallycomputers                 | @Version@                       | actuallycomputers-2.2.0.jar                        | None                                     |     |       | additionalpipes                   | 6.0.0.8                         | additionalpipes-6.0.0.8.jar                        | None                                     |     |       | advancementbook                   | 1.0.3                           | Advancement_Book-1.12-1.0.3.jar                    | None                                     |     |       | aether_legacy_addon               | 1.12.2-v1.3.0                   | Aether Continuation v1.3.0.jar                     | None                                     |     |       | aether_legacy                     | 1.5.3.2                         | aether-1.12.2-v1.5.4.0.jar                         | None                                     |     |       | aether                            | 0.3.0                           | aether_ii-1.12.2-0.3.0+build411-universal.jar      | None                                     |     |       | flyringbaublemod                  | 0.3.1_1.12-d4e654e              | angelRingToBauble-1.12-0.3.1.50+d4e654e.jar        | None                                     |     |       | applecore                         | 3.4.0                           | AppleCore-mc1.12.2-3.4.0.jar                       | None                                     |     |       | appleskin                         | 1.0.14                          | AppleSkin-mc1.12-1.0.14.jar                        | None                                     |     |       | appliedenergistics2               | rv6-stable-7                    | appliedenergistics2-rv6-stable-7.jar               | None                                     |     |       | ate                               | 1.0.0                           | ATE-1.5.jar                                        | None                                     |     |       | autopackager                      | 1.12                            | autopackager-1.12.jar                              | None                                     |     |       | autoreglib                        | 1.3-32                          | AutoRegLib-1.3-32.jar                              | None                                     |     |       | avaritia                          | 3.3.0                           | Avaritia-1.12.2-3.3.0.37-universal.jar             | None                                     |     |       | avaritiaddons                     | 1.12.2-1.9                      | Avaritiaddons-1.12.2-1.9.jar                       | None                                     |     |       | avaritiaio                        | @VERSION@                       | avaritiaio-1.4.jar                                 | None                                     |     |       | avaritiarecipemaker               | 1.0.0                           | avaritiarecipemaker-1.0.0.jar                      | None                                     |     |       | avaritiatweaks                    | 1.12.2-1.3.1                    | AvaritiaTweaks-1.12.2-1.3.1.jar                    | None                                     |     |       | avatarmod                         | 1.6.2                           | avatarmod-1.6.2.jar                                | None                                     |     |       | gorecore                          | 1.12.2-0.4.5                    | avatarmod-1.6.2.jar                                | None                                     |     |       | base                              | 3.14.0                          | base-1.12.2-3.14.0.jar                             | None                                     |     |       | baubles                           | 1.5.2                           | Baubles-1.12-1.5.2.jar                             | None                                     |     |       | bdlib                             | 1.14.4.1                        | bdlib-1.14.4.1-mc1.12.2.jar                        | None                                     |     |       | bedbugs                           | @VERSION@                       | BedBugs-1.12-1.0.1.jar                             | None                                     |     |       | betterbuilderswands               | 0.11.1                          | BetterBuildersWands-1.12-0.11.1.245+69d0d70.jar    | None                                     |     |       | betterquesting                    | 3.5.329                         | BetterQuesting-3.5.329.jar                         | None                                     |     |       | betterthanbunnies                 | 1.12.1-1.1.0                    | BetterThanBunnies-1.12.1-1.1.0.jar                 | None                                     |     |       | bibliocraft                       | 2.4.6                           | BiblioCraft[v2.4.6][MC1.12.2].jar                  | None                                     |     |       | bibliotheca                       | 1.3.6-1.12.2                    | bibliotheca-1.3.6-1.12.2.jar                       | None                                     |     |       | balancedorespawnores              | 1.0.0                           | Bifröst(V9).jar                                    | None                                     |     |       | biolib                            | 1.1.3                           | biolib-1.1.3.jar                                   | None                                     |     |       | biometweaker                      | 3.2.369                         | BiomeTweaker-1.12.2-3.2.369.jar                    | None                                     |     |       | blockdrops                        | 1.4.0                           | blockdrops-1.12.2-1.4.0.jar                        | None                                     |     |       | bloodmagic                        | 1.12.2-2.4.3-105                | BloodMagic-1.12.2-2.4.3-105.jar                    | None                                     |     |       | bookshelf                         | 2.3.590                         | Bookshelf-1.12.2-2.3.590.jar                       | None                                     |     |       | bookworm                          | 1.12.2-2.5.2.1                  | bookworm-1.12.2-2.5.2.1.jar                        | None                                     |     |       | botania                           | r1.10-364                       | Botania r1.10-364.4.jar                            | None                                     |     |       | brandonscore                      | 2.4.20                          | BrandonsCore-1.12.2-2.4.20.162-universal.jar       | None                                     |     |       | buildcraftcompat                  | 7.99.24.8                       | buildcraft-all-7.99.24.8.jar                       | None                                     |     |       | buildcraftbuilders                | 7.99.24.8                       | buildcraft-all-7.99.24.8.jar                       | None                                     |     |       | buildcraftcore                    | 7.99.24.8                       | buildcraft-all-7.99.24.8.jar                       | None                                     |     |       | buildcraftenergy                  | 7.99.24.8                       | buildcraft-all-7.99.24.8.jar                       | None                                     |     |       | buildcraftfactory                 | 7.99.24.8                       | buildcraft-all-7.99.24.8.jar                       | None                                     |     |       | buildcraftlib                     | 7.99.24.8                       | buildcraft-all-7.99.24.8.jar                       | None                                     |     |       | buildcraftrobotics                | 7.99.24.8                       | buildcraft-all-7.99.24.8.jar                       | None                                     |     |       | buildcraftsilicon                 | 7.99.24.8                       | buildcraft-all-7.99.24.8.jar                       | None                                     |     |       | buildcrafttransport               | 7.99.24.8                       | buildcraft-all-7.99.24.8.jar                       | None                                     |     |       | btg                               | 1.1.1                           | By The Gods-1.12.2-1.1.1.jar                       | None                                     |     |       | camera                            | 1.0.10                          | camera-1.0.10.jar                                  | None                                     |     |       | cctweaked                         | 1.89.2                          | cc-tweaked-1.12.2-1.89.2.jar                       | None                                     |     |       | computercraft                     | 1.89.2                          | cc-tweaked-1.12.2-1.89.2.jar                       | None                                     |     |       | ceramics                          | 1.12-1.3.7b                     | Ceramics-1.12-1.3.7b.jar                           | None                                     |     |       | chameleon                         | 1.12-4.1.3                      | Chameleon-1.12-4.1.3.jar                           | None                                     |     |       | chameleon_morph                   | 1.2.2                           | chameleon-1.2.2.jar                                | None                                     |     |       | chancecubes                       | 1.12.2-5.0.2.385                | ChanceCubes-1.12.2-5.0.2.385.jar                   | None                                     |     |       | charset                           | 0.5.6.6                         | Charset-Lib-0.5.6.6.jar                            | None                                     |     |       | chesttransporter                  | 2.8.8                           | ChestTransporter-1.12.2-2.8.8.jar                  | None                                     |     |       | chickenchunks                     | 2.4.2.74                        | ChickenChunks-1.12.2-2.4.2.74-universal.jar        | None                                     |     |       | chickens                          | 6.0.4                           | chickens-6.0.4.jar                                 | None                                     |     |       | chisel                            | MC1.12.2-1.0.2.45               | Chisel-MC1.12.2-1.0.2.45.jar                       | None                                     |     |       | chiseled_me                       | 1.12-3.0.0.0-git-e5ce416        | chiseled-me-1.12-3.0.0.0-git-e5ce416.jar           | None                                     |     |       | chiseledadditions                 | @Version@                       | ChiseledAdditions-1.0.0.jar                        | None                                     |     |       | chiselsandbits                    | 14.33                           | chiselsandbits-14.33.jar                           | None                                     |     |       | cjcm                              | 1.0                             | cjcm-1.0.jar                                       | None                                     |     |       | clienttweaks                      | 3.1.11                          | ClientTweaks_1.12.2-3.1.11.jar                     | None                                     |     |       | clipboard                         | @VERSION@                       | Clipboard-1.12-1.3.0.jar                           | None                                     |     |       | clumps                            | 3.1.2                           | Clumps-3.1.2.jar                                   | None                                     |     |       | codechickenlib                    | 3.2.3.358                       | CodeChickenLib-1.12.2-3.2.3.358-universal.jar      | None                                     |     |       | colossalchests                    | 1.7.3                           | ColossalChests-1.12.2-1.7.3.jar                    | None                                     |     |       | comforts                          | 1.4.1.3                         | comforts-1.12.2-1.4.1.3.jar                        | None                                     |     |       | commoncapabilities                | 2.4.8                           | CommonCapabilities-1.12.2-2.4.8.jar                | None                                     |     |       | controlling                       | 3.0.10                          | Controlling-3.0.12.3.jar                           | None                                     |     |       | cookingforblockheads              | 6.5.0                           | CookingForBlockheads_1.12.2-6.5.0.jar              | None                                     |     |       | craftfallessentials               | 1.2.6                           | CraftfallEssentials-1.12.2-1.2.6.jar               | None                                     |     |       | ctgui                             | 1.0.0                           | CraftTweaker2-1.12-4.1.20.698.jar                  | None                                     |     |       | crafttweaker                      | 4.1.20                          | CraftTweaker2-1.12-4.1.20.698.jar                  | None                                     |     |       | crafttweakerjei                   | 2.0.3                           | CraftTweaker2-1.12-4.1.20.698.jar                  | None                                     |     |       | ctm                               | MC1.12.2-1.0.2.31               | CTM-MC1.12.2-1.0.2.31.jar                          | None                                     |     |       | cucumber                          | 1.1.3                           | Cucumber-1.12.2-1.1.3.jar                          | None                                     |     |       | custommainmenu                    | 2.0.9.1                         | CustomMainMenu-MC1.12.2-2.0.9.1.jar                | None                                     |     |       | cyclopscore                       | 1.6.7                           | CyclopsCore-1.12.2-1.6.7.jar                       | None                                     |     |       | darknesslib                       | 1.1.2                           | DarknessLib-1.12.2-1.1.2.jar                       | None                                     |     |       | darkutils                         | 1.8.230                         | DarkUtils-1.12.2-1.8.230.jar                       | None                                     |     |       | props                             | 2.6.3.7                         | Decocraft-2.6.3.7_1.12.2.jar                       | None                                     |     |       | deepresonance                     | 1.8.0                           | deepresonance-1.12-1.8.0.jar                       | None                                     |     |       | defaultoptions                    | 9.2.8                           | DefaultOptions_1.12.2-9.2.8.jar                    | None                                     |     |       | draconicadditions                 | 1.17.0                          | Draconic-Additions-1.12.2-1.17.0.45-universal.jar  | None                                     |     |       | draconicevolution                 | 2.3.28                          | Draconic-Evolution-1.12.2-2.3.28.354-universal.jar | None                                     |     |       | draconicalchemy                   | 0.2                             | draconicalchemy-0.2.jar                            | None                                     |     |       | maia_draconic_edition             | 1.0.0                           | DraconicEvolution_MAIA_1.0.0.jar                   | None                                     |     |       | eleccoreloader                    | 1.9.453                         | ElecCore-1.12.2-1.9.453.jar                        | None                                     |     |       | eleccore                          | 1.9.453                         | ElecCore-1.12.2-1.9.453.jar                        | None                                     |     |       | ebwizardry                        | 4.3.13                          | ElectroblobsWizardry-4.3.13.jar                    | None                                     |     |       | endercore                         | 1.12.2-0.5.78                   | EnderCore-1.12.2-0.5.78.jar                        | None                                     |     |       | enderio                           | 5.3.72                          | EnderIO-1.12.2-5.3.72.jar                          | None                                     |     |       | enderiobase                       | 5.3.72                          | EnderIO-1.12.2-5.3.72.jar                          | None                                     |     |       | enderioconduitsappliedenergistics | 5.3.72                          | EnderIO-1.12.2-5.3.72.jar                          | None                                     |     |       | enderioconduitsopencomputers      | 5.3.72                          | EnderIO-1.12.2-5.3.72.jar                          | None                                     |     |       | enderioconduitsrefinedstorage     | 5.3.72                          | EnderIO-1.12.2-5.3.72.jar                          | None                                     |     |       | enderioconduits                   | 5.3.72                          | EnderIO-1.12.2-5.3.72.jar                          | None                                     |     |       | enderiointegrationforestry        | 5.3.72                          | EnderIO-1.12.2-5.3.72.jar                          | None                                     |     |       | enderiointegrationtic             | 5.3.72                          | EnderIO-1.12.2-5.3.72.jar                          | None                                     |     |       | enderiointegrationticlate         | 5.3.72                          | EnderIO-1.12.2-5.3.72.jar                          | None                                     |     |       | enderioinvpanel                   | 5.3.72                          | EnderIO-1.12.2-5.3.72.jar                          | None                                     |     |       | enderiomachines                   | 5.3.72                          | EnderIO-1.12.2-5.3.72.jar                          | None                                     |     |       | enderiopowertools                 | 5.3.72                          | EnderIO-1.12.2-5.3.72.jar                          | None                                     |     |       | gasconduits                       | 5.3.72                          | EnderIO-conduits-mekanism-1.12.2-5.3.72.jar        | None                                     |     |       | enderioendergy                    | 5.3.72                          | EnderIO-endergy-1.12.2-5.3.72.jar                  | None                                     |     |       | enderiozoo                        | 5.3.72                          | EnderIO-zoo-1.12.2-5.3.72.jar                      | None                                     |     |       | endermail                         | 1.1.3                           | EnderMail-1.12.2-1.1.3.jar                         | None                                     |     |       | enderstorage                      | 2.4.6.137                       | EnderStorage-1.12.2-2.4.6.137-universal.jar        | None                                     |     |       | enderstorage                      | 2.5.0                           | EnderStorage-1.12.2-2.5.0.jar                      | None                                     |     |       | endertweaker                      | 1.2.3                           | EnderTweaker-1.12.2-1.2.3.jar                      | None                                     |     |       | energyconverters                  | 1.3.7.30                        | energyconverters_1.12.2-1.3.7.30.jar               | None                                     |     |       | engineersworkshop                 | 1.4.0-1.12.2                    | EngineersWorkshop-1.4.0-1.12.2.jar                 | None                                     |     |       | entityculling                     | @VER@                           | entityculling-1.12.2-1.6.3.jar                     | None                                     |     |       | environmentaltech                 | 1.12.2-2.0.20.1                 | environmentaltech-1.12.2-2.0.20.1.jar              | None                                     |     |       | etlunar                           | 1.12.2-2.0.20.1                 | etlunar-1.12.2-2.0.20.1.jar                        | None                                     |     |       | motnt                             | 1.0.1                           | EvenMoreTNT-1.0.1.jar                              | None                                     |     |       | excompressum                      | 3.0.32                          | ExCompressum_1.12.2-3.0.32.jar                     | None                                     |     |       | exnihilocreatio                   | 1.12.2-0.4.7.2                  | exnihilocreatio-1.12.2-0.4.7.2.jar                 | None                                     |     |       | exnihiloomnia                     | 1.0                             | exnihiloomnia_1.12.2-0.0.2.jar                     | None                                     |     |       | expandableinventory               | 1.4.0                           | ExpandableInventory-1.12.2-1.4.0.jar               | None                                     |     |       | extrabitmanipulation              | 1.12.2-3.4.1                    | ExtraBitManipulation-1.12.2-3.4.1.jar              | None                                     |     |       | extra_spells                      | 1.2.0                           | ExtraSpells-1.12.2-1.2.0.jar                       | None                                     |     |       | extrautils2                       | 1.0                             | extrautils2-1.12-1.9.9.jar                         | None                                     |     |       | bigreactors                       | 1.12.2-0.4.5.68                 | ExtremeReactors-1.12.2-0.4.5.68.jar                | None                                     |     |       | fairylights                       | 2.1.10                          | fairylights-2.2.0-1.12.2.jar                       | None                                     |     |       | farmingforblockheads              | 3.1.28                          | FarmingForBlockheads_1.12.2-3.1.28.jar             | None                                     |     |       | fenceoverhaul                     | 1.3.4                           | FenceOverhaul-1.3.4.jar                            | None                                     |     |       | examplemod                        | 1.0                             | flatcolorblock-hexfinder.jar                       | None                                     |     |       | flatcoloredblocks                 | mc1.12-6.8                      | flatcoloredblocks-mc1.12-6.8.jar                   | None                                     |     |       | fluxnetworks                      | 4.1.0                           | FluxNetworks-1.12.2-4.1.1.34.jar                   | None                                     |     |       | foamfix                           | @VERSION@                       | foamfix-0.10.15-1.12.2.jar                         | None                                     |     |       | forestry                          | 5.8.2.387                       | forestry_1.12.2-5.8.2.387.jar                      | None                                     |     |       | forgelin                          | 1.8.4                           | Forgelin-1.8.4.jar                                 | None                                     |     |       | forgelin_continuous               | 1.9.23.0                        | Forgelin-Continuous-1.9.23.0.jar                   | None                                     |     |       | microblockcbe                     | 2.6.2.83                        | ForgeMultipart-1.12.2-2.6.2.83-universal.jar       | None                                     |     |       | forgemultipartcbe                 | 2.6.2.83                        | ForgeMultipart-1.12.2-2.6.2.83-universal.jar       | None                                     |     |       | minecraftmultipartcbe             | 2.6.2.83                        | ForgeMultipart-1.12.2-2.6.2.83-universal.jar       | None                                     |     |       | ftbultimine                       | 1202.3.5                        | ftb-ultimine-1202.3.5.jar                          | None                                     |     |       | ftbbackups                        | 1.1.0.1                         | FTBBackups-1.1.0.1.jar                             | None                                     |     |       | ftblib                            | 5.4.7.2                         | FTBLib-5.4.7.2.jar                                 | None                                     |     |       | ftbmoney                          | 1.2.0.47                        | FTBMoney-1.2.0.47.jar                              | None                                     |     |       | ftbquests                         | 1202.9.0.15                     | FTBQuests-1202.9.0.15.jar                          | None                                     |     |       | ftbutilities                      | 5.4.1.131                       | FTBUtilities-5.4.1.131.jar                         | None                                     |     |       | fw                                | 1.6.0                           | FullscreenWindowed-1.12-1.6.0.jar                  | None                                     |     |       | funtnt                            | 1.12.2.0                        | funtnt-1.12.2.0.jar                                | None                                     |     |       | cfm                               | 6.3.0                           | furniture-6.3.2-1.12.2.jar                         | None                                     |     |       | gardenofglass                     | sqrt(-1)                        | GardenOfGlass.jar                                  | None                                     |     |       | geckolib3                         | 3.0.30                          | geckolib-forge-1.12.2-3.0.31.jar                   | None                                     |     |       | advgenerators                     | 0.9.20.12                       | generators-0.9.20.12-mc1.12.2.jar                  | None                                     |     |       | googlyeyes                        | 7.1.1                           | GooglyEyes-1.12.2-7.1.1.jar                        | None                                     |     |       | grapplemod                        | 1.12.2-v13                      | grappling_hook_mod-1.12.2-v13.jar                  | None                                     |     |       | gravestone                        | 1.10.3                          | gravestone-1.10.3.jar                              | None                                     |     |       | gravitygun                        | 7.1.0                           | GravityGun-1.12.2-7.1.0.jar                        | None                                     |     |       | grue                              | 1.8.1                           | Grue-1.12.2-1.8.1.jar                              | None                                     |     |       | guideapi                          | 1.12-2.1.8-63                   | Guide-API-1.12-2.1.8-63.jar                        | None                                     |     |       | gunpowderlib                      | 1.12.2-1.1                      | GunpowderLib-1.12.2-1.1.jar                        | None                                     |     |       | cgm                               | 0.15.3                          | guns-0.15.3-1.12.2.jar                             | None                                     |     |       | gyth                              | 2.1.38                          | Gyth-1.12.2-2.1.38.jar                             | None                                     |     |       | hammercore                        | 12.2.50                         | HammerLib-1.12.2-12.2.50.jar                       | None                                     |     |       | harvest                           | 1.12-1.2.8-25                   | Harvest-1.12-1.2.8-25.jar                          | None                                     |     |       | hatchery                          | 2.2.2                           | hatchery-1.12.2-2.2.2.jar                          | None                                     |     |       | headcrumbs                        | 2.0.4                           | Headcrumbs-1.12.2-2.0.5.17.jar                     | None                                     |     |       | heroesexpansion                   | 1.12.2-1.3.5                    | HeroesExpansion-1.12.2-1.3.5.jar                   | None                                     |     |       | hopperducts                       | 1.5                             | hopperducts-mc1.12-1.5.jar                         | None                                     |     |       | waila                             | 1.8.26                          | Hwyla-1.8.26-B41_1.12.2.jar                        | None                                     |     |       | hydrogel                          | 1.1.0                           | HydroGel-1.12.2-1.1.0.jar                          | None                                     |     |       | icbmclassic                       | 6.0.0                           | ICBM-classic-1.12.2-6.0.0-preview.1.jar            | None                                     |     |       | icbmcc                            | 1.0.2                           | ICBM-classic-cc-addon-1.12.2-1.0.2.jar             | None                                     |     |       | ichunutil                         | 7.2.2                           | iChunUtil-1.12.2-7.2.2.jar                         | None                                     |     |       | igi|bloodmagicintegration         | 1.2                             | IGI-BloodMagic-1.2.jar                             | None                                     |     |       | igi|deepresonanceintegration      | 1.1                             | IGI-DeepResonance-1.1.jar                          | None                                     |     |       | igi|rftoolsintegration            | 1.2                             | IGI-RFTools-1.2.jar                                | None                                     |     |       | igi|thaumcraft                    | 1.0a                            | IGI-Thaumcraft-1.0a.jar                            | None                                     |     |       | igisereneseasons                  | 1.0.0.1                         | igisereneseasons-1.0.0.1.jar                       | None                                     |     |       | immersivepetroleum                | 1.1.10                          | immersivepetroleum-1.12.2-1.1.10.jar               | None                                     |     |       | industrialupgrade                 | 3.1.3                           | IndustrialUpgrade-1.12.2-3.1.3.jar                 | None                                     |     |       | ingameinfoxml                     | 2.8.2.94                        | InGameInfoXML-1.12.2-2.8.2.94-universal.jar        | None                                     |     |       | initialinventory                  | 2.0.2                           | InitialInventory-3.0.0.jar                         | None                                     |     |       | integrateddynamics                | 1.1.11                          | IntegratedDynamics-1.12.2-1.1.11.jar               | None                                     |     |       | integrateddynamicscompat          | 1.0.0                           | IntegratedDynamics-1.12.2-1.1.11.jar               | None                                     |     |       | integratedtunnels                 | 1.6.14                          | IntegratedTunnels-1.12.2-1.6.14.jar                | None                                     |     |       | integratedtunnelscompat           | 1.0.0                           | IntegratedTunnels-1.12.2-1.6.14.jar                | None                                     |     |       | inventorypets                     | 2.0.15                          | inventorypets-1.12-2.0.15.jar                      | None                                     |     |       | inventorysorter                   | 1.13.3+57                       | inventorysorter-1.12.2-1.13.3+57.jar               | None                                     |     |       | ironchest                         | 1.12.2-7.0.67.844               | ironchest-1.12.2-7.0.72.847.jar                    | None                                     |     |       | ironjetpacks                      | 1.1.0                           | IronJetpacks-1.12-2-1.1.0.jar                      | None                                     |     |       | ironman                           | Beta-1.12.2-1.2.6               | IronMan-1.12.2-Beta-1.12.2-1.2.6.jar               | None                                     |     |       | itemfilters                       | 1.0.4.2                         | ItemFilters-1.0.4.2.jar                            | None                                     |     |       | jeiutilities                      | 0.2.12                          | JEI-Utilities-1.12.2-0.2.12.jar                    | None                                     |     |       | jei                               | 4.16.1.301                      | jei_1.12.2-4.16.1.301.jar                          | None                                     |     |       | jeiintegration                    | 1.6.0                           | jeiintegration_1.12.2-1.6.0.jar                    | None                                     |     |       | journeymap                        | 1.12.2-5.7.1p2                  | journeymap-1.12.2-5.7.1p2.jar                      | None                                     |     |       | kleeslabs                         | 5.4.12                          | KleeSlabs_1.12.2-5.4.12.jar                        | None                                     |     |       | librarianliblate                  | 4.22                            | librarianlib-1.12.2-4.22.jar                       | None                                     |     |       | librarianlib                      | 4.22                            | librarianlib-1.12.2-4.22.jar                       | None                                     |     |       | literalascension                  | 1.12.2-1.0.2.2                  | literalascension-1.12.2-2.0.0.0.jar                | None                                     |     |       | logisticspipes                    | 0.10.3.114                      | logisticspipes-0.10.3.114.jar                      | None                                     |     |       | longfallboots                     | 1.2.1a                          | longfallboots-1.2.1b.jar                           | None                                     |     |       | lootbags                          | 2.5.8.5                         | LootBags-1.12.2-2.5.8.5.jar                        | None                                     |     |       | lost_aether                       | 1.0.2                           | lost-aether-content-1.12.2-1.0.2.jar               | None                                     |     |       | lostinfinity                      | 1.15.4                          | lostinfinity-1.16.0.jar                            | None                                     |     |       | luckynuke                         | 1.0.0                           | Lucky (1).jar                                      | None                                     |     |       | lucraftcore                       | 1.12.2-2.4.16                   | LucraftCore-1.12.2-2.4.17.jar                      | None                                     |     |       | lucraftcoreidextender             | 1.0.1                           | LucraftCoreIDExtender.jar                          | None                                     |     |       | lunatriuscore                     | 1.2.0.42                        | LunatriusCore-1.12.2-1.2.0.42-universal.jar        | None                                     |     |       | magiccraftadventure               | v1.10                           | MagicCraftAdventure v1.10.jar                      | None                                     |     |       | malisiscore                       | 1.12.2-6.5.1-SNAPSHOT           | malisiscore-1.12.2-6.5.1.jar                       | None                                     |     |       | malisisdoors                      | 1.12.2-7.3.0                    | malisisdoors-1.12.2-7.3.0.jar                      | None                                     |     |       | mantle                            | 1.12-1.3.3.55                   | Mantle-1.12-1.3.3.55.jar                           | None                                     |     |       | matc                              | 1.0.1-hotfix                    | matc-1.0.1-hotfix.jar                              | None                                     |     |       | mcef                              | 1.11                            | mcef-1.12.2-1.11.jar                               | None                                     |     |       | mcjtylib_ng                       | 3.5.4                           | mcjtylib-1.12-3.5.4.jar                            | None                                     |     |       | mclib                             | 2.4.2                           | mclib-2.4.2-1.12.2.jar                             | None                                     |     |       | mcmultipart                       | 2.5.3                           | MCMultiPart-2.5.3.jar                              | None                                     |     |       | mekanism                          | 1.12.2-9.8.3.390                | Mekanism-1.12.2-9.8.3.390.jar                      | None                                     |     |       | mekanismgenerators                | 1.12.2-9.8.3.390                | MekanismGenerators-1.12.2-9.8.3.390.jar            | None                                     |     |       | mekanismtools                     | 1.12.2-9.8.3.390                | MekanismTools-1.12.2-9.8.3.390.jar                 | None                                     |     |       | mercurius                         | 1.0.6                           | Mercurius-1.12.2.jar                               | None                                     |     |       | metamorph                         | 1.3.1                           | metamorph-1.3.1-1.12.2.jar                         | None                                     |     |       | metamorphmax                      | 0.13 - MC 1.12.2                | metamorphmax-0.13.jar                              | None                                     |     |       | minemenu                          | 1.6.11                          | MineMenu-1.12.2-1.6.11-universal.jar               | None                                     |     |       | minicoal                          | 1.0                             | minicoal-1.12.2-1.0.jar                            | None                                     |     |       | missing_pieces                    | 4.3.0                           | missing_pieces-1.12.2-4.3.0.jar                    | None                                     |     |       | moarsigns                         | 6.0.0.11                        | MoarSigns-1.12.2-6.0.0.11.jar                      | None                                     |     |       | moartinkers                       | 0.6.0                           | moartinkers-0.6.0.jar                              | None                                     |     |       | mob_grinding_utils                | 0.3.13                          | MobGrindingUtils-0.3.13.jar                        | None                                     |     |       | modnametooltip                    | 1.10.1                          | modnametooltip_1.12.2-1.10.1.jar                   | None                                     |     |       | modtweaker                        | 4.0.19                          | modtweaker-4.0.20.11.jar                           | None                                     |     |       | moreavaritia                      | 3.5                             | moreavaritia-mc1.12.2-v1.5.jar                     | None                                     |     |       | morechickens                      | 3.1.0                           | morechickens-1.12.2-3.1.0.jar                      | None                                     |     |       | shear                             | 1.1.2                           | MoreShearables1.3.1-1.12.2.jar                     | None                                     |     |       | morpheus                          | 1.12.2-3.5.106                  | Morpheus-1.12.2-3.5.106.jar                        | None                                     |     |       | mousetweaks                       | 2.10                            | MouseTweaks-2.10-mc1.12.2.jar                      | None                                     |     |       | mowziesmobs                       | 1.5.8                           | mowziesmobs-1.5.8.jar                              | None                                     |     |       | mpbasic                           | 1.4.7                           | mpbasic-1.12.2-1.4.11.jar                          | None                                     |     |       | mputils                           | 1.5.6                           | MPUtils-1.12.2-1.5.7.jar                           | None                                     |     |       | mtlib                             | 3.0.7                           | MTLib-3.0.7.jar                                    | None                                     |     |       | mysticalagradditions              | 1.3.2                           | MysticalAgradditions-1.12.2-1.3.2.jar              | None                                     |     |       | mysticalagriculture               | 1.7.5                           | MysticalAgriculture-1.12.2-1.7.5.jar               | None                                     |     |       | mysticallib                       | 1.12.2-1.13.0                   | mysticallib-1.12.2-1.13.0.jar                      | None                                     |     |       | natura                            | 1.12.2-4.3.2.69                 | natura-1.12.2-4.3.2.69.jar                         | None                                     |     |       | neat                              | 1.4-17                          | Neat 1.4-17.jar                                    | None                                     |     |       | nice                              | 0.4.0                           | nice-1.12-0.4.0.jar                                | None                                     |     |       | nei                               | 2.4.3                           | NotEnoughItems-1.12.2-2.4.3.245-universal.jar      | None                                     |     |       | notenoughwands                    | 1.8.1                           | notenoughwands-1.12-1.8.1.jar                      | None                                     |     |       | hbm                               | NTM-Extended-1.12.2-2.0.2       | NTM-Extended-1.12.2-2.0.2.jar                      | None                                     |     |       | openablewindows                   | 0.0.1                           | openablewindows-1.0.jar                            | None                                     |     |       | opencomputers                     | 1.8.5                           | OpenComputers-MC1.12.2-1.8.5+179e1c3.jar           | None                                     |     |       | eternalsoap.icbm.opencomputers    | 1.0                             | OpenComputersICBMAddon-1.3.jar                     | None                                     |     |       | oreexcavation                     | 1.4.150                         | OreExcavation-1.4.150.jar                          | None                                     |     |       | orespawn                          | 3.3.1                           | OreSpawn-1.12-3.3.1.179.jar                        | None                                     |     |       | packingtape                       | 0.7.6                           | PackingTape-1.12.2-0.7.6.jar                       | None                                     |     |       | harvestcraft                      | 1.12.2zb                        | Pam's HarvestCraft 1.12.2zg.jar                    | None                                     |     |       | pamsimpleharvest                  | 2.0.0                           | pamsimpleharvest-2.0.0.jar                         | None                                     |     |       | patchouli                         | 1.0-23.6                        | Patchouli-1.0-23.6.jar                             | None                                     |     |       | placebo                           | 1.6.0                           | Placebo-1.12.2-1.6.1.jar                           | None                                     |     |       | platforms                         | 1.4.6                           | platforms-1.12.0-1.4.6.jar                         | None                                     |     |       | portalgun                         | 7.1.0                           | PortalGun-1.12.2-7.1.0.jar                         | None                                     |     |       | powerutils                        | 1.5.3                           | Power+Utilities.jar                                | None                                     |     |       | projecte                          | 1.12.2-PE1.4.1                  | ProjectE-1.12.2-PE1.4.1.jar                        | None                                     |     |       | projectex                         | 1.2.0.40                        | ProjectEX-1.2.0.40.jar                             | None                                     |     |       | projectintelligence               | 1.0.9                           | ProjectIntelligence-1.12.2-1.0.9.28-universal.jar  | None                                     |     |       | psi                               | r1.1-78                         | Psi-r1.1-78.2.jar                                  | None                                     |     |       | ptrmodellib                       | 1.0.5                           | PTRLib-1.0.5.jar                                   | None                                     |     |       | pymtech                           | 1.12.2-1.0.2                    | PymTech-1.12.2-1.0.2.jar                           | None                                     |     |       | quantum_generators                | 1.3.1                           | Quantum_Generators.jar                             | None                                     |     |       | quantumflux                       | 2.0.18                          | quantumflux-1.12.2-2.0.18.jar                      | None                                     |     |       | quantumstorage                    | 4.7.0                           | QuantumStorage-1.12-4.7.0.jar                      | None                                     |     |       | questbook                         | 3.1.1-1.12                      | questbook-3.1.1-1.12.jar                           | None                                     |     |       | randomthings                      | 4.2.7.4                         | RandomThings-MC1.12.2-4.2.7.4.jar                  | None                                     |     |       | rangedpumps                       | 0.5                             | rangedpumps-0.5.jar                                | None                                     |     |       | reborncore                        | 3.19.5                          | RebornCore-1.12.2-3.19.5-universal.jar             | None                                     |     |       | rebornstorage                     | 1.0.0                           | RebornStorage-1.12.2-3.3.4.1.jar                   | None                                     |     |       | reccomplex                        | 1.4.8.5                         | RecurrentComplex-1.4.8.5.jar                       | None                                     |     |       | redstoneflux                      | 2.1.1                           | RedstoneFlux-1.12-2.1.1.1-universal.jar            | None                                     |     |       | redstonepaste                     | 1.7.5                           | redstonepaste-mc1.12-1.7.5.jar                     | None                                     |     |       | refined_avaritia                  | 2.6                             | refined_avaritia-1.12.2-2.6.jar                    | None                                     |     |       | refinedstorage                    | 1.6.16                          | refinedstorage-1.6.16.jar                          | None                                     |     |       | refinedstorageaddons              | 0.4.5                           | refinedstorageaddons-0.4.5.jar                     | None                                     |     |       | refinedstoragerequestify          | ${version}                      | refinedstoragerequestify-1.12.2-1.0.2-3.jar        | None                                     |     |       | regeneration                      | 3.0.3                           | Regeneration-3.0.3.jar                             | None                                     |     |       | resourceloader                    | 1.5.3                           | ResourceLoader-MC1.12.1-1.5.3.jar                  | None                                     |     |       | rftdimtweak                       | 1.1                             | RFTDimTweak-1.12.2-1.1.jar                         | None                                     |     |       | rftools                           | 7.73                            | rftools-1.12-7.73.jar                              | None                                     |     |       | rftoolscontrol                    | 2.0.2                           | rftoolsctrl-1.12-2.0.2.jar                         | None                                     |     |       | rftoolsdim                        | 5.71                            | rftoolsdim-1.12-5.71.jar                           | None                                     |     |       | rftoolspower                      | 1.2.0                           | rftoolspower-1.12-1.2.0.jar                        | None                                     |     |       | rftpwroc                          | 0.1                             | rftpwr_oc-0.2.jar                                  | None                                     |     |       | roots                             | 1.12.2-3.1.9.2                  | Roots-1.12.2-3.1.9.2.jar                           | None                                     |     |       | rslargepatterns                   | 1.12.2-1.0.0.0                  | RSLargePatterns-1.12.2-1.0.0.1.jar                 | None                                     |     |       | woodenshears                      | @MAJOR@.@MINOR@.@REVIS@.@BUILD@ | SBM-WoodenShears-1.12-0.0.1b8.jar                  | None                                     |     |       | scanner                           | 1.6.12                          | scanner-1.6.12.jar                                 | None                                     |     |       | secureenderstorage                | 1.12.2-1.2.0                    | SecureEnderStorage-1.12.2-1.2.0.jar                | None                                     |     |       | sereneseasons                     | 1.2.18                          | SereneSeasons-1.12.2-1.2.18-universal.jar          | None                                     |     |       | shadowmc                          | 3.8.0                           | ShadowMC-1.12-3.8.0.jar                            | None                                     |     |       | shearmadness                      | 1.12.2                          | shearmadness-1.12.2-1.7.2.4.jar                    | None                                     |     |       | simple-rpc                        | 1.0                             | simple-rpc-1.12.2-3.1.1.jar                        | None                                     |     |       | simplecorn                        | 2.5.12                          | SimpleCorn1.12-2.5.12.jar                          | None                                     |     |       | simplegenerators                  | 1.12.2-2.0.20.2                 | simplegenerators-1.12.2-2.0.20.2.jar               | None                                     |     |       | simplyquarries                    | 1.6.2                           | Simply+Quarries.jar                                | None                                     |     |       | simplyjetpacks                    | 1.12.2-2.2.20.0                 | SimplyJetpacks2-1.12.2-2.2.20.0.jar                | None                                     |     |       | snad                              | 1.12.1-1.7.09.16a               | Snad-1.12.1-1.7.09.16a.jar                         | None                                     |     |       | solarflux                         | 12.4.11                         | SolarFluxReborn-1.12.2-12.4.11.jar                 | None                                     |     |       | sonarcore                         | 5.0.19                          | sonarcore-1.12.2-5.0.19-20.jar                     | None                                     |     |       | speedsterheroes                   | 1.12.2-2.2.1                    | SpeedsterHeroes-1.12.2-2.2.1.jar                   | None                                     |     |       | statues                           | 0.8.10                          | statues-1.12.2-0.8.11.jar                          | None                                     |     |       | stellarfluidconduits              | 1.12.2-1.0.0                    | stellarfluidconduit-1.12.2-1.0.3.jar               | None                                     |     |       | stevescarts                       | 2.4.32.137                      | StevesCarts-1.12.2-2.4.32.137.jar                  | None                                     |     |       | storagedrawers                    | 5.5.0                           | StorageDrawers-1.12.2-5.5.0.jar                    | None                                     |     |       | tabula                            | 7.1.0                           | Tabula-1.12.2-7.1.0.jar                            | None                                     |     |       | taiga                             | 1.12.2-1.3.3                    | taiga-1.12.2-1.3.4.jar                             | None                                     |     |       | tardis                            | 0.1.4A                          | tardis-0.1.4A.jar                                  | None                                     |     |       | tconstruct                        | 1.12.2-2.13.0.183               | TConstruct-1.12.2-2.13.0.183.jar                   | None                                     |     |       | thaumcraft                        | 6.1.BETA26                      | Thaumcraft-1.12.2-6.1.BETA26.jar                   | None                                     |     |       | thaumicjei                        | 1.6.0                           | ThaumicJEI-1.12.2-1.6.0-27.jar                     | None                                     |     |       | beneath                           | 1.7.1                           | The Beneath-1.12.2-1.7.1.jar                       | None                                     |     |       | the-fifth-world                   | 0.5                             | the-fifth-world-0.5.1.jar                          | None                                     |     |       | tabulathreecoreexporter           | 1.12.2-1.0.0                    | ThreeCoreModelExporter-1.12.2-1.0.0.jar            | None                                     |     |       | tinkersaddons                     | 1.0.7                           | Tinkers' Addons-1.12.1-1.0.7.jar                   | None                                     |     |       | tinkers_reforged                  | 1.5.6                           | tinkers_reforged-1.5.6.jar                         | None                                     |     |       | tinkers_reforged_preload          | 1.5.6                           | tinkers_reforged-1.5.6.jar                         | None                                     |     |       | tinkersaether                     | 1.4.1                           | tinkersaether-1.4.1.jar                            | None                                     |     |       | tcomplement                       | 1.12.2-0.4.3                    | TinkersComplement-1.12.2-0.4.3.jar                 | None                                     |     |       | tinkersjei                        | 1.2                             | tinkersjei-1.2.jar                                 | None                                     |     |       | tinkersoc                         | 0.6                             | tinkersoc-0.6.jar                                  | None                                     |     |       | tinkertoolleveling                | 1.12.2-1.1.0.DEV.b23e769        | TinkerToolLeveling-1.12.2-1.1.0.jar                | None                                     |     |       | tp                                | 3.2.34                          | tinyprogressions-1.12.2-3.3.34-Release.jar         | None                                     |     |       | tnt_craft                         | 1.0.0                           | tnt-craft-1.12.2-V-1.1.0.jar                       | None                                     |     |       | tnt_utilities                     | 1.2.3                           | tnt_utilities-mc1.12-1.2.3.jar                     | None                                     |     |       | torchmaster                       | 1.8.5.0                         | torchmaster_1.12.2-1.8.5.0.jar                     | None                                     |     |       | translocators                     | 2.5.2.81                        | Translocators-1.12.2-2.5.2.81-universal.jar        | None                                     |     |       | ts2k16                            | 1.2.10                          | TS2K16-1.2.10.jar                                  | None                                     |     |       | twitchcrumbs                      | 3.0.4                           | Twitchcrumbs_1.12.2-3.0.4.jar                      | None                                     |     |       | unidict                           | 1.12.2-3.0.10                   | UniDict-1.12.2-3.0.10.jar                          | None                                     |     |       | universalmodifiers                | 1.12.2-1.0.16.1                 | valkyrielib-1.12.2-2.0.20.1.jar                    | None                                     |     |       | valkyrielib                       | 1.12.2-2.0.20.1                 | valkyrielib-1.12.2-2.0.20.1.jar                    | None                                     |     |       | vehicle                           | 0.44.1                          | vehicle-mod-0.44.1-1.12.2.jar                      | None                                     |     |       | viaforge                          | 3.6.0                           | viaforge-mc1122-3.6.0.jar                          | None                                     |     |       | voicechat                         | 1.12.2-2.5.13                   | voicechat-forge-1.12.2-2.5.13.jar                  | None                                     |     |       | waddles                           | 0.6.0                           | Waddles-1.12.2-0.6.0.jar                           | None                                     |     |       | wanionlib                         | 1.12.2-2.91                     | WanionLib-1.12.2-2.91.jar                          | None                                     |     |       | warpbook                          | 1.12.2-3.3.4                    | Warpbook-1.12.2-3.3.4.jar                          | None                                     |     |       | wawla                             | 2.6.275                         | Wawla-1.12.2-2.6.275.jar                           | None                                     |     |       | waystones                         | 4.1.0                           | Waystones_1.12.2-4.1.0.jar                         | None                                     |     |       | webdisplays                       | 1.1                             | webdisplaysremastered-1.12.2-1.2.jar               | None                                     |     |       | wintertagva                       | 1.12.2-1.0.0                    | WinterTAGVA-1.12.2-1.0.0.jar                       | None                                     |     |       | withercrumbs                      | @version@                       | witherCrumbs-1.12.2-0.11.jar                       | None                                     |     |       | zerocore                          | 1.12.2-0.1.2.9                  | zerocore-1.12.2-0.1.2.9.jar                        | None                                     |     |       | orbis-lib                         | 0.2.0                           | orbis-lib-1.12.2-0.2.0+build411.jar                | None                                     |     |       | phosphor-lighting                 | 1.12.2-0.2.6                    | phosphor-1.12.2-0.2.6+build50.jar                  | None                                     |     |       | immersiveengineering              | 0.12-98                         | ImmersiveEngineering-0.12-98.jar                   | None                                     |     |       | k9                                | 1.12.2-1.3.3.0                  | k9-1.12.2-1.3.3.0.jar                              | None                                     |     |       | llibrary                          | 1.7.20                          | llibrary-1.7.20-1.12.2.jar                         | None                                     |     |       | shetiphiancore                    | 3.5.9                           | shetiphiancore-1.12.0-3.5.9.jar                    | None                                     |     |       | structurize                       | 1.12.2-0.10.277-RELEASE         | structurize-1.12.2-0.10.277-RELEASE.jar            | None                                     |     |       | weeping-angels                    | 1.12.2-46                       | weeping-angels-46.jar                              | None                                     |     Loaded coremods (and transformers):  IELoadingPlugin (ImmersiveEngineering-core-0.12-98.jar)   blusunrize.immersiveengineering.common.asm.IEClassTransformer LibrarianLib Plugin (librarianlib-1.12.2-4.22.jar)   com.teamwizardry.librarianlib.asm.LibLibTransformer MixinLoader (viaforge-mc1122-3.6.0.jar)    McLib core mod (mclib-2.4.2-1.12.2.jar)   mchorse.mclib.core.McLibCMClassTransformer EFFLL (LiteLoader ObjectHolder fix) (ExtraFoamForLiteLoader-1.0.0.jar)   pl.asie.extrafoamforliteloader.EFFLLTransformer MekanismCoremod (Mekanism-1.12.2-9.8.3.390.jar)   mekanism.coremod.KeybindingMigrationHelper LogisticsPipesCoreLoader (logisticspipes-0.10.3.114.jar)   logisticspipes.asm.LogisticsClassTransformer AppleCore (AppleCore-mc1.12.2-3.4.0.jar)   squeek.applecore.asm.TransformerModuleHandler BiomeTweakerCore (BiomeTweakerCore-1.12.2-1.0.39.jar)   me.superckl.biometweakercore.BiomeTweakerASMTransformer ObfuscatePlugin (obfuscate-0.4.2-1.12.2.jar)   com.mrcrayfish.obfuscate.asm.ObfuscateTransformer Regeneration (Regeneration-3.0.3.jar)   me.suff.mc.regen.asm.RegenClassTransformer UniDictCoreMod (UniDict-1.12.2-3.0.10.jar)   wanion.unidict.core.UniDictCoreModTransformer ReflectorsPlugin (EnderStorage-1.12.2-2.5.0.jar)   codechicken.enderstorage.reflection.ReflectorsPlugin EntityCullingEarlyLoader (entityculling-1.12.2-1.6.3.jar)    Controllable (controllable-0.11.2-1.12.2.jar)    craftfallessentials (CraftfallEssentials-1.12.2-1.2.6.jar)   com.hydrosimp.craftfallessentials.core.CEClassTransformer SecurityCraftLoadingPlugin ([1.12.2] SecurityCraft v1.9.9.jar)    LoadingPlugin (ResourceLoader-MC1.12.1-1.5.3.jar)   lumien.resourceloader.asm.ClassTransformer MalisisCorePlugin (malisiscore-1.12.2-6.5.1.jar)    pymtech (PymTech-1.12.2-1.0.2.jar)   lucraft.mods.pymtech.core.PymTechClassTransformer IvToolkit (IvToolkit-1.3.3-1.12.jar)    JeiUtilitiesLoadingPlugin (JEI-Utilities-1.12.2-0.2.12.jar)   com.github.vfyjxf.jeiutilities.asm.JeiUtilitiesClassTransformer LoadingPlugin (RandomThings-MC1.12.2-4.2.7.4.jar)   lumien.randomthings.asm.ClassTransformer SSLoadingPlugin (SereneSeasons-1.12.2-1.2.18-universal.jar)   sereneseasons.asm.transformer.EntityRendererTransformer   sereneseasons.asm.transformer.WorldTransformer Do not report to Forge! (If you haven't disabled the FoamFix coremod, try disabling it in the config! Note that this bit of text will still appear.) (foamfix-0.10.15-1.12.2.jar)   pl.asie.foamfix.coremod.FoamFixTransformer FTBUltimineASM (ftb-ultimine-1202.3.5.jar)    ForgelinPlugin (Forgelin-1.8.4.jar)    Backpacked (backpacked-1.4.3-1.12.2.jar)   com.mrcrayfish.backpacked.asm.BackpackedTransformer ForgelinPlugin (Forgelin-Continuous-1.9.23.0.jar)    HCASM (HammerLib-1.12.2-12.2.50.jar)   com.zeitheron.hammercore.asm.HammerCoreTransformer LucraftCoreExtendedID (LucraftCoreIDExtender.jar)    NWRTweak (redstonepaste-mc1.12-1.7.5.jar)   net.fybertech.nwr.NWRTransformer CTMCorePlugin (CTM-MC1.12.2-1.0.2.31.jar)   team.chisel.ctm.client.asm.CTMTransformer LucraftCoreCoreMod (LucraftCore-1.12.2-2.4.17.jar)   lucraft.mods.lucraftcore.core.LCTransformer EnderCorePlugin (EnderCore-1.12.2-0.5.78-core.jar)   com.enderio.core.common.transform.EnderCoreTransformer   com.enderio.core.common.transform.SimpleMixinPatcher TransformerLoader (OpenComputers-MC1.12.2-1.8.5+179e1c3.jar)   li.cil.oc.common.asm.ClassTransformer llibrary (llibrary-core-1.0.11-1.12.2.jar)   net.ilexiconn.llibrary.server.core.plugin.LLibraryTransformer   net.ilexiconn.llibrary.server.core.patcher.LLibraryRuntimePatcher ShetiPhian-ASM (ShetiPhian-ASM-1.12.0.jar)   shetiphian.asm.ClassTransformer PhosphorFMLLoadingPlugin (phosphor-1.12.2-0.2.6+build50.jar)    MekanismTweaks (mekanismtweaks-1.1.jar)    ShutdownPatcher (mcef-1.12.2-1.11-coremod.jar)   net.montoyo.mcef.coremod.ShutdownPatcher TNTUtilities Core (tnt_utilities-mc1.12-1.2.3.jar)   ljfa.tntutils.asm.ExplosionTransformer     GL info: ' Vendor: 'Intel' Version: '4.6.0 - Build 32.0.101.5428' Renderer: 'Intel(R) Iris(R) Xe Graphics'     Launched Version: forge-14.23.5.2860     LWJGL: 2.9.4     OpenGL: Intel(R) Iris(R) Xe Graphics GL version 4.6.0 - Build 32.0.101.5428, Intel     GL Caps: Using GL 1.3 multitexturing. Using GL 1.3 texture combiners. Using framebuffer objects because OpenGL 3.0 is supported and separate blending is supported. Shaders are available because OpenGL 2.1 is supported. VBOs are available because OpenGL 1.5 is supported.     Using VBOs: Yes     Is Modded: Definitely; Client brand changed to 'fml,forge'     Type: Client (map_client.txt)     Resource Packs:      Current Language: English (US)     Profiler Position: N/A (disabled)     CPU: 8x 11th Gen Intel(R) Core(TM) i5-1135G7 @ 2.40GHz
    • Advice for the future: I made functions to create recipes more easily; they generate names for the recipes based on the ingredients and the result. 
  • Topics

×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.