Jump to content

[1.9] How to create & register a sound using the new registry system? [Solved]


Recommended Posts

Posted

I have, to some degree, registered a sound. It tab autocompletes and does not error when I play the sound using "/playsound" in-game, but it does not actually play the sound. I think I'm pointing the SoundEvent at the wrong thing.

 

sounds.json

:

{
"noiseMakerNoise": {"category": "master", "sounds": [{"noiseMakerNoise", "stream": false}]},
}

 

Registering Code:

    public static SoundEvent noiseMakerNoise;

    public static void preInitCommon() // this is run at common proxy preinit
    {
        noiseMakerNoise = new SoundEvent(new ResourceLocation("noiseMakerNoise"));
        GameRegistry.register(noiseMakerNoise, new ResourceLocation(Something.MODID + ":" + "noise_maker_noise"));
    }

 

The sound file is located at: /src/main/resources/assets/something/sounds/noiseMakerSound.ogg

 

Posted

Every sound name in your sounds.json file is automatically prefixed with your mod ID.

 

The registry name and sound name of your

SoundEvent

should be the same

ResourceLocation

, which should include your mod ID.

 

You can see my mod's

SoundEvent

registration here and the sounds.json file here.

Please don't PM me to ask for help. Asking your question in a public thread preserves it for people who are having the same problem in the future.

Posted

Every sound name in your sounds.json file is automatically prefixed with your mod ID.

 

The registry name and sound name of your

SoundEvent

should be the same

ResourceLocation

, which should include your mod ID.

 

You can see my mod's

SoundEvent

registration here and the sounds.json file here.

 

Okay, I'm stumped. I'm almost certain that I've modified my code to reflect your example, but the sound still does not play when I attempt to play it using the "/playsound" command in-game. It's finding something because it doesn't error when I issue the command. The exact command: "/playsound something:noise_maker_noise master Player"

 

Command Console Output:

[21:08:39] [server thread/INFO]: [Player639: Played sound 'something:noise_maker_noise' to Player639]                                                               
[21:08:39] [Client thread/INFO]: [CHAT] Played sound 'something:noise_maker_noise' to Player639   

 

Updated

sounds.json

:

{
"noise_maker_noise": {
        "category": "master",
        "sounds": [
            {
                "something:noiseMakerNoise",
                "stream": false
            }
        ]
    }
}

 

Updated Registering Code:

    public static SoundEvent noiseMakerNoise;

    public static void preInitCommon() // runs at common proxy preinit
    {
        final ResourceLocation testLocation = new ResourceLocation(Something.MODID, "noise_maker_noise");

        noiseMakerNoise = GameRegistry.register(new SoundEvent(testLocation).setRegistryName(testLocation));
    }

 

Sound File Location: /src/main/resources/assets/something/sounds/noiseMakerSound.ogg

Posted

The default resource directory is src/main/resources. Have you configured this to be src/resources?

 

Aside from that, your code looks correct. Was there anything in the FML log that wasn't in the console (i.e. anything logged below the

INFO

level)?

Please don't PM me to ask for help. Asking your question in a public thread preserves it for people who are having the same problem in the future.

Posted

The default resource directory is src/main/resources. Have you configured this to be src/resources?

 

Aside from that, your code looks correct. Was there anything in the FML log that wasn't in the console (i.e. anything logged below the

INFO

level)?

 

No, sorry, I forgot to include main in that directory path. I've edited the post now to reflect the true sound file location.

 

fml-client-latest.log

:

 

 

[23:15:26] [main/DEBUG] [FML/]: Injecting tracing printstreams for STDOUT/STDERR.
[23:15:26] [main/INFO] [FML/]: Forge Mod Loader version 12.16.0.1858 for Minecraft 1.9 loading
[23:15:26] [main/INFO] [FML/]: Java is OpenJDK 64-Bit Server VM, version 1.8.0_77, running on Linux:amd64:4.4.5-1-ARCH, installed at /usr/lib/jvm/java-8-openjdk/jre
[23:15:26] [main/DEBUG] [FML/]: Java classpath at launch is /home/john/.gradle/caches/minecraft/deobfedDeps/compileDummy.jar:/home/john/.gradle/caches/minecraft/deobfedDeps/providedDummy.jar:/home/john/.gradle/caches/minecraft/net/minecraftforge/forge/1.9-12.16.0.1858-1.9/snapshot/20160312/forgeSrc-1.9-12.16.0.1858-1.9.jar:/home/john/.gradle/caches/modules-2/files-2.1/oshi-project/oshi-core/1.1/9ddf7b048a8d701be231c0f4f95fd986198fd2d8/oshi-core-1.1.jar:/home/john/.gradle/caches/modules-2/files-2.1/net.java.dev.jna/jna/3.4.0/803ff252fedbd395baffd43b37341dc4a150a554/jna-3.4.0.jar:/home/john/.gradle/caches/modules-2/files-2.1/net.java.dev.jna/platform/3.4.0/e3f70017be8100d3d6923f50b3d2ee17714e9c13/platform-3.4.0.jar:/home/john/.gradle/caches/modules-2/files-2.1/com.ibm.icu/icu4j-core-mojang/51.2/63d216a9311cca6be337c1e458e587f99d382b84/icu4j-core-mojang-51.2.jar:/home/john/.gradle/caches/modules-2/files-2.1/net.sf.jopt-simple/jopt-simple/4.6/306816fb57cf94f108a43c95731b08934dcae15c/jopt-simple-4.6.jar:/home/john/.gradle/caches/modules-2/files-2.1/io.netty/netty-all/4.0.23.Final/294104aaf1781d6a56a07d561e792c5d0c95f45/netty-all-4.0.23.Final.jar:/home/john/.gradle/caches/modules-2/files-2.1/com.google.guava/guava/17.0/9c6ef172e8de35fd8d4d8783e4821e57cdef7445/guava-17.0.jar:/home/john/.gradle/caches/modules-2/files-2.1/org.apache.commons/commons-lang3/3.3.2/90a3822c38ec8c996e84c16a3477ef632cbc87a3/commons-lang3-3.3.2.jar:/home/john/.gradle/caches/modules-2/files-2.1/commons-io/commons-io/2.4/b1b6ea3b7e4aa4f492509a4952029cd8e48019ad/commons-io-2.4.jar:/home/john/.gradle/caches/modules-2/files-2.1/commons-codec/commons-codec/1.9/9ce04e34240f674bc72680f8b843b1457383161a/commons-codec-1.9.jar:/home/john/.gradle/caches/modules-2/files-2.1/net.java.jutils/jutils/1.0.0/e12fe1fda814bd348c1579329c86943d2cd3c6a6/jutils-1.0.0.jar:/home/john/.gradle/caches/modules-2/files-2.1/com.google.code.gson/gson/2.2.4/a60a5e993c98c864010053cb901b7eab25306568/gson-2.2.4.jar:/home/john/.gradle/caches/modules-2/files-2.1/com.mojang/authlib/1.5.22/afaa8f6df976fcb5520e76ef1d5798c9e6b5c0b2/authlib-1.5.22.jar:/home/john/.gradle/caches/modules-2/files-2.1/com.mojang/realms/1.8.7/b624280016616bb56cc6c30282684322edc7e7eb/realms-1.8.7.jar:/home/john/.gradle/caches/modules-2/files-2.1/org.apache.commons/commons-compress/1.8.1/a698750c16740fd5b3871425f4cb3bbaa87f529d/commons-compress-1.8.1.jar:/home/john/.gradle/caches/modules-2/files-2.1/org.apache.httpcomponents/httpclient/4.3.3/18f4247ff4572a074444572cee34647c43e7c9c7/httpclient-4.3.3.jar:/home/john/.gradle/caches/modules-2/files-2.1/commons-logging/commons-logging/1.1.3/f6f66e966c70a83ffbdb6f17a0919eaf7c8aca7f/commons-logging-1.1.3.jar:/home/john/.gradle/caches/modules-2/files-2.1/org.apache.httpcomponents/httpcore/4.3.2/31fbbff1ddbf98f3aa7377c94d33b0447c646b6e/httpcore-4.3.2.jar:/home/john/.gradle/caches/modules-2/files-2.1/org.apache.logging.log4j/log4j-api/2.0-beta9/1dd66e68cccd907880229f9e2de1314bd13ff785/log4j-api-2.0-beta9.jar:/home/john/.gradle/caches/modules-2/files-2.1/org.apache.logging.log4j/log4j-core/2.0-beta9/678861ba1b2e1fccb594bb0ca03114bb05da9695/log4j-core-2.0-beta9.jar:/home/john/.gradle/caches/modules-2/files-2.1/net.minecraft/launchwrapper/1.12/111e7bea9c968cdb3d06ef4632bf7ff0824d0f36/launchwrapper-1.12.jar:/home/john/.gradle/caches/modules-2/files-2.1/jline/jline/2.13/2d9530d0a25daffaffda7c35037b046b627bb171/jline-2.13.jar:/home/john/.gradle/caches/modules-2/files-2.1/org.ow2.asm/asm-debug-all/5.0.3/f9e364ae2a66ce2a543012a4668856e84e5dab74/asm-debug-all-5.0.3.jar:/home/john/.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:/home/john/.gradle/caches/modules-2/files-2.1/com.typesafe/config/1.2.1/f771f71fdae3df231bcd54d5ca2d57f0bf93f467/config-1.2.1.jar:/home/john/.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:/home/john/.gradle/caches/modules-2/files-2.1/org.scala-lang/scala-compiler/2.11.1/56ea2e6c025e0821f28d73ca271218b8dd04926a/scala-compiler-2.11.1.jar:/home/john/.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:/home/john/.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:/home/john/.gradle/caches/modules-2/files-2.1/org.scala-lang/scala-library/2.11.1/e11da23da3eabab9f4777b9220e60d44c1aab6a/scala-library-2.11.1.jar:/home/john/.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:/home/john/.gradle/caches/modules-2/files-2.1/org.scala-lang/scala-reflect/2.11.1/6580347e61cc7f8e802941e7fde40fa83b8badeb/scala-reflect-2.11.1.jar:/home/john/.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:/home/john/.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:/home/john/.gradle/caches/modules-2/files-2.1/lzma/lzma/0.0.1/521616dc7487b42bef0e803bd2fa3faf668101d7/lzma-0.0.1.jar:/home/john/.gradle/caches/modules-2/files-2.1/net.sf.trove4j/trove4j/3.0.3/42ccaf4761f0dfdfa805c9e340d99a755907e2dd/trove4j-3.0.3.jar:/home/john/.gradle/caches/modules-2/files-2.1/com.paulscode/codecjorbis/20101023/c73b5636faf089d9f00e8732a829577de25237ee/codecjorbis-20101023.jar:/home/john/.gradle/caches/modules-2/files-2.1/com.paulscode/codecwav/20101023/12f031cfe88fef5c1dd36c563c0a3a69bd7261da/codecwav-20101023.jar:/home/john/.gradle/caches/modules-2/files-2.1/com.paulscode/libraryjavasound/20101123/5c5e304366f75f9eaa2e8cca546a1fb6109348b3/libraryjavasound-20101123.jar:/home/john/.gradle/caches/modules-2/files-2.1/com.paulscode/librarylwjglopenal/20100824/73e80d0794c39665aec3f62eee88ca91676674ef/librarylwjglopenal-20100824.jar:/home/john/.gradle/caches/modules-2/files-2.1/com.paulscode/soundsystem/20120107/419c05fe9be71f792b2d76cfc9b67f1ed0fec7f6/soundsystem-20120107.jar:/home/john/.gradle/caches/modules-2/files-2.1/net.java.jinput/jinput/2.0.5/39c7796b469a600f72380316f6b1f11db6c2c7c4/jinput-2.0.5.jar:/home/john/.gradle/caches/modules-2/files-2.1/org.lwjgl.lwjgl/lwjgl/2.9.4-nightly-20150209/697517568c68e78ae0b4544145af031c81082dfe/lwjgl-2.9.4-nightly-20150209.jar:/home/john/.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:/home/john/.gradle/caches/modules-2/files-2.1/java3d/vecmath/1.5.2/79846ba34cbd89e2422d74d53752f993dcc2ccaf/vecmath-1.5.2.jar:/home/john/.gradle/caches/modules-2/files-2.1/org.fusesource.jansi/jansi/1.11/655c643309c2f45a56a747fda70e3fadf57e9f11/jansi-1.11.jar:/home/john/.gradle/caches/modules-2/files-2.1/org.scala-lang/scala-actors/2.11.0/8ccfb6541de179bb1c4d45cf414acee069b7f78b/scala-actors-2.11.0.jar:/home/john/.gradle/caches/modules-2/files-2.1/net.java.jinput/jinput-platform/2.0.5/7ff832a6eb9ab6a767f1ade2b548092d0fa64795/jinput-platform-2.0.5-natives-linux.jar:/home/john/.gradle/caches/modules-2/files-2.1/net.java.jinput/jinput-platform/2.0.5/385ee093e01f587f30ee1c8a2ee7d408fd732e16/jinput-platform-2.0.5-natives-windows.jar:/home/john/.gradle/caches/modules-2/files-2.1/net.java.jinput/jinput-platform/2.0.5/53f9c919f34d2ca9de8c51fc4e1e8282029a9232/jinput-platform-2.0.5-natives-osx.jar:/home/john/.gradle/caches/modules-2/files-2.1/com.google.code.findbugs/jsr305/2.0.1/516c03b21d50a644d538de0f0369c620989cd8f0/jsr305-2.0.1.jar:/home/john/.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:/home/john/.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:/home/john/.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:/home/john/.gradle/caches/minecraft/net/minecraftforge/forge/1.9-12.16.0.1858-1.9/start:/home/john/Dropbox/Private/Minecraft/Mods/1.9/Something/build/libs/something-0.0.1.jar
[23:15:26] [main/DEBUG] [FML/]: Java library path at launch is /usr/java/packages/lib/amd64:/usr/lib64:/lib64:/lib:/usr/lib:/home/john/.gradle/caches/minecraft/net/minecraft/natives/1.9
[23:15:26] [main/INFO] [FML/]: Managed to load a deobfuscated Minecraft name- we are in a deobfuscated environment. Skipping runtime deobfuscation
[23:15:26] [main/DEBUG] [FML/]: Instantiating coremod class FMLCorePlugin
[23:15:26] [main/DEBUG] [FML/]: Added access transformer class net.minecraftforge.fml.common.asm.transformers.AccessTransformer to enqueued access transformers
[23:15:26] [main/DEBUG] [FML/]: Enqueued coremod FMLCorePlugin
[23:15:26] [main/DEBUG] [FML/]: Instantiating coremod class FMLForgePlugin
[23:15:26] [main/DEBUG] [FML/]: Enqueued coremod FMLForgePlugin
[23:15:26] [main/DEBUG] [FML/]: All fundamental core mods are successfully located
[23:15:26] [main/DEBUG] [FML/]: Attempting to load commandline specified mods, relative to /home/john/Dropbox/Private/Minecraft/Mods/1.9/Something/run/.
[23:15:26] [main/DEBUG] [FML/]: Discovering coremods
[23:15:26] [main/INFO] [LaunchWrapper/]: Calling tweak class net.minecraftforge.gradle.tweakers.CoremodTweaker
[23:15:26] [main/INFO] [GradleStart/]: Injecting location in coremod net.minecraftforge.fml.relauncher.FMLCorePlugin
[23:15:26] [main/INFO] [GradleStart/]: Injecting location in coremod net.minecraftforge.classloading.FMLForgePlugin
[23:15:26] [main/INFO] [LaunchWrapper/]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLInjectionAndSortingTweaker
[23:15:26] [main/INFO] [LaunchWrapper/]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLDeobfTweaker
[23:15:26] [main/INFO] [LaunchWrapper/]: Loading tweak class name net.minecraftforge.gradle.tweakers.AccessTransformerTweaker
[23:15:26] [main/INFO] [LaunchWrapper/]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLInjectionAndSortingTweaker
[23:15:26] [main/INFO] [LaunchWrapper/]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLInjectionAndSortingTweaker
[23:15:26] [main/INFO] [LaunchWrapper/]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper
[23:15:26] [main/DEBUG] [FML/]: Injecting coremod FMLCorePlugin {net.minecraftforge.fml.relauncher.FMLCorePlugin} class transformers
[23:15:26] [main/TRACE] [FML/]: Registering transformer net.minecraftforge.fml.common.asm.transformers.BlamingTransformer
[23:15:26] [main/TRACE] [FML/]: Registering transformer net.minecraftforge.fml.common.asm.transformers.SideTransformer
[23:15:26] [main/TRACE] [FML/]: Registering transformer net.minecraftforge.fml.common.asm.transformers.EventSubscriptionTransformer
[23:15:26] [main/TRACE] [FML/]: Registering transformer net.minecraftforge.fml.common.asm.transformers.EventSubscriberTransformer
[23:15:26] [main/DEBUG] [FML/]: Injection complete
[23:15:26] [main/DEBUG] [FML/]: Running coremod plugin for FMLCorePlugin {net.minecraftforge.fml.relauncher.FMLCorePlugin}
[23:15:26] [main/DEBUG] [FML/]: Running coremod plugin FMLCorePlugin
[23:15:26] [main/ERROR] [FML/]: The binary patch set is missing. Either you are in a development environment, or things are not going to work!
[23:15:26] [main/DEBUG] [FML/]: Loading deobfuscation resource /home/john/.gradle/caches/minecraft/de/oceanlabs/mcp/mcp_snapshot/20160312/srgs/srg-mcp.srg with 31798 records
[23:15:26] [main/ERROR] [FML/]: FML appears to be missing any signature data. This is not a good thing
[23:15:26] [main/DEBUG] [FML/]: Coremod plugin class FMLCorePlugin run successfully
[23:15:26] [main/INFO] [LaunchWrapper/]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper
[23:15:26] [main/DEBUG] [FML/]: Injecting coremod FMLForgePlugin {net.minecraftforge.classloading.FMLForgePlugin} class transformers
[23:15:26] [main/DEBUG] [FML/]: Injection complete
[23:15:26] [main/DEBUG] [FML/]: Running coremod plugin for FMLForgePlugin {net.minecraftforge.classloading.FMLForgePlugin}
[23:15:26] [main/DEBUG] [FML/]: Running coremod plugin FMLForgePlugin
[23:15:26] [main/DEBUG] [FML/]: Coremod plugin class FMLForgePlugin run successfully
[23:15:26] [main/INFO] [LaunchWrapper/]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLDeobfTweaker
[23:15:26] [main/DEBUG] [FML/]: Loaded 188 rules from AccessTransformer config file forge_at.cfg
[23:15:26] [main/DEBUG] [FML/]: Validating minecraft
[23:15:26] [main/DEBUG] [FML/]: Minecraft validated, launching...
[23:15:26] [main/INFO] [LaunchWrapper/]: Calling tweak class net.minecraftforge.gradle.tweakers.AccessTransformerTweaker
[23:15:26] [main/INFO] [LaunchWrapper/]: Loading tweak class name net.minecraftforge.fml.common.launcher.TerminalTweaker
[23:15:26] [main/INFO] [LaunchWrapper/]: Calling tweak class net.minecraftforge.fml.common.launcher.TerminalTweaker
[23:15:26] [main/INFO] [LaunchWrapper/]: Launching wrapped minecraft {net.minecraft.client.main.Main}
[23:15:30] [Client thread/DEBUG] [FML/]: Creating vanilla freeze snapshot
[23:15:30] [Client thread/DEBUG] [FML/]: Vanilla freeze snapshot created
[23:15:31] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resource - LanguageManager took 0.001s
[23:15:31] [Client thread/INFO] [sTDOUT/]: [net.minecraftforge.fml.client.SplashProgress:start:200]: ---- Minecraft Crash Report ----
// Hi. I'm Minecraft, and I'm a crashaholic.

Time: 4/8/16 11:15 PM
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: Linux (amd64) version 4.4.5-1-ARCH
Java Version: 1.8.0_77, Oracle Corporation
Java VM Version: OpenJDK 64-Bit Server VM (mixed mode), Oracle Corporation
Memory: 182312568 bytes (173 MB) / 718274560 bytes (685 MB) up to 3726639104 bytes (3554 MB)
JVM Flags: 0 total; 
IntCache: cache: 0, tcache: 0, allocated: 0, tallocated: 0
FML: 
Loaded coremods (and transformers): 
GL info: ' Vendor: 'NVIDIA Corporation' Version: '4.4.0 NVIDIA 340.96' Renderer: 'GeForce 610M/PCIe/SSE2'
[23:15:31] [Client thread/INFO] [FML/]: MinecraftForge v12.16.0.1858 Initialized
[23:15:31] [Client thread/INFO] [FML/]: Replaced 207 ore recipes
[23:15:31] [Client thread/DEBUG] [FML/]: File /home/john/Dropbox/Private/Minecraft/Mods/1.9/Something/run/config/injectedDependencies.json not found. No dependencies injected
[23:15:31] [Client thread/DEBUG] [FML/]: Building injected Mod Containers [net.minecraftforge.fml.common.FMLContainer, net.minecraftforge.common.ForgeModContainer]
[23:15:31] [Client thread/DEBUG] [FML/]: Attempting to load mods contained in the minecraft jar file and associated classes
[23:15:31] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/john/.gradle/caches/minecraft/deobfedDeps/compileDummy.jar, examining for mod candidates
[23:15:31] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/john/.gradle/caches/minecraft/deobfedDeps/providedDummy.jar, examining for mod candidates
[23:15:31] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/john/.gradle/caches/minecraft/net/minecraftforge/forge/1.9-12.16.0.1858-1.9/snapshot/20160312/forgeSrc-1.9-12.16.0.1858-1.9.jar, examining for mod candidates
[23:15:31] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/john/.gradle/caches/modules-2/files-2.1/oshi-project/oshi-core/1.1/9ddf7b048a8d701be231c0f4f95fd986198fd2d8/oshi-core-1.1.jar, examining for mod candidates
[23:15:31] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/john/.gradle/caches/modules-2/files-2.1/net.java.dev.jna/jna/3.4.0/803ff252fedbd395baffd43b37341dc4a150a554/jna-3.4.0.jar, examining for mod candidates
[23:15:31] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/john/.gradle/caches/modules-2/files-2.1/net.java.dev.jna/platform/3.4.0/e3f70017be8100d3d6923f50b3d2ee17714e9c13/platform-3.4.0.jar, examining for mod candidates
[23:15:31] [Client thread/TRACE] [FML/]: Skipping known library file /home/john/.gradle/caches/modules-2/files-2.1/com.ibm.icu/icu4j-core-mojang/51.2/63d216a9311cca6be337c1e458e587f99d382b84/icu4j-core-mojang-51.2.jar
[23:15:31] [Client thread/TRACE] [FML/]: Skipping known library file /home/john/.gradle/caches/modules-2/files-2.1/net.sf.jopt-simple/jopt-simple/4.6/306816fb57cf94f108a43c95731b08934dcae15c/jopt-simple-4.6.jar
[23:15:31] [Client thread/TRACE] [FML/]: Skipping known library file /home/john/.gradle/caches/modules-2/files-2.1/io.netty/netty-all/4.0.23.Final/294104aaf1781d6a56a07d561e792c5d0c95f45/netty-all-4.0.23.Final.jar
[23:15:31] [Client thread/TRACE] [FML/]: Skipping known library file /home/john/.gradle/caches/modules-2/files-2.1/com.google.guava/guava/17.0/9c6ef172e8de35fd8d4d8783e4821e57cdef7445/guava-17.0.jar
[23:15:31] [Client thread/TRACE] [FML/]: Skipping known library file /home/john/.gradle/caches/modules-2/files-2.1/org.apache.commons/commons-lang3/3.3.2/90a3822c38ec8c996e84c16a3477ef632cbc87a3/commons-lang3-3.3.2.jar
[23:15:31] [Client thread/TRACE] [FML/]: Skipping known library file /home/john/.gradle/caches/modules-2/files-2.1/commons-io/commons-io/2.4/b1b6ea3b7e4aa4f492509a4952029cd8e48019ad/commons-io-2.4.jar
[23:15:31] [Client thread/TRACE] [FML/]: Skipping known library file /home/john/.gradle/caches/modules-2/files-2.1/commons-codec/commons-codec/1.9/9ce04e34240f674bc72680f8b843b1457383161a/commons-codec-1.9.jar
[23:15:31] [Client thread/TRACE] [FML/]: Skipping known library file /home/john/.gradle/caches/modules-2/files-2.1/net.java.jutils/jutils/1.0.0/e12fe1fda814bd348c1579329c86943d2cd3c6a6/jutils-1.0.0.jar
[23:15:31] [Client thread/TRACE] [FML/]: Skipping known library file /home/john/.gradle/caches/modules-2/files-2.1/com.google.code.gson/gson/2.2.4/a60a5e993c98c864010053cb901b7eab25306568/gson-2.2.4.jar
[23:15:31] [Client thread/TRACE] [FML/]: Skipping known library file /home/john/.gradle/caches/modules-2/files-2.1/com.mojang/authlib/1.5.22/afaa8f6df976fcb5520e76ef1d5798c9e6b5c0b2/authlib-1.5.22.jar
[23:15:31] [Client thread/TRACE] [FML/]: Skipping known library file /home/john/.gradle/caches/modules-2/files-2.1/com.mojang/realms/1.8.7/b624280016616bb56cc6c30282684322edc7e7eb/realms-1.8.7.jar
[23:15:31] [Client thread/TRACE] [FML/]: Skipping known library file /home/john/.gradle/caches/modules-2/files-2.1/org.apache.commons/commons-compress/1.8.1/a698750c16740fd5b3871425f4cb3bbaa87f529d/commons-compress-1.8.1.jar
[23:15:31] [Client thread/TRACE] [FML/]: Skipping known library file /home/john/.gradle/caches/modules-2/files-2.1/org.apache.httpcomponents/httpclient/4.3.3/18f4247ff4572a074444572cee34647c43e7c9c7/httpclient-4.3.3.jar
[23:15:31] [Client thread/TRACE] [FML/]: Skipping known library file /home/john/.gradle/caches/modules-2/files-2.1/commons-logging/commons-logging/1.1.3/f6f66e966c70a83ffbdb6f17a0919eaf7c8aca7f/commons-logging-1.1.3.jar
[23:15:31] [Client thread/TRACE] [FML/]: Skipping known library file /home/john/.gradle/caches/modules-2/files-2.1/org.apache.httpcomponents/httpcore/4.3.2/31fbbff1ddbf98f3aa7377c94d33b0447c646b6e/httpcore-4.3.2.jar
[23:15:31] [Client thread/TRACE] [FML/]: Skipping known library file /home/john/.gradle/caches/modules-2/files-2.1/org.apache.logging.log4j/log4j-api/2.0-beta9/1dd66e68cccd907880229f9e2de1314bd13ff785/log4j-api-2.0-beta9.jar
[23:15:31] [Client thread/TRACE] [FML/]: Skipping known library file /home/john/.gradle/caches/modules-2/files-2.1/org.apache.logging.log4j/log4j-core/2.0-beta9/678861ba1b2e1fccb594bb0ca03114bb05da9695/log4j-core-2.0-beta9.jar
[23:15:31] [Client thread/TRACE] [FML/]: Skipping known library file /home/john/.gradle/caches/modules-2/files-2.1/net.minecraft/launchwrapper/1.12/111e7bea9c968cdb3d06ef4632bf7ff0824d0f36/launchwrapper-1.12.jar
[23:15:31] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/john/.gradle/caches/modules-2/files-2.1/jline/jline/2.13/2d9530d0a25daffaffda7c35037b046b627bb171/jline-2.13.jar, examining for mod candidates
[23:15:31] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/john/.gradle/caches/modules-2/files-2.1/org.ow2.asm/asm-debug-all/5.0.3/f9e364ae2a66ce2a543012a4668856e84e5dab74/asm-debug-all-5.0.3.jar, examining for mod candidates
[23:15:31] [Client thread/TRACE] [FML/]: Skipping known library file /home/john/.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
[23:15:31] [Client thread/TRACE] [FML/]: Skipping known library file /home/john/.gradle/caches/modules-2/files-2.1/com.typesafe/config/1.2.1/f771f71fdae3df231bcd54d5ca2d57f0bf93f467/config-1.2.1.jar
[23:15:31] [Client thread/TRACE] [FML/]: Skipping known library file /home/john/.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
[23:15:31] [Client thread/TRACE] [FML/]: Skipping known library file /home/john/.gradle/caches/modules-2/files-2.1/org.scala-lang/scala-compiler/2.11.1/56ea2e6c025e0821f28d73ca271218b8dd04926a/scala-compiler-2.11.1.jar
[23:15:31] [Client thread/TRACE] [FML/]: Skipping known library file /home/john/.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
[23:15:31] [Client thread/TRACE] [FML/]: Skipping known library file /home/john/.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
[23:15:31] [Client thread/TRACE] [FML/]: Skipping known library file /home/john/.gradle/caches/modules-2/files-2.1/org.scala-lang/scala-library/2.11.1/e11da23da3eabab9f4777b9220e60d44c1aab6a/scala-library-2.11.1.jar
[23:15:31] [Client thread/TRACE] [FML/]: Skipping known library file /home/john/.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
[23:15:31] [Client thread/TRACE] [FML/]: Skipping known library file /home/john/.gradle/caches/modules-2/files-2.1/org.scala-lang/scala-reflect/2.11.1/6580347e61cc7f8e802941e7fde40fa83b8badeb/scala-reflect-2.11.1.jar
[23:15:31] [Client thread/TRACE] [FML/]: Skipping known library file /home/john/.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
[23:15:31] [Client thread/TRACE] [FML/]: Skipping known library file /home/john/.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
[23:15:31] [Client thread/TRACE] [FML/]: Skipping known library file /home/john/.gradle/caches/modules-2/files-2.1/lzma/lzma/0.0.1/521616dc7487b42bef0e803bd2fa3faf668101d7/lzma-0.0.1.jar
[23:15:31] [Client thread/TRACE] [FML/]: Skipping known library file /home/john/.gradle/caches/modules-2/files-2.1/net.sf.trove4j/trove4j/3.0.3/42ccaf4761f0dfdfa805c9e340d99a755907e2dd/trove4j-3.0.3.jar
[23:15:31] [Client thread/TRACE] [FML/]: Skipping known library file /home/john/.gradle/caches/modules-2/files-2.1/com.paulscode/codecjorbis/20101023/c73b5636faf089d9f00e8732a829577de25237ee/codecjorbis-20101023.jar
[23:15:31] [Client thread/TRACE] [FML/]: Skipping known library file /home/john/.gradle/caches/modules-2/files-2.1/com.paulscode/codecwav/20101023/12f031cfe88fef5c1dd36c563c0a3a69bd7261da/codecwav-20101023.jar
[23:15:31] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/john/.gradle/caches/modules-2/files-2.1/com.paulscode/libraryjavasound/20101123/5c5e304366f75f9eaa2e8cca546a1fb6109348b3/libraryjavasound-20101123.jar, examining for mod candidates
[23:15:31] [Client thread/TRACE] [FML/]: Skipping known library file /home/john/.gradle/caches/modules-2/files-2.1/com.paulscode/librarylwjglopenal/20100824/73e80d0794c39665aec3f62eee88ca91676674ef/librarylwjglopenal-20100824.jar
[23:15:31] [Client thread/TRACE] [FML/]: Skipping known library file /home/john/.gradle/caches/modules-2/files-2.1/com.paulscode/soundsystem/20120107/419c05fe9be71f792b2d76cfc9b67f1ed0fec7f6/soundsystem-20120107.jar
[23:15:31] [Client thread/TRACE] [FML/]: Skipping known library file /home/john/.gradle/caches/modules-2/files-2.1/net.java.jinput/jinput/2.0.5/39c7796b469a600f72380316f6b1f11db6c2c7c4/jinput-2.0.5.jar
[23:15:31] [Client thread/TRACE] [FML/]: Skipping known library file /home/john/.gradle/caches/modules-2/files-2.1/org.lwjgl.lwjgl/lwjgl/2.9.4-nightly-20150209/697517568c68e78ae0b4544145af031c81082dfe/lwjgl-2.9.4-nightly-20150209.jar
[23:15:31] [Client thread/TRACE] [FML/]: Skipping known library file /home/john/.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
[23:15:31] [Client thread/TRACE] [FML/]: Skipping known library file /home/john/.gradle/caches/modules-2/files-2.1/java3d/vecmath/1.5.2/79846ba34cbd89e2422d74d53752f993dcc2ccaf/vecmath-1.5.2.jar
[23:15:31] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/john/.gradle/caches/modules-2/files-2.1/org.fusesource.jansi/jansi/1.11/655c643309c2f45a56a747fda70e3fadf57e9f11/jansi-1.11.jar, examining for mod candidates
[23:15:31] [Client thread/TRACE] [FML/]: Skipping known library file /home/john/.gradle/caches/modules-2/files-2.1/org.scala-lang/scala-actors/2.11.0/8ccfb6541de179bb1c4d45cf414acee069b7f78b/scala-actors-2.11.0.jar
[23:15:31] [Client thread/TRACE] [FML/]: Skipping known library file /home/john/.gradle/caches/modules-2/files-2.1/net.java.jinput/jinput-platform/2.0.5/7ff832a6eb9ab6a767f1ade2b548092d0fa64795/jinput-platform-2.0.5-natives-linux.jar
[23:15:31] [Client thread/TRACE] [FML/]: Skipping known library file /home/john/.gradle/caches/modules-2/files-2.1/net.java.jinput/jinput-platform/2.0.5/385ee093e01f587f30ee1c8a2ee7d408fd732e16/jinput-platform-2.0.5-natives-windows.jar
[23:15:31] [Client thread/TRACE] [FML/]: Skipping known library file /home/john/.gradle/caches/modules-2/files-2.1/net.java.jinput/jinput-platform/2.0.5/53f9c919f34d2ca9de8c51fc4e1e8282029a9232/jinput-platform-2.0.5-natives-osx.jar
[23:15:31] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/john/.gradle/caches/modules-2/files-2.1/com.google.code.findbugs/jsr305/2.0.1/516c03b21d50a644d538de0f0369c620989cd8f0/jsr305-2.0.1.jar, examining for mod candidates
[23:15:31] [Client thread/TRACE] [FML/]: Skipping known library file /home/john/.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
[23:15:31] [Client thread/TRACE] [FML/]: Skipping known library file /home/john/.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
[23:15:31] [Client thread/TRACE] [FML/]: Skipping known library file /home/john/.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
[23:15:31] [Client thread/DEBUG] [FML/]: Found a minecraft related directory at /home/john/.gradle/caches/minecraft/net/minecraftforge/forge/1.9-12.16.0.1858-1.9/start, examining for mod candidates
[23:15:31] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/john/Dropbox/Private/Minecraft/Mods/1.9/Something/build/libs/something-0.0.1.jar, examining for mod candidates
[23:15:31] [Client thread/DEBUG] [FML/]: Minecraft jar mods loaded successfully
[23:15:31] [Client thread/INFO] [FML/]: Found 0 mods from the command line. Injecting into mod discoverer
[23:15:31] [Client thread/INFO] [FML/]: Searching /home/john/Dropbox/Private/Minecraft/Mods/1.9/Something/run/mods for mods
[23:15:31] [Client thread/DEBUG] [FML/]: Examining file compileDummy.jar for potential mods
[23:15:31] [Client thread/DEBUG] [FML/]: The mod container compileDummy.jar appears to be missing an mcmod.info file
[23:15:31] [Client thread/DEBUG] [FML/]: Examining file providedDummy.jar for potential mods
[23:15:31] [Client thread/DEBUG] [FML/]: The mod container providedDummy.jar appears to be missing an mcmod.info file
[23:15:31] [Client thread/DEBUG] [FML/]: Examining file forgeSrc-1.9-12.16.0.1858-1.9.jar for potential mods
[23:15:31] [Client thread/DEBUG] [FML/]: The mod container forgeSrc-1.9-12.16.0.1858-1.9.jar appears to be missing an mcmod.info file
[23:15:32] [Client thread/DEBUG] [FML/]: Examining file oshi-core-1.1.jar for potential mods
[23:15:32] [Client thread/DEBUG] [FML/]: The mod container oshi-core-1.1.jar appears to be missing an mcmod.info file
[23:15:32] [Client thread/DEBUG] [FML/]: Examining file jna-3.4.0.jar for potential mods
[23:15:32] [Client thread/DEBUG] [FML/]: The mod container jna-3.4.0.jar appears to be missing an mcmod.info file
[23:15:32] [Client thread/DEBUG] [FML/]: Examining file platform-3.4.0.jar for potential mods
[23:15:32] [Client thread/DEBUG] [FML/]: The mod container platform-3.4.0.jar appears to be missing an mcmod.info file
[23:15:32] [Client thread/DEBUG] [FML/]: Examining file jline-2.13.jar for potential mods
[23:15:32] [Client thread/DEBUG] [FML/]: The mod container jline-2.13.jar appears to be missing an mcmod.info file
[23:15:32] [Client thread/DEBUG] [FML/]: Examining file asm-debug-all-5.0.3.jar for potential mods
[23:15:32] [Client thread/DEBUG] [FML/]: The mod container asm-debug-all-5.0.3.jar appears to be missing an mcmod.info file
[23:15:32] [Client thread/DEBUG] [FML/]: Examining file libraryjavasound-20101123.jar for potential mods
[23:15:32] [Client thread/DEBUG] [FML/]: The mod container libraryjavasound-20101123.jar appears to be missing an mcmod.info file
[23:15:32] [Client thread/DEBUG] [FML/]: Examining file jansi-1.11.jar for potential mods
[23:15:32] [Client thread/DEBUG] [FML/]: The mod container jansi-1.11.jar appears to be missing an mcmod.info file
[23:15:32] [Client thread/DEBUG] [FML/]: Examining file jsr305-2.0.1.jar for potential mods
[23:15:32] [Client thread/DEBUG] [FML/]: The mod container jsr305-2.0.1.jar appears to be missing an mcmod.info file
[23:15:32] [Client thread/DEBUG] [FML/]: Examining directory start for potential mods
[23:15:32] [Client thread/DEBUG] [FML/]: No mcmod.info file found in directory start
[23:15:32] [Client thread/TRACE] [FML/]: Recursing into package net
[23:15:32] [Client thread/TRACE] [FML/]: Recursing into package net.minecraftforge
[23:15:32] [Client thread/TRACE] [FML/]: Recursing into package net.minecraftforge.gradle
[23:15:32] [Client thread/TRACE] [FML/]: Recursing into package net.minecraftforge.gradle.tweakers
[23:15:32] [Client thread/DEBUG] [FML/]: Examining file something-0.0.1.jar for potential mods
[23:15:32] [Client thread/TRACE] [FML/]: Located mcmod.info file in file something-0.0.1.jar
[23:15:32] [Client thread/DEBUG] [FML/]: Identified a mod of type Lnet/minecraftforge/fml/common/Mod; (hyperhamster.something.Something) - loading
[23:15:32] [Client thread/TRACE] [something/]: Parsed dependency info : [] [] []
[23:15:32] [Client thread/INFO] [FML/]: Forge Mod Loader has identified 4 mods to load
[23:15:32] [Client thread/TRACE] [FML/]: Received a system property request ''
[23:15:32] [Client thread/TRACE] [FML/]: System property request managing the state of 0 mods
[23:15:32] [Client thread/DEBUG] [FML/]: After merging, found state information for 0 mods
[23:15:32] [Client thread/DEBUG] [something/]: Enabling mod something
[23:15:32] [Client thread/TRACE] [FML/]: Verifying mod requirements are satisfied
[23:15:32] [Client thread/TRACE] [FML/]: All mod requirements are satisfied
[23:15:32] [Client thread/TRACE] [FML/]: Sorting mods into an ordered list
[23:15:32] [Client thread/TRACE] [FML/]: Mod sorting completed successfully
[23:15:32] [Client thread/DEBUG] [FML/]: Mod sorting data
[23:15:32] [Client thread/DEBUG] [FML/]: 	something(Something:0.0.1): something-0.0.1.jar ()
[23:15:32] [Client thread/TRACE] [mcp/mcp]: Sending event FMLConstructionEvent to mod mcp
[23:15:32] [Client thread/TRACE] [mcp/mcp]: Sent event FMLConstructionEvent to mod mcp
[23:15:32] [Client thread/DEBUG] [FML/]: Bar Step: Construction - Minecraft Coder Pack took 0.001s
[23:15:32] [Client thread/TRACE] [FML/FML]: Sending event FMLConstructionEvent to mod FML
[23:15:32] [Client thread/TRACE] [FML/FML]: Mod FML is using network checker : Invoking method checkModLists
[23:15:32] [Client thread/TRACE] [FML/FML]: Testing mod FML to verify it accepts its own version in a remote connection
[23:15:32] [Client thread/TRACE] [FML/FML]: The mod FML accepts its own version (8.0.99.99)
[23:15:32] [Client thread/INFO] [FML/FML]: Attempting connection with missing mods [mcp, FML, Forge, something] at CLIENT
[23:15:32] [Client thread/INFO] [FML/FML]: Attempting connection with missing mods [mcp, FML, Forge, something] at SERVER
[23:15:32] [Client thread/TRACE] [FML/FML]: Sent event FMLConstructionEvent to mod FML
[23:15:32] [Client thread/DEBUG] [FML/]: Bar Step: Construction - Forge Mod Loader took 0.304s
[23:15:32] [Client thread/TRACE] [Forge/Forge]: Sending event FMLConstructionEvent to mod Forge
[23:15:32] [Client thread/TRACE] [FML/Forge]: Mod Forge is using network checker : No network checking performed
[23:15:32] [Client thread/TRACE] [FML/Forge]: Testing mod Forge to verify it accepts its own version in a remote connection
[23:15:32] [Client thread/TRACE] [FML/Forge]: The mod Forge accepts its own version (12.16.0.1858)
[23:15:32] [Client thread/TRACE] [Forge/Forge]: Sent event FMLConstructionEvent to mod Forge
[23:15:32] [Client thread/DEBUG] [FML/]: Bar Step: Construction - Minecraft Forge took 0.008s
[23:15:32] [Client thread/TRACE] [something/something]: Sending event FMLConstructionEvent to mod something
[23:15:32] [Client thread/TRACE] [FML/something]: Mod something is using network checker : Accepting version 0.0.1
[23:15:32] [Client thread/TRACE] [FML/something]: Testing mod something to verify it accepts its own version in a remote connection
[23:15:32] [Client thread/TRACE] [FML/something]: The mod something accepts its own version (0.0.1)
[23:15:32] [Client thread/DEBUG] [FML/something]: Attempting to inject @SidedProxy classes into something
[23:15:32] [Client thread/TRACE] [something/something]: Sent event FMLConstructionEvent to mod something
[23:15:32] [Client thread/DEBUG] [FML/]: Bar Step: Construction - Something took 0.016s
[23:15:32] [Client thread/DEBUG] [FML/]: Bar Finished: Construction took 0.329s
[23:15:32] [Client thread/DEBUG] [FML/]: Mod signature data
[23:15:32] [Client thread/DEBUG] [FML/]:  	Valid Signatures:
[23:15:32] [Client thread/DEBUG] [FML/]:  	Missing Signatures:
[23:15:32] [Client thread/DEBUG] [FML/]: 		mcp	(Minecraft Coder Pack	9.19)	minecraft.jar
[23:15:32] [Client thread/DEBUG] [FML/]: 		FML	(Forge Mod Loader	8.0.99.99)	forgeSrc-1.9-12.16.0.1858-1.9.jar
[23:15:32] [Client thread/DEBUG] [FML/]: 		Forge	(Minecraft Forge	12.16.0.1858)	forgeSrc-1.9-12.16.0.1858-1.9.jar
[23:15:32] [Client thread/DEBUG] [FML/]: 		something	(Something	0.0.1)	something-0.0.1.jar
[23:15:32] [Client thread/DEBUG] [FML/]: Bar Step: Loading Resources - Default took 0.004s
[23:15:32] [Client thread/DEBUG] [FML/]: Bar Step: Loading Resources - FMLFileResourcePack:Forge Mod Loader took 0.020s
[23:15:32] [Client thread/DEBUG] [FML/]: Bar Step: Loading Resources - FMLFileResourcePack:Minecraft Forge took 0.015s
[23:15:32] [Client thread/DEBUG] [FML/]: Bar Step: Loading Resources - FMLFileResourcePack:Something took 0.001s
[23:15:32] [Client thread/DEBUG] [FML/]: Bar Finished: Reloading - LanguageManager took 0.037s
[23:15:32] [Client thread/DEBUG] [FML/]: Bar Step: Loading Resources - Reloading listeners took 0.038s
[23:15:32] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resources took 0.077s
[23:15:32] [Client thread/DEBUG] [Forge Mod Loader/]: Mod Forge Mod Loader is missing a pack.mcmeta file, substituting a dummy one
[23:15:32] [Client thread/DEBUG] [Minecraft Forge/]: Mod Minecraft Forge is missing a pack.mcmeta file, substituting a dummy one
[23:15:32] [Client thread/DEBUG] [something/]: Mod Something is missing a pack.mcmeta file, substituting a dummy one
[23:15:32] [Client thread/INFO] [FML/]: Processing ObjectHolder annotations
[23:15:32] [Client thread/INFO] [FML/]: Found 418 ObjectHolder annotations
[23:15:32] [Client thread/INFO] [FML/]: Identifying ItemStackHolder annotations
[23:15:32] [Client thread/INFO] [FML/]: Found 0 ItemStackHolder annotations
[23:15:32] [Client thread/TRACE] [mcp/mcp]: Sending event FMLPreInitializationEvent to mod mcp
[23:15:32] [Client thread/TRACE] [mcp/mcp]: Sent event FMLPreInitializationEvent to mod mcp
[23:15:32] [Client thread/DEBUG] [FML/]: Bar Step: PreInitialization - Minecraft Coder Pack took 0.001s
[23:15:32] [Client thread/TRACE] [FML/FML]: Sending event FMLPreInitializationEvent to mod FML
[23:15:33] [Client thread/TRACE] [FML/FML]: Sent event FMLPreInitializationEvent to mod FML
[23:15:33] [Client thread/DEBUG] [FML/]: Bar Step: PreInitialization - Forge Mod Loader took 0.015s
[23:15:33] [Client thread/TRACE] [Forge/Forge]: Sending event FMLPreInitializationEvent to mod Forge
[23:15:33] [Client thread/INFO] [FML/Forge]: Configured a dormant chunk cache size of 0
[23:15:33] [Client thread/TRACE] [Forge/Forge]: Sent event FMLPreInitializationEvent to mod Forge
[23:15:33] [Client thread/DEBUG] [FML/]: Bar Step: PreInitialization - Minecraft Forge took 0.050s
[23:15:33] [Client thread/TRACE] [something/something]: Sending event FMLPreInitializationEvent to mod something
[23:15:33] [Forge Version Check/INFO] [ForgeVersionCheck/Forge]: [Forge] Starting version check at http://files.minecraftforge.net/maven/net/minecraftforge/forge/promotions_slim.json
[23:15:33] [Client thread/TRACE] [something/something]: Sent event FMLPreInitializationEvent to mod something
[23:15:33] [Client thread/DEBUG] [FML/]: Bar Step: PreInitialization - Something took 0.058s
[23:15:33] [Client thread/DEBUG] [FML/]: Bar Finished: PreInitialization took 0.123s
[23:15:33] [Client thread/INFO] [FML/]: Applying holder lookups
[23:15:33] [Client thread/INFO] [FML/]: Holder lookups applied
[23:15:33] [Client thread/INFO] [FML/]: Injecting itemstacks
[23:15:33] [Client thread/INFO] [FML/]: Itemstack injection complete
[23:15:33] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resource - TextureManager took 0.000s
[23:15:33] [Forge Version Check/DEBUG] [ForgeVersionCheck/Forge]: [Forge] Received version check data:
{
  "homepage": "http://files.minecraftforge.net/maven/net/minecraftforge/forge/",
  "promos": {
    "1.5.2-latest": "7.8.1.738",
    "1.5.2-recommended": "7.8.1.737",
    "1.6.1-latest": "8.9.0.775",
    "1.6.2-latest": "9.10.1.871",
    "1.6.2-recommended": "9.10.1.871",
    "1.6.3-latest": "9.11.0.878",
    "1.6.4-latest": "9.11.1.1345",
    "1.6.4-recommended": "9.11.1.1345",
    "1.7.10-latest": "10.13.4.1614",
    "1.7.10-latest-1.7.10": "10.13.2.1343",
    "1.7.10-recommended": "10.13.4.1558",
    "1.7.2-latest": "10.12.2.1147",
    "1.7.2-recommended": "10.12.2.1121",
    "1.8-latest": "11.14.4.1577",
    "1.8-recommended": "11.14.4.1563",
    "1.8.8-latest": "11.15.0.1655",
    "1.8.9-latest": "11.15.1.1855",
    "1.8.9-recommended": "11.15.1.1722",
    "1.9-latest": "12.16.0.1859",
    "latest": "11.15.1.1855",
    "latest-1.7.10": "10.13.2.1343",
    "recommended": "11.15.1.1722"
  }
}
[23:15:33] [Forge Version Check/INFO] [ForgeVersionCheck/Forge]: [Forge] Found status: BETA_OUTDATED Target: 12.16.0.1859
[23:15:33] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resource - SoundHandler took 0.451s
[23:15:33] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resource - FontRenderer took 0.005s
[23:15:33] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resource - FontRenderer took 0.002s
[23:15:33] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resource - GrassColorReloadListener took 0.006s
[23:15:33] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resource - FoliageColorReloadListener took 0.007s
[23:15:33] [Client thread/DEBUG] [FML/]: Bar Step: Rendering Setup - GL Setup took 0.001s
[23:15:33] [Client thread/DEBUG] [FML/]: Bar Step: Rendering Setup - Loading Texture Map took 0.006s
[23:15:33] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resource - B3DLoader took 0.000s
[23:15:33] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resource - OBJLoader took 0.000s
[23:15:33] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resource - ModelFluid$FluidLoader took 0.000s
[23:15:33] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resource - ItemLayerModel$Loader took 0.000s
[23:15:33] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resource - MultiLayerModel$Loader took 0.000s
[23:15:33] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resource - ModelDynBucket$LoaderDynBucket took 0.000s
[23:15:34] [Client thread/DEBUG] [FML/]: Bar Finished: ModelLoader: blocks took 0.823s
[23:15:34] [Client thread/DEBUG] [FML/]: Bar Finished: ModelLoader: items took 0.193s
[23:15:34] [Client thread/INFO] [FML/]: Max texture size: 16384
[23:15:34] [Client thread/DEBUG] [FML/]: Bar Finished: Texture stitching - missingno took 0.001s
[23:15:34] [Client thread/DEBUG] [FML/]: Bar Finished: Texture creation took 0.002s
[23:15:34] [Client thread/DEBUG] [FML/]: Bar Finished: Texture mipmap and upload - missingno took 0.001s
[23:15:35] [Client thread/DEBUG] [FML/]: Bar Finished: ModelLoader: baking took 0.730s
[23:15:35] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resource - ModelManager took 1.942s
[23:15:35] [Client thread/DEBUG] [FML/]: Bar Step: Rendering Setup - Loading Model Manager took 1.969s
[23:15:35] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resource - RenderItem took 0.002s
[23:15:35] [Client thread/DEBUG] [FML/]: Bar Step: Rendering Setup - Loading Item Renderer took 0.204s
[23:15:35] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resource - EntityRenderer took 0.000s
[23:15:35] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resource - BlockRendererDispatcher took 0.000s
[23:15:35] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resource - RenderGlobal took 0.000s
[23:15:36] [Client thread/DEBUG] [FML/]: Bar Step: Rendering Setup - Loading Entity Renderer took 0.502s
[23:15:36] [Client thread/DEBUG] [FML/]: Bar Finished: Rendering Setup took 2.682s
[23:15:36] [Client thread/TRACE] [mcp/mcp]: Sending event FMLInitializationEvent to mod mcp
[23:15:36] [Client thread/TRACE] [mcp/mcp]: Sent event FMLInitializationEvent to mod mcp
[23:15:36] [Client thread/DEBUG] [FML/]: Bar Step: Initialization - Minecraft Coder Pack took 0.000s
[23:15:36] [Client thread/TRACE] [FML/FML]: Sending event FMLInitializationEvent to mod FML
[23:15:36] [Client thread/TRACE] [FML/FML]: Sent event FMLInitializationEvent to mod FML
[23:15:36] [Client thread/DEBUG] [FML/]: Bar Step: Initialization - Forge Mod Loader took 0.000s
[23:15:36] [Client thread/TRACE] [Forge/Forge]: Sending event FMLInitializationEvent to mod Forge
[23:15:36] [Client thread/TRACE] [Forge/Forge]: Sent event FMLInitializationEvent to mod Forge
[23:15:36] [Client thread/DEBUG] [FML/]: Bar Step: Initialization - Minecraft Forge took 0.000s
[23:15:36] [Client thread/TRACE] [something/something]: Sending event FMLInitializationEvent to mod something
[23:15:36] [Client thread/TRACE] [something/something]: Sent event FMLInitializationEvent to mod something
[23:15:36] [Client thread/DEBUG] [FML/]: Bar Step: Initialization - Something took 0.000s
[23:15:36] [Client thread/DEBUG] [FML/]: Bar Finished: Initialization took 0.001s
[23:15:36] [Client thread/TRACE] [FML/]: Attempting to deliver 0 IMC messages to mod mcp
[23:15:36] [Client thread/TRACE] [mcp/mcp]: Sending event IMCEvent to mod mcp
[23:15:36] [Client thread/TRACE] [mcp/mcp]: Sent event IMCEvent to mod mcp
[23:15:36] [Client thread/DEBUG] [FML/]: Bar Step: InterModComms$IMC - Minecraft Coder Pack took 0.004s
[23:15:36] [Client thread/TRACE] [FML/]: Attempting to deliver 0 IMC messages to mod FML
[23:15:36] [Client thread/TRACE] [FML/FML]: Sending event IMCEvent to mod FML
[23:15:36] [Client thread/TRACE] [FML/FML]: Sent event IMCEvent to mod FML
[23:15:36] [Client thread/DEBUG] [FML/]: Bar Step: InterModComms$IMC - Forge Mod Loader took 0.000s
[23:15:36] [Client thread/TRACE] [FML/]: Attempting to deliver 0 IMC messages to mod Forge
[23:15:36] [Client thread/TRACE] [Forge/Forge]: Sending event IMCEvent to mod Forge
[23:15:36] [Client thread/TRACE] [Forge/Forge]: Sent event IMCEvent to mod Forge
[23:15:36] [Client thread/DEBUG] [FML/]: Bar Step: InterModComms$IMC - Minecraft Forge took 0.000s
[23:15:36] [Client thread/TRACE] [FML/]: Attempting to deliver 0 IMC messages to mod something
[23:15:36] [Client thread/TRACE] [something/something]: Sending event IMCEvent to mod something
[23:15:36] [Client thread/TRACE] [something/something]: Sent event IMCEvent to mod something
[23:15:36] [Client thread/DEBUG] [FML/]: Bar Step: InterModComms$IMC - Something took 0.001s
[23:15:36] [Client thread/DEBUG] [FML/]: Bar Finished: InterModComms$IMC took 0.005s
[23:15:36] [Client thread/INFO] [FML/]: Injecting itemstacks
[23:15:36] [Client thread/INFO] [FML/]: Itemstack injection complete
[23:15:36] [Client thread/TRACE] [mcp/mcp]: Sending event FMLPostInitializationEvent to mod mcp
[23:15:36] [Client thread/TRACE] [mcp/mcp]: Sent event FMLPostInitializationEvent to mod mcp
[23:15:36] [Client thread/DEBUG] [FML/]: Bar Step: PostInitialization - Minecraft Coder Pack took 0.000s
[23:15:36] [Client thread/TRACE] [FML/FML]: Sending event FMLPostInitializationEvent to mod FML
[23:15:36] [Client thread/TRACE] [FML/FML]: Sent event FMLPostInitializationEvent to mod FML
[23:15:36] [Client thread/DEBUG] [FML/]: Bar Step: PostInitialization - Forge Mod Loader took 0.000s
[23:15:36] [Client thread/TRACE] [Forge/Forge]: Sending event FMLPostInitializationEvent to mod Forge
[23:15:36] [Client thread/TRACE] [Forge/Forge]: Sent event FMLPostInitializationEvent to mod Forge
[23:15:36] [Client thread/DEBUG] [FML/]: Bar Step: PostInitialization - Minecraft Forge took 0.013s
[23:15:36] [Client thread/TRACE] [something/something]: Sending event FMLPostInitializationEvent to mod something
[23:15:36] [Client thread/TRACE] [something/something]: Sent event FMLPostInitializationEvent to mod something
[23:15:36] [Client thread/DEBUG] [FML/]: Bar Step: PostInitialization - Something took 0.000s
[23:15:36] [Client thread/DEBUG] [FML/]: Bar Finished: PostInitialization took 0.014s
[23:15:36] [Client thread/TRACE] [mcp/mcp]: Sending event FMLLoadCompleteEvent to mod mcp
[23:15:36] [Client thread/TRACE] [mcp/mcp]: Sent event FMLLoadCompleteEvent to mod mcp
[23:15:36] [Client thread/DEBUG] [FML/]: Bar Step: LoadComplete - Minecraft Coder Pack took 0.000s
[23:15:36] [Client thread/TRACE] [FML/FML]: Sending event FMLLoadCompleteEvent to mod FML
[23:15:36] [Client thread/TRACE] [FML/FML]: Sent event FMLLoadCompleteEvent to mod FML
[23:15:36] [Client thread/DEBUG] [FML/]: Bar Step: LoadComplete - Forge Mod Loader took 0.003s
[23:15:36] [Client thread/TRACE] [Forge/Forge]: Sending event FMLLoadCompleteEvent to mod Forge
[23:15:36] [Client thread/DEBUG] [FML/Forge]: Forge RecipeSorter Baking:
[23:15:36] [Client thread/DEBUG] [FML/Forge]:   16: RecipeEntry("Before", UNKNOWN, )
[23:15:36] [Client thread/DEBUG] [FML/Forge]:   15: RecipeEntry("minecraft:shaped", SHAPED, net.minecraft.item.crafting.ShapedRecipes) Before: minecraft:shapeless
[23:15:36] [Client thread/DEBUG] [FML/Forge]:   14: RecipeEntry("forge:shapedore", SHAPED, net.minecraftforge.oredict.ShapedOreRecipe) Before: minecraft:shapeless After: minecraft:shaped
[23:15:36] [Client thread/DEBUG] [FML/Forge]:   13: RecipeEntry("minecraft:mapextending", SHAPED, net.minecraft.item.crafting.RecipesMapExtending) Before: minecraft:shapeless After: minecraft:shaped
[23:15:36] [Client thread/DEBUG] [FML/Forge]:   12: RecipeEntry("minecraft:shapeless", SHAPELESS, net.minecraft.item.crafting.ShapelessRecipes) After: minecraft:shaped
[23:15:36] [Client thread/DEBUG] [FML/Forge]:   11: RecipeEntry("minecraft:repair", SHAPELESS, net.minecraft.item.crafting.RecipeRepairItem) After: minecraft:shapeless
[23:15:36] [Client thread/DEBUG] [FML/Forge]:   10: RecipeEntry("minecraft:shield_deco", SHAPELESS, net.minecraft.item.crafting.ShieldRecipes$Decoration) After: minecraft:shapeless
[23:15:36] [Client thread/DEBUG] [FML/Forge]:   9: RecipeEntry("minecraft:armordyes", SHAPELESS, net.minecraft.item.crafting.RecipesArmorDyes) After: minecraft:shapeless
[23:15:36] [Client thread/DEBUG] [FML/Forge]:   8: RecipeEntry("minecraft:fireworks", SHAPELESS, net.minecraft.item.crafting.RecipeFireworks) After: minecraft:shapeless
[23:15:36] [Client thread/DEBUG] [FML/Forge]:   7: RecipeEntry("minecraft:pattern_dupe", SHAPELESS, net.minecraft.item.crafting.RecipesBanners$RecipeDuplicatePattern) After: minecraft:shapeless
[23:15:36] [Client thread/DEBUG] [FML/Forge]:   6: RecipeEntry("minecraft:tippedarrow", SHAPELESS, net.minecraft.item.crafting.RecipeTippedArrow) After: minecraft:shapeless
[23:15:36] [Client thread/DEBUG] [FML/Forge]:   5: RecipeEntry("minecraft:mapcloning", SHAPELESS, net.minecraft.item.crafting.RecipesMapCloning) After: minecraft:shapeless
[23:15:36] [Client thread/DEBUG] [FML/Forge]:   4: RecipeEntry("forge:shapelessore", SHAPELESS, net.minecraftforge.oredict.ShapelessOreRecipe) After: minecraft:shapeless
[23:15:36] [Client thread/DEBUG] [FML/Forge]:   3: RecipeEntry("minecraft:pattern_add", SHAPELESS, net.minecraft.item.crafting.RecipesBanners$RecipeAddPattern) After: minecraft:shapeless
[23:15:36] [Client thread/DEBUG] [FML/Forge]:   2: RecipeEntry("minecraft:bookcloning", SHAPELESS, net.minecraft.item.crafting.RecipeBookCloning) After: minecraft:shapeless
[23:15:36] [Client thread/DEBUG] [FML/Forge]:   1: RecipeEntry("After", UNKNOWN, )
[23:15:36] [Client thread/DEBUG] [FML/Forge]: Sorting recipes
[23:15:36] [Client thread/TRACE] [Forge/Forge]: Sent event FMLLoadCompleteEvent to mod Forge
[23:15:36] [Client thread/DEBUG] [FML/]: Bar Step: LoadComplete - Minecraft Forge took 0.008s
[23:15:36] [Client thread/TRACE] [something/something]: Sending event FMLLoadCompleteEvent to mod something
[23:15:36] [Client thread/TRACE] [something/something]: Sent event FMLLoadCompleteEvent to mod something
[23:15:36] [Client thread/DEBUG] [FML/]: Bar Step: LoadComplete - Something took 0.000s
[23:15:36] [Client thread/DEBUG] [FML/]: Bar Finished: LoadComplete took 0.011s
[23:15:36] [Client thread/DEBUG] [FML/]: Freezing block and item id maps
[23:15:36] [Client thread/INFO] [FML/]: Forge Mod Loader has successfully loaded 4 mods
[23:15:36] [Client thread/DEBUG] [FML/]: Bar Step: Loading Resources - Default took 0.000s
[23:15:36] [Client thread/DEBUG] [FML/]: Bar Step: Loading Resources - FMLFileResourcePack:Forge Mod Loader took 0.010s
[23:15:36] [Client thread/DEBUG] [FML/]: Bar Step: Loading Resources - FMLFileResourcePack:Minecraft Forge took 0.009s
[23:15:36] [Client thread/DEBUG] [FML/]: Bar Step: Loading Resources - FMLFileResourcePack:Something took 0.000s
[23:15:36] [Client thread/DEBUG] [FML/]: Bar Step: Reloading Texture Manager - minecraft:textures/atlas/blocks.png took 0.000s
[23:15:36] [Client thread/DEBUG] [FML/]: Bar Step: Reloading Texture Manager - minecraft:textures/font/ascii.png took 0.005s
[23:15:36] [Client thread/DEBUG] [FML/]: Bar Step: Reloading Texture Manager - minecraft:dynamic/lightMap_1 took 0.000s
[23:15:36] [Client thread/DEBUG] [FML/]: Bar Step: Reloading Texture Manager - minecraft:textures/misc/forcefield.png took 0.002s
[23:15:36] [Client thread/DEBUG] [FML/]: Bar Step: Reloading Texture Manager - minecraft:textures/font/ascii_sga.png took 0.004s
[23:15:36] [Client thread/DEBUG] [FML/]: Bar Finished: Reloading Texture Manager took 0.011s
[23:15:37] [Client thread/DEBUG] [FML/]: Bar Finished: ModelLoader: blocks took 0.416s
[23:15:37] [Client thread/DEBUG] [FML/]: Bar Finished: ModelLoader: items took 0.148s
[23:15:37] [Client thread/INFO] [FML/]: Max texture size: 16384
[23:15:37] [Client thread/DEBUG] [FML/]: Bar Finished: Texture stitching took 0.056s
[23:15:37] [Client thread/DEBUG] [FML/]: Bar Finished: Texture stitching took 0.044s
[23:15:37] [Client thread/DEBUG] [FML/]: Bar Finished: Texture creation took 0.047s
[23:15:37] [Client thread/DEBUG] [FML/]: Bar Finished: Texture mipmap and upload took 0.262s
[23:15:38] [Client thread/DEBUG] [FML/]: Bar Finished: ModelLoader: baking took 0.430s
[23:15:38] [Client thread/DEBUG] [FML/]: Bar Finished: Reloading took 1.916s
[23:15:38] [Client thread/DEBUG] [FML/]: Bar Step: Loading Resources - Reloading listeners took 1.916s
[23:15:38] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resources took 1.935s
[23:15:38] [Client thread/DEBUG] [Forge Mod Loader/]: Mod Forge Mod Loader is missing a pack.mcmeta file, substituting a dummy one
[23:15:38] [Client thread/DEBUG] [Minecraft Forge/]: Mod Minecraft Forge is missing a pack.mcmeta file, substituting a dummy one
[23:15:38] [Client thread/DEBUG] [something/]: Mod Something is missing a pack.mcmeta file, substituting a dummy one
[23:15:38] [Client thread/DEBUG] [FML/]: Bar Finished: Loading took 7.061s
[23:15:42] [server thread/TRACE] [mcp/mcp]: Sending event FMLServerAboutToStartEvent to mod mcp
[23:15:42] [server thread/TRACE] [mcp/mcp]: Sent event FMLServerAboutToStartEvent to mod mcp
[23:15:42] [server thread/DEBUG] [FML/]: Bar Step: ServerAboutToStart - Minecraft Coder Pack took 0.000s
[23:15:42] [server thread/TRACE] [FML/FML]: Sending event FMLServerAboutToStartEvent to mod FML
[23:15:42] [server thread/TRACE] [FML/FML]: Sent event FMLServerAboutToStartEvent to mod FML
[23:15:42] [server thread/DEBUG] [FML/]: Bar Step: ServerAboutToStart - Forge Mod Loader took 0.000s
[23:15:42] [server thread/TRACE] [Forge/Forge]: Sending event FMLServerAboutToStartEvent to mod Forge
[23:15:42] [server thread/TRACE] [Forge/Forge]: Sent event FMLServerAboutToStartEvent to mod Forge
[23:15:42] [server thread/DEBUG] [FML/]: Bar Step: ServerAboutToStart - Minecraft Forge took 0.000s
[23:15:42] [server thread/TRACE] [something/something]: Sending event FMLServerAboutToStartEvent to mod something
[23:15:42] [server thread/TRACE] [something/something]: Sent event FMLServerAboutToStartEvent to mod something
[23:15:42] [server thread/DEBUG] [FML/]: Bar Step: ServerAboutToStart - Something took 0.000s
[23:15:42] [server thread/DEBUG] [FML/]: Bar Finished: ServerAboutToStart took 0.001s
[23:15:42] [server thread/INFO] [FML/]: Injecting existing block and item data into this server instance
[23:15:42] [server thread/TRACE] [mcp/mcp]: Sending event FMLModIdMappingEvent to mod mcp
[23:15:42] [server thread/TRACE] [mcp/mcp]: Sent event FMLModIdMappingEvent to mod mcp
[23:15:42] [server thread/DEBUG] [FML/]: Bar Step: ModIdMapping - Minecraft Coder Pack took 0.000s
[23:15:42] [server thread/TRACE] [FML/FML]: Sending event FMLModIdMappingEvent to mod FML
[23:15:42] [server thread/TRACE] [FML/FML]: Sent event FMLModIdMappingEvent to mod FML
[23:15:42] [server thread/DEBUG] [FML/]: Bar Step: ModIdMapping - Forge Mod Loader took 0.000s
[23:15:42] [server thread/TRACE] [Forge/Forge]: Sending event FMLModIdMappingEvent to mod Forge
[23:15:42] [server thread/TRACE] [Forge/Forge]: Sent event FMLModIdMappingEvent to mod Forge
[23:15:42] [server thread/DEBUG] [FML/]: Bar Step: ModIdMapping - Minecraft Forge took 0.000s
[23:15:42] [server thread/TRACE] [something/something]: Sending event FMLModIdMappingEvent to mod something
[23:15:42] [server thread/TRACE] [something/something]: Sent event FMLModIdMappingEvent to mod something
[23:15:42] [server thread/DEBUG] [FML/]: Bar Step: ModIdMapping - Something took 0.000s
[23:15:42] [server thread/DEBUG] [FML/]: Bar Finished: ModIdMapping took 0.001s
[23:15:42] [server thread/INFO] [FML/]: Applying holder lookups
[23:15:42] [server thread/INFO] [FML/]: Holder lookups applied
[23:15:42] [server thread/DEBUG] [FML/]: Loading persistent fluid defaults from world
[23:15:42] [server thread/DEBUG] [FML/]: The fluid minecraft:lava has been selected as the default fluid for lava
[23:15:42] [server thread/DEBUG] [FML/]: The fluid minecraft:water has been selected as the default fluid for water
[23:15:42] [server thread/INFO] [FML/]: Loading dimension 0 (New World) (net.minecraft.server.integrated.IntegratedServer@326f9a68)
[23:15:42] [server thread/INFO] [FML/]: Loading dimension 1 (New World) (net.minecraft.server.integrated.IntegratedServer@326f9a68)
[23:15:42] [server thread/INFO] [FML/]: Loading dimension -1 (New World) (net.minecraft.server.integrated.IntegratedServer@326f9a68)
[23:15:43] [server thread/TRACE] [mcp/mcp]: Sending event FMLServerStartingEvent to mod mcp
[23:15:43] [server thread/TRACE] [mcp/mcp]: Sent event FMLServerStartingEvent to mod mcp
[23:15:43] [server thread/DEBUG] [FML/]: Bar Step: ServerStarting - Minecraft Coder Pack took 0.000s
[23:15:43] [server thread/TRACE] [FML/FML]: Sending event FMLServerStartingEvent to mod FML
[23:15:43] [server thread/TRACE] [FML/FML]: Sent event FMLServerStartingEvent to mod FML
[23:15:43] [server thread/DEBUG] [FML/]: Bar Step: ServerStarting - Forge Mod Loader took 0.000s
[23:15:43] [server thread/TRACE] [Forge/Forge]: Sending event FMLServerStartingEvent to mod Forge
[23:15:43] [server thread/TRACE] [Forge/Forge]: Sent event FMLServerStartingEvent to mod Forge
[23:15:43] [server thread/DEBUG] [FML/]: Bar Step: ServerStarting - Minecraft Forge took 0.002s
[23:15:43] [server thread/TRACE] [something/something]: Sending event FMLServerStartingEvent to mod something
[23:15:43] [server thread/TRACE] [something/something]: Sent event FMLServerStartingEvent to mod something
[23:15:43] [server thread/DEBUG] [FML/]: Bar Step: ServerStarting - Something took 0.000s
[23:15:43] [server thread/DEBUG] [FML/]: Bar Finished: ServerStarting took 0.003s
[23:15:43] [server thread/TRACE] [mcp/mcp]: Sending event FMLServerStartedEvent to mod mcp
[23:15:43] [server thread/TRACE] [mcp/mcp]: Sent event FMLServerStartedEvent to mod mcp
[23:15:43] [server thread/DEBUG] [FML/]: Bar Step: ServerStarted - Minecraft Coder Pack took 0.000s
[23:15:43] [server thread/TRACE] [FML/FML]: Sending event FMLServerStartedEvent to mod FML
[23:15:43] [server thread/TRACE] [FML/FML]: Sent event FMLServerStartedEvent to mod FML
[23:15:43] [server thread/DEBUG] [FML/]: Bar Step: ServerStarted - Forge Mod Loader took 0.000s
[23:15:43] [server thread/TRACE] [Forge/Forge]: Sending event FMLServerStartedEvent to mod Forge
[23:15:43] [server thread/TRACE] [Forge/Forge]: Sent event FMLServerStartedEvent to mod Forge
[23:15:43] [server thread/DEBUG] [FML/]: Bar Step: ServerStarted - Minecraft Forge took 0.000s
[23:15:43] [server thread/TRACE] [something/something]: Sending event FMLServerStartedEvent to mod something
[23:15:43] [server thread/TRACE] [something/something]: Sent event FMLServerStartedEvent to mod something
[23:15:43] [server thread/DEBUG] [FML/]: Bar Step: ServerStarted - Something took 0.000s
[23:15:43] [server thread/DEBUG] [FML/]: Bar Finished: ServerStarted took 0.001s
[23:15:44] [Netty Local Client IO #0/TRACE] [FML/]: Handshake channel activating
[23:15:44] [Netty Local Client IO #0/DEBUG] [FML/]: FMLHandshakeClientState: null->FMLHandshakeClientState$1:START
[23:15:44] [Netty Local Client IO #0/DEBUG] [FML/]:   Next: HELLO
[23:15:44] [Netty Server IO #1/TRACE] [FML/]: Handshake channel activating
[23:15:44] [Netty Server IO #1/DEBUG] [FML/]: FMLHandshakeServerState: null->FMLHandshakeServerState$1:START
[23:15:44] [Netty Server IO #1/DEBUG] [FML/]:   Next: HELLO
[23:15:44] [Netty Local Client IO #0/DEBUG] [FML/]: Server FML protocol version 2, 4 byte dimension received 0
[23:15:44] [Netty Local Client IO #0/DEBUG] [FML/]: FMLHandshakeClientState: $ServerHello->FMLHandshakeClientState$2:HELLO
[23:15:44] [Netty Local Client IO #0/INFO] [FML/]: Server protocol version 2
[23:15:44] [Netty Local Client IO #0/DEBUG] [FML/]: Received override dimension 0
[23:15:44] [Netty Server IO #1/DEBUG] [FML/]: FMLHandshakeServerState: $ClientHello->FMLHandshakeServerState$2:HELLO
[23:15:44] [Netty Server IO #1/INFO] [FML/]: Client protocol version 2
[23:15:44] [Netty Server IO #1/DEBUG] [FML/]:   Next: HELLO
[23:15:44] [Netty Local Client IO #0/DEBUG] [FML/]:   Next: WAITINGSERVERDATA
[23:15:44] [Netty Server IO #1/DEBUG] [FML/]: FMLHandshakeServerState: $ModList:4 mods->FMLHandshakeServerState$2:HELLO
[23:15:44] [Netty Server IO #1/INFO] [FML/]: Client attempting to join with 4 mods : [email protected],[email protected],[email protected],[email protected]
[23:15:44] [Netty Server IO #1/DEBUG] [FML/]:   Next: WAITINGCACK
[23:15:44] [Netty Local Client IO #0/DEBUG] [FML/]: FMLHandshakeClientState: $ModList:4 mods->FMLHandshakeClientState$3:WAITINGSERVERDATA
[23:15:44] [Netty Local Client IO #0/DEBUG] [FML/]:   Next: PENDINGCOMPLETE
[23:15:44] [Netty Server IO #1/DEBUG] [FML/]: FMLHandshakeServerState: $HandshakeAck:{2}->FMLHandshakeServerState$3:WAITINGCACK
[23:15:44] [Netty Local Client IO #0/DEBUG] [FML/]: FMLHandshakeClientState: $HandshakeAck:{2}->FMLHandshakeClientState$5:PENDINGCOMPLETE
[23:15:44] [Netty Local Client IO #0/DEBUG] [FML/]:   Next: COMPLETE
[23:15:44] [Netty Server IO #1/DEBUG] [FML/]:   Next: COMPLETE
[23:15:44] [Netty Server IO #1/DEBUG] [FML/]: FMLHandshakeServerState: $HandshakeAck:{4}->FMLHandshakeServerState$4:COMPLETE
[23:15:44] [Netty Local Client IO #0/DEBUG] [FML/]: The fluid minecraft:lava has been selected as the default fluid for lava
[23:15:44] [Netty Local Client IO #0/DEBUG] [FML/]: The fluid minecraft:water has been selected as the default fluid for water
[23:15:44] [Netty Local Client IO #0/DEBUG] [FML/]: FMLHandshakeClientState: $HandshakeAck:{3}->FMLHandshakeClientState$6:COMPLETE
[23:15:44] [Netty Server IO #1/DEBUG] [FML/]:   Next: DONE
[23:15:44] [Netty Local Client IO #0/DEBUG] [FML/]:   Next: DONE
[23:15:44] [Netty Server IO #1/DEBUG] [FML/]: FMLHandshakeServerState: $HandshakeAck:{5}->FMLHandshakeServerState$5:DONE
[23:15:44] [Netty Server IO #1/DEBUG] [FML/]:   Next: DONE
[23:15:44] [Netty Local Client IO #0/INFO] [FML/]: [Netty Local Client IO #0] Client side modded connection established
[23:15:44] [server thread/INFO] [FML/]: [server thread] Server side modded connection established
[23:15:44] [Client thread/DEBUG] [FML/]: Overriding dimension: using 0
[23:15:46] [server thread/DEBUG] [FML/]: Gathering id map for writing to world save New World
[23:15:50] [server thread/DEBUG] [FML/]: Gathering id map for writing to world save New World
[23:16:26] [server thread/DEBUG] [FML/]: Gathering id map for writing to world save New World
[23:16:48] [server thread/DEBUG] [FML/]: Gathering id map for writing to world save New World
[23:17:33] [server thread/DEBUG] [FML/]: Gathering id map for writing to world save New World
[23:18:18] [server thread/DEBUG] [FML/]: Gathering id map for writing to world save New World
[23:19:03] [server thread/DEBUG] [FML/]: Gathering id map for writing to world save New World
[23:19:48] [server thread/DEBUG] [FML/]: Gathering id map for writing to world save New World
[23:20:33] [server thread/DEBUG] [FML/]: Gathering id map for writing to world save New World
[23:21:18] [server thread/DEBUG] [FML/]: Gathering id map for writing to world save New World
[23:21:56] [server thread/DEBUG] [FML/]: Gathering id map for writing to world save New World
[23:23:58] [server thread/DEBUG] [FML/]: Gathering id map for writing to world save New World
[23:23:59] [server thread/TRACE] [mcp/mcp]: Sending event FMLServerStoppingEvent to mod mcp
[23:23:59] [server thread/TRACE] [mcp/mcp]: Sent event FMLServerStoppingEvent to mod mcp
[23:23:59] [server thread/DEBUG] [FML/]: Bar Step: ServerStopping - Minecraft Coder Pack took 0.000s
[23:23:59] [server thread/TRACE] [FML/FML]: Sending event FMLServerStoppingEvent to mod FML
[23:23:59] [server thread/TRACE] [FML/FML]: Sent event FMLServerStoppingEvent to mod FML
[23:23:59] [server thread/DEBUG] [FML/]: Bar Step: ServerStopping - Forge Mod Loader took 0.000s
[23:23:59] [server thread/TRACE] [Forge/Forge]: Sending event FMLServerStoppingEvent to mod Forge
[23:23:59] [server thread/TRACE] [Forge/Forge]: Sent event FMLServerStoppingEvent to mod Forge
[23:23:59] [server thread/DEBUG] [FML/]: Bar Step: ServerStopping - Minecraft Forge took 0.000s
[23:23:59] [server thread/TRACE] [something/something]: Sending event FMLServerStoppingEvent to mod something
[23:23:59] [server thread/TRACE] [something/something]: Sent event FMLServerStoppingEvent to mod something
[23:23:59] [server thread/DEBUG] [FML/]: Bar Step: ServerStopping - Something took 0.000s
[23:23:59] [server thread/DEBUG] [FML/]: Bar Finished: ServerStopping took 0.001s
[23:23:59] [server thread/DEBUG] [FML/]: Gathering id map for writing to world save New World
[23:23:59] [server thread/INFO] [FML/]: Unloading dimension 0
[23:23:59] [server thread/INFO] [FML/]: Unloading dimension -1
[23:23:59] [server thread/INFO] [FML/]: Unloading dimension 1
[23:23:59] [server thread/DEBUG] [FML/]: Reverting to frozen data state.
[23:23:59] [server thread/TRACE] [mcp/mcp]: Sending event FMLModIdMappingEvent to mod mcp
[23:23:59] [server thread/TRACE] [mcp/mcp]: Sent event FMLModIdMappingEvent to mod mcp
[23:23:59] [server thread/DEBUG] [FML/]: Bar Step: ModIdMapping - Minecraft Coder Pack took 0.000s
[23:23:59] [server thread/TRACE] [FML/FML]: Sending event FMLModIdMappingEvent to mod FML
[23:23:59] [server thread/TRACE] [FML/FML]: Sent event FMLModIdMappingEvent to mod FML
[23:23:59] [server thread/DEBUG] [FML/]: Bar Step: ModIdMapping - Forge Mod Loader took 0.000s
[23:23:59] [server thread/TRACE] [Forge/Forge]: Sending event FMLModIdMappingEvent to mod Forge
[23:23:59] [server thread/TRACE] [Forge/Forge]: Sent event FMLModIdMappingEvent to mod Forge
[23:23:59] [server thread/DEBUG] [FML/]: Bar Step: ModIdMapping - Minecraft Forge took 0.001s
[23:23:59] [server thread/TRACE] [something/something]: Sending event FMLModIdMappingEvent to mod something
[23:23:59] [server thread/TRACE] [something/something]: Sent event FMLModIdMappingEvent to mod something
[23:23:59] [server thread/DEBUG] [FML/]: Bar Step: ModIdMapping - Something took 0.000s
[23:23:59] [server thread/DEBUG] [FML/]: Bar Finished: ModIdMapping took 0.001s
[23:23:59] [server thread/INFO] [FML/]: Applying holder lookups
[23:23:59] [server thread/INFO] [FML/]: Holder lookups applied
[23:23:59] [server thread/DEBUG] [FML/]: Frozen state restored.
[23:23:59] [server thread/TRACE] [mcp/mcp]: Sending event FMLServerStoppedEvent to mod mcp
[23:23:59] [server thread/TRACE] [mcp/mcp]: Sent event FMLServerStoppedEvent to mod mcp
[23:23:59] [server thread/DEBUG] [FML/]: Bar Step: ServerStopped - Minecraft Coder Pack took 0.000s
[23:23:59] [server thread/TRACE] [FML/FML]: Sending event FMLServerStoppedEvent to mod FML
[23:23:59] [server thread/TRACE] [FML/FML]: Sent event FMLServerStoppedEvent to mod FML
[23:23:59] [server thread/DEBUG] [FML/]: Bar Step: ServerStopped - Forge Mod Loader took 0.000s
[23:23:59] [server thread/TRACE] [Forge/Forge]: Sending event FMLServerStoppedEvent to mod Forge
[23:23:59] [server thread/TRACE] [Forge/Forge]: Sent event FMLServerStoppedEvent to mod Forge
[23:23:59] [server thread/DEBUG] [FML/]: Bar Step: ServerStopped - Minecraft Forge took 0.000s
[23:23:59] [server thread/TRACE] [something/something]: Sending event FMLServerStoppedEvent to mod something
[23:23:59] [server thread/TRACE] [something/something]: Sent event FMLServerStoppedEvent to mod something
[23:23:59] [server thread/DEBUG] [FML/]: Bar Step: ServerStopped - Something took 0.000s
[23:23:59] [server thread/DEBUG] [FML/]: Bar Finished: ServerStopped took 0.001s

 

 

 

latest.log

:

 

 

[23:15:27] [Client thread/INFO]: Setting user: Player462
[23:15:30] [Client thread/INFO]: LWJGL Version: 2.9.4
[23:15:32] [Client thread/INFO]: Reloading ResourceManager: Default, FMLFileResourcePack:Forge Mod Loader, FMLFileResourcePack:Minecraft Forge, FMLFileResourcePack:Something
[23:15:33] [Client thread/WARN]: Invalid sounds.json
com.google.gson.JsonSyntaxException: com.google.gson.stream.MalformedJsonException: Expected ':' at line 6 column 45
at com.google.gson.internal.Streams.parse(Streams.java:56) ~[streams.class:?]
at com.google.gson.TreeTypeAdapter.read(TreeTypeAdapter.java:54) ~[TreeTypeAdapter.class:?]
at com.google.gson.internal.bind.TypeAdapterRuntimeTypeWrapper.read(TypeAdapterRuntimeTypeWrapper.java:40) ~[TypeAdapterRuntimeTypeWrapper.class:?]
at com.google.gson.internal.bind.MapTypeAdapterFactory$Adapter.read(MapTypeAdapterFactory.java:187) ~[MapTypeAdapterFactory$Adapter.class:?]
at com.google.gson.internal.bind.MapTypeAdapterFactory$Adapter.read(MapTypeAdapterFactory.java:145) ~[MapTypeAdapterFactory$Adapter.class:?]
at com.google.gson.Gson.fromJson(Gson.java:803) ~[Gson.class:?]
at com.google.gson.Gson.fromJson(Gson.java:768) ~[Gson.class:?]
at net.minecraft.client.audio.SoundHandler.getSoundMap(SoundHandler.java:127) ~[soundHandler.class:?]
at net.minecraft.client.audio.SoundHandler.onResourceManagerReload(SoundHandler.java:76) [soundHandler.class:?]
at net.minecraft.client.resources.SimpleReloadableResourceManager.registerReloadListener(SimpleReloadableResourceManager.java:120) [simpleReloadableResourceManager.class:?]
at net.minecraft.client.Minecraft.startGame(Minecraft.java:479) [Minecraft.class:?]
at net.minecraft.client.Minecraft.run(Minecraft.java:381) [Minecraft.class:?]
at net.minecraft.client.main.Main.main(Main.java:118) [Main.class:?]
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_77]
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[?:1.8.0_77]
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.8.0_77]
at java.lang.reflect.Method.invoke(Method.java:498) ~[?:1.8.0_77]
at net.minecraft.launchwrapper.Launch.launch(Launch.java:135) [launchwrapper-1.12.jar:?]
at net.minecraft.launchwrapper.Launch.main(Launch.java:28) [launchwrapper-1.12.jar:?]
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_77]
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[?:1.8.0_77]
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.8.0_77]
at java.lang.reflect.Method.invoke(Method.java:498) ~[?:1.8.0_77]
at net.minecraftforge.gradle.GradleStartCommon.launch(GradleStartCommon.java:97) [start/:?]
at GradleStart.main(GradleStart.java:26) [start/:?]
Caused by: com.google.gson.stream.MalformedJsonException: Expected ':' at line 6 column 45
at com.google.gson.stream.JsonReader.syntaxError(JsonReader.java:1505) ~[JsonReader.class:?]
at com.google.gson.stream.JsonReader.doPeek(JsonReader.java:519) ~[JsonReader.class:?]
at com.google.gson.stream.JsonReader.peek(JsonReader.java:414) ~[JsonReader.class:?]
at com.google.gson.internal.bind.TypeAdapters$25.read(TypeAdapters.java:644) ~[TypeAdapters$25.class:?]
at com.google.gson.internal.bind.TypeAdapters$25.read(TypeAdapters.java:667) ~[TypeAdapters$25.class:?]
at com.google.gson.internal.bind.TypeAdapters$25.read(TypeAdapters.java:659) ~[TypeAdapters$25.class:?]
at com.google.gson.internal.bind.TypeAdapters$25.read(TypeAdapters.java:667) ~[TypeAdapters$25.class:?]
at com.google.gson.internal.bind.TypeAdapters$25.read(TypeAdapters.java:642) ~[TypeAdapters$25.class:?]
at com.google.gson.internal.Streams.parse(Streams.java:44) ~[streams.class:?]
... 24 more
[23:15:33] [Client thread/WARN]: Missing sound for event: something:noise_maker_noise
[23:15:33] [sound Library Loader/INFO]: Starting up SoundSystem...
[23:15:33] [Thread-7/INFO]: Initializing LWJGL OpenAL
[23:15:33] [Thread-7/INFO]: (The LWJGL binding of OpenAL.  For more information, see http://www.lwjgl.org)
[23:15:33] [Thread-7/INFO]: OpenAL initialized.
[23:15:34] [sound Library Loader/INFO]: Sound engine started
[23:15:34] [Client thread/INFO]: Created: 16x16 textures-atlas
[23:15:36] [Client thread/INFO]: Reloading ResourceManager: Default, FMLFileResourcePack:Forge Mod Loader, FMLFileResourcePack:Minecraft Forge, FMLFileResourcePack:Something
[23:15:36] [Client thread/WARN]: Invalid sounds.json
com.google.gson.JsonSyntaxException: com.google.gson.stream.MalformedJsonException: Expected ':' at line 6 column 45
at com.google.gson.internal.Streams.parse(Streams.java:56) ~[streams.class:?]
at com.google.gson.TreeTypeAdapter.read(TreeTypeAdapter.java:54) ~[TreeTypeAdapter.class:?]
at com.google.gson.internal.bind.TypeAdapterRuntimeTypeWrapper.read(TypeAdapterRuntimeTypeWrapper.java:40) ~[TypeAdapterRuntimeTypeWrapper.class:?]
at com.google.gson.internal.bind.MapTypeAdapterFactory$Adapter.read(MapTypeAdapterFactory.java:187) ~[MapTypeAdapterFactory$Adapter.class:?]
at com.google.gson.internal.bind.MapTypeAdapterFactory$Adapter.read(MapTypeAdapterFactory.java:145) ~[MapTypeAdapterFactory$Adapter.class:?]
at com.google.gson.Gson.fromJson(Gson.java:803) ~[Gson.class:?]
at com.google.gson.Gson.fromJson(Gson.java:768) ~[Gson.class:?]
at net.minecraft.client.audio.SoundHandler.getSoundMap(SoundHandler.java:127) ~[soundHandler.class:?]
at net.minecraft.client.audio.SoundHandler.onResourceManagerReload(SoundHandler.java:76) [soundHandler.class:?]
at net.minecraft.client.resources.SimpleReloadableResourceManager.notifyReloadListeners(SimpleReloadableResourceManager.java:130) [simpleReloadableResourceManager.class:?]
at net.minecraft.client.resources.SimpleReloadableResourceManager.reloadResources(SimpleReloadableResourceManager.java:111) [simpleReloadableResourceManager.class:?]
at net.minecraft.client.Minecraft.refreshResources(Minecraft.java:792) [Minecraft.class:?]
at net.minecraftforge.fml.client.FMLClientHandler.finishMinecraftLoading(FMLClientHandler.java:323) [FMLClientHandler.class:?]
at net.minecraft.client.Minecraft.startGame(Minecraft.java:554) [Minecraft.class:?]
at net.minecraft.client.Minecraft.run(Minecraft.java:381) [Minecraft.class:?]
at net.minecraft.client.main.Main.main(Main.java:118) [Main.class:?]
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_77]
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[?:1.8.0_77]
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.8.0_77]
at java.lang.reflect.Method.invoke(Method.java:498) ~[?:1.8.0_77]
at net.minecraft.launchwrapper.Launch.launch(Launch.java:135) [launchwrapper-1.12.jar:?]
at net.minecraft.launchwrapper.Launch.main(Launch.java:28) [launchwrapper-1.12.jar:?]
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_77]
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[?:1.8.0_77]
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.8.0_77]
at java.lang.reflect.Method.invoke(Method.java:498) ~[?:1.8.0_77]
at net.minecraftforge.gradle.GradleStartCommon.launch(GradleStartCommon.java:97) [start/:?]
at GradleStart.main(GradleStart.java:26) [start/:?]
Caused by: com.google.gson.stream.MalformedJsonException: Expected ':' at line 6 column 45
at com.google.gson.stream.JsonReader.syntaxError(JsonReader.java:1505) ~[JsonReader.class:?]
at com.google.gson.stream.JsonReader.doPeek(JsonReader.java:519) ~[JsonReader.class:?]
at com.google.gson.stream.JsonReader.peek(JsonReader.java:414) ~[JsonReader.class:?]
at com.google.gson.internal.bind.TypeAdapters$25.read(TypeAdapters.java:644) ~[TypeAdapters$25.class:?]
at com.google.gson.internal.bind.TypeAdapters$25.read(TypeAdapters.java:667) ~[TypeAdapters$25.class:?]
at com.google.gson.internal.bind.TypeAdapters$25.read(TypeAdapters.java:659) ~[TypeAdapters$25.class:?]
at com.google.gson.internal.bind.TypeAdapters$25.read(TypeAdapters.java:667) ~[TypeAdapters$25.class:?]
at com.google.gson.internal.bind.TypeAdapters$25.read(TypeAdapters.java:642) ~[TypeAdapters$25.class:?]
at com.google.gson.internal.Streams.parse(Streams.java:44) ~[streams.class:?]
... 27 more
[23:15:36] [Client thread/WARN]: Missing sound for event: something:noise_maker_noise
[23:15:36] [Client thread/INFO]: SoundSystem shutting down...
[23:15:36] [Client thread/WARN]: Author: Paul Lamb, www.paulscode.com
[23:15:36] [sound Library Loader/INFO]: Starting up SoundSystem...
[23:15:37] [Thread-9/INFO]: Initializing LWJGL OpenAL
[23:15:37] [Thread-9/INFO]: (The LWJGL binding of OpenAL.  For more information, see http://www.lwjgl.org)
[23:15:37] [Thread-9/INFO]: OpenAL initialized.
[23:15:37] [sound Library Loader/INFO]: Sound engine started
[23:15:37] [Client thread/INFO]: Created: 1024x512 textures-atlas
[23:15:39] [Realms Notification Availability checker #1/INFO]: Could not authorize you against Realms server: Invalid session id
[23:15:42] [server thread/INFO]: Starting integrated minecraft server version 1.9
[23:15:42] [server thread/INFO]: Generating keypair
[23:15:42] [server thread/INFO]: Preparing start region for level 0
[23:15:43] [server thread/INFO]: Preparing spawn area: 88%
[23:15:43] [server thread/INFO]: Changing view distance to 12, from 10
[23:15:44] [server thread/INFO]: Player462[local:E:dff805d2] logged in with entity id 141 at (218.5933271673544, 71.0, 161.92094457741743)
[23:15:44] [server thread/INFO]: Player462 joined the game
[23:15:46] [server thread/INFO]: Saving and pausing game...
[23:15:46] [server thread/INFO]: Saving chunks for level 'New World'/Overworld
[23:15:46] [server thread/INFO]: Saving chunks for level 'New World'/Nether
[23:15:46] [server thread/INFO]: Saving chunks for level 'New World'/The End
[23:15:46] [pool-2-thread-1/WARN]: Couldn't look up profile properties for com.mojang.authlib.GameProfile@53723135[id=02d7ab53-cc43-3dbe-bc5a-8521c04d75bb,name=Player462,properties={},legacy=false]
com.mojang.authlib.exceptions.AuthenticationException: The client has sent too many requests within a certain amount of time
at com.mojang.authlib.yggdrasil.YggdrasilAuthenticationService.makeRequest(YggdrasilAuthenticationService.java:65) ~[YggdrasilAuthenticationService.class:?]
at com.mojang.authlib.yggdrasil.YggdrasilMinecraftSessionService.fillGameProfile(YggdrasilMinecraftSessionService.java:175) [YggdrasilMinecraftSessionService.class:?]
at com.mojang.authlib.yggdrasil.YggdrasilMinecraftSessionService$1.load(YggdrasilMinecraftSessionService.java:59) [YggdrasilMinecraftSessionService$1.class:?]
at com.mojang.authlib.yggdrasil.YggdrasilMinecraftSessionService$1.load(YggdrasilMinecraftSessionService.java:56) [YggdrasilMinecraftSessionService$1.class:?]
at com.google.common.cache.LocalCache$LoadingValueReference.loadFuture(LocalCache.java:3524) [guava-17.0.jar:?]
at com.google.common.cache.LocalCache$Segment.loadSync(LocalCache.java:2317) [guava-17.0.jar:?]
at com.google.common.cache.LocalCache$Segment.lockedGetOrLoad(LocalCache.java:2280) [guava-17.0.jar:?]
at com.google.common.cache.LocalCache$Segment.get(LocalCache.java:2195) [guava-17.0.jar:?]
at com.google.common.cache.LocalCache.get(LocalCache.java:3934) [guava-17.0.jar:?]
at com.google.common.cache.LocalCache.getOrLoad(LocalCache.java:3938) [guava-17.0.jar:?]
at com.google.common.cache.LocalCache$LocalLoadingCache.get(LocalCache.java:4821) [guava-17.0.jar:?]
at com.google.common.cache.LocalCache$LocalLoadingCache.getUnchecked(LocalCache.java:4827) [guava-17.0.jar:?]
at com.mojang.authlib.yggdrasil.YggdrasilMinecraftSessionService.fillProfileProperties(YggdrasilMinecraftSessionService.java:165) [YggdrasilMinecraftSessionService.class:?]
at net.minecraft.client.Minecraft.getProfileProperties(Minecraft.java:3038) [Minecraft.class:?]
at net.minecraft.client.resources.SkinManager$3.run(SkinManager.java:130) [skinManager$3.class:?]
at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511) [?:1.8.0_77]
at java.util.concurrent.FutureTask.run(FutureTask.java:266) [?:1.8.0_77]
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1142) [?:1.8.0_77]
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:617) [?:1.8.0_77]
at java.lang.Thread.run(Thread.java:745) [?:1.8.0_77]
[23:15:50] [server thread/INFO]: Saving and pausing game...
[23:15:50] [server thread/INFO]: Saving chunks for level 'New World'/Overworld
[23:15:50] [server thread/INFO]: Saving chunks for level 'New World'/Nether
[23:15:50] [server thread/INFO]: Saving chunks for level 'New World'/The End
[23:16:05] [server thread/INFO]: [Player462: Set the time to 0]
[23:16:05] [Client thread/INFO]: [CHAT] Set the time to 0
[23:16:16] [Client thread/INFO]: [CHAT] music, master
[23:16:19] [server thread/INFO]: [Player462: Played sound 'something:noise_maker_noise' to Player462]
[23:16:19] [Client thread/INFO]: [CHAT] Played sound 'something:noise_maker_noise' to Player462
[23:16:21] [server thread/INFO]: [Player462: Played sound 'something:noise_maker_noise' to Player462]
[23:16:21] [Client thread/INFO]: [CHAT] Played sound 'something:noise_maker_noise' to Player462
[23:16:22] [server thread/INFO]: [Player462: Played sound 'something:noise_maker_noise' to Player462]
[23:16:22] [Client thread/INFO]: [CHAT] Played sound 'something:noise_maker_noise' to Player462
[23:16:23] [server thread/INFO]: [Player462: Played sound 'something:noise_maker_noise' to Player462]
[23:16:23] [Client thread/INFO]: [CHAT] Played sound 'something:noise_maker_noise' to Player462
[23:16:26] [server thread/INFO]: Saving and pausing game...
[23:16:26] [server thread/INFO]: Saving chunks for level 'New World'/Overworld
[23:16:26] [server thread/INFO]: Saving chunks for level 'New World'/Nether
[23:16:26] [server thread/INFO]: Saving chunks for level 'New World'/The End
[23:16:39] [server thread/INFO]: [Player462: Played sound 'something:noise_maker_noise' to Player462]
[23:16:39] [Client thread/INFO]: [CHAT] Played sound 'something:noise_maker_noise' to Player462
[23:16:43] [server thread/INFO]: [Player462: Played sound 'something:noise_maker_noise' to Player462]
[23:16:43] [Client thread/INFO]: [CHAT] Played sound 'something:noise_maker_noise' to Player462
[23:16:46] [server thread/INFO]: [Player462: Played sound 'something:noise_maker_noise' to Player462]
[23:16:46] [Client thread/INFO]: [CHAT] Played sound 'something:noise_maker_noise' to Player462
[23:16:50] [server thread/INFO]: [Player462: Played sound 'something:noise_maker_noise' to Player462]
[23:16:50] [Client thread/INFO]: [CHAT] Played sound 'something:noise_maker_noise' to Player462
[23:16:57] [server thread/INFO]: [Player462: Played sound 'something:noise_maker_noise' to Player462]
[23:16:57] [Client thread/INFO]: [CHAT] Played sound 'something:noise_maker_noise' to Player462
[23:17:04] [server thread/INFO]: [Player462: Played sound 'something:noise_maker_noise' to Player462]
[23:17:04] [Client thread/INFO]: [CHAT] Played sound 'something:noise_maker_noise' to Player462
[23:17:10] [server thread/INFO]: [Player462: Played sound 'something:noise_maker_noise' to Player462]
[23:17:10] [Client thread/INFO]: [CHAT] Played sound 'something:noise_maker_noise' to Player462
[23:17:13] [server thread/INFO]: [Player462: Played sound 'something:noise_maker_noise' to Player462]
[23:17:13] [Client thread/INFO]: [CHAT] Played sound 'something:noise_maker_noise' to Player462
[23:17:16] [Client thread/INFO]: [CHAT] Usage: /playsound <sound> <source> <player> [x] [y] [z] [volume] [pitch] [minimumVolume]
[23:21:53] [server thread/INFO]: [Player462: Played sound 'something:noise_maker_noise' to Player462]
[23:21:53] [Client thread/INFO]: [CHAT] Played sound 'something:noise_maker_noise' to Player462
[23:21:55] [server thread/INFO]: [Player462: Played sound 'something:noise_maker_noise' to Player462]
[23:21:55] [Client thread/INFO]: [CHAT] Played sound 'something:noise_maker_noise' to Player462
[23:21:56] [server thread/INFO]: Saving and pausing game...
[23:21:56] [server thread/INFO]: Saving chunks for level 'New World'/Overworld
[23:21:56] [server thread/INFO]: Saving chunks for level 'New World'/Nether
[23:21:56] [server thread/INFO]: Saving chunks for level 'New World'/The End
[23:23:58] [server thread/INFO]: Saving and pausing game...
[23:23:58] [server thread/INFO]: Saving chunks for level 'New World'/Overworld
[23:23:58] [server thread/INFO]: Saving chunks for level 'New World'/Nether
[23:23:58] [server thread/INFO]: Saving chunks for level 'New World'/The End
[23:23:59] [server thread/INFO]: Stopping server
[23:23:59] [server thread/INFO]: Saving players
[23:23:59] [server thread/INFO]: Saving worlds
[23:23:59] [server thread/INFO]: Saving chunks for level 'New World'/Overworld
[23:23:59] [server thread/INFO]: Saving chunks for level 'New World'/Nether
[23:23:59] [server thread/INFO]: Saving chunks for level 'New World'/The End
[23:24:00] [Client thread/INFO]: Stopping!
[23:24:00] [Client thread/INFO]: SoundSystem shutting down...
[23:24:00] [Client thread/WARN]: Author: Paul Lamb, www.paulscode.com

 

 

 

I loaded into a singleplayer world and played the sound a few times with the "/playsound" command. Personally, I didn't spot anything relevant in the log but maybe you will.

Posted

It looks like

SoundManager

isn't writing to the FML log due to the log4j configuration, so the

DEBUG

level messages that are logged when sounds are played are discarded.

 

Set a breakpoint in

SoundManager#playSound

and step through it when you play the sound. Does it play the sound or skip it?

Please don't PM me to ask for help. Asking your question in a public thread preserves it for people who are having the same problem in the future.

Posted

It looks like

SoundManager

isn't writing to the FML log due to the log4j configuration, so the

DEBUG

level messages that are logged when sounds are played are discarded.

 

Set a breakpoint in

SoundManager#playSound

and step through it when you play the sound. Does it play the sound or skip it?

 

Well I had to look up what breakpoints were because I had never heard of them before, as I haven't ever the need for such advanced debugging. As far as I can tell my modular text editor, Atom, does not have an integrated graphical debugger, and I could not find any packages available for it that add that functionality. I suppose I could use "jdb", the JDK command line debugger, but I have no idea how to run Minecraft from within it.

 

As for my log4j configuration; if you could tell me where my log4j config is, and what to edit in it to allow SoundManager debug messages through I would appreciate it.

 

Be aware that I am new to java and forge in general and am not educated completely in their intricacies, although I am willing to learn.

Posted

I think you need to add the "name" tag to your json if you are going to have other tags such as "stream" in there.

 

{
"noise_maker_noise": {
        "category": "master",
        "sounds": [
            {
                "name": "something:noiseMakerNoise",
                "stream": false
            }
        ]
    }
}

 

Posted

I think you need to add the "name" tag to your json if you are going to have other tags such as "stream" in there.

 

{
"noise_maker_noise": {
        "category": "master",
        "sounds": [
            {
                "name": "something:noiseMakerNoise",
                "stream": false
            }
        ]
    }
}

 

Yes! Thank you, crackedEgg. I must have completely overlooked that part of Choonster's

sounds.json

. Adding the

"name"

tag does indeed make my sound play correctly in-game.

Posted

Well I had to look up what breakpoints were because I had never heard of them before, as I haven't ever the need for such advanced debugging. As far as I can tell my modular text editor, Atom, does not have an integrated graphical debugger, and I could not find any packages available for it that add that functionality. I suppose I could use "jdb", the JDK command line debugger, but I have no idea how to run Minecraft from within it.

I would highly recommend using an actual IDE with a graphical debugger like IDEA or Eclipse, it will make debugging your code a lot easier.

 

 

As for my log4j configuration; if you could tell me where my log4j config is, and what to edit in it to allow SoundManager debug messages through I would appreciate it.

The log4j configuration is stored in the log4j2.xml file in the forgeSrc JAR. You can copy this file into src/main/resources and add this tag in the

<Loggers>

tag, between

<Logger level="info" name="net.minecraft" additivity="false">...</Logger>

and

<Root level="all">...</Root>

:

        <Logger level="all" name="net.minecraft" additivity="false">
            <AppenderRef ref="FmlSysOut" level="INFO"/>
            <AppenderRef ref="ServerGuiConsole" level="INFO"/>
            <AppenderRef ref="FmlFile"/>
        </Logger>

 

You can read more about configuring Log4j 2 here.

 

This will override Forge's configuration completely. Ideally you'd exclude this file from your built mod, but I haven't worked out how to have Gradle do that yet.

 

Now that I look at your latest.log, I can see there's a

JsonSyntaxException

being thrown from

SoundHandler

because your sounds.json was malformed.

Please don't PM me to ask for help. Asking your question in a public thread preserves it for people who are having the same problem in the future.

Posted

What about if you have multiple sound files? Like mine:

 

{
  "mob.terrakon.bark": {"category": "neutral", "sounds": [{"name": ["tetracraft:entity/terrakon/bark1", "tetracraft:entity/terrakon/bark2", "tetracraft:entity/terrakon/bark3"], "stream": true}]},
  "mob.terrakon.growl": {"category": "neutral", "sounds": [{"name": ["tetracraft:entity/terrakon/growl1", "tetracraft:entity/terrakon/growl2", "tetracraft:entity/terrakon/growl3"], "stream": true}]},
  "mob.terrakon.hurt": {"category": "neutral", "sounds": [{"name": ["tetracraft:entity/terrakon/hurt1", "tetracraft:entity/terrakon/hurt2", "tetracraft:entity/terrakon/hurt3"], "stream": true}]},
  "mob.terrakon.pant": {"category": "neutral", "sounds": [{"name": ["tetracraft:entity/terrakon/panting"], "stream": true}]},
  "mob.terrakon.whine": {"category": "neutral", "sounds": [{"name": ["tetracraft:entity/terrakon/whine"], "stream": true}]},
  "mob.terrakon.death": {"category": "neutral", "sounds": [{"name": ["tetracraft:entity/terrakon/death"], "stream": true}]}

}

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 about if you have multiple sound files? Like mine:

 

{
  "mob.terrakon.bark": {"category": "neutral", "sounds": [{"name": ["tetracraft:entity/terrakon/bark1", "tetracraft:entity/terrakon/bark2", "tetracraft:entity/terrakon/bark3"], "stream": true}]},
  "mob.terrakon.growl": {"category": "neutral", "sounds": [{"name": ["tetracraft:entity/terrakon/growl1", "tetracraft:entity/terrakon/growl2", "tetracraft:entity/terrakon/growl3"], "stream": true}]},
  "mob.terrakon.hurt": {"category": "neutral", "sounds": [{"name": ["tetracraft:entity/terrakon/hurt1", "tetracraft:entity/terrakon/hurt2", "tetracraft:entity/terrakon/hurt3"], "stream": true}]},
  "mob.terrakon.pant": {"category": "neutral", "sounds": [{"name": ["tetracraft:entity/terrakon/panting"], "stream": true}]},
  "mob.terrakon.whine": {"category": "neutral", "sounds": [{"name": ["tetracraft:entity/terrakon/whine"], "stream": true}]},
  "mob.terrakon.death": {"category": "neutral", "sounds": [{"name": ["tetracraft:entity/terrakon/death"], "stream": true}]}

}

 

The sound name passed to the

SoundEvent

constructor is the name of a sound event in your sounds.json file (i.e. the keys of the top-level object), not the name of a sound file. In your case,

tetracraft:mob.terrakon.bark

is the name to use for the first sound.

Please don't PM me to ask for help. Asking your question in a public thread preserves it for people who are having the same problem in the future.

Posted

I got this so far from the game console:

 

[19:18:51] [Client thread/WARN]: File minecraft:sounds/terrakon.bark.ogg does not exist, cannot add it to event tetracraft:mob.terrakon.bark
[19:18:51] [Client thread/WARN]: File minecraft:sounds/terrakon.growl.ogg does not exist, cannot add it to event tetracraft:mob.terrakon.growl
[19:18:51] [Client thread/WARN]: File minecraft:sounds/terrakon.hurt.ogg does not exist, cannot add it to event tetracraft:mob.terrakon.hurt
[19:18:51] [Client thread/WARN]: File minecraft:sounds/terrakon.pant.ogg does not exist, cannot add it to event tetracraft:mob.terrakon.pant
[19:18:51] [Client thread/WARN]: File minecraft:sounds/terrakon.whine.ogg does not exist, cannot add it to event tetracraft:mob.terrakon.whine
[19:18:51] [Client thread/WARN]: File minecraft:sounds/terrakon.death.ogg does not exist, cannot add it to event tetracraft:mob.terrakon.death

 

And here is the json again

 

{
  "mob.terrakon.bark": {"category": "neutral", "sounds": [{"name": "terrakon.bark", "stream": true}, "tetracraft:entity/terrakon/bark1", "tetracraft:entity/terrakon/bark2", "tetracraft:entity/terrakon/bark3"]},
  "mob.terrakon.growl": {"category": "neutral", "sounds": [{"name": "terrakon.growl", "stream": true}, "tetracraft:entity/terrakon/growl1", "tetracraft:entity/terrakon/growl2", "tetracraft:entity/terrakon/growl3"]},
  "mob.terrakon.hurt": {"category": "neutral", "sounds": [{"name": "terrakon.hurt", "stream": true}, "tetracraft:entity/terrakon/hurt1", "tetracraft:entity/terrakon/hurt2", "tetracraft:entity/terrakon/hurt3"]},
  "mob.terrakon.pant": {"category": "neutral", "sounds": [{"name": "terrakon.pant", "stream": true}, "tetracraft:entity/terrakon/panting"]},
  "mob.terrakon.whine": {"category": "neutral", "sounds": [{"name": "terrakon.whine", "stream": true}, "tetracraft:entity/terrakon/whine"]},
  "mob.terrakon.death": {"category": "neutral", "sounds": [{"name": "terrakon.death", "stream": true}, "tetracraft:entity/terrakon/death"]}

}

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

You don't need terrakon.bark - that's the sound registry key (well, technically yours is labeled 'mob.terrakon.bark') that maps to the possible sounds, e.g. tetracraft:entity/terrakon/bark1, tetracraft:entity/terrakon/bark2, etc.

 

So it should look like:

"mob.terrakon.bark": {"category": "neutral", "sounds": [{"name": "tetracraft:entity/terrakon/bark1", "stream": true}, {"name": "tetracraft:entity/terrakon/bark2", "stream": true}, {"name": "tetracraft:entity/terrakon/bark3", "stream": true}]},

At least, I think - I haven't done streaming sound variants before, but that's how it works for other sounds.

Posted

The sounds.json format hasn't changed much in 1.9 except for the addition of the

"voice"

category for sounds and the need to include the resource domain for sound file paths and sound event names in the

"sounds"

array of sound events. This page explains the format.

 

Each value in the top-level object is a sound event, you can register a

SoundEvent

for each one of these to play one of their sound files.

 

The values in the

"sounds"

array of each sound event are either the path of a sound file as a string (e.g.

"tetracraft:entity/terrakon/bark1"

) or an object with its

"name"

property set to the path of a sound file or the name of another sound event. This object can also contain various other properties, see the wiki page I linked for more details.

Please don't PM me to ask for help. Asking your question in a public thread preserves it for people who are having the same problem in the future.

Posted

I'm getting this error with the game like this:

Also, I did look at that page before, thats how I got the stream stuff from before

20:28:41] [Client thread/WARN]: File minecraft:sounds/entity/terrakon/bark1.ogg does not exist, cannot add it to event tetracraft:entity.terrakon.bark
[20:28:41] [Client thread/WARN]: File minecraft:sounds/entity/terrakon/bark2.ogg does not exist, cannot add it to event tetracraft:entity.terrakon.bark
[20:28:41] [Client thread/WARN]: File minecraft:sounds/entity/terrakon/bark3.ogg does not exist, cannot add it to event tetracraft:entity.terrakon.bark
[20:28:41] [Client thread/WARN]: File minecraft:sounds/entity/terrakon/growl1.ogg does not exist, cannot add it to event tetracraft:entity.terrakon.growl
[20:28:41] [Client thread/WARN]: File minecraft:sounds/entity/terrakon/growl2.ogg does not exist, cannot add it to event tetracraft:entity.terrakon.growl
[20:28:41] [Client thread/WARN]: File minecraft:sounds/entity/terrakon/growl3.ogg does not exist, cannot add it to event tetracraft:entity.terrakon.growl
[20:28:41] [Client thread/WARN]: File minecraft:sounds/entity/terrakon/hurt1.ogg does not exist, cannot add it to event tetracraft:entity.terrakon.hurt
[20:28:41] [Client thread/WARN]: File minecraft:sounds/entity/terrakon/hurt2.ogg does not exist, cannot add it to event tetracraft:entity.terrakon.hurt
[20:28:41] [Client thread/WARN]: File minecraft:sounds/entity/terrakon/hurt3.ogg does not exist, cannot add it to event tetracraft:entity.terrakon.hurt
[20:28:41] [Client thread/WARN]: File minecraft:sounds/entity/terrakon/panting.ogg does not exist, cannot add it to event tetracraft:entity.terrakon.pant
[20:28:41] [Client thread/WARN]: File minecraft:sounds/entity/terrakon/whine.ogg does not exist, cannot add it to event tetracraft:entity.terrakon.whine
[20:28:41] [Client thread/WARN]: File minecraft:sounds/entity/terrakon/death.ogg does not exist, cannot add it to event tetracraft:entity.terrakon.death

 

Here's the Json

{
  "entity.terrakon.bark": {"category": "neutral", "sounds": ["tetracraft:entity/terrakon/bark1", "tetracraft:entity/terrakon/bark2", "tetracraft:entity/terrakon/bark3"]},
  "entity.terrakon.growl": {"category": "neutral", "sounds": ["tetracraft:entity/terrakon/growl1", "tetracraft:entity/terrakon/growl2", "tetracraft:entity/terrakon/growl3"]},
  "entity.terrakon.hurt": {"category": "neutral", "sounds": ["tetracraft:entity/terrakon/hurt1", "tetracraft:entity/terrakon/hurt2", "tetracraft:entity/terrakon/hurt3"]},
  "entity.terrakon.pant": {"category": "neutral", "sounds": ["tetracraft:entity/terrakon/panting"]},
  "entity.terrakon.whine": {"category": "neutral", "sounds": ["tetracraft:entity/terrakon/whine"]},
  "entity.terrakon.death": {"category": "neutral", "sounds": ["tetracraft:entity/terrakon/death"]}
}

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 tried that also, it still doesn't play my sounds

Json

{
  "entity.terrakon.bark": {"category": "neutral", "sounds": ["tetracraft:entity/terrakon/bark1", "tetracraft:entity/terrakon/bark2", "tetracraft:entity/terrakon/bark3"]},
  "entity.terrakon.growl": {"category": "neutral", "sounds": ["tetracraft:entity/terrakon/growl1", "tetracraft:entity/terrakon/growl2", "tetracraft:entity/terrakon/growl3"]},
  "entity.terrakon.hurt": {"category": "neutral", "sounds": ["tetracraft:entity/terrakon/hurt1", "tetracraft:entity/terrakon/hurt2", "tetracraft:entity/terrakon/hurt3"]},
  "entity.terrakon.pant": {"category": "neutral", "sounds": ["tetracraft:entity/terrakon/panting"]},
  "entity.terrakon.whine": {"category": "neutral", "sounds": ["tetracraft:entity/terrakon/whine"]},
  "entity.terrakon.death": {"category": "neutral", "sounds": ["tetracraft:entity/terrakon/death"]}
}

 

ModFile

package novaviper.tetracraft.common.lib;

import net.minecraft.util.ResourceLocation;
import net.minecraft.util.SoundEvent;
import net.minecraftforge.fml.common.registry.GameRegistry;

/**
* @author NovaViper (Based on Choonster's code)
* Class Purpose: Registers this mod's {@link SoundEvent}s.
*/
@SuppressWarnings("WeakerAccess")
public class ModSoundEvents {

// Terrakon Sounds\\
public static SoundEvent terrakonBark;
public static SoundEvent terrakonGrowl;
public static SoundEvent terrakonHurt;
public static SoundEvent terrakonPanting;
public static SoundEvent terrakonWhine;
public static SoundEvent terrakonDeath;

/**
 * Register the {@link SoundEvent}s.
 */
public static void registerSounds() {
	terrakonBark = Registers.registerSound("entity.terrakon.bark");
	terrakonGrowl = Registers.registerSound("entity.terrakon.growl");
	terrakonHurt = Registers.registerSound("entity.terrakon.hurt");
	terrakonPanting = Registers.registerSound("entity.terrakon.pant");
	terrakonWhine = Registers.registerSound("entity.terrakon.whine");
	terrakonDeath = Registers.registerSound("entity.terrakon.death");
}
}

 

Registry

	/**
 * Register a {@link SoundEvent}.
 *
 * @param soundName The SoundEvent's name without the testmod3 prefix
 * @return The SoundEvent
 */
public static SoundEvent registerSound(String soundName) {
	final ResourceLocation soundID = new ResourceLocation(ModReference.modid, soundName);
	return GameRegistry.register(new SoundEvent(soundID).setRegistryName(soundID));
}

 

Entity

	@Override
protected SoundEvent getHurtSound() {
	return ModSoundEvents.terrakonHurt;
}

@Override
protected void playStepSound(BlockPos pos, Block blockIn) {
	playSound(SoundEvents.entity_wolf_step, 1.0f, 1.0f);
}

@Override
protected SoundEvent getDeathSound() {
	return ModSoundEvents.terrakonDeath;
}

@Override
protected SoundEvent getAmbientSound() {
	// if(!this.inFinalStage()){
	return isAngry() ? ModSoundEvents.terrakonGrowl : rand.nextInt(3) == 0
			? isTamed() && getHealth() <= Constants.lowHP ? ModSoundEvents.terrakonWhine
			: ModSoundEvents.terrakonPanting : ModSoundEvents.terrakonBark;
	/* }else{ return Sound.; } */
}

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 tried that also, it still doesn't play my sounds

 

Are there any errors in either of the logs? Upload them both to Gist and link them here.

 

Try stepping through

SoundManager#playSound

like I suggested to the OP.

Please don't PM me to ask for help. Asking your question in a public thread preserves it for people who are having the same problem in the future.

Posted

*Facedesk* I just realized (Not sure why it took me forever to notice this -_-) but I didn't have the sounds acutally being registers through the main loading class of my mod.. and after adding that in, the sounds now work! Thanks guys ^^. Also I got another questions: how do I make the sound display in the subtitles?

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

    • You are using create 6.0.6 So one or more create addons are not compatible with it Remove all Create addons and test it again If this works, add the addons one by one If not, add the new crash-report       Add crash-reports with sites like https://mclo.gs/  
    • This is the main problem area, however I've already updated my graphics drivers [09:55:10] [main/WARN]: Mod file C:\Users\raypr\curseforge\minecraft\Install\libraries\net\minecraftforge\fmlcore\1.20.1-47.4.0\fmlcore-1.20.1-47.4.0.jar is missing mods.toml file [09:55:10] [main/WARN]: Mod file C:\Users\raypr\curseforge\minecraft\Install\libraries\net\minecraftforge\javafmllanguage\1.20.1-47.4.0\javafmllanguage-1.20.1-47.4.0.jar is missing mods.toml file [09:55:10] [main/WARN]: Mod file C:\Users\raypr\curseforge\minecraft\Install\libraries\net\minecraftforge\lowcodelanguage\1.20.1-47.4.0\lowcodelanguage-1.20.1-47.4.0.jar is missing mods.toml file [09:55:10] [main/WARN]: Mod file C:\Users\raypr\curseforge\minecraft\Install\libraries\net\minecraftforge\mclanguage\1.20.1-47.4.0\mclanguage-1.20.1-47.4.0.jar is missing mods.toml file
    • [09:55:08] [main/INFO]: ModLauncher running: args [--username, RayPry, --version, forge-47.4.0, --gameDir, C:\Users\raypr\curseforge\minecraft\Instances\BRKN SCPT GNZ, --assetsDir, C:\Users\raypr\curseforge\minecraft\Install\assets, --assetIndex, 5, --uuid, fbb29d2614504f7d9b01434af9f7bb0e, --accessToken, ????????, --clientId, NTdlYmZmNTUtODY2ZC00NGZkLTg2NzEtZTkxMThmNmY1NmM3, --xuid, 2535429034718815, --userType, msa, --versionType, release, --width, 1024, --height, 768, --quickPlayPath, C:\Users\raypr\curseforge\minecraft\Install\quickPlay\java\1758030906375.json, --launchTarget, forgeclient, --fml.forgeVersion, 47.4.0, --fml.mcVersion, 1.20.1, --fml.forgeGroup, net.minecraftforge, --fml.mcpVersion, 20230612.114412] [09:55:08] [main/INFO]: ModLauncher 10.0.9+10.0.9+main.dcd20f30 starting: java version 17.0.15 by Microsoft; OS Windows 11 arch amd64 version 10.0 [09:55:09] [main/INFO]: Loading ImmediateWindowProvider fmlearlywindow [09:55:09] [main/INFO]: Trying GL version 4.6 [09:55:10] [main/INFO]: Requested GL version 4.6 got version 4.6 [09:55:10] [main/INFO]: SpongePowered MIXIN Subsystem Version=0.8.5 Source=union:/C:/Users/raypr/curseforge/minecraft/Install/libraries/org/spongepowered/mixin/0.8.5/mixin-0.8.5.jar%23100!/ Service=ModLauncher Env=CLIENT [09:55:10] [pool-2-thread-1/INFO]: GL info: NVIDIA GeForce RTX 3050 Laptop GPU/PCIe/SSE2 GL version 4.6.0 NVIDIA 581.29, NVIDIA Corporation [09:55:10] [main/INFO]: Found mod file additional_recipes-1.5.0-forge-1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\raypr\curseforge\minecraft\Instances\BRKN SCPT GNZ\mods} [09:55:10] [main/INFO]: Found mod file AE2 Tools Complement 1.20.1-1.0.4.jar of type MOD with provider {mods folder locator at C:\Users\raypr\curseforge\minecraft\Instances\BRKN SCPT GNZ\mods} [09:55:10] [main/INFO]: Found mod file alexscaves-2.0.2.jar of type MOD with provider {mods folder locator at C:\Users\raypr\curseforge\minecraft\Instances\BRKN SCPT GNZ\mods} [09:55:10] [main/INFO]: Found mod file alloyed-1.20.1-c6.0.0-v2.0.jar of type MOD with provider {mods folder locator at C:\Users\raypr\curseforge\minecraft\Instances\BRKN SCPT GNZ\mods} [09:55:10] [main/INFO]: Found mod file Applied-Mekanistics-1.4.2.jar of type MOD with provider {mods folder locator at C:\Users\raypr\curseforge\minecraft\Instances\BRKN SCPT GNZ\mods} [09:55:10] [main/INFO]: Found mod file appliede-0.14.3.jar of type MOD with provider {mods folder locator at C:\Users\raypr\curseforge\minecraft\Instances\BRKN SCPT GNZ\mods} [09:55:10] [main/INFO]: Found mod file appliedenergistics2-forge-15.4.8.jar of type MOD with provider {mods folder locator at C:\Users\raypr\curseforge\minecraft\Instances\BRKN SCPT GNZ\mods} [09:55:10] [main/INFO]: Found mod file AppliedFlux-1.20-1.3.2-forge.jar of type MOD with provider {mods folder locator at C:\Users\raypr\curseforge\minecraft\Instances\BRKN SCPT GNZ\mods} [09:55:10] [main/INFO]: Found mod file appliedschematicannon-1.0.1.jar of type MOD with provider {mods folder locator at C:\Users\raypr\curseforge\minecraft\Instances\BRKN SCPT GNZ\mods} [09:55:10] [main/INFO]: Found mod file appliedsorting-forge-1.20.1-v1.0.0.jar of type MOD with provider {mods folder locator at C:\Users\raypr\curseforge\minecraft\Instances\BRKN SCPT GNZ\mods} [09:55:10] [main/INFO]: Found mod file architectury-9.2.14-forge.jar of type MOD with provider {mods folder locator at C:\Users\raypr\curseforge\minecraft\Instances\BRKN SCPT GNZ\mods} [09:55:10] [main/INFO]: Found mod file badpackets-forge-0.4.3.jar of type MOD with provider {mods folder locator at C:\Users\raypr\curseforge\minecraft\Instances\BRKN SCPT GNZ\mods} [09:55:10] [main/INFO]: Found mod file balm-forge-1.20.1-7.3.35-all.jar of type MOD with provider {mods folder locator at C:\Users\raypr\curseforge\minecraft\Instances\BRKN SCPT GNZ\mods} [09:55:10] [main/INFO]: Found mod file biomancy-forge-1.20.1-2.8.19.0.jar of type MOD with provider {mods folder locator at C:\Users\raypr\curseforge\minecraft\Instances\BRKN SCPT GNZ\mods} [09:55:10] [main/INFO]: Found mod file Botania-1.20.1-450-FORGE.jar of type MOD with provider {mods folder locator at C:\Users\raypr\curseforge\minecraft\Instances\BRKN SCPT GNZ\mods} [09:55:10] [main/INFO]: Found mod file botarium-forge-1.20.1-2.3.4.jar of type MOD with provider {mods folder locator at C:\Users\raypr\curseforge\minecraft\Instances\BRKN SCPT GNZ\mods} [09:55:10] [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\raypr\curseforge\minecraft\Instances\BRKN SCPT GNZ\mods} [09:55:10] [main/INFO]: Found mod file cbabo V1.1 forge.jar of type MOD with provider {mods folder locator at C:\Users\raypr\curseforge\minecraft\Instances\BRKN SCPT GNZ\mods} [09:55:10] [main/INFO]: Found mod file citadel-2.6.2-1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\raypr\curseforge\minecraft\Instances\BRKN SCPT GNZ\mods} [09:55:10] [main/INFO]: Found mod file cloth-config-11.1.136-forge.jar of type MOD with provider {mods folder locator at C:\Users\raypr\curseforge\minecraft\Instances\BRKN SCPT GNZ\mods} [09:55:10] [main/INFO]: Found mod file cofh_core-1.20.1-11.0.2.56.jar of type MOD with provider {mods folder locator at C:\Users\raypr\curseforge\minecraft\Instances\BRKN SCPT GNZ\mods} [09:55:10] [main/INFO]: Found mod file compressed_create_recipes-1.2.4.jar of type MOD with provider {mods folder locator at C:\Users\raypr\curseforge\minecraft\Instances\BRKN SCPT GNZ\mods} [09:55:10] [main/INFO]: Found mod file configuration-forge-1.20.1-3.1.0.jar of type MOD with provider {mods folder locator at C:\Users\raypr\curseforge\minecraft\Instances\BRKN SCPT GNZ\mods} [09:55:10] [main/INFO]: Found mod file copycats-3.0.2+mc.1.20.1-forge.jar of type MOD with provider {mods folder locator at C:\Users\raypr\curseforge\minecraft\Instances\BRKN SCPT GNZ\mods} [09:55:10] [main/INFO]: Found mod file cratestuff-0.1.1.jar of type MOD with provider {mods folder locator at C:\Users\raypr\curseforge\minecraft\Instances\BRKN SCPT GNZ\mods} [09:55:10] [main/INFO]: Found mod file Create Encased-1.20.1-1.7.2-fix1.jar of type MOD with provider {mods folder locator at C:\Users\raypr\curseforge\minecraft\Instances\BRKN SCPT GNZ\mods} [09:55:10] [main/INFO]: Found mod file Create Quality of Life-1.20.1-1.6.0.jar of type MOD with provider {mods folder locator at C:\Users\raypr\curseforge\minecraft\Instances\BRKN SCPT GNZ\mods} [09:55:10] [main/INFO]: Found mod file create-1.20.1-6.0.6.jar of type MOD with provider {mods folder locator at C:\Users\raypr\curseforge\minecraft\Instances\BRKN SCPT GNZ\mods} [09:55:10] [main/INFO]: Found mod file Create-DnDesire-1.20.1-0.1b.Release-Early-Dev.jar of type MOD with provider {mods folder locator at C:\Users\raypr\curseforge\minecraft\Instances\BRKN SCPT GNZ\mods} [09:55:10] [main/INFO]: Found mod file create-metalwork-1.20.1-1.0.11-forge.jar of type MOD with provider {mods folder locator at C:\Users\raypr\curseforge\minecraft\Instances\BRKN SCPT GNZ\mods} [09:55:10] [main/INFO]: Found mod file create-mob-spawners-1.20.1-3.1.0.jar of type MOD with provider {mods folder locator at C:\Users\raypr\curseforge\minecraft\Instances\BRKN SCPT GNZ\mods} [09:55:10] [main/INFO]: Found mod file create-new-age-forge-1.20.1-1.1.4.jar of type MOD with provider {mods folder locator at C:\Users\raypr\curseforge\minecraft\Instances\BRKN SCPT GNZ\mods} [09:55:10] [main/INFO]: Found mod file create-stuff-additions1.20.1_v2.1.0.jar of type MOD with provider {mods folder locator at C:\Users\raypr\curseforge\minecraft\Instances\BRKN SCPT GNZ\mods} [09:55:10] [main/INFO]: Found mod file create_alexscaves_compat-1.5.1.jar of type MOD with provider {mods folder locator at C:\Users\raypr\curseforge\minecraft\Instances\BRKN SCPT GNZ\mods} [09:55:10] [main/INFO]: Found mod file create_cardboarded_conveynience-1.20.1-0.0.3.jar of type MOD with provider {mods folder locator at C:\Users\raypr\curseforge\minecraft\Instances\BRKN SCPT GNZ\mods} [09:55:10] [main/INFO]: Found mod file create_connected-1.1.7-mc1.20.1-all.jar of type MOD with provider {mods folder locator at C:\Users\raypr\curseforge\minecraft\Instances\BRKN SCPT GNZ\mods} [09:55:10] [main/INFO]: Found mod file create_easy_structures-0.2-forge-1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\raypr\curseforge\minecraft\Instances\BRKN SCPT GNZ\mods} [09:55:10] [main/INFO]: Found mod file create_enchantment_industry-1.3.3-for-create-6.0.6.jar of type MOD with provider {mods folder locator at C:\Users\raypr\curseforge\minecraft\Instances\BRKN SCPT GNZ\mods} [09:55:10] [main/INFO]: Found mod file create_factory_logistics-1.20.1-1.4.6.jar of type MOD with provider {mods folder locator at C:\Users\raypr\curseforge\minecraft\Instances\BRKN SCPT GNZ\mods} [09:55:10] [main/INFO]: Found mod file create_jetpack-forge-4.4.2.jar of type MOD with provider {mods folder locator at C:\Users\raypr\curseforge\minecraft\Instances\BRKN SCPT GNZ\mods} [09:55:10] [main/INFO]: Found mod file create_jetpack_curios-1.2.0-forge-1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\raypr\curseforge\minecraft\Instances\BRKN SCPT GNZ\mods} [09:55:10] [main/INFO]: Found mod file create_kart-2.3.0-forge-1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\raypr\curseforge\minecraft\Instances\BRKN SCPT GNZ\mods} [09:55:10] [main/INFO]: Found mod file create_logistics-1.20.1-0.0.1.jar of type MOD with provider {mods folder locator at C:\Users\raypr\curseforge\minecraft\Instances\BRKN SCPT GNZ\mods} [09:55:10] [main/INFO]: Found mod file create_ltab-3.0.0.jar of type MOD with provider {mods folder locator at C:\Users\raypr\curseforge\minecraft\Instances\BRKN SCPT GNZ\mods} [09:55:10] [main/INFO]: Found mod file create_mecanical_extruder-1.20.1-1.6.11-6.0.6.jar of type MOD with provider {mods folder locator at C:\Users\raypr\curseforge\minecraft\Instances\BRKN SCPT GNZ\mods} [09:55:10] [main/INFO]: Found mod file create_mechanical_chicken-1.20.1-1.1.5-6.0.2.jar of type MOD with provider {mods folder locator at C:\Users\raypr\curseforge\minecraft\Instances\BRKN SCPT GNZ\mods} [09:55:10] [main/INFO]: Found mod file create_misc_and_things_ 1.20.1_4.0A.jar of type MOD with provider {mods folder locator at C:\Users\raypr\curseforge\minecraft\Instances\BRKN SCPT GNZ\mods} [09:55:10] [main/INFO]: Found mod file create_mobile_packages-1.20.1-0.5.5.jar of type MOD with provider {mods folder locator at C:\Users\raypr\curseforge\minecraft\Instances\BRKN SCPT GNZ\mods} [09:55:10] [main/INFO]: Found mod file create_netherless-1.20.1-1.3.jar of type MOD with provider {mods folder locator at C:\Users\raypr\curseforge\minecraft\Instances\BRKN SCPT GNZ\mods} [09:55:10] [main/INFO]: Found mod file create_optical-0.3.0.jar of type MOD with provider {mods folder locator at C:\Users\raypr\curseforge\minecraft\Instances\BRKN SCPT GNZ\mods} [09:55:10] [main/INFO]: Found mod file create_oxidized-0.1.2.jar of type MOD with provider {mods folder locator at C:\Users\raypr\curseforge\minecraft\Instances\BRKN SCPT GNZ\mods} [09:55:10] [main/INFO]: Found mod file create_power_loader-2.0.3-mc1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\raypr\curseforge\minecraft\Instances\BRKN SCPT GNZ\mods} [09:55:10] [main/INFO]: Found mod file create_recycle_1.0.2_forge_1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\raypr\curseforge\minecraft\Instances\BRKN SCPT GNZ\mods} [09:55:10] [main/INFO]: Found mod file create_rustic_structures-1.0.0-forge-1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\raypr\curseforge\minecraft\Instances\BRKN SCPT GNZ\mods} [09:55:10] [main/INFO]: Found mod file create_sabers-1.20.1-1.3.0.jar of type MOD with provider {mods folder locator at C:\Users\raypr\curseforge\minecraft\Instances\BRKN SCPT GNZ\mods} [09:55:10] [main/INFO]: Found mod file create_security-0.1.2-forge-1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\raypr\curseforge\minecraft\Instances\BRKN SCPT GNZ\mods} [09:55:10] [main/INFO]: Found mod file create_structures_arise-162.35.34-forge-1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\raypr\curseforge\minecraft\Instances\BRKN SCPT GNZ\mods} [09:55:10] [main/INFO]: Found mod file create_ultimate_factory-2.1.0-forge-1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\raypr\curseforge\minecraft\Instances\BRKN SCPT GNZ\mods} [09:55:10] [main/INFO]: Found mod file create_waystones_recipes-1.0.1.b.jar of type MOD with provider {mods folder locator at C:\Users\raypr\curseforge\minecraft\Instances\BRKN SCPT GNZ\mods} [09:55:10] [main/INFO]: Found mod file create_wt-forge-1.20.1-1.0.7.jar of type MOD with provider {mods folder locator at C:\Users\raypr\curseforge\minecraft\Instances\BRKN SCPT GNZ\mods} [09:55:10] [main/INFO]: Found mod file createaddition-1.20.1-1.3.2.jar of type MOD with provider {mods folder locator at C:\Users\raypr\curseforge\minecraft\Instances\BRKN SCPT GNZ\mods} [09:55:10] [main/INFO]: Found mod file createair-1.0.5.jar of type MOD with provider {mods folder locator at C:\Users\raypr\curseforge\minecraft\Instances\BRKN SCPT GNZ\mods} [09:55:10] [main/INFO]: Found mod file createappliedkinetics-1.5.1-1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\raypr\curseforge\minecraft\Instances\BRKN SCPT GNZ\mods} [09:55:10] [main/INFO]: Found mod file createbb-1.20.1-3.2.1.jar of type MOD with provider {mods folder locator at C:\Users\raypr\curseforge\minecraft\Instances\BRKN SCPT GNZ\mods} [09:55:10] [main/INFO]: Found mod file createchunkloading-1.6.0-forge.jar of type MOD with provider {mods folder locator at C:\Users\raypr\curseforge\minecraft\Instances\BRKN SCPT GNZ\mods} [09:55:10] [main/INFO]: Found mod file createcobblestone-1.4.5+forge-1.20.1-106.jar of type MOD with provider {mods folder locator at C:\Users\raypr\curseforge\minecraft\Instances\BRKN SCPT GNZ\mods} [09:55:10] [main/INFO]: Found mod file createcompounds-1.0.0.jar of type MOD with provider {mods folder locator at C:\Users\raypr\curseforge\minecraft\Instances\BRKN SCPT GNZ\mods} [09:55:10] [main/INFO]: Found mod file createcontraptionterminals-1.20-1.2.0.jar of type MOD with provider {mods folder locator at C:\Users\raypr\curseforge\minecraft\Instances\BRKN SCPT GNZ\mods} [09:55:10] [main/INFO]: Found mod file createdieselgenerators-1.20.1-1.3.5.jar of type MOD with provider {mods folder locator at C:\Users\raypr\curseforge\minecraft\Instances\BRKN SCPT GNZ\mods} [09:55:10] [main/INFO]: Found mod file createenchantablemachinery-3.4.1+mc1.20.1-forge.jar of type MOD with provider {mods folder locator at C:\Users\raypr\curseforge\minecraft\Instances\BRKN SCPT GNZ\mods} [09:55:10] [main/INFO]: Found mod file createenderlink-1.4.0+mc1.20.1-forge.jar of type MOD with provider {mods folder locator at C:\Users\raypr\curseforge\minecraft\Instances\BRKN SCPT GNZ\mods} [09:55:10] [main/INFO]: Found mod file createendertransmission-2.1.0-1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\raypr\curseforge\minecraft\Instances\BRKN SCPT GNZ\mods} [09:55:10] [main/INFO]: Found mod file createfiltersanywhere-1.5.0-1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\raypr\curseforge\minecraft\Instances\BRKN SCPT GNZ\mods} [09:55:10] [main/INFO]: Found mod file createlowheated-forge-1.20.1-6.0.6-4.jar of type MOD with provider {mods folder locator at C:\Users\raypr\curseforge\minecraft\Instances\BRKN SCPT GNZ\mods} [09:55:10] [main/INFO]: Found mod file createmetallurgy-0.0.7-HF-1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\raypr\curseforge\minecraft\Instances\BRKN SCPT GNZ\mods} [09:55:10] [main/INFO]: Found mod file createnewbeg-0.1.0-1.20.1-c6.jar of type MOD with provider {mods folder locator at C:\Users\raypr\curseforge\minecraft\Instances\BRKN SCPT GNZ\mods} [09:55:10] [main/INFO]: Found mod file createnuclear-1.3.0-forge.jar of type MOD with provider {mods folder locator at C:\Users\raypr\curseforge\minecraft\Instances\BRKN SCPT GNZ\mods} [09:55:10] [main/INFO]: Found mod file createoreexcavation-1.20-1.6.4.jar of type MOD with provider {mods folder locator at C:\Users\raypr\curseforge\minecraft\Instances\BRKN SCPT GNZ\mods} [09:55:10] [main/INFO]: Found mod file createrailwaysnavigator-forge-1.20.1-beta-0.8.4-C6.jar of type MOD with provider {mods folder locator at C:\Users\raypr\curseforge\minecraft\Instances\BRKN SCPT GNZ\mods} [09:55:10] [main/INFO]: Found mod file createsifter-1.20.1-1.8.6-6.0.6.jar of type MOD with provider {mods folder locator at C:\Users\raypr\curseforge\minecraft\Instances\BRKN SCPT GNZ\mods} [09:55:10] [main/INFO]: Found mod file createstockbridge-1.20-0.1.5.jar of type MOD with provider {mods folder locator at C:\Users\raypr\curseforge\minecraft\Instances\BRKN SCPT GNZ\mods} [09:55:10] [main/INFO]: Found mod file CreateTankDefenses v0.80.jar of type MOD with provider {mods folder locator at C:\Users\raypr\curseforge\minecraft\Instances\BRKN SCPT GNZ\mods} [09:55:10] [main/INFO]: Found mod file createteleporters2.3-1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\raypr\curseforge\minecraft\Instances\BRKN SCPT GNZ\mods} [09:55:10] [main/INFO]: Found mod file createultimine-1.20.1-forge-1.1.2.jar of type MOD with provider {mods folder locator at C:\Users\raypr\curseforge\minecraft\Instances\BRKN SCPT GNZ\mods} [09:55:10] [main/INFO]: Found mod file createutilities-0.3.2+1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\raypr\curseforge\minecraft\Instances\BRKN SCPT GNZ\mods} [09:55:10] [main/INFO]: Found mod file Crystal-Clear-2.1-Beta-forge.jar of type MOD with provider {mods folder locator at C:\Users\raypr\curseforge\minecraft\Instances\BRKN SCPT GNZ\mods} [09:55:10] [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\raypr\curseforge\minecraft\Instances\BRKN SCPT GNZ\mods} [09:55:10] [main/INFO]: Found mod file delivery_director-1.0.1-all.jar of type MOD with provider {mods folder locator at C:\Users\raypr\curseforge\minecraft\Instances\BRKN SCPT GNZ\mods} [09:55:10] [main/INFO]: Found mod file design_decor-0.4.0b-1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\raypr\curseforge\minecraft\Instances\BRKN SCPT GNZ\mods} [09:55:10] [main/INFO]: Found mod file dynamicvillage-v0.4-1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\raypr\curseforge\minecraft\Instances\BRKN SCPT GNZ\mods} [09:55:10] [main/INFO]: Found mod file easy_applied_energestics_start-8.0-forge-1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\raypr\curseforge\minecraft\Instances\BRKN SCPT GNZ\mods} [09:55:10] [main/INFO]: Found mod file edible_stuff-2.1.0-forge-1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\raypr\curseforge\minecraft\Instances\BRKN SCPT GNZ\mods} [09:55:10] [main/INFO]: Found mod file embeddium-0.3.31+mc1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\raypr\curseforge\minecraft\Instances\BRKN SCPT GNZ\mods} [09:55:10] [main/INFO]: Found mod file extendedgears-2.1.1-1.20.1-0.5.1.f-forge.jar of type MOD with provider {mods folder locator at C:\Users\raypr\curseforge\minecraft\Instances\BRKN SCPT GNZ\mods} [09:55:10] [main/INFO]: Found mod file extra_gauges-1.1.2-all.jar of type MOD with provider {mods folder locator at C:\Users\raypr\curseforge\minecraft\Instances\BRKN SCPT GNZ\mods} [09:55:10] [main/INFO]: Found mod file FarmersDelight-1.20.1-1.2.9.jar of type MOD with provider {mods folder locator at C:\Users\raypr\curseforge\minecraft\Instances\BRKN SCPT GNZ\mods} [09:55:10] [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\raypr\curseforge\minecraft\Instances\BRKN SCPT GNZ\mods} [09:55:10] [main/INFO]: Found mod file ftb-library-forge-2001.2.10.jar of type MOD with provider {mods folder locator at C:\Users\raypr\curseforge\minecraft\Instances\BRKN SCPT GNZ\mods} [09:55:10] [main/INFO]: Found mod file ftb-quests-forge-2001.4.14.jar of type MOD with provider {mods folder locator at C:\Users\raypr\curseforge\minecraft\Instances\BRKN SCPT GNZ\mods} [09:55:10] [main/INFO]: Found mod file ftb-teams-forge-2001.3.1.jar of type MOD with provider {mods folder locator at C:\Users\raypr\curseforge\minecraft\Instances\BRKN SCPT GNZ\mods} [09:55:10] [main/INFO]: Found mod file ftb-ultimine-forge-2001.1.7.jar of type MOD with provider {mods folder locator at C:\Users\raypr\curseforge\minecraft\Instances\BRKN SCPT GNZ\mods} [09:55:10] [main/INFO]: Found mod file fusion-1.2.11a-forge-mc1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\raypr\curseforge\minecraft\Instances\BRKN SCPT GNZ\mods} [09:55:10] [main/INFO]: Found mod file garnished-2.1.2+1.20.1-neoforged.jar of type MOD with provider {mods folder locator at C:\Users\raypr\curseforge\minecraft\Instances\BRKN SCPT GNZ\mods} [09:55:10] [main/INFO]: Found mod file geckolib-forge-1.20.1-4.7.4.jar of type MOD with provider {mods folder locator at C:\Users\raypr\curseforge\minecraft\Instances\BRKN SCPT GNZ\mods} [09:55:10] [main/INFO]: Found mod file Glodium-1.20-1.5-forge.jar of type MOD with provider {mods folder locator at C:\Users\raypr\curseforge\minecraft\Instances\BRKN SCPT GNZ\mods} [09:55:10] [main/INFO]: Found mod file guideme-20.1.12.jar of type MOD with provider {mods folder locator at C:\Users\raypr\curseforge\minecraft\Instances\BRKN SCPT GNZ\mods} [09:55:10] [main/INFO]: Found mod file irons_spellbooks-1.20.1-3.4.0.11.jar of type MOD with provider {mods folder locator at C:\Users\raypr\curseforge\minecraft\Instances\BRKN SCPT GNZ\mods} [09:55:10] [main/INFO]: Found mod file kotlinforforge-4.11.0-all.jar of type LIBRARY with provider {mods folder locator at C:\Users\raypr\curseforge\minecraft\Instances\BRKN SCPT GNZ\mods} [09:55:10] [main/INFO]: Found mod file kubejs-create-forge-2001.3.0-build.8.jar of type MOD with provider {mods folder locator at C:\Users\raypr\curseforge\minecraft\Instances\BRKN SCPT GNZ\mods} [09:55:10] [main/INFO]: Found mod file kubejs-forge-2001.6.5-build.16.jar of type MOD with provider {mods folder locator at C:\Users\raypr\curseforge\minecraft\Instances\BRKN SCPT GNZ\mods} [09:55:10] [main/INFO]: Found mod file mechanical_botany-1.0.5+1.20.1-neoforged.jar of type MOD with provider {mods folder locator at C:\Users\raypr\curseforge\minecraft\Instances\BRKN SCPT GNZ\mods} [09:55:10] [main/INFO]: Found mod file Mekanism-1.20.1-10.4.16.80.jar of type MOD with provider {mods folder locator at C:\Users\raypr\curseforge\minecraft\Instances\BRKN SCPT GNZ\mods} [09:55:10] [main/INFO]: Found mod file molten_metals-1.20.1-0.1.4-forge.jar of type MOD with provider {mods folder locator at C:\Users\raypr\curseforge\minecraft\Instances\BRKN SCPT GNZ\mods} [09:55:10] [main/INFO]: Found mod file molten_vents-1.20.1-2.0.9.jar of type MOD with provider {mods folder locator at C:\Users\raypr\curseforge\minecraft\Instances\BRKN SCPT GNZ\mods} [09:55:10] [main/INFO]: Found mod file moonlight-1.20-2.16.10-forge.jar of type MOD with provider {mods folder locator at C:\Users\raypr\curseforge\minecraft\Instances\BRKN SCPT GNZ\mods} [09:55:10] [main/INFO]: Found mod file nocube's_create_compact_exp_1.0.4_forge_1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\raypr\curseforge\minecraft\Instances\BRKN SCPT GNZ\mods} [09:55:10] [main/INFO]: Found mod file Patchouli-1.20.1-84.1-FORGE.jar of type MOD with provider {mods folder locator at C:\Users\raypr\curseforge\minecraft\Instances\BRKN SCPT GNZ\mods} [09:55:10] [main/INFO]: Found mod file pattern_schematics-1.2.3+forge-1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\raypr\curseforge\minecraft\Instances\BRKN SCPT GNZ\mods} [09:55:10] [main/INFO]: Found mod file petrolpark-1.20.1-1.4.11.jar of type MOD with provider {mods folder locator at C:\Users\raypr\curseforge\minecraft\Instances\BRKN SCPT GNZ\mods} [09:55:10] [main/INFO]: Found mod file petrolsparts-1.20.1-1.2.3-all.jar of type MOD with provider {mods folder locator at C:\Users\raypr\curseforge\minecraft\Instances\BRKN SCPT GNZ\mods} [09:55:10] [main/INFO]: Found mod file player-animation-lib-forge-1.0.2-rc1+1.20.jar of type MOD with provider {mods folder locator at C:\Users\raypr\curseforge\minecraft\Instances\BRKN SCPT GNZ\mods} [09:55:10] [main/INFO]: Found mod file ProjectE-1.20.1-PE1.0.1.jar of type MOD with provider {mods folder locator at C:\Users\raypr\curseforge\minecraft\Instances\BRKN SCPT GNZ\mods} [09:55:10] [main/INFO]: Found mod file PuzzlesLib-v8.1.33-1.20.1-Forge.jar of type MOD with provider {mods folder locator at C:\Users\raypr\curseforge\minecraft\Instances\BRKN SCPT GNZ\mods} [09:55:10] [main/INFO]: Found mod file rechiseled-1.1.6-forge-mc1.20.jar of type MOD with provider {mods folder locator at C:\Users\raypr\curseforge\minecraft\Instances\BRKN SCPT GNZ\mods} [09:55:10] [main/INFO]: Found mod file rechiseledcreate-1.0.2b-forge-mc1.20.jar of type MOD with provider {mods folder locator at C:\Users\raypr\curseforge\minecraft\Instances\BRKN SCPT GNZ\mods} [09:55:10] [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\raypr\curseforge\minecraft\Instances\BRKN SCPT GNZ\mods} [09:55:10] [main/INFO]: Found mod file resourcefullib-forge-1.20.1-2.1.29.jar of type MOD with provider {mods folder locator at C:\Users\raypr\curseforge\minecraft\Instances\BRKN SCPT GNZ\mods} [09:55:10] [main/INFO]: Found mod file rhino-forge-2001.2.3-build.10.jar of type MOD with provider {mods folder locator at C:\Users\raypr\curseforge\minecraft\Instances\BRKN SCPT GNZ\mods} [09:55:10] [main/INFO]: Found mod file ritchiesprojectilelib-2.1.0+mc.1.20.1-forge.jar of type MOD with provider {mods folder locator at C:\Users\raypr\curseforge\minecraft\Instances\BRKN SCPT GNZ\mods} [09:55:10] [main/INFO]: Found mod file sebastrnlib-4.0.0.jar of type MOD with provider {mods folder locator at C:\Users\raypr\curseforge\minecraft\Instances\BRKN SCPT GNZ\mods} [09:55:10] [main/INFO]: Found mod file SmartBrainLib-forge-1.20.1-1.15.jar of type MOD with provider {mods folder locator at C:\Users\raypr\curseforge\minecraft\Instances\BRKN SCPT GNZ\mods} [09:55:10] [main/INFO]: Found mod file smartcrafter-0.2.0.jar of type MOD with provider {mods folder locator at C:\Users\raypr\curseforge\minecraft\Instances\BRKN SCPT GNZ\mods} [09:55:10] [main/INFO]: Found mod file sophisticatedcore-1.20.1-1.2.89.1147.jar of type MOD with provider {mods folder locator at C:\Users\raypr\curseforge\minecraft\Instances\BRKN SCPT GNZ\mods} [09:55:10] [main/INFO]: Found mod file sophisticatedstorage-1.20.1-1.4.4.1286.jar of type MOD with provider {mods folder locator at C:\Users\raypr\curseforge\minecraft\Instances\BRKN SCPT GNZ\mods} [09:55:10] [main/INFO]: Found mod file Steam_Rails-1.6.7+forge-mc1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\raypr\curseforge\minecraft\Instances\BRKN SCPT GNZ\mods} [09:55:10] [main/INFO]: Found mod file steampowered-1.20.1-3.0.2.jar of type MOD with provider {mods folder locator at C:\Users\raypr\curseforge\minecraft\Instances\BRKN SCPT GNZ\mods} [09:55:10] [main/INFO]: Found mod file supermartijn642configlib-1.1.8-forge-mc1.20.jar of type MOD with provider {mods folder locator at C:\Users\raypr\curseforge\minecraft\Instances\BRKN SCPT GNZ\mods} [09:55:10] [main/INFO]: Found mod file supermartijn642corelib-1.1.18-forge-mc1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\raypr\curseforge\minecraft\Instances\BRKN SCPT GNZ\mods} [09:55:10] [main/INFO]: Found mod file ThinAir-v8.1.7-1.20.1-Forge.jar of type MOD with provider {mods folder locator at C:\Users\raypr\curseforge\minecraft\Instances\BRKN SCPT GNZ\mods} [09:55:10] [main/INFO]: Found mod file timeclock-3.0.0-forge-1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\raypr\curseforge\minecraft\Instances\BRKN SCPT GNZ\mods} [09:55:10] [main/INFO]: Found mod file toms_storage-1.20-1.7.1.jar of type MOD with provider {mods folder locator at C:\Users\raypr\curseforge\minecraft\Instances\BRKN SCPT GNZ\mods} [09:55:10] [main/INFO]: Found mod file tools_complement-1.20.1-4.0.0.25.jar of type MOD with provider {mods folder locator at C:\Users\raypr\curseforge\minecraft\Instances\BRKN SCPT GNZ\mods} [09:55:10] [main/INFO]: Found mod file vintageimprovements-1.20.1-0.2.0.3.jar of type MOD with provider {mods folder locator at C:\Users\raypr\curseforge\minecraft\Instances\BRKN SCPT GNZ\mods} [09:55:10] [main/INFO]: Found mod file waystones-forge-1.20.1-14.1.17.jar of type MOD with provider {mods folder locator at C:\Users\raypr\curseforge\minecraft\Instances\BRKN SCPT GNZ\mods} [09:55:10] [main/WARN]: Mod file C:\Users\raypr\curseforge\minecraft\Install\libraries\net\minecraftforge\fmlcore\1.20.1-47.4.0\fmlcore-1.20.1-47.4.0.jar is missing mods.toml file [09:55:10] [main/WARN]: Mod file C:\Users\raypr\curseforge\minecraft\Install\libraries\net\minecraftforge\javafmllanguage\1.20.1-47.4.0\javafmllanguage-1.20.1-47.4.0.jar is missing mods.toml file [09:55:10] [main/WARN]: Mod file C:\Users\raypr\curseforge\minecraft\Install\libraries\net\minecraftforge\lowcodelanguage\1.20.1-47.4.0\lowcodelanguage-1.20.1-47.4.0.jar is missing mods.toml file [09:55:10] [main/WARN]: Mod file C:\Users\raypr\curseforge\minecraft\Install\libraries\net\minecraftforge\mclanguage\1.20.1-47.4.0\mclanguage-1.20.1-47.4.0.jar is missing mods.toml file [09:55:10] [main/INFO]: Found mod file fmlcore-1.20.1-47.4.0.jar of type LIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.MinecraftLocator@344426bf [09:55:10] [main/INFO]: Found mod file javafmllanguage-1.20.1-47.4.0.jar of type LANGPROVIDER with provider net.minecraftforge.fml.loading.moddiscovery.MinecraftLocator@344426bf [09:55:10] [main/INFO]: Found mod file lowcodelanguage-1.20.1-47.4.0.jar of type LANGPROVIDER with provider net.minecraftforge.fml.loading.moddiscovery.MinecraftLocator@344426bf [09:55:10] [main/INFO]: Found mod file mclanguage-1.20.1-47.4.0.jar of type LANGPROVIDER with provider net.minecraftforge.fml.loading.moddiscovery.MinecraftLocator@344426bf [09:55:10] [main/INFO]: Found mod file client-1.20.1-20230612.114412-srg.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.MinecraftLocator@344426bf [09:55:10] [main/INFO]: Found mod file forge-1.20.1-47.4.0-universal.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.MinecraftLocator@344426bf [09:55:11] [main/WARN]: Attempted to select a dependency jar for JarJar which was passed in as source: architectury. Using Mod File: C:\Users\raypr\curseforge\minecraft\Instances\BRKN SCPT GNZ\mods\architectury-9.2.14-forge.jar [09:55:11] [main/INFO]: Found 18 dependencies adding them to mods collection [09:55:11] [main/INFO]: Found mod file dragonlib-forge-1.20.1-2.2.24.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@2b03d52f [09:55:11] [main/INFO]: Found mod file kuma-api-forge-20.1.11+1.20.1.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@2b03d52f [09:55:11] [main/INFO]: Found mod file yabn-1.0.3.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@2b03d52f [09:55:11] [main/INFO]: Found mod file kfflang-4.11.0.jar of type LANGPROVIDER with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@2b03d52f [09:55:11] [main/INFO]: Found mod file Ponder-Forge-1.20.1-1.0.80.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@2b03d52f [09:55:11] [main/INFO]: Found mod file Registrate-MC1.20-1.3.3.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@2b03d52f [09:55:11] [main/INFO]: Found mod file conditional-mixin-forge-0.6.4.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@2b03d52f [09:55:11] [main/INFO]: Found mod file flightlib-forge-2.1.0.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@2b03d52f [09:55:11] [main/INFO]: Found mod file mclib-20.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@2b03d52f [09:55:11] [main/INFO]: Found mod file puzzlesaccessapi-forge-20.1.1.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@2b03d52f [09:55:11] [main/INFO]: Found mod file mixinextras-forge-0.5.0-rc.4.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@2b03d52f [09:55:11] [main/INFO]: Found mod file kfflib-4.11.0.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@2b03d52f [09:55:11] [main/INFO]: Found mod file kffmod-4.11.0.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@2b03d52f [09:55:11] [main/INFO]: Found mod file create_factory_abstractions-1.20.1-1.4.6.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@2b03d52f [09:55:11] [main/INFO]: Found mod file flywheel-forge-1.20.1-1.0.4.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@2b03d52f [09:55:11] [main/INFO]: Found mod file bytecodecs-1.0.2.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@2b03d52f [09:55:11] [main/INFO]: Found mod file h2-mvstore-2.3.232.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@2b03d52f [09:55:11] [main/INFO]: Found mod file MixinExtras-0.5.0-rc.4.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@2b03d52f [09:55:13] [main/INFO]: Compatibility level set to JAVA_17 [09:55:13] [main/INFO]: Launching target 'forgeclient' with arguments [--version, forge-47.4.0, --gameDir, C:\Users\raypr\curseforge\minecraft\Instances\BRKN SCPT GNZ, --assetsDir, C:\Users\raypr\curseforge\minecraft\Install\assets, --uuid, fbb29d2614504f7d9b01434af9f7bb0e, --username, RayPry, --assetIndex, 5, --accessToken, ????????, --clientId, NTdlYmZmNTUtODY2ZC00NGZkLTg2NzEtZTkxMThmNmY1NmM3, --xuid, 2535429034718815, --userType, msa, --versionType, release, --width, 1024, --height, 768, --quickPlayPath, C:\Users\raypr\curseforge\minecraft\Install\quickPlay\java\1758030906375.json] [09:55:13] [main/WARN]: Reference map 'mixins.create_security.refmap.json' for mixins.create_security.json could not be read. If this is a development environment you can ignore this message [09:55:13] [main/INFO]: Loaded configuration file for Embeddium: 199 options available, 0 override(s) found [09:55:13] [main/INFO]: Searching for graphics cards... [09:55:14] [main/INFO]: Found graphics card: GraphicsAdapterInfo[vendor=UNKNOWN, name=Meta Virtual Monitor, version=DriverVersion=17.12.55.198] [09:55:14] [main/INFO]: Found graphics card: GraphicsAdapterInfo[vendor=NVIDIA, name=NVIDIA GeForce RTX 3050 Laptop GPU, version=DriverVersion=32.0.15.8129] [09:55:14] [main/INFO]: Found graphics card: GraphicsAdapterInfo[vendor=INTEL, name=Intel(R) UHD Graphics, version=DriverVersion=31.0.101.4502] [09:55:14] [main/WARN]: Embeddium has applied one or more workarounds to prevent crashes or other issues on your system: [NVIDIA_THREADED_OPTIMIZATIONS] [09:55:14] [main/WARN]: This is not necessarily an issue, but it may result in certain features or optimizations being disabled. You can sometimes fix these issues by upgrading your graphics driver. [09:55:14] [main/WARN]: Reference map 'createcobblestone-common-refmap.json' for createcobblestone-common.mixins.json could not be read. If this is a development environment you can ignore this message [09:55:14] [main/WARN]: Reference map 'tfmg.refmap.json' for design_decor.mixins.json could not be read. If this is a development environment you can ignore this message [09:55:14] [main/WARN]: Reference map 'createappliedkinetics.refmap.json' for createappliedkinetics.mixins.json could not be read. If this is a development environment you can ignore this message [09:55:14] [main/WARN]: Reference map 'puzzlesaccessapi.common.refmap.json' for puzzlesaccessapi.common.mixins.json could not be read. If this is a development environment you can ignore this message [09:55:14] [main/WARN]: Reference map 'molten_metals-common-refmap.json' for molten_metals-common.mixins.json could not be read. If this is a development environment you can ignore this message [09:55:14] [main/WARN]: Reference map 'steampowered.refmap.json' for steampowered.mixins.json could not be read. If this is a development environment you can ignore this message [09:55:14] [main/WARN]: Reference map 'createcompounds.refmap.json' for createcompounds.mixins.json could not be read. If this is a development environment you can ignore this message [09:55:14] [main/WARN]: Reference map 'pattern_schematics-common-refmap.json' for pattern_schematics.common.mixins.json could not be read. If this is a development environment you can ignore this message [09:55:14] [main/INFO]: Loading 154 mods:     - additional_recipes 1.0.0     - ae2 15.4.8     - ae2_tools 1.0.4     - alexscaves 2.0.2     - alloyed 2.0+1.20.1     - appflux 1.20-1.3.2-forge     - appliede 0.14.3     - appliedschematicannon 1.0.1     - appliedsorting 1.0.0     - appmek 1.4.2     - architectury 9.2.14     - badpackets 0.4.3     - balm 7.3.35         \-- kuma_api 20.1.11     - biomancy 2.8.19.0     - botania 1.20.1-450-FORGE     - botarium 2.3.4     - caelus 3.2.0+1.20.1     - citadel 2.6.2     - cloth_config 11.1.136     - cofh_core 11.0.2     - compressed_create_recipes 1.2.4     - configuration 3.1.0     - copycats 3.0.2+mc.1.20.1-forge     - cratestuff 0.1.1     - create 6.0.6         |-- flywheel 1.0.4         \-- ponder 1.0.80     - create_alexscaves_compat 1.5.1     - create_buffers__beams_overhauled 1.0.0     - create_cardboarded_conveynience 0.0.3     - create_connected 1.1.7-mc1.20.1     - create_crush_everything 1.0.2     - create_dd 0.1b.Release-Early-Dev     - create_easy_structures 0.2     - create_enchantment_industry 1.3.3-for-create-6.0.6     - create_factory_logistics 1.4.6         \-- create_factory_abstractions 1.4.6     - create_jetpack 4.4.2         \-- flightlib 2.1.0     - create_jetpack_curios 1.2.0     - create_kart 2.3.0     - create_logistics 1.0.0     - create_ltab 3.0.0     - create_mechanical_chicken 1.20.1-1.1.5-6.0.2     - create_mechanical_extruder 1.20.1-1.6.10-6.0.6     - create_mob_spawners 3.1.0     - create_mobile_packages 0.5.5     - create_netherless 1.3.0     - create_new_age 1.1.4     - create_optical 0.3.0     - create_oxidized 0.1.2     - create_pattern_schematics 1.2.3+forge-1.20.1     - create_power_loader 2.0.3-mc1.20.1     - create_rustic_structures 1.0.0     - create_sa 2.1.0     - create_sabers 1.3.0     - create_security 0.1.2     - create_structures_arise 162.35.34     - create_tank_defenses 0.80     - create_things_and_misc 1.0.0     - create_ultimate_factory 2.1.0     - create_waystones_recipes 1.0.1.b     - create_wt 1.0.7     - createaddition 1.20.1-1.3.2     - createair 1.0.5     - createappliedkinetics 1.5.1-1.20.1     - createbb 3.1.1     - createcasing 1.7.2-fix1     - createchunkloading 1.6.0     - createcobblestone 1.4.5+forge-1.20.1-106     - createcompounds 1.0.0     - createcontraptionterminals 1.2.0     - createdieselgenerators 1.20.1-1.3.5     - createenchantablemachinery 3.4.1     - createenderlink 1.4.0     - createendertransmission 2.1.0-1.20.1     - createfiltersanywhere 1.5.0         \-- conditional_mixin 0.6.4     - createlowheated 1.20.1-6.0.6-4     - createmetallurgy 0.0.7-HF-1.20.1     - createmetalwork 1.20.1-1.0.11-forge     - createnewbeg 0.1.0-1.20.1-c6     - createnuclear 1.3.0     - createoreexcavation 1.6.4     - createqol 1.5.1-fix2     - createrailwaysnavigator 1.20.1-beta-0.8.4-C6         \-- dragonlib 1.20.1-2.2.24     - createsifter 1.20.1-1.8.6-6.0.6     - createstockbridge 0.1.5     - createteleporters 2.2     - createultimine 1.1.2     - createutilities 0.3.2+1.20.1     - crystal_clear 2.1-Beta     - curios 5.14.1+1.20.1     - delivery_director 1.0.1     - design_decor 0.4.0b     - dynamicvillage 0.4     - easy_applied_energestics_start 1.0     - edible_stuff 2.0.0     - embeddium 0.3.31+mc1.20.1         \-- rubidium 0.7.1     - extendedgears 2.1.1-1.20.1-0.5.1.f-forge     - extra_gauges 1.1.2     - farmersdelight 1.20.1-1.2.9     - forge 47.4.0     - framework 0.7.15     - ftblibrary 2001.2.10     - ftbquests 2001.4.14     - ftbteams 2001.3.1     - ftbultimine 2001.1.7     - fusion 1.2.11+a     - garnished 2.1.2     - geckolib 4.7.4     - glodium 1.20-1.5-forge     - guideme 20.1.12     - irons_spellbooks 1.20.1-3.4.0.11     - kotlinforforge 4.11.0     - kubejs 2001.6.5-build.16     - kubejs_create 2001.3.0-build.8     - mechanical_botany 1.0.5     - mekanism 10.4.16     - minecraft 1.20.1     - molten_metals 1.20.1-0.1.4     - molten_vents 2.0.9     - moonlight 1.20-2.16.10     - nocubescreateexp 1.0.4     - patchouli 1.20.1-84.1-FORGE     - petrolpark 1.4.11     - petrolsparts 1.2.3     - playeranimator 1.0.2-rc1+1.20     - projecte 1.0.1     - puzzleslib 8.1.33         \-- puzzlesaccessapi 20.1.1     - railways 1.6.7+forge-mc1.20.1     - rechiseled 1.1.6     - rechiseledcreate 1.0.2+b     - resourcefulconfig 2.1.3     - resourcefullib 2.1.29     - rhino 2001.2.3-build.10     - ritchiesprojectilelib 2.1.0     - sebastrnlib 4.0.0     - smartbrainlib 1.15     - smartcrafter 0.2.0     - sophisticatedcore 1.2.89.1147     - sophisticatedstorage 1.4.4.1286     - steampowered 1.20.1-3.0.2     - supermartijn642configlib 1.1.8     - supermartijn642corelib 1.1.18     - thinair 8.1.7     - timeclock 3.0.0     - toms_storage 1.7.1     - tools_complement 4.0.0     - vintageimprovements 1.20.1-0.2.0.3     - waystones 14.1.17
    • Also make a test without Embeddium/Oculus, Modernfix and immersive_optimization Remove these one by one - start with immersive_optimization If there is no change, add the new crash-report or log
  • Topics

×
×
  • Create New...

Important Information

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