Jump to content

tomatoBhutan

Members
  • Posts

    6
  • Joined

  • Last visited

Converted

  • Gender
    Male

tomatoBhutan's Achievements

Tree Puncher

Tree Puncher (2/8)

0

Reputation

  1. I got rid of the dependency part of the mods.toml file, but it creates a new error upon running which states "mods.toml is missing metadata for modID" so I put the dependency part back. Also, what should I be changing: the modID in mods.toml or the @Mod?
  2. I'm relatively new to Java, not totally new, but new enough. I don't know what i'm doing wrong. upon running client from Eclipse, Minecraft loads with an error message reading ".../bin/main has mods that were not found." I've tried a lot of different things to fix this, including searching this forum for answers, checking stackexchange, changing the name of the mod file, and changing my mod's main class name from my intended name to "ExampleMod" and back again. I was trying to follow Cadiboo's tutorial on modding for 1.15 on GitHub [ https://cadiboo.github.io/tutorials/1.15.1/forge/ ] when I ran into this roadblock. Additionally, I've been checking an ancient Minecraft modding book from the days of 1.9. [So far it's not to different!] This stinks because it's highly discouraging. build.gradle: buildscript { repositories { maven { url = 'https://files.minecraftforge.net/maven' } jcenter() mavenCentral() } dependencies { classpath group: 'net.minecraftforge.gradle', name: 'ForgeGradle', version: '3.+', changing: true } } apply plugin: 'net.minecraftforge.gradle' // Only edit below this line, the above code adds and enables the necessary things for Forge to be setup. apply plugin: 'eclipse' apply plugin: 'maven-publish' version = '1.15.2-0.1.0' group = 'mod.huntermp.minecraft-xl-core' // http://maven.apache.org/guides/mini/guide-naming-conventions.html archivesBaseName = 'minecraft-xl-core' sourceCompatibility = targetCompatibility = compileJava.sourceCompatibility = compileJava.targetCompatibility = '1.8' // Need this here so eclipse task generates correctly. minecraft { // The mappings can be changed at any time, and must be in the following format. // snapshot_YYYYMMDD Snapshot are built nightly. // stable_# Stables are built at the discretion of the MCP team. // Use non-default mappings at your own risk. they may not always work. // Simply re-run your setup task after changing the mappings to update your workspace. mappings channel: 'snapshot', version: '20200514-1.15.1' // makeObfSourceJar = false // an Srg named sources jar is made by default. uncomment this to disable. // accessTransformer = file('src/main/resources/META-INF/accesstransformer.cfg') // Default run configurations. // These can be tweaked, removed, or duplicated as needed. runs { client { workingDirectory project.file('run') // Recommended logging data for a userdev environment property 'forge.logging.markers', 'SCAN,REGISTRIES,REGISTRYDUMP' // Recommended logging level for the console property 'forge.logging.console.level', 'debug' mods { examplemod { source sourceSets.main } } } server { workingDirectory project.file('run') // Recommended logging data for a userdev environment property 'forge.logging.markers', 'SCAN,REGISTRIES,REGISTRYDUMP' // Recommended logging level for the console property 'forge.logging.console.level', 'debug' mods { examplemod { source sourceSets.main } } } data { workingDirectory project.file('run') // Recommended logging data for a userdev environment property 'forge.logging.markers', 'SCAN,REGISTRIES,REGISTRYDUMP' // Recommended logging level for the console property 'forge.logging.console.level', 'debug' args '--mod', 'examplemod', '--all', '--output', file('src/generated/resources/') mods { examplemod { source sourceSets.main } } } } } dependencies { // Specify the version of Minecraft to use, If this is any group other then 'net.minecraft' it is assumed // that the dep is a ForgeGradle 'patcher' dependency. And it's patches will be applied. // The userdev artifact is a special name and will get all sorts of transformations applied to it. minecraft 'net.minecraftforge:forge:1.15.2-31.2.0' // You may put jars on which you depend on in ./libs or you may define them like so.. // compile "some.group:artifact:version:classifier" // compile "some.group:artifact:version" // Real examples // compile 'com.mod-buildcraft:buildcraft:6.0.8:dev' // adds buildcraft to the dev env // compile 'com.googlecode.efficient-java-matrix-library:ejml:0.24' // adds ejml to the dev env // The 'provided' configuration is for optional dependencies that exist at compile-time but might not at runtime. // provided 'com.mod-buildcraft:buildcraft:6.0.8:dev' // These dependencies get remapped to your current MCP mappings // deobf 'com.mod-buildcraft:buildcraft:6.0.8:dev' // For more info... // http://www.gradle.org/docs/current/userguide/artifact_dependencies_tutorial.html // http://www.gradle.org/docs/current/userguide/dependency_management.html } // Example for how to get properties into the manifest for reading by the runtime.. jar { manifest { attributes([ "Specification-Title": "examplemod", "Specification-Vendor": "examplemodsareus", "Specification-Version": "1", // We are version 1 of ourselves "Implementation-Title": project.name, "Implementation-Version": "${version}", "Implementation-Vendor" :"examplemodsareus", "Implementation-Timestamp": new Date().format("yyyy-MM-dd'T'HH:mm:ssZ") ]) } } // Example configuration to allow publishing using the maven-publish task // This is the preferred method to reobfuscate your jar file jar.finalizedBy('reobfJar') // However if you are in a multi-project build, dev time needs unobfed jar files, so you can delay the obfuscation until publishing by doing //publish.dependsOn('reobfJar') publishing { publications { mavenJava(MavenPublication) { artifact jar } } repositories { maven { url "file:///${project.projectDir}/mcmodsrepo" } } } task sourcesJar(type: Jar, dependsOn: classes) { classifier = 'sources' from sourceSets.main.allSource } build.dependsOn sourcesJar artifacts { archives sourcesJar } // Process resources on build processResources { // This will ensure that this task is redone when the versions change. inputs.property 'version', project.version // Replace stuff in mods.toml, nothing else from(sourceSets.main.resources.srcDirs) { include 'META-INF/mods.toml' // Replace version expand 'version':project.version } // Copy everything else except the mods.toml from(sourceSets.main.resources.srcDirs) { exclude 'META-INF/mods.toml' } } mods.toml: # This is an example mods.toml file. It contains the data relating to the loading mods. # There are several mandatory fields (#mandatory), and many more that are optional (#optional). # The overall format is standard TOML format, v0.5.0. # Note that there are a couple of TOML lists in this file. # Find more information on toml format here: https://github.com/toml-lang/toml # The name of the mod loader type to load - for regular FML @Mod mods it should be javafml modLoader="javafml" #mandatory # A version range to match for said mod loader - for regular FML @Mod it will be the forge version loaderVersion="[31,)" #mandatory This is typically bumped every Minecraft version by Forge. See our download page for lists of versions. # A URL to refer people to when problems occur with this mod issueTrackerURL="http://my.issue.tracker/" #optional # A list of mods - how many allowed here is determined by the individual mod loader [[mods]] #mandatory # The modid of the mod modId="minecraft-xl-core" #mandatory # The version number of the mod - there's a few well known ${} variables useable here or just hardcode it version="${version}" #mandatory # A display name for the mod displayName="MinecraftXL Core" #mandatory # A URL to query for updates for this mod. See the JSON update specification <here> updateJSONURL="http://myurl.me/" #optional # A URL for the "homepage" for this mod, displayed in the mod UI displayURL="http://example.com/" #optional # A file name (in the root of the mod JAR) containing a logo for display logoFile="minecraft-xl-core.png" #optional # A text field displayed in the mod UI credits="I would like to thank myself and also Java" #optional # A text field displayed in the mod UI authors="tomatoBhutan" #optional # The description text for the mod (multi line!) (#mandatory) description=''' MinecraftXL Minecraft, my way. ''' # A dependency - use the . to indicate dependency for a specific modid. Dependencies are optional. [[dependencies.examplemod]] #optional # the modid of the dependency modId="forge" #mandatory # Does this dependency have to exist - if not, ordering below must be specified mandatory=true #mandatory # The version range of the dependency versionRange="[31,)" #mandatory # An ordering relationship for the dependency - BEFORE or AFTER required if the relationship is not mandatory ordering="NONE" # Side this dependency is applied on - BOTH, CLIENT or SERVER side="BOTH" # Here's another dependency [[dependencies.examplemod]] modId="minecraft" mandatory=true versionRange="[1.15.2]" ordering="NONE" side="BOTH" mod file: package mod.huntermp.minecraftxlcore; import net.minecraftforge.fml.common.Mod; @Mod(MinecraftXLCore.MODID) public final class MinecraftXLCore { public static final String MODID = "minecraftxlcore"; } On some other threads, some people I understand to be important have told the thread poster to provide FML logs. Upon researching the internet, I don't know how to do that either, so please let me know if possible. All help is appreciated.
  3. i don't have any sounds. i also crashed after clicking mod options, but i just want sound. game log: MultiMC version: 0.6.7-1375 Minecraft folder is: C:/Users/Gary/Desktop/mmc-stable-win32/MultiMC/instances/1.12.2/.minecraft Java path is: C:/Program Files (x86)/Common Files/Oracle/Java/javapath/javaw.exe Java is version 1.8.0_231, using 64-bit architecture. Main Class: net.minecraft.launchwrapper.Launch Native path: C:/Users/Gary/Desktop/mmc-stable-win32/MultiMC/instances/1.12.2/natives Libraries: C:/Users/Gary/Desktop/mmc-stable-win32/MultiMC/libraries/net/java/jinput/jinput/2.0.5/jinput-2.0.5.jar C:/Users/Gary/Desktop/mmc-stable-win32/MultiMC/libraries/net/java/jutils/jutils/1.0.0/jutils-1.0.0.jar C:/Users/Gary/Desktop/mmc-stable-win32/MultiMC/libraries/org/lwjgl/lwjgl/lwjgl/2.9.4-nightly-20150209/lwjgl-2.9.4-nightly-20150209.jar C:/Users/Gary/Desktop/mmc-stable-win32/MultiMC/libraries/org/lwjgl/lwjgl/lwjgl_util/2.9.4-nightly-20150209/lwjgl_util-2.9.4-nightly-20150209.jar C:/Users/Gary/Desktop/mmc-stable-win32/MultiMC/libraries/com/mojang/patchy/1.1/patchy-1.1.jar C:/Users/Gary/Desktop/mmc-stable-win32/MultiMC/libraries/oshi-project/oshi-core/1.1/oshi-core-1.1.jar C:/Users/Gary/Desktop/mmc-stable-win32/MultiMC/libraries/net/java/dev/jna/jna/4.4.0/jna-4.4.0.jar C:/Users/Gary/Desktop/mmc-stable-win32/MultiMC/libraries/net/java/dev/jna/platform/3.4.0/platform-3.4.0.jar C:/Users/Gary/Desktop/mmc-stable-win32/MultiMC/libraries/com/ibm/icu/icu4j-core-mojang/51.2/icu4j-core-mojang-51.2.jar C:/Users/Gary/Desktop/mmc-stable-win32/MultiMC/libraries/net/sf/jopt-simple/jopt-simple/5.0.3/jopt-simple-5.0.3.jar C:/Users/Gary/Desktop/mmc-stable-win32/MultiMC/libraries/com/paulscode/codecjorbis/20101023/codecjorbis-20101023.jar C:/Users/Gary/Desktop/mmc-stable-win32/MultiMC/libraries/com/paulscode/codecwav/20101023/codecwav-20101023.jar C:/Users/Gary/Desktop/mmc-stable-win32/MultiMC/libraries/com/paulscode/libraryjavasound/20101123/libraryjavasound-20101123.jar C:/Users/Gary/Desktop/mmc-stable-win32/MultiMC/libraries/com/paulscode/librarylwjglopenal/20100824/librarylwjglopenal-20100824.jar C:/Users/Gary/Desktop/mmc-stable-win32/MultiMC/libraries/com/paulscode/soundsystem/20120107/soundsystem-20120107.jar C:/Users/Gary/Desktop/mmc-stable-win32/MultiMC/libraries/io/netty/netty-all/4.1.9.Final/netty-all-4.1.9.Final.jar C:/Users/Gary/Desktop/mmc-stable-win32/MultiMC/libraries/com/google/guava/guava/21.0/guava-21.0.jar C:/Users/Gary/Desktop/mmc-stable-win32/MultiMC/libraries/org/apache/commons/commons-lang3/3.5/commons-lang3-3.5.jar C:/Users/Gary/Desktop/mmc-stable-win32/MultiMC/libraries/commons-io/commons-io/2.5/commons-io-2.5.jar C:/Users/Gary/Desktop/mmc-stable-win32/MultiMC/libraries/commons-codec/commons-codec/1.10/commons-codec-1.10.jar C:/Users/Gary/Desktop/mmc-stable-win32/MultiMC/libraries/com/google/code/gson/gson/2.8.0/gson-2.8.0.jar C:/Users/Gary/Desktop/mmc-stable-win32/MultiMC/libraries/com/mojang/authlib/1.5.25/authlib-1.5.25.jar C:/Users/Gary/Desktop/mmc-stable-win32/MultiMC/libraries/com/mojang/realms/1.10.22/realms-1.10.22.jar C:/Users/Gary/Desktop/mmc-stable-win32/MultiMC/libraries/org/apache/commons/commons-compress/1.8.1/commons-compress-1.8.1.jar C:/Users/Gary/Desktop/mmc-stable-win32/MultiMC/libraries/org/apache/httpcomponents/httpclient/4.3.3/httpclient-4.3.3.jar C:/Users/Gary/Desktop/mmc-stable-win32/MultiMC/libraries/commons-logging/commons-logging/1.1.3/commons-logging-1.1.3.jar C:/Users/Gary/Desktop/mmc-stable-win32/MultiMC/libraries/org/apache/httpcomponents/httpcore/4.3.2/httpcore-4.3.2.jar C:/Users/Gary/Desktop/mmc-stable-win32/MultiMC/libraries/it/unimi/dsi/fastutil/7.1.0/fastutil-7.1.0.jar C:/Users/Gary/Desktop/mmc-stable-win32/MultiMC/libraries/org/apache/logging/log4j/log4j-api/2.8.1/log4j-api-2.8.1.jar C:/Users/Gary/Desktop/mmc-stable-win32/MultiMC/libraries/org/apache/logging/log4j/log4j-core/2.8.1/log4j-core-2.8.1.jar C:/Users/Gary/Desktop/mmc-stable-win32/MultiMC/libraries/com/mojang/text2speech/1.10.3/text2speech-1.10.3.jar C:/Users/Gary/Desktop/mmc-stable-win32/MultiMC/libraries/net/minecraftforge/forge/1.12.2-14.23.5.2838/forge-1.12.2-14.23.5.2838-universal.jar C:/Users/Gary/Desktop/mmc-stable-win32/MultiMC/libraries/net/minecraft/launchwrapper/1.12/launchwrapper-1.12.jar C:/Users/Gary/Desktop/mmc-stable-win32/MultiMC/libraries/org/ow2/asm/asm-all/5.2/asm-all-5.2.jar C:/Users/Gary/Desktop/mmc-stable-win32/MultiMC/libraries/org/jline/jline/3.5.1/jline-3.5.1.jar C:/Users/Gary/Desktop/mmc-stable-win32/MultiMC/libraries/com/typesafe/akka/akka-actor_2.11/2.3.3/akka-actor_2.11-2.3.3.jar C:/Users/Gary/Desktop/mmc-stable-win32/MultiMC/libraries/com/typesafe/config/1.2.1/config-1.2.1.jar C:/Users/Gary/Desktop/mmc-stable-win32/MultiMC/libraries/org/scala-lang/scala-actors-migration_2.11/1.1.0/scala-actors-migration_2.11-1.1.0.jar C:/Users/Gary/Desktop/mmc-stable-win32/MultiMC/libraries/org/scala-lang/scala-compiler/2.11.1/scala-compiler-2.11.1.jar C:/Users/Gary/Desktop/mmc-stable-win32/MultiMC/libraries/org/scala-lang/plugins/scala-continuations-library_2.11/1.0.2/scala-continuations-library_2.11-1.0.2.jar C:/Users/Gary/Desktop/mmc-stable-win32/MultiMC/libraries/org/scala-lang/plugins/scala-continuations-plugin_2.11.1/1.0.2/scala-continuations-plugin_2.11.1-1.0.2.jar C:/Users/Gary/Desktop/mmc-stable-win32/MultiMC/libraries/org/scala-lang/scala-library/2.11.1/scala-library-2.11.1.jar C:/Users/Gary/Desktop/mmc-stable-win32/MultiMC/libraries/org/scala-lang/scala-parser-combinators_2.11/1.0.1/scala-parser-combinators_2.11-1.0.1.jar C:/Users/Gary/Desktop/mmc-stable-win32/MultiMC/libraries/org/scala-lang/scala-reflect/2.11.1/scala-reflect-2.11.1.jar C:/Users/Gary/Desktop/mmc-stable-win32/MultiMC/libraries/org/scala-lang/scala-swing_2.11/1.0.1/scala-swing_2.11-1.0.1.jar C:/Users/Gary/Desktop/mmc-stable-win32/MultiMC/libraries/org/scala-lang/scala-xml_2.11/1.0.2/scala-xml_2.11-1.0.2.jar C:/Users/Gary/Desktop/mmc-stable-win32/MultiMC/libraries/lzma/lzma/0.0.1/lzma-0.0.1.jar C:/Users/Gary/Desktop/mmc-stable-win32/MultiMC/libraries/java3d/vecmath/1.5.2/vecmath-1.5.2.jar C:/Users/Gary/Desktop/mmc-stable-win32/MultiMC/libraries/net/sf/trove4j/trove4j/3.0.3/trove4j-3.0.3.jar C:/Users/Gary/Desktop/mmc-stable-win32/MultiMC/libraries/org/apache/maven/maven-artifact/3.5.3/maven-artifact-3.5.3.jar C:/Users/Gary/Desktop/mmc-stable-win32/MultiMC/libraries/com/mojang/minecraft/1.12.2/minecraft-1.12.2-client.jar Native libraries: C:/Users/Gary/Desktop/mmc-stable-win32/MultiMC/libraries/net/java/jinput/jinput-platform/2.0.5/jinput-platform-2.0.5-natives-windows.jar C:/Users/Gary/Desktop/mmc-stable-win32/MultiMC/libraries/org/lwjgl/lwjgl/lwjgl-platform/2.9.4-nightly-20150209/lwjgl-platform-2.9.4-nightly-20150209-natives-windows.jar C:/Users/Gary/Desktop/mmc-stable-win32/MultiMC/libraries/com/mojang/text2speech/1.10.3/text2speech-1.10.3-natives-windows.jar Mods: [✔️] [1.12]bspkrsCore-universal-7.6.0.1 [✔️] [1.12]TreeCapitator-client-1.43.0 [?] 1.12 (folder) [✔️] antiqueatlas-1.12.2-4.6.3 [✔️] AnvilFix-1.12.2-1.0.5 [✔️] betaplus-0.4.1 [✔️] BetterBedrock-1.12.2-5.1.11 [✔️] buildcraft-all-7.99.24.4 [✔️] ClassicCombat-1.0.1 [✔️] CodeChickenLib-1.12.2-3.2.3.358-universal [❌] CoralReef-2.5-1.12.2.jar (disabled) [✔️] CraftableHorseArmour-1.3.0-1.12 [❌] CustomMobSpawner+3.10.1.jar (disabled) [❌] davincisvessels-1.12-6.340-full.jar (disabled) [✔️] diethopper-1.1 [✔️] DrZharks+MoCreatures+Mod-12.0.5 [✔️] EnchantingTable-1.12-1.1.3 [✔️] energyconverters_1.12.2-1.3.6.24 [❌] FastFurnace-1.12.2-1.3.1.jar (disabled) [❌] FastWorkbench-1.12.2-1.7.3.jar (disabled) [❌] Forgelin-1.8.3.jar (disabled) [✔️] ForgeMultipart-1.12.2-2.6.2.83-universal [✔️] furniture-6.3.1-1.12.2 [✔️] IC2Classic+1.12-1.5.4.5 [✔️] InventoryTweaks-1.63 [❌] ironchest-1.12.2-7.0.72.847.jar (disabled) [✔️] jei_1.12.2-4.15.0.291 [✔️] JRFTL[1.12.2]-1.1 [❌] literalascension-1.12.2-2.0.0.0.jar (disabled) [✔️] llibrary-1.7.19-1.12.2 [?] memory_repo (folder) [❌] movingworld-1.12-6.342-full.jar (disabled) [✔️] noRecipeBook_v1.2.2formc1.12.2 [✔️] OptiFine_1.12.2_HD_U_F5 [❌] phosphor-1.12.2-0.2.6+build50-universal.jar (disabled) [❌] Placebo-1.12.2-1.6.0.jar (disabled) [✔️] ProjectE-1.12.2-PE1.4.1 [✔️] RealBench-1.12.2-1.3.3 [✔️] realserene-1.4.3 [✔️] Reforged-0.7.5-1.12+ [❌] SereneSeasons-1.12.2-1.2.18-universal.jar (disabled) [✔️] shb_1.12-1.0 [✔️] SnowRealMagic-0.3.2 [❌] SoundFilters-0.11_for_1.12.jar (disabled) [✔️] stg-1.12.2-1.2.3 [✔️] worleycaves-1.5.1 [✔️] Xaeros_Minimap_1.19.5_Forge_1.12 [✔️] XaerosWorldMap_1.5.3_Forge_1.12 Params: --username --version MultiMC5 --gameDir C:/Users/Gary/Desktop/mmc-stable-win32/MultiMC/instances/1.12.2/.minecraft --assetsDir C:/Users/Gary/Desktop/mmc-stable-win32/MultiMC/assets --assetIndex 1.12 --uuid --accessToken --userType --versionType release --tweakClass net.minecraftforge.fml.common.launcher.FMLTweaker Window size: 854 x 480 Java Arguments: [-XX:HeapDumpPath=MojangTricksIntelDriversForPerformance_javaw.exe_minecraft.exe.heapdump, -Xms1024m, -Xmx4096m, -Duser.language=en] Minecraft process ID: 248 Using onesix launcher. [21:07:21] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLTweaker [21:07:21] [main/INFO] [LaunchWrapper]: Using primary tweak class name net.minecraftforge.fml.common.launcher.FMLTweaker [21:07:21] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLTweaker [21:07:21] [main/INFO] [FML]: Forge Mod Loader version 14.23.5.2838 for Minecraft 1.12.2 loading [21:07:21] [main/INFO] [FML]: Java is Java HotSpot(TM) 64-Bit Server VM, version 1.8.0_231, running on Windows 10:amd64:10.0, installed at C:\Program Files\Java\jre1.8.0_231 [21:07:21] [main/INFO] [FML]: Searching C:\Users\Gary\Desktop\mmc-stable-win32\MultiMC\instances\1.12.2\.minecraft\mods for mods [21:07:21] [main/INFO] [FML]: Searching C:\Users\Gary\Desktop\mmc-stable-win32\MultiMC\instances\1.12.2\.minecraft\mods\1.12.2 for mods [21:07:21] [main/INFO] [FML]: Loading tweaker codechicken.asm.internal.Tweaker from ChickenASM-1.12-1.0.2.7.jar [21:07:21] [main/WARN] [FML]: Found FMLCorePluginContainsFMLMod marker in InventoryTweaks-1.63.jar. This is not recommended, @Mods should be in a separate jar from the coremod. [21:07:21] [main/WARN] [FML]: The coremod invtweaks.forge.asm.FMLPlugin does not have a MCVersion annotation, it may cause issues with this version of Minecraft [21:07:21] [main/INFO] [FML]: Loading tweaker optifine.OptiFineForgeTweaker from OptiFine_1.12.2_HD_U_F5.jar [21:07:21] [main/WARN] [FML]: The coremod RBLoadingPlugin (pw.prok.realbench.asm.RBLoadingPlugin) is not signed! [21:07:21] [main/WARN] [FML]: The coremod Snow! Real Magic! Core Mod (snownee.snow.asm.SnowRealMagicPlugin) is not signed! [21:07:22] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLInjectionAndSortingTweaker [21:07:22] [main/INFO] [LaunchWrapper]: Loading tweak class name codechicken.asm.internal.Tweaker [21:07:22] [main/INFO] [LaunchWrapper]: Loading tweak class name optifine.OptiFineForgeTweaker [21:07:22] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLDeobfTweaker [21:07:22] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLInjectionAndSortingTweaker [21:07:22] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLInjectionAndSortingTweaker [21:07:22] [main/INFO] [LaunchWrapper]: Calling tweak class optifine.OptiFineForgeTweaker [21:07:22] [main/INFO] [STDOUT]: [optifine.OptiFineForgeTweaker:dbg:56]: OptiFineForgeTweaker: acceptOptions [21:07:22] [main/INFO] [STDOUT]: [optifine.OptiFineForgeTweaker:dbg:56]: OptiFineForgeTweaker: injectIntoClassLoader [21:07:22] [main/INFO] [STDOUT]: [optifine.OptiFineClassTransformer:dbg:242]: OptiFine ClassTransformer [21:07:22] [main/INFO] [STDOUT]: [optifine.OptiFineClassTransformer:dbg:242]: OptiFine ZIP file: C:\Users\Gary\Desktop\mmc-stable-win32\MultiMC\instances\1.12.2\.minecraft\mods\OptiFine_1.12.2_HD_U_F5.jar [21:07:22] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper [21:07:23] [main/INFO] [FML]: Found valid fingerprint for Minecraft Forge. Certificate fingerprint e3c3d50c7c986df74c645c0ac54639741c90a557 [21:07:24] [main/INFO] [FML]: Found valid fingerprint for Minecraft. Certificate fingerprint cd99959656f753dc28d863b46769f7f8fbaefcfc [21:07:24] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper [21:07:24] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper [21:07:24] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper [21:07:24] [main/INFO] [LaunchWrapper]: Calling tweak class codechicken.asm.internal.Tweaker [21:07:24] [main/INFO] [STDOUT]: [codechicken.asm.internal.Tweaker:injectIntoClassLoader:30]: false [21:07:24] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLDeobfTweaker [21:07:24] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper [21:07:24] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper [21:07:24] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.TerminalTweaker [21:07:24] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.TerminalTweaker [21:07:24] [main/INFO] [STDOUT]: [optifine.OptiFineForgeTweaker:dbg:56]: OptiFineForgeTweaker: getLaunchArguments [21:07:24] [main/INFO] [LaunchWrapper]: Launching wrapped minecraft {net.minecraft.client.main.Main} [21:07:25] [Client thread/INFO] [minecraft/Minecraft]: Setting user: tomatoBhutan [21:07:27] [Client thread/INFO] [RB-Transformer]: Injecting into apr (net.minecraft.block.BlockWorkbench) [21:07:27] [Client thread/INFO] [RB-Transformer]: - ITileEntityProvider [21:07:27] [Client thread/INFO] [RB-Transformer]: - createNewTileEntity [21:07:27] [Client thread/INFO] [RB-Transformer]: - breakBlock [21:07:27] [Client thread/INFO] [RB-Transformer]: - <clinit> [21:07:27] [Client thread/INFO] [RB-Transformer]: - isOpaqueCube [21:07:27] [Client thread/INFO] [RB-Transformer]: - Done [21:07:27] [Client thread/INFO] [RB-Transformer]: Injecting into pw.prok.realbench.asm.ASMHooks (pw.prok.realbench.asm.ASMHooks) [21:07:27] [Client thread/INFO] [RB-Transformer]: - getTile [21:07:27] [Client thread/INFO] [RB-Transformer]: - Done [21:07:27] [Client thread/WARN] [FML]: Potentially Dangerous alternative prefix `realbench` for name `workbench`, expected `minecraft`. This could be a intended override, but in most cases indicates a broken mod. [21:07:29] [Client thread/INFO] [Config]: [OptiFine] *** Reflector Forge *** [21:07:29] [Client thread/INFO] [Config]: [OptiFine] (Reflector) Class not present: mods.betterfoliage.client.BetterFoliageClient [21:07:30] [Client thread/INFO] [Config]: [OptiFine] *** Reflector Vanilla *** [21:07:31] [Client thread/WARN] [minecraft/GameSettings]: Skipping bad option: lastServer: [21:07:31] [Client thread/INFO] [minecraft/Minecraft]: LWJGL Version: 2.9.4 [21:07:31] [Client thread/INFO] [Config]: [OptiFine] [21:07:31] [Client thread/INFO] [Config]: [OptiFine] OptiFine_1.12.2_HD_U_F5 [21:07:31] [Client thread/INFO] [Config]: [OptiFine] Build: 20191204-141934 [21:07:31] [Client thread/INFO] [Config]: [OptiFine] OS: Windows 10 (amd64) version 10.0 [21:07:31] [Client thread/INFO] [Config]: [OptiFine] Java: 1.8.0_231, Oracle Corporation [21:07:31] [Client thread/INFO] [Config]: [OptiFine] VM: Java HotSpot(TM) 64-Bit Server VM (mixed mode), Oracle Corporation [21:07:31] [Client thread/INFO] [Config]: [OptiFine] LWJGL: 2.9.4 [21:07:31] [Client thread/INFO] [Config]: [OptiFine] OpenGL: Intel(R) HD Graphics 4400, version 4.3.0 - Build 20.19.15.4835, Intel [21:07:31] [Client thread/INFO] [Config]: [OptiFine] OpenGL Version: 4.3.0 [21:07:31] [Client thread/INFO] [Config]: [OptiFine] OpenGL Fancy fog: Not available (GL_NV_fog_distance) [21:07:31] [Client thread/INFO] [Config]: [OptiFine] Maximum texture size: 8192x8192 [21:07:31] [VersionCheck/INFO] [Config]: [OptiFine] Checking for new version [21:07:31] [Client thread/INFO] [net.optifine.shaders.SMCLog]: [Shaders] OpenGL Version: 4.3.0 - Build 20.19.15.4835 [21:07:31] [Client thread/INFO] [net.optifine.shaders.SMCLog]: [Shaders] Vendor: Intel [21:07:31] [Client thread/INFO] [net.optifine.shaders.SMCLog]: [Shaders] Renderer: Intel(R) HD Graphics 4400 [21:07:31] [Client thread/INFO] [net.optifine.shaders.SMCLog]: [Shaders] Capabilities: 2.0 2.1 3.0 3.2 4.0 [21:07:31] [Client thread/INFO] [net.optifine.shaders.SMCLog]: [Shaders] GL_MAX_DRAW_BUFFERS: 8 [21:07:31] [Client thread/INFO] [net.optifine.shaders.SMCLog]: [Shaders] GL_MAX_COLOR_ATTACHMENTS_EXT: 8 [21:07:31] [Client thread/INFO] [net.optifine.shaders.SMCLog]: [Shaders] GL_MAX_TEXTURE_IMAGE_UNITS: 32 [21:07:31] [Client thread/INFO] [net.optifine.shaders.SMCLog]: [Shaders] Load shaders configuration. [21:07:31] [Client thread/INFO] [net.optifine.shaders.SMCLog]: [Shaders] Save shaders configuration. [21:07:31] [Client thread/INFO] [net.optifine.shaders.SMCLog]: [Shaders] No shaderpack loaded. [21:07:31] [Client thread/INFO] [Config]: [OptiFine] [Shaders] Delayed loading of block mappings after resources are loaded [21:07:31] [Client thread/INFO] [Config]: [OptiFine] [Shaders] Delayed loading of item mappings after resources are loaded [21:07:31] [Client thread/INFO] [Config]: [OptiFine] [Shaders] Delayed loading of entity mappings after resources are loaded [21:07:31] [VersionCheck/INFO] [Config]: [OptiFine] Version found: D3 [21:07:32] [Client thread/WARN] [LLibrary Core]: Unable to call Core API! It has not been initialized yet! [21:07:32] [Client thread/INFO] [FML]: Forge Mod Loader has detected optifine OptiFine_1.12.2_HD_U_F5, enabling compatibility features [21:07:32] [Client thread/INFO] [FML]: -- System Details -- Details: Minecraft Version: 1.12.2 Operating System: Windows 10 (amd64) version 10.0 Java Version: 1.8.0_231, Oracle Corporation Java VM Version: Java HotSpot(TM) 64-Bit Server VM (mixed mode), Oracle Corporation Memory: 1187754128 bytes (1132 MB) / 1462239232 bytes (1394 MB) up to 3817865216 bytes (3641 MB) JVM Flags: 3 total; -XX:HeapDumpPath=MojangTricksIntelDriversForPerformance_javaw.exe_minecraft.exe.heapdump -Xms1024m -Xmx4096m IntCache: cache: 0, tcache: 0, allocated: 0, tallocated: 0 FML: Loaded coremods (and transformers): llibrary (llibrary-core-1.0.11-1.12.2.jar) net.ilexiconn.llibrary.server.core.plugin.LLibraryTransformer net.ilexiconn.llibrary.server.core.patcher.LLibraryRuntimePatcher Inventory Tweaks Coremod (InventoryTweaks-1.63.jar) invtweaks.forge.asm.ContainerTransformer RBLoadingPlugin (RealBench-1.12.2-1.3.3.jar) pw.prok.realbench.asm.RBTransformer Snow! Real Magic! Core Mod (SnowRealMagic-0.3.2-coremod.jar) snownee.snow.asm.ASMTransformer GL info: ' Vendor: 'Intel' Version: '4.3.0 - Build 20.19.15.4835' Renderer: 'Intel(R) HD Graphics 4400' [21:07:32] [Client thread/INFO] [FML]: MinecraftForge v14.23.5.2838 Initialized [21:07:32] [Client thread/INFO] [FML]: Starts to replace vanilla recipe ingredients with ore ingredients. [21:07:32] [Client thread/INFO] [FML]: Invalid recipe found with multiple oredict ingredients in the same ingredient... [21:07:32] [Client thread/INFO] [FML]: Replaced 1227 ore ingredients [21:07:32] [Client thread/INFO] [FML]: Searching C:\Users\Gary\Desktop\mmc-stable-win32\MultiMC\instances\1.12.2\.minecraft\mods for mods [21:07:32] [Client thread/INFO] [FML]: Searching C:\Users\Gary\Desktop\mmc-stable-win32\MultiMC\instances\1.12.2\.minecraft\mods\1.12.2 for mods [21:07:34] [Client thread/WARN] [FML]: Mod betaplus is missing the required element 'version' and a version.properties file could not be found. Falling back to metadata version 0.4back [21:07:34] [Client thread/WARN] [FML]: Mod codechickenlib is missing the required element 'version' and a version.properties file could not be found. Falling back to metadata version 3.2.3.358 [21:07:34] [Client thread/WARN] [FML]: Mod microblockcbe is missing the required element 'version' and a version.properties file could not be found. Falling back to metadata version 2.6.2.83 [21:07:34] [Client thread/WARN] [FML]: Mod forgemultipartcbe is missing the required element 'version' and a version.properties file could not be found. Falling back to metadata version 2.6.2.83 [21:07:34] [Client thread/WARN] [FML]: Mod minecraftmultipartcbe is missing the required element 'version' and a version.properties file could not be found. Falling back to metadata version 2.6.2.83 [21:07:35] [Client thread/INFO] [FML]: Forge Mod Loader has identified 47 mods to load [21:07:35] [Thread-3/INFO] [FML]: Using alternative sync timing : 200 frames of Display.update took 2904445600 nanos [21:07:36] [Client thread/INFO] [FML]: Attempting connection with missing mods [minecraft, mcp, FML, forge, bspkrscore, treecapitator, antiqueatlas, antiqueatlasoverlay, anvilfix, betaplus, betterbedrock, buildcraftcompat, buildcraftbuilders, buildcraftcore, buildcraftenergy, buildcraftfactory, buildcraftlib, buildcraftrobotics, buildcraftsilicon, buildcrafttransport, classiccombat, codechickenlib, craftablehorsearmour, diethopper, mocreatures, csb_ench_table, energyconverters, microblockcbe, forgemultipartcbe, minecraftmultipartcbe, cfm, ic2, ic2-classic-spmod, inventorytweaks, jei, jrftl, norecipebook, projecte, realserene, reforged, shb, stg, worleycaves, xaerominimap, xaeroworldmap, llibrary, snowrealmagic] at CLIENT [21:07:36] [Client thread/INFO] [FML]: Attempting connection with missing mods [minecraft, mcp, FML, forge, bspkrscore, treecapitator, antiqueatlas, antiqueatlasoverlay, anvilfix, betaplus, betterbedrock, buildcraftcompat, buildcraftbuilders, buildcraftcore, buildcraftenergy, buildcraftfactory, buildcraftlib, buildcraftrobotics, buildcraftsilicon, buildcrafttransport, classiccombat, codechickenlib, craftablehorsearmour, diethopper, mocreatures, csb_ench_table, energyconverters, microblockcbe, forgemultipartcbe, minecraftmultipartcbe, cfm, ic2, ic2-classic-spmod, inventorytweaks, jei, jrftl, norecipebook, projecte, realserene, reforged, shb, stg, worleycaves, xaerominimap, xaeroworldmap, llibrary, snowrealmagic] at SERVER [21:07:38] [Client thread/INFO] [minecraft/SimpleReloadableResourceManager]: Reloading ResourceManager: Default, FMLFileResourcePack:Forge Mod Loader, FMLFileResourcePack:Minecraft Forge, FMLFileResourcePack:bspkrsCore, FMLFileResourcePack:TreeCapitator, FMLFileResourcePack:Antique Atlas, FMLFileResourcePack:Antique Atlas Overlay, FMLFileResourcePack:AnvilFix, FMLFileResourcePack:Beta+ BACKPORT, FMLFileResourcePack:Better Bedrock, FMLFileResourcePack:BuildCraft Compat, FMLFileResourcePack:BuildCraft Builders, FMLFileResourcePack:BuildCraft, FMLFileResourcePack:BuildCraft Energy, FMLFileResourcePack:BuildCraft Factory, FMLFileResourcePack:BuildCraft Lib, FMLFileResourcePack:BuildCraft Robotics, FMLFileResourcePack:BuildCraft Silicon, FMLFileResourcePack:BuildCraft Transport, FMLFileResourcePack:Classic Combat, FMLFileResourcePack:CodeChicken Lib, FMLFileResourcePack:Craftable Horse Armour [CHA&S], FMLFileResourcePack:Diet Hopper, FMLFileResourcePack:DrZhark's Mo'Creatures Mod, FMLFileResourcePack:Lapis Stays in the Enchanting Table, FMLFileResourcePack:Energy Converters, FMLFileResourcePack:Forge Microblocks, FMLFileResourcePack:Forge Multipart CBE, FMLFileResourcePack:Minecraft Multipart Plugin, FMLFileResourcePack:MrCrayfish's Furniture Mod, FMLFileResourcePack:IndustrialCraft 2 Classic, FMLFileResourcePack:IC2 Classic Detection Helper, FMLFileResourcePack:Inventory Tweaks, FMLFileResourcePack:Just Enough Items, FMLFileResourcePack:Just Another Rotten Flesh to Leather Mod, FMLFileResourcePack:No Recipe Book, FMLFileResourcePack:ProjectE, FMLFileResourcePack:RealSerene, FMLFileResourcePack:Reforged, FMLFileResourcePack:Softer Hay Bales, FMLFileResourcePack:SwingThroughGrass, FMLFileResourcePack:Worley's Caves, FMLFileResourcePack:Xaero's Minimap, FMLFileResourcePack:Xaero's World Map, FMLFileResourcePack:LLibrary, FMLFileResourcePack:Snow! Real Magic! [21:07:39] [Client thread/INFO] [FML]: Processing ObjectHolder annotations [21:07:39] [Client thread/INFO] [FML]: Found 1410 ObjectHolder annotations [21:07:39] [Client thread/INFO] [FML]: Identifying ItemStackHolder annotations [21:07:39] [Client thread/INFO] [FML]: Found 0 ItemStackHolder annotations [21:07:39] [Client thread/INFO] [FML]: Configured a dormant chunk cache size of 0 [21:07:39] [Forge Version Check/INFO] [forge.VersionCheck]: [buildcraftlib] Starting version check at https://mod-buildcraft.com/version/versions.json [21:07:39] [Client thread/INFO] [treecapitator]: Proceeding to load tree/mod configs from file. [21:07:39] [Client thread/INFO] [antiqueatlas]: Loaded texture set TEST with 2 custom texture(s) [21:07:39] [Client thread/INFO] [antiqueatlas]: Registered texture set END_ISLAND for tile "endIsland" [21:07:39] [Client thread/INFO] [antiqueatlas]: Registered texture set END_ISLAND_PLANTS for tile "endIslandPlants" [21:07:39] [Client thread/INFO] [antiqueatlas]: Registered texture set END_VOID for tile "endVoid" [21:07:39] [Client thread/INFO] [antiqueatlas]: Registered texture set LAVA for tile "lava" [21:07:39] [Client thread/INFO] [antiqueatlas]: Registered texture set LAVA_SHORE for tile "lavaShore" [21:07:39] [Client thread/INFO] [antiqueatlas]: Registered texture set NETHER_BRIDGE for tile "netherBridge" [21:07:39] [Client thread/INFO] [antiqueatlas]: Registered texture set NETHER_BRIDGE_END_X for tile "netherBridgeEndX" [21:07:39] [Client thread/INFO] [antiqueatlas]: Registered texture set NETHER_BRIDGE_END_Z for tile "netherBridgeEndZ" [21:07:39] [Client thread/INFO] [antiqueatlas]: Registered texture set NETHER_BRIDGE_GATE for tile "netherBridgeGate" [21:07:39] [Client thread/INFO] [antiqueatlas]: Registered texture set NETHER_BRIDGE_X for tile "netherBridgeX" [21:07:39] [Client thread/INFO] [antiqueatlas]: Registered texture set NETHER_BRIDGE_Z for tile "netherBridgeZ" [21:07:39] [Client thread/INFO] [antiqueatlas]: Registered texture set NETHER_FORT_STAIRS for tile "netherFortStairs" [21:07:39] [Client thread/INFO] [antiqueatlas]: Registered texture set NETHER_HALL for tile "netherHall" [21:07:39] [Client thread/INFO] [antiqueatlas]: Registered texture set NETHER_THRONE for tile "netherThrone" [21:07:39] [Client thread/INFO] [antiqueatlas]: Registered texture set NETHER_TOWER for tile "netherTower" [21:07:39] [Client thread/INFO] [antiqueatlas]: Registered texture set NETHER_WALL for tile "netherWall" [21:07:39] [Client thread/INFO] [antiqueatlas]: Registered texture set BUTCHERS_SHOP for tile "npcVillageButchersShop" [21:07:39] [Client thread/INFO] [antiqueatlas]: Registered texture set CHURCH for tile "npcVillageChurch" [21:07:39] [Client thread/INFO] [antiqueatlas]: Registered texture set FARMLAND_LARGE for tile "npcVillageFarmlandLarge" [21:07:39] [Client thread/INFO] [antiqueatlas]: Registered texture set FARMLAND_SMALL for tile "npcVillageFarmlandSmall" [21:07:39] [Client thread/INFO] [antiqueatlas]: Registered texture set HUT for tile "npcVillageHut" [21:07:39] [Client thread/INFO] [antiqueatlas]: Registered texture set L-HOUSE for tile "npcVillageLHouse" [21:07:39] [Client thread/INFO] [antiqueatlas]: Registered texture set LIBRARY for tile "npcVillageLibrary" [21:07:39] [Client thread/INFO] [antiqueatlas]: Registered texture set HOUSE_SMALL for tile "npcVillageSmallHouse" [21:07:39] [Client thread/INFO] [antiqueatlas]: Registered texture set SMITHY for tile "npcVillageSmithy" [21:07:39] [Client thread/INFO] [antiqueatlas]: Registered texture set VILLAGE_TORCH for tile "npcVillageTorch" [21:07:39] [Client thread/INFO] [antiqueatlas]: Registered texture set WELL for tile "npcVillageWell" [21:07:39] [Client thread/INFO] [antiqueatlas]: Registered texture set RAVINE for tile "ravine" [21:07:39] [Client thread/INFO] [STDOUT]: [com.mrburgerUS.betaplus.forge.WorldTypeBetaPlus:register:16]: Registering Beta+ [21:07:39] [Client thread/INFO] [BuildCraft]: [21:07:39] [Client thread/INFO] [BuildCraft]: Starting BuildCraft 7.99.24.4 [21:07:39] [Client thread/INFO] [BuildCraft]: Copyright (c) the BuildCraft team, 2011-2018 [21:07:39] [Client thread/INFO] [BuildCraft]: https://www.mod-buildcraft.com [21:07:39] [Client thread/INFO] [BuildCraft]: Detailed Build Information: [21:07:39] [Client thread/INFO] [BuildCraft]: Branch HEAD [21:07:39] [Client thread/INFO] [BuildCraft]: Commit aed373feb4eb06cf4b9d0e036b07abdb06bbb20b [21:07:39] [Client thread/INFO] [BuildCraft]: Final tweaks for the 7.99.24.4 release. [21:07:39] [Client thread/INFO] [BuildCraft]: committed by AlexIIL [21:07:39] [Client thread/INFO] [BuildCraft]: [21:07:39] [Client thread/INFO] [BuildCraft]: Loaded Modules: [21:07:39] [Client thread/INFO] [BuildCraft]: - lib [21:07:39] [Client thread/INFO] [BuildCraft]: - core [21:07:39] [Client thread/INFO] [BuildCraft]: - builders [21:07:39] [Client thread/INFO] [BuildCraft]: - energy [21:07:39] [Client thread/INFO] [BuildCraft]: - factory [21:07:39] [Client thread/INFO] [BuildCraft]: - robotics [21:07:39] [Client thread/INFO] [BuildCraft]: - silicon [21:07:39] [Client thread/INFO] [BuildCraft]: - transport [21:07:39] [Client thread/INFO] [BuildCraft]: - compat [21:07:39] [Client thread/INFO] [BuildCraft]: Missing Modules: [21:07:39] [Client thread/INFO] [BuildCraft]: [21:07:40] [Client thread/INFO] [BuildCraft]: [debugger] Not a dev environment! [21:07:40] [Client thread/INFO] [FML]: Configured a dormant chunk cache size of 0 [21:07:40] [Forge Version Check/INFO] [forge.VersionCheck]: [buildcraftlib] Found status: AHEAD Target: null [21:07:40] [Forge Version Check/INFO] [forge.VersionCheck]: [csb_ench_table] Starting version check at https://raw.githubusercontent.com/crazysnailboy/EnchantingTable/master/update.json [21:07:40] [Forge Version Check/INFO] [forge.VersionCheck]: [csb_ench_table] Found status: UP_TO_DATE Target: null [21:07:40] [Forge Version Check/INFO] [forge.VersionCheck]: [forge] Starting version check at http://files.minecraftforge.net/maven/net/minecraftforge/forge/promotions_slim.json [21:07:40] [Forge Version Check/INFO] [forge.VersionCheck]: [forge] Found status: OUTDATED Target: 14.23.5.2847 [21:07:40] [Forge Version Check/INFO] [forge.VersionCheck]: [llibrary] Starting version check at https://gist.githubusercontent.com/gegy1000/a6639456aeb8edd92cbf7cbfcf9d65d9/raw/llibrary_updates.json [21:07:40] [Forge Version Check/INFO] [forge.VersionCheck]: [llibrary] Found status: AHEAD Target: null [21:07:40] [Forge Version Check/INFO] [forge.VersionCheck]: [reforged] Starting version check at https://raw.githubusercontent.com/ThexXTURBOXx/UpdateJSONs/master/reforged.json [21:07:40] [Forge Version Check/INFO] [forge.VersionCheck]: [reforged] Found status: UP_TO_DATE Target: null [21:07:40] [Forge Version Check/INFO] [forge.VersionCheck]: [codechickenlib] Starting version check at http://chickenbones.net/Files/notification/version.php?query=forge&version=1.12&file=CodeChickenLib [21:07:41] [Forge Version Check/INFO] [forge.VersionCheck]: [codechickenlib] Found status: BETA Target: null [21:07:41] [Forge Version Check/INFO] [forge.VersionCheck]: [projecte] Starting version check at https://raw.githubusercontent.com/sinkillerj/ProjectE/mc1.12.x/update.json [21:07:41] [Forge Version Check/INFO] [forge.VersionCheck]: [projecte] Found status: UP_TO_DATE Target: null [21:07:41] [Forge Version Check/INFO] [forge.VersionCheck]: [betterbedrock] Starting version check at https://raw.githubusercontent.com/karjah/BetterBedrockPublic/master/version.json [21:07:41] [Forge Version Check/INFO] [forge.VersionCheck]: [betterbedrock] Found status: OUTDATED Target: 5.1.11 [21:07:41] [Forge Version Check/INFO] [forge.VersionCheck]: [buildcraftcore] Starting version check at https://mod-buildcraft.com/version/versions.json [21:07:41] [Forge Version Check/INFO] [forge.VersionCheck]: [buildcraftcore] Found status: AHEAD Target: null [21:07:41] [Forge Version Check/INFO] [forge.VersionCheck]: [buildcraftcompat] Starting version check at https://mod-buildcraft.com/version/versions-compat.json [21:07:41] [Client thread/INFO] [BuildCraft]: [21:07:41] [Client thread/INFO] [BuildCraft]: Starting BuildCraftCompat 7.99.24.4 [21:07:41] [Client thread/INFO] [BuildCraft]: Copyright (c) the BuildCraft team, 2011-2017 [21:07:41] [Client thread/INFO] [BuildCraft]: https://www.mod-buildcraft.com [21:07:41] [Client thread/INFO] [BuildCraft]: Detailed Build Information: [21:07:41] [Client thread/INFO] [BuildCraft]: Branch 8.0.x-1.12.2 [21:07:41] [Client thread/INFO] [BuildCraft]: Commit 87f35419977088094a3474ee9768d11f798a3a1a [21:07:41] [Client thread/INFO] [BuildCraft]: Bump version for release. [21:07:41] [Client thread/INFO] [BuildCraft]: committed by AlexIIL [21:07:41] [Client thread/INFO] [BuildCraft]: [21:07:41] [Client thread/INFO] [BuildCraft]: [compat] Module list: [21:07:41] [Client thread/INFO] [BuildCraft]: [compat] x forestry (It cannot load) [21:07:41] [Client thread/INFO] [BuildCraft]: [compat] x theoneprobe (It cannot load) [21:07:41] [Client thread/INFO] [BuildCraft]: [compat] x crafttweaker (It cannot load) [21:07:41] [Forge Version Check/INFO] [forge.VersionCheck]: [buildcraftcompat] Found status: AHEAD Target: null [21:07:42] [Client thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `hopper`, expected `diethopper`. This could be a intended override, but in most cases indicates a broken mod. [21:07:42] [Client thread/INFO] [STDERR]: [drzhark.mocreatures.client.renderer.texture.MoCTextures:loadTextures:35]: java.io.FileNotFoundException: C:\Users\Gary\Desktop\mmc-stable-win32\MultiMC\instances\1.12.2\.minecraft\mods\DrZharks MoCreatures Mod-12.0.5.jar (The system cannot find the file specified) [21:07:42] [Client thread/INFO] [STDERR]: [drzhark.mocreatures.client.renderer.texture.MoCTextures:loadTextures:35]: at java.util.zip.ZipFile.open(Native Method) [21:07:42] [Client thread/INFO] [STDERR]: [drzhark.mocreatures.client.renderer.texture.MoCTextures:loadTextures:35]: at java.util.zip.ZipFile.<init>(Unknown Source) [21:07:42] [Client thread/INFO] [STDERR]: [drzhark.mocreatures.client.renderer.texture.MoCTextures:loadTextures:35]: at java.util.zip.ZipFile.<init>(Unknown Source) [21:07:42] [Client thread/INFO] [STDERR]: [drzhark.mocreatures.client.renderer.texture.MoCTextures:loadTextures:35]: at java.util.jar.JarFile.<init>(Unknown Source) [21:07:42] [Client thread/INFO] [STDERR]: [drzhark.mocreatures.client.renderer.texture.MoCTextures:loadTextures:35]: at java.util.jar.JarFile.<init>(Unknown Source) [21:07:42] [Client thread/INFO] [STDERR]: [drzhark.mocreatures.client.renderer.texture.MoCTextures:loadTextures:35]: at drzhark.mocreatures.client.renderer.texture.MoCTextures.getResourceListing(MoCTextures.java:82) [21:07:42] [Client thread/INFO] [STDERR]: [drzhark.mocreatures.client.renderer.texture.MoCTextures:loadTextures:35]: at drzhark.mocreatures.client.renderer.texture.MoCTextures.loadTextures(MoCTextures.java:26) [21:07:42] [Client thread/INFO] [STDERR]: [drzhark.mocreatures.client.renderer.texture.MoCTextures:loadTextures:35]: at drzhark.mocreatures.client.MoCClientProxy.initTextures(MoCClientProxy.java:244) [21:07:42] [Client thread/INFO] [STDERR]: [drzhark.mocreatures.client.renderer.texture.MoCTextures:loadTextures:35]: at drzhark.mocreatures.MoCreatures.preInit(MoCreatures.java:70) [21:07:42] [Client thread/INFO] [STDERR]: [drzhark.mocreatures.client.renderer.texture.MoCTextures:loadTextures:35]: at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) [21:07:42] [Client thread/INFO] [STDERR]: [drzhark.mocreatures.client.renderer.texture.MoCTextures:loadTextures:35]: at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) [21:07:42] [Client thread/INFO] [STDERR]: [drzhark.mocreatures.client.renderer.texture.MoCTextures:loadTextures:35]: at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) [21:07:42] [Client thread/INFO] [STDERR]: [drzhark.mocreatures.client.renderer.texture.MoCTextures:loadTextures:35]: at java.lang.reflect.Method.invoke(Unknown Source) [21:07:42] [Client thread/INFO] [STDERR]: [drzhark.mocreatures.client.renderer.texture.MoCTextures:loadTextures:35]: at net.minecraftforge.fml.common.FMLModContainer.handleModStateEvent(FMLModContainer.java:637) [21:07:42] [Client thread/INFO] [STDERR]: [drzhark.mocreatures.client.renderer.texture.MoCTextures:loadTextures:35]: at sun.reflect.GeneratedMethodAccessor9.invoke(Unknown Source) [21:07:42] [Client thread/INFO] [STDERR]: [drzhark.mocreatures.client.renderer.texture.MoCTextures:loadTextures:35]: at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) [21:07:42] [Client thread/INFO] [STDERR]: [drzhark.mocreatures.client.renderer.texture.MoCTextures:loadTextures:35]: at java.lang.reflect.Method.invoke(Unknown Source) [21:07:42] [Client thread/INFO] [STDERR]: [drzhark.mocreatures.client.renderer.texture.MoCTextures:loadTextures:35]: at com.google.common.eventbus.Subscriber.invokeSubscriberMethod(Subscriber.java:91) [21:07:42] [Client thread/INFO] [STDERR]: [drzhark.mocreatures.client.renderer.texture.MoCTextures:loadTextures:35]: at com.google.common.eventbus.Subscriber$SynchronizedSubscriber.invokeSubscriberMethod(Subscriber.java:150) [21:07:42] [Client thread/INFO] [STDERR]: [drzhark.mocreatures.client.renderer.texture.MoCTextures:loadTextures:35]: at com.google.common.eventbus.Subscriber$1.run(Subscriber.java:76) [21:07:42] [Client thread/INFO] [STDERR]: [drzhark.mocreatures.client.renderer.texture.MoCTextures:loadTextures:35]: at com.google.common.util.concurrent.MoreExecutors$DirectExecutor.execute(MoreExecutors.java:399) [21:07:42] [Client thread/INFO] [STDERR]: [drzhark.mocreatures.client.renderer.texture.MoCTextures:loadTextures:35]: at com.google.common.eventbus.Subscriber.dispatchEvent(Subscriber.java:71) [21:07:42] [Client thread/INFO] [STDERR]: [drzhark.mocreatures.client.renderer.texture.MoCTextures:loadTextures:35]: at com.google.common.eventbus.Dispatcher$PerThreadQueuedDispatcher.dispatch(Dispatcher.java:116) [21:07:42] [Client thread/INFO] [STDERR]: [drzhark.mocreatures.client.renderer.texture.MoCTextures:loadTextures:35]: at com.google.common.eventbus.EventBus.post(EventBus.java:217) [21:07:42] [Client thread/INFO] [STDERR]: [drzhark.mocreatures.client.renderer.texture.MoCTextures:loadTextures:35]: at net.minecraftforge.fml.common.LoadController.sendEventToModContainer(LoadController.java:219) [21:07:42] [Client thread/INFO] [STDERR]: [drzhark.mocreatures.client.renderer.texture.MoCTextures:loadTextures:35]: at net.minecraftforge.fml.common.LoadController.propogateStateMessage(LoadController.java:197) [21:07:42] [Client thread/INFO] [STDERR]: [drzhark.mocreatures.client.renderer.texture.MoCTextures:loadTextures:35]: at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) [21:07:42] [Client thread/INFO] [STDERR]: [drzhark.mocreatures.client.renderer.texture.MoCTextures:loadTextures:35]: at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) [21:07:42] [Client thread/INFO] [STDERR]: [drzhark.mocreatures.client.renderer.texture.MoCTextures:loadTextures:35]: at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) [21:07:42] [Client thread/INFO] [STDERR]: [drzhark.mocreatures.client.renderer.texture.MoCTextures:loadTextures:35]: at java.lang.reflect.Method.invoke(Unknown Source) [21:07:42] [Client thread/INFO] [STDERR]: [drzhark.mocreatures.client.renderer.texture.MoCTextures:loadTextures:35]: at com.google.common.eventbus.Subscriber.invokeSubscriberMethod(Subscriber.java:91) [21:07:42] [Client thread/INFO] [STDERR]: [drzhark.mocreatures.client.renderer.texture.MoCTextures:loadTextures:35]: at com.google.common.eventbus.Subscriber$SynchronizedSubscriber.invokeSubscriberMethod(Subscriber.java:150) [21:07:42] [Client thread/INFO] [STDERR]: [drzhark.mocreatures.client.renderer.texture.MoCTextures:loadTextures:35]: at com.google.common.eventbus.Subscriber$1.run(Subscriber.java:76) [21:07:42] [Client thread/INFO] [STDERR]: [drzhark.mocreatures.client.renderer.texture.MoCTextures:loadTextures:35]: at com.google.common.util.concurrent.MoreExecutors$DirectExecutor.execute(MoreExecutors.java:399) [21:07:42] [Client thread/INFO] [STDERR]: [drzhark.mocreatures.client.renderer.texture.MoCTextures:loadTextures:35]: at com.google.common.eventbus.Subscriber.dispatchEvent(Subscriber.java:71) [21:07:42] [Client thread/INFO] [STDERR]: [drzhark.mocreatures.client.renderer.texture.MoCTextures:loadTextures:35]: at com.google.common.eventbus.Dispatcher$PerThreadQueuedDispatcher.dispatch(Dispatcher.java:116) [21:07:42] [Client thread/INFO] [STDERR]: [drzhark.mocreatures.client.renderer.texture.MoCTextures:loadTextures:35]: at com.google.common.eventbus.EventBus.post(EventBus.java:217) [21:07:42] [Client thread/INFO] [STDERR]: [drzhark.mocreatures.client.renderer.texture.MoCTextures:loadTextures:35]: at net.minecraftforge.fml.common.LoadController.distributeStateMessage(LoadController.java:136) [21:07:42] [Client thread/INFO] [STDERR]: [drzhark.mocreatures.client.renderer.texture.MoCTextures:loadTextures:35]: at net.minecraftforge.fml.common.Loader.preinitializeMods(Loader.java:627) [21:07:42] [Client thread/INFO] [STDERR]: [drzhark.mocreatures.client.renderer.texture.MoCTextures:loadTextures:35]: at net.minecraftforge.fml.client.FMLClientHandler.beginMinecraftLoading(FMLClientHandler.java:252) [21:07:42] [Client thread/INFO] [STDERR]: [drzhark.mocreatures.client.renderer.texture.MoCTextures:loadTextures:35]: at net.minecraft.client.Minecraft.func_71384_a(Minecraft.java:467) [21:07:42] [Client thread/INFO] [STDERR]: [drzhark.mocreatures.client.renderer.texture.MoCTextures:loadTextures:35]: at net.minecraft.client.Minecraft.func_99999_d(Minecraft.java:378) [21:07:42] [Client thread/INFO] [STDERR]: [drzhark.mocreatures.client.renderer.texture.MoCTextures:loadTextures:35]: at net.minecraft.client.main.Main.main(SourceFile:123) [21:07:42] [Client thread/INFO] [STDERR]: [drzhark.mocreatures.client.renderer.texture.MoCTextures:loadTextures:35]: at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) [21:07:42] [Client thread/INFO] [STDERR]: [drzhark.mocreatures.client.renderer.texture.MoCTextures:loadTextures:35]: at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) [21:07:42] [Client thread/INFO] [STDERR]: [drzhark.mocreatures.client.renderer.texture.MoCTextures:loadTextures:35]: at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) [21:07:42] [Client thread/INFO] [STDERR]: [drzhark.mocreatures.client.renderer.texture.MoCTextures:loadTextures:35]: at java.lang.reflect.Method.invoke(Unknown Source) [21:07:42] [Client thread/INFO] [STDERR]: [drzhark.mocreatures.client.renderer.texture.MoCTextures:loadTextures:35]: at net.minecraft.launchwrapper.Launch.launch(Launch.java:135) [21:07:42] [Client thread/INFO] [STDERR]: [drzhark.mocreatures.client.renderer.texture.MoCTextures:loadTextures:35]: at net.minecraft.launchwrapper.Launch.main(Launch.java:28) [21:07:42] [Client thread/INFO] [STDERR]: [drzhark.mocreatures.client.renderer.texture.MoCTextures:loadTextures:35]: at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) [21:07:42] [Client thread/INFO] [STDERR]: [drzhark.mocreatures.client.renderer.texture.MoCTextures:loadTextures:35]: at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) [21:07:42] [Client thread/INFO] [STDERR]: [drzhark.mocreatures.client.renderer.texture.MoCTextures:loadTextures:35]: at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) [21:07:42] [Client thread/INFO] [STDERR]: [drzhark.mocreatures.client.renderer.texture.MoCTextures:loadTextures:35]: at java.lang.reflect.Method.invoke(Unknown Source) [21:07:42] [Client thread/INFO] [STDERR]: [drzhark.mocreatures.client.renderer.texture.MoCTextures:loadTextures:35]: at org.multimc.onesix.OneSixLauncher.launchWithMainClass(OneSixLauncher.java:196) [21:07:42] [Client thread/INFO] [STDERR]: [drzhark.mocreatures.client.renderer.texture.MoCTextures:loadTextures:35]: at org.multimc.onesix.OneSixLauncher.launch(OneSixLauncher.java:231) [21:07:42] [Client thread/INFO] [STDERR]: [drzhark.mocreatures.client.renderer.texture.MoCTextures:loadTextures:35]: at org.multimc.EntryPoint.listen(EntryPoint.java:143) [21:07:42] [Client thread/INFO] [STDERR]: [drzhark.mocreatures.client.renderer.texture.MoCTextures:loadTextures:35]: at org.multimc.EntryPoint.main(EntryPoint.java:34) [21:07:42] [Client thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `tileentityenchantmenttable`, expected `csb_ench_table`. This could be a intended override, but in most cases indicates a broken mod. [21:07:44] [Client thread/WARN] [FML]: Potentially Dangerous alternative prefix `ccmp` for name `saved_multipart`, expected `forgemultipartcbe`. This could be a intended override, but in most cases indicates a broken mod. [21:07:45] [Client thread/INFO] [ic2]: Loading Plugin: [name=Buildcraft Plugin, version=1.0] [21:07:45] [Client thread/INFO] [ic2]: Loading Plugin: [name=The One Probe, version=1.0] [21:07:45] [Client thread/INFO] [ic2]: Loading Plugin: [name=Baubles Plugin, version=1.0] [21:07:45] [Client thread/INFO] [ic2]: Loading Plugin: [name=Teleporter Compat, version=1.0] [21:07:45] [Client thread/INFO] [ic2]: Loading Plugin: [name=Immersiveengineering, version=1.0] [21:07:45] [Client thread/INFO] [ic2]: Loading Plugin: [name=Forestry, version=1.0] [21:07:46] [Client thread/INFO] [ic2]: Loading Plugin: [name=Actually Additions, version=1.0] [21:07:46] [Client thread/INFO] [ic2]: Loading Plugin: [name=JustEnoughItems, version=1.0] [21:07:48] [Client thread/INFO] [STDOUT]: [com.aang23.realserene.RealSerene:preInit:30]: Initializing RealSerene... [21:07:48] [Client thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `caltrop`, expected `reforged`. This could be a intended override, but in most cases indicates a broken mod. [21:07:48] [Client thread/INFO] [LLibrary]: TabulaModelHandler: Domain llibrary has been added. [21:07:48] [Client thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `snow_layer`, expected `snowrealmagic`. This could be a intended override, but in most cases indicates a broken mod. [21:07:48] [Client thread/INFO] [FML]: Applying holder lookups [21:07:48] [Client thread/INFO] [FML]: Holder lookups applied [21:07:48] [Client thread/INFO] [STDOUT]: [drzhark.mocreatures.init.MoCBlocks$RegistrationHandler:registerItemBlocks:105]: registering custom location stone [21:07:48] [Client thread/INFO] [STDOUT]: [drzhark.mocreatures.init.MoCBlocks$RegistrationHandler:registerItemBlocks:105]: registering custom location grass [21:07:48] [Client thread/INFO] [STDOUT]: [drzhark.mocreatures.init.MoCBlocks$RegistrationHandler:registerItemBlocks:105]: registering custom location dirt [21:07:48] [Client thread/INFO] [STDOUT]: [drzhark.mocreatures.init.MoCBlocks$RegistrationHandler:registerItemBlocks:105]: registering custom location leaves [21:07:48] [Client thread/INFO] [STDOUT]: [drzhark.mocreatures.init.MoCBlocks$RegistrationHandler:registerItemBlocks:105]: registering custom location log [21:07:48] [Client thread/INFO] [STDOUT]: [drzhark.mocreatures.init.MoCBlocks$RegistrationHandler:registerItemBlocks:105]: registering custom location tallgrass [21:07:48] [Client thread/INFO] [STDOUT]: [drzhark.mocreatures.init.MoCBlocks$RegistrationHandler:registerItemBlocks:105]: registering custom location woodplank [21:07:49] [Client thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `snow_layer`, expected `snowrealmagic`. This could be a intended override, but in most cases indicates a broken mod. [21:07:49] [Client thread/INFO] [FML]: Applying holder lookups [21:07:49] [Client thread/INFO] [FML]: Holder lookups applied [21:07:49] [Client thread/INFO] [mocreatures]: Registering entities... [21:07:49] [Client thread/INFO] [mocreatures]: Entity registration complete. [21:07:49] [Client thread/INFO] [FML]: Applying holder lookups [21:07:49] [Client thread/INFO] [FML]: Holder lookups applied [21:07:49] [Client thread/INFO] [FML]: Applying holder lookups [21:07:49] [Client thread/INFO] [FML]: Holder lookups applied [21:07:49] [Client thread/INFO] [FML]: Injecting itemstacks [21:07:49] [Client thread/INFO] [FML]: Itemstack injection complete [21:07:49] [Client thread/INFO] [Config]: [OptiFine] *** Reloading textures *** [21:07:49] [Client thread/INFO] [Config]: [OptiFine] Resource packs: Default [21:07:50] [Client thread/WARN] [minecraft/SoundManager]: Missing sound for event: mocreatures:birddying [21:07:50] [Client thread/WARN] [minecraft/SoundManager]: Missing sound for event: mocreatures:birdhurt [21:07:50] [Client thread/WARN] [minecraft/SoundManager]: Missing sound for event: mocreatures:duckdying [21:07:50] [Client thread/WARN] [minecraft/SoundManager]: Missing sound for event: mocreatures:entgrunt [21:07:50] [Client thread/WARN] [minecraft/SoundManager]: Missing sound for event: mocreatures:entdying [21:07:50] [Client thread/WARN] [minecraft/SoundManager]: Missing sound for event: mocreatures:enthurt [21:07:50] [Client thread/WARN] [minecraft/SoundManager]: Missing sound for event: mocreatures:tud [21:07:50] [Client thread/WARN] [minecraft/SoundManager]: Missing sound for event: mocreatures:kittylitter [21:07:50] [Client thread/WARN] [minecraft/SoundManager]: Missing sound for event: mocreatures:turtlegrunt [21:07:50] [Client thread/WARN] [minecraft/SoundManager]: Missing sound for event: mocreatures:turtleeating [21:07:50] [Client thread/WARN] [minecraft/SoundManager]: Missing sound for event: mocreatures:werehumangrunt [21:07:50] [Client thread/WARN] [minecraft/SoundManager]: Missing sound for event: cfm:channel_news [21:07:50] [Client thread/WARN] [minecraft/SoundManager]: Missing sound for event: cfm:channel_cooking [21:07:50] [Client thread/WARN] [minecraft/SoundManager]: Missing sound for event: cfm:channel_sam_tabor [21:07:50] [Client thread/WARN] [minecraft/SoundManager]: Missing sound for event: cfm:channel_heman [21:07:50] [Client thread/WARN] [minecraft/SoundManager]: Missing sound for event: cfm:channel_switch [21:07:50] [Sound Library Loader/INFO] [minecraft/SoundManager]: Starting up SoundSystem... [21:07:50] [Thread-6/INFO] [minecraft/SoundManager]: Initializing LWJGL OpenAL [21:07:50] [Thread-6/INFO] [minecraft/SoundManager]: (The LWJGL binding of OpenAL. For more information, see http://www.lwjgl.org) AL lib: (EE) MMDevApiOpenPlayback: Device init failed: 0x80004005 AL lib: (EE) MMDevApiOpenPlayback: Device init failed: 0x80004005 [21:07:50] [Thread-6/ERROR] [minecraft/SoundManager]: Error in class 'LibraryLWJGLOpenAL' [21:07:50] [Thread-6/ERROR] [minecraft/SoundManager]: Unable to initialize OpenAL. Probable cause: OpenAL not supported. [21:07:50] [Thread-6/WARN] [minecraft/SoundManager]: ERROR MESSAGE: [21:07:50] [Thread-6/INFO] [minecraft/SoundManager]: Could not locate OpenAL library. [21:07:50] [Thread-6/WARN] [minecraft/SoundManager]: STACK TRACE: [21:07:50] [Thread-6/INFO] [minecraft/SoundManager]: org.lwjgl.openal.AL.create(AL.java:156) [21:07:50] [Thread-6/INFO] [minecraft/SoundManager]: org.lwjgl.openal.AL.create(AL.java:102) [21:07:50] [Thread-6/INFO] [minecraft/SoundManager]: org.lwjgl.openal.AL.create(AL.java:206) [21:07:50] [Thread-6/INFO] [minecraft/SoundManager]: paulscode.sound.libraries.LibraryLWJGLOpenAL.init(LibraryLWJGLOpenAL.java:164) [21:07:50] [Thread-6/INFO] [minecraft/SoundManager]: paulscode.sound.SoundSystem.CommandNewLibrary(SoundSystem.java:1576) [21:07:50] [Thread-6/INFO] [minecraft/SoundManager]: paulscode.sound.SoundSystem.CommandQueue(SoundSystem.java:2572) [21:07:50] [Thread-6/INFO] [minecraft/SoundManager]: paulscode.sound.CommandThread.run(CommandThread.java:121) [21:07:50] [Sound Library Loader/WARN] [minecraft/SoundManager]: ERROR MESSAGE: [21:07:50] [Sound Library Loader/INFO] [minecraft/SoundManager]: Could not locate OpenAL library. [21:07:50] [Sound Library Loader/INFO] [minecraft/SoundManager]: Starting up SoundSystem... [21:07:51] [Thread-8/INFO] [minecraft/SoundManager]: Switching to No Sound [21:07:51] [Thread-8/INFO] [minecraft/SoundManager]: (Silent Mode) [21:07:51] [Sound Library Loader/INFO] [minecraft/SoundManager]: Sound engine started [21:07:54] [Client thread/INFO] [Config]: [OptiFine] Mipmap levels: 4 [21:07:54] [Client thread/INFO] [Config]: [OptiFine] Multitexture: false [21:07:54] [Client thread/INFO] [Config]: [OptiFine] ConnectedTextures: mcpatcher/ctm/default/0_glass_white/glass_pane_white.properties [21:07:54] [Client thread/INFO] [Config]: [OptiFine] ConnectedTextures: mcpatcher/ctm/default/0_glass_white/glass_white.properties [21:07:54] [Client thread/INFO] [Config]: [OptiFine] ConnectedTextures: mcpatcher/ctm/default/10_glass_purple/glass_pane_purple.properties [21:07:54] [Client thread/INFO] [Config]: [OptiFine] ConnectedTextures: mcpatcher/ctm/default/10_glass_purple/glass_purple.properties [21:07:54] [Client thread/INFO] [Config]: [OptiFine] ConnectedTextures: mcpatcher/ctm/default/11_glass_blue/glass_blue.properties [21:07:54] [Client thread/INFO] [Config]: [OptiFine] ConnectedTextures: mcpatcher/ctm/default/11_glass_blue/glass_pane_blue.properties [21:07:54] [Client thread/INFO] [Config]: [OptiFine] ConnectedTextures: mcpatcher/ctm/default/12_glass_brown/glass_brown.properties [21:07:54] [Client thread/INFO] [Config]: [OptiFine] ConnectedTextures: mcpatcher/ctm/default/12_glass_brown/glass_pane_brown.properties [21:07:54] [Client thread/INFO] [Config]: [OptiFine] ConnectedTextures: mcpatcher/ctm/default/13_glass_green/glass_green.properties [21:07:54] [Client thread/INFO] [Config]: [OptiFine] ConnectedTextures: mcpatcher/ctm/default/13_glass_green/glass_pane_green.properties [21:07:54] [Client thread/INFO] [Config]: [OptiFine] ConnectedTextures: mcpatcher/ctm/default/14_glass_red/glass_pane_red.properties [21:07:54] [Client thread/INFO] [Config]: [OptiFine] ConnectedTextures: mcpatcher/ctm/default/14_glass_red/glass_red.properties [21:07:54] [Client thread/INFO] [Config]: [OptiFine] ConnectedTextures: mcpatcher/ctm/default/15_glass_black/glass_black.properties [21:07:54] [Client thread/INFO] [Config]: [OptiFine] ConnectedTextures: mcpatcher/ctm/default/15_glass_black/glass_pane_black.properties [21:07:54] [Client thread/INFO] [Config]: [OptiFine] ConnectedTextures: mcpatcher/ctm/default/1_glass_orange/glass_orange.properties [21:07:54] [Client thread/INFO] [Config]: [OptiFine] ConnectedTextures: mcpatcher/ctm/default/1_glass_orange/glass_pane_orange.properties [21:07:54] [Client thread/INFO] [Config]: [OptiFine] ConnectedTextures: mcpatcher/ctm/default/2_glass_magenta/glass_magenta.properties [21:07:54] [Client thread/INFO] [Config]: [OptiFine] ConnectedTextures: mcpatcher/ctm/default/2_glass_magenta/glass_pane_magenta.properties [21:07:54] [Client thread/INFO] [Config]: [OptiFine] ConnectedTextures: mcpatcher/ctm/default/3_glass_light_blue/glass_light_blue.properties [21:07:54] [Client thread/INFO] [Config]: [OptiFine] ConnectedTextures: mcpatcher/ctm/default/3_glass_light_blue/glass_pane_light_blue.properties [21:07:54] [Client thread/INFO] [Config]: [OptiFine] ConnectedTextures: mcpatcher/ctm/default/4_glass_yellow/glass_pane_yellow.properties [21:07:54] [Client thread/INFO] [Config]: [OptiFine] ConnectedTextures: mcpatcher/ctm/default/4_glass_yellow/glass_yellow.properties [21:07:54] [Client thread/INFO] [Config]: [OptiFine] ConnectedTextures: mcpatcher/ctm/default/5_glass_lime/glass_lime.properties [21:07:54] [Client thread/INFO] [Config]: [OptiFine] ConnectedTextures: mcpatcher/ctm/default/5_glass_lime/glass_pane_lime.properties [21:07:54] [Client thread/INFO] [Config]: [OptiFine] ConnectedTextures: mcpatcher/ctm/default/6_glass_pink/glass_pane_pink.properties [21:07:54] [Client thread/INFO] [Config]: [OptiFine] ConnectedTextures: mcpatcher/ctm/default/6_glass_pink/glass_pink.properties [21:07:54] [Client thread/INFO] [Config]: [OptiFine] ConnectedTextures: mcpatcher/ctm/default/7_glass_gray/glass_gray.properties [21:07:54] [Client thread/INFO] [Config]: [OptiFine] ConnectedTextures: mcpatcher/ctm/default/7_glass_gray/glass_pane_gray.properties [21:07:54] [Client thread/INFO] [Config]: [OptiFine] ConnectedTextures: mcpatcher/ctm/default/8_glass_silver/glass_pane_silver.properties [21:07:54] [Client thread/INFO] [Config]: [OptiFine] ConnectedTextures: mcpatcher/ctm/default/8_glass_silver/glass_silver.properties [21:07:54] [Client thread/INFO] [Config]: [OptiFine] ConnectedTextures: mcpatcher/ctm/default/9_glass_cyan/glass_cyan.properties [21:07:54] [Client thread/INFO] [Config]: [OptiFine] ConnectedTextures: mcpatcher/ctm/default/9_glass_cyan/glass_pane_cyan.properties [21:07:54] [Client thread/INFO] [Config]: [OptiFine] ConnectedTextures: mcpatcher/ctm/default/bookshelf.properties [21:07:54] [Client thread/INFO] [Config]: [OptiFine] ConnectedTextures: mcpatcher/ctm/default/glass.properties [21:07:54] [Client thread/INFO] [Config]: [OptiFine] ConnectedTextures: mcpatcher/ctm/default/glasspane.properties [21:07:54] [Client thread/INFO] [Config]: [OptiFine] ConnectedTextures: mcpatcher/ctm/default/sandstone.properties [21:07:54] [Client thread/INFO] [Config]: [OptiFine] Multipass connected textures: false [21:07:54] [Client thread/INFO] [Config]: [OptiFine] BetterGrass: Parsing default configuration optifine/bettergrass.properties [21:07:56] [Client thread/INFO] [Config]: [OptiFine] Custom loader sprites: 2560 [21:07:56] [Client thread/INFO] [Config]: [OptiFine] Sprite dependencies: 5 [21:07:57] [Client thread/INFO] [minecraft/TextureMap]: Created: 2048x1024 textures-atlas [21:07:57] [Client thread/INFO] [Config]: [OptiFine] Animated sprites: 431 [21:07:59] [Client thread/ERROR] [FML]: Exception loading model for variant forgemultipartcbe:multipart_block#normal net.minecraftforge.client.model.ModelLoaderRegistry$LoaderException: Exception loading model forgemultipartcbe:multipart_block#normal with loader VariantLoader.INSTANCE, skipping at net.minecraftforge.client.model.ModelLoaderRegistry.getModel(ModelLoaderRegistry.java:161) ~[ModelLoaderRegistry.class:?] at net.minecraftforge.client.model.ModelLoader.func_177569_a(ModelLoader.java:235) ~[ModelLoader.class:?] at net.minecraft.client.renderer.block.model.ModelBakery.loadBlock(ModelBakery.java:166) ~[cgb.class:?] at net.minecraftforge.client.model.ModelLoader.func_188640_b(ModelLoader.java:223) ~[ModelLoader.class:?] at net.minecraftforge.client.model.ModelLoader.func_177570_a(ModelLoader.java:150) ~[ModelLoader.class:?] at net.minecraft.client.renderer.block.model.ModelManager.func_110549_a(ModelManager.java:28) [cgc.class:?] at net.minecraft.client.resources.SimpleReloadableResourceManager.func_110542_a(SimpleReloadableResourceManager.java:121) [cev.class:?] at net.minecraft.client.Minecraft.func_71384_a(Minecraft.java:513) [bib.class:?] at net.minecraft.client.Minecraft.func_99999_d(Minecraft.java:378) [bib.class:?] at net.minecraft.client.main.Main.main(SourceFile:123) [Main.class:?] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_231] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_231] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_231] at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_231] 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_231] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_231] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_231] at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_231] at org.multimc.onesix.OneSixLauncher.launchWithMainClass(OneSixLauncher.java:196) [NewLaunch.jar:?] at org.multimc.onesix.OneSixLauncher.launch(OneSixLauncher.java:231) [NewLaunch.jar:?] at org.multimc.EntryPoint.listen(EntryPoint.java:143) [NewLaunch.jar:?] at org.multimc.EntryPoint.main(EntryPoint.java:34) [NewLaunch.jar:?] Caused by: net.minecraft.client.renderer.block.model.ModelBlockDefinition$MissingVariantException at net.minecraft.client.renderer.block.model.ModelBlockDefinition.func_188004_c(ModelBlockDefinition.java:83) ~[bvv.class:?] at net.minecraftforge.client.model.ModelLoader$VariantLoader.loadModel(ModelLoader.java:1175) ~[ModelLoader$VariantLoader.class:?] at net.minecraftforge.client.model.ModelLoaderRegistry.getModel(ModelLoaderRegistry.java:157) ~[ModelLoaderRegistry.class:?] ... 23 more [21:07:59] [Client thread/ERROR] [FML]: Exception loading blockstate for the variant forgemultipartcbe:multipart_block#normal: java.lang.Exception: Could not load model definition for variant forgemultipartcbe:multipart_block at net.minecraftforge.client.model.ModelLoader.func_177586_a(ModelLoader.java:269) ~[ModelLoader.class:?] at net.minecraft.client.renderer.block.model.ModelBakery.loadBlock(ModelBakery.java:129) ~[cgb.class:?] at net.minecraftforge.client.model.ModelLoader.func_188640_b(ModelLoader.java:223) ~[ModelLoader.class:?] at net.minecraftforge.client.model.ModelLoader.func_177570_a(ModelLoader.java:150) ~[ModelLoader.class:?] at net.minecraft.client.renderer.block.model.ModelManager.func_110549_a(ModelManager.java:28) [cgc.class:?] at net.minecraft.client.resources.SimpleReloadableResourceManager.func_110542_a(SimpleReloadableResourceManager.java:121) [cev.class:?] at net.minecraft.client.Minecraft.func_71384_a(Minecraft.java:513) [bib.class:?] at net.minecraft.client.Minecraft.func_99999_d(Minecraft.java:378) [bib.class:?] at net.minecraft.client.main.Main.main(SourceFile:123) [Main.class:?] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_231] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_231] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_231] at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_231] 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_231] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_231] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_231] at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_231] at org.multimc.onesix.OneSixLauncher.launchWithMainClass(OneSixLauncher.java:196) [NewLaunch.jar:?] at org.multimc.onesix.OneSixLauncher.launch(OneSixLauncher.java:231) [NewLaunch.jar:?] at org.multimc.EntryPoint.listen(EntryPoint.java:143) [NewLaunch.jar:?] at org.multimc.EntryPoint.main(EntryPoint.java:34) [NewLaunch.jar:?] Caused by: java.lang.RuntimeException: Encountered an exception when loading model definition of model forgemultipartcbe:blockstates/multipart_block.json at net.minecraft.client.renderer.block.model.ModelBakery.func_188632_a(ModelBakery.java:251) ~[cgb.class:?] at net.minecraft.client.renderer.block.model.ModelBakery.func_177586_a(ModelBakery.java:231) ~[cgb.class:?] at net.minecraftforge.client.model.ModelLoader.func_177586_a(ModelLoader.java:265) ~[ModelLoader.class:?] ... 22 more Caused by: java.io.FileNotFoundException: forgemultipartcbe:blockstates/multipart_block.json at net.minecraft.client.resources.SimpleReloadableResourceManager.func_135056_b(SimpleReloadableResourceManager.java:83) ~[cev.class:?] at net.minecraft.client.renderer.block.model.ModelBakery.func_188632_a(ModelBakery.java:244) ~[cgb.class:?] at net.minecraft.client.renderer.block.model.ModelBakery.func_177586_a(ModelBakery.java:231) ~[cgb.class:?] at net.minecraftforge.client.model.ModelLoader.func_177586_a(ModelLoader.java:265) ~[ModelLoader.class:?] ... 22 more [21:08:00] [Client thread/ERROR] [FML]: Parsing error loading recipe energyconverters:energy_producer_eu_3 com.google.gson.JsonSyntaxException: Unknown item 'ic2:cable' at net.xalcon.energyconverters.common.crafting.IngredientFactoryVanillaNBT.parse(IngredientFactoryVanillaNBT.java:32) ~[IngredientFactoryVanillaNBT.class:?] at net.minecraftforge.common.crafting.CraftingHelper.getIngredient(CraftingHelper.java:203) ~[CraftingHelper.class:?] at net.minecraftforge.oredict.ShapedOreRecipe.factory(ShapedOreRecipe.java:210) ~[ShapedOreRecipe.class:?] at net.minecraftforge.common.crafting.CraftingHelper.getRecipe(CraftingHelper.java:415) ~[CraftingHelper.class:?] at net.minecraftforge.common.crafting.CraftingHelper.lambda$loadRecipes$22(CraftingHelper.java:711) ~[CraftingHelper.class:?] at net.minecraftforge.common.crafting.CraftingHelper.findFiles(CraftingHelper.java:821) ~[CraftingHelper.class:?] at net.minecraftforge.common.crafting.CraftingHelper.loadRecipes(CraftingHelper.java:676) ~[CraftingHelper.class:?] at java.util.ArrayList.forEach(Unknown Source) [?:1.8.0_231] at net.minecraftforge.common.crafting.CraftingHelper.loadRecipes(CraftingHelper.java:626) [CraftingHelper.class:?] at net.minecraftforge.fml.common.Loader.initializeMods(Loader.java:742) [Loader.class:?] at net.minecraftforge.fml.client.FMLClientHandler.finishMinecraftLoading(FMLClientHandler.java:336) [FMLClientHandler.class:?] at net.minecraft.client.Minecraft.func_71384_a(Minecraft.java:535) [bib.class:?] at net.minecraft.client.Minecraft.func_99999_d(Minecraft.java:378) [bib.class:?] at net.minecraft.client.main.Main.main(SourceFile:123) [Main.class:?] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_231] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_231] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_231] at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_231] 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_231] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_231] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_231] at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_231] at org.multimc.onesix.OneSixLauncher.launchWithMainClass(OneSixLauncher.java:196) [NewLaunch.jar:?] at org.multimc.onesix.OneSixLauncher.launch(OneSixLauncher.java:231) [NewLaunch.jar:?] at org.multimc.EntryPoint.listen(EntryPoint.java:143) [NewLaunch.jar:?] at org.multimc.EntryPoint.main(EntryPoint.java:34) [NewLaunch.jar:?] [21:08:00] [Client thread/ERROR] [FML]: Parsing error loading recipe energyconverters:energy_producer_eu_0 com.google.gson.JsonSyntaxException: Unknown item 'ic2:cable' at net.xalcon.energyconverters.common.crafting.IngredientFactoryVanillaNBT.parse(IngredientFactoryVanillaNBT.java:32) ~[IngredientFactoryVanillaNBT.class:?] at net.minecraftforge.common.crafting.CraftingHelper.getIngredient(CraftingHelper.java:203) ~[CraftingHelper.class:?] at net.minecraftforge.oredict.ShapedOreRecipe.factory(ShapedOreRecipe.java:210) ~[ShapedOreRecipe.class:?] at net.minecraftforge.common.crafting.CraftingHelper.getRecipe(CraftingHelper.java:415) ~[CraftingHelper.class:?] at net.minecraftforge.common.crafting.CraftingHelper.lambda$loadRecipes$22(CraftingHelper.java:711) ~[CraftingHelper.class:?] at net.minecraftforge.common.crafting.CraftingHelper.findFiles(CraftingHelper.java:821) ~[CraftingHelper.class:?] at net.minecraftforge.common.crafting.CraftingHelper.loadRecipes(CraftingHelper.java:676) ~[CraftingHelper.class:?] at java.util.ArrayList.forEach(Unknown Source) [?:1.8.0_231] at net.minecraftforge.common.crafting.CraftingHelper.loadRecipes(CraftingHelper.java:626) [CraftingHelper.class:?] at net.minecraftforge.fml.common.Loader.initializeMods(Loader.java:742) [Loader.class:?] at net.minecraftforge.fml.client.FMLClientHandler.finishMinecraftLoading(FMLClientHandler.java:336) [FMLClientHandler.class:?] at net.minecraft.client.Minecraft.func_71384_a(Minecraft.java:535) [bib.class:?] at net.minecraft.client.Minecraft.func_99999_d(Minecraft.java:378) [bib.class:?] at net.minecraft.client.main.Main.main(SourceFile:123) [Main.class:?] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_231] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_231] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_231] at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_231] 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_231] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_231] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_231] at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_231] at org.multimc.onesix.OneSixLauncher.launchWithMainClass(OneSixLauncher.java:196) [NewLaunch.jar:?] at org.multimc.onesix.OneSixLauncher.launch(OneSixLauncher.java:231) [NewLaunch.jar:?] at org.multimc.EntryPoint.listen(EntryPoint.java:143) [NewLaunch.jar:?] at org.multimc.EntryPoint.main(EntryPoint.java:34) [NewLaunch.jar:?] [21:08:00] [Client thread/ERROR] [FML]: Parsing error loading recipe energyconverters:energy_producer_eu_2 com.google.gson.JsonSyntaxException: Unknown item 'ic2:cable' at net.xalcon.energyconverters.common.crafting.IngredientFactoryVanillaNBT.parse(IngredientFactoryVanillaNBT.java:32) ~[IngredientFactoryVanillaNBT.class:?] at net.minecraftforge.common.crafting.CraftingHelper.getIngredient(CraftingHelper.java:203) ~[CraftingHelper.class:?] at net.minecraftforge.oredict.ShapedOreRecipe.factory(ShapedOreRecipe.java:210) ~[ShapedOreRecipe.class:?] at net.minecraftforge.common.crafting.CraftingHelper.getRecipe(CraftingHelper.java:415) ~[CraftingHelper.class:?] at net.minecraftforge.common.crafting.CraftingHelper.lambda$loadRecipes$22(CraftingHelper.java:711) ~[CraftingHelper.class:?] at net.minecraftforge.common.crafting.CraftingHelper.findFiles(CraftingHelper.java:821) ~[CraftingHelper.class:?] at net.minecraftforge.common.crafting.CraftingHelper.loadRecipes(CraftingHelper.java:676) ~[CraftingHelper.class:?] at java.util.ArrayList.forEach(Unknown Source) [?:1.8.0_231] at net.minecraftforge.common.crafting.CraftingHelper.loadRecipes(CraftingHelper.java:626) [CraftingHelper.class:?] at net.minecraftforge.fml.common.Loader.initializeMods(Loader.java:742) [Loader.class:?] at net.minecraftforge.fml.client.FMLClientHandler.finishMinecraftLoading(FMLClientHandler.java:336) [FMLClientHandler.class:?] at net.minecraft.client.Minecraft.func_71384_a(Minecraft.java:535) [bib.class:?] at net.minecraft.client.Minecraft.func_99999_d(Minecraft.java:378) [bib.class:?] at net.minecraft.client.main.Main.main(SourceFile:123) [Main.class:?] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_231] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_231] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_231] at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_231] 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_231] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_231] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_231] at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_231] at org.multimc.onesix.OneSixLauncher.launchWithMainClass(OneSixLauncher.java:196) [NewLaunch.jar:?] at org.multimc.onesix.OneSixLauncher.launch(OneSixLauncher.java:231) [NewLaunch.jar:?] at org.multimc.EntryPoint.listen(EntryPoint.java:143) [NewLaunch.jar:?] at org.multimc.EntryPoint.main(EntryPoint.java:34) [NewLaunch.jar:?] [21:08:00] [Client thread/ERROR] [FML]: Parsing error loading recipe energyconverters:energy_producer_eu_4 com.google.gson.JsonSyntaxException: Unknown item 'ic2:cable' at net.xalcon.energyconverters.common.crafting.IngredientFactoryVanillaNBT.parse(IngredientFactoryVanillaNBT.java:32) ~[IngredientFactoryVanillaNBT.class:?] at net.minecraftforge.common.crafting.CraftingHelper.getIngredient(CraftingHelper.java:203) ~[CraftingHelper.class:?] at net.minecraftforge.oredict.ShapedOreRecipe.factory(ShapedOreRecipe.java:210) ~[ShapedOreRecipe.class:?] at net.minecraftforge.common.crafting.CraftingHelper.getRecipe(CraftingHelper.java:415) ~[CraftingHelper.class:?] at net.minecraftforge.common.crafting.CraftingHelper.lambda$loadRecipes$22(CraftingHelper.java:711) ~[CraftingHelper.class:?] at net.minecraftforge.common.crafting.CraftingHelper.findFiles(CraftingHelper.java:821) ~[CraftingHelper.class:?] at net.minecraftforge.common.crafting.CraftingHelper.loadRecipes(CraftingHelper.java:676) ~[CraftingHelper.class:?] at java.util.ArrayList.forEach(Unknown Source) [?:1.8.0_231] at net.minecraftforge.common.crafting.CraftingHelper.loadRecipes(CraftingHelper.java:626) [CraftingHelper.class:?] at net.minecraftforge.fml.common.Loader.initializeMods(Loader.java:742) [Loader.class:?] at net.minecraftforge.fml.client.FMLClientHandler.finishMinecraftLoading(FMLClientHandler.java:336) [FMLClientHandler.class:?] at net.minecraft.client.Minecraft.func_71384_a(Minecraft.java:535) [bib.class:?] at net.minecraft.client.Minecraft.func_99999_d(Minecraft.java:378) [bib.class:?] at net.minecraft.client.main.Main.main(SourceFile:123) [Main.class:?] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_231] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_231] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_231] at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_231] 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_231] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_231] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_231] at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_231] at org.multimc.onesix.OneSixLauncher.launchWithMainClass(OneSixLauncher.java:196) [NewLaunch.jar:?] at org.multimc.onesix.OneSixLauncher.launch(OneSixLauncher.java:231) [NewLaunch.jar:?] at org.multimc.EntryPoint.listen(EntryPoint.java:143) [NewLaunch.jar:?] at org.multimc.EntryPoint.main(EntryPoint.java:34) [NewLaunch.jar:?] [21:08:00] [Client thread/ERROR] [FML]: Parsing error loading recipe energyconverters:energy_producer_eu_1 com.google.gson.JsonSyntaxException: Unknown item 'ic2:cable' at net.xalcon.energyconverters.common.crafting.IngredientFactoryVanillaNBT.parse(IngredientFactoryVanillaNBT.java:32) ~[IngredientFactoryVanillaNBT.class:?] at net.minecraftforge.common.crafting.CraftingHelper.getIngredient(CraftingHelper.java:203) ~[CraftingHelper.class:?] at net.minecraftforge.oredict.ShapedOreRecipe.factory(ShapedOreRecipe.java:210) ~[ShapedOreRecipe.class:?] at net.minecraftforge.common.crafting.CraftingHelper.getRecipe(CraftingHelper.java:415) ~[CraftingHelper.class:?] at net.minecraftforge.common.crafting.CraftingHelper.lambda$loadRecipes$22(CraftingHelper.java:711) ~[CraftingHelper.class:?] at net.minecraftforge.common.crafting.CraftingHelper.findFiles(CraftingHelper.java:821) ~[CraftingHelper.class:?] at net.minecraftforge.common.crafting.CraftingHelper.loadRecipes(CraftingHelper.java:676) ~[CraftingHelper.class:?] at java.util.ArrayList.forEach(Unknown Source) [?:1.8.0_231] at net.minecraftforge.common.crafting.CraftingHelper.loadRecipes(CraftingHelper.java:626) [CraftingHelper.class:?] at net.minecraftforge.fml.common.Loader.initializeMods(Loader.java:742) [Loader.class:?] at net.minecraftforge.fml.client.FMLClientHandler.finishMinecraftLoading(FMLClientHandler.java:336) [FMLClientHandler.class:?] at net.minecraft.client.Minecraft.func_71384_a(Minecraft.java:535) [bib.class:?] at net.minecraft.client.Minecraft.func_99999_d(Minecraft.java:378) [bib.class:?] at net.minecraft.client.main.Main.main(SourceFile:123) [Main.class:?] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_231] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_231] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_231] at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_231] 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_231] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_231] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_231] at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_231] at org.multimc.onesix.OneSixLauncher.launchWithMainClass(OneSixLauncher.java:196) [NewLaunch.jar:?] at org.multimc.onesix.OneSixLauncher.launch(OneSixLauncher.java:231) [NewLaunch.jar:?] at org.multimc.EntryPoint.listen(EntryPoint.java:143) [NewLaunch.jar:?] at org.multimc.EntryPoint.main(EntryPoint.java:34) [NewLaunch.jar:?] [21:08:01] [Client thread/INFO] [FML]: Applying holder lookups [21:08:01] [Client thread/INFO] [FML]: Holder lookups applied [21:08:01] [Client thread/INFO] [bspkrscore]: Initializing ModVersionChecker for mod bspkrscore [21:08:01] [Client thread/WARN] [bspkrscore]: Error retrieving remote string value at URL http://bspk.rs/Minecraft/1.12/bspkrsCore.version! Defaulting to check_error [21:08:01] [Client thread/INFO] [bspkrscore]: Initializing ModVersionChecker for mod TreeCapitator [21:08:01] [Client thread/WARN] [bspkrscore]: Error retrieving remote string value at URL http://bspk.rs/Minecraft/1.12/TreeCapitator.version! Defaulting to check_error [21:08:01] [Client thread/INFO] [antiqueatlas]: Registered texture set DESERT for biome buildcraftenergy:oil_desert [21:08:01] [Client thread/INFO] [antiqueatlas]: Registered texture set WATER for biome buildcraftenergy:oil_ocean [21:08:01] [Client thread/INFO] [antiqueatlas]: Registered texture set SHORE for biome minecraft:beaches [21:08:01] [Client thread/INFO] [antiqueatlas]: Registered texture set BIRCH for biome minecraft:birch_forest [21:08:01] [Client thread/INFO] [antiqueatlas]: Registered texture set BIRCH_HILLS for biome minecraft:birch_forest_hills [21:08:01] [Client thread/INFO] [antiqueatlas]: Registered texture set SHORE for biome minecraft:cold_beach [21:08:01] [Client thread/INFO] [antiqueatlas]: Registered texture set WATER for biome minecraft:deep_ocean [21:08:01] [Client thread/INFO] [antiqueatlas]: Registered texture set DESERT for biome minecraft:desert [21:08:01] [Client thread/INFO] [antiqueatlas]: Registered texture set DESERT_HILLS for biome minecraft:desert_hills [21:08:01] [Client thread/INFO] [antiqueatlas]: Registered texture set MOUNTAINS for biome minecraft:extreme_hills [21:08:01] [Client thread/INFO] [antiqueatlas]: Registered texture set MOUNTAINS_ALL for biome minecraft:extreme_hills_with_trees [21:08:01] [Client thread/INFO] [antiqueatlas]: Registered texture set FOREST for biome minecraft:forest [21:08:01] [Client thread/INFO] [antiqueatlas]: Registered texture set FOREST_HILLS for biome minecraft:forest_hills [21:08:01] [Client thread/INFO] [antiqueatlas]: Registered texture set ICE for biome minecraft:frozen_ocean [21:08:01] [Client thread/INFO] [antiqueatlas]: Registered texture set ICE for biome minecraft:frozen_river [21:08:01] [Client thread/INFO] [antiqueatlas]: Registered texture set CAVE_WALLS for biome minecraft:hell [21:08:01] [Client thread/INFO] [antiqueatlas]: Registered texture set SNOW for biome minecraft:ice_flats [21:08:01] [Client thread/INFO] [antiqueatlas]: Registered texture set SNOW_HILLS for biome minecraft:ice_mountains [21:08:01] [Client thread/INFO] [antiqueatlas]: Registered texture set JUNGLE for biome minecraft:jungle [21:08:01] [Client thread/INFO] [antiqueatlas]: Registered texture set JUNGLE_EDGE for biome minecraft:jungle_edge [21:08:01] [Client thread/INFO] [antiqueatlas]: Registered texture set JUNGLE_HILLS for biome minecraft:jungle_hills [21:08:01] [Client thread/INFO] [antiqueatlas]: Registered texture set MESA for biome minecraft:mesa [21:08:01] [Client thread/INFO] [antiqueatlas]: Registered texture set PLATEAU_MESA for biome minecraft:mesa_clear_rock [21:08:01] [Client thread/INFO] [antiqueatlas]: Registered texture set PLATEAU_MESA_TREES for biome minecraft:mesa_rock [21:08:01] [Client thread/INFO] [antiqueatlas]: Registered texture set MUSHROOM for biome minecraft:mushroom_island [21:08:01] [Client thread/INFO] [antiqueatlas]: Registered texture set SHORE for biome minecraft:mushroom_island_shore [21:08:01] [Client thread/INFO] [antiqueatlas]: Registered texture set TALL_BIRCH for biome minecraft:mutated_birch_forest [21:08:01] [Client thread/INFO] [antiqueatlas]: Registered texture set TALL_BIRCH_HILLS for biome minecraft:mutated_birch_forest_hills [21:08:01] [Client thread/INFO] [antiqueatlas]: Registered texture set DESERT for biome minecraft:mutated_desert [21:08:01] [Client thread/INFO] [antiqueatlas]: Registered texture set MOUNTAINS_SNOW_CAPS for biome minecraft:mutated_extreme_hills [21:08:01] [Client thread/INFO] [antiqueatlas]: Registered texture set MOUNTAINS_SNOW_CAPS for biome minecraft:mutated_extreme_hills_with_trees [21:08:01] [Client thread/INFO] [antiqueatlas]: Registered texture set FOREST_FLOWERS for biome minecraft:mutated_forest [21:08:01] [Client thread/INFO] [antiqueatlas]: Registered texture set ICE_SPIKES for biome minecraft:mutated_ice_flats [21:08:01] [Client thread/INFO] [antiqueatlas]: Registered texture set JUNGLE_CLIFFS for biome minecraft:mutated_jungle [21:08:01] [Client thread/INFO] [antiqueatlas]: Registered texture set JUNGLE_EDGE_HILLS for biome minecraft:mutated_jungle_edge [21:08:01] [Client thread/INFO] [antiqueatlas]: Registered texture set BRYCE for biome minecraft:mutated_mesa [21:08:01] [Client thread/INFO] [antiqueatlas]: Registered texture set PLATEAU_MESA_LOW for biome minecraft:mutated_mesa_clear_rock [21:08:01] [Client thread/INFO] [antiqueatlas]: Registered texture set PLATEAU_MESA_TREES_LOW for biome minecraft:mutated_mesa_rock [21:08:01] [Client thread/INFO] [antiqueatlas]: Registered texture set SUNFLOWERS for biome minecraft:mutated_plains [21:08:01] [Client thread/INFO] [antiqueatlas]: Registered texture set MEGA_SPRUCE for biome minecraft:mutated_redwood_taiga [21:08:01] [Client thread/INFO] [antiqueatlas]: Registered texture set MEGA_SPRUCE_HILLS for biome minecraft:mutated_redwood_taiga_hills [21:08:01] [Client thread/INFO] [antiqueatlas]: Registered texture set DENSE_FOREST_HILLS for biome minecraft:mutated_roofed_forest [21:08:01] [Client thread/INFO] [antiqueatlas]: Registered texture set SAVANNA_CLIFFS for biome minecraft:mutated_savanna [21:08:01] [Client thread/INFO] [antiqueatlas]: Registered texture set PLATEAU_SAVANNA_M for biome minecraft:mutated_savanna_rock [21:08:01] [Client thread/INFO] [antiqueatlas]: Registered texture set SWAMP_HILLS for biome minecraft:mutated_swampland [21:08:01] [Client thread/INFO] [antiqueatlas]: Registered texture set PINES_HILLS for biome minecraft:mutated_taiga [21:08:01] [Client thread/INFO] [antiqueatlas]: Registered texture set SNOW_PINES_HILLS for biome minecraft:mutated_taiga_cold [21:08:01] [Client thread/INFO] [antiqueatlas]: Registered texture set WATER for biome minecraft:ocean [21:08:01] [Client thread/INFO] [antiqueatlas]: Registered texture set PLAINS for biome minecraft:plains [21:08:01] [Client thread/INFO] [antiqueatlas]: Registered texture set MEGA_TAIGA for biome minecraft:redwood_taiga [21:08:01] [Client thread/INFO] [antiqueatlas]: Registered texture set MEGA_TAIGA_HILLS for biome minecraft:redwood_taiga_hills [21:08:01] [Client thread/INFO] [antiqueatlas]: Registered texture set WATER for biome minecraft:river [21:08:01] [Client thread/INFO] [antiqueatlas]: Registered texture set DENSE_FOREST for biome minecraft:roofed_forest [21:08:01] [Client thread/INFO] [antiqueatlas]: Registered texture set SAVANNA for biome minecraft:savanna [21:08:01] [Client thread/INFO] [antiqueatlas]: Registered texture set PLATEAU_SAVANNA for biome minecraft:savanna_rock [21:08:01] [Client thread/INFO] [antiqueatlas]: Registered texture set SHORE for biome minecraft:sky [21:08:01] [Client thread/INFO] [antiqueatlas]: Registered texture set MOUNTAINS for biome minecraft:smaller_extreme_hills [21:08:01] [Client thread/INFO] [antiqueatlas]: Registered texture set ROCK_SHORE for biome minecraft:stone_beach [21:08:01] [Client thread/INFO] [antiqueatlas]: Registered texture set SWAMP for biome minecraft:swampland [21:08:01] [Client thread/INFO] [antiqueatlas]: Registered texture set PINES for biome minecraft:taiga [21:08:01] [Client thread/INFO] [antiqueatlas]: Registered texture set SNOW_PINES for biome minecraft:taiga_cold [21:08:01] [Client thread/INFO] [antiqueatlas]: Registered texture set SNOW_PINES_HILLS for biome minecraft:taiga_cold_hills [21:08:01] [Client thread/INFO] [antiqueatlas]: Registered texture set PINES_HILLS for biome minecraft:taiga_hills [21:08:01] [Client thread/INFO] [antiqueatlas]: Registered texture set END_VOID for biome minecraft:void [21:08:01] [Client thread/INFO] [antiqueatlas]: Registered texture set FOREST for biome mocreatures:wyvernbiome [21:08:01] [Client thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `cfmoven`, expected `cfm`. This could be a intended override, but in most cases indicates a broken mod. [21:08:01] [Client thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `cfmfridge`, expected `cfm`. This could be a intended override, but in most cases indicates a broken mod. [21:08:01] [Client thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `cfmcabinet`, expected `cfm`. This could be a intended override, but in most cases indicates a broken mod. [21:08:01] [Client thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `cfmfreezer`, expected `cfm`. This could be a intended override, but in most cases indicates a broken mod. [21:08:01] [Client thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `cfmbedsidecabinet`, expected `cfm`. This could be a intended override, but in most cases indicates a broken mod. [21:08:01] [Client thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `cfmmailbox`, expected `cfm`. This could be a intended override, but in most cases indicates a broken mod. [21:08:01] [Client thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `cfmcomputer`, expected `cfm`. This could be a intended override, but in most cases indicates a broken mod. [21:08:01] [Client thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `cfmprinter`, expected `cfm`. This could be a intended override, but in most cases indicates a broken mod. [21:08:01] [Client thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `cfmstereo`, expected `cfm`. This could be a intended override, but in most cases indicates a broken mod. [21:08:01] [Client thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `cfmpresent`, expected `cfm`. This could be a intended override, but in most cases indicates a broken mod. [21:08:01] [Client thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `cfmbin`, expected `cfm`. This could be a intended override, but in most cases indicates a broken mod. [21:08:01] [Client thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `cfmwallcabinet`, expected `cfm`. This could be a intended override, but in most cases indicates a broken mod. [21:08:01] [Client thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `cfmbath`, expected `cfm`. This could be a intended override, but in most cases indicates a broken mod. [21:08:01] [Client thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `cfmshowerhead`, expected `cfm`. This could be a intended override, but in most cases indicates a broken mod. [21:08:01] [Client thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `cfmplate`, expected `cfm`. This could be a intended override, but in most cases indicates a broken mod. [21:08:01] [Client thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `cfmcouch`, expected `cfm`. This could be a intended override, but in most cases indicates a broken mod. [21:08:01] [Client thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `cfmtoaster`, expected `cfm`. This could be a intended override, but in most cases indicates a broken mod. [21:08:01] [Client thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `cfmchoppingboard`, expected `cfm`. This could be a intended override, but in most cases indicates a broken mod. [21:08:01] [Client thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `cfmblender`, expected `cfm`. This could be a intended override, but in most cases indicates a broken mod. [21:08:01] [Client thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `cfmmicrowave`, expected `cfm`. This could be a intended override, but in most cases indicates a broken mod. [21:08:01] [Client thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `cfmwashingmachine`, expected `cfm`. This could be a intended override, but in most cases indicates a broken mod. [21:08:01] [Client thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `cfmdishwasher`, expected `cfm`. This could be a intended override, but in most cases indicates a broken mod. [21:08:01] [Client thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `cfmcabinetkitchen`, expected `cfm`. This could be a intended override, but in most cases indicates a broken mod. [21:08:01] [Client thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `cfmcup`, expected `cfm`. This could be a intended override, but in most cases indicates a broken mod. [21:08:01] [Client thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `cfmcookiejar`, expected `cfm`. This could be a intended override, but in most cases indicates a broken mod. [21:08:01] [Client thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `cfmtree`, expected `cfm`. This could be a intended override, but in most cases indicates a broken mod. [21:08:01] [Client thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `cfmmirror`, expected `cfm`. This could be a intended override, but in most cases indicates a broken mod. [21:08:01] [Client thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `cfmgrill`, expected `cfm`. This could be a intended override, but in most cases indicates a broken mod. [21:08:01] [Client thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `cfmeski`, expected `cfm`. This could be a intended override, but in most cases indicates a broken mod. [21:08:01] [Client thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `cfmdoormat`, expected `cfm`. This could be a intended override, but in most cases indicates a broken mod. [21:08:01] [Client thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `cfmcrate`, expected `cfm`. This could be a intended override, but in most cases indicates a broken mod. [21:08:01] [Client thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `cfmlightswitch`, expected `cfm`. This could be a intended override, but in most cases indicates a broken mod. [21:08:01] [Client thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `cfmceilingfan`, expected `cfm`. This could be a intended override, but in most cases indicates a broken mod. [21:08:01] [Client thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `cfmdeskcabinet`, expected `cfm`. This could be a intended override, but in most cases indicates a broken mod. [21:08:01] [Client thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `cfmmodernslidingdoor`, expected `cfm`. This could be a intended override, but in most cases indicates a broken mod. [21:08:01] [Client thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `cfmdigitalclock`, expected `cfm`. This could be a intended override, but in most cases indicates a broken mod. [21:08:01] [Client thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `cfmtv`, expected `cfm`. This could be a intended override, but in most cases indicates a broken mod. [21:08:01] [Client thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `cfmkitchencounter`, expected `cfm`. This could be a intended override, but in most cases indicates a broken mod. [21:08:01] [Client thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `cfmkitchencounterdrawer`, expected `cfm`. This could be a intended override, but in most cases indicates a broken mod. [21:08:02] [Client thread/INFO] [inventorytweaks]: Mod initialized [21:08:03] [Client thread/INFO] [jei]: Created: 128x256 textures-atlas [21:08:03] [Client thread/INFO] [FML]: Injecting itemstacks [21:08:03] [Client thread/INFO] [FML]: Itemstack injection complete [21:08:03] [Client thread/INFO] [treecapitator]: Prioritizing User and IMC mod configs... [21:08:03] [Client thread/INFO] [treecapitator]: Registering items and trees... [21:08:03] [Client thread/INFO] [treecapitator]: Skipping Ore Dictionary processing. [21:08:04] [Client thread/WARN] [BuildCraft]: [lib.guide.loader] Unable to load guide page 'buildcraftcore:item/volume_box' (full path = 'buildcraftcore:compat/buildcraft/guide/en_us/item/volume_box.md') because we couldn't find any of the valid paths in any resource pack! [21:08:04] [Client thread/WARN] [BuildCraft]: [lib.guide.loader] Unable to load guide page 'buildcraftsilicon:item/plug_facade' (full path = 'buildcraftsilicon:compat/buildcraft/guide/en_us/item/plug_facade.md') because we couldn't find any of the valid paths in any resource pack! [21:08:04] [Client thread/WARN] [BuildCraft]: [lib.guide.loader.xml] Unknown recipe type null - must be one of [crafting, assembling, smelting] [21:08:04] [Client thread/WARN] [BuildCraft]: [lib.guide.loader] Unable to load guide page 'buildcraftcore:item/marker_volume' (full path = 'buildcraftcore:compat/buildcraft/guide/en_us/item/marker_volume.md') because we couldn't find any of the valid paths in any resource pack! [21:08:04] [Client thread/WARN] [BuildCraft]: [lib.guide.loader] Unable to load guide page 'buildcraftfactory:block/autoworkbench_item' (full path = 'buildcraftfactory:compat/buildcraft/guide/en_us/block/autoworkbench_item.md') because we couldn't find any of the valid paths in any resource pack! [21:08:04] [Client thread/WARN] [BuildCraft]: [lib.guide.loader] Unable to load guide page 'buildcraftcore:block/engine_creative' (full path = 'buildcraftcore:compat/buildcraft/guide/en_us/block/engine_creative.md') because we couldn't find any of the valid paths in any resource pack! [21:08:04] [Client thread/INFO] [BuildCraft]: [lib.guide] Squished ic2:beer and all of it's 294 variants down into one page entry. [21:08:04] [Client thread/INFO] [BuildCraft]: [lib.guide] Squished buildcraftsilicon:plug_facade and all of it's 1483 variants down into one page entry. [21:08:04] [Client thread/INFO] [BuildCraft]: [lib.search] Max suffix length is 29 [21:08:04] [Client thread/INFO] [BuildCraft]: [lib.search] 'item.kittybed_light_blue.name' [21:08:04] [Client thread/WARN] [BuildCraft]: [lib.gui.cfg] Failed to read the config file! C:\Users\Gary\Desktop\mmc-stable-win32\MultiMC\instances\1.12.2\.minecraft\config\buildcraft\gui.json [21:08:04] [Client thread/INFO] [FML]: Custom Recipe Loader Start [21:08:04] [Client thread/INFO] [FML]: Custom Recipe Loader End [21:08:04] [Client thread/INFO] [STDOUT]: [com.aang23.realserene.RealSerene:postInit:40]: Starting RealSerene... [21:08:05] [Client thread/INFO] [STDOUT]: [xaero.common.mods.SupportMods:<init>:22]: Xaero's Minimap: World Map found! [21:08:05] [Client thread/INFO] [STDOUT]: [xaero.map.mods.SupportXaeroMinimap:<init>:42]: Xaero's WorldMap Mod: Xaero's minimap found! [21:08:05] [Client thread/INFO] [jei]: Starting JEI... [21:08:05] [Client thread/ERROR] [jei]: Found empty subBlock of Block{cfm:curtains_open} [21:08:05] [Client thread/ERROR] [jei]: Found empty subBlock of Block{cfm:curtains_open} [21:08:05] [Client thread/ERROR] [jei]: Found empty subBlock of Block{cfm:curtains_open} [21:08:05] [Client thread/ERROR] [jei]: Found empty subBlock of Block{cfm:curtains_open} [21:08:05] [Client thread/ERROR] [jei]: Found empty subBlock of Block{cfm:curtains_open} [21:08:05] [Client thread/ERROR] [jei]: Found empty subBlock of Block{cfm:curtains_open} [21:08:05] [Client thread/ERROR] [jei]: Found empty subBlock of Block{cfm:curtains_open} [21:08:05] [Client thread/ERROR] [jei]: Found empty subBlock of Block{cfm:curtains_open} [21:08:05] [Client thread/ERROR] [jei]: Found empty subBlock of Block{cfm:curtains_open} [21:08:05] [Client thread/ERROR] [jei]: Found empty subBlock of Block{cfm:curtains_open} [21:08:05] [Client thread/ERROR] [jei]: Found empty subBlock of Block{cfm:curtains_open} [21:08:05] [Client thread/ERROR] [jei]: Found empty subBlock of Block{cfm:curtains_open} [21:08:05] [Client thread/ERROR] [jei]: Found empty subBlock of Block{cfm:curtains_open} [21:08:05] [Client thread/ERROR] [jei]: Found empty subBlock of Block{cfm:curtains_open} [21:08:05] [Client thread/ERROR] [jei]: Found empty subBlock of Block{cfm:curtains_open} [21:08:05] [Client thread/ERROR] [jei]: Found empty subBlock of Block{cfm:curtains_open} [21:08:05] [Client thread/INFO] [jei]: Registering recipe categories... [21:08:05] [Client thread/INFO] [BuildCraft]: Loaded JEI mods: [factory, energy, silicon] [21:08:05] [Client thread/INFO] [jei]: Registering recipe categories took 217.7 ms [21:08:05] [Client thread/INFO] [jei]: Registering mod plugins... [21:08:06] [Client thread/INFO] [RB-Transformer]: Injecting into afz (net.minecraft.inventory.ContainerWorkbench) [21:08:06] [Client thread/INFO] [RB-Transformer]: - mRealBenchTile [21:08:06] [Client thread/INFO] [RB-Transformer]: - <init> [21:08:06] [Client thread/INFO] [RB-Transformer]: - WorkbenchTile[PUTFIELD] [21:08:06] [Client thread/INFO] [RB-Transformer]: - WorkbenchInventory[NEW] [21:08:06] [Client thread/INFO] [RB-Transformer]: - WorkbenchInventory[INVOKESPECIAL] [21:08:06] [Client thread/INFO] [RB-Transformer]: - ContainerWorkbench[REFRESH_MATRIX] [21:08:06] [Client thread/INFO] [RB-Transformer]: - onContainerClosed [21:08:06] [Client thread/INFO] [RB-Transformer]: - Done [21:08:06] [Client thread/INFO] [jei]: Registering mod plugins took 361.4 ms [21:08:06] [Client thread/INFO] [jei]: Building recipe registry... [21:08:06] [Client thread/INFO] [jei]: Building recipe registry took 234.0 ms [21:08:06] [Client thread/INFO] [jei]: Building ingredient list... [21:08:06] [Client thread/INFO] [jei]: Building ingredient list took 96.73 ms [21:08:06] [Client thread/INFO] [jei]: Building ingredient filter... [21:08:06] [Client thread/INFO] [jei]: Building ingredient filter took 418.5 ms [21:08:06] [Client thread/INFO] [jei]: Building bookmarks... [21:08:06] [Client thread/INFO] [jei]: Building bookmarks took 6.374 ms [21:08:06] [Client thread/INFO] [jei]: Building runtime... [21:08:07] [Client thread/INFO] [invtweaks.forge.asm.ContainerTransformer]: InvTweaks: successfully transformed setFocused/func_146195_b [21:08:07] [Client thread/INFO] [jei]: Building runtime took 101.7 ms [21:08:07] [Client thread/INFO] [jei]: Starting JEI took 1.744 s [21:08:07] [Client thread/INFO] [FML]: Forge Mod Loader has successfully loaded 47 mods [21:08:08] [Client thread/WARN] [minecraft/GameSettings]: Skipping bad option: lastServer: [21:08:08] [Client thread/INFO] [mojang/NarratorWindows]: Narrator library for x64 successfully loaded [21:08:08] [Client thread/INFO] [Config]: [OptiFine] *** Reloading custom textures *** [21:08:08] [Client thread/INFO] [STDOUT]: [xaero.map.events.Events:renderTick:153]: World Map is outdated! [21:08:08] [Client thread/INFO] [STDOUT]: [xaero.common.events.ForgeEventHandler:onOutdatedOverridable:165]: Minimap is outdated! [21:08:15] [Client thread/INFO] [STDERR]: [drzhark.guiapi.GuiWidgetScreen:getInstance:80]: java.lang.NoClassDefFoundError: org/xmlpull/v1/XmlPullParserException [21:08:15] [Client thread/INFO] [STDERR]: [drzhark.guiapi.GuiWidgetScreen:getInstance:80]: at drzhark.guiapi.GuiWidgetScreen.getInstance(GuiWidgetScreen.java:70) [21:08:15] [Client thread/INFO] [STDERR]: [drzhark.guiapi.GuiWidgetScreen:getInstance:80]: at drzhark.guiapi.GuiModScreen.setActive(GuiModScreen.java:155) [21:08:15] [Client thread/INFO] [STDERR]: [drzhark.guiapi.GuiWidgetScreen:getInstance:80]: at drzhark.guiapi.GuiModScreen.show(GuiModScreen.java:65) [21:08:15] [Client thread/INFO] [STDERR]: [drzhark.guiapi.GuiWidgetScreen:getInstance:80]: at drzhark.guiapi.GuiApiButton.func_146116_c(GuiApiButton.java:19) [21:08:15] [Client thread/INFO] [STDERR]: [drzhark.guiapi.GuiWidgetScreen:getInstance:80]: at net.minecraft.client.gui.GuiScreen.func_73864_a(GuiScreen.java:435) [21:08:15] [Client thread/INFO] [STDERR]: [drzhark.guiapi.GuiWidgetScreen:getInstance:80]: at net.minecraft.client.gui.GuiScreen.func_146274_d(GuiScreen.java:533) [21:08:15] [Client thread/INFO] [STDERR]: [drzhark.guiapi.GuiWidgetScreen:getInstance:80]: at net.minecraft.client.gui.GuiScreen.func_146269_k(GuiScreen.java:501) [21:08:15] [Client thread/INFO] [STDERR]: [drzhark.guiapi.GuiWidgetScreen:getInstance:80]: at net.minecraft.client.Minecraft.func_71407_l(Minecraft.java:1759) [21:08:15] [Client thread/INFO] [STDERR]: [drzhark.guiapi.GuiWidgetScreen:getInstance:80]: at net.minecraft.client.Minecraft.func_71411_J(Minecraft.java:1098) [21:08:15] [Client thread/INFO] [STDERR]: [drzhark.guiapi.GuiWidgetScreen:getInstance:80]: at net.minecraft.client.Minecraft.func_99999_d(Minecraft.java:398) [21:08:15] [Client thread/INFO] [STDERR]: [drzhark.guiapi.GuiWidgetScreen:getInstance:80]: at net.minecraft.client.main.Main.main(SourceFile:123) [21:08:15] [Client thread/INFO] [STDERR]: [drzhark.guiapi.GuiWidgetScreen:getInstance:80]: at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) [21:08:15] [Client thread/INFO] [STDERR]: [drzhark.guiapi.GuiWidgetScreen:getInstance:80]: at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) [21:08:15] [Client thread/INFO] [STDERR]: [drzhark.guiapi.GuiWidgetScreen:getInstance:80]: at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) [21:08:15] [Client thread/INFO] [STDERR]: [drzhark.guiapi.GuiWidgetScreen:getInstance:80]: at java.lang.reflect.Method.invoke(Unknown Source) [21:08:15] [Client thread/INFO] [STDERR]: [drzhark.guiapi.GuiWidgetScreen:getInstance:80]: at net.minecraft.launchwrapper.Launch.launch(Launch.java:135) [21:08:15] [Client thread/INFO] [STDERR]: [drzhark.guiapi.GuiWidgetScreen:getInstance:80]: at net.minecraft.launchwrapper.Launch.main(Launch.java:28) [21:08:15] [Client thread/INFO] [STDERR]: [drzhark.guiapi.GuiWidgetScreen:getInstance:80]: at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) [21:08:15] [Client thread/INFO] [STDERR]: [drzhark.guiapi.GuiWidgetScreen:getInstance:80]: at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) [21:08:15] [Client thread/INFO] [STDERR]: [drzhark.guiapi.GuiWidgetScreen:getInstance:80]: at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) [21:08:15] [Client thread/INFO] [STDERR]: [drzhark.guiapi.GuiWidgetScreen:getInstance:80]: at java.lang.reflect.Method.invoke(Unknown Source) [21:08:15] [Client thread/INFO] [STDERR]: [drzhark.guiapi.GuiWidgetScreen:getInstance:80]: at org.multimc.onesix.OneSixLauncher.launchWithMainClass(OneSixLauncher.java:196) [21:08:15] [Client thread/INFO] [STDERR]: [drzhark.guiapi.GuiWidgetScreen:getInstance:80]: at org.multimc.onesix.OneSixLauncher.launch(OneSixLauncher.java:231) [21:08:15] [Client thread/INFO] [STDERR]: [drzhark.guiapi.GuiWidgetScreen:getInstance:80]: at org.multimc.EntryPoint.listen(EntryPoint.java:143) [21:08:15] [Client thread/INFO] [STDERR]: [drzhark.guiapi.GuiWidgetScreen:getInstance:80]: at org.multimc.EntryPoint.main(EntryPoint.java:34) [21:08:15] [Client thread/INFO] [STDERR]: [java.lang.Throwable:printStackTrace:-1]: Caused by: java.lang.ClassNotFoundException: org.xmlpull.v1.XmlPullParserException [21:08:15] [Client thread/INFO] [STDERR]: [java.lang.Throwable:printStackTrace:-1]: at net.minecraft.launchwrapper.LaunchClassLoader.findClass(LaunchClassLoader.java:191) [21:08:15] [Client thread/INFO] [STDERR]: [java.lang.Throwable:printStackTrace:-1]: at java.lang.ClassLoader.loadClass(Unknown Source) [21:08:15] [Client thread/INFO] [STDERR]: [java.lang.Throwable:printStackTrace:-1]: at java.lang.ClassLoader.loadClass(Unknown Source) [21:08:15] [Client thread/INFO] [STDERR]: [java.lang.Throwable:printStackTrace:-1]: ... 25 more [21:08:15] [Client thread/INFO] [STDERR]: [java.lang.Throwable:printStackTrace:-1]: Caused by: java.lang.NullPointerException [21:08:18] [Client thread/FATAL] [minecraft/Minecraft]: Reported exception thrown! net.minecraft.util.ReportedException: Updating screen events at net.minecraft.client.Minecraft.func_71407_l(Minecraft.java:1772) ~[bib.class:?] at net.minecraft.client.Minecraft.func_71411_J(Minecraft.java:1098) ~[bib.class:?] at net.minecraft.client.Minecraft.func_99999_d(Minecraft.java:398) [bib.class:?] at net.minecraft.client.main.Main.main(SourceFile:123) [Main.class:?] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_231] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_231] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_231] at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_231] 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_231] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_231] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_231] at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_231] at org.multimc.onesix.OneSixLauncher.launchWithMainClass(OneSixLauncher.java:196) [NewLaunch.jar:?] at org.multimc.onesix.OneSixLauncher.launch(OneSixLauncher.java:231) [NewLaunch.jar:?] at org.multimc.EntryPoint.listen(EntryPoint.java:143) [NewLaunch.jar:?] at org.multimc.EntryPoint.main(EntryPoint.java:34) [NewLaunch.jar:?] Caused by: java.lang.RuntimeException: error loading theme at drzhark.guiapi.GuiWidgetScreen.getInstance(GuiWidgetScreen.java:81) ~[GuiWidgetScreen.class:?] at drzhark.guiapi.GuiModScreen.setActive(GuiModScreen.java:155) ~[GuiModScreen.class:?] at drzhark.guiapi.GuiModScreen.show(GuiModScreen.java:65) ~[GuiModScreen.class:?] at drzhark.guiapi.GuiApiButton.func_146116_c(GuiApiButton.java:19) ~[GuiApiButton.class:?] at net.minecraft.client.gui.GuiScreen.func_73864_a(GuiScreen.java:435) ~[blk.class:?] at net.minecraft.client.gui.GuiScreen.func_146274_d(GuiScreen.java:533) ~[blk.class:?] at net.minecraft.client.gui.GuiScreen.func_146269_k(GuiScreen.java:501) ~[blk.class:?] at net.minecraft.client.Minecraft.func_71407_l(Minecraft.java:1759) ~[bib.class:?] ... 17 more Caused by: java.lang.NoClassDefFoundError: org/xmlpull/v1/XmlPullParserException at drzhark.guiapi.GuiWidgetScreen.getInstance(GuiWidgetScreen.java:70) ~[GuiWidgetScreen.class:?] at drzhark.guiapi.GuiModScreen.setActive(GuiModScreen.java:155) ~[GuiModScreen.class:?] at drzhark.guiapi.GuiModScreen.show(GuiModScreen.java:65) ~[GuiModScreen.class:?] at drzhark.guiapi.GuiApiButton.func_146116_c(GuiApiButton.java:19) ~[GuiApiButton.class:?] at net.minecraft.client.gui.GuiScreen.func_73864_a(GuiScreen.java:435) ~[blk.class:?] at net.minecraft.client.gui.GuiScreen.func_146274_d(GuiScreen.java:533) ~[blk.class:?] at net.minecraft.client.gui.GuiScreen.func_146269_k(GuiScreen.java:501) ~[blk.class:?] at net.minecraft.client.Minecraft.func_71407_l(Minecraft.java:1759) ~[bib.class:?] ... 17 more Caused by: java.lang.ClassNotFoundException: org.xmlpull.v1.XmlPullParserException at net.minecraft.launchwrapper.LaunchClassLoader.findClass(LaunchClassLoader.java:191) ~[launchwrapper-1.12.jar:?] at java.lang.ClassLoader.loadClass(Unknown Source) ~[?:1.8.0_231] at java.lang.ClassLoader.loadClass(Unknown Source) ~[?:1.8.0_231] at drzhark.guiapi.GuiWidgetScreen.getInstance(GuiWidgetScreen.java:70) ~[GuiWidgetScreen.class:?] at drzhark.guiapi.GuiModScreen.setActive(GuiModScreen.java:155) ~[GuiModScreen.class:?] at drzhark.guiapi.GuiModScreen.show(GuiModScreen.java:65) ~[GuiModScreen.class:?] at drzhark.guiapi.GuiApiButton.func_146116_c(GuiApiButton.java:19) ~[GuiApiButton.class:?] at net.minecraft.client.gui.GuiScreen.func_73864_a(GuiScreen.java:435) ~[blk.class:?] at net.minecraft.client.gui.GuiScreen.func_146274_d(GuiScreen.java:533) ~[blk.class:?] at net.minecraft.client.gui.GuiScreen.func_146269_k(GuiScreen.java:501) ~[blk.class:?] at net.minecraft.client.Minecraft.func_71407_l(Minecraft.java:1759) ~[bib.class:?] ... 17 more Caused by: java.lang.NullPointerException [21:08:19] [Client thread/INFO] [STDOUT]: [net.minecraft.init.Bootstrap:func_179870_a:553]: ---- Minecraft Crash Report ---- WARNING: coremods are present: llibrary (llibrary-core-1.0.11-1.12.2.jar) Inventory Tweaks Coremod (InventoryTweaks-1.63.jar) RBLoadingPlugin (RealBench-1.12.2-1.3.3.jar) Snow! Real Magic! Core Mod (SnowRealMagic-0.3.2-coremod.jar) Contact their authors BEFORE contacting forge // Uh... Did I do that? Time: 1/8/20 9:08 PM Description: Updating screen events java.lang.RuntimeException: error loading theme at drzhark.guiapi.GuiWidgetScreen.getInstance(GuiWidgetScreen.java:81) at drzhark.guiapi.GuiModScreen.setActive(GuiModScreen.java:155) at drzhark.guiapi.GuiModScreen.show(GuiModScreen.java:65) at drzhark.guiapi.GuiApiButton.func_146116_c(GuiApiButton.java:19) at net.minecraft.client.gui.GuiScreen.func_73864_a(GuiScreen.java:435) at net.minecraft.client.gui.GuiScreen.func_146274_d(GuiScreen.java:533) at net.minecraft.client.gui.GuiScreen.func_146269_k(GuiScreen.java:501) at net.minecraft.client.Minecraft.func_71407_l(Minecraft.java:1759) at net.minecraft.client.Minecraft.func_71411_J(Minecraft.java:1098) at net.minecraft.client.Minecraft.func_99999_d(Minecraft.java:398) at net.minecraft.client.main.Main.main(SourceFile:123) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) at java.lang.reflect.Method.invoke(Unknown Source) at net.minecraft.launchwrapper.Launch.launch(Launch.java:135) at net.minecraft.launchwrapper.Launch.main(Launch.java:28) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) at java.lang.reflect.Method.invoke(Unknown Source) at org.multimc.onesix.OneSixLauncher.launchWithMainClass(OneSixLauncher.java:196) at org.multimc.onesix.OneSixLauncher.launch(OneSixLauncher.java:231) at org.multimc.EntryPoint.listen(EntryPoint.java:143) at org.multimc.EntryPoint.main(EntryPoint.java:34) Caused by: java.lang.NoClassDefFoundError: org/xmlpull/v1/XmlPullParserException at drzhark.guiapi.GuiWidgetScreen.getInstance(GuiWidgetScreen.java:70) ... 24 more Caused by: java.lang.ClassNotFoundException: org.xmlpull.v1.XmlPullParserException at net.minecraft.launchwrapper.LaunchClassLoader.findClass(LaunchClassLoader.java:191) at java.lang.ClassLoader.loadClass(Unknown Source) at java.lang.ClassLoader.loadClass(Unknown Source) ... 25 more Caused by: java.lang.NullPointerException A detailed walkthrough of the error, its code path and all known details is as follows: --------------------------------------------------------------------------------------- -- Head -- Thread: Client thread Stacktrace: at drzhark.guiapi.GuiWidgetScreen.getInstance(GuiWidgetScreen.java:81) at drzhark.guiapi.GuiModScreen.setActive(GuiModScreen.java:155) at drzhark.guiapi.GuiModScreen.show(GuiModScreen.java:65) at drzhark.guiapi.GuiApiButton.func_146116_c(GuiApiButton.java:19) at net.minecraft.client.gui.GuiScreen.func_73864_a(GuiScreen.java:435) at net.minecraft.client.gui.GuiScreen.func_146274_d(GuiScreen.java:533) at net.minecraft.client.gui.GuiScreen.func_146269_k(GuiScreen.java:501) -- Affected screen -- Details: Screen name: drzhark.guiapi.GuiModSelect Stacktrace: at net.minecraft.client.Minecraft.func_71407_l(Minecraft.java:1759) at net.minecraft.client.Minecraft.func_71411_J(Minecraft.java:1098) at net.minecraft.client.Minecraft.func_99999_d(Minecraft.java:398) at net.minecraft.client.main.Main.main(SourceFile:123) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) at java.lang.reflect.Method.invoke(Unknown Source) at net.minecraft.launchwrapper.Launch.launch(Launch.java:135) at net.minecraft.launchwrapper.Launch.main(Launch.java:28) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) at java.lang.reflect.Method.invoke(Unknown Source) at org.multimc.onesix.OneSixLauncher.launchWithMainClass(OneSixLauncher.java:196) at org.multimc.onesix.OneSixLauncher.launch(OneSixLauncher.java:231) at org.multimc.EntryPoint.listen(EntryPoint.java:143) at org.multimc.EntryPoint.main(EntryPoint.java:34) -- System Details -- Details: Minecraft Version: 1.12.2 Operating System: Windows 10 (amd64) version 10.0 Java Version: 1.8.0_231, Oracle Corporation Java VM Version: Java HotSpot(TM) 64-Bit Server VM (mixed mode), Oracle Corporation Memory: 677963912 bytes (646 MB) / 2203058176 bytes (2101 MB) up to 3817865216 bytes (3641 MB) JVM Flags: 3 total; -XX:HeapDumpPath=MojangTricksIntelDriversForPerformance_javaw.exe_minecraft.exe.heapdump -Xms1024m -Xmx4096m IntCache: cache: 0, tcache: 0, allocated: 0, tallocated: 0 FML: MCP 9.42 Powered by Forge 14.23.5.2838 Optifine OptiFine_1.12.2_HD_U_F5 47 mods loaded, 47 mods active States: 'U' = Unloaded 'L' = Loaded 'C' = Constructed 'H' = Pre-initialized 'I' = Initialized 'J' = Post-initialized 'A' = Available 'D' = Disabled 'E' = Errored | State | ID | Version | Source | Signature | |:------ |:--------------------- |:------------------------ |:--------------------------------------------- |:---------------------------------------- | | LCHIJA | minecraft | 1.12.2 | minecraft.jar | None | | LCHIJA | mcp | 9.42 | minecraft.jar | None | | LCHIJA | FML | 8.0.99.99 | forge-1.12.2-14.23.5.2838-universal.jar | e3c3d50c7c986df74c645c0ac54639741c90a557 | | LCHIJA | forge | 14.23.5.2838 | forge-1.12.2-14.23.5.2838-universal.jar | e3c3d50c7c986df74c645c0ac54639741c90a557 | | LCHIJA | bspkrscore | 7.6.0.1 | [1.12]bspkrsCore-universal-7.6.0.1.jar | None | | LCHIJA | treecapitator | 1.43.0 | [1.12]TreeCapitator-client-1.43.0.jar | None | | LCHIJA | antiqueatlas | 4.6.3 | antiqueatlas-1.12.2-4.6.3.jar | None | | LCHIJA | antiqueatlasoverlay | 1.2 | antiqueatlas-1.12.2-4.6.3.jar | None | | LCHIJA | anvilfix | 1.0.5 | AnvilFix-1.12.2-1.0.5.jar | None | | LCHIJA | betaplus | 0.4back | betaplus-0.4.1.jar | None | | LCHIJA | betterbedrock | 5.1 | BetterBedrock-1.12.2-5.1.11.jar | None | | LCHIJA | buildcraftlib | 7.99.24.4 | buildcraft-all-7.99.24.4.jar | None | | LCHIJA | buildcraftcore | 7.99.24.4 | buildcraft-all-7.99.24.4.jar | None | | LCHIJA | buildcraftbuilders | 7.99.24.4 | buildcraft-all-7.99.24.4.jar | None | | LCHIJA | buildcrafttransport | 7.99.24.4 | buildcraft-all-7.99.24.4.jar | None | | LCHIJA | buildcraftsilicon | 7.99.24.4 | buildcraft-all-7.99.24.4.jar | None | | LCHIJA | buildcraftcompat | 7.99.24.4 | buildcraft-all-7.99.24.4.jar | None | | LCHIJA | buildcraftenergy | 7.99.24.4 | buildcraft-all-7.99.24.4.jar | None | | LCHIJA | buildcraftfactory | 7.99.24.4 | buildcraft-all-7.99.24.4.jar | None | | LCHIJA | buildcraftrobotics | 7.99.24.4 | buildcraft-all-7.99.24.4.jar | None | | LCHIJA | classiccombat | 1.0.1 | ClassicCombat-1.0.1.jar | None | | LCHIJA | codechickenlib | 3.2.3.358 | CodeChickenLib-1.12.2-3.2.3.358-universal.jar | f1850c39b2516232a2108a7bd84d1cb5df93b261 | | LCHIJA | craftablehorsearmour | 1.3 | CraftableHorseArmour-1.3.0-1.12.jar | None | | LCHIJA | diethopper | 1.1 | diethopper-1.1.jar | None | | LCHIJA | mocreatures | 12.0.5 | DrZharks+MoCreatures+Mod-12.0.5.jar | None | | LCHIJA | csb_ench_table | 1.1.3 | EnchantingTable-1.12-1.1.3.jar | None | | LCHIJA | energyconverters | 1.3.6.24 | energyconverters_1.12.2-1.3.6.24.jar | None | | LCHIJA | forgemultipartcbe | 2.6.2.83 | ForgeMultipart-1.12.2-2.6.2.83-universal.jar | f1850c39b2516232a2108a7bd84d1cb5df93b261 | | LCHIJA | microblockcbe | 2.6.2.83 | ForgeMultipart-1.12.2-2.6.2.83-universal.jar | None | | LCHIJA | minecraftmultipartcbe | 2.6.2.83 | ForgeMultipart-1.12.2-2.6.2.83-universal.jar | None | | LCHIJA | cfm | 6.3.1 | furniture-6.3.1-1.12.2.jar | None | | LCHIJA | ic2 | 2.8.1001 | IC2Classic+1.12-1.5.4.5.jar | None | | LCHIJA | ic2-classic-spmod | 0.0.0.0 | IC2Classic+1.12-1.5.4.5.jar | None | | LCHIJA | inventorytweaks | 1.63+release.109.220f184 | InventoryTweaks-1.63.jar | 55d2cd4f5f0961410bf7b91ef6c6bf00a766dcbe | | LCHIJA | jei | 4.15.0.291 | jei_1.12.2-4.15.0.291.jar | None | | LCHIJA | jrftl | 1.1 | JRFTL[1.12.2]-1.1.jar | None | | LCHIJA | norecipebook | 1.2.1 | noRecipeBook_v1.2.2formc1.12.2.jar | None | | LCHIJA | projecte | 1.12.2-PE1.4.1 | ProjectE-1.12.2-PE1.4.1.jar | None | | LCHIJA | realserene | 1.4.3 | realserene-1.4.3.jar | None | | LCHIJA | reforged | 0.7.5 | Reforged-0.7.5-1.12+.jar | None | | LCHIJA | shb | 1.0 | shb_1.12-1.0.jar | None | | LCHIJA | stg | 1.12.2-1.2.3 | stg-1.12.2-1.2.3.jar | None | | LCHIJA | worleycaves | 1.5.1 | worleycaves-1.5.1.jar | None | | LCHIJA | xaerominimap | 1.19.5 | Xaeros_Minimap_1.19.5_Forge_1.12.jar | None | | LCHIJA | xaeroworldmap | 1.5.3 | XaerosWorldMap_1.5.3_Forge_1.12.jar | None | | LCHIJA | llibrary | 1.7.19 | llibrary-1.7.19-1.12.2.jar | b9f30a813bee3b9dd5652c460310cfcd54f6b7ec | | LCHIJA | snowrealmagic | 0.3.2 | SnowRealMagic-0.3.2.jar | None | Loaded coremods (and transformers): llibrary (llibrary-core-1.0.11-1.12.2.jar) net.ilexiconn.llibrary.server.core.plugin.LLibraryTransformer net.ilexiconn.llibrary.server.core.patcher.LLibraryRuntimePatcher Inventory Tweaks Coremod (InventoryTweaks-1.63.jar) invtweaks.forge.asm.ContainerTransformer RBLoadingPlugin (RealBench-1.12.2-1.3.3.jar) pw.prok.realbench.asm.RBTransformer Snow! Real Magic! Core Mod (SnowRealMagic-0.3.2-coremod.jar) snownee.snow.asm.ASMTransformer GL info: ' Vendor: 'Intel' Version: '4.3.0 - Build 20.19.15.4835' Renderer: 'Intel(R) HD Graphics 4400' Launched Version: MultiMC5 LWJGL: 2.9.4 OpenGL: Intel(R) HD Graphics 4400 GL version 4.3.0 - Build 20.19.15.4835, Intel GL Caps: Using GL 1.3 multitexturing. Using GL 1.3 texture combiners. Using framebuffer objects because OpenGL 3.0 is supported and separate blending is supported. Shaders are available because OpenGL 2.1 is supported. VBOs are available because OpenGL 1.5 is supported. Using VBOs: Yes Is Modded: Definitely; Client brand changed to 'fml,forge' Type: Client (map_client.txt) Resource Packs: Current Language: English (US) Profiler Position: N/A (disabled) CPU: 4x Intel(R) Core(TM) i3-4150 CPU @ 3.50GHz OptiFine Version: OptiFine_1.12.2_HD_U_F5 OptiFine Build: 20191204-141934 Render Distance Chunks: 8 Mipmaps: 4 Anisotropic Filtering: 1 Antialiasing: 0 Multitexture: false Shaders: null OpenGlVersion: 4.3.0 - Build 20.19.15.4835 OpenGlRenderer: Intel(R) HD Graphics 4400 OpenGlVendor: Intel CpuCount: 4 [21:08:19] [Client thread/INFO] [STDOUT]: [net.minecraft.init.Bootstrap:func_179870_a:553]: #@!@# Game crashed! Crash report saved to: #@!@# C:\Users\Gary\Desktop\mmc-stable-win32\MultiMC\instances\1.12.2\.minecraft\crash-reports\crash-2020-01-08_21.08.18-client.txt Process exited with code -1. Clipboard copy at: 08 Jan 2020 21:08:32 -0500
  4. Can I use the custom EMC values I add in my modpack?
  5. I want to add EMC values for my mod, but there seems to be no information on how to do this. Everything I find says to use a command, which is useless. I want a better, easier way to add EMC values. edit: on a side note, the custom license for ProjectE found in CurseForge, found below, doesn’t mention ANYTHING about making derivations (forks) of the mod at all. Really! So is it allowed/legal to make a mod derived from ProjectE? https://www.curseforge.com/minecraft/mc-mods/projecte
×
×
  • Create New...

Important Information

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