Jump to content

Recommended Posts

Posted (edited)

Hello there,

i'm an absolute beginner in modding. Gradle is also new for me. I do know some java though.
I followed the Getting Started - Guide in the documentation twice. The damn thing doesn't want to compile the example code (renamed to match the name of my mod) because of this error:

> Executing task: gradle: build <


> Configure project :
Java: 16.0.2 JVM: 16.0.2+7(N/A) Arch: amd64
WARNING: This project is configured to use the official obfuscation mappings provided by Mojang. These mapping fall under their associated license, you should be fully aware of this license. For the latest license text, refer below, or the reference copy here: https://github.com/MinecraftForge/MCPConfig/blob/master/Mojang.md, You can hide this warning by running the `hideOfficialWarningUntilChanged` task
WARNING: (c) 2020 Microsoft Corporation. These mappings are provided "as-is" and you bear the risk of using them. You may copy and use the mappings for development purposes, but you may not redistribute the mappings complete and unmodified. Microsoft makes no warranties, express or implied, with respect to the mappings provided here.  Use and modification of this document or the source code (in any form) of Minecraft: Java Edition is governed by the Minecraft End User License Agreement available at https://account.mojang.com/documents/minecraft_eula.
<-------------> 0% EXECUTING [987ms]
> :compileJava

FAILURE: Build failed with an exception.

* What went wrong:
Execution failed for task ':compileJava'.
> error: release version 16 not supported

* Try:
Run with --stacktrace option to get the stack trace. Run with --info or --debug option to get more log output. Run with --scan to get full insights.

* Get more help at https://help.gradle.org

As you can see, i am running the Java 16, just like the guide told me to.

I would be thankful for any help.

LaT3St

Edited by LaT3St
Posted
buildscript {
    repositories {
        // These repositories are only for Gradle plugins, put any other repositories in the repository block further below
        maven { url = 'https://maven.minecraftforge.net' }
        mavenCentral()
    }
    dependencies {
        classpath group: 'net.minecraftforge.gradle', name: 'ForgeGradle', version: '5.1.+', changing: true
    }
}
apply plugin: 'net.minecraftforge.gradle'
// Only edit below this line, the above code adds and enables the necessary things for Forge to be setup.
apply plugin: 'eclipse'
apply plugin: 'maven-publish'

version = '0.1'
group = 'de.lat3st.obsidiantools' // http://maven.apache.org/guides/mini/guide-naming-conventions.html
archivesBaseName = 'obsidiantools'

// Mojang ships Java 16 to end users in 1.17+ instead of Java 8 in 1.16 or lower, so your mod should target Java 16.
java.toolchain.languageVersion = JavaLanguageVersion.of(16)

println('Java: ' + System.getProperty('java.version') + ' JVM: ' + System.getProperty('java.vm.version') + '(' + System.getProperty('java.vendor') + ') Arch: ' + System.getProperty('os.arch'))
minecraft {
    // The mappings can be changed at any time and must be in the following format.
    // Channel:   Version:
    // snapshot   YYYYMMDD   Snapshot are built nightly.
    // stable     #          Stables are built at the discretion of the MCP team.
    // official   MCVersion  Official field/method names from Mojang mapping files
    //
    // You must be aware of the Mojang license when using the 'official' mappings.
    // See more information here: https://github.com/MinecraftForge/MCPConfig/blob/master/Mojang.md
    //
    // Use non-default mappings at your own risk. They may not always work.
    // Simply re-run your setup task after changing the mappings to update your workspace.
    mappings channel: 'official', version: '1.17.1'

    // accessTransformer = file('src/main/resources/META-INF/accesstransformer.cfg') // Currently, this location cannot be changed from the default.

    // Default run configurations.
    // These can be tweaked, removed, or duplicated as needed.
    runs {
        client {
            workingDirectory project.file('run')

            // Recommended logging data for a userdev environment
            // The markers can be added/remove as needed separated by commas.
            // "SCAN": For mods scan.
            // "REGISTRIES": For firing of registry events.
            // "REGISTRYDUMP": For getting the contents of all registries.
            property 'forge.logging.markers', 'REGISTRIES'

            // Recommended logging level for the console
            // You can set various levels here.
            // Please read: https://stackoverflow.com/questions/2031163/when-to-use-the-different-log-levels
            property 'forge.logging.console.level', 'debug'

            mods {
                obsidiantools {
                    source sourceSets.main
                }
            }
        }

        server {
            workingDirectory project.file('run')

            // Recommended logging data for a userdev environment
            // The markers can be added/remove as needed separated by commas.
            // "SCAN": For mods scan.
            // "REGISTRIES": For firing of registry events.
            // "REGISTRYDUMP": For getting the contents of all registries.
            property 'forge.logging.markers', 'REGISTRIES'

            // Recommended logging level for the console
            // You can set various levels here.
            // Please read: https://stackoverflow.com/questions/2031163/when-to-use-the-different-log-levels
            property 'forge.logging.console.level', 'debug'

            mods {
                obsidiantools {
                    source sourceSets.main
                }
            }
        }

        data {
            workingDirectory project.file('run')

            // Recommended logging data for a userdev environment
            // The markers can be added/remove as needed separated by commas.
            // "SCAN": For mods scan.
            // "REGISTRIES": For firing of registry events.
            // "REGISTRYDUMP": For getting the contents of all registries.
            property 'forge.logging.markers', 'REGISTRIES'

            // Recommended logging level for the console
            // You can set various levels here.
            // Please read: https://stackoverflow.com/questions/2031163/when-to-use-the-different-log-levels
            property 'forge.logging.console.level', 'debug'

            // Specify the modid for data generation, where to output the resulting resource, and where to look for existing resources.
            args '--mod', 'obsidiantools', '--all', '--output', file('src/generated/resources/'), '--existing', file('src/main/resources/')

            mods {
                obsidiantools {
                    source sourceSets.main
                }
            }
        }
    }
}

// Include resources generated by data generators.
sourceSets.main.resources { srcDir 'src/generated/resources' }

repositories {
    // Put repositories for dependencies here
    // ForgeGradle automatically adds the Forge maven and Maven Central for you

    // If you have mod jar dependencies in ./libs, you can declare them as a repository like so:
    // flatDir {
    //     dir 'libs'
    // }
}

dependencies {
    // Specify the version of Minecraft to use. If this is any group other than 'net.minecraft', it is assumed
    // that the dep is a ForgeGradle 'patcher' dependency, and its patches will be applied.
    // The userdev artifact is a special name and will get all sorts of transformations applied to it.
    minecraft 'net.minecraftforge:forge:1.17.1-37.0.34'

    // Real mod deobf dependency examples - these get remapped to your current mappings
    // compileOnly fg.deobf("mezz.jei:jei-${mc_version}:${jei_version}:api") // Adds JEI API as a compile dependency
    // runtimeOnly fg.deobf("mezz.jei:jei-${mc_version}:${jei_version}") // Adds the full JEI mod as a runtime dependency
    // implementation fg.deobf("com.tterrag.registrate:Registrate:MC${mc_version}-${registrate_version}") // Adds registrate as a dependency

    // Examples using mod jars from ./libs
    // implementation fg.deobf("blank:coolmod-${mc_version}:${coolmod_version}")

    // For more info...
    // http://www.gradle.org/docs/current/userguide/artifact_dependencies_tutorial.html
    // http://www.gradle.org/docs/current/userguide/dependency_management.html
}

// Example for how to get properties into the manifest for reading at runtime.
jar {
    manifest {
        attributes([
                "Specification-Title"     : "obsidiantools",
                "Specification-Vendor"    : "obsidiantoolssareus",
                "Specification-Version"   : "1", // We are version 1 of ourselves
                "Implementation-Title"    : project.name,
                "Implementation-Version"  : project.jar.archiveVersion,
                "Implementation-Vendor"   : "obsidiantoolssareus",
                "Implementation-Timestamp": new Date().format("yyyy-MM-dd'T'HH:mm:ssZ")
        ])
    }
}

// Example configuration to allow publishing using the maven-publish plugin
// This is the preferred method to reobfuscate your jar file
jar.finalizedBy('reobfJar')
// However if you are in a multi-project build, dev time needs unobfed jar files, so you can delay the obfuscation until publishing by doing
// publish.dependsOn('reobfJar')

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

 

I'm building with ./gradlew build.

Posted (edited)

The default java environment is systemwide set to version 16. Gradle is using Java 16.0.2, as seen in my initial post. I've added the following line to my gradle.properties file:

org.gradle.java.home=/usr/lib/jvm/java-16-openjdk/

But there was no change.

Edited by LaT3St
Posted

Okay, i did finally fixed the problem. The JRE 16 was installed, the JDK was missing tho.
After running ./gradlew -q javaToolchains, i noticed, that there was an entry for some JDKs and the 16 JRE, which sounded wrong to me.

Weird error message from Gradle... 

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

    • im trying to install 1.21.4 for Minecraft and for some reason it wont install it. I installed the latest version of java and when i try to open to intsall forge it says that java wont work or that it's not installed. if anyone can help that would be great bc all i want is to play minecraft with mods 
    • [18:39:41] [main/INFO]:Fabric mod metadata not found in jar org.groovymc.gml, ignoring [18:39:41] [main/INFO]:Fabric mod metadata not found in jar thedarkcolour.kotlinforforge, ignoring [18:39:42] [main/INFO]:Dependency resolution found 1 candidates to load [18:39:43] [main/INFO]:Found mod file dark-waters-connector-1.20.1-0.0.22_mapped_srg_1.20.1.jar of type MOD with provider org.sinytra.connector.locator.ConnectorLocator@6c8f4bc7 [18:39:43] [main/INFO]:Starting runtime mappings setup... [18:39:43] [main/INFO]:Injecting ScriptModLocator candidates... [18:39:43] [main/INFO]:Injected Jimfs file system [18:39:43] [main/INFO]:Skipped loading script mods from directory C:\Users\wwwSc\curseforge\minecraft\Instances\L SMP (1)\mods\scripts as it did not exist. [18:39:43] [main/INFO]:Injected ScriptModLocator mod candidates. Found 0 valid mod candidates and 0 broken mod files. [18:39:44] [main/INFO]:Successfully made module authlib transformable [18:39:45] [GML Mappings Thread/INFO]:Loaded runtime mappings in 1616ms [18:39:45] [GML Mappings Thread/INFO]:Finished runtime mappings setup. then it crashes
    • Here is the crash report ---- Minecraft Crash Report ---- // My bad. Time: 2024-12-21 17:05:21 Description: Rendering overlay java.lang.RuntimeException: null     at net.minecraftforge.fml.DeferredWorkQueue.runTasks(DeferredWorkQueue.java:58) ~[fmlcore-1.20.1-47.3.0.jar%23533!/:?] {}     at net.minecraftforge.fml.core.ParallelTransition.lambda$finalActivityGenerator$2(ParallelTransition.java:35) ~[forge-1.20.1-47.3.0-universal.jar%23537!/:?] {re:classloading}     at java.util.concurrent.CompletableFuture$UniApply.tryFire(CompletableFuture.java:646) ~[?:?] {}     at java.util.concurrent.CompletableFuture$Completion.run(CompletableFuture.java:482) ~[?:?] {}     at net.minecraft.server.packs.resources.SimpleReloadInstance.m_143940_(SimpleReloadInstance.java:69) ~[client-1.20.1-20230612.114412-srg.jar%23532!/:?] {re:classloading}     at net.minecraft.util.thread.BlockableEventLoop.m_6367_(BlockableEventLoop.java:156) ~[client-1.20.1-20230612.114412-srg.jar%23532!/:?] {re:mixin,pl:accesstransformer:B,re:computing_frames,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B}     at net.minecraft.util.thread.ReentrantBlockableEventLoop.m_6367_(ReentrantBlockableEventLoop.java:23) ~[client-1.20.1-20230612.114412-srg.jar%23532!/:?] {re:mixin,re:computing_frames,re:classloading}     at net.minecraft.util.thread.BlockableEventLoop.m_7245_(BlockableEventLoop.java:130) ~[client-1.20.1-20230612.114412-srg.jar%23532!/:?] {re:mixin,pl:accesstransformer:B,re:computing_frames,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B}     at net.minecraft.util.thread.BlockableEventLoop.m_18699_(BlockableEventLoop.java:115) ~[client-1.20.1-20230612.114412-srg.jar%23532!/:?] {re:mixin,pl:accesstransformer:B,re:computing_frames,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B}     at net.minecraft.client.Minecraft.m_91383_(Minecraft.java:1106) ~[client-1.20.1-20230612.114412-srg.jar%23532!/:?] {re:mixin,pl:accesstransformer:B,pl:runtimedistcleaner:A,re:classloading,pl:accesstransformer:B,pl:mixin:APP:deltaboxlib.mixins.json:event.MinecraftMixin,pl:mixin:APP:glitchcore.mixins.json:client.MixinMinecraft,pl:mixin:APP:supplementaries-common.mixins.json:MinecraftMixin,pl:mixin:APP:architectury.mixins.json:MixinMinecraft,pl:mixin:APP:monolib.mixins.json:MinecraftMixin,pl:mixin:APP:moonlight-common.mixins.json:MinecraftMixin,pl:mixin:A,pl:runtimedistcleaner:A}     at net.minecraft.client.Minecraft.m_91374_(Minecraft.java:718) ~[client-1.20.1-20230612.114412-srg.jar%23532!/:?] {re:mixin,pl:accesstransformer:B,pl:runtimedistcleaner:A,re:classloading,pl:accesstransformer:B,pl:mixin:APP:deltaboxlib.mixins.json:event.MinecraftMixin,pl:mixin:APP:glitchcore.mixins.json:client.MixinMinecraft,pl:mixin:APP:supplementaries-common.mixins.json:MinecraftMixin,pl:mixin:APP:architectury.mixins.json:MixinMinecraft,pl:mixin:APP:monolib.mixins.json:MinecraftMixin,pl:mixin:APP:moonlight-common.mixins.json:MinecraftMixin,pl:mixin:A,pl:runtimedistcleaner:A}     at net.minecraft.client.main.Main.main(Main.java:218) ~[forge-47.3.0.jar:?] {re:classloading,pl:runtimedistcleaner:A}     at jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:?] {}     at jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) ~[?:?] {}     at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:?] {}     at java.lang.reflect.Method.invoke(Method.java:568) ~[?:?] {}     at net.minecraftforge.fml.loading.targets.CommonLaunchHandler.runTarget(CommonLaunchHandler.java:111) ~[fmlloader-1.20.1-47.3.0.jar:?] {}     at net.minecraftforge.fml.loading.targets.CommonLaunchHandler.clientService(CommonLaunchHandler.java:99) ~[fmlloader-1.20.1-47.3.0.jar:?] {}     at net.minecraftforge.fml.loading.targets.CommonClientLaunchHandler.lambda$makeService$0(CommonClientLaunchHandler.java:25) ~[fmlloader-1.20.1-47.3.0.jar:?] {}     at cpw.mods.modlauncher.LaunchServiceHandlerDecorator.launch(LaunchServiceHandlerDecorator.java:30) ~[modlauncher-10.0.9.jar:?] {}     at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:53) ~[modlauncher-10.0.9.jar:?] {}     at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:71) ~[modlauncher-10.0.9.jar:?] {}     at cpw.mods.modlauncher.Launcher.run(Launcher.java:108) ~[modlauncher-10.0.9.jar:?] {}     at cpw.mods.modlauncher.Launcher.main(Launcher.java:78) ~[modlauncher-10.0.9.jar:?] {}     at cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:26) ~[modlauncher-10.0.9.jar:?] {}     at cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:23) ~[modlauncher-10.0.9.jar:?] {}     at cpw.mods.bootstraplauncher.BootstrapLauncher.main(BootstrapLauncher.java:141) ~[bootstraplauncher-1.1.2.jar:?] {}     Suppressed: java.lang.NoSuchFieldError: DEAD_PLANKS         at com.alekiponi.alekishipsbop.BOPWood.lambda$static$0(BOPWood.java:23) ~[niftyShipsBiomesOPlenty-FORGE-1.20.1-1.0.4.jar%23481!/:1.0.4] {re:classloading}         at com.alekiponi.alekishipsbop.BOPWood.registerFrames(BOPWood.java:48) ~[niftyShipsBiomesOPlenty-FORGE-1.20.1-1.0.4.jar%23481!/:1.0.4] {re:classloading}         at com.alekiponi.alekishipsbop.AlekiShipsBOP.lambda$setup$0(AlekiShipsBOP.java:42) ~[niftyShipsBiomesOPlenty-FORGE-1.20.1-1.0.4.jar%23481!/:1.0.4] {re:classloading}         at java.util.concurrent.CompletableFuture$AsyncRun.run(CompletableFuture.java:1804) ~[?:?] {}         at net.minecraftforge.fml.DeferredWorkQueue.lambda$makeRunnable$2(DeferredWorkQueue.java:81) ~[fmlcore-1.20.1-47.3.0.jar%23533!/:?] {}         at net.minecraftforge.fml.DeferredWorkQueue.makeRunnable(DeferredWorkQueue.java:76) ~[fmlcore-1.20.1-47.3.0.jar%23533!/:?] {}         at net.minecraftforge.fml.DeferredWorkQueue.lambda$runTasks$0(DeferredWorkQueue.java:60) ~[fmlcore-1.20.1-47.3.0.jar%23533!/:?] {}         at java.util.concurrent.ConcurrentLinkedDeque.forEach(ConcurrentLinkedDeque.java:1650) ~[?:?] {}         at net.minecraftforge.fml.DeferredWorkQueue.runTasks(DeferredWorkQueue.java:60) ~[fmlcore-1.20.1-47.3.0.jar%23533!/:?] {}         at net.minecraftforge.fml.core.ParallelTransition.lambda$finalActivityGenerator$2(ParallelTransition.java:35) ~[forge-1.20.1-47.3.0-universal.jar%23537!/:?] {re:classloading}         at java.util.concurrent.CompletableFuture$UniApply.tryFire(CompletableFuture.java:646) ~[?:?] {}         at java.util.concurrent.CompletableFuture$Completion.run(CompletableFuture.java:482) ~[?:?] {}         at net.minecraft.server.packs.resources.SimpleReloadInstance.m_143940_(SimpleReloadInstance.java:69) ~[client-1.20.1-20230612.114412-srg.jar%23532!/:?] {re:classloading}         at net.minecraft.util.thread.BlockableEventLoop.m_6367_(BlockableEventLoop.java:156) ~[client-1.20.1-20230612.114412-srg.jar%23532!/:?] {re:mixin,pl:accesstransformer:B,re:computing_frames,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B}         at net.minecraft.util.thread.ReentrantBlockableEventLoop.m_6367_(ReentrantBlockableEventLoop.java:23) ~[client-1.20.1-20230612.114412-srg.jar%23532!/:?] {re:mixin,re:computing_frames,re:classloading}         at net.minecraft.util.thread.BlockableEventLoop.m_7245_(BlockableEventLoop.java:130) ~[client-1.20.1-20230612.114412-srg.jar%23532!/:?] {re:mixin,pl:accesstransformer:B,re:computing_frames,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B}         at net.minecraft.util.thread.BlockableEventLoop.m_18699_(BlockableEventLoop.java:115) ~[client-1.20.1-20230612.114412-srg.jar%23532!/:?] {re:mixin,pl:accesstransformer:B,re:computing_frames,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B}         at net.minecraft.client.Minecraft.m_91383_(Minecraft.java:1106) ~[client-1.20.1-20230612.114412-srg.jar%23532!/:?] {re:mixin,pl:accesstransformer:B,pl:runtimedistcleaner:A,re:classloading,pl:accesstransformer:B,pl:mixin:APP:deltaboxlib.mixins.json:event.MinecraftMixin,pl:mixin:APP:glitchcore.mixins.json:client.MixinMinecraft,pl:mixin:APP:supplementaries-common.mixins.json:MinecraftMixin,pl:mixin:APP:architectury.mixins.json:MixinMinecraft,pl:mixin:APP:monolib.mixins.json:MinecraftMixin,pl:mixin:APP:moonlight-common.mixins.json:MinecraftMixin,pl:mixin:A,pl:runtimedistcleaner:A}         at net.minecraft.client.Minecraft.m_91374_(Minecraft.java:718) ~[client-1.20.1-20230612.114412-srg.jar%23532!/:?] {re:mixin,pl:accesstransformer:B,pl:runtimedistcleaner:A,re:classloading,pl:accesstransformer:B,pl:mixin:APP:deltaboxlib.mixins.json:event.MinecraftMixin,pl:mixin:APP:glitchcore.mixins.json:client.MixinMinecraft,pl:mixin:APP:supplementaries-common.mixins.json:MinecraftMixin,pl:mixin:APP:architectury.mixins.json:MixinMinecraft,pl:mixin:APP:monolib.mixins.json:MinecraftMixin,pl:mixin:APP:moonlight-common.mixins.json:MinecraftMixin,pl:mixin:A,pl:runtimedistcleaner:A}         at net.minecraft.client.main.Main.main(Main.java:218) ~[forge-47.3.0.jar:?] {re:classloading,pl:runtimedistcleaner:A}         at jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:?] {}         at jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) ~[?:?] {}         at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:?] {}         at java.lang.reflect.Method.invoke(Method.java:568) ~[?:?] {}         at net.minecraftforge.fml.loading.targets.CommonLaunchHandler.runTarget(CommonLaunchHandler.java:111) ~[fmlloader-1.20.1-47.3.0.jar:?] {}         at net.minecraftforge.fml.loading.targets.CommonLaunchHandler.clientService(CommonLaunchHandler.java:99) ~[fmlloader-1.20.1-47.3.0.jar:?] {}         at net.minecraftforge.fml.loading.targets.CommonClientLaunchHandler.lambda$makeService$0(CommonClientLaunchHandler.java:25) ~[fmlloader-1.20.1-47.3.0.jar:?] {}         at cpw.mods.modlauncher.LaunchServiceHandlerDecorator.launch(LaunchServiceHandlerDecorator.java:30) ~[modlauncher-10.0.9.jar:?] {}         at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:53) ~[modlauncher-10.0.9.jar:?] {}         at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:71) ~[modlauncher-10.0.9.jar:?] {}         at cpw.mods.modlauncher.Launcher.run(Launcher.java:108) ~[modlauncher-10.0.9.jar:?] {}         at cpw.mods.modlauncher.Launcher.main(Launcher.java:78) ~[modlauncher-10.0.9.jar:?] {}         at cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:26) ~[modlauncher-10.0.9.jar:?] {}         at cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:23) ~[modlauncher-10.0.9.jar:?] {}         at cpw.mods.bootstraplauncher.BootstrapLauncher.main(BootstrapLauncher.java:141) ~[bootstraplauncher-1.1.2.jar:?] {} A detailed walkthrough of the error, its code path and all known details is as follows: --------------------------------------------------------------------------------------- -- Head -- Thread: Render thread Suspected Mods: NONE Stacktrace:     at net.minecraftforge.fml.DeferredWorkQueue.runTasks(DeferredWorkQueue.java:58) ~[fmlcore-1.20.1-47.3.0.jar%23533!/:?] {}     at net.minecraftforge.fml.core.ParallelTransition.lambda$finalActivityGenerator$2(ParallelTransition.java:35) ~[forge-1.20.1-47.3.0-universal.jar%23537!/:?] {re:classloading}     at java.util.concurrent.CompletableFuture$UniApply.tryFire(CompletableFuture.java:646) ~[?:?] {}     at java.util.concurrent.CompletableFuture$Completion.run(CompletableFuture.java:482) ~[?:?] {}     at net.minecraft.server.packs.resources.SimpleReloadInstance.m_143940_(SimpleReloadInstance.java:69) ~[client-1.20.1-20230612.114412-srg.jar%23532!/:?] {re:classloading}     at net.minecraft.util.thread.BlockableEventLoop.m_6367_(BlockableEventLoop.java:156) ~[client-1.20.1-20230612.114412-srg.jar%23532!/:?] {re:mixin,pl:accesstransformer:B,re:computing_frames,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B}     at net.minecraft.util.thread.ReentrantBlockableEventLoop.m_6367_(ReentrantBlockableEventLoop.java:23) ~[client-1.20.1-20230612.114412-srg.jar%23532!/:?] {re:mixin,re:computing_frames,re:classloading}     at net.minecraft.util.thread.BlockableEventLoop.m_7245_(BlockableEventLoop.java:130) ~[client-1.20.1-20230612.114412-srg.jar%23532!/:?] {re:mixin,pl:accesstransformer:B,re:computing_frames,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B} -- Overlay render details -- Details:     Overlay name: net.minecraftforge.client.loading.ForgeLoadingOverlay Stacktrace:     at net.minecraft.client.renderer.GameRenderer.m_109093_(GameRenderer.java:957) ~[client-1.20.1-20230612.114412-srg.jar%23532!/:?] {re:mixin,pl:accesstransformer:B,pl:runtimedistcleaner:A,re:classloading,pl:accesstransformer:B,pl:mixin:A,pl:runtimedistcleaner:A}     at net.minecraft.client.Minecraft.m_91383_(Minecraft.java:1146) ~[client-1.20.1-20230612.114412-srg.jar%23532!/:?] {re:mixin,pl:accesstransformer:B,pl:runtimedistcleaner:A,re:classloading,pl:accesstransformer:B,pl:mixin:APP:deltaboxlib.mixins.json:event.MinecraftMixin,pl:mixin:APP:glitchcore.mixins.json:client.MixinMinecraft,pl:mixin:APP:supplementaries-common.mixins.json:MinecraftMixin,pl:mixin:APP:architectury.mixins.json:MixinMinecraft,pl:mixin:APP:monolib.mixins.json:MinecraftMixin,pl:mixin:APP:moonlight-common.mixins.json:MinecraftMixin,pl:mixin:A,pl:runtimedistcleaner:A}     at net.minecraft.client.Minecraft.m_91374_(Minecraft.java:718) ~[client-1.20.1-20230612.114412-srg.jar%23532!/:?] {re:mixin,pl:accesstransformer:B,pl:runtimedistcleaner:A,re:classloading,pl:accesstransformer:B,pl:mixin:APP:deltaboxlib.mixins.json:event.MinecraftMixin,pl:mixin:APP:glitchcore.mixins.json:client.MixinMinecraft,pl:mixin:APP:supplementaries-common.mixins.json:MinecraftMixin,pl:mixin:APP:architectury.mixins.json:MixinMinecraft,pl:mixin:APP:monolib.mixins.json:MinecraftMixin,pl:mixin:APP:moonlight-common.mixins.json:MinecraftMixin,pl:mixin:A,pl:runtimedistcleaner:A}     at net.minecraft.client.main.Main.main(Main.java:218) ~[forge-47.3.0.jar:?] {re:classloading,pl:runtimedistcleaner:A}     at jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:?] {}     at jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) ~[?:?] {}     at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:?] {}     at java.lang.reflect.Method.invoke(Method.java:568) ~[?:?] {}     at net.minecraftforge.fml.loading.targets.CommonLaunchHandler.runTarget(CommonLaunchHandler.java:111) ~[fmlloader-1.20.1-47.3.0.jar:?] {}     at net.minecraftforge.fml.loading.targets.CommonLaunchHandler.clientService(CommonLaunchHandler.java:99) ~[fmlloader-1.20.1-47.3.0.jar:?] {}     at net.minecraftforge.fml.loading.targets.CommonClientLaunchHandler.lambda$makeService$0(CommonClientLaunchHandler.java:25) ~[fmlloader-1.20.1-47.3.0.jar:?] {}     at cpw.mods.modlauncher.LaunchServiceHandlerDecorator.launch(LaunchServiceHandlerDecorator.java:30) ~[modlauncher-10.0.9.jar:?] {}     at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:53) ~[modlauncher-10.0.9.jar:?] {}     at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:71) ~[modlauncher-10.0.9.jar:?] {}     at cpw.mods.modlauncher.Launcher.run(Launcher.java:108) ~[modlauncher-10.0.9.jar:?] {}     at cpw.mods.modlauncher.Launcher.main(Launcher.java:78) ~[modlauncher-10.0.9.jar:?] {}     at cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:26) ~[modlauncher-10.0.9.jar:?] {}     at cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:23) ~[modlauncher-10.0.9.jar:?] {}     at cpw.mods.bootstraplauncher.BootstrapLauncher.main(BootstrapLauncher.java:141) ~[bootstraplauncher-1.1.2.jar:?] {} -- Last reload -- Details:     Reload number: 1     Reload reason: initial     Finished: No     Packs: vanilla, mod_resources, Moonlight Mods Dynamic Assets -- System Details -- Details:     Minecraft Version: 1.20.1     Minecraft Version ID: 1.20.1     Operating System: Windows 11 (amd64) version 10.0     Java Version: 17.0.8, Microsoft     Java VM Version: OpenJDK 64-Bit Server VM (mixed mode), Microsoft     Memory: 2721807184 bytes (2595 MiB) / 5402263552 bytes (5152 MiB) up to 13019119616 bytes (12416 MiB)     CPUs: 16     Processor Vendor: GenuineIntel     Processor Name: 11th Gen Intel(R) Core(TM) i7-11800H @ 2.30GHz     Identifier: Intel64 Family 6 Model 141 Stepping 1     Microarchitecture: unknown     Frequency (GHz): 2.30     Number of physical packages: 1     Number of physical CPUs: 8     Number of logical CPUs: 16     Graphics card #0 name: NVIDIA GeForce RTX 3050 Ti Laptop GPU     Graphics card #0 vendor: NVIDIA (0x10de)     Graphics card #0 VRAM (MB): 4095.00     Graphics card #0 deviceId: 0x25a0     Graphics card #0 versionInfo: DriverVersion=31.0.15.4601     Graphics card #1 name: Intel(R) UHD Graphics     Graphics card #1 vendor: Intel Corporation (0x8086)     Graphics card #1 VRAM (MB): 1024.00     Graphics card #1 deviceId: 0x9a60     Graphics card #1 versionInfo: DriverVersion=30.0.100.9864     Memory slot #0 capacity (MB): 8192.00     Memory slot #0 clockSpeed (GHz): 3.20     Memory slot #0 type: DDR4     Memory slot #1 capacity (MB): 8192.00     Memory slot #1 clockSpeed (GHz): 3.20     Memory slot #1 type: DDR4     Virtual memory max (MB): 37651.30     Virtual memory used (MB): 31003.50     Swap memory total (MB): 21504.00     Swap memory used (MB): 2837.69     JVM Flags: 4 total; -XX:HeapDumpPath=MojangTricksIntelDriversForPerformance_javaw.exe_minecraft.exe.heapdump -Xss1M -Xmx12416m -Xms256m     Launched Version: forge-47.3.0     Backend library: LWJGL version 3.3.1 build 7     Backend API: NVIDIA GeForce RTX 3050 Ti Laptop GPU/PCIe/SSE2 GL version 4.6.0 NVIDIA 546.01, NVIDIA Corporation     Window size: 1024x768     GL Caps: Using framebuffer using OpenGL 3.2     GL debug messages:      Using VBOs: Yes     Is Modded: Definitely; Client brand changed to 'forge'     Type: Client (map_client.txt)     Graphics mode: fancy     Resource Packs:      Current Language: en_us     CPU: 16x 11th Gen Intel(R) Core(TM) i7-11800H @ 2.30GHz     ModLauncher: 10.0.9+10.0.9+main.dcd20f30     ModLauncher launch target: forgeclient     ModLauncher naming: srg     ModLauncher services:          mixin-0.8.5.jar mixin PLUGINSERVICE          eventbus-6.0.5.jar eventbus PLUGINSERVICE          fmlloader-1.20.1-47.3.0.jar slf4jfixer PLUGINSERVICE          fmlloader-1.20.1-47.3.0.jar object_holder_definalize PLUGINSERVICE          fmlloader-1.20.1-47.3.0.jar runtime_enum_extender PLUGINSERVICE          fmlloader-1.20.1-47.3.0.jar capability_token_subclass PLUGINSERVICE          accesstransformers-8.0.4.jar accesstransformer PLUGINSERVICE          fmlloader-1.20.1-47.3.0.jar runtimedistcleaner PLUGINSERVICE          modlauncher-10.0.9.jar mixin TRANSFORMATIONSERVICE          modlauncher-10.0.9.jar fml TRANSFORMATIONSERVICE      FML Language Providers:          [email protected]         [email protected]         javafml@null         lowcodefml@null     Mod List:          decorativecovers 1.20.1 - v1.2 - Forge.jar        |Decorative covers             |decorativecovers              |1.20.1              |SIDED_SETU|Manifest: NOSIGNATURE         berries_and_cherries-1.0.9-hotfix.jar             |Berries And Cherries          |berries_and_cherries          |1.0.9               |SIDED_SETU|Manifest: NOSIGNATURE         scena-forge-1.0.103.jar                           |Scena                         |scena                         |1.0.103             |SIDED_SETU|Manifest: NOSIGNATURE         braziliandelight-1.1.0-all.jar                    |Brazilian Delight             |braziliandelight              |1.1.0               |SIDED_SETU|Manifest: NOSIGNATURE         mcw-windows-2.3.0-mc1.20.1forge.jar               |Macaw's Windows               |mcwwindows                    |2.3.0               |SIDED_SETU|Manifest: NOSIGNATURE         aquaculture_delight_1.0.0_forge_1.20.1.jar        |Aquaculture Delight           |aquaculturedelight            |1.0.0               |SIDED_SETU|Manifest: NOSIGNATURE         ForgeEndertech-1.20.1-11.1.5.0-build.0890.jar     |ForgeEndertech                |forgeendertech                |11.1.5.0            |SIDED_SETU|Manifest: NOSIGNATURE         YungsApi-1.20-Forge-4.0.6.jar                     |YUNG's API                    |yungsapi                      |1.20-Forge-4.0.6    |SIDED_SETU|Manifest: NOSIGNATURE         mcw-stairs-1.0.0-1.20.1forge.jar                  |Macaw's Stairs and Balconies  |mcwstairs                     |1.0.0               |SIDED_SETU|Manifest: NOSIGNATURE         brazildelight-1.0.1-1.20.1.jar                    |Brazil Delight                |brazildelight                 |1.0.1-1.20.1        |SIDED_SETU|Manifest: NOSIGNATURE         honeydelight-1.0.2.1-1.20.1.jar                   |Honey Delight                 |honeydelight                  |1.0.2.1-1.20.1      |SIDED_SETU|Manifest: NOSIGNATURE         Compat_FarmersDelight.jar                         |Farmer's Delight Compat       |farmersdelightcompat          |1.0.0               |SIDED_SETU|Manifest: NOSIGNATURE         decorative_bottles-0.1.3.jar                      |Decorative Bottles            |decorativebottles             |1.20.1 - 0.1.3      |SIDED_SETU|Manifest: NOSIGNATURE         vminus-3.1.1.jar                                  |V-Minus                       |vminus                        |1.0.0               |SIDED_SETU|Manifest: NOSIGNATURE         athena-forge-1.20.1-3.1.2.jar                     |Athena                        |athena                        |3.1.2               |SIDED_SETU|Manifest: NOSIGNATURE         lmft-1.0.4+1.20.1-forge.jar                       |Load My F***ing Tags          |lmft                          |1.0.4+1.20.1        |SIDED_SETU|Manifest: NOSIGNATURE         vintagedelight-0.1.6.jar                          |Vintage Delight               |vintagedelight                |0.1.6               |SIDED_SETU|Manifest: NOSIGNATURE         handcrafted-forge-1.20.1-3.0.6.jar                |Handcrafted                   |handcrafted                   |3.0.6               |SIDED_SETU|Manifest: NOSIGNATURE         alekiNiftyShips-FORGE-1.20.1-1.0.13.jar           |aleki's Nifty Ships           |alekiships                    |1.0.13              |SIDED_SETU|Manifest: NOSIGNATURE         copperandtuffbackport-1.2.jar                     |Copper & Tuff Backport        |copperandtuffbackport         |1.2                 |SIDED_SETU|Manifest: NOSIGNATURE         pizzadelight-1.20.1-1.0.0.jar                     |Pizza Delight                 |pizzadelight                  |1.0.0               |SIDED_SETU|Manifest: NOSIGNATURE         mcw-trapdoors-1.1.4-mc1.20.1forge.jar             |Macaw's Trapdoors             |mcwtrpdoors                   |1.1.4               |SIDED_SETU|Manifest: NOSIGNATURE         ManyIdeasCore-1.20.1-1.4.2.jar                    |ManyIdeas Core                |manyideas_core                |1.4.2               |SIDED_SETU|Manifest: NOSIGNATURE         workers-1.20.1-1.7.8.jar                          |Workers Mod                   |workers                       |1.7.8               |SIDED_SETU|Manifest: NOSIGNATURE         extlights-5.1-for-1.20.1.jar                      |Extended Lights               |extlights                     |5.1-for-1.20.1      |SIDED_SETU|Manifest: NOSIGNATURE         ModernxlSurvival_1.3.2_v1.20.1.jar                |Modernxl_II                   |modernxl_ii                   |1.3.2               |SIDED_SETU|Manifest: NOSIGNATURE         MushroomQuest-1.20.1-v4.1.2.jar                   |Mushroom Quest                |mushroomquest                 |4.0.0               |SIDED_SETU|Manifest: NOSIGNATURE         Butchersdelight Foods beta 1.20.1 1.0.3.jar       |ButchersDelightfoods          |butchersdelightfoods          |1.20.11.0.3         |SIDED_SETU|Manifest: NOSIGNATURE         mcw-roofs-2.3.1-mc1.20.1forge.jar                 |Macaw's Roofs                 |mcwroofs                      |2.3.1               |SIDED_SETU|Manifest: NOSIGNATURE         Chimes-v2.0.1-1.20.1.jar                          |Chimes                        |chimes                        |2.0.1               |SIDED_SETU|Manifest: NOSIGNATURE         AdChimneys-1.20.1-10.1.15.0-build.0828.jar        |Advanced Chimneys             |adchimneys                    |10.1.15.0           |SIDED_SETU|Manifest: NOSIGNATURE         JadeAddons-1.20.1-Forge-5.3.1.jar                 |Jade Addons                   |jadeaddons                    |5.3.1+forge         |SIDED_SETU|Manifest: NOSIGNATURE         l2library-2.4.25-slim.jar                         |L2 Library                    |l2library                     |2.4.25              |SIDED_SETU|Manifest: NOSIGNATURE         exoticbirds-1.20.1-1.0.0.jar                      |Exotic Birds                  |exoticbirds                   |1.0.0               |SIDED_SETU|Manifest: NOSIGNATURE         tradedelight-1.0.2.1-1.20.1.jar                   |Trade Delight                 |tradedelight                  |1.0.2.1-1.20.1      |SIDED_SETU|Manifest: NOSIGNATURE         recruits-1.20.1-1.12.3.jar                        |Recruits Mod                  |recruits                      |1.12.3              |SIDED_SETU|Manifest: NOSIGNATURE         mcw-lights-1.1.0-mc1.20.1forge.jar                |Macaw's Lights and Lamps      |mcwlights                     |1.1.0               |SIDED_SETU|Manifest: NOSIGNATURE         Better_Dogs_X_Doggy_Talents_Next_v1.2.2 [Forge] - |Better Dogs For DTN           |betterdogs_dtn                |1.2.2               |SIDED_SETU|Manifest: NOSIGNATURE         spanishdelight-1.0.1-1.20.1.jar                   |Spanish Delight               |spanishdelight                |1.0.0-1.20.1        |SIDED_SETU|Manifest: NOSIGNATURE         jei-1.20.1-forge-15.20.0.105.jar                  |Just Enough Items             |jei                           |15.20.0.105         |SIDED_SETU|Manifest: NOSIGNATURE         deltaboxlib-1.1.2.jar                             |Deltabox Lib                  |deltaboxlib                   |1.1.2               |SIDED_SETU|Manifest: NOSIGNATURE         archbows-1.1.9-1.20.1.jar                         |Arch Bows                     |archbows                      |1.1.9-1.20.1        |SIDED_SETU|Manifest: NOSIGNATURE         sunflowerdelight-1.20.1-1.0.4.jar                 |Sunflower Delight             |sunflowerdelight              |1.0.4               |SIDED_SETU|Manifest: NOSIGNATURE         justawrench-1.20.1-2.0.0.jar                      |Just a Wrench                 |justawrench                   |2.0.0               |SIDED_SETU|Manifest: NOSIGNATURE         EpheroLib-1.20.1-FORGE-1.2.0.jar                  |BOZOID                        |epherolib                     |0.1.2               |SIDED_SETU|Manifest: NOSIGNATURE         untamedwilds-1.20.1-4.0.4.jar                     |Untamed Wilds                 |untamedwilds                  |4.0.4               |SIDED_SETU|Manifest: NOSIGNATURE         just_bees-0.4 BETA.jar                            |Just Bees                     |just_bees                     |0.4                 |SIDED_SETU|Manifest: NOSIGNATURE         GlitchCore-forge-1.20.1-0.0.1.1.jar               |GlitchCore                    |glitchcore                    |0.0.1.1             |SIDED_SETU|Manifest: NOSIGNATURE         SereneSeasons-forge-1.20.1-9.1.0.0.jar            |Serene Seasons                |sereneseasons                 |9.1.0.0             |SIDED_SETU|Manifest: NOSIGNATURE         cratedelight-24.11.29-1.20-forge.jar              |Crate Delight                 |cratedelight                  |24.11.29-1.20-forge |SIDED_SETU|Manifest: NOSIGNATURE         forge-1.20.1-47.3.0-universal.jar                 |Forge                         |forge                         |47.3.0              |SIDED_SETU|Manifest: 84:ce:76:e8:45:35:e4:0e:63:86:df:47:59:80:0f:67:6c:c1:5f:6e:5f:4d:b3:54:47:1a:9f:7f:ed:5e:f2:90         mcw-paths-1.0.5-1.20.1forge.jar                   |Macaw's Paths and Pavings     |mcwpaths                      |1.0.5               |SIDED_SETU|Manifest: NOSIGNATURE         DistractingTrims-Forge-1.20.1-2.0.4.jar           |DistractingTrims              |distractingtrims              |2.0.4               |SIDED_SETU|Manifest: eb:c4:b1:67:8b:f9:0c:db:dc:4f:01:b1:8e:61:64:39:4c:10:85:0b:a6:c4:c7:48:f0:fa:95:f2:cb:08:3a:e5         client-1.20.1-20230612.114412-srg.jar             |Minecraft                     |minecraft                     |1.20.1              |SIDED_SETU|Manifest: a1:d4:5e:04:4f:d3:d6:e0:7b:37:97:cf:77:b0:de:ad:4a:47:ce:8c:96:49:5f:0a:cf:8c:ae:b2:6d:4b:8a:3f         reevesfurniture-1.3012-forge-1.20.1.jar           |Reeves Furniture              |reevesfurniture               |1.3012              |SIDED_SETU|Manifest: NOSIGNATURE         castlearchitecture-1.0.1-forge-1.20.1.jar         |Castle Architecture           |castlearchitecture            |1.0.1               |SIDED_SETU|Manifest: NOSIGNATURE         soldiers_delight-1.1.0.jar                        |Soldier's Delight             |chaseisntasoldier             |1.1.0               |SIDED_SETU|Manifest: NOSIGNATURE         mexicans_delight-1.1.1-forge-1.20.1.jar           |Mexicans' Delight             |mexicans_delight              |1.1.0               |SIDED_SETU|Manifest: NOSIGNATURE         decorativewoodenlattices 1.20.1 - v1.6 - Forge.jar|Decorative wooden lattices    |decorativewoodenlattices      |1.20                |SIDED_SETU|Manifest: NOSIGNATURE         TerraBlender-forge-1.20.1-3.0.1.7.jar             |TerraBlender                  |terrablender                  |3.0.1.7             |SIDED_SETU|Manifest: NOSIGNATURE         BiomesOPlenty-forge-1.20.1-19.0.0.91.jar          |Biomes O' Plenty              |biomesoplenty                 |19.0.0.91           |SIDED_SETU|Manifest: NOSIGNATURE         GuardRibbits-1.20.1-Forge-1.0.6.jar               |Guard Ribbits                 |guardribbits                  |1.20.1-Forge-1.0.6  |SIDED_SETU|Manifest: NOSIGNATURE         commonality-1.20.1-7.0.0.jar                      |Commonality                   |commonality                   |7.0.0               |SIDED_SETU|Manifest: NOSIGNATURE         delightfulburgers-1.20.1.jar                      |Delightful Burgers            |delightfulburgers             |1.20.1              |SIDED_SETU|Manifest: NOSIGNATURE         animal_armor_trims-merged-1.20.1-1.0.0.jar        |Animal Armor Trims: Horses    |animal_armor_trims            |1.0.0               |SIDED_SETU|Manifest: NOSIGNATURE         (1.20.1) copperworks-beta-1.5.1.jar               |Copperworks                   |copperworks                   |1.5.1               |SIDED_SETU|Manifest: NOSIGNATURE         kffmod-4.11.0.jar                                 |Kotlin For Forge              |kotlinforforge                |4.11.0              |SIDED_SETU|Manifest: NOSIGNATURE         farmersrespite-1.20.1-2.1.2.jar                   |Farmer's Respite              |farmersrespite                |1.20.1-2.1          |SIDED_SETU|Manifest: NOSIGNATURE         decoration-delight-1.20.1.jar                     |Decoration Delight            |decoration_delight            |1.0.0               |SIDED_SETU|Manifest: NOSIGNATURE         Croptopia-1.20.1-FORGE-3.0.4.jar                  |Croptopia                     |croptopia                     |3.0.4               |SIDED_SETU|Manifest: NOSIGNATURE         ManyIdeasDoors-1.20.1-1.2.3.jar                   |ManyIdeas Doors               |manyideas_doors               |1.2.3               |SIDED_SETU|Manifest: NOSIGNATURE         Argentina's delight 1.20.1 (3.0 beta).jar         |Argentina's Delight           |argentinas_delight            |1.3                 |SIDED_SETU|Manifest: NOSIGNATURE         SlavicDelight-1.20.1-0.2.1-beta.jar               |Slavic Delight                |slavic_delight                |0.2                 |SIDED_SETU|Manifest: NOSIGNATURE         Aquaculture-1.20.1-2.5.3.jar                      |Aquaculture 2                 |aquaculture                   |2.5.3               |SIDED_SETU|Manifest: NOSIGNATURE         SimplyGate.jar                                    |SimplyGates                   |simplygates                   |1.0.0               |SIDED_SETU|Manifest: NOSIGNATURE         ukrainedelight-1.0.1-1.20.1.jar                   |Ukraine Delight               |ukrainedelight                |1.0.1-1.20.1        |SIDED_SETU|Manifest: NOSIGNATURE         solar_surfer-1.0.0-forge-1.20.1.jar               |Solar Surfer                  |solar_surfer                  |1.0.0               |SIDED_SETU|Manifest: NOSIGNATURE         frycooks_delight-1.20.1-1.0.1.jar                 |Frycook's Delight             |frycooks_delight              |1.20.1-1.0.1        |SIDED_SETU|Manifest: NOSIGNATURE         fruitsdelight-1.0.14.jar                          |Fruits Delight                |fruitsdelight                 |1.0.14              |SIDED_SETU|Manifest: NOSIGNATURE         chaseisration-1.3.5.1-forge-1.20.1.jar            |Rationcraft                   |chaseisration                 |1.3.5.1             |SIDED_SETU|Manifest: NOSIGNATURE         geckolib-forge-1.20.1-4.4.9.jar                   |GeckoLib 4                    |geckolib                      |4.4.9               |SIDED_SETU|Manifest: NOSIGNATURE         Skarts-Decorations-0.3.1-(1.20.1).jar             |Skart's Decorations           |skd                           |0.3.1               |SIDED_SETU|Manifest: NOSIGNATURE         decorativerailings 1.20.1 - v1.1 - Forge.jar      |Decorative Railings           |decorativerailings            |1.20.1              |SIDED_SETU|Manifest: NOSIGNATURE         ingredientsdelight-1.0.3-1.20.1.jar               |Ingredients Delight           |ingredientsdelight            |1.0.3-1.20.1        |SIDED_SETU|Manifest: NOSIGNATURE         naturalist-forge-4.0.3-1.20.1.jar                 |Naturalist                    |naturalist                    |4.0.3               |SIDED_SETU|Manifest: NOSIGNATURE         DoggyTalentsNext-1.20.1-1.18.38.jar               |Doggy Talents Next            |doggytalents                  |1.18.38             |SIDED_SETU|Manifest: NOSIGNATURE         Compat_AlexsMobs-Naturalist.jar                   |Alex's Mobs - Naturalist Compa|alexsmobsnaturalistcompat     |1.0.0               |SIDED_SETU|Manifest: NOSIGNATURE         biomesoplentydelight-1.1.0-1.20.1.jar             |Biomes O'Plenty Delight       |biomesoplentydelight          |1.1.0-1.20.1        |SIDED_SETU|Manifest: NOSIGNATURE         sophisticatedcore-1.20.1-1.0.1.809.jar            |Sophisticated Core            |sophisticatedcore             |1.0.1.809           |SIDED_SETU|Manifest: NOSIGNATURE         EggDelight-v1.2-1.20.1.jar                        |Egg Delight                   |eggdelight                    |1.2                 |SIDED_SETU|Manifest: NOSIGNATURE         japandelight-1.0.1-1.20.1.jar                     |Japan Delight                 |japandelight                  |1.0.1-1.20.1        |SIDED_SETU|Manifest: NOSIGNATURE         citadel-2.6.1-1.20.1.jar                          |Citadel                       |citadel                       |2.6.1               |SIDED_SETU|Manifest: NOSIGNATURE         alexsmobs-1.22.9.jar                              |Alex's Mobs                   |alexsmobs                     |1.22.9              |SIDED_SETU|Manifest: NOSIGNATURE         chinadelight-1.0.1-1.20.1.jar                     |China Delight                 |chinadelight                  |1.0.1-1.20.1        |SIDED_SETU|Manifest: NOSIGNATURE         decorativelattices 1.20.1 - 1.8 Forge.jar         |Decorative Lattices           |decorativelattices            |1.20.1              |SIDED_SETU|Manifest: NOSIGNATURE         mixinextras-forge-0.2.0.jar                       |MixinExtras                   |mixinextras                   |0.2.0               |SIDED_SETU|Manifest: NOSIGNATURE         copper_spikes-2.0.0.jar                           |Copper Spikes                 |copper_spikes                 |1.0.0               |SIDED_SETU|Manifest: NOSIGNATURE         alexstrade-1.0.0-1.20.1.jar                       |Alex's Trade                  |alexstrade                    |1.0.0-1.20.1        |SIDED_SETU|Manifest: NOSIGNATURE         storagedelight-24.12.15-1.20-forge.jar            |Storage Delight               |storagedelight                |24.12.15-1.20-forge |SIDED_SETU|Manifest: NOSIGNATURE         sophisticatedbackpacks-1.20.1-3.20.17.1150.jar    |Sophisticated Backpacks       |sophisticatedbackpacks        |3.20.17.1150        |SIDED_SETU|Manifest: NOSIGNATURE         Skay's Flowery 1.0.jar                            |Skay's Flowery                |skaysflowery                  |1.0                 |SIDED_SETU|Manifest: NOSIGNATURE         mcw-doors-1.1.1forge-mc1.20.1.jar                 |Macaw's Doors                 |mcwdoors                      |1.1.1               |SIDED_SETU|Manifest: NOSIGNATURE         DragNs_Livestock_Overhaul-1.20.1-1.7.jar          |DragN's Livestock Overhaul!   |dragnlivestock                |1.7                 |SIDED_SETU|Manifest: NOSIGNATURE         firearrows-1.20.1-12-forge.jar                    |FireArrows                    |firearrows                    |1.20.1-12-forge     |SIDED_SETU|Manifest: NOSIGNATURE         italydelight-1.0.3-1.20.1.jar                     |Italy Delight                 |italydelight                  |1.0.3-1.20.1        |SIDED_SETU|Manifest: NOSIGNATURE         farmersplus-1.0.3.jar                             |Farmer's Plus                 |farmersplus                   |1.0.3               |SIDED_SETU|Manifest: NOSIGNATURE         chipped-forge-1.20.1-3.0.7.jar                    |Chipped                       |chipped                       |3.0.7               |SIDED_SETU|Manifest: NOSIGNATURE         paldelight-1.20.1-1.1.0.jar                       |Palestinian Delight           |paldelight                    |1.20.1-1.1.0        |SIDED_SETU|Manifest: NOSIGNATURE         mcw-bridges-3.0.0-mc1.20.1forge.jar               |Macaw's Bridges               |mcwbridges                    |3.0.0               |SIDED_SETU|Manifest: NOSIGNATURE         FarmersDelight-1.20.1-1.2.6.jar                   |Farmer's Delight              |farmersdelight                |1.20.1-1.2.6        |SIDED_SETU|Manifest: NOSIGNATURE         casualness_delight-1.20.1-0.4n.jar                |Casualness Delight            |casualness_delight            |1.20.1-0.4n         |SIDED_SETU|Manifest: NOSIGNATURE         supplementaries-1.20-3.1.11.jar                   |Supplementaries               |supplementaries               |1.20-3.1.11         |SIDED_SETU|Manifest: NOSIGNATURE         rusticdelight-forge-1.20.1-1.3.0.jar              |Rustic Delight                |rusticdelight                 |1.3.0               |SIDED_SETU|Manifest: NOSIGNATURE         cuisinedelight-1.1.16.jar                         |Cuisine Delight               |cuisinedelight                |1.1.16              |SIDED_SETU|Manifest: NOSIGNATURE         culturaldelights-0.16.1.jar                       |Cultural Delights             |culturaldelights              |0.16.1              |SIDED_SETU|Manifest: NOSIGNATURE         dumplings_delight-1.2.1.jar                       |DumplingsDelight              |dumplings_delight             |1.2.1               |SIDED_SETU|Manifest: NOSIGNATURE         SeedDelight-NeoorForge-1.20.1-1.0.1.jar           |Seed Delight                  |seeddelight                   |1.20.1-0.1          |SIDED_SETU|Manifest: NOSIGNATURE         FarmersStructures-1.0.3-1.20.jar                  |FarmersStructures             |farmers_structures            |1.0.0               |SIDED_SETU|Manifest: NOSIGNATURE         largemeals-1.20.1-1.3.0.jar                       |Large Meals                   |largemeals                    |1.20.1-1.3.0        |SIDED_SETU|Manifest: NOSIGNATURE         DustrialDecor-1.3.5-1.20.jar                      |'Dustrial Decor               |dustrial_decor                |1.3.2               |SIDED_SETU|Manifest: NOSIGNATURE         mcw-fences-1.1.2-mc1.20.1forge.jar                |Macaw's Fences and Walls      |mcwfences                     |1.1.2               |SIDED_SETU|Manifest: NOSIGNATURE         farmers_delight_christmas_edition-V.0.96.8-forge-1|Farmers Delight Christmas edit|farmers_delight_christmas_edit|1.0.0               |SIDED_SETU|Manifest: NOSIGNATURE         untameddelight-1.20.1-1.1.0.jar                   |Untamed Delight               |untameddelight                |1.20.1-1.0.0        |SIDED_SETU|Manifest: NOSIGNATURE         suppsquared-1.20-1.1.18.jar                       |Supplementaries Squared       |suppsquared                   |1.20-1.1.18         |SIDED_SETU|Manifest: NOSIGNATURE         growthcraft-deco-1.20.1-9.0.3.jar                 |Growthcraft Decorations       |growthcraft_deco              |9.0.3               |SIDED_SETU|Manifest: NOSIGNATURE         collective-1.20.1-7.87.jar                        |Collective                    |collective                    |7.87                |SIDED_SETU|Manifest: NOSIGNATURE         usadelight-1.0.2-1.20.1.jar                       |USA Delight                   |usadelight                    |1.0.2-1.20.1        |SIDED_SETU|Manifest: NOSIGNATURE         DramaticDoors-QuiFabrge-1.20.1-3.2.8.jar          |Dramatic Doors                |dramaticdoors                 |1.20.1-3.2.8        |SIDED_SETU|Manifest: NOSIGNATURE         material_decorations-forge-1.20.-1.20.2-2.0.9.jar |Material Decorations          |material_decorations          |2.0.9               |SIDED_SETU|Manifest: NOSIGNATURE         resourcefullib-forge-1.20.1-2.1.29.jar            |Resourceful Lib               |resourcefullib                |2.1.29              |SIDED_SETU|Manifest: NOSIGNATURE         architectury-9.2.14-forge.jar                     |Architectury                  |architectury                  |9.2.14              |SIDED_SETU|Manifest: NOSIGNATURE         allthetrims-3.4.3-forge+1.20.1.jar                |AllTheTrims                   |allthetrims                   |3.4.3               |SIDED_SETU|Manifest: NOSIGNATURE         furnish-26-forge.jar                              |Furnish                       |furnish                       |26                  |SIDED_SETU|Manifest: NOSIGNATURE         ls_furniture-1.0.3-SNAPSHOT-1.20.1-Forge.jar      |LYIVX's Furniture Mod         |ls_furniture                  |1.0.3-SNAPSHOT      |SIDED_SETU|Manifest: NOSIGNATURE         bamboodelight-1.0.5.1-1.20.1.jar                  |Bamboo Delight                |bamboodelight                 |1.0.5.1-1.20.1      |SIDED_SETU|Manifest: NOSIGNATURE         monolib-forge-1.20.1-1.4.1.jar                    |MonoLib                       |monolib                       |1.4.1               |SIDED_SETU|Manifest: NOSIGNATURE         pint_deco_1.0.jar                                 |pint_decorations              |pint_decorations              |1.0.0               |SIDED_SETU|Manifest: NOSIGNATURE         smallships-forge-1.20.1-2.0.0-b1.4.jar            |Small Ships                   |smallships                    |2.0.0-b1.4          |SIDED_SETU|Manifest: NOSIGNATURE         perrys_decorations-1.0.1-forge-1.20.1.jar         |Perrys Decorations            |perrys_decorations            |1.0.0               |SIDED_SETU|Manifest: NOSIGNATURE         wings-2.1.4-all.jar                               |Wings                         |wings                         |2.1.4               |SIDED_SETU|Manifest: NOSIGNATURE         lemoned-1.0.1-1.20.jar                            |Lemoned                       |lemoned                       |1.0.1-1.20          |SIDED_SETU|Manifest: NOSIGNATURE         Festive_Delight_1.3_Forge_1.20.1.jar              |Festive Delight               |festive_delight               |1.3.0               |SIDED_SETU|Manifest: NOSIGNATURE         chaseisframework-1.0.0-forge-1.20.1.jar           |Voidless Framework            |chaseisframework              |1.0.0               |SIDED_SETU|Manifest: NOSIGNATURE         amendments-1.20-1.2.12.jar                        |Amendments                    |amendments                    |1.20-1.2.12         |SIDED_SETU|Manifest: NOSIGNATURE         veggiesdelight-1.4.2.jar                          |Veggies Delight               |veggiesdelight                |1.4.2               |SIDED_SETU|Manifest: NOSIGNATURE         abyssal_decor_1.20.1_0.1.8.jar                    |Abyssal Decor                 |abyssal_decor                 |1.0.0               |SIDED_SETU|Manifest: NOSIGNATURE         sereneseasonsdelight-1.0.2-1.20.1.jar             |Serene Seasons Delight        |sereneseasonsdelight          |1.0.2-1.20.1        |SIDED_SETU|Manifest: NOSIGNATURE         bakeddelight-0.1.2.jar                            |Baked Delight                 |bakeddelight                  |0.1.2               |SIDED_SETU|Manifest: NOSIGNATURE         polishdelight-1.0.0-forge-1.20.1.jar              |Polish Delight                |polishdelight                 |1.0.0               |SIDED_SETU|Manifest: NOSIGNATURE         journeymap-1.20.1-5.10.3-forge.jar                |Journeymap                    |journeymap                    |5.10.3              |SIDED_SETU|Manifest: NOSIGNATURE         decorative_blocks-forge-1.20.1-4.1.3.jar          |Decorative Blocks             |decorative_blocks             |4.1.3               |SIDED_SETU|Manifest: NOSIGNATURE         Furniture-Beetle-1.20.1-0.7.0.jar                 |Furniture Beetle              |beetle_f                      |0.7.0               |SIDED_SETU|Manifest: NOSIGNATURE         nuts_delight-2.3.0.jar                            |Nuts Delight                  |nuts_delight                  |2.3.0               |SIDED_SETU|Manifest: NOSIGNATURE         meatdelight-1.0.2-1.20.1.jar                      |Meat Delight                  |meatdelight                   |1.0.2-1.20.1        |SIDED_SETU|Manifest: NOSIGNATURE         CoffeeDelight-Forge-1.20.1-1.4-Fix.jar            |Coffee Delight                |coffee_delight                |1.4                 |SIDED_SETU|Manifest: NOSIGNATURE         moredelight-24.11.06-1.20-forge.jar               |More Delight                  |moredelight                   |24.11.06-1.20-forge |SIDED_SETU|Manifest: NOSIGNATURE         supplementariesdelight-1.1.0-1.20.1.jar           |Supplementaries Delight       |supplementariesdelight        |1.1.0-1.20.1        |SIDED_SETU|Manifest: NOSIGNATURE         delightfulsandwich-1.20.1.jar                     |Delightful Sandwiches         |delightfulsandwich            |1.20.1              |SIDED_SETU|Manifest: NOSIGNATURE         more_useful_copper-merged-1.20.1-1.2.0.jar        |More Useful Copper            |more_useful_copper            |1.2.0               |SIDED_SETU|Manifest: NOSIGNATURE         moonlight-1.20-2.13.41-forge.jar                  |Moonlight Library             |moonlight                     |1.20-2.13.41        |SIDED_SETU|Manifest: NOSIGNATURE         mysterious_mountain_lib-1.5.17-1.20.1.jar         |Mysterious Mountain Lib       |mysterious_mountain_lib       |1.5.17-1.20.1       |SIDED_SETU|Manifest: NOSIGNATURE         corn_delight-1.1.6-1.20.1.jar                     |Corn Delight                  |corn_delight                  |1.1.6-1.20.1        |SIDED_SETU|Manifest: NOSIGNATURE         verdant-1.20.1-0.1.0-forge.jar                    |Verdant                       |verdant                       |1.20.1-0.1.0        |SIDED_SETU|Manifest: NOSIGNATURE         mixinsquared-forge-0.1.1.jar                      |MixinSquared                  |mixinsquared                  |0.1.1               |SIDED_SETU|Manifest: NOSIGNATURE         Jade-1.20.1-Forge-11.12.2.jar                     |Jade                          |jade                          |11.12.2+forge       |SIDED_SETU|Manifest: NOSIGNATURE         l2harvester-0.0.4.jar                             |L2Harvester                   |l2harvester                   |0.0.4               |SIDED_SETU|Manifest: NOSIGNATURE         sweetdelight-1.0.4-1.20.1.jar                     |Sweet Delight                 |sweetdelight                  |1.0.4-1.20.1        |SIDED_SETU|Manifest: NOSIGNATURE         displaydelight-1.2.0.jar                          |Display Delight               |displaydelight                |1.2.0               |SIDED_SETU|Manifest: NOSIGNATURE         packedup-0.5.3-beta.jar                           |Packed Up                     |packedup                      |0.5.3-beta          |SIDED_SETU|Manifest: NOSIGNATURE         material_decorations_levers-forge-1.20-1.20.2-2.0.|Material Decorations Levers   |material_decorations_levers   |2.0.8               |SIDED_SETU|Manifest: NOSIGNATURE         NaturalDecorMod_1.20.1_V1.5.jar                   |Natural Decor Mod             |naturaldecormod               |1.5                 |SIDED_SETU|Manifest: NOSIGNATURE         RecipesLibrary-1.20.1-2.0.1.jar                   |Recipes Library               |recipes_lib                   |2.0.1               |SIDED_SETU|Manifest: NOSIGNATURE         ShippingBin-forge-1.20.1-4.jar                    |ShippingBin                   |shippingbin                   |4                   |SIDED_SETU|Manifest: NOSIGNATURE         naturalistdelight-1.0.3-1.20.1.jar                |Naturalist Delight            |naturalistdelight             |1.0.3-1.20.1        |SIDED_SETU|Manifest: NOSIGNATURE         Ribbits-1.20.1-Forge-3.0.2.jar                    |Ribbits                       |ribbits                       |1.20.1-Forge-3.0.2  |SIDED_SETU|Manifest: NOSIGNATURE         woodworkers_delight-0.1.0-alpha.jar               |Woodworker's Delight          |woodworkers_delight           |0.1.0               |SIDED_SETU|Manifest: NOSIGNATURE         CroptopiaDelight-1.20.1_1.2.2-forge.jar           |Croptopia Delight             |croptopia_delight             |1.0                 |SIDED_SETU|Manifest: NOSIGNATURE         barbequesdelight-1.0.5.jar                        |Barbeque's Delight            |barbequesdelight              |1.0.5               |SIDED_SETU|Manifest: NOSIGNATURE         hotdog_delight-0.3.jar                            |Hotdog Delight                |hotdog_delight                |1.0.0               |SIDED_SETU|Manifest: NOSIGNATURE         decorative_storage-2.1212-forge-1.20.1.jar        |Decorative Storage            |decorative_storage            |2.1212              |SIDED_SETU|Manifest: NOSIGNATURE         surfacemushrooms-1.20.1-3.5.jar                   |Surface Mushrooms             |surfacemushrooms              |3.5                 |SIDED_SETU|Manifest: NOSIGNATURE         miners_delight-1.20.1-1.2.3.jar                   |Miner's Delight               |miners_delight                |1.20.1-1.2.3        |SIDED_SETU|Manifest: NOSIGNATURE         Delightful-1.20.1-3.6.1.jar                       |Delightful                    |delightful                    |3.6.1               |SIDED_SETU|Manifest: NOSIGNATURE         farmers_croptopia-1.20.1-2.0.0.jar                |Farmer's Croptopia            |farmers_croptopia             |2.0.0               |SIDED_SETU|Manifest: NOSIGNATURE         alexsdelight-1.5.jar                              |Alex's Delight                |alexsdelight                  |1.5                 |SIDED_SETU|Manifest: NOSIGNATURE         FastFoodDelightUnofficial-1.20.1-1.0.4.jar        |FastFood Delight Unofficial   |fastfooddelight               |1.20.1-1.0.4        |SIDED_SETU|Manifest: NOSIGNATURE         apexcore-1.20.1-10.0.0.jar                        |ApexCore                      |apexcore                      |10.0.0              |SIDED_SETU|Manifest: NOSIGNATURE         fantasyfurniture-1.20.1-9.0.0.jar                 |Fantasy's Furniture           |fantasyfurniture              |9.0.0               |SIDED_SETU|Manifest: NOSIGNATURE         FlowerSeeds2-1.20.1-1.1.2.jar                     |Flower Seeds 2                |flowerseeds                   |1.1.2               |SIDED_SETU|Manifest: NOSIGNATURE         FlowerSeeds2BiomesOPlenty-1.20.1-1.1.2.jar        |Flower Seeds 2 Biomes O Plenty|flowerseedsbop                |1.1.2               |SIDED_SETU|Manifest: NOSIGNATURE         niftyShipsBiomesOPlenty-FORGE-1.20.1-1.0.4.jar    |aleki's Nifty Ships (Biomes O'|alekishipsbop                 |1.0.4               |SIDED_SETU|Manifest: NOSIGNATURE         bushierflowers-0.0.3-1.20.1.jar                   |Bushier Flowers               |bushierflowers                |0.0.3-1.20.1        |SIDED_SETU|Manifest: NOSIGNATURE         CrabbersDelight-1.20.1-1.1.7d.jar                 |Crabber's Delight             |crabbersdelight               |1.1.7d              |SIDED_SETU|Manifest: NOSIGNATURE         chisels-and-bits-forge-1.4.148.jar                |chisels-and-bits              |chiselsandbits                |1.4.148             |SIDED_SETU|Manifest: NOSIGNATURE         trimmable_tools-forge-2.0.5.jar                   |Trimmable Tools               |trimmable_tools               |2.0.5               |SIDED_SETU|Manifest: NOSIGNATURE     Crash Report UUID: bd833d80-7dd2-4ae6-b2b9-bbc8191e88ca     FML: 47.3     Forge: net.minecraftforge:47.3.0
  • Topics

×
×
  • Create New...

Important Information

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