Jump to content

Recommended Posts

Posted

This tutorial assumes you have some previous knowledge of Minecraft modding and have gotten all the initial stuff done (PATH variables whatnot).

Feel free to correct me. Check back once in a while for updates.

 

Contents

  • [iurl=#initial_setup]Initial Setup[/iurl]
  • [iurl=#advanced_setup]Advanced Setup[/iurl]
  • [iurl=#update_forge]Updating Forge[/iurl]
  • [iurl=#update_forgegradle]Updating ForgeGradle[/iurl]
  • [iurl=#compiling]Compiling/Obfuscating and Version Details[/iurl]
  • [iurl=#migrationbeta]Migrating to 1.8[/iurl]
  • [iurl=#migration]Migrating to 1.7[/iurl]
  • [iurl=#update_forgegradle]Updating ForgeGradle[/iurl]
  • [iurl=#troubleshoot]Troubleshooting Common Issues[/iurl]

 


 

[ANCHOR=initial_setup]Initial Setup[/ANCHOR]

First of all, make sure you have the latest version of Eclipse.

Download the latest version of the Forge source from the usual place and extract it somewhere.

 

Go inside the Forge folder.

Windows:

Use the cd command to navigate to the correct directory.

You can also hold shift, right click and click Open command window here to open it in the current directory.

Run the following in command prompt:

gradlew.bat setupDecompWorkspace
gradlew.bat eclipse

Mac OS X:

Use the cd command to navigate to the correct directory.

Run the following in terminal:

bash gradlew setupDecompWorkspace
bash gradlew eclipse

Linux:

Use the cd command to navigate to the correct directory.

Run the following in terminal:

./gradlew setupDecompWorkspace
./gradlew eclipse

You may need to run the following beforehand if the gradlew file is not executable:

chmod +x ./gradlew

 

Replace eclipse with idea if you are using IntelliJ IDEA.

 

If it is taking a long time to download assets, you can skip it by copying the assets folder from your normal minecraft folder to forge-directory/.gradle (so you will have forge-directory/.gradle/assets).

 

Now open up Eclipse and point the project directory to the eclipse folder. If this doesn't work for you, skip to the advanced setup.

You're done with the initial setup! You can now delete or study the example mod from src/main/java and the mcmod.info in src/main/resources. Replace it with your own mod.

 


 

[ANCHOR=advanced_setup]Advanced Initial Setup[/ANCHOR]

For those who cannot get the simple method to work.

See [iurl=#troubleshoot]the troubleshooting section[/iurl] before trying this method.

 

  Reveal hidden contents

 

 


 

[ANCHOR=update_forge]Updating Forge[/ANCHOR]

ForgeGradle allows you to update your dev environment to the latest version of Forge easily.

Open your build.gradle file. The following lines will interest you for this part:

minecraft {
    version = "1.7.2-10.12.2.1147"
    assetDir = "eclipse/assets"
}

Simply change the version field to the latest version of Forge, such as 1.7.10-10.13.0.1187. All versions are listed on the Forge download page.

minecraft {
    version = "1.7.10-10.13.0.1187"
    assetDir = "eclipse/assets"
}

Save the file, then navigate to your Forge directory. Run the setup command from the initial setup (setupDecompWorkspace and eclipse). Forge will update the necessary files.

If the process fails, you may also need to update ForgeGradle.

 


 

[ANCHOR=update_forgegradle]Updating ForgeGradle[/ANCHOR]

ForgeGradle is separate from Forge. Updating Forge alone will fail when updating between ForgeGradle versions.

These are the current versions of ForgeGradle and the versions of Forge they cover:

ForgeGradle

Forge Versions

-               

            959<, 965

1.0             

              960-964

1.1             

            967-1047

1.2             

                1048+

 

Delete your .gradle folder.

Then, open your build.gradle file. The following lines will interest you for this part:

    dependencies {
        classpath 'net.minecraftforge.gradle:ForgeGradle:1.1-SNAPSHOT'
    }

Replace 1.1-SNAPSHOT with 1.2-SNAPSHOT.

 

Afterwards, go to the bottom of the file - this part can also be done on any previous version of ForgeGradle

processResources
{
    // replace stuff in mcmod.info, nothing else
    from(sourceSets.main.resources.srcDirs) {
    ...

Append 3 lines to the beginning of processResources:

processResources
{
    // this will ensure that this task is redone when the versions change.
    inputs.property "version", project.version
    inputs.property "mcversion", project.minecraft.version

    // replace stuff in mcmod.info, nothing else
    from(sourceSets.main.resources.srcDirs) {
    ...

 

Save the file, then navigate to your Forge directory. Run the setup command from the initial setup (setupDecompWorkspace and eclipse). ForgeGradle will update the necessary files.

 


 

[ANCHOR=compiling]Compiling/Obfuscating and Version Details[/ANCHOR]

Open your build.gradle file. The following lines will interest you for this part:

version = "1.0"
group= "com.yourname.modid" // http://maven.apache.org/guides/mini/guide-naming-conventions.html
archivesBaseName = "modid"

Change the version field to the version of your mod. For usability purposes append the version of Minecraft as a prefix, such as 1.7.10-

Change the group field to your personal project group names. For example, Forge uses net.minecraftforge

Change the archivesBaseName field to your Mod ID, the same one as you put in your @Mod annotation.

Your build.gradle file should look a bit like this now:

version = "1.7.10-1.0"
group= "com.github.username" // http://maven.apache.org/guides/mini/guide-naming-conventions.html
archivesBaseName = "TestMod"

Alternatively, you can append a suffix of the Minecraft version to your archivesBaseName field instead of the version field.

 

Go inside the Forge folder and run the following in command prompt/terminal.

Windows:

gradlew.bat build

Mac OS X:

bash gradlew build

Linux:

./gradlew build

 

If this is not the first time you are building and ForgeGradle seems to ignore any changes you made to your build.gradle file, you need to run the following command beforehand.

Backup your src folder first as it may be deleted.

Windows:

gradlew.bat clean

Mac OS X:

bash gradlew clean

Linux:

./gradlew clean

 

Your mod will be packaged as a .jar file inside forge-directory/build/libs - in our example, it will be named TestMod-1.7.2-1.0.jar

For more complex setups requiring other mods as dependencies, visit the #ForgeGradle or #MinecraftForge channels on EsperNet.

 


 

[ANCHOR=migrationbeta]Migration to 1.8 - Currently in beta![/ANCHOR]

Here are some of the biggest changes for 1.8:

  • Imports should change from [TT]cpw.mods[/TT] to [TT]net.minecraftforge[/TT]. For example:
    [TT]import cpw.mods.fml.common.Mod;[/TT]
    should be changed to
    [TT]import net.minecraftforge.fml.common.Mod;[/TT]
  • New BlockState stuff currently in development, details coming Soon™.
  • More to come as Forge for 1.8 is developed...

 


 

[ANCHOR=migration]Migration from 1.6 to 1.7[/ANCHOR]

Here are some of the biggest changes for 1.7:

  • Mod metadata parsing has been overhauled and no longer supports the authors field. If you are still using it in your mcmod.info file, change it to authorList.
    Technically, authorList has been in FML since 1.5, but the wiki has not been updated to reflect this change.
  • Goodbye block and item IDs! Those are now handled internally for you!
    Consequently, functions such as getBlockID no longer exist and have been replaced with a non-ID equivalent (in this case, getBlock).
  • NetworkMod is gone. A more advanced networking library is available instead (Netty).
  • @ForgeSubscribe is now @SubscribeEvent
  • Interfaces are now events
  • Renamed packets
  • List of blocks are now in Blocks.class instead of Block.class
  • List of items are now in Items.class instead of Item.class

 


 

[ANCHOR=troubleshoot]Troubleshooting Common Issues[/ANCHOR]

No Audio: Unable to play unknown soundEvent

Add the following to your runtime arguments:

Windows

--assetIndex 1.7.10 --assetsDir %userprofile%\.gradle\caches\minecraft\assets

If %userprofile% does not resolve to its actual value, you will need to use the absolute path.

You can type it in Windows Explorer to resolve the directory.

For example, mine would be [TT]C:\Users\GrygrFlzr\.gradle\caches\minecraft\assets[/TT]

Linux/OS X

--assetIndex 1.7.10 --assetsDir ~/.gradle/caches/minecraft/assets

 

 

Crash: joptsimple.MissingRequiredOptionException: Missing required option(s) ['accessToken']

Add the following to your runtime arguments:

 --accessToken FML

 

 

Crash: joptsimple.MissingRequiredOptionException: Missing required option(s) ['userProperties']

Add the following to your runtime arguments:

 --userProperties {}

 

 

Crash: java.lang.UnsatisfiedLinkError: no lwjgl in java.library.path

Right click the project (Minecraft) > Properties > Java Build Path > Libraries

Scroll down to find your version of lwjgl (eg. [TT]lwjgl-2.9.1.jar[/TT]), click the arrow beside it, and double click Native Library Location.

Locate your [TT]/build/natives[/TT] folder located in your workspace directory. For example, mine would be [TT]C:\Users\GrygrFlzr\Mods\GlowstoneWire\build\natives[/TT]

l1Hx5By.png

AeooTRh.png

qKI1cfY.png

 

You need to agree to the EULA in order to run the server. Go to eula.txt for more info.

Follow what it says. Go to forge-directory/eclipse, open eula.txt and change [TT]false[/TT] to [TT]true[/TT].

If the file does not exist, just create one named eula.txt, and put the following in it:

#By changing the setting below to TRUE you are indicating your agreement to our EULA (https://account.mojang.com/documents/minecraft_eula).
eula=true

 


 

[ANCHOR=credits]Thanks to:[/ANCHOR]

  • LexManos for the new

  • AbrarSyed for sort of explaining the process at 4AM when he should be sleeping, and giving pointers on ForgeGradle stuff
  • luacs1998 for pointing out Run Configuration arguments for previous versions of ForgeGradle
  • PaleoCrafter and SoniEx2 for mentioning authorList
  • A whole bunch of other people I forgot to mention

 

Visit the #ForgeGradle IRC channel on EsperNet for questions and discussion on ForgeGradle.

For a comprehensive list of mods, visit the MCF Modlist!

Posted

Thanks!

 

Now I need to make "one project per mod in the same workspace" work and modify the build.gradle file to work like I want it to and I'll be a happy camper. ;)

 

ItemBlock is not a Block

ItemStack is not an Item

Damage value is not metadata

 

Stop confusing them.

Posted
  Quote
As of the time of writing, ForgeGradle does not yet support deobfuscating Minecraft, and so none of the usual Minecraft source files are there.

 

Are you sure of this? O.o

That seems quite absurd to me, seeing as this is the official way to build and use forge as of the latest builds.

I'm quite sure they wouldn't release it if it where in such a useless state...

  Quote

If you guys dont get it.. then well ya.. try harder...

Posted
  On 11/22/2013 at 4:22 AM, Mazetar said:

  Quote
As of the time of writing, ForgeGradle does not yet support deobfuscating Minecraft, and so none of the usual Minecraft source files are there.

 

Are you sure of this? O.o

That seems quite absurd to me, seeing as this is the official way to build and use forge as of the latest builds.

I'm quite sure they wouldn't release it if it where in such a useless state...

The only mistake in that sentence (which luacs1998 has fixed) was saying deobfuscating instead of decompiling. At this point, ForgeGradle does not even decompile Minecraft, nor does it need to - you do not need access to Minecraft source code to run your mod.

For a comprehensive list of mods, visit the MCF Modlist!

Posted

They are working on an update where we can get a read-only access to the minecraft/forge source.

Lex mentioned it in the release post :)

  Quote

If you guys dont get it.. then well ya.. try harder...

Posted

Gradle Integration for Eclipse 03.4.0.RELEASE. won't install in eclipse right.

The following solutions are not available: Gradle Intergration for Eclipse

Posted

I'm locking this thread, people are going off topic.

Could a kind soul who is more experienced with ForgeGradle (AbrarSyed u.u) please create a "Common Problems and Solutions" thread please?

Read the EAQ before posting! OR ELSE!

 

  Quote
This isn't building better software, its trying to grab a place in the commit list of a highly visible github project.

 

www.forgeessentials.com

 

Don't PM me, I don't check this account unless I have to.

  • 4 months later...
  • 1 month later...
Posted

Just followed the instructions to create a workspace. Needed to do the advanced setup.

'Run Client' is not working good. Client crashes. I followed the instructions like in the initial setup

This is the Log:

[21:07:32] [main/INFO] [LaunchWrapper]: Loading tweak class name cpw.mods.fml.common.launcher.FMLTweaker
[21:07:32] [main/INFO] [LaunchWrapper]: Using primary tweak class name cpw.mods.fml.common.launcher.FMLTweaker
[21:07:32] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.common.launcher.FMLTweaker
[21:07:32] [main/INFO] [FML]: Forge Mod Loader version 7.2.172.1073 for Minecraft 1.7.2 loading
[21:07:32] [main/INFO] [FML]: Java is Java HotSpot(TM) 64-Bit Server VM, version 1.7.0_25, running on Windows 7:amd64:6.1, installed at C:\Program Files\Java\jre7
[21:07:32] [main/INFO] [FML]: Managed to load a deobfuscated Minecraft name- we are in a deobfuscated environment. Skipping runtime deobfuscation
[21:07:32] [main/INFO] [LaunchWrapper]: Loading tweak class name cpw.mods.fml.common.launcher.FMLInjectionAndSortingTweaker
[21:07:32] [main/INFO] [LaunchWrapper]: Loading tweak class name cpw.mods.fml.common.launcher.FMLDeobfTweaker
[21:07:32] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.common.launcher.FMLInjectionAndSortingTweaker
[21:07:32] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.common.launcher.FMLInjectionAndSortingTweaker
[21:07:32] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.relauncher.CoreModManager$FMLPluginWrapper
[21:07:32] [main/ERROR] [FML]: The binary patch set is missing. Either you are in a development environment, or things are not going to work!
[21:07:34] [main/ERROR] [FML]: The minecraft jar file:/C:/Users/pieter/.gradle/caches/minecraft/net/minecraftforge/forge/1.7.2-10.12.1.1073/forgeSrc-1.7.2-10.12.1.1073.jar!/net/minecraft/client/ClientBrandRetriever.class appears to be corrupt! There has been CRITICAL TAMPERING WITH MINECRAFT, it is highly unlikely minecraft will work! STOP NOW, get a clean copy and try again!
[21:07:34] [main/ERROR] [FML]: FML has been ordered to ignore the invalid or missing minecraft certificate. This is very likely to cause a problem!
[21:07:34] [main/ERROR] [FML]: Technical information: ClientBrandRetriever was at jar:file:/C:/Users/pieter/.gradle/caches/minecraft/net/minecraftforge/forge/1.7.2-10.12.1.1073/forgeSrc-1.7.2-10.12.1.1073.jar!/net/minecraft/client/ClientBrandRetriever.class, there were 0 certificates for it
[21:07:34] [main/ERROR] [FML]: FML appears to be missing any signature data. This is not a good thing
[21:07:34] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.relauncher.CoreModManager$FMLPluginWrapper
[21:07:34] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.common.launcher.FMLDeobfTweaker
[21:07:35] [main/INFO] [LaunchWrapper]: Launching wrapped minecraft {net.minecraft.client.main.Main}
[21:07:37] [main/ERROR] [LaunchWrapper]: Unable to launch
java.lang.reflect.InvocationTargetException
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.7.0_25]
at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.7.0_25]
at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.7.0_25]
at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.7.0_25]
at net.minecraft.launchwrapper.Launch.launch(Launch.java:134) [launchwrapper-1.9.jar:?]
at net.minecraft.launchwrapper.Launch.main(Launch.java:28) [launchwrapper-1.9.jar:?]
Caused by: java.lang.UnsatisfiedLinkError: no lwjgl in java.library.path
at java.lang.ClassLoader.loadLibrary(Unknown Source) ~[?:1.7.0_25]
at java.lang.Runtime.loadLibrary0(Unknown Source) ~[?:1.7.0_25]
at java.lang.System.loadLibrary(Unknown Source) ~[?:1.7.0_25]
at org.lwjgl.Sys$1.run(Sys.java:73) ~[lwjgl-2.9.0.jar:?]
at java.security.AccessController.doPrivileged(Native Method) ~[?:1.7.0_25]
at org.lwjgl.Sys.doLoadLibrary(Sys.java:66) ~[lwjgl-2.9.0.jar:?]
at org.lwjgl.Sys.loadLibrary(Sys.java:95) ~[lwjgl-2.9.0.jar:?]
at org.lwjgl.Sys.<clinit>(Sys.java:112) ~[lwjgl-2.9.0.jar:?]
at net.minecraft.client.Minecraft.getSystemTime(Minecraft.java:2690) ~[Minecraft.class:?]
at net.minecraft.client.main.Main.main(Main.java:40) ~[Main.class:?]
... 6 more

Coding, Testing, Smiling, Publishing!

Posted

Is there anyway somebody can tell me where these files are being installed to, since the download always hangs, and I can just go in and download and put them in the right locations myself.

  • 3 weeks later...
Posted

For anyone moving from FG for 1.6.4 to 1.7.2, the sonatype maven entry needs to be added after the forge maven entry in the buildscript section at the top:

 

        maven {
            name = "sonatype"
            url = "https://oss.sonatype.org/content/repositories/snapshots/"
        }

Posted

thank you for this; the advanced initial setup finally worked for me after battling all last night trying to get the "simple" version to work on my mac.  the only thing that's still going wrong is that i am not getting sound, but that's for another post; i think i saw something about that earlier.

 

something you might want to add to the tutorial, since we're now mostly modding 1.7:  in the arguments for the "run client" configuration, one needs to type

--version 1.7 --tweakClass cpw.mods.fml.common.launcher.FMLTweaker --accessToken Player1234

because 1.7 needs the access token, or the client will die.

Posted

One question, I followed all the steps using forge-1.6.4-9.11.1.964

 

It works, and Minecraft Launchs Ok. But my "src" folder is empty, it only has "main" and no net.minecraft files and folders showing.

 

Am I missing some step?

 

Thanks.

  • 3 weeks later...
Posted
  On 5/9/2014 at 7:12 PM, Casual Dutchman said:

Just followed the instructions to create a workspace. Needed to do the advanced setup.

'Run Client' is not working good. Client crashes. I followed the instructions like in the initial setup

This is the Log:

[21:07:32] [main/INFO] [LaunchWrapper]: Loading tweak class name cpw.mods.fml.common.launcher.FMLTweaker
[21:07:32] [main/INFO] [LaunchWrapper]: Using primary tweak class name cpw.mods.fml.common.launcher.FMLTweaker
[21:07:32] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.common.launcher.FMLTweaker
[21:07:32] [main/INFO] [FML]: Forge Mod Loader version 7.2.172.1073 for Minecraft 1.7.2 loading
[21:07:32] [main/INFO] [FML]: Java is Java HotSpot(TM) 64-Bit Server VM, version 1.7.0_25, running on Windows 7:amd64:6.1, installed at C:\Program Files\Java\jre7
[21:07:32] [main/INFO] [FML]: Managed to load a deobfuscated Minecraft name- we are in a deobfuscated environment. Skipping runtime deobfuscation
[21:07:32] [main/INFO] [LaunchWrapper]: Loading tweak class name cpw.mods.fml.common.launcher.FMLInjectionAndSortingTweaker
[21:07:32] [main/INFO] [LaunchWrapper]: Loading tweak class name cpw.mods.fml.common.launcher.FMLDeobfTweaker
[21:07:32] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.common.launcher.FMLInjectionAndSortingTweaker
[21:07:32] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.common.launcher.FMLInjectionAndSortingTweaker
[21:07:32] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.relauncher.CoreModManager$FMLPluginWrapper
[21:07:32] [main/ERROR] [FML]: The binary patch set is missing. Either you are in a development environment, or things are not going to work!
[21:07:34] [main/ERROR] [FML]: The minecraft jar file:/C:/Users/pieter/.gradle/caches/minecraft/net/minecraftforge/forge/1.7.2-10.12.1.1073/forgeSrc-1.7.2-10.12.1.1073.jar!/net/minecraft/client/ClientBrandRetriever.class appears to be corrupt! There has been CRITICAL TAMPERING WITH MINECRAFT, it is highly unlikely minecraft will work! STOP NOW, get a clean copy and try again!
[21:07:34] [main/ERROR] [FML]: FML has been ordered to ignore the invalid or missing minecraft certificate. This is very likely to cause a problem!
[21:07:34] [main/ERROR] [FML]: Technical information: ClientBrandRetriever was at jar:file:/C:/Users/pieter/.gradle/caches/minecraft/net/minecraftforge/forge/1.7.2-10.12.1.1073/forgeSrc-1.7.2-10.12.1.1073.jar!/net/minecraft/client/ClientBrandRetriever.class, there were 0 certificates for it
[21:07:34] [main/ERROR] [FML]: FML appears to be missing any signature data. This is not a good thing
[21:07:34] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.relauncher.CoreModManager$FMLPluginWrapper
[21:07:34] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.common.launcher.FMLDeobfTweaker
[21:07:35] [main/INFO] [LaunchWrapper]: Launching wrapped minecraft {net.minecraft.client.main.Main}
[21:07:37] [main/ERROR] [LaunchWrapper]: Unable to launch
java.lang.reflect.InvocationTargetException
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.7.0_25]
at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.7.0_25]
at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.7.0_25]
at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.7.0_25]
at net.minecraft.launchwrapper.Launch.launch(Launch.java:134) [launchwrapper-1.9.jar:?]
at net.minecraft.launchwrapper.Launch.main(Launch.java:28) [launchwrapper-1.9.jar:?]
Caused by: java.lang.UnsatisfiedLinkError: no lwjgl in java.library.path
at java.lang.ClassLoader.loadLibrary(Unknown Source) ~[?:1.7.0_25]
at java.lang.Runtime.loadLibrary0(Unknown Source) ~[?:1.7.0_25]
at java.lang.System.loadLibrary(Unknown Source) ~[?:1.7.0_25]
at org.lwjgl.Sys$1.run(Sys.java:73) ~[lwjgl-2.9.0.jar:?]
at java.security.AccessController.doPrivileged(Native Method) ~[?:1.7.0_25]
at org.lwjgl.Sys.doLoadLibrary(Sys.java:66) ~[lwjgl-2.9.0.jar:?]
at org.lwjgl.Sys.loadLibrary(Sys.java:95) ~[lwjgl-2.9.0.jar:?]
at org.lwjgl.Sys.<clinit>(Sys.java:112) ~[lwjgl-2.9.0.jar:?]
at net.minecraft.client.Minecraft.getSystemTime(Minecraft.java:2690) ~[Minecraft.class:?]
at net.minecraft.client.main.Main.main(Main.java:40) ~[Main.class:?]
... 6 more

 

Did anybody ever find oyut how to fix this?

  • 4 weeks later...
Posted
  On 6/28/2014 at 12:15 PM, Aphex124 said:

  Quote

Just followed the instructions to create a workspace. Needed to do the advanced setup.

'Run Client' is not working good. Client crashes. I followed the instructions like in the initial setup

This is the Log:

[21:07:32] [main/INFO] [LaunchWrapper]: Loading tweak class name cpw.mods.fml.common.launcher.FMLTweaker
[21:07:32] [main/INFO] [LaunchWrapper]: Using primary tweak class name cpw.mods.fml.common.launcher.FMLTweaker
[21:07:32] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.common.launcher.FMLTweaker
[21:07:32] [main/INFO] [FML]: Forge Mod Loader version 7.2.172.1073 for Minecraft 1.7.2 loading
[21:07:32] [main/INFO] [FML]: Java is Java HotSpot(TM) 64-Bit Server VM, version 1.7.0_25, running on Windows 7:amd64:6.1, installed at C:\Program Files\Java\jre7
[21:07:32] [main/INFO] [FML]: Managed to load a deobfuscated Minecraft name- we are in a deobfuscated environment. Skipping runtime deobfuscation
[21:07:32] [main/INFO] [LaunchWrapper]: Loading tweak class name cpw.mods.fml.common.launcher.FMLInjectionAndSortingTweaker
[21:07:32] [main/INFO] [LaunchWrapper]: Loading tweak class name cpw.mods.fml.common.launcher.FMLDeobfTweaker
[21:07:32] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.common.launcher.FMLInjectionAndSortingTweaker
[21:07:32] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.common.launcher.FMLInjectionAndSortingTweaker
[21:07:32] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.relauncher.CoreModManager$FMLPluginWrapper
[21:07:32] [main/ERROR] [FML]: The binary patch set is missing. Either you are in a development environment, or things are not going to work!
[21:07:34] [main/ERROR] [FML]: The minecraft jar file:/C:/Users/pieter/.gradle/caches/minecraft/net/minecraftforge/forge/1.7.2-10.12.1.1073/forgeSrc-1.7.2-10.12.1.1073.jar!/net/minecraft/client/ClientBrandRetriever.class appears to be corrupt! There has been CRITICAL TAMPERING WITH MINECRAFT, it is highly unlikely minecraft will work! STOP NOW, get a clean copy and try again!
[21:07:34] [main/ERROR] [FML]: FML has been ordered to ignore the invalid or missing minecraft certificate. This is very likely to cause a problem!
[21:07:34] [main/ERROR] [FML]: Technical information: ClientBrandRetriever was at jar:file:/C:/Users/pieter/.gradle/caches/minecraft/net/minecraftforge/forge/1.7.2-10.12.1.1073/forgeSrc-1.7.2-10.12.1.1073.jar!/net/minecraft/client/ClientBrandRetriever.class, there were 0 certificates for it
[21:07:34] [main/ERROR] [FML]: FML appears to be missing any signature data. This is not a good thing
[21:07:34] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.relauncher.CoreModManager$FMLPluginWrapper
[21:07:34] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.common.launcher.FMLDeobfTweaker
[21:07:35] [main/INFO] [LaunchWrapper]: Launching wrapped minecraft {net.minecraft.client.main.Main}
[21:07:37] [main/ERROR] [LaunchWrapper]: Unable to launch
java.lang.reflect.InvocationTargetException
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.7.0_25]
at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.7.0_25]
at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.7.0_25]
at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.7.0_25]
at net.minecraft.launchwrapper.Launch.launch(Launch.java:134) [launchwrapper-1.9.jar:?]
at net.minecraft.launchwrapper.Launch.main(Launch.java:28) [launchwrapper-1.9.jar:?]
Caused by: java.lang.UnsatisfiedLinkError: no lwjgl in java.library.path
at java.lang.ClassLoader.loadLibrary(Unknown Source) ~[?:1.7.0_25]
at java.lang.Runtime.loadLibrary0(Unknown Source) ~[?:1.7.0_25]
at java.lang.System.loadLibrary(Unknown Source) ~[?:1.7.0_25]
at org.lwjgl.Sys$1.run(Sys.java:73) ~[lwjgl-2.9.0.jar:?]
at java.security.AccessController.doPrivileged(Native Method) ~[?:1.7.0_25]
at org.lwjgl.Sys.doLoadLibrary(Sys.java:66) ~[lwjgl-2.9.0.jar:?]
at org.lwjgl.Sys.loadLibrary(Sys.java:95) ~[lwjgl-2.9.0.jar:?]
at org.lwjgl.Sys.<clinit>(Sys.java:112) ~[lwjgl-2.9.0.jar:?]
at net.minecraft.client.Minecraft.getSystemTime(Minecraft.java:2690) ~[Minecraft.class:?]
at net.minecraft.client.main.Main.main(Main.java:40) ~[Main.class:?]
... 6 more

 

Did anybody ever find oyut how to fix this?

 

I've updated the thread to address [iurl=#troubleshoot]troubleshooting problems[/iurl].

For a comprehensive list of mods, visit the MCF Modlist!

  • 3 weeks later...
  • 2 months later...
Posted

Hey, i have following error:

 

Matthiass-Mini:forge-1.7.10-10.13.2.1230-src MatthiasReef$ bash gradlew setupDecompWorkspace
Exception in thread "main" java.io.FileNotFoundException: /Users/MatthiasReef/.gradle/wrapper/dists/gradle-2.0-bin/5h57m9vra0mjv9qs45oqtsb5c0/gradle-2.0-bin.zip.lck (Permission denied)
at java.io.RandomAccessFile.open(Native Method)
at java.io.RandomAccessFile.<init>(RandomAccessFile.java:243)
at org.gradle.wrapper.ExclusiveFileAccessManager.access(ExclusiveFileAccessManager.java:49)
at org.gradle.wrapper.Install.createDist(Install.java:44)
at org.gradle.wrapper.WrapperExecutor.execute(WrapperExecutor.java:126)
at org.gradle.wrapper.GradleWrapperMain.main(GradleWrapperMain.java:56)
Matthiass-Mini:forge-1.7.10-10.13.2.1230-src MatthiasReef$ bash gradlew eclipse
Exception in thread "main" java.io.FileNotFoundException: /Users/MatthiasReef/.gradle/wrapper/dists/gradle-2.0-bin/5h57m9vra0mjv9qs45oqtsb5c0/gradle-2.0-bin.zip.lck (Permission denied)
at java.io.RandomAccessFile.open(Native Method)
at java.io.RandomAccessFile.<init>(RandomAccessFile.java:243)
at org.gradle.wrapper.ExclusiveFileAccessManager.access(ExclusiveFileAccessManager.java:49)
at org.gradle.wrapper.Install.createDist(Install.java:44)
at org.gradle.wrapper.WrapperExecutor.execute(WrapperExecutor.java:126)
at org.gradle.wrapper.GradleWrapperMain.main(GradleWrapperMain.java:56)
Matthiass-Mini:forge-1.7.10-10.13.2.1230-src MatthiasReef$ 

 

In everyone help me?

  • 1 month later...
Posted

I got this Problem Please Help Me

 

 

 

Exception in thread "main" java.lang.RuntimeException: Timeout of 120000 reached
waiting for exclusive access to file: C:\Users\Vergara\.gradle\wrapper\dists\gr
adle-2.0-bin\5h57m9vra0mjv9qs45oqtsb5c0\gradle-2.0-bin.zip
        at org.gradle.wrapper.ExclusiveFileAccessManager.access(ExclusiveFileAcc
essManager.java:61)
        at org.gradle.wrapper.Install.createDist(Install.java:44)
        at org.gradle.wrapper.WrapperExecutor.execute(WrapperExecutor.java:126)
        at org.gradle.wrapper.GradleWrapperMain.main(GradleWrapperMain.java:56)

  • 5 months later...
Posted

Hey, I've been trying to get this to work for over a week now, and I figured I should post and ask for some help.

 

What I'm trying to do is a little different than what this tutorial is for, in that I'm trying to contribute to a pre-existing mod, not create a new one. The mod in question is https://github.com/TechReborn/TechReborn, and while I got further using the "Advanced Initial Setup," I still can't get it working.

 

What I've done is download the TechReborn package from github, run gradle to update dependencies and such, and then tried to follow the other directions. Unfortunately I'm stuck with an error "Could not find or load main class net.minecraft.launchwrapper.Launch."

 

Is there some different process if I'm modifying an existing mod, instead of creating a new one?

  • 1 month later...
Posted

Hey guys, I've been having some problems trying to compile my mod. My mod is for version 1.7.10, and i tried compiling it using both "bash gradlew build" and "./gradlew build" (I use a mac). Both attempts failed due to this error:

 

* Where:

Build file '/Users/MinecraftModding/Desktop/SlayersToolbox/build.gradle' line: 21

 

* What went wrong:

Could not compile build file '/Users/MinecraftModding/Desktop/SlayersToolbox/build.gradle'.

> startup failed:

  build file '/Users/MinecraftModding/Desktop/SlayersToolbox/build.gradle': 21: expecting anything but ''\n''; got it anyway @ line 21, column 26.

    group= "com.slayer.main”

                              ^

 

  1 error

 

Guest
This topic is now closed to further replies.

Announcements



  • Recently Browsing

    • No registered users viewing this page.
  • Posts

    • [00:43:03] [main/INFO]: ModLauncher running: args [--username, Pon4ic, --version, креейт РіРѕСЂРѕРґ, --gameDir, C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ, --assetsDir, C:\Users\biver\AppData\Roaming\.minecraft\assets, --assetIndex, 5, --uuid, 23eed3e43ab3452fb0164dffda5e81b5, --accessToken, вќ„вќ„вќ„вќ„вќ„вќ„вќ„вќ„, --clientId, null, --xuid, null, --userType, mojang, --versionType, modified, --width, 925, --height, 530, --launchTarget, forgeclient, --fml.forgeVersion, 47.4.0, --fml.mcVersion, 1.20.1, --fml.forgeGroup, net.minecraftforge, --fml.mcpVersion, 20230612.114412] [00:43:03] [main/INFO]: ModLauncher 10.0.9+10.0.9+main.dcd20f30 starting: java version 17.0.8 by Microsoft; OS Windows 10 arch amd64 version 10.0 [00:43:06] [main/INFO]: Loading ImmediateWindowProvider fmlearlywindow [00:43:06] [main/INFO]: Trying GL version 4.6 [00:43:06] [main/INFO]: Requested GL version 4.6 got version 4.6 [00:43:06] [main/INFO]: OptiFineTransformationService.onLoad [00:43:06] [main/INFO]: OptiFine ZIP file URL: union:/C:/Users/biver/AppData/Roaming/.minecraft/versions/креейт%20РіРѕСЂРѕРґ/mods/preview_OptiFine_1.20.1_HD_U_I6_pre6.jar%23346!/ [00:43:06] [main/INFO]: OptiFine ZIP file: C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods\preview_OptiFine_1.20.1_HD_U_I6_pre6.jar [00:43:06] [main/INFO]: Target.PRE_CLASS is available [00:43:07] [main/INFO]: SpongePowered MIXIN Subsystem Version=0.8.5 Source=union:/C:/Users/biver/AppData/Roaming/.minecraft/libraries/org/spongepowered/mixin/0.8.5/mixin-0.8.5.jar%23100!/ Service=ModLauncher Env=CLIENT [00:43:07] [main/INFO]: OptiFineTransformationService.initialize [00:43:07] [pool-2-thread-1/INFO]: GL info: NVIDIA GeForce RTX 3060 Laptop GPU/PCIe/SSE2 GL version 4.6.0 NVIDIA 566.36, NVIDIA Corporation [00:43:08] [main/INFO]: Found mod file AdLods-1.20.1-8.1.7.0-build.1496.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file AdvancementPlaques-1.20.1-forge-1.6.9.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file ae2qolrecipes-forge-1.18-1.20.1-1.3.0.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file AI-Improvements-1.20-0.5.2.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file almanac-1.20.x-forge-1.0.2.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file AmbientSounds_FORGE_v6.1.11_mc1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file amendments-1.20-2.1.2.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file appleskin-forge-mc1.20.1-2.5.1.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file appliedenergistics2-forge-15.4.8.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file architectury-9.2.14-forge.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file athena-forge-1.20.1-3.1.2.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file baguettelib-1.20.1-Forge-1.0.0.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file balm-forge-1.20.1-7.3.34-all.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file bellsandwhistles-0.4.5-1.20.x-Create6.0+.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file BetterF3-7.0.2-Forge-1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file betterp2p-1.5.0-forge.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file blockui-1.20.1-1.0.193.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file blur-forge-3.1.1.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file Bookshelf-Forge-1.20.1-20.2.13.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file botarium-forge-1.20.1-2.3.4.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file Byzantine-1.21.1-35.1.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file carryon-forge-1.20.1-2.1.2.7.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file chat_heads-0.13.18-forge-1.20.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file chipped-forge-1.20.1-3.0.7.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file ChippedExpress-universal-20x.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file chunkloaders-1.2.9-forge-mc1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file Chunky-1.3.146.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file cloth-config-11.1.136-forge.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file collective-1.20.1-8.3.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file configured-forge-1.20.1-2.2.3.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file constructionwand-1.20.1-2.11.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file Controlling-forge-1.20.1-12.0.2.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file copycats-3.0.2+mc.1.20.1-forge.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file coroutil-forge-1.20.1-1.3.7.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file corpse-forge-1.20.1-1.0.21.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file corpsecurioscompat-1.20.x-Forge-3.0.2.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file craftingstation-1.20.1-1.2.3.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file create-1.20.1-6.0.6.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file create-new-age-forge-1.20.1-1.1.4.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file create-stuff-additions1.20.1_v2.1.0.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file create_central_kitchen-1.20.1-for-create-6.0.4-1.4.1.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file create_connected-1.1.7-mc1.20.1-all.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file create_enchantment_industry-1.3.3-for-create-6.0.6.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file create_jetpack-forge-4.4.2.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file create_ltab-2.7.8.1.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file create_winery-1.7.0-forge-1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file createaddition-1.20.1-1.3.1.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file createcontraptionterminals-1.20-1.2.0.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file createdeco-2.0.3-1.20.1-forge.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file CreateNumismatics-1.0.15+forge-mc1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file createrailwaysnavigator-forge-1.20.1-beta-0.8.4-C6.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file CreativeCore_FORGE_v2.12.32_mc1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file Crystal-Clear-2.1-Beta-forge.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file cupboard-1.20.1-2.7.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file curios-forge-5.14.1+1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file decorative_blocks-forge-1.20.1-4.1.3.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file design_decor-0.4.0b-1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file domum_ornamentum-1.20.1-1.0.291-snapshot-universal.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file dragonlib-forge-1.20.1-2.2.24.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file DripSounds-1.19.4-0.3.2.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file EasyAnvils-v8.0.2-1.20.1-Forge.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file EasyMagic-v8.0.1-1.20.1-Forge.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file emi-1.1.22+1.20.1+forge.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file emi_enchanting-0.1.2+1.20.1+forge.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file emi_loot-0.7.6+1.20.1+forge.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file emitrades-forge-1.2.1+mc1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file Emojiful-Forge-1.20.1-4.2.0.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file EnchantmentDescriptions-Forge-1.20.1-17.1.19.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file endrem_forge-5.3.3-R-1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file entityculling-forge-1.8.2-mc1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file Explorify v1.6.2 f10-48.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file ExtraLib-1.7.3-1.20.1-Forge.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file fallingleaves-1.20.1-2.1.2.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file fancymenu_forge_3.6.4_MC_1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file FarmersDelight-1.20.1-1.2.8.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file fastboot-1.20.x-1.2.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file FastFurnace-1.20.1-8.0.2.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file FastLeafDecay-32.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file FastSuite-1.20.1-5.1.0.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file FastWorkbench-1.20.1-8.0.4.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file ferritecore-6.0.1-forge.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file ForgeEndertech-1.20.1-11.1.8.0-build.1486.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file FpsReducer2-forge-1.20.1-2.5.1.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file ftb-library-forge-2001.2.10.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file ftb-quests-forge-2001.4.14.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file ftb-teams-forge-2001.3.1.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file ftb-xmod-compat-forge-2.1.3.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file fusion-1.2.10-forge-mc1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file fzzy_config-0.7.2+1.20.1+forge.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file geckolib-forge-1.20.1-4.7.3.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file GlitchCore-forge-1.20.1-0.0.1.1.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file guideme-20.1.11.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file Iceberg-1.20.1-forge-1.1.25.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file ImmersiveUI-FORGE-0.3.0.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file interiors-0.5.6+forge-mc1.20.1-local.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file inventoryessentials-forge-1.20.1-8.2.9.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file inventorysorter-1.20.1-23.0.7.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file Jade-1.20.1-Forge-11.13.2.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file JadeAddons-1.20.1-Forge-5.5.0.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file JadeColonies-1.20.1-1.4.2.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file jei-1.20.1-forge-15.20.0.112.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file jeiintegration_1.20.1-10.0.0.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file journeymap-1.20.1-5.10.3-forge.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file JustEnoughProfessions-forge-1.20.1-3.0.1.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file JustEnoughResources-1.20.1-1.4.0.247.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file konkrete_forge_1.8.0_MC_1.20-1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file kotlinforforge-4.11.0-all.jar of type LIBRARY with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file kubejs-create-forge-2001.3.0-build.8.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file kubejs-forge-2001.6.5-build.16.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file leaky-1.20.1-2.1.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file letmedespawn-1.20.x-forge-1.5.0.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file lootintegrations-1.20.1-4.7.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file lootintegrations_yungs-1.4.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file mcw-bridges-3.1.0-mc1.20.1forge.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file mcw-doors-1.1.2-mc1.20.1forge.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file mcw-fences-1.2.0-1.20.1forge.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file mcw-furniture-3.3.0-mc1.20.1forge.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file mcw-lights-1.1.2-mc1.20.1forge.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file mcw-roofs-2.3.2-mc1.20.1forge.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file mcw-stairs-1.0.1-1.20.1forge.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file mcw-trapdoors-1.1.4-mc1.20.1forge.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file mcw-windows-2.4.0-1.20.1forge.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file mcwfencesbop-1.20-1.2.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file melody_forge_1.0.3_MC_1.20.1-1.20.4.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file minecolonies-1.20.1-1.1.1011-snapshot.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file modelfix-1.15.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file modernfix-forge-5.24.4+mc1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file moonlight-1.20-2.16.2-forge.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file MouseTweaks-forge-mc1.20.1-2.25.1.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file MRU-1.0.4+1.20.1+forge.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file multipiston-1.20-1.2.43-RELEASE.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file netherportalfix-forge-1.20-13.0.1.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file NoChatReports-FORGE-1.20.1-v2.2.2.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file notenoughanimations-forge-1.10.1-mc1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file notenoughcrashes-4.4.9+1.20.1-forge.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file OctoLib-FORGE-0.5.0.1+1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file oculus-mc1.20.1-1.8.0.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file ok_zoomer-forge-5.4.0-beta.8.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file open-parties-and-claims-forge-1.20.1-0.25.3.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file packetfixer-3.1.4-1.18-1.20.4-merged.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file particle_core-0.2.6+1.20.1+forge.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file PickUpNotifier-v8.0.0-1.20.1-Forge.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file Placebo-1.20.1-8.6.3.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file player-animation-lib-forge-1.0.2-rc1+1.20.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file ponderjs-1.20.1-2.0.6.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file PresenceFootsteps-1.20.1-1.9.1-beta.1.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file PuzzlesLib-v8.1.32-1.20.1-Forge.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file radium-mc1.20.1-0.12.4+git.26c9d8e.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file rechiseled-1.1.6-forge-mc1.20.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file rechiseled_chipped-1.2.1-1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file reforgedplaymod-1.20.1-0.3.1.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file resourcefullib-forge-1.20.1-2.1.29.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file rhino-forge-2001.2.3-build.10.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file Searchables-forge-1.20.1-1.0.3.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file shulkerboxtooltip-forge-4.0.4+1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file skinlayers3d-forge-1.9.0-mc1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file sliceanddice-forge-3.4.1.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file sophisticatedbackpacks-1.20.1-3.23.24.1302.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file sophisticatedcore-1.20.1-1.2.80.1073.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file sophisticatedstorage-1.20.1-1.3.59.1224.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file sound-physics-remastered-forge-1.20.1-1.4.15.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file starlight-1.1.2+forge.1cda73c.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file Steam_Rails-1.6.12-alpha+forge-mc1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file steampowered-1.20.1-3.0.4.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file structurize-1.20.1-1.0.781-snapshot.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file stylecolonies-1.20.1-1.15.28.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file supermartijn642configlib-1.1.8-forge-mc1.20.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file supermartijn642corelib-1.1.18-forge-mc1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file Terralith_1.20.x_v2.5.4.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file tfmg-1.0.2c.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file tl_skin_cape_forge_1.20_1.20.1-1.32.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file ToastControl-1.20.1-8.0.3.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file toms_storage-1.20-1.7.1.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file towntalk-1.20.1-1.1.0.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file vintageimprovements-1.20.1-0.2.0.3.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file visuality-forge-2.0.2.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file voicechat-forge-1.20.1-2.5.36.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file watut-forge-1.20.1-1.2.3.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file YungsApi-1.20-Forge-4.0.6.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file YungsBetterDesertTemples-1.20-Forge-3.0.3.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file YungsBetterDungeons-1.20-Forge-4.0.4.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file YungsBetterEndIsland-1.20-Forge-2.0.6.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file YungsBetterJungleTemples-1.20-Forge-2.0.5.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file YungsBetterMineshafts-1.20-Forge-4.0.4.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file YungsBetterNetherFortresses-1.20-Forge-2.0.6.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file YungsBetterOceanMonuments-1.20-Forge-3.0.4.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file YungsBetterStrongholds-1.20-Forge-4.0.3.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file YungsBetterWitchHuts-1.20-Forge-3.0.3.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file Zeta-1.0-30.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/WARN]: Mod file C:\Users\biver\AppData\Roaming\.minecraft\libraries\net\minecraftforge\fmlcore\1.20.1-47.4.0\fmlcore-1.20.1-47.4.0.jar is missing mods.toml file [00:43:08] [main/WARN]: Mod file C:\Users\biver\AppData\Roaming\.minecraft\libraries\net\minecraftforge\javafmllanguage\1.20.1-47.4.0\javafmllanguage-1.20.1-47.4.0.jar is missing mods.toml file [00:43:08] [main/WARN]: Mod file C:\Users\biver\AppData\Roaming\.minecraft\libraries\net\minecraftforge\lowcodelanguage\1.20.1-47.4.0\lowcodelanguage-1.20.1-47.4.0.jar is missing mods.toml file [00:43:08] [main/WARN]: Mod file C:\Users\biver\AppData\Roaming\.minecraft\libraries\net\minecraftforge\mclanguage\1.20.1-47.4.0\mclanguage-1.20.1-47.4.0.jar is missing mods.toml file [00:43:08] [main/INFO]: Found mod file fmlcore-1.20.1-47.4.0.jar of type LIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.MinecraftLocator@3971f0fe [00:43:08] [main/INFO]: Found mod file javafmllanguage-1.20.1-47.4.0.jar of type LANGPROVIDER with provider net.minecraftforge.fml.loading.moddiscovery.MinecraftLocator@3971f0fe [00:43:08] [main/INFO]: Found mod file lowcodelanguage-1.20.1-47.4.0.jar of type LANGPROVIDER with provider net.minecraftforge.fml.loading.moddiscovery.MinecraftLocator@3971f0fe [00:43:08] [main/INFO]: Found mod file mclanguage-1.20.1-47.4.0.jar of type LANGPROVIDER with provider net.minecraftforge.fml.loading.moddiscovery.MinecraftLocator@3971f0fe [00:43:08] [main/INFO]: Found mod file client-1.20.1-20230612.114412-srg.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.MinecraftLocator@3971f0fe [00:43:08] [main/INFO]: Found mod file forge-1.20.1-47.4.0-universal.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.MinecraftLocator@3971f0fe [00:43:09] [main/WARN]: Attempted to select two dependency jars from JarJar which have the same identification: Mod File:  and Mod File: . Using Mod File:  [00:43:09] [main/WARN]: Attempted to select a dependency jar for JarJar which was passed in as source: dragonlib. Using Mod File: C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods\dragonlib-forge-1.20.1-2.2.24.jar [00:43:09] [main/WARN]: Attempted to select a dependency jar for JarJar which was passed in as source: architectury. Using Mod File: C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods\architectury-9.2.14-forge.jar [00:43:09] [main/INFO]: Found 39 dependencies adding them to mods collection [00:43:09] [main/INFO]: Found mod file kuma-api-forge-20.1.10+1.20.1.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@60d40ff4 [00:43:09] [main/INFO]: Found mod file aspectjrt-1.8.2.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@60d40ff4 [00:43:09] [main/INFO]: Found mod file satin-forge-1.20.1+1.15.0-SNAPSHOT.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@60d40ff4 [00:43:09] [main/INFO]: Found mod file kfflang-4.11.0.jar of type LANGPROVIDER with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@60d40ff4 [00:43:09] [main/INFO]: Found mod file Ponder-Forge-1.20.1-1.0.81.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@60d40ff4 [00:43:09] [main/INFO]: Found mod file Registrate-MC1.20-1.3.3.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@60d40ff4 [00:43:09] [main/INFO]: Found mod file json-0.2.1.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@60d40ff4 [00:43:09] [main/INFO]: Found mod file google-api-client-java6-1.20.0.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@60d40ff4 [00:43:09] [main/INFO]: Found mod file mclib-20.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@60d40ff4 [00:43:09] [main/INFO]: Found mod file TRender-1.0.6-1.20.1-forge-SNAPSHOT.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@60d40ff4 [00:43:09] [main/INFO]: Found mod file wrench_wrapper-0.6.2.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@60d40ff4 [00:43:09] [main/INFO]: Found mod file snakeyaml-2.2.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@60d40ff4 [00:43:09] [main/INFO]: Found mod file kffmod-4.11.0.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@60d40ff4 [00:43:09] [main/INFO]: Found mod file kfflib-4.11.0.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@60d40ff4 [00:43:09] [main/INFO]: Found mod file bytecodecs-1.0.2.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@60d40ff4 [00:43:09] [main/INFO]: Found mod file flywheel-forge-1.20.1-1.0.4-243.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@60d40ff4 [00:43:09] [main/INFO]: Found mod file jgltf-model-3af6de4.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@60d40ff4 [00:43:09] [main/INFO]: Found mod file lwjgl-utils-27dcd66.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@60d40ff4 [00:43:09] [main/INFO]: Found mod file MixinExtras-0.4.1.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@60d40ff4 [00:43:09] [main/INFO]: Found mod file jcpp-1.4.14.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@60d40ff4 [00:43:09] [main/INFO]: Found mod file opennbt-0a02214.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@60d40ff4 [00:43:09] [main/INFO]: Found mod file mixinextras-forge-0.2.0.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@60d40ff4 [00:43:09] [main/INFO]: Found mod file jankson-1.2.3.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@60d40ff4 [00:43:09] [main/INFO]: Found mod file yabn-1.0.3.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@60d40ff4 [00:43:09] [main/INFO]: Found mod file conditional-mixin-forge-0.6.4.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@60d40ff4 [00:43:09] [main/INFO]: Found mod file TRansition-1.0.4-1.20.1-forge-SNAPSHOT.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@60d40ff4 [00:43:09] [main/INFO]: Found mod file commons-exec-1.3.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@60d40ff4 [00:43:09] [main/INFO]: Found mod file animated-gif-lib-for-java-animated-gif-lib-1.7.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@60d40ff4 [00:43:09] [main/INFO]: Found mod file flightlib-forge-2.1.0.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@60d40ff4 [00:43:09] [main/INFO]: Found mod file 2.79.0-a0696f8.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@60d40ff4 [00:43:09] [main/INFO]: Found mod file google-api-client-gson-1.20.0.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@60d40ff4 [00:43:09] [main/INFO]: Found mod file google-oauth-client-jetty-1.20.0.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@60d40ff4 [00:43:09] [main/INFO]: Found mod file puzzlesaccessapi-forge-20.1.1.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@60d40ff4 [00:43:09] [main/INFO]: Found mod file google-api-services-youtube-v3-rev178-1.22.0.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@60d40ff4 [00:43:09] [main/INFO]: Found mod file tomlkt-jvm-0.3.7.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@60d40ff4 [00:43:09] [main/INFO]: Found mod file isoparser-1.1.7.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@60d40ff4 [00:43:09] [main/INFO]: Found mod file lwjgl-tinyexr-3.3.1.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@60d40ff4 [00:43:09] [main/INFO]: Found mod file NanoLiveConfig-1.2.1.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@60d40ff4 [00:43:09] [main/INFO]: Found mod file japng-0.5.3.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@60d40ff4 [00:43:10] [main/INFO]: OptiFineTransformationService.transformers [00:43:10] [main/INFO]: Targets: 412 [00:43:11] [main/INFO]: additionalClassesLocator: [optifine., net.optifine.] [00:43:14] [main/INFO]: Compatibility level set to JAVA_17 [00:43:14] [main/ERROR]: Mixin config mixins.satin.client.json does not specify "minVersion" property [00:43:14] [main/ERROR]: Mixin config emi_loot.mixins.json does not specify "minVersion" property [00:43:14] [main/INFO]: Successfully loaded Mixin Connector [ca.spottedleaf.starlight.mixin.MixinConnector] [00:43:14] [main/INFO]: Successfully loaded Mixin Connector [com.sonicether.soundphysics.MixinConnector] [00:43:14] [main/INFO]: Successfully loaded Mixin Connector [org.tlauncher.MixinConnector] [00:43:14] [main/INFO]: Launching target 'forgeclient' with arguments [--version, креейт РіРѕСЂРѕРґ, --gameDir, C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ, --assetsDir, C:\Users\biver\AppData\Roaming\.minecraft\assets, --uuid, 23eed3e43ab3452fb0164dffda5e81b5, --username, Pon4ic, --assetIndex, 5, --accessToken, вќ„вќ„вќ„вќ„вќ„вќ„вќ„вќ„, --clientId, null, --xuid, null, --userType, mojang, --versionType, modified, --width, 925, --height, 530] [00:43:15] [main/INFO]: Loaded configuration file for ModernFix 5.24.4+mc1.20.1: 96 options available, 3 override(s) found [00:43:15] [main/WARN]: Option 'mixin.perf.faster_texture_stitching' overriden (by mods [optifine]) to 'false' [00:43:15] [main/WARN]: Option 'mixin.bugfix.entity_pose_stack' overriden (by mods [optifine]) to 'false' [00:43:15] [main/WARN]: Option 'mixin.launch.class_search_cache' overriden (by mods [optifine]) to 'false' [00:43:15] [main/FATAL]: OptiFine detected. Use of ModernFix with OptiFine is not supported due to its impact on launch time and breakage of Forge features. [00:43:15] [main/INFO]: Applying Nashorn fix [00:43:15] [main/INFO]: Applied Forge config corruption patch [00:43:15] [main/INFO]: Loaded configuration file for Radium: 125 options available, 1 override(s) found [00:43:15] [main/WARN]: Reference map 'tfmg.refmap.json' for design_decor.mixins.json could not be read. If this is a development environment you can ignore this message [00:43:15] [main/WARN]: Reference map 'puzzlesaccessapi.common.refmap.json' for puzzlesaccessapi.common.mixins.json could not be read. If this is a development environment you can ignore this message [00:43:15] [main/WARN]: Reference map 'steampowered.refmap.json' for steampowered.mixins.json could not be read. If this is a development environment you can ignore this message [00:43:15] [main/INFO]: Loading 202 mods:     - adlods 8.1.7.0     - advancementplaques 1.6.9     - ae2 15.4.8     - ae2qolrecipes 1.3.0     - aiimprovements 0.5.2     - almanac 1.0.2     - ambientsounds 6.1.11     - amendments 1.20-2.1.2     - appleskin 2.5.1+mc1.20.1     - architectury 9.2.14     - athena 3.1.2     - baguettelib 1.0.0     - balm 7.3.34         \-- kuma_api 20.1.10     - bellsandwhistles 0.4.3-1.20.x     - betterdeserttemples 1.20-Forge-3.0.3     - betterdungeons 1.20-Forge-4.0.4     - betterendisland 1.20-Forge-2.0.6     - betterf3 7.0.2     - betterfortresses 1.20-Forge-2.0.6     - betterjungletemples 1.20-Forge-2.0.5     - bettermineshafts 1.20-Forge-4.0.4     - betteroceanmonuments 1.20-Forge-3.0.4     - betterp2p 1.5.0     - betterstrongholds 1.20-Forge-4.0.3     - betterwitchhuts 1.20-Forge-3.0.3     - blockui 1.20.1-1.0.193     - blur 3.1.1         \-- satin 1.20.1+1.15.0-SNAPSHOT     - bookshelf 20.2.13     - botarium 2.3.4     - byzantine 35.1     - carryon 2.1.2.7     - chat_heads 0.13.18     - chipped 3.0.7     - chipped_express 1.3.2     - chunkloaders 1.2.9     - chunky 1.3.146     - cloth_config 11.1.136     - collective 8.3     - configured 2.2.3     - constructionwand 1.20.1-2.11     - controlling 12.0.2     - copycats 3.0.2+mc.1.20.1-forge     - coroutil 1.20.1-1.3.7     - corpse 1.20.1-1.0.21     - corpsecurioscompat 3.0.2     - craftingstation 1.20.1-1.2.3     - create 6.0.6     - create_central_kitchen 1.4.1         \-- mixinextras 0.2.0     - create_connected 1.1.7-mc1.20.1     - create_enchantment_industry 1.3.3-for-create-6.0.6     - create_jetpack 4.4.2         \-- flightlib 2.1.0     - create_ltab 2.7.0     - create_new_age 1.1.4     - create_sa 2.1.0     - create_winery 1.7.0     - createaddition 1.20.1-1.3.1     - createcontraptionterminals 1.2.0     - createdeco 2.0.3-1.20.1-forge     - createrailwaysnavigator 1.20.1-beta-0.8.4-C6     - creativecore 2.12.32     - crystal_clear 2.1-Beta     - cupboard 1.20.1-2.7     - curios 5.14.1+1.20.1     - decorative_blocks 4.1.3     - design_decor 0.4.0b     - domum_ornamentum 1.20.1-1.0.291-snapshot     - dragonlib 1.20.1-2.2.24     - easyanvils 8.0.2     - easymagic 8.0.1     - emi 1.1.22+1.20.1+forge     - emi_enchanting 0.1.2+1.20.1+forge     - emi_loot 0.7.6+1.20.1+forge     - emitrades 1.2.1+mc1.20.1     - emojiful 4.2.0     - enchdesc 17.1.19     - endrem 5.3.3-R-1.20.1     - entityculling 1.8.2     - explorify 1.6.2     - extralib 1.7.3     - fallingleaves 2.1.2     - fancymenu 3.6.4     - farmersdelight 1.20.1-1.2.8     - fastbench 8.0.4     - fastboot 1.2     - fastfurnace 8.0.2     - fastleafdecay 32     - fastsuite 5.1.0     - ferritecore 6.0.1     - forge 47.4.0     - forgeendertech 11.1.8.0     - fpsreducer 1.20.1-2.5.1     - ftblibrary 2001.2.10     - ftbquests 2001.4.14     - ftbteams 2001.3.1     - ftbxmodcompat 2.1.3     - fusion 1.2.10     - fzzy_config 0.7.2+1.20.1+forge     - geckolib 4.7.3     - glitchcore 0.0.1.1     - guideme 20.1.11     - iceberg 1.1.25     - immersiveui 0.3.0     - interiors 0.5.6     - inventoryessentials 8.2.9     - inventorysorter 23.0.7     - jade 11.13.2+forge     - jadeaddons 5.5.0+forge     - jadecolonies 1.4.2     - jei 15.20.0.112     - jeiintegration 10.0.0     - jeresources 1.4.0.247     - journeymap 5.10.3     - justenoughprofessions 3.0.1     - konkrete 1.8.0     - kotlinforforge 4.11.0     - kubejs 2001.6.5-build.16     - kubejs_create 2001.3.0-build.8     - leaky 1.20.1-2.1     - letmedespawn 1.5.0     - lootintegrations 1.20.1-4.7     - lootintegrations_yungs 1     - mcwbridges 3.1.0     - mcwdoors 1.1.2     - mcwfences 1.2.0     - mcwfencesbop 1.20-1.2     - mcwfurnitures 3.3.0     - mcwlights 1.1.2     - mcwroofs 2.3.2     - mcwstairs 1.0.1     - mcwtrpdoors 1.1.4     - mcwwindows 2.4.0     - melody 1.0.2     - minecolonies 1.20.1-1.1.1011-snapshot     - minecraft 1.20.1     - modelfix 1.15     - modernfix 5.24.4+mc1.20.1     - moonlight 1.20-2.16.2     - mousetweaks 2.25.1     - mru 1.0.4+1.20.1+forge     - multipiston 1.20-1.2.43-RELEASE     - netherportalfix 13.0.1     - nochatreports 1.20.1-v2.2.2     - notenoughanimations 1.10.1     - notenoughcrashes 4.4.9+1.20.1     - numismatics 1.0.15+forge-mc1.20.1     - octolib 0.5.0.1     - oculus 1.8.0     - ok_zoomer 5.4.0-beta.8         \-- wrench_wrapper 0.6.2     - openpartiesandclaims 0.25.3     - packetfixer 3.1.4     - particle_core 0.2.6+1.20.1+forge         \-- conditional_mixin 0.6.4     - pickupnotifier 8.0.0     - placebo 8.6.3     - playeranimator 1.0.2-rc1+1.20     - ponderjs 2.0.6         |-- flywheel 1.0.4-243         \-- ponder 1.0.81     - presencefootsteps 1.20.1-1.9.1-beta.1     - puzzleslib 8.1.32         \-- puzzlesaccessapi 20.1.1     - radium 0.12.4+git.26c9d8e     - railways 1.6.12-alpha+forge-mc1.20.1     - rechiseled 1.1.6     - rechiseled_chipped 1.2     - reforgedplaymod 0.3.1         \-- replaymod 2.6.18     - resourcefullib 2.1.29     - rhino 2001.2.3-build.10     - searchables 1.0.3     - shulkerboxtooltip 4.0.4+1.20.1     - skinlayers3d 1.9.0         |-- transition 1.0.4         \-- trender 1.0.6     - sliceanddice 3.4.1     - sophisticatedbackpacks 3.23.24.1302     - sophisticatedcore 1.2.80.1073     - sophisticatedstorage 1.3.59.1224     - sound_physics_remastered 1.20.1-1.4.15     - starlight 1.1.2+forge.1cda73c     - steampowered 1.20.1-3.0.4     - structurize 1.20.1-1.0.781-snapshot     - stylecolonies 1.20.1-1.15.28     - supermartijn642configlib 1.1.8     - supermartijn642corelib 1.1.18     - terralith 2.5.4     - tfmg 1.0.2c     - tlskincape 1.32     - toastcontrol 8.0.3     - toms_storage 1.7.1     - towntalk 1.1.0     - vintageimprovements 1.20.1-0.2.0.3     - visuality 2.0.2     - voicechat 1.20.1-2.5.36     - waterdripsound 0.3.2     - watut 1.20.1-1.2.3     - yungsapi 1.20-Forge-4.0.6     - zeta 1.0-30 [00:43:16] [main/INFO]: OptiFine was detected. [00:43:16] [main/INFO]: OptiFabric was NOT detected. [00:43:16] [main/WARN]: Reference map 'Create-The_Factory_Must_Grow.refmap.json' for tfmg.mixins.json could not be read. If this is a development environment you can ignore this message [00:43:16] [main/WARN]: Reference map 'betterp2p-forge-refmap.json' for betterp2p.mixins.json could not be read. If this is a development environment you can ignore this message [00:43:16] [main/WARN]: Reference map 'coroutil.refmap.json' for coroutil.mixins.json could not be read. If this is a development environment you can ignore this message [00:43:16] [main/INFO]: Packet Fixer forge 1.19.4-1.20.1 has been applied successfully. [00:43:18] [main/WARN]: Error loading class: shadersmod/client/ShadersRender (java.lang.ClassNotFoundException: shadersmod.client.ShadersRender) [00:43:18] [main/WARN]: Error loading class: net/coderbot/iris/pipeline/HandRenderer (java.lang.ClassNotFoundException: net.coderbot.iris.pipeline.HandRenderer) [00:43:18] [main/WARN]: Error loading class: com/ultramega/showcaseitem/ShowcaseItemFeature (java.lang.ClassNotFoundException: com.ultramega.showcaseitem.ShowcaseItemFeature) [00:43:18] [main/WARN]: Error loading class: mekanism/client/render/entity/RenderFlame (java.lang.ClassNotFoundException: mekanism.client.render.entity.RenderFlame) [00:43:18] [main/WARN]: Error loading class: mekanism/client/render/armor/MekaSuitArmor (java.lang.ClassNotFoundException: mekanism.client.render.armor.MekaSuitArmor) [00:43:18] [main/WARN]: Force-disabling mixin 'alloc.blockstate.StateMixin' as option 'mixin.alloc.blockstate' (added by mods [ferritecore]) disables it and children [00:43:19] [main/INFO]: Patching IForgeItemStack#getEnchantmentLevel [00:43:19] [main/INFO]: Patching IForgeItemStack#getEnchantmentLevel [00:43:19] [main/INFO]: bre2el.fpsreducer.mixin.RenderSystemMixin will be applied. [00:43:19] [main/INFO]: bre2el.fpsreducer.mixin.WindowMixin will be applied. [00:43:19] [main/WARN]: Error loading class: me/jellysquid/mods/sodium/client/render/SodiumWorldRenderer (java.lang.ClassNotFoundException: me.jellysquid.mods.sodium.client.render.SodiumWorldRenderer) [00:43:19] [main/WARN]: Error loading class: me/jellysquid/mods/lithium/common/ai/pathing/PathNodeDefaults (java.lang.ClassNotFoundException: me.jellysquid.mods.lithium.common.ai.pathing.PathNodeDefaults) [00:43:20] [main/WARN]: Error loading class: net/fabricmc/fabric/impl/datagen/FabricDataGenHelper (java.lang.ClassNotFoundException: net.fabricmc.fabric.impl.datagen.FabricDataGenHelper) [00:43:20] [main/WARN]: Error loading class: net/mehvahdjukaar/supplementaries/common/entities/SlimeBallEntity (java.lang.ClassNotFoundException: net.mehvahdjukaar.supplementaries.common.entities.SlimeBallEntity) [00:43:20] [main/WARN]: Error loading class: me/jellysquid/mods/lithium/common/ai/pathing/PathNodeDefaults (java.lang.ClassNotFoundException: me.jellysquid.mods.lithium.common.ai.pathing.PathNodeDefaults) [00:43:20] [main/WARN]: Error loading class: mezz/modnametooltip/TooltipEventHandler (java.lang.ClassNotFoundException: mezz.modnametooltip.TooltipEventHandler) [00:43:20] [main/WARN]: Error loading class: me/shedaniel/rei/impl/client/ClientHelperImpl (java.lang.ClassNotFoundException: me.shedaniel.rei.impl.client.ClientHelperImpl) [00:43:20] [main/WARN]: Error loading class: com/simibubi/create/foundation/ponder/PonderWorld (java.lang.ClassNotFoundException: com.simibubi.create.foundation.ponder.PonderWorld) [00:43:20] [main/WARN]: Error loading class: vazkii/quark/addons/oddities/inventory/BackpackMenu (java.lang.ClassNotFoundException: vazkii.quark.addons.oddities.inventory.BackpackMenu) [00:43:20] [main/WARN]: Error loading class: studio/fantasyit/ars_botania/event/CapEvent (java.lang.ClassNotFoundException: studio.fantasyit.ars_botania.event.CapEvent) [00:43:20] [main/WARN]: @Mixin target studio.fantasyit.ars_botania.event.CapEvent was not found create_central_kitchen.mixins.json:common.arsbotania.CapEventMixin [00:43:20] [main/WARN]: Error loading class: dan200/computercraft/shared/integration/MoreRedIntegration (java.lang.ClassNotFoundException: dan200.computercraft.shared.integration.MoreRedIntegration) [00:43:20] [main/WARN]: @Mixin target dan200.computercraft.shared.integration.MoreRedIntegration was not found create_central_kitchen.mixins.json:common.computercraft.MoreRedIntegrationMixin [00:43:20] [main/WARN]: Error loading class: umpaz/farmersrespite/common/block/CoffeeBushBlock (java.lang.ClassNotFoundException: umpaz.farmersrespite.common.block.CoffeeBushBlock) [00:43:20] [main/WARN]: @Mixin target umpaz.farmersrespite.common.block.CoffeeBushBlock was not found create_central_kitchen.mixins.json:common.farmersrespite.CoffeeBushBlockMixin [00:43:20] [main/WARN]: Error loading class: umpaz/farmersrespite/common/block/CoffeeBushTopBlock (java.lang.ClassNotFoundException: umpaz.farmersrespite.common.block.CoffeeBushTopBlock) [00:43:20] [main/WARN]: @Mixin target umpaz.farmersrespite.common.block.CoffeeBushTopBlock was not found create_central_kitchen.mixins.json:common.farmersrespite.CoffeeBushTopBlockMixin [00:43:20] [main/WARN]: Error loading class: umpaz/farmersrespite/common/block/CoffeeDoubleStemBlock (java.lang.ClassNotFoundException: umpaz.farmersrespite.common.block.CoffeeDoubleStemBlock) [00:43:20] [main/WARN]: @Mixin target umpaz.farmersrespite.common.block.CoffeeDoubleStemBlock was not found create_central_kitchen.mixins.json:common.farmersrespite.CoffeeDoubleStemBlockMixin [00:43:20] [main/WARN]: Error loading class: umpaz/farmersrespite/common/block/CoffeeMiddleStemBlock (java.lang.ClassNotFoundException: umpaz.farmersrespite.common.block.CoffeeMiddleStemBlock) [00:43:20] [main/WARN]: @Mixin target umpaz.farmersrespite.common.block.CoffeeMiddleStemBlock was not found create_central_kitchen.mixins.json:common.farmersrespite.CoffeeMiddleStemBlockMixin [00:43:20] [main/WARN]: Error loading class: umpaz/farmersrespite/common/block/CoffeeStemBlock (java.lang.ClassNotFoundException: umpaz.farmersrespite.common.block.CoffeeStemBlock) [00:43:20] [main/WARN]: @Mixin target umpaz.farmersrespite.common.block.CoffeeStemBlock was not found create_central_kitchen.mixins.json:common.farmersrespite.CoffeeStemBlockMixin [00:43:20] [main/WARN]: Error loading class: umpaz/farmersrespite/common/block/entity/KettleBlockEntity (java.lang.ClassNotFoundException: umpaz.farmersrespite.common.block.entity.KettleBlockEntity) [00:43:20] [main/WARN]: @Mixin target umpaz.farmersrespite.common.block.entity.KettleBlockEntity was not found create_central_kitchen.mixins.json:common.farmersrespite.KettleBlockEntityMixin [00:43:20] [main/WARN]: Error loading class: umpaz/farmersrespite/common/block/SmallTeaBushBlock (java.lang.ClassNotFoundException: umpaz.farmersrespite.common.block.SmallTeaBushBlock) [00:43:20] [main/WARN]: @Mixin target umpaz.farmersrespite.common.block.SmallTeaBushBlock was not found create_central_kitchen.mixins.json:common.farmersrespite.SmallTeaBushBlockMixin [00:43:20] [main/WARN]: Error loading class: umpaz/farmersrespite/common/block/TeaBushBlock (java.lang.ClassNotFoundException: umpaz.farmersrespite.common.block.TeaBushBlock) [00:43:20] [main/WARN]: @Mixin target umpaz.farmersrespite.common.block.TeaBushBlock was not found create_central_kitchen.mixins.json:common.farmersrespite.TeaBushBlockMixin [00:43:20] [main/WARN]: Error loading class: com/sammy/minersdelight/content/block/copper_pot/CopperPotBlockEntity (java.lang.ClassNotFoundException: com.sammy.minersdelight.content.block.copper_pot.CopperPotBlockEntity) [00:43:20] [main/WARN]: @Mixin target com.sammy.minersdelight.content.block.copper_pot.CopperPotBlockEntity was not found create_central_kitchen.mixins.json:common.minersdelight.CopperPotBlockEntityMixin [00:43:20] [main/WARN]: Error loading class: com/sammy/minersdelight/content/block/sticky_basket/StickyBasketBlockEntity (java.lang.ClassNotFoundException: com.sammy.minersdelight.content.block.sticky_basket.StickyBasketBlockEntity) [00:43:20] [main/WARN]: @Mixin target com.sammy.minersdelight.content.block.sticky_basket.StickyBasketBlockEntity was not found create_central_kitchen.mixins.json:common.minersdelight.StickyBasketBlockEntityAccessor [00:43:20] [main/WARN]: Error loading class: com/sammy/minersdelight/content/block/sticky_basket/StickyBasketBlockEntity (java.lang.ClassNotFoundException: com.sammy.minersdelight.content.block.sticky_basket.StickyBasketBlockEntity) [00:43:20] [main/WARN]: @Mixin target com.sammy.minersdelight.content.block.sticky_basket.StickyBasketBlockEntity was not found create_central_kitchen.mixins.json:common.minersdelight.StickyBasketBlockEntityMixin [00:43:20] [main/WARN]: Error loading class: com/teamabnormals/neapolitan/common/item/DrinkItem (java.lang.ClassNotFoundException: com.teamabnormals.neapolitan.common.item.DrinkItem) [00:43:20] [main/WARN]: @Mixin target com.teamabnormals.neapolitan.common.item.DrinkItem was not found create_central_kitchen.mixins.json:common.neapolitan.DrinkItemMixin [00:43:20] [main/WARN]: Error loading class: net/orcinus/overweightfarming/blocks/CropFullBlock (java.lang.ClassNotFoundException: net.orcinus.overweightfarming.blocks.CropFullBlock) [00:43:20] [main/WARN]: @Mixin target net.orcinus.overweightfarming.blocks.CropFullBlock was not found create_central_kitchen.mixins.json:common.overweightfarming.CropFullBlockMixin [00:43:20] [main/WARN]: Error loading class: shadersmod/client/ShadersRender (java.lang.ClassNotFoundException: shadersmod.client.ShadersRender) [00:43:20] [main/WARN]: Error loading class: shadersmod/client/ShadersRender (java.lang.ClassNotFoundException: shadersmod.client.ShadersRender) [00:43:21] [main/INFO]: Initializing MixinExtras via com.llamalad7.mixinextras.service.MixinExtrasServiceImpl(version=0.4.1). [00:43:21] [main/INFO]: Mixing client.MixinMinecraft from mixins/common/nochatreports.mixins.json into net.minecraft.client.Minecraft [00:43:22] [main/WARN]: Static binding violation: PRIVATE @Overwrite method m_216202_ in modernfix-forge.mixins.json:perf.tag_id_caching.TagOrElementLocationMixin cannot reduce visibiliy of PUBLIC target method, visibility will be upgraded. [00:43:22] [main/INFO]: Injecting BlockStateBase cache population hook into getOpacityIfCached from ca.spottedleaf.starlight.mixin.common.blockstate.BlockStateBaseMixin [00:43:22] [main/INFO]: Injecting BlockStateBase cache population hook into getNeighborPathNodeType from me.jellysquid.mods.lithium.mixin.ai.pathing.AbstractBlockStateMixin [00:43:22] [main/INFO]: Injecting BlockStateBase cache population hook into getPathNodeType from me.jellysquid.mods.lithium.mixin.ai.pathing.AbstractBlockStateMixin [00:43:22] [main/INFO]: Injecting BlockStateBase cache population hook into isConditionallyFullOpaque from ca.spottedleaf.starlight.mixin.common.blockstate.BlockStateBaseMixin [00:43:22] [main/INFO]: Injecting BlockStateBase cache population hook into getAllFlags from me.jellysquid.mods.lithium.mixin.util.block_tracking.AbstractBlockStateMixin [00:43:22] [main/INFO]: Patching IForgeItemStack#getEnchantmentLevel [00:43:22] [main/INFO]: Patching IForgeItemStack#getEnchantmentLevel [00:43:22] [main/INFO]: Patching IForgeItemStack#getEnchantmentLevel [00:43:22] [main/INFO]: Patching IForgeItemStack#getEnchantmentLevel Exception in thread "main"   <log4j:Event logger="STDERR" timestamp="1755639803350" level="INFO" thread="main">     <log4j:Message><![CDATA[[java.lang.ThreadGroup:uncaughtException:1077]: java.lang.RuntimeException: java.lang.reflect.InvocationTargetException]]></log4j:Message>   </log4j:Event> [00:43:23] [main/INFO]: [java.lang.ThreadGroup:uncaughtException:1077]:     at MC-BOOTSTRAP/cpw.mods.modlauncher@10.0.9/cpw.mods.modlauncher.LaunchServiceHandlerDecorator.launch(LaunchServiceHandlerDecorator.java:32) [00:43:23] [main/INFO]: [java.lang.ThreadGroup:uncaughtException:1077]:     at MC-BOOTSTRAP/cpw.mods.modlauncher@10.0.9/cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:53) [00:43:23] [main/INFO]: [java.lang.ThreadGroup:uncaughtException:1077]:     at MC-BOOTSTRAP/cpw.mods.modlauncher@10.0.9/cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:71) [00:43:23] [main/INFO]: [java.lang.ThreadGroup:uncaughtException:1077]:     at MC-BOOTSTRAP/cpw.mods.modlauncher@10.0.9/cpw.mods.modlauncher.Launcher.run(Launcher.java:108) [00:43:23] [main/INFO]: [java.lang.ThreadGroup:uncaughtException:1077]:     at MC-BOOTSTRAP/cpw.mods.modlauncher@10.0.9/cpw.mods.modlauncher.Launcher.main(Launcher.java:78) [00:43:23] [main/INFO]: [java.lang.ThreadGroup:uncaughtException:1077]:     at MC-BOOTSTRAP/cpw.mods.modlauncher@10.0.9/cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:26) [00:43:23] [main/INFO]: [java.lang.ThreadGroup:uncaughtException:1077]:     at MC-BOOTSTRAP/cpw.mods.modlauncher@10.0.9/cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:23) [00:43:23] [main/INFO]: [java.lang.ThreadGroup:uncaughtException:1077]:     at cpw.mods.bootstraplauncher@1.1.2/cpw.mods.bootstraplauncher.BootstrapLauncher.main(BootstrapLauncher.java:141) [00:43:23] [main/INFO]: [java.lang.ThreadGroup:uncaughtException:1086]: Caused by: java.lang.reflect.InvocationTargetException [00:43:23] [main/INFO]: [java.lang.ThreadGroup:uncaughtException:1086]:     at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) [00:43:23] [main/INFO]: [java.lang.ThreadGroup:uncaughtException:1086]:     at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) [00:43:23] [main/INFO]: [java.lang.ThreadGroup:uncaughtException:1086]:     at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) [00:43:23] [main/INFO]: [java.lang.ThreadGroup:uncaughtException:1086]:     at java.base/java.lang.reflect.Method.invoke(Method.java:568) [00:43:23] [main/INFO]: [java.lang.ThreadGroup:uncaughtException:1086]:     at MC-BOOTSTRAP/fmlloader@1.20.1-47.4.0/net.minecraftforge.fml.loading.targets.CommonLaunchHandler.runTarget(CommonLaunchHandler.java:111) [00:43:23] [main/INFO]: [java.lang.ThreadGroup:uncaughtException:1086]:     at MC-BOOTSTRAP/fmlloader@1.20.1-47.4.0/net.minecraftforge.fml.loading.targets.CommonLaunchHandler.clientService(CommonLaunchHandler.java:99) [00:43:23] [main/INFO]: [java.lang.ThreadGroup:uncaughtException:1086]:     at MC-BOOTSTRAP/fmlloader@1.20.1-47.4.0/net.minecraftforge.fml.loading.targets.CommonClientLaunchHandler.lambda$makeService$0(CommonClientLaunchHandler.java:25) [00:43:23] [main/INFO]: [java.lang.ThreadGroup:uncaughtException:1086]:     at MC-BOOTSTRAP/cpw.mods.modlauncher@10.0.9/cpw.mods.modlauncher.LaunchServiceHandlerDecorator.launch(LaunchServiceHandlerDecorator.java:30) [00:43:23] [main/INFO]: [java.lang.ThreadGroup:uncaughtException:1086]:     ... 7 more [00:43:23] [main/INFO]: [java.lang.Throwable:printStackTrace:659]: Caused by: org.spongepowered.asm.mixin.transformer.throwables.MixinTransformerError: An unexpected critical error was encountered [00:43:23] [main/INFO]: [java.lang.Throwable:printStackTrace:659]:     at MC-BOOTSTRAP/org.spongepowered.mixin/org.spongepowered.asm.mixin.transformer.MixinProcessor.applyMixins(MixinProcessor.java:392) [00:43:23] [main/INFO]: [java.lang.Throwable:printStackTrace:659]:     at MC-BOOTSTRAP/org.spongepowered.mixin/org.spongepowered.asm.mixin.transformer.MixinTransformer.transformClass(MixinTransformer.java:250) [00:43:23] [main/INFO]: [java.lang.Throwable:printStackTrace:659]:     at MC-BOOTSTRAP/org.spongepowered.mixin/org.spongepowered.asm.service.modlauncher.MixinTransformationHandler.processClass(MixinTransformationHandler.java:131) [00:43:23] [main/INFO]: [java.lang.Throwable:printStackTrace:659]:     at MC-BOOTSTRAP/org.spongepowered.mixin/org.spongepowered.asm.launch.MixinLaunchPluginLegacy.processClass(MixinLaunchPluginLegacy.java:131) [00:43:23] [main/INFO]: [java.lang.Throwable:printStackTrace:659]:     at MC-BOOTSTRAP/cpw.mods.modlauncher@10.0.9/cpw.mods.modlauncher.serviceapi.ILaunchPluginService.processClassWithFlags(ILaunchPluginService.java:156) [00:43:23] [main/INFO]: [java.lang.Throwable:printStackTrace:659]:     at MC-BOOTSTRAP/cpw.mods.modlauncher@10.0.9/cpw.mods.modlauncher.LaunchPluginHandler.offerClassNodeToPlugins(LaunchPluginHandler.java:88) [00:43:23] [main/INFO]: [java.lang.Throwable:printStackTrace:659]:     at MC-BOOTSTRAP/cpw.mods.modlauncher@10.0.9/cpw.mods.modlauncher.ClassTransformer.transform(ClassTransformer.java:120) [00:43:23] [main/INFO]: [java.lang.Throwable:printStackTrace:659]:     at MC-BOOTSTRAP/cpw.mods.modlauncher@10.0.9/cpw.mods.modlauncher.TransformingClassLoader.maybeTransformClassBytes(TransformingClassLoader.java:50) [00:43:23] [main/INFO]: [java.lang.Throwable:printStackTrace:659]:     at cpw.mods.securejarhandler/cpw.mods.cl.ModuleClassLoader.readerToClass(ModuleClassLoader.java:113) [00:43:23] [main/INFO]: [java.lang.Throwable:printStackTrace:659]:     at cpw.mods.securejarhandler/cpw.mods.cl.ModuleClassLoader.lambda$findClass$15(ModuleClassLoader.java:219) [00:43:23] [main/INFO]: [java.lang.Throwable:printStackTrace:659]:     at cpw.mods.securejarhandler/cpw.mods.cl.ModuleClassLoader.loadFromModule(ModuleClassLoader.java:229) [00:43:23] [main/INFO]: [java.lang.Throwable:printStackTrace:659]:     at cpw.mods.securejarhandler/cpw.mods.cl.ModuleClassLoader.findClass(ModuleClassLoader.java:219) [00:43:23] [main/INFO]: [java.lang.Throwable:printStackTrace:659]:     at cpw.mods.securejarhandler/cpw.mods.cl.ModuleClassLoader.loadClass(ModuleClassLoader.java:135) [00:43:23] [main/INFO]: [java.lang.Throwable:printStackTrace:659]:     at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:525) [00:43:23] [main/INFO]: [java.lang.Throwable:printStackTrace:659]:     at TRANSFORMER/net.optifine/net.optifine.reflect.Reflector.<clinit>(Reflector.java:283) [00:43:23] [main/INFO]: [java.lang.Throwable:printStackTrace:659]:     at TRANSFORMER/minecraft@1.20.1/net.minecraft.CrashReport.m_127526_(CrashReport.java:175) [00:43:23] [main/INFO]: [java.lang.Throwable:printStackTrace:659]:     at TRANSFORMER/minecraft@1.20.1/net.minecraft.CrashReport.m_127529_(CrashReport.java:345) [00:43:23] [main/INFO]: [java.lang.Throwable:printStackTrace:659]:     at TRANSFORMER/minecraft@1.20.1/net.minecraft.client.main.Main.main(Main.java:149) [00:43:23] [main/INFO]: [java.lang.Throwable:printStackTrace:659]:     ... 15 more [00:43:23] [main/INFO]: [java.lang.Throwable:printStackTrace:682]: Caused by: org.spongepowered.asm.mixin.injection.throwables.InjectionError: Critical injection failure: Callback method iris$beginClouds(Lcom/mojang/blaze3d/vertex/PoseStack;Lorg/joml/Matrix4f;FDDDLorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V in mixins.oculus.json:MixinLevelRenderer failed injection check, (0/1) succeeded. Scanned 1 target(s). Using refmap oculus-mixins-refmap.json [00:43:23] [main/INFO]: [java.lang.Throwable:printStackTrace:682]:     at MC-BOOTSTRAP/org.spongepowered.mixin/org.spongepowered.asm.mixin.injection.struct.InjectionInfo.postInject(InjectionInfo.java:468) [00:43:23] [main/INFO]: [java.lang.Throwable:printStackTrace:682]:     at MC-BOOTSTRAP/org.spongepowered.mixin/org.spongepowered.asm.mixin.transformer.MixinTargetContext.applyInjections(MixinTargetContext.java:1362) [00:43:23] [main/INFO]: [java.lang.Throwable:printStackTrace:682]:     at MC-BOOTSTRAP/org.spongepowered.mixin/org.spongepowered.asm.mixin.transformer.MixinApplicatorStandard.applyInjections(MixinApplicatorStandard.java:1051) [00:43:23] [main/INFO]: [java.lang.Throwable:printStackTrace:682]:     at MC-BOOTSTRAP/org.spongepowered.mixin/org.spongepowered.asm.mixin.transformer.MixinApplicatorStandard.applyMixin(MixinApplicatorStandard.java:400) [00:43:23] [main/INFO]: [java.lang.Throwable:printStackTrace:682]:     at MC-BOOTSTRAP/org.spongepowered.mixin/org.spongepowered.asm.mixin.transformer.MixinApplicatorStandard.apply(MixinApplicatorStandard.java:325) [00:43:23] [main/INFO]: [java.lang.Throwable:printStackTrace:682]:     at MC-BOOTSTRAP/org.spongepowered.mixin/org.spongepowered.asm.mixin.transformer.TargetClassContext.apply(TargetClassContext.java:383) [00:43:23] [main/INFO]: [java.lang.Throwable:printStackTrace:682]:     at MC-BOOTSTRAP/org.spongepowered.mixin/org.spongepowered.asm.mixin.transformer.TargetClassContext.applyMixins(TargetClassContext.java:365) [00:43:23] [main/INFO]: [java.lang.Throwable:printStackTrace:682]:     at MC-BOOTSTRAP/org.spongepowered.mixin/org.spongepowered.asm.mixin.transformer.MixinProcessor.applyMixins(MixinProcessor.java:363) [00:43:23] [main/INFO]: [java.lang.Throwable:printStackTrace:682]:     ... 32 more Here I am! [VersionManager] Refreshing versions locally... [VersionManager] Versions has been refreshed (110 ms) [Launcher] Launcher exited. [Launcher] Minecraft closed with exit code: 1 flush now flush now  
    • Also remove cc-tweaked The build you are using is not compatible with Create
    • https://mclo.gs/D91YYGv been reformatted
    • Almost worked. But no that didn’t fix it mostly 
    • Add crash-reports with sites like https://mclo.gs/ Does it work without bettercombat?
  • Topics

  • Who's Online (See full list)

×
×
  • Create New...

Important Information

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