Jump to content

Recommended Posts

Posted

Hey, I'm in the middle of making my mod and I finally decided that it was a good idea to make a parent mod over my main ones for listing all of the registries and loading libraries. Is it possible and/or a good idea to create a parent API mod from where I'm now? If so, should I develop that mod WITHIN the same IntelliJ project where I am developing the main mod?

 

 

The Source for my mod is here

Main Developer and Owner of Zero Quest

Visit the Wiki for more information

If I helped anyone, please give me a applaud and a thank you!

Posted

What's with ppl and APIs lately.

 

API is supposed to make at least ONE person's life easier. That one person can be you or other modder that requested API to your mod to work with.

 

There is no point in making API "because I want to".

Creating API is a DECLARATION that not a single method will be changed in nearest (best would be forever) future.

 

Making API because it "is cool" and then changing stuff around will not be anything more than pain in the ass.

 

Questions then:

1. Do you have ppl requesting API from you?

2. If not, do you at least have modders interested in working with your mod?

3. Do you plan on modulating your mod? Modulating = making base and child mods that each does different stuff and works fully ALONE.

Even if you plan on modulating - do you expect outcome to actually be used separately? If not - why would you want it?

 

And to answer questions:

* No it's not good idea to make APIs if they are not needed. API is a declaration of not-changing code, just that.

* Making parent and childs mods need to have good reason - modularity is one of them, do you need/want that?

* Yes, you can develop all mods in one workspace, just NEVER cross-reference them without making (@Mod) dependency.

1.7.10 is no longer supported by forge, you are on your own.

Posted

I do plan on making more child mods off of this API in order to make loading in items and blocks (and many other stuff too) easier instead of copying the same methods about 7,000 times and then end up running into a problem where I have to edit everything or completely start over from scratch.

 

The case goes with my previous mod, Zero Quest; I had created a few classes specifically for using adding registries and texture libraries. Once I given up on the mod (I hadn't worked on it in nearly a year so I decided to start over with a new one), I had to copy over those exact same methods over into the new one (And make changes on it for the different minecraft versions).

 

I feel like making an API for my registry classes would make things alot easier for me for the mod I'm working on now and the ones I plan on making later over the years.

 

And I didn't know that many people make APIs, I thought I was the only one who thought about it ._.

Main Developer and Owner of Zero Quest

Visit the Wiki for more information

If I helped anyone, please give me a applaud and a thank you!

Posted

API is supposed to make at least ONE person's life easier.

 

Well, yeah, that is a valid argument.

 

Make a base mod with registries and lib methods.

Make more mods dependent to it.

 

You might be interested in using Forge Registry API (1.9+), but it is not good for everything.

 

Yes, you can develop all mods in one workspace, just NEVER cross-reference them without making (@Mod) dependency.

 

Hint: Use different packages and exclude/include them from workspace to check if they cross-ref each other (parent should not touch child). There might be better ways, this is what I am doing.

 

Just a note:

What you are describing is a library.

API is a "visible part of library". Still - who cares which word one uses, we mean same thing (but I wanted to note difference).

1.7.10 is no longer supported by forge, you are on your own.

Posted

I started making the packages for the API mod but I got a question about it. With the mcmod.info, how do I make one for the second mod since they are in the same project?

Main Developer and Owner of Zero Quest

Visit the Wiki for more information

If I helped anyone, please give me a applaud and a thank you!

Posted

I don't think you can do that easily (I yet have to figure it out). Hard way would be altering Forge's mod-loading process.

 

I suggest adding mcmod.info to .jars after you build them. How hard is that.

1.7.10 is no longer supported by forge, you are on your own.

Posted

I got another question.. do you use Github with IntelliJ? I am having some major issues with commiting. Also, I'm trying to make a reference of my log manager and I want to be able to interchange the name of the mod to display where it shows the log for so I don't have to write the name of the mod I want it to display whenever I send a message to the console

 

So far I did something like this:

package novaviper.cryolib.common.helper;

import net.minecraftforge.fml.relauncher.FMLRelaunchLog;
import novaviper.tetracraft.lib.ModReference;
import org.apache.logging.log4j.*;

/**
* Created by NovaViper on 5/10/2016.
* Class Purpose: Helper class for logs
*/

public class LogHelper {

public static FMLRelaunchLog instance = FMLRelaunchLog.log;
private static String name;

private static void log(String modName, Level level, String format, Object... data) {
	FMLRelaunchLog.log(modName, level, format, data);
}

public static void registerName(String modName){name = modName;}

public static void error(String format, Object... data) {
	log(name, Level.ERROR, format, data);
}

public static void fatal(String format, Object... data) {
	log(name, Level.FATAL, format, data);
}

public static void warn(String format, Object... data) {
	log(name, Level.WARN, format, data);
}

public static void info(String format, Object... data) {
	log(name, Level.INFO, format, data);
}

public static void debug(String format, Object... data) {
	log(name, Level.DEBUG, format, data);
}

public static void trace(String format, Object... data) {
	log(name, Level.TRACE, format, data);
}

public static void all(String format, Object... data) {
	log(name, Level.ALL, format, data);
}
}

Main Developer and Owner of Zero Quest

Visit the Wiki for more information

If I helped anyone, please give me a applaud and a thank you!

Posted

FMLPreInitializationEvent#getModLog

gives you a logger for your ModID. Or you can use

LogManger.getLogger

(from package

org.apache.logging.log4j

) to obtain a logger with any name you like.

 

Thanks for that tip but what I'm trying to do is have the parent mod call logging information when the child one uses one of the registry methods and print something like this:

CryogenicLib::Tetracraft

. Now within TetraCraft, it will use what you said

Main Developer and Owner of Zero Quest

Visit the Wiki for more information

If I helped anyone, please give me a applaud and a thank you!

Posted

Odd, it doesn't show that TetraCraft is calling it, it just shows that Cryogenic Library is

"C:\Program Files\Java\jdk1.8.0_77\bin\java" -Didea.launcher.port=7535 "-Didea.launcher.bin.path=C:\Program Files (x86)\JetBrains\IntelliJ IDEA Community Edition 2016.1\bin" -Dfile.encoding=UTF-8 -classpath "C:\Program Files\Java\jdk1.8.0_77\jre\lib\charsets.jar;C:\Program Files\Java\jdk1.8.0_77\jre\lib\deploy.jar;C:\Program Files\Java\jdk1.8.0_77\jre\lib\ext\access-bridge-64.jar;C:\Program Files\Java\jdk1.8.0_77\jre\lib\ext\cldrdata.jar;C:\Program Files\Java\jdk1.8.0_77\jre\lib\ext\dnsns.jar;C:\Program Files\Java\jdk1.8.0_77\jre\lib\ext\jaccess.jar;C:\Program Files\Java\jdk1.8.0_77\jre\lib\ext\jfxrt.jar;C:\Program Files\Java\jdk1.8.0_77\jre\lib\ext\localedata.jar;C:\Program Files\Java\jdk1.8.0_77\jre\lib\ext\nashorn.jar;C:\Program Files\Java\jdk1.8.0_77\jre\lib\ext\sunec.jar;C:\Program Files\Java\jdk1.8.0_77\jre\lib\ext\sunjce_provider.jar;C:\Program Files\Java\jdk1.8.0_77\jre\lib\ext\sunmscapi.jar;C:\Program Files\Java\jdk1.8.0_77\jre\lib\ext\sunpkcs11.jar;C:\Program Files\Java\jdk1.8.0_77\jre\lib\ext\zipfs.jar;C:\Program Files\Java\jdk1.8.0_77\jre\lib\javaws.jar;C:\Program Files\Java\jdk1.8.0_77\jre\lib\jce.jar;C:\Program Files\Java\jdk1.8.0_77\jre\lib\jfr.jar;C:\Program Files\Java\jdk1.8.0_77\jre\lib\jfxswt.jar;C:\Program Files\Java\jdk1.8.0_77\jre\lib\jsse.jar;C:\Program Files\Java\jdk1.8.0_77\jre\lib\management-agent.jar;C:\Program Files\Java\jdk1.8.0_77\jre\lib\plugin.jar;C:\Program Files\Java\jdk1.8.0_77\jre\lib\resources.jar;C:\Program Files\Java\jdk1.8.0_77\jre\lib\rt.jar;C:\Users\NovaPC\Dropbox\MinecraftMods\TetraCraft\1.9\classes\production\1.9_main;C:\Users\NovaPC\.gradle\caches\minecraft\deobfedDeps\compileDummy.jar;C:\Users\NovaPC\.gradle\caches\minecraft\deobfedDeps\providedDummy.jar;C:\Users\NovaPC\.gradle\caches\minecraft\net\minecraftforge\forge\1.9-12.16.1.1896\snapshot\20160508\forgeSrc-1.9-12.16.1.1896.jar;C:\Users\NovaPC\.gradle\caches\modules-2\files-2.1\oshi-project\oshi-core\1.1\9ddf7b048a8d701be231c0f4f95fd986198fd2d8\oshi-core-1.1.jar;C:\Users\NovaPC\.gradle\caches\modules-2\files-2.1\net.java.dev.jna\jna\3.4.0\803ff252fedbd395baffd43b37341dc4a150a554\jna-3.4.0.jar;C:\Users\NovaPC\.gradle\caches\modules-2\files-2.1\net.java.dev.jna\platform\3.4.0\e3f70017be8100d3d6923f50b3d2ee17714e9c13\platform-3.4.0.jar;C:\Users\NovaPC\.gradle\caches\modules-2\files-2.1\com.ibm.icu\icu4j-core-mojang\51.2\63d216a9311cca6be337c1e458e587f99d382b84\icu4j-core-mojang-51.2.jar;C:\Users\NovaPC\.gradle\caches\modules-2\files-2.1\net.sf.jopt-simple\jopt-simple\4.6\306816fb57cf94f108a43c95731b08934dcae15c\jopt-simple-4.6.jar;C:\Users\NovaPC\.gradle\caches\modules-2\files-2.1\io.netty\netty-all\4.0.23.Final\294104aaf1781d6a56a07d561e792c5d0c95f45\netty-all-4.0.23.Final.jar;C:\Users\NovaPC\.gradle\caches\modules-2\files-2.1\com.google.guava\guava\17.0\9c6ef172e8de35fd8d4d8783e4821e57cdef7445\guava-17.0.jar;C:\Users\NovaPC\.gradle\caches\modules-2\files-2.1\org.apache.commons\commons-lang3\3.3.2\90a3822c38ec8c996e84c16a3477ef632cbc87a3\commons-lang3-3.3.2.jar;C:\Users\NovaPC\.gradle\caches\modules-2\files-2.1\commons-io\commons-io\2.4\b1b6ea3b7e4aa4f492509a4952029cd8e48019ad\commons-io-2.4.jar;C:\Users\NovaPC\.gradle\caches\modules-2\files-2.1\commons-codec\commons-codec\1.9\9ce04e34240f674bc72680f8b843b1457383161a\commons-codec-1.9.jar;C:\Users\NovaPC\.gradle\caches\modules-2\files-2.1\net.java.jutils\jutils\1.0.0\e12fe1fda814bd348c1579329c86943d2cd3c6a6\jutils-1.0.0.jar;C:\Users\NovaPC\.gradle\caches\modules-2\files-2.1\com.google.code.gson\gson\2.2.4\a60a5e993c98c864010053cb901b7eab25306568\gson-2.2.4.jar;C:\Users\NovaPC\.gradle\caches\modules-2\files-2.1\com.mojang\authlib\1.5.22\afaa8f6df976fcb5520e76ef1d5798c9e6b5c0b2\authlib-1.5.22.jar;C:\Users\NovaPC\.gradle\caches\modules-2\files-2.1\com.mojang\realms\1.8.7\b624280016616bb56cc6c30282684322edc7e7eb\realms-1.8.7.jar;C:\Users\NovaPC\.gradle\caches\modules-2\files-2.1\org.apache.commons\commons-compress\1.8.1\a698750c16740fd5b3871425f4cb3bbaa87f529d\commons-compress-1.8.1.jar;C:\Users\NovaPC\.gradle\caches\modules-2\files-2.1\org.apache.httpcomponents\httpclient\4.3.3\18f4247ff4572a074444572cee34647c43e7c9c7\httpclient-4.3.3.jar;C:\Users\NovaPC\.gradle\caches\modules-2\files-2.1\commons-logging\commons-logging\1.1.3\f6f66e966c70a83ffbdb6f17a0919eaf7c8aca7f\commons-logging-1.1.3.jar;C:\Users\NovaPC\.gradle\caches\modules-2\files-2.1\org.apache.httpcomponents\httpcore\4.3.2\31fbbff1ddbf98f3aa7377c94d33b0447c646b6e\httpcore-4.3.2.jar;C:\Users\NovaPC\.gradle\caches\modules-2\files-2.1\org.apache.logging.log4j\log4j-api\2.0-beta9\1dd66e68cccd907880229f9e2de1314bd13ff785\log4j-api-2.0-beta9.jar;C:\Users\NovaPC\.gradle\caches\modules-2\files-2.1\org.apache.logging.log4j\log4j-core\2.0-beta9\678861ba1b2e1fccb594bb0ca03114bb05da9695\log4j-core-2.0-beta9.jar;C:\Users\NovaPC\.gradle\caches\modules-2\files-2.1\net.minecraft\launchwrapper\1.12\111e7bea9c968cdb3d06ef4632bf7ff0824d0f36\launchwrapper-1.12.jar;C:\Users\NovaPC\.gradle\caches\modules-2\files-2.1\jline\jline\2.13\2d9530d0a25daffaffda7c35037b046b627bb171\jline-2.13.jar;C:\Users\NovaPC\.gradle\caches\modules-2\files-2.1\org.ow2.asm\asm-debug-all\5.0.3\f9e364ae2a66ce2a543012a4668856e84e5dab74\asm-debug-all-5.0.3.jar;C:\Users\NovaPC\.gradle\caches\modules-2\files-2.1\com.typesafe.akka\akka-actor_2.11\2.3.3\ed62e9fc709ca0f2ff1a3220daa8b70a2870078e\akka-actor_2.11-2.3.3.jar;C:\Users\NovaPC\.gradle\caches\modules-2\files-2.1\com.typesafe\config\1.2.1\f771f71fdae3df231bcd54d5ca2d57f0bf93f467\config-1.2.1.jar;C:\Users\NovaPC\.gradle\caches\modules-2\files-2.1\org.scala-lang\scala-actors-migration_2.11\1.1.0\dfa8bc42b181d5b9f1a5dd147f8ae308b893eb6f\scala-actors-migration_2.11-1.1.0.jar;C:\Users\NovaPC\.gradle\caches\modules-2\files-2.1\org.scala-lang\scala-compiler\2.11.1\56ea2e6c025e0821f28d73ca271218b8dd04926a\scala-compiler-2.11.1.jar;C:\Users\NovaPC\.gradle\caches\modules-2\files-2.1\org.scala-lang.plugins\scala-continuations-library_2.11\1.0.2\e517c53a7e9acd6b1668c5a35eccbaa3bab9aac\scala-continuations-library_2.11-1.0.2.jar;C:\Users\NovaPC\.gradle\caches\modules-2\files-2.1\org.scala-lang.plugins\scala-continuations-plugin_2.11.1\1.0.2\f361a3283452c57fa30c1ee69448995de23c60f7\scala-continuations-plugin_2.11.1-1.0.2.jar;C:\Users\NovaPC\.gradle\caches\modules-2\files-2.1\org.scala-lang\scala-library\2.11.1\e11da23da3eabab9f4777b9220e60d44c1aab6a\scala-library-2.11.1.jar;C:\Users\NovaPC\.gradle\caches\modules-2\files-2.1\org.scala-lang.modules\scala-parser-combinators_2.11\1.0.1\f05d7345bf5a58924f2837c6c1f4d73a938e1ff0\scala-parser-combinators_2.11-1.0.1.jar;C:\Users\NovaPC\.gradle\caches\modules-2\files-2.1\org.scala-lang\scala-reflect\2.11.1\6580347e61cc7f8e802941e7fde40fa83b8badeb\scala-reflect-2.11.1.jar;C:\Users\NovaPC\.gradle\caches\modules-2\files-2.1\org.scala-lang.modules\scala-swing_2.11\1.0.1\b1cdd92bd47b1e1837139c1c53020e86bb9112ae\scala-swing_2.11-1.0.1.jar;C:\Users\NovaPC\.gradle\caches\modules-2\files-2.1\org.scala-lang.modules\scala-xml_2.11\1.0.2\820fbca7e524b530fdadc594c39d49a21ea0337e\scala-xml_2.11-1.0.2.jar;C:\Users\NovaPC\.gradle\caches\modules-2\files-2.1\lzma\lzma\0.0.1\521616dc7487b42bef0e803bd2fa3faf668101d7\lzma-0.0.1.jar;C:\Users\NovaPC\.gradle\caches\modules-2\files-2.1\net.sf.trove4j\trove4j\3.0.3\42ccaf4761f0dfdfa805c9e340d99a755907e2dd\trove4j-3.0.3.jar;C:\Users\NovaPC\.gradle\caches\modules-2\files-2.1\com.paulscode\codecjorbis\20101023\c73b5636faf089d9f00e8732a829577de25237ee\codecjorbis-20101023.jar;C:\Users\NovaPC\.gradle\caches\modules-2\files-2.1\com.paulscode\codecwav\20101023\12f031cfe88fef5c1dd36c563c0a3a69bd7261da\codecwav-20101023.jar;C:\Users\NovaPC\.gradle\caches\modules-2\files-2.1\com.paulscode\libraryjavasound\20101123\5c5e304366f75f9eaa2e8cca546a1fb6109348b3\libraryjavasound-20101123.jar;C:\Users\NovaPC\.gradle\caches\modules-2\files-2.1\com.paulscode\librarylwjglopenal\20100824\73e80d0794c39665aec3f62eee88ca91676674ef\librarylwjglopenal-20100824.jar;C:\Users\NovaPC\.gradle\caches\modules-2\files-2.1\com.paulscode\soundsystem\20120107\419c05fe9be71f792b2d76cfc9b67f1ed0fec7f6\soundsystem-20120107.jar;C:\Users\NovaPC\.gradle\caches\modules-2\files-2.1\net.java.jinput\jinput\2.0.5\39c7796b469a600f72380316f6b1f11db6c2c7c4\jinput-2.0.5.jar;C:\Users\NovaPC\.gradle\caches\modules-2\files-2.1\org.lwjgl.lwjgl\lwjgl\2.9.4-nightly-20150209\697517568c68e78ae0b4544145af031c81082dfe\lwjgl-2.9.4-nightly-20150209.jar;C:\Users\NovaPC\.gradle\caches\modules-2\files-2.1\org.lwjgl.lwjgl\lwjgl_util\2.9.4-nightly-20150209\d51a7c040a721d13efdfbd34f8b257b2df882ad0\lwjgl_util-2.9.4-nightly-20150209.jar;C:\Users\NovaPC\.gradle\caches\modules-2\files-2.1\java3d\vecmath\1.5.2\79846ba34cbd89e2422d74d53752f993dcc2ccaf\vecmath-1.5.2.jar;C:\Users\NovaPC\.gradle\caches\modules-2\files-2.1\org.fusesource.jansi\jansi\1.11\655c643309c2f45a56a747fda70e3fadf57e9f11\jansi-1.11.jar;C:\Users\NovaPC\.gradle\caches\modules-2\files-2.1\org.scala-lang\scala-actors\2.11.0\8ccfb6541de179bb1c4d45cf414acee069b7f78b\scala-actors-2.11.0.jar;C:\Users\NovaPC\.gradle\caches\modules-2\files-2.1\net.java.jinput\jinput-platform\2.0.5\7ff832a6eb9ab6a767f1ade2b548092d0fa64795\jinput-platform-2.0.5-natives-linux.jar;C:\Users\NovaPC\.gradle\caches\modules-2\files-2.1\net.java.jinput\jinput-platform\2.0.5\385ee093e01f587f30ee1c8a2ee7d408fd732e16\jinput-platform-2.0.5-natives-windows.jar;C:\Users\NovaPC\.gradle\caches\modules-2\files-2.1\net.java.jinput\jinput-platform\2.0.5\53f9c919f34d2ca9de8c51fc4e1e8282029a9232\jinput-platform-2.0.5-natives-osx.jar;C:\Users\NovaPC\.gradle\caches\modules-2\files-2.1\com.google.code.findbugs\jsr305\2.0.1\516c03b21d50a644d538de0f0369c620989cd8f0\jsr305-2.0.1.jar;C:\Users\NovaPC\.gradle\caches\modules-2\files-2.1\org.lwjgl.lwjgl\lwjgl-platform\2.9.4-nightly-20150209\b84d5102b9dbfabfeb5e43c7e2828d98a7fc80e0\lwjgl-platform-2.9.4-nightly-20150209-natives-windows.jar;C:\Users\NovaPC\.gradle\caches\modules-2\files-2.1\org.lwjgl.lwjgl\lwjgl-platform\2.9.4-nightly-20150209\931074f46c795d2f7b30ed6395df5715cfd7675b\lwjgl-platform-2.9.4-nightly-20150209-natives-linux.jar;C:\Users\NovaPC\.gradle\caches\modules-2\files-2.1\org.lwjgl.lwjgl\lwjgl-platform\2.9.4-nightly-20150209\bcab850f8f487c3f4c4dbabde778bb82bd1a40ed\lwjgl-platform-2.9.4-nightly-20150209-natives-osx.jar;C:\Users\NovaPC\.gradle\caches\minecraft\net\minecraftforge\forge\1.9-12.16.1.1896\start;C:\Program Files (x86)\JetBrains\IntelliJ IDEA Community Edition 2016.1\lib\idea_rt.jar" com.intellij.rt.execution.application.AppMain GradleStart
2016-05-10 10:01:48,514 WARN Unable to instantiate org.fusesource.jansi.WindowsAnsiOutputStream
2016-05-10 10:01:48,524 WARN Unable to instantiate org.fusesource.jansi.WindowsAnsiOutputStream
[10:01:48] [main/INFO] [GradleStart]: Extra: []
[10:01:49] [main/INFO] [GradleStart]: Running with arguments: [--userProperties, {}, --assetsDir, C:/Users/NovaPC/.gradle/caches/minecraft/assets, --assetIndex, 1.9, --accessToken{REDACTED}, --version, 1.9, --tweakClass, net.minecraftforge.fml.common.launcher.FMLTweaker, --tweakClass, net.minecraftforge.gradle.tweakers.CoremodTweaker]
[10:01:49] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLTweaker
[10:01:49] [main/INFO] [LaunchWrapper]: Using primary tweak class name net.minecraftforge.fml.common.launcher.FMLTweaker
[10:01:49] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.gradle.tweakers.CoremodTweaker
[10:01:49] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLTweaker
[10:01:49] [main/INFO] [FML]: Forge Mod Loader version 12.16.1.1896 for Minecraft 1.9 loading
[10:01:49] [main/INFO] [FML]: Java is Java HotSpot(TM) 64-Bit Server VM, version 1.8.0_77, running on Windows 10:amd64:10.0, installed at C:\Program Files\Java\jdk1.8.0_77\jre
[10:01:49] [main/INFO] [FML]: Managed to load a deobfuscated Minecraft name- we are in a deobfuscated environment. Skipping runtime deobfuscation
[10:01:50] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.gradle.tweakers.CoremodTweaker
[10:01:50] [main/INFO] [GradleStart]: Injecting location in coremod net.minecraftforge.fml.relauncher.FMLCorePlugin
[10:01:50] [main/INFO] [GradleStart]: Injecting location in coremod net.minecraftforge.classloading.FMLForgePlugin
[10:01:50] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLInjectionAndSortingTweaker
[10:01:50] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLDeobfTweaker
[10:01:50] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.gradle.tweakers.AccessTransformerTweaker
[10:01:50] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLInjectionAndSortingTweaker
[10:01:50] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLInjectionAndSortingTweaker
[10:01:50] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper
[10:01:52] [main/ERROR] [FML]: The binary patch set is missing. Either you are in a development environment, or things are not going to work!
[10:02:04] [main/ERROR] [FML]: FML appears to be missing any signature data. This is not a good thing
[10:02:04] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper
[10:02:04] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLDeobfTweaker
[10:02:06] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.gradle.tweakers.AccessTransformerTweaker
[10:02:06] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.TerminalTweaker
[10:02:06] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.TerminalTweaker
[10:02:06] [main/INFO] [LaunchWrapper]: Launching wrapped minecraft {net.minecraft.client.main.Main}
2016-05-10 10:02:09,168 WARN Unable to instantiate org.fusesource.jansi.WindowsAnsiOutputStream
2016-05-10 10:02:09,285 WARN Unable to instantiate org.fusesource.jansi.WindowsAnsiOutputStream
2016-05-10 10:02:09,289 WARN Unable to instantiate org.fusesource.jansi.WindowsAnsiOutputStream
[10:02:10] [Client thread/INFO]: Setting user: Player366
[10:02:24] [Client thread/INFO]: LWJGL Version: 2.9.4
[10:02:28] [Client thread/INFO] [sTDOUT]: [net.minecraftforge.fml.client.SplashProgress:start:200]: ---- Minecraft Crash Report ----
// Everything's going to plan. No, really, that was supposed to happen.

Time: 5/10/16 10:02 AM
Description: Loading screen debug info

This is just a prompt for computer specs to be printed. THIS IS NOT A ERROR


A detailed walkthrough of the error, its code path and all known details is as follows:
---------------------------------------------------------------------------------------

-- System Details --
Details:
Minecraft Version: 1.9
Operating System: Windows 10 (amd64) version 10.0
Java Version: 1.8.0_77, Oracle Corporation
Java VM Version: Java HotSpot(TM) 64-Bit Server VM (mixed mode), Oracle Corporation
Memory: 199009248 bytes (189 MB) / 450887680 bytes (430 MB) up to 1659371520 bytes (1582 MB)
JVM Flags: 0 total; 
IntCache: cache: 0, tcache: 0, allocated: 0, tallocated: 0
FML: 
Loaded coremods (and transformers): 
GL info: ' Vendor: 'ATI Technologies Inc.' Version: '4.5.13431 Compatibility Profile Context 16.150.2401.1002' Renderer: 'AMD Radeon(TM) R5 Graphics'
[10:02:28] [Client thread/INFO] [FML]: MinecraftForge v12.16.1.1896 Initialized
[10:02:28] [Client thread/INFO] [FML]: Replaced 231 ore recipes
[10:02:30] [Client thread/INFO] [FML]: Found 0 mods from the command line. Injecting into mod discoverer
[10:02:30] [Client thread/INFO] [FML]: Searching C:\Users\NovaPC\Dropbox\MinecraftMods\TetraCraft\1.9\run\mods for mods
[10:02:43] [Client thread/INFO] [FML]: Forge Mod Loader has identified 5 mods to load
[10:02:44] [Client thread/INFO] [FML]: Attempting connection with missing mods [mcp, FML, Forge, cryolib, tetracraft] at CLIENT
[10:02:44] [Client thread/INFO] [FML]: Attempting connection with missing mods [mcp, FML, Forge, cryolib, tetracraft] at SERVER
[10:02:46] [Client thread/INFO]: Reloading ResourceManager: Default, FMLFileResourcePack:Forge Mod Loader, FMLFileResourcePack:Minecraft Forge, FMLFileResourcePack:Cryogenic Library, FMLFileResourcePack:TetraCraft
[10:02:47] [Client thread/INFO] [FML]: Processing ObjectHolder annotations
[10:02:47] [Client thread/INFO] [FML]: Found 418 ObjectHolder annotations
[10:02:47] [Client thread/INFO] [FML]: Identifying ItemStackHolder annotations
[10:02:47] [Client thread/INFO] [FML]: Found 0 ItemStackHolder annotations
[10:02:47] [Client thread/INFO] [FML]: Configured a dormant chunk cache size of 0
[10:02:47] [Forge Version Check/INFO] [ForgeVersionCheck]: [cryolib] Starting version check at https://raw.githubusercontent.com/NovaViper/TetraCraft/master/update.json
[10:02:47] [Client thread/INFO] [Cryogenic Library::FMLMod:cryolib{0.0.1}]: Event [%s] has been registered
[10:02:48] [Client thread/INFO] [Cryogenic Library::FMLMod:cryolib{0.0.1}]: Item [%s] has been registered
[10:02:48] [Client thread/INFO] [Cryogenic Library::FMLMod:cryolib{0.0.1}]: Item [%s] has been registered
[10:02:48] [Client thread/INFO] [Cryogenic Library::FMLMod:cryolib{0.0.1}]: Item [%s] has been registered
[10:02:48] [Client thread/INFO] [Cryogenic Library::FMLMod:cryolib{0.0.1}]: Block [%s] has been registered
[10:02:48] [Client thread/INFO] [Cryogenic Library::FMLMod:cryolib{0.0.1}]: Entity Property [%s] has been registered
[10:02:48] [Client thread/INFO] [Cryogenic Library::FMLMod:cryolib{0.0.1}]: Event [%s] has been registered
[10:02:48] [Client thread/INFO] [Cryogenic Library::FMLMod:cryolib{0.0.1}]: Event [%s] has been registered
[10:02:48] [Client thread/INFO] [FML]: Applying holder lookups
[10:02:48] [Client thread/INFO] [FML]: Holder lookups applied
[10:02:48] [Client thread/INFO] [FML]: Injecting itemstacks
[10:02:48] [Client thread/INFO] [FML]: Itemstack injection complete
[10:02:51] [Forge Version Check/INFO] [ForgeVersionCheck]: [cryolib] Found status: OUTDATED Target: 1.0.0
[10:02:51] [Forge Version Check/INFO] [ForgeVersionCheck]: [tetracraft] Starting version check at https://raw.githubusercontent.com/NovaViper/TetraCraft/master/update.json
[10:02:51] [Forge Version Check/INFO] [ForgeVersionCheck]: [tetracraft] Found status: UP_TO_DATE Target: null
[10:02:51] [Forge Version Check/INFO] [ForgeVersionCheck]: [Forge] Starting version check at http://files.minecraftforge.net/maven/net/minecraftforge/forge/promotions_slim.json
[10:02:51] [Forge Version Check/INFO] [ForgeVersionCheck]: [Forge] Found status: OUTDATED Target: 12.16.1.1898
[10:03:09] [sound Library Loader/INFO]: Starting up SoundSystem...
[10:03:09] [Thread-7/INFO]: Initializing LWJGL OpenAL
[10:03:09] [Thread-7/INFO]: (The LWJGL binding of OpenAL.  For more information, see http://www.lwjgl.org)
[10:03:10] [Thread-7/INFO]: OpenAL initialized.
[10:03:10] [sound Library Loader/INFO]: Sound engine started
[10:03:35] [Client thread/INFO] [FML]: Max texture size: 16384
[10:03:35] [Client thread/INFO]: Created: 16x16 textures-atlas
[10:03:42] [Client thread/INFO] [FML]: Injecting itemstacks
[10:03:42] [Client thread/INFO] [FML]: Itemstack injection complete
[10:03:42] [Client thread/INFO] [FML]: Forge Mod Loader has successfully loaded 5 mods
[10:03:42] [Client thread/INFO]: Reloading ResourceManager: Default, FMLFileResourcePack:Forge Mod Loader, FMLFileResourcePack:Minecraft Forge, FMLFileResourcePack:Cryogenic Library, FMLFileResourcePack:TetraCraft
[10:03:54] [Client thread/INFO]: SoundSystem shutting down...
[10:03:54] [Client thread/WARN]: Author: Paul Lamb, www.paulscode.com
[10:03:54] [sound Library Loader/INFO]: Starting up SoundSystem...
[10:03:54] [Thread-9/INFO]: Initializing LWJGL OpenAL
[10:03:54] [Thread-9/INFO]: (The LWJGL binding of OpenAL.  For more information, see http://www.lwjgl.org)
[10:03:54] [Thread-9/INFO]: OpenAL initialized.
[10:03:55] [sound Library Loader/INFO]: Sound engine started
[10:04:16] [Client thread/INFO] [FML]: Max texture size: 16384
[10:04:17] [Client thread/INFO]: Created: 1024x512 textures-atlas
[10:04:23] [Realms Notification Availability checker #1/INFO]: Could not authorize you against Realms server: Invalid session id

 

--Update--

Another thing I notice, its show showing TetraCraft as a child mod to CryoGenic Library

Main Developer and Owner of Zero Quest

Visit the Wiki for more information

If I helped anyone, please give me a applaud and a thank you!

Posted

But it doesn't make sense.

Either you want your Mod to be used by more than one other mod, then you need a separate workspace.

Or you want your Mod to be used only by one other mod, then it does not make sense to make 2 mods in the first place.

 

Probably first time I would disagree with d7.

 

At least for me - it is VERY convenient to have my 6 mods in one workspace.

>API (utils, registry, network, item/armour/NPC/skill/effect/attribs/etc. APIs)

>>>Engine (API implementation and RPG environment (like attributes) + config handlers)

>>>>>MedievalRP (name says it all)

>>>>>>>Spell Expansions (those are actually many @Mods, usually merged with each other after some time).

>>>>>FuturisticRP (totally different than Medieval one mod based off same common RP Engine)

>>>>>>>Vehicles Module (additional child mod)

 

Obviously all mods are in their own packages and I just compile them into different .jars and autogenerate mcmod infos.

Saves a lot of compiling and attaching libs from one workspace to another if I'd go with "many workspaces".

1.7.10 is no longer supported by forge, you are on your own.

Posted

I do remember making a child mod within the same workspace with the parent one (not sure if I had compiled it or not) but I found it easier to do that, especially now since I'm trying to avoid making way too many workspaces and use up all of my cloud storage (Using Dropbox). Now you may wonder why I'm using a cloud service for my modding; that's because I want to be able to access the workspace on multiple computers without having to completely recreate the workspace, all I have to do is just download the source code and import it into the IDE on the second computer.

Main Developer and Owner of Zero Quest

Visit the Wiki for more information

If I helped anyone, please give me a applaud and a thank you!

Posted

@Ernio: That's just because you aren't using maven :P

If you are using maven all you need to do to update the dependency mod (with different workspaces) is run gradlew publishToMavenLocal in the library mod.

 

Im not sure if Im using maven. ALso, I dont want to use up too much space in my dropbox

Main Developer and Owner of Zero Quest

Visit the Wiki for more information

If I helped anyone, please give me a applaud and a thank you!

Posted

Ok guys, my next question is what do I do now? Should I just completely delete the code I made so far (I dont want to do that so..) and just start with a fresh project? Also.. what type of project is best recommended for someone like me, a solo developer, who has different Windows machines and still kinda new to this uploading source and creating APIs for Minecraft Forge? In fact, what kind of builds does the developers of Forge use?

Main Developer and Owner of Zero Quest

Visit the Wiki for more information

If I helped anyone, please give me a applaud and a thank you!

Posted

If you want to develop on multiple machines the easiest way is to use Git.

When you make a change, push to github (or something similar) and pull on the other machines. Want to introduce a 3rd machine? Sure, just clone the repo, run setupDecompWorkspace and you're good to go.

 

Oh.. *facepalm* I didn't know I could do that with Github. Can I do the same thing with BitBucket?

Main Developer and Owner of Zero Quest

Visit the Wiki for more information

If I helped anyone, please give me a applaud and a thank you!

Posted

Lol, that is the entire point of git! So multiple people (= multiple workspaces) can work on the same code at the same time. It is a property of Git (GitHub is just a service that hosts a git repo for you). Any git hosting service lets you do this, since it is what makes Git.

 

*Major facepalm* I feel kinda stupid for not realizing this.. No point in keeping the Dropbox now ;-;. Also another thing, I've been having some major issues with commit my source code through IntelliJ and Github Desktop, they both say that whatever i push is conflicting, I tried to merge it but they keep on rejecting my pushes.. that's why I'm triyng BitBucket to see if that works

Main Developer and Owner of Zero Quest

Visit the Wiki for more information

If I helped anyone, please give me a applaud and a thank you!

Posted

That has nothing to do with Github. Github just hosts your repo for you.

This error means that the code on the remote has changes that are newer than your current version and your local changes conflict with them. You have to resolve these merge conflicts manually, IntelliJ has a very nice GUI for that.

Using BitBucket will not change this property of how git works.

 

Ah, thats why it kept giving me those errors, I thought I had corrupted something with the repository so I ended up starting a new repository

Main Developer and Owner of Zero Quest

Visit the Wiki for more information

If I helped anyone, please give me a applaud and a thank you!

Posted

Ok now back to the original question.. Im not sure why Forge isn't saying that the API mod (Cryogenic Library) isn't a parent mod to TetraCraft

Main Developer and Owner of Zero Quest

Visit the Wiki for more information

If I helped anyone, please give me a applaud and a thank you!

Posted

Do you have it set as a dependency using required-before?

 

I did required-after like this for TetraCraft:

public static final String dependencies = required-after:cryolib

Main Developer and Owner of Zero Quest

Visit the Wiki for more information

If I helped anyone, please give me a applaud and a thank you!

Posted

I don't see any dependencies in the @Mod here.

 

*Facepalm* Ok I forgot to commit the news, I just commited and pushed on the server, its commit ce7b16e

Main Developer and Owner of Zero Quest

Visit the Wiki for more information

If I helped anyone, please give me a applaud and a thank you!

Posted

IIRC, "require-after" isn't enough to "hide" the mod in the menu->installed mods listing.  It just declares the load order.

Making the child mod actually show up as a child meant using another tag, but I've forgotten what it is, as I've never used it.

Apparently I'm a complete and utter jerk and come to this forum just like to make fun of people, be confrontational, and make your personal life miserable.  If you think this is the case, JUST REPORT ME.  Otherwise you're just going to get reported when you reply to my posts and point it out, because odds are, I was trying to be nice.

 

Exception: If you do not understand Java, I WILL NOT HELP YOU and your thread will get locked.

 

DO NOT PM ME WITH PROBLEMS. No help will be given.

Posted

It's the parent tag but I have configurations that I want to be able to edit in TetraCraft, but since it is hidden under the API, I can't access the in-game configurations

Main Developer and Owner of Zero Quest

Visit the Wiki for more information

If I helped anyone, please give me a applaud and a thank you!

Join the conversation

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

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

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

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

×   Your previous content has been restored.   Clear editor

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

Announcements



  • Recently Browsing

    • No registered users viewing this page.
  • Posts

    • Hi guys i have a problem i trying to play with my Cobblemon Modpack that is 1.20.1 Forge and it crashing whenever i press play and i have AMD Graphics Card and i have updated it to the latest driver via the website but its still crashing and also here is the log: [13:11:42] [main/INFO]: ModLauncher running: args [--username, Pallante3, --version, forge-47.4.2, --gameDir, C:\Users\Gallo\curseforge\minecraft\Instances\Cobblemon Official Modpack [Forge], --assetsDir, C:\Users\Gallo\curseforge\minecraft\Install\assets, --assetIndex, 5, --uuid, 66d892fe1fbd45d79e690c1aeea691f3, --accessToken, ????????, --clientId, MWJjYmRiM2UtMjRjYi00NjdiLWFlOTUtZWM4OTU4MjBhMmI2, --xuid, 2535465252781045, --userType, msa, --versionType, release, --width, 1024, --height, 768, --quickPlayPath, C:\Users\Gallo\curseforge\minecraft\Install\quickPlay\java\1750590701334.json, --launchTarget, forgeclient, --fml.forgeVersion, 47.4.2, --fml.mcVersion, 1.20.1, --fml.forgeGroup, net.minecraftforge, --fml.mcpVersion, 20230612.114412] [13:11:42] [main/INFO]: ModLauncher 10.0.9+10.0.9+main.dcd20f30 starting: java version 17.0.15 by Microsoft; OS Windows 10 arch amd64 version 10.0 [13:11:43] [main/INFO]: Loading ImmediateWindowProvider fmlearlywindow [13:11:43] [main/INFO]: Trying GL version 4.6 [13:11:43] [main/INFO]: Requested GL version 4.6 got version 4.6 [13:11:43] [main/INFO]: SpongePowered MIXIN Subsystem Version=0.8.5 Source=union:/C:/Users/Gallo/curseforge/minecraft/Install/libraries/org/spongepowered/mixin/0.8.5/mixin-0.8.5.jar%23100!/ Service=ModLauncher Env=CLIENT [13:11:43] [pool-2-thread-1/INFO]: GL info: AMD Radeon RX 6600 GL version 4.6.0 Core Profile Context 25.6.1.250522, ATI Technologies Inc. [13:11:44] [main/INFO]: Found mod file 1.20-Ghostwriter-2.4.5.jar of type MOD with provider {mods folder locator at C:\Users\Gallo\curseforge\minecraft\Instances\Cobblemon Official Modpack [Forge]\mods} [13:11:44] [main/INFO]: Found mod file 20-rediculousoregeneration_1.7.2.jar of type MOD with provider {mods folder locator at C:\Users\Gallo\curseforge\minecraft\Instances\Cobblemon Official Modpack [Forge]\mods} [13:11:44] [main/INFO]: Found mod file [1.20.1] SecurityCraft v1.10.0.1.jar of type MOD with provider {mods folder locator at C:\Users\Gallo\curseforge\minecraft\Instances\Cobblemon Official Modpack [Forge]\mods} [13:11:44] [main/INFO]: Found mod file advanced-xray-forge-1.20.1-2.18.1-build.22.jar of type MOD with provider {mods folder locator at C:\Users\Gallo\curseforge\minecraft\Instances\Cobblemon Official Modpack [Forge]\mods} [13:11:44] [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\Gallo\curseforge\minecraft\Instances\Cobblemon Official Modpack [Forge]\mods} [13:11:44] [main/INFO]: Found mod file AI-Improvements-1.20-0.5.2.jar of type MOD with provider {mods folder locator at C:\Users\Gallo\curseforge\minecraft\Instances\Cobblemon Official Modpack [Forge]\mods} [13:11:44] [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\Gallo\curseforge\minecraft\Instances\Cobblemon Official Modpack [Forge]\mods} [13:11:44] [main/INFO]: Found mod file AmbientEnvironment-forge-1.20.1-11.0.0.1.jar of type MOD with provider {mods folder locator at C:\Users\Gallo\curseforge\minecraft\Instances\Cobblemon Official Modpack [Forge]\mods} [13:11:44] [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\Gallo\curseforge\minecraft\Instances\Cobblemon Official Modpack [Forge]\mods} [13:11:44] [main/INFO]: Found mod file architectury-9.2.14-forge.jar of type MOD with provider {mods folder locator at C:\Users\Gallo\curseforge\minecraft\Instances\Cobblemon Official Modpack [Forge]\mods} [13:11:44] [main/INFO]: Found mod file BadMobs-1.20.1-19.0.4.jar of type MOD with provider {mods folder locator at C:\Users\Gallo\curseforge\minecraft\Instances\Cobblemon Official Modpack [Forge]\mods} [13:11:44] [main/INFO]: Found mod file balm-forge-1.20.1-7.3.31-all.jar of type MOD with provider {mods folder locator at C:\Users\Gallo\curseforge\minecraft\Instances\Cobblemon Official Modpack [Forge]\mods} [13:11:44] [main/INFO]: Found mod file BetterAdvancements-Forge-1.20.1-0.4.2.25.jar of type MOD with provider {mods folder locator at C:\Users\Gallo\curseforge\minecraft\Instances\Cobblemon Official Modpack [Forge]\mods} [13:11:44] [main/INFO]: Found mod file betterfpsdist-1.20.1-6.0.jar of type MOD with provider {mods folder locator at C:\Users\Gallo\curseforge\minecraft\Instances\Cobblemon Official Modpack [Forge]\mods} [13:11:44] [main/INFO]: Found mod file BetterPingDisplay-1.20.1-1.1.jar of type MOD with provider {mods folder locator at C:\Users\Gallo\curseforge\minecraft\Instances\Cobblemon Official Modpack [Forge]\mods} [13:11:44] [main/INFO]: Found mod file BetterThirdPerson-Forge-1.20-1.9.0.jar of type MOD with provider {mods folder locator at C:\Users\Gallo\curseforge\minecraft\Instances\Cobblemon Official Modpack [Forge]\mods} [13:11:44] [main/INFO]: Found mod file biggerstacks-1.20.1-1.0.4-all.jar of type MOD with provider {mods folder locator at C:\Users\Gallo\curseforge\minecraft\Instances\Cobblemon Official Modpack [Forge]\mods} [13:11:44] [main/INFO]: Found mod file BiomesOPlenty-forge-1.20.1-19.0.0.96.jar of type MOD with provider {mods folder locator at C:\Users\Gallo\curseforge\minecraft\Instances\Cobblemon Official Modpack [Forge]\mods} [13:11:44] [main/INFO]: Found mod file blastingclay-1.20.1-forge-1.1.jar of type MOD with provider {mods folder locator at C:\Users\Gallo\curseforge\minecraft\Instances\Cobblemon Official Modpack [Forge]\mods} [13:11:44] [main/INFO]: Found mod file blastingraw-1.20.1-forge-3.1.jar of type MOD with provider {mods folder locator at C:\Users\Gallo\curseforge\minecraft\Instances\Cobblemon Official Modpack [Forge]\mods} [13:11:44] [main/INFO]: Found mod file blastingsand-forge-1.20.1-12.3.jar of type MOD with provider {mods folder locator at C:\Users\Gallo\curseforge\minecraft\Instances\Cobblemon Official Modpack [Forge]\mods} [13:11:44] [main/INFO]: Found mod file BlastingSmeltingRawBlocks_Prop_1.0.3.jar of type MOD with provider {mods folder locator at C:\Users\Gallo\curseforge\minecraft\Instances\Cobblemon Official Modpack [Forge]\mods} [13:11:44] [main/INFO]: Found mod file blastingstone-1.20.1-forge-2.1.jar of type MOD with provider {mods folder locator at C:\Users\Gallo\curseforge\minecraft\Instances\Cobblemon Official Modpack [Forge]\mods} [13:11:44] [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\Gallo\curseforge\minecraft\Instances\Cobblemon Official Modpack [Forge]\mods} [13:11:44] [main/INFO]: Found mod file BorderlessWindow-1.20-1.6.0.jar of type MOD with provider {mods folder locator at C:\Users\Gallo\curseforge\minecraft\Instances\Cobblemon Official Modpack [Forge]\mods} [13:11:44] [main/INFO]: Found mod file bwncr-forge-1.20.1-3.17.2.jar of type MOD with provider {mods folder locator at C:\Users\Gallo\curseforge\minecraft\Instances\Cobblemon Official Modpack [Forge]\mods} [13:11:44] [main/INFO]: Found mod file caelus-forge-3.2.0+1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\Gallo\curseforge\minecraft\Instances\Cobblemon Official Modpack [Forge]\mods} [13:11:44] [main/INFO]: Found mod file canary-mc1.20.1-0.3.3.jar of type MOD with provider {mods folder locator at C:\Users\Gallo\curseforge\minecraft\Instances\Cobblemon Official Modpack [Forge]\mods} [13:11:44] [main/INFO]: Found mod file catalogue-forge-1.20.1-1.8.0.jar of type MOD with provider {mods folder locator at C:\Users\Gallo\curseforge\minecraft\Instances\Cobblemon Official Modpack [Forge]\mods} [13:11:44] [main/INFO]: Found mod file CGM-Unofficial-1.4.18+Forge+1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\Gallo\curseforge\minecraft\Instances\Cobblemon Official Modpack [Forge]\mods} [13:11:44] [main/INFO]: Found mod file cherishedworlds-forge-6.1.7+1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\Gallo\curseforge\minecraft\Instances\Cobblemon Official Modpack [Forge]\mods} [13:11:44] [main/INFO]: Found mod file Clear-Water-2.1.jar of type MOD with provider {mods folder locator at C:\Users\Gallo\curseforge\minecraft\Instances\Cobblemon Official Modpack [Forge]\mods} [13:11:44] [main/INFO]: Found mod file ClearDespawn-forge-1.20.2-1.1.15.jar of type MOD with provider {mods folder locator at C:\Users\Gallo\curseforge\minecraft\Instances\Cobblemon Official Modpack [Forge]\mods} [13:11:44] [main/INFO]: Found mod file cloth-config-11.1.136-forge.jar of type MOD with provider {mods folder locator at C:\Users\Gallo\curseforge\minecraft\Instances\Cobblemon Official Modpack [Forge]\mods} [13:11:44] [main/INFO]: Found mod file Clumps-forge-1.20.1-12.0.0.4.jar of type MOD with provider {mods folder locator at C:\Users\Gallo\curseforge\minecraft\Instances\Cobblemon Official Modpack [Forge]\mods} [13:11:44] [main/INFO]: Found mod file CNPC-Cobblemon-Addon-1.20.1.20241027.jar of type MOD with provider {mods folder locator at C:\Users\Gallo\curseforge\minecraft\Instances\Cobblemon Official Modpack [Forge]\mods} [13:11:44] [main/INFO]: Found mod file cnpcs_contentback_1.2.3.jar of type MOD with provider {mods folder locator at C:\Users\Gallo\curseforge\minecraft\Instances\Cobblemon Official Modpack [Forge]\mods} [13:11:44] [main/INFO]: Found mod file cobble_contests-v1.0.1-forge.jar of type MOD with provider {mods folder locator at C:\Users\Gallo\curseforge\minecraft\Instances\Cobblemon Official Modpack [Forge]\mods} [13:11:44] [main/INFO]: Found mod file cobbledex-1.20.1-forge-1.1.0.jar of type MOD with provider {mods folder locator at C:\Users\Gallo\curseforge\minecraft\Instances\Cobblemon Official Modpack [Forge]\mods} [13:11:44] [main/INFO]: Found mod file CobbleDollars-forge-1.5.2+1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\Gallo\curseforge\minecraft\Instances\Cobblemon Official Modpack [Forge]\mods} [13:11:44] [main/INFO]: Found mod file Cobblemon O' Plenty 1.20.1 B.2.0.jar of type MOD with provider {mods folder locator at C:\Users\Gallo\curseforge\minecraft\Instances\Cobblemon Official Modpack [Forge]\mods} [13:11:44] [main/INFO]: Found mod file cobblemon-capturexp-1.5-forge-1.0.1.jar of type MOD with provider {mods folder locator at C:\Users\Gallo\curseforge\minecraft\Instances\Cobblemon Official Modpack [Forge]\mods} [13:11:44] [main/INFO]: Found mod file cobblemon-counter-1.5-forge-1.2.0.jar of type MOD with provider {mods folder locator at C:\Users\Gallo\curseforge\minecraft\Instances\Cobblemon Official Modpack [Forge]\mods} [13:11:44] [main/INFO]: Found mod file cobblemon-field-moves-1.5-forge-1.1.1.jar of type MOD with provider {mods folder locator at C:\Users\Gallo\curseforge\minecraft\Instances\Cobblemon Official Modpack [Forge]\mods} [13:11:44] [main/INFO]: Found mod file Cobblemon-forge-1.5.2+1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\Gallo\curseforge\minecraft\Instances\Cobblemon Official Modpack [Forge]\mods} [13:11:44] [main/INFO]: Found mod file cobblemon-shedders-1.4-forge-1.0.0.jar of type MOD with provider {mods folder locator at C:\Users\Gallo\curseforge\minecraft\Instances\Cobblemon Official Modpack [Forge]\mods} [13:11:44] [main/INFO]: Found mod file cobblemon-spawn-notification-1.5-forge-1.2.0.jar of type MOD with provider {mods folder locator at C:\Users\Gallo\curseforge\minecraft\Instances\Cobblemon Official Modpack [Forge]\mods} [13:11:44] [main/INFO]: Found mod file cobblemon-unchained-1.5-forge-1.0.1.jar of type MOD with provider {mods folder locator at C:\Users\Gallo\curseforge\minecraft\Instances\Cobblemon Official Modpack [Forge]\mods} [13:11:44] [main/INFO]: Found mod file cobblemon-unimplemented-items-1.5-forge-1.3.0.jar of type MOD with provider {mods folder locator at C:\Users\Gallo\curseforge\minecraft\Instances\Cobblemon Official Modpack [Forge]\mods} [13:11:44] [main/INFO]: Found mod file cobblemon-whiteout-1.5-forge-1.0.0.jar of type MOD with provider {mods folder locator at C:\Users\Gallo\curseforge\minecraft\Instances\Cobblemon Official Modpack [Forge]\mods} [13:11:44] [main/INFO]: Found mod file cobblemon_armor_sets-FORGE-2.0.1.jar of type MOD with provider {mods folder locator at C:\Users\Gallo\curseforge\minecraft\Instances\Cobblemon Official Modpack [Forge]\mods} [13:11:44] [main/INFO]: Found mod file cobblemon_poke_labs-1.0.0-forge-1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\Gallo\curseforge\minecraft\Instances\Cobblemon Official Modpack [Forge]\mods} [13:11:44] [main/INFO]: Found mod file cobblemon_simple_center-1.0.0-forge-1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\Gallo\curseforge\minecraft\Instances\Cobblemon Official Modpack [Forge]\mods} [13:11:44] [main/INFO]: Found mod file CobblemonMegas-forge-1.3.0+1.5.2.jar of type MOD with provider {mods folder locator at C:\Users\Gallo\curseforge\minecraft\Instances\Cobblemon Official Modpack [Forge]\mods} [13:11:44] [main/INFO]: Found mod file cobblemonrider-1.2.4.jar of type MOD with provider {mods folder locator at C:\Users\Gallo\curseforge\minecraft\Instances\Cobblemon Official Modpack [Forge]\mods} [13:11:44] [main/INFO]: Found mod file CobblemonTrainers-1.1.11+1.5.2-forge.jar of type MOD with provider {mods folder locator at C:\Users\Gallo\curseforge\minecraft\Instances\Cobblemon Official Modpack [Forge]\mods} [13:11:44] [main/INFO]: Found mod file cobblemore_lib-1.1.1-forge-1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\Gallo\curseforge\minecraft\Instances\Cobblemon Official Modpack [Forge]\mods} [13:11:44] [main/INFO]: Found mod file collective-1.20.1-8.3.jar of type MOD with provider {mods folder locator at C:\Users\Gallo\curseforge\minecraft\Instances\Cobblemon Official Modpack [Forge]\mods} [13:11:44] [main/INFO]: Found mod file comforts-forge-6.4.0+1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\Gallo\curseforge\minecraft\Instances\Cobblemon Official Modpack [Forge]\mods} [13:11:44] [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\Gallo\curseforge\minecraft\Instances\Cobblemon Official Modpack [Forge]\mods} [13:11:44] [main/INFO]: Found mod file cosmeticarmorreworked-1.20.1-v1a.jar of type MOD with provider {mods folder locator at C:\Users\Gallo\curseforge\minecraft\Instances\Cobblemon Official Modpack [Forge]\mods} [13:11:44] [main/INFO]: Found mod file craftingtweaks-forge-1.20.1-18.2.5.jar of type MOD with provider {mods folder locator at C:\Users\Gallo\curseforge\minecraft\Instances\Cobblemon Official Modpack [Forge]\mods} [13:11:44] [main/INFO]: Found mod file CraftPresence-2.6.1+1.20.1-forge.jar of type MOD with provider {mods folder locator at C:\Users\Gallo\curseforge\minecraft\Instances\Cobblemon Official Modpack [Forge]\mods} [13:11:44] [main/INFO]: Found mod file create_klinks_n_klangs-1.0.4.jar of type MOD with provider {mods folder locator at C:\Users\Gallo\curseforge\minecraft\Instances\Cobblemon Official Modpack [Forge]\mods} [13:11:44] [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\Gallo\curseforge\minecraft\Instances\Cobblemon Official Modpack [Forge]\mods} [13:11:44] [main/INFO]: Found mod file cristellib-1.1.6-forge.jar of type MOD with provider {mods folder locator at C:\Users\Gallo\curseforge\minecraft\Instances\Cobblemon Official Modpack [Forge]\mods} [13:11:44] [main/INFO]: Found mod file Croptopia-1.20.1-FORGE-3.0.4.jar of type MOD with provider {mods folder locator at C:\Users\Gallo\curseforge\minecraft\Instances\Cobblemon Official Modpack [Forge]\mods} [13:11:44] [main/INFO]: Found mod file cupboard-1.20.1-2.7.jar of type MOD with provider {mods folder locator at C:\Users\Gallo\curseforge\minecraft\Instances\Cobblemon Official Modpack [Forge]\mods} [13:11:44] [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\Gallo\curseforge\minecraft\Instances\Cobblemon Official Modpack [Forge]\mods} [13:11:44] [main/INFO]: Found mod file CustomNPCs-1.20.1-GBPort-Unofficial-20250429.jar of type MOD with provider {mods folder locator at C:\Users\Gallo\curseforge\minecraft\Instances\Cobblemon Official Modpack [Forge]\mods} [13:11:44] [main/INFO]: Found mod file darkmining-forge-1.20.1-1.1.0.jar of type MOD with provider {mods folder locator at C:\Users\Gallo\curseforge\minecraft\Instances\Cobblemon Official Modpack [Forge]\mods} [13:11:44] [main/INFO]: Found mod file darksmelting-forge-1.20.1-1.0.5.jar of type MOD with provider {mods folder locator at C:\Users\Gallo\curseforge\minecraft\Instances\Cobblemon Official Modpack [Forge]\mods} [13:11:44] [main/INFO]: Found mod file defaultoptions-forge-1.20-18.0.1.jar of type MOD with provider {mods folder locator at C:\Users\Gallo\curseforge\minecraft\Instances\Cobblemon Official Modpack [Forge]\mods} [13:11:44] [main/INFO]: Found mod file deimos-1.20.1-forge-2.2.jar of type MOD with provider {mods folder locator at C:\Users\Gallo\curseforge\minecraft\Instances\Cobblemon Official Modpack [Forge]\mods} [13:11:44] [main/INFO]: Found mod file DripSounds-1.19.4-0.3.2.jar of type MOD with provider {mods folder locator at C:\Users\Gallo\curseforge\minecraft\Instances\Cobblemon Official Modpack [Forge]\mods} [13:11:44] [main/INFO]: Found mod file dtcobblemon-1.20.1-1.1.1-slim.jar of type MOD with provider {mods folder locator at C:\Users\Gallo\curseforge\minecraft\Instances\Cobblemon Official Modpack [Forge]\mods} [13:11:44] [main/INFO]: Found mod file dynamic-fps-3.9.5+minecraft-1.20.0-forge.jar of type MOD with provider {mods folder locator at C:\Users\Gallo\curseforge\minecraft\Instances\Cobblemon Official Modpack [Forge]\mods} [13:11:44] [main/INFO]: Found mod file dynamiccrosshair-9.3+1.20.1-forge.jar of type MOD with provider {mods folder locator at C:\Users\Gallo\curseforge\minecraft\Instances\Cobblemon Official Modpack [Forge]\mods} [13:11:44] [main/INFO]: Found mod file DynamicTrees-1.20.1-1.4.5.jar of type MOD with provider {mods folder locator at C:\Users\Gallo\curseforge\minecraft\Instances\Cobblemon Official Modpack [Forge]\mods} [13:11:44] [main/INFO]: Found mod file DynamicTreesBOP-1.20.1-3.3.2.jar of type MOD with provider {mods folder locator at C:\Users\Gallo\curseforge\minecraft\Instances\Cobblemon Official Modpack [Forge]\mods} [13:11:44] [main/INFO]: Found mod file DynamicTreesCroptopia-1.20.1-1.0.0.jar of type MOD with provider {mods folder locator at C:\Users\Gallo\curseforge\minecraft\Instances\Cobblemon Official Modpack [Forge]\mods} [13:11:44] [main/INFO]: Found mod file DynamicTreesPHC2-1.20.1-1.3.1.jar of type MOD with provider {mods folder locator at C:\Users\Gallo\curseforge\minecraft\Instances\Cobblemon Official Modpack [Forge]\mods} [13:11:44] [main/INFO]: Found mod file eggs-cobblemon-addon-0.3.jar of type MOD with provider {mods folder locator at C:\Users\Gallo\curseforge\minecraft\Instances\Cobblemon Official Modpack [Forge]\mods} [13:11:44] [main/INFO]: Found mod file elytraslot-forge-6.4.4+1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\Gallo\curseforge\minecraft\Instances\Cobblemon Official Modpack [Forge]\mods} [13:11:44] [main/INFO]: Found mod file embeddium-0.3.31+mc1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\Gallo\curseforge\minecraft\Instances\Cobblemon Official Modpack [Forge]\mods} [13:11:44] [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\Gallo\curseforge\minecraft\Instances\Cobblemon Official Modpack [Forge]\mods} [13:11:44] [main/INFO]: Found mod file entity_model_features_forge_1.20.1-2.4.1.jar of type MOD with provider {mods folder locator at C:\Users\Gallo\curseforge\minecraft\Instances\Cobblemon Official Modpack [Forge]\mods} [13:11:44] [main/INFO]: Found mod file entity_texture_features_forge_1.20.1-6.2.9.jar of type MOD with provider {mods folder locator at C:\Users\Gallo\curseforge\minecraft\Instances\Cobblemon Official Modpack [Forge]\mods} [13:11:44] [main/INFO]: Found mod file EpheroLib-1.20.1-FORGE-1.2.0.jar of type MOD with provider {mods folder locator at C:\Users\Gallo\curseforge\minecraft\Instances\Cobblemon Official Modpack [Forge]\mods} [13:11:44] [main/INFO]: Found mod file fallingleaves-1.20.1-2.1.2.jar of type MOD with provider {mods folder locator at C:\Users\Gallo\curseforge\minecraft\Instances\Cobblemon Official Modpack [Forge]\mods} [13:11:44] [main/INFO]: Found mod file fancymenu_forge_3.5.2_MC_1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\Gallo\curseforge\minecraft\Instances\Cobblemon Official Modpack [Forge]\mods} [13:11:44] [main/INFO]: Found mod file farsight-1.20.1-3.7.jar of type MOD with provider {mods folder locator at C:\Users\Gallo\curseforge\minecraft\Instances\Cobblemon Official Modpack [Forge]\mods} [13:11:44] [main/INFO]: Found mod file ferritecore-6.0.1-forge.jar of type MOD with provider {mods folder locator at C:\Users\Gallo\curseforge\minecraft\Instances\Cobblemon Official Modpack [Forge]\mods} [13:11:44] [main/INFO]: Found mod file fightorflight-forge-0.6.1.jar of type MOD with provider {mods folder locator at C:\Users\Gallo\curseforge\minecraft\Instances\Cobblemon Official Modpack [Forge]\mods} [13:11:44] [main/INFO]: Found mod file forge-lava_walker-2.0.0.jar of type MOD with provider {mods folder locator at C:\Users\Gallo\curseforge\minecraft\Instances\Cobblemon Official Modpack [Forge]\mods} [13:11:44] [main/INFO]: Found mod file framework-forge-1.20.1-0.7.15.jar of type MOD with provider {mods folder locator at C:\Users\Gallo\curseforge\minecraft\Instances\Cobblemon Official Modpack [Forge]\mods} [13:11:44] [main/INFO]: Found mod file From-The-Fog-1.20-v1.9.2-Forge-Fabric.jar of type MOD with provider {mods folder locator at C:\Users\Gallo\curseforge\minecraft\Instances\Cobblemon Official Modpack [Forge]\mods} [13:11:44] [main/INFO]: Found mod file geckolib-forge-1.20.1-4.7.2.jar of type MOD with provider {mods folder locator at C:\Users\Gallo\curseforge\minecraft\Instances\Cobblemon Official Modpack [Forge]\mods} [13:11:44] [main/INFO]: Found mod file gk_unbreakable-2.7.jar of type MOD with provider {mods folder locator at C:\Users\Gallo\curseforge\minecraft\Instances\Cobblemon Official Modpack [Forge]\mods} [13:11:44] [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\Gallo\curseforge\minecraft\Instances\Cobblemon Official Modpack [Forge]\mods} [13:11:44] [main/INFO]: Found mod file highlight-forge-1.20-2.0.1.jar of type MOD with provider {mods folder locator at C:\Users\Gallo\curseforge\minecraft\Instances\Cobblemon Official Modpack [Forge]\mods} [13:11:44] [main/INFO]: Found mod file Highlighter-1.20.1-forge-1.1.9.jar of type MOD with provider {mods folder locator at C:\Users\Gallo\curseforge\minecraft\Instances\Cobblemon Official Modpack [Forge]\mods} [13:11:44] [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\Gallo\curseforge\minecraft\Instances\Cobblemon Official Modpack [Forge]\mods} [13:11:44] [main/INFO]: Found mod file ImmediatelyFast-Forge-1.5.0+1.20.4.jar of type MOD with provider {mods folder locator at C:\Users\Gallo\curseforge\minecraft\Instances\Cobblemon Official Modpack [Forge]\mods} [13:11:44] [main/INFO]: Found mod file InvMove-1.20-0.8.4-Forge.jar of type MOD with provider {mods folder locator at C:\Users\Gallo\curseforge\minecraft\Instances\Cobblemon Official Modpack [Forge]\mods} [13:11:44] [main/INFO]: Found mod file ironfurnaces-1.20.1-4.1.6.jar of type MOD with provider {mods folder locator at C:\Users\Gallo\curseforge\minecraft\Instances\Cobblemon Official Modpack [Forge]\mods} [13:11:44] [main/INFO]: Found mod file ItemPhysic_FORGE_v1.8.7_mc1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\Gallo\curseforge\minecraft\Instances\Cobblemon Official Modpack [Forge]\mods} [13:11:44] [main/INFO]: Found mod file Jade-1.20.1-Forge-11.13.1.jar of type MOD with provider {mods folder locator at C:\Users\Gallo\curseforge\minecraft\Instances\Cobblemon Official Modpack [Forge]\mods} [13:11:44] [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\Gallo\curseforge\minecraft\Instances\Cobblemon Official Modpack [Forge]\mods} [13:11:44] [main/INFO]: Found mod file justzoom_forge_2.1.1_MC_1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\Gallo\curseforge\minecraft\Instances\Cobblemon Official Modpack [Forge]\mods} [13:11:44] [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\Gallo\curseforge\minecraft\Instances\Cobblemon Official Modpack [Forge]\mods} [13:11:44] [main/INFO]: Found mod file kotlinforforge-4.11.0-all.jar of type LIBRARY with provider {mods folder locator at C:\Users\Gallo\curseforge\minecraft\Instances\Cobblemon Official Modpack [Forge]\mods} [13:11:44] [main/INFO]: Found mod file LavaClearView-1.20.1-forge-7.0.0.jar of type MOD with provider {mods folder locator at C:\Users\Gallo\curseforge\minecraft\Instances\Cobblemon Official Modpack [Forge]\mods} [13:11:44] [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\Gallo\curseforge\minecraft\Instances\Cobblemon Official Modpack [Forge]\mods} [13:11:44] [main/INFO]: Found mod file LongerChatHistory-1.3-Forge.jar of type MOD with provider {mods folder locator at C:\Users\Gallo\curseforge\minecraft\Instances\Cobblemon Official Modpack [Forge]\mods} [13:11:44] [main/INFO]: Found mod file majrusz-library-forge-1.20.1-7.0.8.jar of type MOD with provider {mods folder locator at C:\Users\Gallo\curseforge\minecraft\Instances\Cobblemon Official Modpack [Forge]\mods} [13:11:44] [main/INFO]: Found mod file majruszs-enchantments-forge-1.20.1-1.10.8.jar of type MOD with provider {mods folder locator at C:\Users\Gallo\curseforge\minecraft\Instances\Cobblemon Official Modpack [Forge]\mods} [13:11:44] [main/INFO]: Found mod file make_bubbles_pop-0.3.0-forge-mc1.19.4-1.20.4.jar of type MOD with provider {mods folder locator at C:\Users\Gallo\curseforge\minecraft\Instances\Cobblemon Official Modpack [Forge]\mods} [13:11:44] [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\Gallo\curseforge\minecraft\Instances\Cobblemon Official Modpack [Forge]\mods} [13:11:44] [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\Gallo\curseforge\minecraft\Instances\Cobblemon Official Modpack [Forge]\mods} [13:11:44] [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\Gallo\curseforge\minecraft\Instances\Cobblemon Official Modpack [Forge]\mods} [13:11:44] [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\Gallo\curseforge\minecraft\Instances\Cobblemon Official Modpack [Forge]\mods} [13:11:44] [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\Gallo\curseforge\minecraft\Instances\Cobblemon Official Modpack [Forge]\mods} [13:11:44] [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\Gallo\curseforge\minecraft\Instances\Cobblemon Official Modpack [Forge]\mods} [13:11:44] [main/INFO]: Found mod file memoryleakfix-forge-1.17+-1.1.5.jar of type MOD with provider {mods folder locator at C:\Users\Gallo\curseforge\minecraft\Instances\Cobblemon Official Modpack [Forge]\mods} [13:11:44] [main/INFO]: Found mod file merenc-forge-1.20.[0-4]-v4.2.jar of type MOD with provider {mods folder locator at C:\Users\Gallo\curseforge\minecraft\Instances\Cobblemon Official Modpack [Forge]\mods} [13:11:44] [main/INFO]: Found mod file minecraft-comes-alive-7.6.10+1.20.1-universal.jar of type MOD with provider {mods folder locator at C:\Users\Gallo\curseforge\minecraft\Instances\Cobblemon Official Modpack [Forge]\mods} [13:11:44] [main/INFO]: Found mod file modernfix-forge-5.23.1+mc1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\Gallo\curseforge\minecraft\Instances\Cobblemon Official Modpack [Forge]\mods} [13:11:44] [main/INFO]: Found mod file moonlight-1.20-2.14.9-forge.jar of type MOD with provider {mods folder locator at C:\Users\Gallo\curseforge\minecraft\Instances\Cobblemon Official Modpack [Forge]\mods} [13:11:44] [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\Gallo\curseforge\minecraft\Instances\Cobblemon Official Modpack [Forge]\mods} [13:11:44] [main/INFO]: Found mod file Myths_and_Legends-1.6.1-forge.jar of type MOD with provider {mods folder locator at C:\Users\Gallo\curseforge\minecraft\Instances\Cobblemon Official Modpack [Forge]\mods} [13:11:44] [main/INFO]: Found mod file netherportalfix-forge-1.20-13.0.1.jar of type MOD with provider {mods folder locator at C:\Users\Gallo\curseforge\minecraft\Instances\Cobblemon Official Modpack [Forge]\mods} [13:11:44] [main/INFO]: Found mod file netherrackblasting-1.20.1-0-forge.jar of type MOD with provider {mods folder locator at C:\Users\Gallo\curseforge\minecraft\Instances\Cobblemon Official Modpack [Forge]\mods} [13:11:44] [main/INFO]: Found mod file nightvision-mod-1.0.6.jar of type MOD with provider {mods folder locator at C:\Users\Gallo\curseforge\minecraft\Instances\Cobblemon Official Modpack [Forge]\mods} [13:11:44] [main/INFO]: Found mod file notenoughanimations-forge-1.9.3-mc1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\Gallo\curseforge\minecraft\Instances\Cobblemon Official Modpack [Forge]\mods} [13:11:44] [main/INFO]: Found mod file oculus-mc1.20.1-1.8.0.jar of type MOD with provider {mods folder locator at C:\Users\Gallo\curseforge\minecraft\Instances\Cobblemon Official Modpack [Forge]\mods} [13:11:44] [main/INFO]: Found mod file oreexcavation-1.13.174.jar of type MOD with provider {mods folder locator at C:\Users\Gallo\curseforge\minecraft\Instances\Cobblemon Official Modpack [Forge]\mods} [13:11:44] [main/INFO]: Found mod file pamhc2trees-1.20-1.0.2.jar of type MOD with provider {mods folder locator at C:\Users\Gallo\curseforge\minecraft\Instances\Cobblemon Official Modpack [Forge]\mods} [13:11:44] [main/INFO]: Found mod file Patchouli-1.20.1-84.1-FORGE.jar of type MOD with provider {mods folder locator at C:\Users\Gallo\curseforge\minecraft\Instances\Cobblemon Official Modpack [Forge]\mods} [13:11:44] [main/INFO]: Found mod file Paxi-1.20-Forge-4.0.jar of type MOD with provider {mods folder locator at C:\Users\Gallo\curseforge\minecraft\Instances\Cobblemon Official Modpack [Forge]\mods} [13:11:44] [main/INFO]: Found mod file Pehkui-3.8.2+1.20.1-forge.jar of type MOD with provider {mods folder locator at C:\Users\Gallo\curseforge\minecraft\Instances\Cobblemon Official Modpack [Forge]\mods} [13:11:44] [main/INFO]: Found mod file petyourcobblemon-1.2.0.jar of type MOD with provider {mods folder locator at C:\Users\Gallo\curseforge\minecraft\Instances\Cobblemon Official Modpack [Forge]\mods} [13:11:44] [main/INFO]: Found mod file PKGBadges 5.0.jar of type MOD with provider {mods folder locator at C:\Users\Gallo\curseforge\minecraft\Instances\Cobblemon Official Modpack [Forge]\mods} [13:11:44] [main/INFO]: Found mod file polytone-1.20-3.3.10.jar of type MOD with provider {mods folder locator at C:\Users\Gallo\curseforge\minecraft\Instances\Cobblemon Official Modpack [Forge]\mods} [13:11:44] [main/INFO]: Found mod file prefab-1.10.0.1.jar of type MOD with provider {mods folder locator at C:\Users\Gallo\curseforge\minecraft\Instances\Cobblemon Official Modpack [Forge]\mods} [13:11:44] [main/INFO]: Found mod file rctmod-forge-1.20.1-0.12.1-beta.jar of type MOD with provider {mods folder locator at C:\Users\Gallo\curseforge\minecraft\Instances\Cobblemon Official Modpack [Forge]\mods} [13:11:44] [main/INFO]: Found mod file refurbished_furniture-forge-1.20.1-1.0.14.jar of type MOD with provider {mods folder locator at C:\Users\Gallo\curseforge\minecraft\Instances\Cobblemon Official Modpack [Forge]\mods} [13:11:44] [main/INFO]: Found mod file resourcefulconfig-forge-1.20.1-2.1.3.jar of type MOD with provider {mods folder locator at C:\Users\Gallo\curseforge\minecraft\Instances\Cobblemon Official Modpack [Forge]\mods} [13:11:44] [main/INFO]: Found mod file RotomPhoneCobblemon-forge-1.0.2+1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\Gallo\curseforge\minecraft\Instances\Cobblemon Official Modpack [Forge]\mods} [13:11:44] [main/INFO]: Found mod file rubidium-extra-0.5.4.4+mc1.20.1-build.131.jar of type MOD with provider {mods folder locator at C:\Users\Gallo\curseforge\minecraft\Instances\Cobblemon Official Modpack [Forge]\mods} [13:11:44] [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\Gallo\curseforge\minecraft\Instances\Cobblemon Official Modpack [Forge]\mods} [13:11:44] [main/INFO]: Found mod file SereneSeasons-forge-1.20.1-9.1.0.2.jar of type MOD with provider {mods folder locator at C:\Users\Gallo\curseforge\minecraft\Instances\Cobblemon Official Modpack [Forge]\mods} [13:11:44] [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\Gallo\curseforge\minecraft\Instances\Cobblemon Official Modpack [Forge]\mods} [13:11:44] [main/INFO]: Found mod file SimpleTMsForge-1.1.2.jar of type MOD with provider {mods folder locator at C:\Users\Gallo\curseforge\minecraft\Instances\Cobblemon Official Modpack [Forge]\mods} [13:11:44] [main/INFO]: Found mod file skinlayers3d-forge-1.8.0-mc1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\Gallo\curseforge\minecraft\Instances\Cobblemon Official Modpack [Forge]\mods} [13:11:44] [main/INFO]: Found mod file sodiumdynamiclights-forge-1.0.10-1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\Gallo\curseforge\minecraft\Instances\Cobblemon Official Modpack [Forge]\mods} [13:11:44] [main/INFO]: Found mod file sodiumoptionsapi-forge-1.0.10-1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\Gallo\curseforge\minecraft\Instances\Cobblemon Official Modpack [Forge]\mods} [13:11:44] [main/INFO]: Found mod file sophisticatedbackpacks-1.20.1-3.23.19.1263.jar of type MOD with provider {mods folder locator at C:\Users\Gallo\curseforge\minecraft\Instances\Cobblemon Official Modpack [Forge]\mods} [13:11:44] [main/INFO]: Found mod file sophisticatedcore-1.20.1-1.2.71.1022.jar of type MOD with provider {mods folder locator at C:\Users\Gallo\curseforge\minecraft\Instances\Cobblemon Official Modpack [Forge]\mods} [13:11:44] [main/INFO]: Found mod file sound-physics-remastered-forge-1.20.1-1.4.13.jar of type MOD with provider {mods folder locator at C:\Users\Gallo\curseforge\minecraft\Instances\Cobblemon Official Modpack [Forge]\mods} [13:11:44] [main/INFO]: Found mod file starlight-1.1.2+forge.1cda73c.jar of type MOD with provider {mods folder locator at C:\Users\Gallo\curseforge\minecraft\Instances\Cobblemon Official Modpack [Forge]\mods} [13:11:44] [main/INFO]: Found mod file Structory_1.20.x_v1.3.5.jar of type MOD with provider {mods folder locator at C:\Users\Gallo\curseforge\minecraft\Instances\Cobblemon Official Modpack [Forge]\mods} [13:11:44] [main/INFO]: Found mod file Structory_Towers_1.20.x_v1.0.7.jar of type MOD with provider {mods folder locator at C:\Users\Gallo\curseforge\minecraft\Instances\Cobblemon Official Modpack [Forge]\mods} [13:11:44] [main/INFO]: Found mod file superflatworldnoslimes-1.20.1-3.5.jar of type MOD with provider {mods folder locator at C:\Users\Gallo\curseforge\minecraft\Instances\Cobblemon Official Modpack [Forge]\mods} [13:11:44] [main/INFO]: Found mod file supplementaries-1.20-3.1.31.jar of type MOD with provider {mods folder locator at C:\Users\Gallo\curseforge\minecraft\Instances\Cobblemon Official Modpack [Forge]\mods} [13:11:44] [main/INFO]: Found mod file teleportcraft-1.1.2-1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\Gallo\curseforge\minecraft\Instances\Cobblemon Official Modpack [Forge]\mods} [13:11:44] [main/INFO]: Found mod file TerraBlender-forge-1.20.1-3.0.1.10.jar of type MOD with provider {mods folder locator at C:\Users\Gallo\curseforge\minecraft\Instances\Cobblemon Official Modpack [Forge]\mods} [13:11:44] [main/INFO]: Found mod file ToolStats-Forge-1.20.1-16.0.9.jar of type MOD with provider {mods folder locator at C:\Users\Gallo\curseforge\minecraft\Instances\Cobblemon Official Modpack [Forge]\mods} [13:11:44] [main/INFO]: Found mod file Towns-and-Towers-1.12-Fabric+Forge.jar of type MOD with provider {mods folder locator at C:\Users\Gallo\curseforge\minecraft\Instances\Cobblemon Official Modpack [Forge]\mods} [13:11:44] [main/INFO]: Found mod file UnbreakableAnvil-1.20.x-1.0.0.jar of type MOD with provider {mods folder locator at C:\Users\Gallo\curseforge\minecraft\Instances\Cobblemon Official Modpack [Forge]\mods} [13:11:44] [main/INFO]: Found mod file UniLib-1.1.0+1.20.1-forge.jar of type MOD with provider {mods folder locator at C:\Users\Gallo\curseforge\minecraft\Instances\Cobblemon Official Modpack [Forge]\mods} [13:11:44] [main/INFO]: Found mod file visuality-forge-2.0.2.jar of type MOD with provider {mods folder locator at C:\Users\Gallo\curseforge\minecraft\Instances\Cobblemon Official Modpack [Forge]\mods} [13:11:44] [main/INFO]: Found mod file voicechat-forge-1.20.1-2.5.30.jar of type MOD with provider {mods folder locator at C:\Users\Gallo\curseforge\minecraft\Instances\Cobblemon Official Modpack [Forge]\mods} [13:11:44] [main/INFO]: Found mod file walljump-1.20.1-1.3.5-forge.jar of type MOD with provider {mods folder locator at C:\Users\Gallo\curseforge\minecraft\Instances\Cobblemon Official Modpack [Forge]\mods} [13:11:44] [main/INFO]: Found mod file water-erosion-1.20.1-forge-1.1.7.jar of type MOD with provider {mods folder locator at C:\Users\Gallo\curseforge\minecraft\Instances\Cobblemon Official Modpack [Forge]\mods} [13:11:44] [main/INFO]: Found mod file waveycapes-forge-1.5.2-mc1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\Gallo\curseforge\minecraft\Instances\Cobblemon Official Modpack [Forge]\mods} [13:11:44] [main/INFO]: Found mod file waystones-forge-1.20.1-14.1.13.jar of type MOD with provider {mods folder locator at C:\Users\Gallo\curseforge\minecraft\Instances\Cobblemon Official Modpack [Forge]\mods} [13:11:44] [main/INFO]: Found mod file Xaeros_Minimap_25.2.6_Forge_1.20.jar of type MOD with provider {mods folder locator at C:\Users\Gallo\curseforge\minecraft\Instances\Cobblemon Official Modpack [Forge]\mods} [13:11:44] [main/INFO]: Found mod file XaerosWorldMap_1.39.9_Forge_1.20.jar of type MOD with provider {mods folder locator at C:\Users\Gallo\curseforge\minecraft\Instances\Cobblemon Official Modpack [Forge]\mods} [13:11:44] [main/INFO]: Found mod file YungsApi-1.20-Forge-4.0.6.jar of type MOD with provider {mods folder locator at C:\Users\Gallo\curseforge\minecraft\Instances\Cobblemon Official Modpack [Forge]\mods} [13:11:44] [main/WARN]: Mod file C:\Users\Gallo\curseforge\minecraft\Install\libraries\net\minecraftforge\fmlcore\1.20.1-47.4.2\fmlcore-1.20.1-47.4.2.jar is missing mods.toml file [13:11:44] [main/WARN]: Mod file C:\Users\Gallo\curseforge\minecraft\Install\libraries\net\minecraftforge\javafmllanguage\1.20.1-47.4.2\javafmllanguage-1.20.1-47.4.2.jar is missing mods.toml file [13:11:44] [main/WARN]: Mod file C:\Users\Gallo\curseforge\minecraft\Install\libraries\net\minecraftforge\lowcodelanguage\1.20.1-47.4.2\lowcodelanguage-1.20.1-47.4.2.jar is missing mods.toml file [13:11:44] [main/WARN]: Mod file C:\Users\Gallo\curseforge\minecraft\Install\libraries\net\minecraftforge\mclanguage\1.20.1-47.4.2\mclanguage-1.20.1-47.4.2.jar is missing mods.toml file [13:11:44] [main/INFO]: Found mod file fmlcore-1.20.1-47.4.2.jar of type LIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.MinecraftLocator@65ec8b24 [13:11:44] [main/INFO]: Found mod file javafmllanguage-1.20.1-47.4.2.jar of type LANGPROVIDER with provider net.minecraftforge.fml.loading.moddiscovery.MinecraftLocator@65ec8b24 [13:11:44] [main/INFO]: Found mod file lowcodelanguage-1.20.1-47.4.2.jar of type LANGPROVIDER with provider net.minecraftforge.fml.loading.moddiscovery.MinecraftLocator@65ec8b24 [13:11:44] [main/INFO]: Found mod file mclanguage-1.20.1-47.4.2.jar of type LANGPROVIDER with provider net.minecraftforge.fml.loading.moddiscovery.MinecraftLocator@65ec8b24 [13:11:44] [main/INFO]: Found mod file client-1.20.1-20230612.114412-srg.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.MinecraftLocator@65ec8b24 [13:11:44] [main/INFO]: Found mod file forge-1.20.1-47.4.2-universal.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.MinecraftLocator@65ec8b24 [13:11:44] [main/WARN]: Attempted to select two dependency jars from JarJar which have the same identification: Mod File:  and Mod File: . Using Mod File:  [13:11:44] [main/WARN]: Attempted to select a dependency jar for JarJar which was passed in as source: cloth_config. Using Mod File: C:\Users\Gallo\curseforge\minecraft\Instances\Cobblemon Official Modpack [Forge]\mods\cloth-config-11.1.136-forge.jar [13:11:44] [main/INFO]: Found 33 dependencies adding them to mods collection [13:11:44] [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@57272109 [13:11:44] [main/INFO]: Found mod file fabric-api-base-0.4.31+ef105b4977.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@57272109 [13:11:44] [main/INFO]: Found mod file BiggerStacksTransformerLib-1.5.1.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@57272109 [13:11:44] [main/INFO]: Found mod file xstream-1.4.20.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@57272109 [13:11:44] [main/INFO]: Found mod file battery-1.3.0.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@57272109 [13:11:44] [main/INFO]: Found mod file mixinsquared-forge-0.1.2-beta.6.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@57272109 [13:11:44] [main/INFO]: Found mod file kfflang-4.11.0.jar of type LANGPROVIDER with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@57272109 [13:11:44] [main/INFO]: Found mod file BiggerStacksConfigLib-1.8.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@57272109 [13:11:44] [main/INFO]: Found mod file spectrelib-forge-0.13.15+1.20.1.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@57272109 [13:11:44] [main/INFO]: Found mod file httpmime-4.5.10.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@57272109 [13:11:44] [main/INFO]: Found mod file dynamiccrosshair-9.3+1.20.1-forge-api.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@57272109 [13:11:44] [main/INFO]: Found mod file configlibtxf-4.2.8-forge.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@57272109 [13:11:44] [main/INFO]: Found mod file mclib-20.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@57272109 [13:11:44] [main/INFO]: Found mod file toml4j-0.7.2.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@57272109 [13:11:44] [main/INFO]: Found mod file TRender-1.0.4-1.20.1-forge-SNAPSHOT.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@57272109 [13:11:44] [main/INFO]: Found mod file kffmod-4.11.0.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@57272109 [13:11:44] [main/INFO]: Found mod file kfflib-4.11.0.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@57272109 [13:11:44] [main/INFO]: Found mod file libbamboo-2.2+1.20.1-forge.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@57272109 [13:11:44] [main/INFO]: Found mod file MixinExtras-0.4.1.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@57272109 [13:11:44] [main/INFO]: Found mod file jcpp-1.4.14.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@57272109 [13:11:44] [main/INFO]: Found mod file mixinextras-forge-0.2.0-beta.6.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@57272109 [13:11:44] [main/INFO]: Found mod file resourcefullib-forge-1.20-2.0.7.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@57272109 [13:11:44] [main/INFO]: Found mod file jankson-1.2.3.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@57272109 [13:11:44] [main/INFO]: Found mod file yabn-1.0.3.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@57272109 [13:11:44] [main/INFO]: Found mod file TRansition-1.0.2-1.20.1-forge-SNAPSHOT.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@57272109 [13:11:44] [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@57272109 [13:11:44] [main/INFO]: Found mod file exp4j-0.4.8.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@57272109 [13:11:44] [main/INFO]: Found mod file Reflect-1.3.4.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@57272109 [13:11:44] [main/INFO]: Found mod file MixinSquared-0.1.2-beta.6.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@57272109 [13:11:44] [main/INFO]: Found mod file jctools-core-4.0.5.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@57272109 [13:11:44] [main/INFO]: Found mod file NanoLiveConfig-1.2.1.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@57272109 [13:11:44] [main/INFO]: Found mod file SimpleLoggerWrapper-1.0.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@57272109 [13:11:44] [main/INFO]: Found mod file japng-0.5.3.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@57272109 [13:11:47] [main/INFO]: Compatibility level set to JAVA_17 [13:11:47] [main/ERROR]: Mixin config entity_model_features.mixins.json does not specify "minVersion" property [13:11:47] [main/INFO]: Successfully loaded Mixin Connector [ca.spottedleaf.starlight.mixin.MixinConnector] [13:11:47] [main/INFO]: Successfully loaded Mixin Connector [com.sonicether.soundphysics.MixinConnector] [13:11:47] [main/INFO]: Launching target 'forgeclient' with arguments [--version, forge-47.4.2, --gameDir, C:\Users\Gallo\curseforge\minecraft\Instances\Cobblemon Official Modpack [Forge], --assetsDir, C:\Users\Gallo\curseforge\minecraft\Install\assets, --uuid, 66d892fe1fbd45d79e690c1aeea691f3, --username, Pallante3, --assetIndex, 5, --accessToken, ????????, --clientId, MWJjYmRiM2UtMjRjYi00NjdiLWFlOTUtZWM4OTU4MjBhMmI2, --xuid, 2535465252781045, --userType, msa, --versionType, release, --width, 1024, --height, 768, --quickPlayPath, C:\Users\Gallo\curseforge\minecraft\Install\quickPlay\java\1750590701334.json] [13:11:47] [main/INFO]: Loaded configuration file for ModernFix 5.23.1+mc1.20.1: 95 options available, 0 override(s) found [13:11:47] [main/INFO]: Applying Nashorn fix [13:11:47] [main/INFO]: Applied Forge config corruption patch [13:11:48] [main/INFO]: Loaded transformer transformers/vanilla.xml [13:11:48] [main/INFO]: Loaded transformer transformers/gregtechmodernce.xml [13:11:48] [main/INFO]: Loaded transformer transformers/simpletomb.xml [13:11:48] [main/INFO]: Loaded transformer transformers/assortedstorage.xml [13:11:48] [main/INFO]: Loaded transformer transformers/refinedstorage.xml [13:11:48] [main/INFO]: Loaded transformer transformers/ic2.xml [13:11:48] [main/INFO]: Loaded transformer transformers/computercraft.xml [13:11:48] [main/INFO]: Loaded transformer transformers/sophisticated_core.xml [13:11:48] [main/INFO]: Loaded transformer transformers/mekanism.xml [13:11:48] [main/INFO]: Loaded transformer transformers/puzzlesapi.xml [13:11:48] [main/INFO]: Loaded transformer transformers/ironfurnaces.xml [13:11:48] [main/INFO]: Loaded configuration file for Embeddium: 238 options available, 3 override(s) found [13:11:48] [main/INFO]: Searching for graphics cards... [13:11:48] [main/INFO]: Found graphics card: GraphicsAdapterInfo[vendor=AMD, name=AMD Radeon RX 6600, version=DriverVersion=32.0.21013.1000] [13:11:48] [main/WARN]: Reference map 'EpheroLib-refmap.json' for epherolib.mixins.json could not be read. If this is a development environment you can ignore this message [13:11:48] [main/WARN]: Reference map 'LongerChatHistory-forge-refmap.json' for longerchathistory.mixins.json could not be read. If this is a development environment you can ignore this message [13:11:48] [main/INFO]: Loaded configuration file for Canary: 116 options available, 0 override(s) found [13:11:48] [main/INFO]: [java.lang.ThreadGroup:uncaughtException:1077]: java.lang.RuntimeException: java.lang.NoClassDefFoundError: net/minecraft/server/packs/resources/PreparableReloadListener [13:11:48] [main/INFO]: [java.lang.ThreadGroup:uncaughtException:1077]:     at MC-BOOTSTRAP/[email protected]/cpw.mods.modlauncher.LaunchServiceHandlerDecorator.launch(LaunchServiceHandlerDecorator.java:32) [13:11:48] [main/INFO]: [java.lang.ThreadGroup:uncaughtException:1077]:     at MC-BOOTSTRAP/[email protected]/cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:53) [13:11:48] [main/INFO]: [java.lang.ThreadGroup:uncaughtException:1077]:     at MC-BOOTSTRAP/[email protected]/cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:71) [13:11:48] [main/INFO]: [java.lang.ThreadGroup:uncaughtException:1077]:     at MC-BOOTSTRAP/[email protected]/cpw.mods.modlauncher.Launcher.run(Launcher.java:108) [13:11:48] [main/INFO]: [java.lang.ThreadGroup:uncaughtException:1077]:     at MC-BOOTSTRAP/[email protected]/cpw.mods.modlauncher.Launcher.main(Launcher.java:78) [13:11:48] [main/INFO]: [java.lang.ThreadGroup:uncaughtException:1077]:     at MC-BOOTSTRAP/[email protected]/cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:26) [13:11:48] [main/INFO]: [java.lang.ThreadGroup:uncaughtException:1077]:     at MC-BOOTSTRAP/[email protected]/cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:23) [13:11:48] [main/INFO]: [java.lang.ThreadGroup:uncaughtException:1077]:     at [email protected]/cpw.mods.bootstraplauncher.BootstrapLauncher.main(BootstrapLauncher.java:141) [13:11:48] [main/INFO]: [java.lang.ThreadGroup:uncaughtException:1086]: Caused by: java.lang.NoClassDefFoundError: net/minecraft/server/packs/resources/PreparableReloadListener [13:11:48] [main/INFO]: [java.lang.ThreadGroup:uncaughtException:1086]:     at TRANSFORMER/[email protected]+1.20.4/net.raphimc.immediatelyfast.injection.ImmediatelyFastMixinPlugin.onLoad(ImmediatelyFastMixinPlugin.java:39) [13:11:48] [main/INFO]: [java.lang.ThreadGroup:uncaughtException:1086]:     at MC-BOOTSTRAP/org.spongepowered.mixin/org.spongepowered.asm.mixin.transformer.PluginHandle.onLoad(PluginHandle.java:119) [13:11:48] [main/INFO]: [java.lang.ThreadGroup:uncaughtException:1086]:     at MC-BOOTSTRAP/org.spongepowered.mixin/org.spongepowered.asm.mixin.transformer.MixinConfig.onSelect(MixinConfig.java:707) [13:11:48] [main/INFO]: [java.lang.ThreadGroup:uncaughtException:1086]:     at MC-BOOTSTRAP/org.spongepowered.mixin/org.spongepowered.asm.mixin.transformer.MixinProcessor.selectConfigs(MixinProcessor.java:498) [13:11:48] [main/INFO]: [java.lang.ThreadGroup:uncaughtException:1086]:     at MC-BOOTSTRAP/org.spongepowered.mixin/org.spongepowered.asm.mixin.transformer.MixinProcessor.select(MixinProcessor.java:460) [13:11:48] [main/INFO]: [java.lang.ThreadGroup:uncaughtException:1086]:     at MC-BOOTSTRAP/org.spongepowered.mixin/org.spongepowered.asm.mixin.transformer.MixinProcessor.checkSelect(MixinProcessor.java:438) [13:11:48] [main/INFO]: [java.lang.ThreadGroup:uncaughtException:1086]:     at MC-BOOTSTRAP/org.spongepowered.mixin/org.spongepowered.asm.mixin.transformer.MixinProcessor.applyMixins(MixinProcessor.java:290) [13:11:48] [main/INFO]: [java.lang.ThreadGroup:uncaughtException:1086]:     at MC-BOOTSTRAP/org.spongepowered.mixin/org.spongepowered.asm.mixin.transformer.MixinTransformer.transformClass(MixinTransformer.java:250) [13:11:48] [main/INFO]: [java.lang.ThreadGroup:uncaughtException:1086]:     at MC-BOOTSTRAP/org.spongepowered.mixin/org.spongepowered.asm.service.modlauncher.MixinTransformationHandler.processClass(MixinTransformationHandler.java:131) [13:11:48] [main/INFO]: [java.lang.ThreadGroup:uncaughtException:1086]:     at MC-BOOTSTRAP/org.spongepowered.mixin/org.spongepowered.asm.launch.MixinLaunchPluginLegacy.processClass(MixinLaunchPluginLegacy.java:131) [13:11:48] [main/INFO]: [java.lang.ThreadGroup:uncaughtException:1086]:     at MC-BOOTSTRAP/[email protected]/cpw.mods.modlauncher.serviceapi.ILaunchPluginService.processClassWithFlags(ILaunchPluginService.java:156) [13:11:48] [main/INFO]: [java.lang.ThreadGroup:uncaughtException:1086]:     at MC-BOOTSTRAP/[email protected]/cpw.mods.modlauncher.LaunchPluginHandler.offerClassNodeToPlugins(LaunchPluginHandler.java:88) [13:11:48] [main/INFO]: [java.lang.ThreadGroup:uncaughtException:1086]:     at MC-BOOTSTRAP/[email protected]/cpw.mods.modlauncher.ClassTransformer.transform(ClassTransformer.java:120) [13:11:48] [main/INFO]: [java.lang.ThreadGroup:uncaughtException:1086]:     at MC-BOOTSTRAP/[email protected]/cpw.mods.modlauncher.TransformingClassLoader.maybeTransformClassBytes(TransformingClassLoader.java:50) [13:11:48] [main/INFO]: [java.lang.ThreadGroup:uncaughtException:1086]:     at cpw.mods.securejarhandler/cpw.mods.cl.ModuleClassLoader.readerToClass(ModuleClassLoader.java:113) [13:11:48] [main/INFO]: [java.lang.ThreadGroup:uncaughtException:1086]:     at cpw.mods.securejarhandler/cpw.mods.cl.ModuleClassLoader.lambda$findClass$15(ModuleClassLoader.java:219) [13:11:48] [main/INFO]: [java.lang.ThreadGroup:uncaughtException:1086]:     at cpw.mods.securejarhandler/cpw.mods.cl.ModuleClassLoader.loadFromModule(ModuleClassLoader.java:229) [13:11:48] [main/INFO]: [java.lang.ThreadGroup:uncaughtException:1086]:     at cpw.mods.securejarhandler/cpw.mods.cl.ModuleClassLoader.findClass(ModuleClassLoader.java:219) [13:11:48] [main/INFO]: [java.lang.ThreadGroup:uncaughtException:1086]:     at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:637) [13:11:48] [main/INFO]: [java.lang.ThreadGroup:uncaughtException:1086]:     at java.base/java.lang.Class.forName(Class.java:545) [13:11:48] [main/INFO]: [java.lang.ThreadGroup:uncaughtException:1086]:     at MC-BOOTSTRAP/[email protected]/net.minecraftforge.fml.earlydisplay.DisplayWindow.lambda$updateModuleReads$13(DisplayWindow.java:615) [13:11:48] [main/INFO]: [java.lang.ThreadGroup:uncaughtException:1086]:     at java.base/java.util.Optional.map(Optional.java:260) [13:11:48] [main/INFO]: [java.lang.ThreadGroup:uncaughtException:1086]:     at MC-BOOTSTRAP/[email protected]/net.minecraftforge.fml.earlydisplay.DisplayWindow.updateModuleReads(DisplayWindow.java:615) [13:11:48] [main/INFO]: [java.lang.ThreadGroup:uncaughtException:1086]:     at MC-BOOTSTRAP/[email protected]/net.minecraftforge.fml.loading.ImmediateWindowHandler.acceptGameLayer(ImmediateWindowHandler.java:71) [13:11:48] [main/INFO]: [java.lang.ThreadGroup:uncaughtException:1086]:     at MC-BOOTSTRAP/[email protected]/net.minecraftforge.fml.loading.FMLLoader.beforeStart(FMLLoader.java:216) [13:11:48] [main/INFO]: [java.lang.ThreadGroup:uncaughtException:1086]:     at MC-BOOTSTRAP/[email protected]/net.minecraftforge.fml.loading.targets.CommonLaunchHandler.launchService(CommonLaunchHandler.java:92) [13:11:48] [main/INFO]: [java.lang.ThreadGroup:uncaughtException:1086]:     at MC-BOOTSTRAP/[email protected]/cpw.mods.modlauncher.LaunchServiceHandlerDecorator.launch(LaunchServiceHandlerDecorator.java:30) [13:11:48] [main/INFO]: [java.lang.ThreadGroup:uncaughtException:1086]:     ... 7 more [13:11:48] [main/INFO]: [java.lang.Throwable:printStackTrace:659]: Caused by: java.lang.ClassNotFoundException: net.minecraft.server.packs.resources.PreparableReloadListener [13:11:48] [main/INFO]: [java.lang.Throwable:printStackTrace:659]:     at java.base/jdk.internal.loader.BuiltinClassLoader.loadClass(BuiltinClassLoader.java:641) [13:11:48] [main/INFO]: [java.lang.Throwable:printStackTrace:659]:     at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:525) [13:11:48] [main/INFO]: [java.lang.Throwable:printStackTrace:659]:     at cpw.mods.securejarhandler/cpw.mods.cl.ModuleClassLoader.loadClass(ModuleClassLoader.java:137) [13:11:48] [main/INFO]: [java.lang.Throwable:printStackTrace:659]:     at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:525) [13:11:48] [main/INFO]: [java.lang.Throwable:printStackTrace:659]:     at cpw.mods.securejarhandler/cpw.mods.cl.ModuleClassLoader.loadClass(ModuleClassLoader.java:137) [13:11:48] [main/INFO]: [java.lang.Throwable:printStackTrace:659]:     at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:525) [13:11:48] [main/INFO]: [java.lang.Throwable:printStackTrace:659]:     ... 34 more [13:11:48] [Thread-0/INFO]: [java.lang.ThreadGroup:uncaughtException:1077]: java.util.ConcurrentModificationException [13:11:48] [Thread-0/INFO]: [java.lang.ThreadGroup:uncaughtException:1077]:     at java.base/java.util.HashMap$HashIterator.nextNode(HashMap.java:1597) [13:11:48] [Thread-0/INFO]: [java.lang.ThreadGroup:uncaughtException:1077]:     at java.base/java.util.HashMap$ValueIterator.next(HashMap.java:1625) [13:11:48] [Thread-0/INFO]: [java.lang.ThreadGroup:uncaughtException:1077]:     at MC-BOOTSTRAP/[email protected]/cpw.mods.modlauncher.LaunchPluginHandler.computeLaunchPluginTransformerSet(LaunchPluginHandler.java:68) [13:11:48] [Thread-0/INFO]: [java.lang.ThreadGroup:uncaughtException:1077]:     at MC-BOOTSTRAP/[email protected]/cpw.mods.modlauncher.ClassTransformer.transform(ClassTransformer.java:64) [13:11:48] [Thread-0/INFO]: [java.lang.ThreadGroup:uncaughtException:1077]:     at MC-BOOTSTRAP/[email protected]/cpw.mods.modlauncher.TransformingClassLoader.maybeTransformClassBytes(TransformingClassLoader.java:50) [13:11:48] [Thread-0/INFO]: [java.lang.ThreadGroup:uncaughtException:1077]:     at cpw.mods.securejarhandler/cpw.mods.cl.ModuleClassLoader.readerToClass(ModuleClassLoader.java:113) [13:11:48] [Thread-0/INFO]: [java.lang.ThreadGroup:uncaughtException:1077]:     at cpw.mods.securejarhandler/cpw.mods.cl.ModuleClassLoader.lambda$findClass$15(ModuleClassLoader.java:219) [13:11:48] [Thread-0/INFO]: [java.lang.ThreadGroup:uncaughtException:1077]:     at cpw.mods.securejarhandler/cpw.mods.cl.ModuleClassLoader.loadFromModule(ModuleClassLoader.java:229) [13:11:48] [Thread-0/INFO]: [java.lang.ThreadGroup:uncaughtException:1077]:     at cpw.mods.securejarhandler/cpw.mods.cl.ModuleClassLoader.findClass(ModuleClassLoader.java:219) [13:11:48] [Thread-0/INFO]: [java.lang.ThreadGroup:uncaughtException:1077]:     at cpw.mods.securejarhandler/cpw.mods.cl.ModuleClassLoader.loadClass(ModuleClassLoader.java:135) [13:11:48] [Thread-0/INFO]: [java.lang.ThreadGroup:uncaughtException:1077]:     at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:525) [13:11:48] [Thread-0/INFO]: [java.lang.ThreadGroup:uncaughtException:1077]:     at TRANSFORMER/[email protected]+mc1.20.1/org.embeddedt.modernfix.forge.config.NightConfigWatchThrottler$1.values(NightConfigWatchThrottler.java:37) [13:11:48] [Thread-0/INFO]: [java.lang.ThreadGroup:uncaughtException:1077]:     at MC-BOOTSTRAP/[email protected]/com.electronwill.nightconfig.core.file.FileWatcher$WatcherThread.run(FileWatcher.java:162) Any help would be appreciated.
    • But your Launcher does not find it   Java path is: /run/user/1000/doc/3f910b8/java Checking Java version... Java checker returned some invalid data we don't understand: Check the Azul Zulu site and select your OS and download the latest Java 8 build for Linux https://www.azul.com/downloads/?version=java-8-lts&package=jre#zulu After installation, check the path and put this path into your Launcher Java settings (Java Executable)
    • Try other builds of pehkui and origins++ until you find a working combination
    • Some Create addons are only compatible with Create 6 or Create 5 - so not both versions at the same time Try older builds of Create Stuff and Additions This is the last build before the Create 6 update: https://www.curseforge.com/minecraft/mc-mods/create-stuff-additions/files/6168370
  • Topics

×
×
  • Create New...

Important Information

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