Created
August 24, 2021 22:31
-
-
Save Nessiesson/ec57dc064e7299bf460a214006611ef3 to your computer and use it in GitHub Desktop.
Mixn 0.8.3-RELEASE -> Mixin 0.8.4-SNAPSHOT bugs
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
buildscript { | |
repositories { | |
jcenter() | |
maven { url = "https://files.minecraftforge.net/maven" } | |
maven { url = "https://repo.spongepowered.org/repository/maven-public" } | |
maven { url = "https://plugins.gradle.org/m2" } | |
} | |
dependencies { | |
classpath "net.minecraftforge.gradle:ForgeGradle:2.3-SNAPSHOT" | |
classpath "org.spongepowered:mixingradle:0.6-SNAPSHOT" | |
classpath "com.github.jengelman.gradle.plugins:shadow:4.0.4" | |
} | |
} | |
apply plugin: "net.minecraftforge.gradle.forge" | |
apply plugin: "org.spongepowered.mixin" | |
apply plugin: "com.github.johnrengelman.shadow" | |
version = "0.3.0" | |
def modName = "CutelessMod".toString() | |
def modId = modName.toLowerCase() | |
group = "net.dugged.${modId}" | |
def loadingPlugin = "${group}.${modName}LoadingPlugin" | |
archivesBaseName = modName | |
sourceCompatibility = targetCompatibility = compileJava.sourceCompatibility = compileJava.targetCompatibility = "1.8" | |
minecraft { | |
version = "1.12.2-14.23.5.2847" | |
mappings = "stable_39" | |
coreMod = loadingPlugin | |
runDir = "run" | |
makeObfSourceJar = false | |
replaceIn "Reference.java" | |
replace "@VERSION@", project.version | |
replace "@MODNAME@", modName | |
replace "@MODID@", modId | |
clientJvmArgs.add("-Dmixin.debug=true") | |
} | |
jar.manifest.attributes( | |
"FMLCorePluginContainsFMLMod": true, | |
"FMLCorePlugin": loadingPlugin, | |
"ForceLoadAsMod": true, | |
"TweakClass": "org.spongepowered.asm.launch.MixinTweaker", | |
) | |
repositories { | |
mavenCentral() | |
maven { url = "https://repo.spongepowered.org/repository/maven-public" } | |
} | |
dependencies { | |
// compile "org.spongepowered:mixin:0.8.3" | |
compile "org.spongepowered:mixin:0.8.4-SNAPSHOT" | |
} | |
mixin { | |
add sourceSets.main, "mixins.${modId}.refmap.json" | |
} | |
shadowJar { | |
exclude "dummyThing" | |
exclude "LICENSE.txt" | |
classifier = "" | |
} | |
build.dependsOn(shadowJar) | |
reobf { | |
shadowJar { | |
mappingType = "SEARGE" | |
} | |
} | |
processResources { | |
inputs.property "modName", modName | |
inputs.property "modId", modId | |
inputs.property "version", project.version | |
inputs.property "mcversion", project.minecraft.version | |
from(sourceSets.main.resources.srcDirs) { | |
include "mcmod.info" | |
include "pack.mcmeta" | |
expand "version": project.version, "mcversion": project.minecraft.version, "modName": modName, "modId": modId | |
} | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[00:23:24] [main/INFO] [GradleStart]: Extra: [] | |
[00:23:24] [main/INFO] [GradleStart]: Running with arguments: [--userProperties, {}, --assetsDir, C:/Users/Nessi/.gradle/caches/minecraft/assets, --assetIndex, 1.12, --accessToken{REDACTED}, --version, 1.12.2, --tweakClass, net.minecraftforge.fml.common.launcher.FMLTweaker, --tweakClass, net.minecraftforge.gradle.tweakers.CoremodTweaker] | |
[00:23:24] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLTweaker | |
[00:23:24] [main/INFO] [LaunchWrapper]: Using primary tweak class name net.minecraftforge.fml.common.launcher.FMLTweaker | |
[00:23:24] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.gradle.tweakers.CoremodTweaker | |
[00:23:24] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLTweaker | |
[00:23:24] [main/DEBUG] [FML]: Injecting tracing printstreams for STDOUT/STDERR. | |
[00:23:24] [main/INFO] [FML]: Forge Mod Loader version 14.23.5.2847 for Minecraft 1.12.2 loading | |
[00:23:24] [main/INFO] [FML]: Java is OpenJDK 64-Bit Server VM, version 1.8.0_302, running on Windows 10:amd64:10.0, installed at C:\Users\Nessi\.jdks\corretto-1.8.0_302\jre | |
[00:23:24] [main/DEBUG] [FML]: Java classpath at launch is: | |
[00:23:24] [main/DEBUG] [FML]: C:\Users\Nessi\.jdks\corretto-1.8.0_302\jre\lib\charsets.jar | |
[00:23:24] [main/DEBUG] [FML]: C:\Users\Nessi\.jdks\corretto-1.8.0_302\jre\lib\ext\access-bridge-64.jar | |
[00:23:24] [main/DEBUG] [FML]: C:\Users\Nessi\.jdks\corretto-1.8.0_302\jre\lib\ext\cldrdata.jar | |
[00:23:24] [main/DEBUG] [FML]: C:\Users\Nessi\.jdks\corretto-1.8.0_302\jre\lib\ext\dnsns.jar | |
[00:23:24] [main/DEBUG] [FML]: C:\Users\Nessi\.jdks\corretto-1.8.0_302\jre\lib\ext\jaccess.jar | |
[00:23:24] [main/DEBUG] [FML]: C:\Users\Nessi\.jdks\corretto-1.8.0_302\jre\lib\ext\jfxrt.jar | |
[00:23:24] [main/DEBUG] [FML]: C:\Users\Nessi\.jdks\corretto-1.8.0_302\jre\lib\ext\localedata.jar | |
[00:23:24] [main/DEBUG] [FML]: C:\Users\Nessi\.jdks\corretto-1.8.0_302\jre\lib\ext\nashorn.jar | |
[00:23:24] [main/DEBUG] [FML]: C:\Users\Nessi\.jdks\corretto-1.8.0_302\jre\lib\ext\sunec.jar | |
[00:23:24] [main/DEBUG] [FML]: C:\Users\Nessi\.jdks\corretto-1.8.0_302\jre\lib\ext\sunjce_provider.jar | |
[00:23:24] [main/DEBUG] [FML]: C:\Users\Nessi\.jdks\corretto-1.8.0_302\jre\lib\ext\sunmscapi.jar | |
[00:23:24] [main/DEBUG] [FML]: C:\Users\Nessi\.jdks\corretto-1.8.0_302\jre\lib\ext\sunpkcs11.jar | |
[00:23:24] [main/DEBUG] [FML]: C:\Users\Nessi\.jdks\corretto-1.8.0_302\jre\lib\ext\zipfs.jar | |
[00:23:24] [main/DEBUG] [FML]: C:\Users\Nessi\.jdks\corretto-1.8.0_302\jre\lib\jce.jar | |
[00:23:24] [main/DEBUG] [FML]: C:\Users\Nessi\.jdks\corretto-1.8.0_302\jre\lib\jfr.jar | |
[00:23:24] [main/DEBUG] [FML]: C:\Users\Nessi\.jdks\corretto-1.8.0_302\jre\lib\jfxswt.jar | |
[00:23:24] [main/DEBUG] [FML]: C:\Users\Nessi\.jdks\corretto-1.8.0_302\jre\lib\jsse.jar | |
[00:23:24] [main/DEBUG] [FML]: C:\Users\Nessi\.jdks\corretto-1.8.0_302\jre\lib\management-agent.jar | |
[00:23:24] [main/DEBUG] [FML]: C:\Users\Nessi\.jdks\corretto-1.8.0_302\jre\lib\resources.jar | |
[00:23:24] [main/DEBUG] [FML]: C:\Users\Nessi\.jdks\corretto-1.8.0_302\jre\lib\rt.jar | |
[00:23:24] [main/DEBUG] [FML]: C:\Users\Nessi\IdeaProjects\CutelessMod\build\classes\java\main | |
[00:23:24] [main/DEBUG] [FML]: C:\Users\Nessi\IdeaProjects\CutelessMod\build\resources\main | |
[00:23:24] [main/DEBUG] [FML]: C:\Users\Nessi\.gradle\caches\minecraft\deobfedDeps\compileDummy.jar | |
[00:23:24] [main/DEBUG] [FML]: C:\Users\Nessi\.gradle\caches\minecraft\deobfedDeps\providedDummy.jar | |
[00:23:24] [main/DEBUG] [FML]: C:\Users\Nessi\.gradle\caches\modules-2\files-2.1\org.spongepowered\mixin\0.8.3\5b08b203d5c601e2393be5cf9b4d39c26d12eb5f\mixin-0.8.3.jar | |
[00:23:24] [main/DEBUG] [FML]: C:\Users\Nessi\.gradle\caches\minecraft\net\minecraftforge\forge\1.12.2-14.23.5.2847\stable\39\forgeSrc-1.12.2-14.23.5.2847.jar | |
[00:23:24] [main/DEBUG] [FML]: C:\Users\Nessi\.gradle\caches\modules-2\files-2.1\com.mojang\authlib\1.5.25\9834cdf236c22e84b946bba989e2f94ef5897c3c\authlib-1.5.25.jar | |
[00:23:24] [main/DEBUG] [FML]: C:\Users\Nessi\.gradle\caches\modules-2\files-2.1\com.google.code.findbugs\jsr305\3.0.1\f7be08ec23c21485b9b5a1cf1654c2ec8c58168d\jsr305-3.0.1.jar | |
[00:23:24] [main/DEBUG] [FML]: C:\Users\Nessi\.gradle\caches\modules-2\files-2.1\com.mojang\patchy\1.2.3\e3107ca512d704a434076a153a6e1149e3787275\patchy-1.2.3.jar | |
[00:23:24] [main/DEBUG] [FML]: C:\Users\Nessi\.gradle\caches\modules-2\files-2.1\oshi-project\oshi-core\1.1\9ddf7b048a8d701be231c0f4f95fd986198fd2d8\oshi-core-1.1.jar | |
[00:23:24] [main/DEBUG] [FML]: C:\Users\Nessi\.gradle\caches\modules-2\files-2.1\com.mojang\text2speech\1.10.3\48fd510879dff266c3815947de66e3d4809f8668\text2speech-1.10.3.jar | |
[00:23:24] [main/DEBUG] [FML]: C:\Users\Nessi\.gradle\caches\modules-2\files-2.1\net.java.dev.jna\jna\4.4.0\cb208278274bf12ebdb56c61bd7407e6f774d65a\jna-4.4.0.jar | |
[00:23:24] [main/DEBUG] [FML]: C:\Users\Nessi\.gradle\caches\modules-2\files-2.1\net.java.dev.jna\platform\3.4.0\e3f70017be8100d3d6923f50b3d2ee17714e9c13\platform-3.4.0.jar | |
[00:23:24] [main/DEBUG] [FML]: C:\Users\Nessi\.gradle\caches\modules-2\files-2.1\com.ibm.icu\icu4j-core-mojang\51.2\63d216a9311cca6be337c1e458e587f99d382b84\icu4j-core-mojang-51.2.jar | |
[00:23:24] [main/DEBUG] [FML]: C:\Users\Nessi\.gradle\caches\modules-2\files-2.1\net.minecraft\launchwrapper\1.12\111e7bea9c968cdb3d06ef4632bf7ff0824d0f36\launchwrapper-1.12.jar | |
[00:23:24] [main/DEBUG] [FML]: C:\Users\Nessi\.gradle\caches\modules-2\files-2.1\net.sf.jopt-simple\jopt-simple\5.0.3\cdd846cfc4e0f7eefafc02c0f5dce32b9303aa2a\jopt-simple-5.0.3.jar | |
[00:23:24] [main/DEBUG] [FML]: C:\Users\Nessi\.gradle\caches\modules-2\files-2.1\io.netty\netty-all\4.1.9.Final\97860965d6a0a6b98e7f569f3f966727b8db75\netty-all-4.1.9.Final.jar | |
[00:23:24] [main/DEBUG] [FML]: C:\Users\Nessi\.gradle\caches\modules-2\files-2.1\com.google.guava\guava\21.0\3a3d111be1be1b745edfa7d91678a12d7ed38709\guava-21.0.jar | |
[00:23:24] [main/DEBUG] [FML]: C:\Users\Nessi\.gradle\caches\modules-2\files-2.1\org.apache.maven\maven-artifact\3.5.3\7dc72b6d6d8a6dced3d294ed54c2cc3515ade9f4\maven-artifact-3.5.3.jar | |
[00:23:24] [main/DEBUG] [FML]: C:\Users\Nessi\.gradle\caches\modules-2\files-2.1\org.apache.commons\commons-lang3\3.5\6c6c702c89bfff3cd9e80b04d668c5e190d588c6\commons-lang3-3.5.jar | |
[00:23:24] [main/DEBUG] [FML]: C:\Users\Nessi\.gradle\caches\modules-2\files-2.1\commons-io\commons-io\2.5\2852e6e05fbb95076fc091f6d1780f1f8fe35e0f\commons-io-2.5.jar | |
[00:23:24] [main/DEBUG] [FML]: C:\Users\Nessi\.gradle\caches\modules-2\files-2.1\com.mojang\realms\1.10.22\bd0dccebdf3744c75f1ca20063f16e8f7d5e663f\realms-1.10.22.jar | |
[00:23:24] [main/DEBUG] [FML]: C:\Users\Nessi\.gradle\caches\modules-2\files-2.1\org.apache.httpcomponents\httpclient\4.3.3\18f4247ff4572a074444572cee34647c43e7c9c7\httpclient-4.3.3.jar | |
[00:23:24] [main/DEBUG] [FML]: C:\Users\Nessi\.gradle\caches\modules-2\files-2.1\commons-codec\commons-codec\1.10\4b95f4897fa13f2cd904aee711aeafc0c5295cd8\commons-codec-1.10.jar | |
[00:23:24] [main/DEBUG] [FML]: C:\Users\Nessi\.gradle\caches\modules-2\files-2.1\com.paulscode\librarylwjglopenal\20100824\73e80d0794c39665aec3f62eee88ca91676674ef\librarylwjglopenal-20100824.jar | |
[00:23:24] [main/DEBUG] [FML]: C:\Users\Nessi\.gradle\caches\modules-2\files-2.1\org.lwjgl.lwjgl\lwjgl_util\2.9.4-nightly-20150209\d51a7c040a721d13efdfbd34f8b257b2df882ad0\lwjgl_util-2.9.4-nightly-20150209.jar | |
[00:23:24] [main/DEBUG] [FML]: C:\Users\Nessi\.gradle\caches\modules-2\files-2.1\org.lwjgl.lwjgl\lwjgl\2.9.4-nightly-20150209\697517568c68e78ae0b4544145af031c81082dfe\lwjgl-2.9.4-nightly-20150209.jar | |
[00:23:24] [main/DEBUG] [FML]: C:\Users\Nessi\.gradle\caches\modules-2\files-2.1\net.java.jinput\jinput\2.0.5\39c7796b469a600f72380316f6b1f11db6c2c7c4\jinput-2.0.5.jar | |
[00:23:24] [main/DEBUG] [FML]: C:\Users\Nessi\.gradle\caches\modules-2\files-2.1\net.java.jutils\jutils\1.0.0\e12fe1fda814bd348c1579329c86943d2cd3c6a6\jutils-1.0.0.jar | |
[00:23:24] [main/DEBUG] [FML]: C:\Users\Nessi\.gradle\caches\modules-2\files-2.1\com.google.code.gson\gson\2.8.0\c4ba5371a29ac9b2ad6129b1d39ea38750043eff\gson-2.8.0.jar | |
[00:23:24] [main/DEBUG] [FML]: C:\Users\Nessi\.gradle\caches\modules-2\files-2.1\org.apache.commons\commons-compress\1.8.1\a698750c16740fd5b3871425f4cb3bbaa87f529d\commons-compress-1.8.1.jar | |
[00:23:24] [main/DEBUG] [FML]: C:\Users\Nessi\.gradle\caches\modules-2\files-2.1\commons-logging\commons-logging\1.1.3\f6f66e966c70a83ffbdb6f17a0919eaf7c8aca7f\commons-logging-1.1.3.jar | |
[00:23:24] [main/DEBUG] [FML]: C:\Users\Nessi\.gradle\caches\modules-2\files-2.1\org.apache.httpcomponents\httpcore\4.3.2\31fbbff1ddbf98f3aa7377c94d33b0447c646b6e\httpcore-4.3.2.jar | |
[00:23:24] [main/DEBUG] [FML]: C:\Users\Nessi\.gradle\caches\modules-2\files-2.1\it.unimi.dsi\fastutil\7.1.0\9835253257524c1be7ab50c057aa2d418fb72082\fastutil-7.1.0.jar | |
[00:23:24] [main/DEBUG] [FML]: C:\Users\Nessi\.gradle\caches\modules-2\files-2.1\org.apache.logging.log4j\log4j-core\2.8.1\4ac28ff2f1ddf05dae3043a190451e8c46b73c31\log4j-core-2.8.1.jar | |
[00:23:24] [main/DEBUG] [FML]: C:\Users\Nessi\.gradle\caches\modules-2\files-2.1\org.apache.logging.log4j\log4j-api\2.8.1\e801d13612e22cad62a3f4f3fe7fdbe6334a8e72\log4j-api-2.8.1.jar | |
[00:23:24] [main/DEBUG] [FML]: C:\Users\Nessi\.gradle\caches\modules-2\files-2.1\org.jline\jline\3.5.1\51800e9d7a13608894a5a28eed0f5c7fa2f300fb\jline-3.5.1.jar | |
[00:23:24] [main/DEBUG] [FML]: C:\Users\Nessi\.gradle\caches\modules-2\files-2.1\org.ow2.asm\asm-debug-all\5.2\3354e11e2b34215f06dab629ab88e06aca477c19\asm-debug-all-5.2.jar | |
[00:23:24] [main/DEBUG] [FML]: C:\Users\Nessi\.gradle\caches\modules-2\files-2.1\com.typesafe.akka\akka-actor_2.11\2.3.3\ed62e9fc709ca0f2ff1a3220daa8b70a2870078e\akka-actor_2.11-2.3.3.jar | |
[00:23:24] [main/DEBUG] [FML]: C:\Users\Nessi\.gradle\caches\modules-2\files-2.1\com.typesafe\config\1.2.1\f771f71fdae3df231bcd54d5ca2d57f0bf93f467\config-1.2.1.jar | |
[00:23:24] [main/DEBUG] [FML]: C:\Users\Nessi\.gradle\caches\modules-2\files-2.1\org.scala-lang\scala-actors-migration_2.11\1.1.0\dfa8bc42b181d5b9f1a5dd147f8ae308b893eb6f\scala-actors-migration_2.11-1.1.0.jar | |
[00:23:24] [main/DEBUG] [FML]: C:\Users\Nessi\.gradle\caches\modules-2\files-2.1\org.scala-lang.plugins\scala-continuations-plugin_2.11.1\1.0.2\f361a3283452c57fa30c1ee69448995de23c60f7\scala-continuations-plugin_2.11.1-1.0.2.jar | |
[00:23:24] [main/DEBUG] [FML]: C:\Users\Nessi\.gradle\caches\modules-2\files-2.1\org.scala-lang\scala-compiler\2.11.1\56ea2e6c025e0821f28d73ca271218b8dd04926a\scala-compiler-2.11.1.jar | |
[00:23:24] [main/DEBUG] [FML]: C:\Users\Nessi\.gradle\caches\modules-2\files-2.1\org.scala-lang.plugins\scala-continuations-library_2.11\1.0.2\e517c53a7e9acd6b1668c5a35eccbaa3bab9aac\scala-continuations-library_2.11-1.0.2.jar | |
[00:23:24] [main/DEBUG] [FML]: C:\Users\Nessi\.gradle\caches\modules-2\files-2.1\org.scala-lang.modules\scala-parser-combinators_2.11\1.0.1\f05d7345bf5a58924f2837c6c1f4d73a938e1ff0\scala-parser-combinators_2.11-1.0.1.jar | |
[00:23:24] [main/DEBUG] [FML]: C:\Users\Nessi\.gradle\caches\modules-2\files-2.1\org.scala-lang\scala-reflect\2.11.1\6580347e61cc7f8e802941e7fde40fa83b8badeb\scala-reflect-2.11.1.jar | |
[00:23:24] [main/DEBUG] [FML]: C:\Users\Nessi\.gradle\caches\modules-2\files-2.1\org.scala-lang.modules\scala-swing_2.11\1.0.1\b1cdd92bd47b1e1837139c1c53020e86bb9112ae\scala-swing_2.11-1.0.1.jar | |
[00:23:24] [main/DEBUG] [FML]: C:\Users\Nessi\.gradle\caches\modules-2\files-2.1\org.scala-lang.modules\scala-xml_2.11\1.0.2\820fbca7e524b530fdadc594c39d49a21ea0337e\scala-xml_2.11-1.0.2.jar | |
[00:23:24] [main/DEBUG] [FML]: C:\Users\Nessi\.gradle\caches\modules-2\files-2.1\org.scala-lang\scala-library\2.11.1\e11da23da3eabab9f4777b9220e60d44c1aab6a\scala-library-2.11.1.jar | |
[00:23:24] [main/DEBUG] [FML]: C:\Users\Nessi\.gradle\caches\modules-2\files-2.1\lzma\lzma\0.0.1\521616dc7487b42bef0e803bd2fa3faf668101d7\lzma-0.0.1.jar | |
[00:23:24] [main/DEBUG] [FML]: C:\Users\Nessi\.gradle\caches\modules-2\files-2.1\net.sf.trove4j\trove4j\3.0.3\42ccaf4761f0dfdfa805c9e340d99a755907e2dd\trove4j-3.0.3.jar | |
[00:23:24] [main/DEBUG] [FML]: C:\Users\Nessi\.gradle\caches\modules-2\files-2.1\com.paulscode\codecjorbis\20101023\c73b5636faf089d9f00e8732a829577de25237ee\codecjorbis-20101023.jar | |
[00:23:24] [main/DEBUG] [FML]: C:\Users\Nessi\.gradle\caches\modules-2\files-2.1\com.paulscode\codecwav\20101023\12f031cfe88fef5c1dd36c563c0a3a69bd7261da\codecwav-20101023.jar | |
[00:23:24] [main/DEBUG] [FML]: C:\Users\Nessi\.gradle\caches\modules-2\files-2.1\com.paulscode\libraryjavasound\20101123\5c5e304366f75f9eaa2e8cca546a1fb6109348b3\libraryjavasound-20101123.jar | |
[00:23:24] [main/DEBUG] [FML]: C:\Users\Nessi\.gradle\caches\modules-2\files-2.1\com.paulscode\soundsystem\20120107\419c05fe9be71f792b2d76cfc9b67f1ed0fec7f6\soundsystem-20120107.jar | |
[00:23:24] [main/DEBUG] [FML]: C:\Users\Nessi\.gradle\caches\modules-2\files-2.1\java3d\vecmath\1.5.2\79846ba34cbd89e2422d74d53752f993dcc2ccaf\vecmath-1.5.2.jar | |
[00:23:24] [main/DEBUG] [FML]: C:\Users\Nessi\.gradle\caches\modules-2\files-2.1\ca.weblite\java-objc-bridge\1.0.0\6ef160c3133a78de015830860197602ca1c855d3\java-objc-bridge-1.0.0.jar | |
[00:23:24] [main/DEBUG] [FML]: C:\Users\Nessi\.gradle\caches\modules-2\files-2.1\org.codehaus.plexus\plexus-utils\3.1.0\60eecb6f15abdb1c653ad80abaac6fe188b3feaa\plexus-utils-3.1.0.jar | |
[00:23:24] [main/DEBUG] [FML]: C:\Users\Nessi\.gradle\caches\modules-2\files-2.1\org.lwjgl.lwjgl\lwjgl-platform\2.9.4-nightly-20150209\931074f46c795d2f7b30ed6395df5715cfd7675b\lwjgl-platform-2.9.4-nightly-20150209-natives-linux.jar | |
[00:23:24] [main/DEBUG] [FML]: C:\Users\Nessi\.gradle\caches\modules-2\files-2.1\org.lwjgl.lwjgl\lwjgl-platform\2.9.4-nightly-20150209\bcab850f8f487c3f4c4dbabde778bb82bd1a40ed\lwjgl-platform-2.9.4-nightly-20150209-natives-osx.jar | |
[00:23:24] [main/DEBUG] [FML]: C:\Users\Nessi\.gradle\caches\modules-2\files-2.1\org.lwjgl.lwjgl\lwjgl-platform\2.9.4-nightly-20150209\b84d5102b9dbfabfeb5e43c7e2828d98a7fc80e0\lwjgl-platform-2.9.4-nightly-20150209-natives-windows.jar | |
[00:23:24] [main/DEBUG] [FML]: C:\Users\Nessi\.gradle\caches\modules-2\files-2.1\net.java.jinput\jinput-platform\2.0.5\7ff832a6eb9ab6a767f1ade2b548092d0fa64795\jinput-platform-2.0.5-natives-linux.jar | |
[00:23:24] [main/DEBUG] [FML]: C:\Users\Nessi\.gradle\caches\modules-2\files-2.1\net.java.jinput\jinput-platform\2.0.5\53f9c919f34d2ca9de8c51fc4e1e8282029a9232\jinput-platform-2.0.5-natives-osx.jar | |
[00:23:24] [main/DEBUG] [FML]: C:\Users\Nessi\.gradle\caches\modules-2\files-2.1\net.java.jinput\jinput-platform\2.0.5\385ee093e01f587f30ee1c8a2ee7d408fd732e16\jinput-platform-2.0.5-natives-windows.jar | |
[00:23:24] [main/DEBUG] [FML]: C:\Users\Nessi\.gradle\caches\modules-2\files-2.1\org.scala-lang\scala-actors\2.11.0\8ccfb6541de179bb1c4d45cf414acee069b7f78b\scala-actors-2.11.0.jar | |
[00:23:24] [main/DEBUG] [FML]: C:\Users\Nessi\.gradle\caches\minecraft\net\minecraftforge\forge\1.12.2-14.23.5.2847\start | |
[00:23:24] [main/DEBUG] [FML]: C:\Program Files\JetBrains\IntelliJ IDEA 2019.3\lib\idea_rt.jar | |
[00:23:24] [main/DEBUG] [FML]: Java library path at launch is: | |
[00:23:24] [main/DEBUG] [FML]: C:\Users\Nessi\.jdks\corretto-1.8.0_302\bin | |
[00:23:24] [main/DEBUG] [FML]: C:\WINDOWS\Sun\Java\bin | |
[00:23:24] [main/DEBUG] [FML]: C:\WINDOWS\system32 | |
[00:23:24] [main/DEBUG] [FML]: C:\WINDOWS | |
[00:23:24] [main/DEBUG] [FML]: C:\Program Files\AdoptOpenJDK\jdk-8.0.282.8-hotspot\bin | |
[00:23:24] [main/DEBUG] [FML]: C:\Program Files\Python38\Scripts\ | |
[00:23:24] [main/DEBUG] [FML]: C:\Program Files\Python38\ | |
[00:23:24] [main/DEBUG] [FML]: C:\Windows\system32 | |
[00:23:24] [main/DEBUG] [FML]: C:\Windows | |
[00:23:24] [main/DEBUG] [FML]: C:\Windows\System32\Wbem | |
[00:23:24] [main/DEBUG] [FML]: C:\Windows\System32\WindowsPowerShell\v1.0\ | |
[00:23:24] [main/DEBUG] [FML]: C:\Windows\System32\OpenSSH\ | |
[00:23:24] [main/DEBUG] [FML]: C:\Program Files\Microsoft VS Code\bin | |
[00:23:24] [main/DEBUG] [FML]: C:\Program Files (x86)\Wolfram Research\WolframScript\ | |
[00:23:24] [main/DEBUG] [FML]: C:\Program Files (x86)\NVIDIA Corporation\PhysX\Common | |
[00:23:24] [main/DEBUG] [FML]: C:\apache-maven-3.6.3\bin | |
[00:23:24] [main/DEBUG] [FML]: C:\WINDOWS\system32 | |
[00:23:24] [main/DEBUG] [FML]: C:\WINDOWS | |
[00:23:24] [main/DEBUG] [FML]: C:\WINDOWS\System32\Wbem | |
[00:23:24] [main/DEBUG] [FML]: C:\WINDOWS\System32\WindowsPowerShell\v1.0\ | |
[00:23:24] [main/DEBUG] [FML]: C:\WINDOWS\System32\OpenSSH\ | |
[00:23:24] [main/DEBUG] [FML]: C:\Program Files\Git\cmd | |
[00:23:24] [main/DEBUG] [FML]: C:\Program Files\WindowsPowerShell\Scripts | |
[00:23:24] [main/DEBUG] [FML]: C:\Program Files\PuTTY\ | |
[00:23:24] [main/DEBUG] [FML]: C:\Program Files\dotnet\ | |
[00:23:24] [main/DEBUG] [FML]: C:\Users\Nessi\.cargo\bin | |
[00:23:24] [main/DEBUG] [FML]: C:\Users\Nessi\AppData\Local\Microsoft\WindowsApps | |
[00:23:24] [main/DEBUG] [FML]: | |
[00:23:24] [main/DEBUG] [FML]: C:\Users\Nessi\AppData\Local\Programs\Microsoft VS Code\bin | |
[00:23:24] [main/DEBUG] [FML]: C:\Users\Nessi\.dotnet\tools | |
[00:23:24] [main/DEBUG] [FML]: . | |
[00:23:24] [main/DEBUG] [FML]: C:/Users/Nessi/.gradle/caches/minecraft/net/minecraft/natives/1.12.2 | |
[00:23:24] [main/ERROR] [FML]: Apache Maven library folder was not in the format expected. Using default libraries directory. | |
[00:23:24] [main/ERROR] [FML]: Full: C:\Users\Nessi\.gradle\caches\modules-2\files-2.1\org.apache.maven\maven-artifact\3.5.3\7dc72b6d6d8a6dced3d294ed54c2cc3515ade9f4\maven-artifact-3.5.3.jar | |
[00:23:24] [main/ERROR] [FML]: Trimmed: c:/users/nessi/.gradle/caches/modules-2/files-2.1/org.apache.maven/maven-artifact/3.5.3/ | |
[00:23:24] [main/DEBUG] [FML]: Determined Minecraft Libraries Root: .\libraries | |
[00:23:24] [main/DEBUG] [FML]: Cleaning up mods folder: .\mods | |
[00:23:24] [main/INFO] [FML]: Managed to load a deobfuscated Minecraft name- we are in a deobfuscated environment. Skipping runtime deobfuscation | |
[00:23:24] [main/INFO] [FML]: Detected deobfuscated environment, loading log configs for colored console logs. | |
[00:23:25] [main/DEBUG] [FML]: Instantiating coremod class FMLCorePlugin | |
[00:23:25] [main/INFO] [FML]: Ignoring missing certificate for coremod FMLCorePlugin (net.minecraftforge.fml.relauncher.FMLCorePlugin), we are in deobf and it's a forge core plugin | |
[00:23:25] [main/DEBUG] [FML]: Added access transformer class net.minecraftforge.fml.common.asm.transformers.AccessTransformer to enqueued access transformers | |
[00:23:25] [main/DEBUG] [FML]: Enqueued coremod FMLCorePlugin | |
[00:23:25] [main/DEBUG] [FML]: Instantiating coremod class FMLForgePlugin | |
[00:23:25] [main/INFO] [FML]: Ignoring missing certificate for coremod FMLForgePlugin (net.minecraftforge.classloading.FMLForgePlugin), we are in deobf and it's a forge core plugin | |
[00:23:25] [main/DEBUG] [FML]: Enqueued coremod FMLForgePlugin | |
[00:23:25] [main/DEBUG] [FML]: All fundamental core mods are successfully located | |
[00:23:25] [main/INFO] [FML]: Found a command line coremod : net.dugged.cutelessmod.CutelessModLoadingPlugin | |
[00:23:25] [main/DEBUG] [FML]: Instantiating coremod class CutelessModLoadingPlugin | |
[00:23:25] [main/DEBUG] [FML]: The coremod net.dugged.cutelessmod.CutelessModLoadingPlugin requested minecraft version 1.12.2 and minecraft is 1.12.2. It will be loaded. | |
[00:23:25] [main/INFO] [FML]: Ignoring missing certificate for coremod CutelessModLoadingPlugin (net.dugged.cutelessmod.CutelessModLoadingPlugin), as this is probably a dev workspace | |
[00:23:25] [main/DEBUG] [mixin]: Catching java.util.ServiceConfigurationError:org.spongepowered.asm.service.IMixinServiceBootstrap: Provider org.spongepowered.asm.service.modlauncher.MixinServiceModLauncherBootstrap not a subtype initialising service | |
java.util.ServiceConfigurationError: org.spongepowered.asm.service.IMixinServiceBootstrap: Provider org.spongepowered.asm.service.modlauncher.MixinServiceModLauncherBootstrap not a subtype | |
at java.util.ServiceLoader.fail(ServiceLoader.java:239) ~[?:1.8.0_302] | |
at java.util.ServiceLoader.access$300(ServiceLoader.java:185) ~[?:1.8.0_302] | |
at java.util.ServiceLoader$LazyIterator.nextService(ServiceLoader.java:376) ~[?:1.8.0_302] | |
at java.util.ServiceLoader$LazyIterator.access$700(ServiceLoader.java:323) ~[?:1.8.0_302] | |
at java.util.ServiceLoader$LazyIterator$2.run(ServiceLoader.java:407) ~[?:1.8.0_302] | |
at java.security.AccessController.doPrivileged(Native Method) ~[?:1.8.0_302] | |
at java.util.ServiceLoader$LazyIterator.next(ServiceLoader.java:409) ~[?:1.8.0_302] | |
at java.util.ServiceLoader$1.next(ServiceLoader.java:480) ~[?:1.8.0_302] | |
at org.spongepowered.asm.service.MixinService.runBootServices(MixinService.java:89) [MixinService.class:0.8.3+Jenkins-b299.git-2046b44ad2fed1255256699f3b0b729bdb674369] | |
at org.spongepowered.asm.service.MixinService.<init>(MixinService.java:81) [MixinService.class:0.8.3+Jenkins-b299.git-2046b44ad2fed1255256699f3b0b729bdb674369] | |
at org.spongepowered.asm.service.MixinService.getInstance(MixinService.java:106) [MixinService.class:0.8.3+Jenkins-b299.git-2046b44ad2fed1255256699f3b0b729bdb674369] | |
at org.spongepowered.asm.service.MixinService.boot(MixinService.java:116) [MixinService.class:0.8.3+Jenkins-b299.git-2046b44ad2fed1255256699f3b0b729bdb674369] | |
at org.spongepowered.asm.launch.MixinBootstrap.<clinit>(MixinBootstrap.java:88) [MixinBootstrap.class:0.8.3+Jenkins-b299.git-2046b44ad2fed1255256699f3b0b729bdb674369] | |
at net.dugged.cutelessmod.CutelessModLoadingPlugin.<init>(CutelessModLoadingPlugin.java:14) [main/:?] | |
at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method) ~[?:1.8.0_302] | |
at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62) [?:1.8.0_302] | |
at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45) [?:1.8.0_302] | |
at java.lang.reflect.Constructor.newInstance(Constructor.java:423) [?:1.8.0_302] | |
at java.lang.Class.newInstance(Class.java:442) [?:1.8.0_302] | |
at net.minecraftforge.fml.relauncher.CoreModManager.loadCoreMod(CoreModManager.java:594) [forgeSrc-1.12.2-14.23.5.2847.jar:?] | |
at net.minecraftforge.fml.relauncher.CoreModManager.handleLaunch(CoreModManager.java:263) [forgeSrc-1.12.2-14.23.5.2847.jar:?] | |
at net.minecraftforge.fml.relauncher.FMLLaunchHandler.setupHome(FMLLaunchHandler.java:107) [forgeSrc-1.12.2-14.23.5.2847.jar:?] | |
at net.minecraftforge.fml.relauncher.FMLLaunchHandler.setupClient(FMLLaunchHandler.java:81) [forgeSrc-1.12.2-14.23.5.2847.jar:?] | |
at net.minecraftforge.fml.relauncher.FMLLaunchHandler.configureForClientLaunch(FMLLaunchHandler.java:42) [forgeSrc-1.12.2-14.23.5.2847.jar:?] | |
at net.minecraftforge.fml.common.launcher.FMLTweaker.injectIntoClassLoader(FMLTweaker.java:141) [forgeSrc-1.12.2-14.23.5.2847.jar:?] | |
at net.minecraft.launchwrapper.Launch.launch(Launch.java:115) [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_302] | |
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[?:1.8.0_302] | |
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.8.0_302] | |
at java.lang.reflect.Method.invoke(Method.java:498) ~[?:1.8.0_302] | |
at net.minecraftforge.gradle.GradleStartCommon.launch(GradleStartCommon.java:97) [start/:?] | |
at GradleStart.main(GradleStart.java:25) [start/:?] | |
[00:23:26] [main/DEBUG] [mixin]: MixinService [LaunchWrapper] was successfully booted in net.minecraft.launchwrapper.LaunchClassLoader@9597028 | |
[00:23:26] [main/DEBUG] [mixin]: Mixin bootstrap service org.spongepowered.asm.service.modlauncher.MixinServiceModLauncherBootstrap is not available: ModLauncher is not available | |
[00:23:26] [main/DEBUG] [mixin]: MixinService [LaunchWrapper] was successfully booted in sun.misc.Launcher$AppClassLoader@18b4aac2 | |
[00:23:26] [main/DEBUG] [mixin]: FML platform agent will ignore coremod net.dugged.cutelessmod.CutelessModLoadingPlugin specified on the command line | |
[00:23:26] [main/INFO] [mixin]: SpongePowered MIXIN Subsystem Version=0.8.3 Source=file:/C:/Users/Nessi/.gradle/caches/modules-2/files-2.1/org.spongepowered/mixin/0.8.3/5b08b203d5c601e2393be5cf9b4d39c26d12eb5f/mixin-0.8.3.jar Service=LaunchWrapper Env=CLIENT | |
[00:23:26] [main/INFO] [mixin]: Attempting to load Fernflower decompiler (Threaded mode) | |
[00:23:26] [main/INFO] [mixin]: Fernflower could not be loaded, exported classes will not be decompiled. NoClassDefFoundError: org/jetbrains/java/decompiler/main/extern/IResultSaver | |
[00:23:26] [main/DEBUG] [mixin]: Adding new mixin transformer proxy #1 | |
[00:23:26] [main/DEBUG] [mixin]: Initialising Mixin Platform Manager | |
[00:23:26] [main/DEBUG] [mixin]: Adding mixin platform agents for container ContainerHandleURI(file:/C:/Users/Nessi/.gradle/caches/modules-2/files-2.1/org.spongepowered/mixin/0.8.3/5b08b203d5c601e2393be5cf9b4d39c26d12eb5f/mixin-0.8.3.jar) | |
[00:23:26] [main/DEBUG] [mixin]: Instancing new MixinPlatformAgentFMLLegacy for ContainerHandleURI(file:/C:/Users/Nessi/.gradle/caches/modules-2/files-2.1/org.spongepowered/mixin/0.8.3/5b08b203d5c601e2393be5cf9b4d39c26d12eb5f/mixin-0.8.3.jar) | |
[00:23:26] [main/DEBUG] [mixin]: MixinPlatformAgentFMLLegacy rejected container ContainerHandleURI(file:/C:/Users/Nessi/.gradle/caches/modules-2/files-2.1/org.spongepowered/mixin/0.8.3/5b08b203d5c601e2393be5cf9b4d39c26d12eb5f/mixin-0.8.3.jar) | |
[00:23:26] [main/DEBUG] [mixin]: Instancing new MixinPlatformAgentLiteLoaderLegacy for ContainerHandleURI(file:/C:/Users/Nessi/.gradle/caches/modules-2/files-2.1/org.spongepowered/mixin/0.8.3/5b08b203d5c601e2393be5cf9b4d39c26d12eb5f/mixin-0.8.3.jar) | |
[00:23:26] [main/DEBUG] [mixin]: MixinPlatformAgentLiteLoaderLegacy rejected container ContainerHandleURI(file:/C:/Users/Nessi/.gradle/caches/modules-2/files-2.1/org.spongepowered/mixin/0.8.3/5b08b203d5c601e2393be5cf9b4d39c26d12eb5f/mixin-0.8.3.jar) | |
[00:23:26] [main/DEBUG] [mixin]: Instancing new MixinPlatformAgentDefault for ContainerHandleURI(file:/C:/Users/Nessi/.gradle/caches/modules-2/files-2.1/org.spongepowered/mixin/0.8.3/5b08b203d5c601e2393be5cf9b4d39c26d12eb5f/mixin-0.8.3.jar) | |
[00:23:26] [main/DEBUG] [mixin]: MixinPlatformAgentDefault accepted container ContainerHandleURI(file:/C:/Users/Nessi/.gradle/caches/modules-2/files-2.1/org.spongepowered/mixin/0.8.3/5b08b203d5c601e2393be5cf9b4d39c26d12eb5f/mixin-0.8.3.jar) | |
[00:23:26] [main/DEBUG] [mixin]: Scanning file:/C:/Users/Nessi/.jdks/corretto-1.8.0_302/jre/lib/charsets.jar for mixin tweaker | |
[00:23:26] [main/DEBUG] [mixin]: Scanning file:/C:/Users/Nessi/.jdks/corretto-1.8.0_302/jre/lib/ext/access-bridge-64.jar for mixin tweaker | |
[00:23:26] [main/DEBUG] [mixin]: Scanning file:/C:/Users/Nessi/.jdks/corretto-1.8.0_302/jre/lib/ext/cldrdata.jar for mixin tweaker | |
[00:23:26] [main/DEBUG] [mixin]: Scanning file:/C:/Users/Nessi/.jdks/corretto-1.8.0_302/jre/lib/ext/dnsns.jar for mixin tweaker | |
[00:23:26] [main/DEBUG] [mixin]: Scanning file:/C:/Users/Nessi/.jdks/corretto-1.8.0_302/jre/lib/ext/jaccess.jar for mixin tweaker | |
[00:23:26] [main/DEBUG] [mixin]: Scanning file:/C:/Users/Nessi/.jdks/corretto-1.8.0_302/jre/lib/ext/jfxrt.jar for mixin tweaker | |
[00:23:26] [main/DEBUG] [mixin]: Scanning file:/C:/Users/Nessi/.jdks/corretto-1.8.0_302/jre/lib/ext/localedata.jar for mixin tweaker | |
[00:23:26] [main/DEBUG] [mixin]: Scanning file:/C:/Users/Nessi/.jdks/corretto-1.8.0_302/jre/lib/ext/nashorn.jar for mixin tweaker | |
[00:23:26] [main/DEBUG] [mixin]: Scanning file:/C:/Users/Nessi/.jdks/corretto-1.8.0_302/jre/lib/ext/sunec.jar for mixin tweaker | |
[00:23:26] [main/DEBUG] [mixin]: Scanning file:/C:/Users/Nessi/.jdks/corretto-1.8.0_302/jre/lib/ext/sunjce_provider.jar for mixin tweaker | |
[00:23:26] [main/DEBUG] [mixin]: Scanning file:/C:/Users/Nessi/.jdks/corretto-1.8.0_302/jre/lib/ext/sunmscapi.jar for mixin tweaker | |
[00:23:26] [main/DEBUG] [mixin]: Scanning file:/C:/Users/Nessi/.jdks/corretto-1.8.0_302/jre/lib/ext/sunpkcs11.jar for mixin tweaker | |
[00:23:26] [main/DEBUG] [mixin]: Scanning file:/C:/Users/Nessi/.jdks/corretto-1.8.0_302/jre/lib/ext/zipfs.jar for mixin tweaker | |
[00:23:26] [main/DEBUG] [mixin]: Scanning file:/C:/Users/Nessi/.jdks/corretto-1.8.0_302/jre/lib/jce.jar for mixin tweaker | |
[00:23:26] [main/DEBUG] [mixin]: Scanning file:/C:/Users/Nessi/.jdks/corretto-1.8.0_302/jre/lib/jfr.jar for mixin tweaker | |
[00:23:26] [main/DEBUG] [mixin]: Scanning file:/C:/Users/Nessi/.jdks/corretto-1.8.0_302/jre/lib/jfxswt.jar for mixin tweaker | |
[00:23:26] [main/DEBUG] [mixin]: Scanning file:/C:/Users/Nessi/.jdks/corretto-1.8.0_302/jre/lib/jsse.jar for mixin tweaker | |
[00:23:26] [main/DEBUG] [mixin]: Scanning file:/C:/Users/Nessi/.jdks/corretto-1.8.0_302/jre/lib/management-agent.jar for mixin tweaker | |
[00:23:26] [main/DEBUG] [mixin]: Scanning file:/C:/Users/Nessi/.jdks/corretto-1.8.0_302/jre/lib/resources.jar for mixin tweaker | |
[00:23:26] [main/DEBUG] [mixin]: Scanning file:/C:/Users/Nessi/.jdks/corretto-1.8.0_302/jre/lib/rt.jar for mixin tweaker | |
[00:23:26] [main/DEBUG] [mixin]: Scanning file:/C:/Users/Nessi/IdeaProjects/CutelessMod/build/classes/java/main/ for mixin tweaker | |
[00:23:26] [main/DEBUG] [mixin]: Scanning file:/C:/Users/Nessi/IdeaProjects/CutelessMod/build/resources/main/ for mixin tweaker | |
[00:23:26] [main/DEBUG] [mixin]: Scanning file:/C:/Users/Nessi/.gradle/caches/minecraft/deobfedDeps/compileDummy.jar for mixin tweaker | |
[00:23:26] [main/DEBUG] [mixin]: Scanning file:/C:/Users/Nessi/.gradle/caches/minecraft/deobfedDeps/providedDummy.jar for mixin tweaker | |
[00:23:26] [main/DEBUG] [mixin]: Scanning file:/C:/Users/Nessi/.gradle/caches/modules-2/files-2.1/org.spongepowered/mixin/0.8.3/5b08b203d5c601e2393be5cf9b4d39c26d12eb5f/mixin-0.8.3.jar for mixin tweaker | |
[00:23:26] [main/DEBUG] [mixin]: Scanning file:/C:/Users/Nessi/.gradle/caches/minecraft/net/minecraftforge/forge/1.12.2-14.23.5.2847/stable/39/forgeSrc-1.12.2-14.23.5.2847.jar for mixin tweaker | |
[00:23:26] [main/DEBUG] [mixin]: Scanning file:/C:/Users/Nessi/.gradle/caches/modules-2/files-2.1/com.mojang/authlib/1.5.25/9834cdf236c22e84b946bba989e2f94ef5897c3c/authlib-1.5.25.jar for mixin tweaker | |
[00:23:26] [main/DEBUG] [mixin]: Scanning file:/C:/Users/Nessi/.gradle/caches/modules-2/files-2.1/com.google.code.findbugs/jsr305/3.0.1/f7be08ec23c21485b9b5a1cf1654c2ec8c58168d/jsr305-3.0.1.jar for mixin tweaker | |
[00:23:26] [main/DEBUG] [mixin]: Scanning file:/C:/Users/Nessi/.gradle/caches/modules-2/files-2.1/com.mojang/patchy/1.2.3/e3107ca512d704a434076a153a6e1149e3787275/patchy-1.2.3.jar for mixin tweaker | |
[00:23:26] [main/DEBUG] [mixin]: Scanning file:/C:/Users/Nessi/.gradle/caches/modules-2/files-2.1/oshi-project/oshi-core/1.1/9ddf7b048a8d701be231c0f4f95fd986198fd2d8/oshi-core-1.1.jar for mixin tweaker | |
[00:23:26] [main/DEBUG] [mixin]: Scanning file:/C:/Users/Nessi/.gradle/caches/modules-2/files-2.1/com.mojang/text2speech/1.10.3/48fd510879dff266c3815947de66e3d4809f8668/text2speech-1.10.3.jar for mixin tweaker | |
[00:23:26] [main/DEBUG] [mixin]: Scanning file:/C:/Users/Nessi/.gradle/caches/modules-2/files-2.1/net.java.dev.jna/jna/4.4.0/cb208278274bf12ebdb56c61bd7407e6f774d65a/jna-4.4.0.jar for mixin tweaker | |
[00:23:26] [main/DEBUG] [mixin]: Scanning file:/C:/Users/Nessi/.gradle/caches/modules-2/files-2.1/net.java.dev.jna/platform/3.4.0/e3f70017be8100d3d6923f50b3d2ee17714e9c13/platform-3.4.0.jar for mixin tweaker | |
[00:23:26] [main/DEBUG] [mixin]: Scanning file:/C:/Users/Nessi/.gradle/caches/modules-2/files-2.1/com.ibm.icu/icu4j-core-mojang/51.2/63d216a9311cca6be337c1e458e587f99d382b84/icu4j-core-mojang-51.2.jar for mixin tweaker | |
[00:23:26] [main/DEBUG] [mixin]: Scanning file:/C:/Users/Nessi/.gradle/caches/modules-2/files-2.1/net.minecraft/launchwrapper/1.12/111e7bea9c968cdb3d06ef4632bf7ff0824d0f36/launchwrapper-1.12.jar for mixin tweaker | |
[00:23:26] [main/DEBUG] [mixin]: Scanning file:/C:/Users/Nessi/.gradle/caches/modules-2/files-2.1/net.sf.jopt-simple/jopt-simple/5.0.3/cdd846cfc4e0f7eefafc02c0f5dce32b9303aa2a/jopt-simple-5.0.3.jar for mixin tweaker | |
[00:23:26] [main/DEBUG] [mixin]: Scanning file:/C:/Users/Nessi/.gradle/caches/modules-2/files-2.1/io.netty/netty-all/4.1.9.Final/97860965d6a0a6b98e7f569f3f966727b8db75/netty-all-4.1.9.Final.jar for mixin tweaker | |
[00:23:26] [main/DEBUG] [mixin]: Scanning file:/C:/Users/Nessi/.gradle/caches/modules-2/files-2.1/com.google.guava/guava/21.0/3a3d111be1be1b745edfa7d91678a12d7ed38709/guava-21.0.jar for mixin tweaker | |
[00:23:26] [main/DEBUG] [mixin]: Scanning file:/C:/Users/Nessi/.gradle/caches/modules-2/files-2.1/org.apache.maven/maven-artifact/3.5.3/7dc72b6d6d8a6dced3d294ed54c2cc3515ade9f4/maven-artifact-3.5.3.jar for mixin tweaker | |
[00:23:26] [main/DEBUG] [mixin]: Scanning file:/C:/Users/Nessi/.gradle/caches/modules-2/files-2.1/org.apache.commons/commons-lang3/3.5/6c6c702c89bfff3cd9e80b04d668c5e190d588c6/commons-lang3-3.5.jar for mixin tweaker | |
[00:23:26] [main/DEBUG] [mixin]: Scanning file:/C:/Users/Nessi/.gradle/caches/modules-2/files-2.1/commons-io/commons-io/2.5/2852e6e05fbb95076fc091f6d1780f1f8fe35e0f/commons-io-2.5.jar for mixin tweaker | |
[00:23:26] [main/DEBUG] [mixin]: Scanning file:/C:/Users/Nessi/.gradle/caches/modules-2/files-2.1/com.mojang/realms/1.10.22/bd0dccebdf3744c75f1ca20063f16e8f7d5e663f/realms-1.10.22.jar for mixin tweaker | |
[00:23:26] [main/DEBUG] [mixin]: Scanning file:/C:/Users/Nessi/.gradle/caches/modules-2/files-2.1/org.apache.httpcomponents/httpclient/4.3.3/18f4247ff4572a074444572cee34647c43e7c9c7/httpclient-4.3.3.jar for mixin tweaker | |
[00:23:26] [main/DEBUG] [mixin]: Scanning file:/C:/Users/Nessi/.gradle/caches/modules-2/files-2.1/commons-codec/commons-codec/1.10/4b95f4897fa13f2cd904aee711aeafc0c5295cd8/commons-codec-1.10.jar for mixin tweaker | |
[00:23:26] [main/DEBUG] [mixin]: Scanning file:/C:/Users/Nessi/.gradle/caches/modules-2/files-2.1/com.paulscode/librarylwjglopenal/20100824/73e80d0794c39665aec3f62eee88ca91676674ef/librarylwjglopenal-20100824.jar for mixin tweaker | |
[00:23:26] [main/DEBUG] [mixin]: Scanning file:/C:/Users/Nessi/.gradle/caches/modules-2/files-2.1/org.lwjgl.lwjgl/lwjgl_util/2.9.4-nightly-20150209/d51a7c040a721d13efdfbd34f8b257b2df882ad0/lwjgl_util-2.9.4-nightly-20150209.jar for mixin tweaker | |
[00:23:26] [main/DEBUG] [mixin]: Scanning file:/C:/Users/Nessi/.gradle/caches/modules-2/files-2.1/org.lwjgl.lwjgl/lwjgl/2.9.4-nightly-20150209/697517568c68e78ae0b4544145af031c81082dfe/lwjgl-2.9.4-nightly-20150209.jar for mixin tweaker | |
[00:23:26] [main/DEBUG] [mixin]: Scanning file:/C:/Users/Nessi/.gradle/caches/modules-2/files-2.1/net.java.jinput/jinput/2.0.5/39c7796b469a600f72380316f6b1f11db6c2c7c4/jinput-2.0.5.jar for mixin tweaker | |
[00:23:26] [main/DEBUG] [mixin]: Scanning file:/C:/Users/Nessi/.gradle/caches/modules-2/files-2.1/net.java.jutils/jutils/1.0.0/e12fe1fda814bd348c1579329c86943d2cd3c6a6/jutils-1.0.0.jar for mixin tweaker | |
[00:23:26] [main/DEBUG] [mixin]: Scanning file:/C:/Users/Nessi/.gradle/caches/modules-2/files-2.1/com.google.code.gson/gson/2.8.0/c4ba5371a29ac9b2ad6129b1d39ea38750043eff/gson-2.8.0.jar for mixin tweaker | |
[00:23:26] [main/DEBUG] [mixin]: Scanning file:/C:/Users/Nessi/.gradle/caches/modules-2/files-2.1/org.apache.commons/commons-compress/1.8.1/a698750c16740fd5b3871425f4cb3bbaa87f529d/commons-compress-1.8.1.jar for mixin tweaker | |
[00:23:26] [main/DEBUG] [mixin]: Scanning file:/C:/Users/Nessi/.gradle/caches/modules-2/files-2.1/commons-logging/commons-logging/1.1.3/f6f66e966c70a83ffbdb6f17a0919eaf7c8aca7f/commons-logging-1.1.3.jar for mixin tweaker | |
[00:23:26] [main/DEBUG] [mixin]: Scanning file:/C:/Users/Nessi/.gradle/caches/modules-2/files-2.1/org.apache.httpcomponents/httpcore/4.3.2/31fbbff1ddbf98f3aa7377c94d33b0447c646b6e/httpcore-4.3.2.jar for mixin tweaker | |
[00:23:26] [main/DEBUG] [mixin]: Scanning file:/C:/Users/Nessi/.gradle/caches/modules-2/files-2.1/it.unimi.dsi/fastutil/7.1.0/9835253257524c1be7ab50c057aa2d418fb72082/fastutil-7.1.0.jar for mixin tweaker | |
[00:23:26] [main/DEBUG] [mixin]: Scanning file:/C:/Users/Nessi/.gradle/caches/modules-2/files-2.1/org.apache.logging.log4j/log4j-core/2.8.1/4ac28ff2f1ddf05dae3043a190451e8c46b73c31/log4j-core-2.8.1.jar for mixin tweaker | |
[00:23:26] [main/DEBUG] [mixin]: Scanning file:/C:/Users/Nessi/.gradle/caches/modules-2/files-2.1/org.apache.logging.log4j/log4j-api/2.8.1/e801d13612e22cad62a3f4f3fe7fdbe6334a8e72/log4j-api-2.8.1.jar for mixin tweaker | |
[00:23:26] [main/DEBUG] [mixin]: Scanning file:/C:/Users/Nessi/.gradle/caches/modules-2/files-2.1/org.jline/jline/3.5.1/51800e9d7a13608894a5a28eed0f5c7fa2f300fb/jline-3.5.1.jar for mixin tweaker | |
[00:23:26] [main/DEBUG] [mixin]: Scanning file:/C:/Users/Nessi/.gradle/caches/modules-2/files-2.1/org.ow2.asm/asm-debug-all/5.2/3354e11e2b34215f06dab629ab88e06aca477c19/asm-debug-all-5.2.jar for mixin tweaker | |
[00:23:26] [main/DEBUG] [mixin]: Scanning file:/C:/Users/Nessi/.gradle/caches/modules-2/files-2.1/com.typesafe.akka/akka-actor_2.11/2.3.3/ed62e9fc709ca0f2ff1a3220daa8b70a2870078e/akka-actor_2.11-2.3.3.jar for mixin tweaker | |
[00:23:26] [main/DEBUG] [mixin]: Scanning file:/C:/Users/Nessi/.gradle/caches/modules-2/files-2.1/com.typesafe/config/1.2.1/f771f71fdae3df231bcd54d5ca2d57f0bf93f467/config-1.2.1.jar for mixin tweaker | |
[00:23:26] [main/DEBUG] [mixin]: Scanning file:/C:/Users/Nessi/.gradle/caches/modules-2/files-2.1/org.scala-lang/scala-actors-migration_2.11/1.1.0/dfa8bc42b181d5b9f1a5dd147f8ae308b893eb6f/scala-actors-migration_2.11-1.1.0.jar for mixin tweaker | |
[00:23:26] [main/DEBUG] [mixin]: Scanning file:/C:/Users/Nessi/.gradle/caches/modules-2/files-2.1/org.scala-lang.plugins/scala-continuations-plugin_2.11.1/1.0.2/f361a3283452c57fa30c1ee69448995de23c60f7/scala-continuations-plugin_2.11.1-1.0.2.jar for mixin tweaker | |
[00:23:26] [main/DEBUG] [mixin]: Scanning file:/C:/Users/Nessi/.gradle/caches/modules-2/files-2.1/org.scala-lang/scala-compiler/2.11.1/56ea2e6c025e0821f28d73ca271218b8dd04926a/scala-compiler-2.11.1.jar for mixin tweaker | |
[00:23:26] [main/DEBUG] [mixin]: Scanning file:/C:/Users/Nessi/.gradle/caches/modules-2/files-2.1/org.scala-lang.plugins/scala-continuations-library_2.11/1.0.2/e517c53a7e9acd6b1668c5a35eccbaa3bab9aac/scala-continuations-library_2.11-1.0.2.jar for mixin tweaker | |
[00:23:26] [main/DEBUG] [mixin]: Scanning file:/C:/Users/Nessi/.gradle/caches/modules-2/files-2.1/org.scala-lang.modules/scala-parser-combinators_2.11/1.0.1/f05d7345bf5a58924f2837c6c1f4d73a938e1ff0/scala-parser-combinators_2.11-1.0.1.jar for mixin tweaker | |
[00:23:26] [main/DEBUG] [mixin]: Scanning file:/C:/Users/Nessi/.gradle/caches/modules-2/files-2.1/org.scala-lang/scala-reflect/2.11.1/6580347e61cc7f8e802941e7fde40fa83b8badeb/scala-reflect-2.11.1.jar for mixin tweaker | |
[00:23:26] [main/DEBUG] [mixin]: Scanning file:/C:/Users/Nessi/.gradle/caches/modules-2/files-2.1/org.scala-lang.modules/scala-swing_2.11/1.0.1/b1cdd92bd47b1e1837139c1c53020e86bb9112ae/scala-swing_2.11-1.0.1.jar for mixin tweaker | |
[00:23:26] [main/DEBUG] [mixin]: Scanning file:/C:/Users/Nessi/.gradle/caches/modules-2/files-2.1/org.scala-lang.modules/scala-xml_2.11/1.0.2/820fbca7e524b530fdadc594c39d49a21ea0337e/scala-xml_2.11-1.0.2.jar for mixin tweaker | |
[00:23:26] [main/DEBUG] [mixin]: Scanning file:/C:/Users/Nessi/.gradle/caches/modules-2/files-2.1/org.scala-lang/scala-library/2.11.1/e11da23da3eabab9f4777b9220e60d44c1aab6a/scala-library-2.11.1.jar for mixin tweaker | |
[00:23:26] [main/DEBUG] [mixin]: Scanning file:/C:/Users/Nessi/.gradle/caches/modules-2/files-2.1/lzma/lzma/0.0.1/521616dc7487b42bef0e803bd2fa3faf668101d7/lzma-0.0.1.jar for mixin tweaker | |
[00:23:26] [main/DEBUG] [mixin]: Scanning file:/C:/Users/Nessi/.gradle/caches/modules-2/files-2.1/net.sf.trove4j/trove4j/3.0.3/42ccaf4761f0dfdfa805c9e340d99a755907e2dd/trove4j-3.0.3.jar for mixin tweaker | |
[00:23:26] [main/DEBUG] [mixin]: Scanning file:/C:/Users/Nessi/.gradle/caches/modules-2/files-2.1/com.paulscode/codecjorbis/20101023/c73b5636faf089d9f00e8732a829577de25237ee/codecjorbis-20101023.jar for mixin tweaker | |
[00:23:26] [main/DEBUG] [mixin]: Scanning file:/C:/Users/Nessi/.gradle/caches/modules-2/files-2.1/com.paulscode/codecwav/20101023/12f031cfe88fef5c1dd36c563c0a3a69bd7261da/codecwav-20101023.jar for mixin tweaker | |
[00:23:26] [main/DEBUG] [mixin]: Scanning file:/C:/Users/Nessi/.gradle/caches/modules-2/files-2.1/com.paulscode/libraryjavasound/20101123/5c5e304366f75f9eaa2e8cca546a1fb6109348b3/libraryjavasound-20101123.jar for mixin tweaker | |
[00:23:26] [main/DEBUG] [mixin]: Scanning file:/C:/Users/Nessi/.gradle/caches/modules-2/files-2.1/com.paulscode/soundsystem/20120107/419c05fe9be71f792b2d76cfc9b67f1ed0fec7f6/soundsystem-20120107.jar for mixin tweaker | |
[00:23:26] [main/DEBUG] [mixin]: Scanning file:/C:/Users/Nessi/.gradle/caches/modules-2/files-2.1/java3d/vecmath/1.5.2/79846ba34cbd89e2422d74d53752f993dcc2ccaf/vecmath-1.5.2.jar for mixin tweaker | |
[00:23:26] [main/DEBUG] [mixin]: Scanning file:/C:/Users/Nessi/.gradle/caches/modules-2/files-2.1/ca.weblite/java-objc-bridge/1.0.0/6ef160c3133a78de015830860197602ca1c855d3/java-objc-bridge-1.0.0.jar for mixin tweaker | |
[00:23:26] [main/DEBUG] [mixin]: Scanning file:/C:/Users/Nessi/.gradle/caches/modules-2/files-2.1/org.codehaus.plexus/plexus-utils/3.1.0/60eecb6f15abdb1c653ad80abaac6fe188b3feaa/plexus-utils-3.1.0.jar for mixin tweaker | |
[00:23:26] [main/DEBUG] [mixin]: Scanning file:/C:/Users/Nessi/.gradle/caches/modules-2/files-2.1/org.lwjgl.lwjgl/lwjgl-platform/2.9.4-nightly-20150209/931074f46c795d2f7b30ed6395df5715cfd7675b/lwjgl-platform-2.9.4-nightly-20150209-natives-linux.jar for mixin tweaker | |
[00:23:26] [main/DEBUG] [mixin]: Scanning file:/C:/Users/Nessi/.gradle/caches/modules-2/files-2.1/org.lwjgl.lwjgl/lwjgl-platform/2.9.4-nightly-20150209/bcab850f8f487c3f4c4dbabde778bb82bd1a40ed/lwjgl-platform-2.9.4-nightly-20150209-natives-osx.jar for mixin tweaker | |
[00:23:26] [main/DEBUG] [mixin]: Scanning file:/C:/Users/Nessi/.gradle/caches/modules-2/files-2.1/org.lwjgl.lwjgl/lwjgl-platform/2.9.4-nightly-20150209/b84d5102b9dbfabfeb5e43c7e2828d98a7fc80e0/lwjgl-platform-2.9.4-nightly-20150209-natives-windows.jar for mixin tweaker | |
[00:23:26] [main/DEBUG] [mixin]: Scanning file:/C:/Users/Nessi/.gradle/caches/modules-2/files-2.1/net.java.jinput/jinput-platform/2.0.5/7ff832a6eb9ab6a767f1ade2b548092d0fa64795/jinput-platform-2.0.5-natives-linux.jar for mixin tweaker | |
[00:23:26] [main/DEBUG] [mixin]: Scanning file:/C:/Users/Nessi/.gradle/caches/modules-2/files-2.1/net.java.jinput/jinput-platform/2.0.5/53f9c919f34d2ca9de8c51fc4e1e8282029a9232/jinput-platform-2.0.5-natives-osx.jar for mixin tweaker | |
[00:23:26] [main/DEBUG] [mixin]: Scanning file:/C:/Users/Nessi/.gradle/caches/modules-2/files-2.1/net.java.jinput/jinput-platform/2.0.5/385ee093e01f587f30ee1c8a2ee7d408fd732e16/jinput-platform-2.0.5-natives-windows.jar for mixin tweaker | |
[00:23:26] [main/DEBUG] [mixin]: Scanning file:/C:/Users/Nessi/.gradle/caches/modules-2/files-2.1/org.scala-lang/scala-actors/2.11.0/8ccfb6541de179bb1c4d45cf414acee069b7f78b/scala-actors-2.11.0.jar for mixin tweaker | |
[00:23:26] [main/DEBUG] [mixin]: Scanning file:/C:/Users/Nessi/.gradle/caches/minecraft/net/minecraftforge/forge/1.12.2-14.23.5.2847/start/ for mixin tweaker | |
[00:23:26] [main/DEBUG] [mixin]: Scanning file:/C:/Program%20Files/JetBrains/IntelliJ%20IDEA%202019.3/lib/idea_rt.jar for mixin tweaker | |
[00:23:26] [main/DEBUG] [mixin]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:ContainerHandleURI(file:/C:/Users/Nessi/.gradle/caches/modules-2/files-2.1/org.spongepowered/mixin/0.8.3/5b08b203d5c601e2393be5cf9b4d39c26d12eb5f/mixin-0.8.3.jar)] | |
[00:23:26] [main/DEBUG] [mixin]: Creating FML remapper adapter: org.spongepowered.asm.bridge.RemapperAdapterFML | |
[00:23:26] [main/INFO] [mixin]: Preparing mixins for MixinEnvironment[PREINIT] | |
[00:23:26] [main/INFO] [mixin]: Initialised Mixin FML Remapper Adapter with net.minecraftforge.fml.common.asm.transformers.deobf.FMLDeobfuscatingRemapper@31dadd46 | |
[00:23:26] [main/INFO] [mixin]: Compatibility level set to JAVA_8 | |
[00:23:26] [main/DEBUG] [FML]: Enqueued coremod CutelessModLoadingPlugin | |
[00:23:26] [main/DEBUG] [FML]: Discovering coremods | |
[00:23:26] [main/INFO] [FML]: Searching C:\Users\Nessi\IdeaProjects\CutelessMod\run\.\mods for mods | |
[00:23:26] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.gradle.tweakers.CoremodTweaker | |
[00:23:26] [main/INFO] [GradleStart]: Injecting location in coremod net.minecraftforge.fml.relauncher.FMLCorePlugin | |
[00:23:26] [main/INFO] [GradleStart]: Injecting location in coremod net.minecraftforge.classloading.FMLForgePlugin | |
[00:23:26] [main/INFO] [GradleStart]: Injecting location in coremod net.dugged.cutelessmod.CutelessModLoadingPlugin | |
[00:23:26] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLInjectionAndSortingTweaker | |
[00:23:26] [main/INFO] [LaunchWrapper]: Loading tweak class name org.spongepowered.asm.mixin.EnvironmentStateTweaker | |
[00:23:26] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLDeobfTweaker | |
[00:23:26] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.gradle.tweakers.AccessTransformerTweaker | |
[00:23:26] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLInjectionAndSortingTweaker | |
[00:23:26] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLInjectionAndSortingTweaker | |
[00:23:26] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper | |
[00:23:26] [main/DEBUG] [FML]: Injecting coremod FMLCorePlugin \{net.minecraftforge.fml.relauncher.FMLCorePlugin\} class transformers | |
[00:23:26] [main/TRACE] [FML]: Registering transformer net.minecraftforge.fml.common.asm.transformers.SideTransformer | |
[00:23:26] [main/INFO] [mixin]: Checking for additional mixins for MixinEnvironment[PREINIT] | |
[00:23:26] [main/TRACE] [FML]: Registering transformer net.minecraftforge.fml.common.asm.transformers.EventSubscriptionTransformer | |
[00:23:26] [main/TRACE] [FML]: Registering transformer net.minecraftforge.fml.common.asm.transformers.EventSubscriberTransformer | |
[00:23:26] [main/TRACE] [FML]: Registering transformer net.minecraftforge.fml.common.asm.transformers.SoundEngineFixTransformer | |
[00:23:26] [main/DEBUG] [FML]: Injection complete | |
[00:23:26] [main/DEBUG] [FML]: Running coremod plugin for FMLCorePlugin \{net.minecraftforge.fml.relauncher.FMLCorePlugin\} | |
[00:23:26] [main/DEBUG] [FML]: Running coremod plugin FMLCorePlugin | |
[00:23:26] [main/DEBUG] [FML]: Loading deobfuscation resource C:\Users\Nessi\.gradle\caches\minecraft\de\oceanlabs\mcp\mcp_stable\39\1.12.2\srgs\srg-mcp.srg with 36076 records | |
[00:23:29] [main/ERROR] [FML]: FML appears to be missing any signature data. This is not a good thing | |
[00:23:29] [main/DEBUG] [FML]: Coremod plugin class FMLCorePlugin run successfully | |
[00:23:29] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper | |
[00:23:29] [main/DEBUG] [FML]: Injecting coremod FMLForgePlugin \{net.minecraftforge.classloading.FMLForgePlugin\} class transformers | |
[00:23:29] [main/DEBUG] [FML]: Injection complete | |
[00:23:29] [main/DEBUG] [FML]: Running coremod plugin for FMLForgePlugin \{net.minecraftforge.classloading.FMLForgePlugin\} | |
[00:23:29] [main/DEBUG] [FML]: Running coremod plugin FMLForgePlugin | |
[00:23:29] [main/DEBUG] [FML]: Coremod plugin class FMLForgePlugin run successfully | |
[00:23:29] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper | |
[00:23:29] [main/DEBUG] [FML]: Injecting coremod CutelessModLoadingPlugin \{net.dugged.cutelessmod.CutelessModLoadingPlugin\} class transformers | |
[00:23:29] [main/DEBUG] [FML]: Injection complete | |
[00:23:29] [main/DEBUG] [FML]: Running coremod plugin for CutelessModLoadingPlugin \{net.dugged.cutelessmod.CutelessModLoadingPlugin\} | |
[00:23:29] [main/DEBUG] [FML]: Running coremod plugin CutelessModLoadingPlugin | |
[00:23:29] [main/DEBUG] [FML]: Coremod plugin class CutelessModLoadingPlugin run successfully | |
[00:23:29] [main/INFO] [LaunchWrapper]: Calling tweak class org.spongepowered.asm.mixin.EnvironmentStateTweaker | |
[00:23:29] [main/DEBUG] [mixin]: Processing launch tasks for PlatformAgent[MixinPlatformAgentDefault:ContainerHandleURI(file:/C:/Users/Nessi/.gradle/caches/modules-2/files-2.1/org.spongepowered/mixin/0.8.3/5b08b203d5c601e2393be5cf9b4d39c26d12eb5f/mixin-0.8.3.jar)] | |
[00:23:29] [main/DEBUG] [mixin]: Scanning file:/C:/Users/Nessi/.jdks/corretto-1.8.0_302/jre/lib/charsets.jar for mixin tweaker | |
[00:23:29] [main/DEBUG] [mixin]: Scanning file:/C:/Users/Nessi/.jdks/corretto-1.8.0_302/jre/lib/ext/access-bridge-64.jar for mixin tweaker | |
[00:23:29] [main/DEBUG] [mixin]: Scanning file:/C:/Users/Nessi/.jdks/corretto-1.8.0_302/jre/lib/ext/cldrdata.jar for mixin tweaker | |
[00:23:29] [main/DEBUG] [mixin]: Scanning file:/C:/Users/Nessi/.jdks/corretto-1.8.0_302/jre/lib/ext/dnsns.jar for mixin tweaker | |
[00:23:29] [main/DEBUG] [mixin]: Scanning file:/C:/Users/Nessi/.jdks/corretto-1.8.0_302/jre/lib/ext/jaccess.jar for mixin tweaker | |
[00:23:29] [main/DEBUG] [mixin]: Scanning file:/C:/Users/Nessi/.jdks/corretto-1.8.0_302/jre/lib/ext/jfxrt.jar for mixin tweaker | |
[00:23:29] [main/DEBUG] [mixin]: Scanning file:/C:/Users/Nessi/.jdks/corretto-1.8.0_302/jre/lib/ext/localedata.jar for mixin tweaker | |
[00:23:29] [main/DEBUG] [mixin]: Scanning file:/C:/Users/Nessi/.jdks/corretto-1.8.0_302/jre/lib/ext/nashorn.jar for mixin tweaker | |
[00:23:29] [main/DEBUG] [mixin]: Scanning file:/C:/Users/Nessi/.jdks/corretto-1.8.0_302/jre/lib/ext/sunec.jar for mixin tweaker | |
[00:23:29] [main/DEBUG] [mixin]: Scanning file:/C:/Users/Nessi/.jdks/corretto-1.8.0_302/jre/lib/ext/sunjce_provider.jar for mixin tweaker | |
[00:23:29] [main/DEBUG] [mixin]: Scanning file:/C:/Users/Nessi/.jdks/corretto-1.8.0_302/jre/lib/ext/sunmscapi.jar for mixin tweaker | |
[00:23:29] [main/DEBUG] [mixin]: Scanning file:/C:/Users/Nessi/.jdks/corretto-1.8.0_302/jre/lib/ext/sunpkcs11.jar for mixin tweaker | |
[00:23:29] [main/DEBUG] [mixin]: Scanning file:/C:/Users/Nessi/.jdks/corretto-1.8.0_302/jre/lib/ext/zipfs.jar for mixin tweaker | |
[00:23:29] [main/DEBUG] [mixin]: Scanning file:/C:/Users/Nessi/.jdks/corretto-1.8.0_302/jre/lib/jce.jar for mixin tweaker | |
[00:23:29] [main/DEBUG] [mixin]: Scanning file:/C:/Users/Nessi/.jdks/corretto-1.8.0_302/jre/lib/jfr.jar for mixin tweaker | |
[00:23:29] [main/DEBUG] [mixin]: Scanning file:/C:/Users/Nessi/.jdks/corretto-1.8.0_302/jre/lib/jfxswt.jar for mixin tweaker | |
[00:23:29] [main/DEBUG] [mixin]: Scanning file:/C:/Users/Nessi/.jdks/corretto-1.8.0_302/jre/lib/jsse.jar for mixin tweaker | |
[00:23:29] [main/DEBUG] [mixin]: Scanning file:/C:/Users/Nessi/.jdks/corretto-1.8.0_302/jre/lib/management-agent.jar for mixin tweaker | |
[00:23:29] [main/DEBUG] [mixin]: Scanning file:/C:/Users/Nessi/.jdks/corretto-1.8.0_302/jre/lib/resources.jar for mixin tweaker | |
[00:23:29] [main/DEBUG] [mixin]: Scanning file:/C:/Users/Nessi/.jdks/corretto-1.8.0_302/jre/lib/rt.jar for mixin tweaker | |
[00:23:29] [main/DEBUG] [mixin]: Scanning file:/C:/Users/Nessi/IdeaProjects/CutelessMod/build/classes/java/main/ for mixin tweaker | |
[00:23:29] [main/DEBUG] [mixin]: Scanning file:/C:/Users/Nessi/IdeaProjects/CutelessMod/build/resources/main/ for mixin tweaker | |
[00:23:29] [main/DEBUG] [mixin]: Scanning file:/C:/Users/Nessi/.gradle/caches/minecraft/deobfedDeps/compileDummy.jar for mixin tweaker | |
[00:23:29] [main/DEBUG] [mixin]: Scanning file:/C:/Users/Nessi/.gradle/caches/minecraft/deobfedDeps/providedDummy.jar for mixin tweaker | |
[00:23:29] [main/DEBUG] [mixin]: Scanning file:/C:/Users/Nessi/.gradle/caches/modules-2/files-2.1/org.spongepowered/mixin/0.8.3/5b08b203d5c601e2393be5cf9b4d39c26d12eb5f/mixin-0.8.3.jar for mixin tweaker | |
[00:23:29] [main/DEBUG] [mixin]: Scanning file:/C:/Users/Nessi/.gradle/caches/minecraft/net/minecraftforge/forge/1.12.2-14.23.5.2847/stable/39/forgeSrc-1.12.2-14.23.5.2847.jar for mixin tweaker | |
[00:23:29] [main/DEBUG] [mixin]: Scanning file:/C:/Users/Nessi/.gradle/caches/modules-2/files-2.1/com.mojang/authlib/1.5.25/9834cdf236c22e84b946bba989e2f94ef5897c3c/authlib-1.5.25.jar for mixin tweaker | |
[00:23:29] [main/DEBUG] [mixin]: Scanning file:/C:/Users/Nessi/.gradle/caches/modules-2/files-2.1/com.google.code.findbugs/jsr305/3.0.1/f7be08ec23c21485b9b5a1cf1654c2ec8c58168d/jsr305-3.0.1.jar for mixin tweaker | |
[00:23:29] [main/DEBUG] [mixin]: Scanning file:/C:/Users/Nessi/.gradle/caches/modules-2/files-2.1/com.mojang/patchy/1.2.3/e3107ca512d704a434076a153a6e1149e3787275/patchy-1.2.3.jar for mixin tweaker | |
[00:23:29] [main/DEBUG] [mixin]: Scanning file:/C:/Users/Nessi/.gradle/caches/modules-2/files-2.1/oshi-project/oshi-core/1.1/9ddf7b048a8d701be231c0f4f95fd986198fd2d8/oshi-core-1.1.jar for mixin tweaker | |
[00:23:29] [main/DEBUG] [mixin]: Scanning file:/C:/Users/Nessi/.gradle/caches/modules-2/files-2.1/com.mojang/text2speech/1.10.3/48fd510879dff266c3815947de66e3d4809f8668/text2speech-1.10.3.jar for mixin tweaker | |
[00:23:29] [main/DEBUG] [mixin]: Scanning file:/C:/Users/Nessi/.gradle/caches/modules-2/files-2.1/net.java.dev.jna/jna/4.4.0/cb208278274bf12ebdb56c61bd7407e6f774d65a/jna-4.4.0.jar for mixin tweaker | |
[00:23:29] [main/DEBUG] [mixin]: Scanning file:/C:/Users/Nessi/.gradle/caches/modules-2/files-2.1/net.java.dev.jna/platform/3.4.0/e3f70017be8100d3d6923f50b3d2ee17714e9c13/platform-3.4.0.jar for mixin tweaker | |
[00:23:29] [main/DEBUG] [mixin]: Scanning file:/C:/Users/Nessi/.gradle/caches/modules-2/files-2.1/com.ibm.icu/icu4j-core-mojang/51.2/63d216a9311cca6be337c1e458e587f99d382b84/icu4j-core-mojang-51.2.jar for mixin tweaker | |
[00:23:29] [main/DEBUG] [mixin]: Scanning file:/C:/Users/Nessi/.gradle/caches/modules-2/files-2.1/net.minecraft/launchwrapper/1.12/111e7bea9c968cdb3d06ef4632bf7ff0824d0f36/launchwrapper-1.12.jar for mixin tweaker | |
[00:23:29] [main/DEBUG] [mixin]: Scanning file:/C:/Users/Nessi/.gradle/caches/modules-2/files-2.1/net.sf.jopt-simple/jopt-simple/5.0.3/cdd846cfc4e0f7eefafc02c0f5dce32b9303aa2a/jopt-simple-5.0.3.jar for mixin tweaker | |
[00:23:29] [main/DEBUG] [mixin]: Scanning file:/C:/Users/Nessi/.gradle/caches/modules-2/files-2.1/io.netty/netty-all/4.1.9.Final/97860965d6a0a6b98e7f569f3f966727b8db75/netty-all-4.1.9.Final.jar for mixin tweaker | |
[00:23:29] [main/DEBUG] [mixin]: Scanning file:/C:/Users/Nessi/.gradle/caches/modules-2/files-2.1/com.google.guava/guava/21.0/3a3d111be1be1b745edfa7d91678a12d7ed38709/guava-21.0.jar for mixin tweaker | |
[00:23:29] [main/DEBUG] [mixin]: Scanning file:/C:/Users/Nessi/.gradle/caches/modules-2/files-2.1/org.apache.maven/maven-artifact/3.5.3/7dc72b6d6d8a6dced3d294ed54c2cc3515ade9f4/maven-artifact-3.5.3.jar for mixin tweaker | |
[00:23:29] [main/DEBUG] [mixin]: Scanning file:/C:/Users/Nessi/.gradle/caches/modules-2/files-2.1/org.apache.commons/commons-lang3/3.5/6c6c702c89bfff3cd9e80b04d668c5e190d588c6/commons-lang3-3.5.jar for mixin tweaker | |
[00:23:29] [main/DEBUG] [mixin]: Scanning file:/C:/Users/Nessi/.gradle/caches/modules-2/files-2.1/commons-io/commons-io/2.5/2852e6e05fbb95076fc091f6d1780f1f8fe35e0f/commons-io-2.5.jar for mixin tweaker | |
[00:23:29] [main/DEBUG] [mixin]: Scanning file:/C:/Users/Nessi/.gradle/caches/modules-2/files-2.1/com.mojang/realms/1.10.22/bd0dccebdf3744c75f1ca20063f16e8f7d5e663f/realms-1.10.22.jar for mixin tweaker | |
[00:23:29] [main/DEBUG] [mixin]: Scanning file:/C:/Users/Nessi/.gradle/caches/modules-2/files-2.1/org.apache.httpcomponents/httpclient/4.3.3/18f4247ff4572a074444572cee34647c43e7c9c7/httpclient-4.3.3.jar for mixin tweaker | |
[00:23:29] [main/DEBUG] [mixin]: Scanning file:/C:/Users/Nessi/.gradle/caches/modules-2/files-2.1/commons-codec/commons-codec/1.10/4b95f4897fa13f2cd904aee711aeafc0c5295cd8/commons-codec-1.10.jar for mixin tweaker | |
[00:23:29] [main/DEBUG] [mixin]: Scanning file:/C:/Users/Nessi/.gradle/caches/modules-2/files-2.1/com.paulscode/librarylwjglopenal/20100824/73e80d0794c39665aec3f62eee88ca91676674ef/librarylwjglopenal-20100824.jar for mixin tweaker | |
[00:23:29] [main/DEBUG] [mixin]: Scanning file:/C:/Users/Nessi/.gradle/caches/modules-2/files-2.1/org.lwjgl.lwjgl/lwjgl_util/2.9.4-nightly-20150209/d51a7c040a721d13efdfbd34f8b257b2df882ad0/lwjgl_util-2.9.4-nightly-20150209.jar for mixin tweaker | |
[00:23:29] [main/DEBUG] [mixin]: Scanning file:/C:/Users/Nessi/.gradle/caches/modules-2/files-2.1/org.lwjgl.lwjgl/lwjgl/2.9.4-nightly-20150209/697517568c68e78ae0b4544145af031c81082dfe/lwjgl-2.9.4-nightly-20150209.jar for mixin tweaker | |
[00:23:30] [main/DEBUG] [mixin]: Scanning file:/C:/Users/Nessi/.gradle/caches/modules-2/files-2.1/net.java.jinput/jinput/2.0.5/39c7796b469a600f72380316f6b1f11db6c2c7c4/jinput-2.0.5.jar for mixin tweaker | |
[00:23:30] [main/DEBUG] [mixin]: Scanning file:/C:/Users/Nessi/.gradle/caches/modules-2/files-2.1/net.java.jutils/jutils/1.0.0/e12fe1fda814bd348c1579329c86943d2cd3c6a6/jutils-1.0.0.jar for mixin tweaker | |
[00:23:30] [main/DEBUG] [mixin]: Scanning file:/C:/Users/Nessi/.gradle/caches/modules-2/files-2.1/com.google.code.gson/gson/2.8.0/c4ba5371a29ac9b2ad6129b1d39ea38750043eff/gson-2.8.0.jar for mixin tweaker | |
[00:23:30] [main/DEBUG] [mixin]: Scanning file:/C:/Users/Nessi/.gradle/caches/modules-2/files-2.1/org.apache.commons/commons-compress/1.8.1/a698750c16740fd5b3871425f4cb3bbaa87f529d/commons-compress-1.8.1.jar for mixin tweaker | |
[00:23:30] [main/DEBUG] [mixin]: Scanning file:/C:/Users/Nessi/.gradle/caches/modules-2/files-2.1/commons-logging/commons-logging/1.1.3/f6f66e966c70a83ffbdb6f17a0919eaf7c8aca7f/commons-logging-1.1.3.jar for mixin tweaker | |
[00:23:30] [main/DEBUG] [mixin]: Scanning file:/C:/Users/Nessi/.gradle/caches/modules-2/files-2.1/org.apache.httpcomponents/httpcore/4.3.2/31fbbff1ddbf98f3aa7377c94d33b0447c646b6e/httpcore-4.3.2.jar for mixin tweaker | |
[00:23:30] [main/DEBUG] [mixin]: Scanning file:/C:/Users/Nessi/.gradle/caches/modules-2/files-2.1/it.unimi.dsi/fastutil/7.1.0/9835253257524c1be7ab50c057aa2d418fb72082/fastutil-7.1.0.jar for mixin tweaker | |
[00:23:30] [main/DEBUG] [mixin]: Scanning file:/C:/Users/Nessi/.gradle/caches/modules-2/files-2.1/org.apache.logging.log4j/log4j-core/2.8.1/4ac28ff2f1ddf05dae3043a190451e8c46b73c31/log4j-core-2.8.1.jar for mixin tweaker | |
[00:23:30] [main/DEBUG] [mixin]: Scanning file:/C:/Users/Nessi/.gradle/caches/modules-2/files-2.1/org.apache.logging.log4j/log4j-api/2.8.1/e801d13612e22cad62a3f4f3fe7fdbe6334a8e72/log4j-api-2.8.1.jar for mixin tweaker | |
[00:23:30] [main/DEBUG] [mixin]: Scanning file:/C:/Users/Nessi/.gradle/caches/modules-2/files-2.1/org.jline/jline/3.5.1/51800e9d7a13608894a5a28eed0f5c7fa2f300fb/jline-3.5.1.jar for mixin tweaker | |
[00:23:30] [main/DEBUG] [mixin]: Scanning file:/C:/Users/Nessi/.gradle/caches/modules-2/files-2.1/org.ow2.asm/asm-debug-all/5.2/3354e11e2b34215f06dab629ab88e06aca477c19/asm-debug-all-5.2.jar for mixin tweaker | |
[00:23:30] [main/DEBUG] [mixin]: Scanning file:/C:/Users/Nessi/.gradle/caches/modules-2/files-2.1/com.typesafe.akka/akka-actor_2.11/2.3.3/ed62e9fc709ca0f2ff1a3220daa8b70a2870078e/akka-actor_2.11-2.3.3.jar for mixin tweaker | |
[00:23:30] [main/DEBUG] [mixin]: Scanning file:/C:/Users/Nessi/.gradle/caches/modules-2/files-2.1/com.typesafe/config/1.2.1/f771f71fdae3df231bcd54d5ca2d57f0bf93f467/config-1.2.1.jar for mixin tweaker | |
[00:23:30] [main/DEBUG] [mixin]: Scanning file:/C:/Users/Nessi/.gradle/caches/modules-2/files-2.1/org.scala-lang/scala-actors-migration_2.11/1.1.0/dfa8bc42b181d5b9f1a5dd147f8ae308b893eb6f/scala-actors-migration_2.11-1.1.0.jar for mixin tweaker | |
[00:23:30] [main/DEBUG] [mixin]: Scanning file:/C:/Users/Nessi/.gradle/caches/modules-2/files-2.1/org.scala-lang.plugins/scala-continuations-plugin_2.11.1/1.0.2/f361a3283452c57fa30c1ee69448995de23c60f7/scala-continuations-plugin_2.11.1-1.0.2.jar for mixin tweaker | |
[00:23:30] [main/DEBUG] [mixin]: Scanning file:/C:/Users/Nessi/.gradle/caches/modules-2/files-2.1/org.scala-lang/scala-compiler/2.11.1/56ea2e6c025e0821f28d73ca271218b8dd04926a/scala-compiler-2.11.1.jar for mixin tweaker | |
[00:23:30] [main/DEBUG] [mixin]: Scanning file:/C:/Users/Nessi/.gradle/caches/modules-2/files-2.1/org.scala-lang.plugins/scala-continuations-library_2.11/1.0.2/e517c53a7e9acd6b1668c5a35eccbaa3bab9aac/scala-continuations-library_2.11-1.0.2.jar for mixin tweaker | |
[00:23:30] [main/DEBUG] [mixin]: Scanning file:/C:/Users/Nessi/.gradle/caches/modules-2/files-2.1/org.scala-lang.modules/scala-parser-combinators_2.11/1.0.1/f05d7345bf5a58924f2837c6c1f4d73a938e1ff0/scala-parser-combinators_2.11-1.0.1.jar for mixin tweaker | |
[00:23:30] [main/DEBUG] [mixin]: Scanning file:/C:/Users/Nessi/.gradle/caches/modules-2/files-2.1/org.scala-lang/scala-reflect/2.11.1/6580347e61cc7f8e802941e7fde40fa83b8badeb/scala-reflect-2.11.1.jar for mixin tweaker | |
[00:23:30] [main/DEBUG] [mixin]: Scanning file:/C:/Users/Nessi/.gradle/caches/modules-2/files-2.1/org.scala-lang.modules/scala-swing_2.11/1.0.1/b1cdd92bd47b1e1837139c1c53020e86bb9112ae/scala-swing_2.11-1.0.1.jar for mixin tweaker | |
[00:23:30] [main/DEBUG] [mixin]: Scanning file:/C:/Users/Nessi/.gradle/caches/modules-2/files-2.1/org.scala-lang.modules/scala-xml_2.11/1.0.2/820fbca7e524b530fdadc594c39d49a21ea0337e/scala-xml_2.11-1.0.2.jar for mixin tweaker | |
[00:23:30] [main/DEBUG] [mixin]: Scanning file:/C:/Users/Nessi/.gradle/caches/modules-2/files-2.1/org.scala-lang/scala-library/2.11.1/e11da23da3eabab9f4777b9220e60d44c1aab6a/scala-library-2.11.1.jar for mixin tweaker | |
[00:23:30] [main/DEBUG] [mixin]: Scanning file:/C:/Users/Nessi/.gradle/caches/modules-2/files-2.1/lzma/lzma/0.0.1/521616dc7487b42bef0e803bd2fa3faf668101d7/lzma-0.0.1.jar for mixin tweaker | |
[00:23:30] [main/DEBUG] [mixin]: Scanning file:/C:/Users/Nessi/.gradle/caches/modules-2/files-2.1/net.sf.trove4j/trove4j/3.0.3/42ccaf4761f0dfdfa805c9e340d99a755907e2dd/trove4j-3.0.3.jar for mixin tweaker | |
[00:23:30] [main/DEBUG] [mixin]: Scanning file:/C:/Users/Nessi/.gradle/caches/modules-2/files-2.1/com.paulscode/codecjorbis/20101023/c73b5636faf089d9f00e8732a829577de25237ee/codecjorbis-20101023.jar for mixin tweaker | |
[00:23:30] [main/DEBUG] [mixin]: Scanning file:/C:/Users/Nessi/.gradle/caches/modules-2/files-2.1/com.paulscode/codecwav/20101023/12f031cfe88fef5c1dd36c563c0a3a69bd7261da/codecwav-20101023.jar for mixin tweaker | |
[00:23:30] [main/DEBUG] [mixin]: Scanning file:/C:/Users/Nessi/.gradle/caches/modules-2/files-2.1/com.paulscode/libraryjavasound/20101123/5c5e304366f75f9eaa2e8cca546a1fb6109348b3/libraryjavasound-20101123.jar for mixin tweaker | |
[00:23:30] [main/DEBUG] [mixin]: Scanning file:/C:/Users/Nessi/.gradle/caches/modules-2/files-2.1/com.paulscode/soundsystem/20120107/419c05fe9be71f792b2d76cfc9b67f1ed0fec7f6/soundsystem-20120107.jar for mixin tweaker | |
[00:23:30] [main/DEBUG] [mixin]: Scanning file:/C:/Users/Nessi/.gradle/caches/modules-2/files-2.1/java3d/vecmath/1.5.2/79846ba34cbd89e2422d74d53752f993dcc2ccaf/vecmath-1.5.2.jar for mixin tweaker | |
[00:23:30] [main/DEBUG] [mixin]: Scanning file:/C:/Users/Nessi/.gradle/caches/modules-2/files-2.1/ca.weblite/java-objc-bridge/1.0.0/6ef160c3133a78de015830860197602ca1c855d3/java-objc-bridge-1.0.0.jar for mixin tweaker | |
[00:23:30] [main/DEBUG] [mixin]: Scanning file:/C:/Users/Nessi/.gradle/caches/modules-2/files-2.1/org.codehaus.plexus/plexus-utils/3.1.0/60eecb6f15abdb1c653ad80abaac6fe188b3feaa/plexus-utils-3.1.0.jar for mixin tweaker | |
[00:23:30] [main/DEBUG] [mixin]: Scanning file:/C:/Users/Nessi/.gradle/caches/modules-2/files-2.1/org.lwjgl.lwjgl/lwjgl-platform/2.9.4-nightly-20150209/931074f46c795d2f7b30ed6395df5715cfd7675b/lwjgl-platform-2.9.4-nightly-20150209-natives-linux.jar for mixin tweaker | |
[00:23:30] [main/DEBUG] [mixin]: Scanning file:/C:/Users/Nessi/.gradle/caches/modules-2/files-2.1/org.lwjgl.lwjgl/lwjgl-platform/2.9.4-nightly-20150209/bcab850f8f487c3f4c4dbabde778bb82bd1a40ed/lwjgl-platform-2.9.4-nightly-20150209-natives-osx.jar for mixin tweaker | |
[00:23:30] [main/DEBUG] [mixin]: Scanning file:/C:/Users/Nessi/.gradle/caches/modules-2/files-2.1/org.lwjgl.lwjgl/lwjgl-platform/2.9.4-nightly-20150209/b84d5102b9dbfabfeb5e43c7e2828d98a7fc80e0/lwjgl-platform-2.9.4-nightly-20150209-natives-windows.jar for mixin tweaker | |
[00:23:30] [main/DEBUG] [mixin]: Scanning file:/C:/Users/Nessi/.gradle/caches/modules-2/files-2.1/net.java.jinput/jinput-platform/2.0.5/7ff832a6eb9ab6a767f1ade2b548092d0fa64795/jinput-platform-2.0.5-natives-linux.jar for mixin tweaker | |
[00:23:30] [main/DEBUG] [mixin]: Scanning file:/C:/Users/Nessi/.gradle/caches/modules-2/files-2.1/net.java.jinput/jinput-platform/2.0.5/53f9c919f34d2ca9de8c51fc4e1e8282029a9232/jinput-platform-2.0.5-natives-osx.jar for mixin tweaker | |
[00:23:30] [main/DEBUG] [mixin]: Scanning file:/C:/Users/Nessi/.gradle/caches/modules-2/files-2.1/net.java.jinput/jinput-platform/2.0.5/385ee093e01f587f30ee1c8a2ee7d408fd732e16/jinput-platform-2.0.5-natives-windows.jar for mixin tweaker | |
[00:23:30] [main/DEBUG] [mixin]: Scanning file:/C:/Users/Nessi/.gradle/caches/modules-2/files-2.1/org.scala-lang/scala-actors/2.11.0/8ccfb6541de179bb1c4d45cf414acee069b7f78b/scala-actors-2.11.0.jar for mixin tweaker | |
[00:23:30] [main/DEBUG] [mixin]: Scanning file:/C:/Users/Nessi/.gradle/caches/minecraft/net/minecraftforge/forge/1.12.2-14.23.5.2847/start/ for mixin tweaker | |
[00:23:30] [main/DEBUG] [mixin]: Scanning file:/C:/Program%20Files/JetBrains/IntelliJ%20IDEA%202019.3/lib/idea_rt.jar for mixin tweaker | |
[00:23:30] [main/DEBUG] [mixin]: Scanning asmgen:/ for mixin tweaker | |
[00:23:30] [main/DEBUG] [mixin]: inject() running with 1 agents | |
[00:23:30] [main/DEBUG] [mixin]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:ContainerHandleURI(file:/C:/Users/Nessi/.gradle/caches/modules-2/files-2.1/org.spongepowered/mixin/0.8.3/5b08b203d5c601e2393be5cf9b4d39c26d12eb5f/mixin-0.8.3.jar)] | |
[00:23:30] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLDeobfTweaker | |
[00:23:30] [main/DEBUG] [FML]: Loaded 215 rules from AccessTransformer config file forge_at.cfg | |
[00:23:30] [main/DEBUG] [mixin]: Adding new mixin transformer proxy #2 | |
[00:23:30] [main/DEBUG] [FML]: Validating minecraft | |
[00:23:30] [main/INFO] [mixin]: Preparing mixins for MixinEnvironment[INIT] | |
[00:23:30] [main/DEBUG] [FML]: Minecraft validated, launching... | |
[00:23:30] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.gradle.tweakers.AccessTransformerTweaker | |
[00:23:30] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.TerminalTweaker | |
[00:23:30] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.TerminalTweaker | |
[00:23:30] [main/DEBUG] [mixin]: Adding new mixin transformer proxy #3 | |
[00:23:30] [main/INFO] [mixin]: Preparing mixins for MixinEnvironment[DEFAULT] | |
[00:23:30] [main/INFO] [mixin]: Selecting config mixins.cutelessmod.json | |
[00:23:30] [main/WARN] [mixin]: Reference map 'mixins.cutelessmod.refmap.json' for mixins.cutelessmod.json could not be read. If this is a development environment you can ignore this message | |
[00:23:30] [main/INFO] [mixin]: Selecting config mixins.cutelessmod.clientcommands.json | |
[00:23:30] [main/WARN] [mixin]: Reference map 'mixins.cutelessmod.refmap.json' for mixins.cutelessmod.clientcommands.json could not be read. If this is a development environment you can ignore this message | |
[00:23:30] [main/INFO] [mixin]: Selecting config mixins.cutelessmod.chunk_display.json | |
[00:23:30] [main/WARN] [mixin]: Reference map 'mixins.cutelessmod.refmap.json' for mixins.cutelessmod.chunk_display.json could not be read. If this is a development environment you can ignore this message | |
[00:23:30] [main/INFO] [mixin]: Preparing mixins.cutelessmod.json (90) | |
[00:23:30] [main/DEBUG] [mixin]: Found name transformer: net.minecraftforge.fml.common.asm.transformers.DeobfuscationTransformer | |
[00:23:30] [main/DEBUG] [mixin]: Rebuilding transformer delegation list: | |
[00:23:30] [main/DEBUG] [mixin]: Found name transformer: net.minecraftforge.fml.common.asm.transformers.DeobfuscationTransformer | |
[00:23:30] [main/DEBUG] [mixin]: Adding: net.minecraftforge.fml.common.asm.transformers.PatchingTransformer | |
[00:23:30] [main/DEBUG] [mixin]: Excluding: org.spongepowered.asm.mixin.transformer.Proxy | |
[00:23:30] [main/DEBUG] [mixin]: Adding: $wrapper.net.minecraftforge.fml.common.asm.transformers.SideTransformer | |
[00:23:30] [main/DEBUG] [mixin]: Excluding: $wrapper.net.minecraftforge.fml.common.asm.transformers.EventSubscriptionTransformer | |
[00:23:30] [main/DEBUG] [mixin]: Adding: $wrapper.net.minecraftforge.fml.common.asm.transformers.EventSubscriberTransformer | |
[00:23:30] [main/DEBUG] [mixin]: Adding: $wrapper.net.minecraftforge.fml.common.asm.transformers.SoundEngineFixTransformer | |
[00:23:30] [main/DEBUG] [mixin]: Adding: net.minecraftforge.fml.common.asm.transformers.DeobfuscationTransformer | |
[00:23:30] [main/DEBUG] [mixin]: Adding: net.minecraftforge.fml.common.asm.transformers.AccessTransformer | |
[00:23:30] [main/DEBUG] [mixin]: Adding: net.minecraftforge.fml.common.asm.transformers.ModAccessTransformer | |
[00:23:30] [main/DEBUG] [mixin]: Adding: net.minecraftforge.fml.common.asm.transformers.ItemStackTransformer | |
[00:23:30] [main/DEBUG] [mixin]: Adding: net.minecraftforge.fml.common.asm.transformers.ItemBlockTransformer | |
[00:23:30] [main/DEBUG] [mixin]: Adding: net.minecraftforge.fml.common.asm.transformers.ItemBlockSpecialTransformer | |
[00:23:30] [main/DEBUG] [mixin]: Adding: net.minecraftforge.fml.common.asm.transformers.PotionEffectTransformer | |
[00:23:30] [main/DEBUG] [mixin]: Excluding: org.spongepowered.asm.mixin.transformer.Proxy | |
[00:23:30] [main/DEBUG] [mixin]: Adding: net.minecraftforge.gradle.GradleForgeHacks$AccessTransformerTransformer | |
[00:23:30] [main/DEBUG] [mixin]: Excluding: net.minecraftforge.fml.common.asm.transformers.TerminalTransformer | |
[00:23:30] [main/DEBUG] [mixin]: Excluding: org.spongepowered.asm.mixin.transformer.Proxy | |
[00:23:30] [main/DEBUG] [mixin]: Transformer delegation list created with 12 entries | |
[00:23:30] [main/TRACE] [mixin]: Added class metadata for net/minecraft/entity/player/EntityPlayer to metadata cache | |
[00:23:31] [main/TRACE] [mixin]: Added class metadata for net/minecraft/client/renderer/EntityRenderer to metadata cache | |
[00:23:31] [main/TRACE] [mixin]: Added class metadata for net/minecraft/tileentity/TileEntityBeacon to metadata cache | |
[00:23:31] [main/TRACE] [mixin]: Added class metadata for net/minecraft/client/gui/GuiButtonImage to metadata cache | |
[00:23:31] [main/TRACE] [mixin]: Added class metadata for net/minecraft/client/gui/GuiChat to metadata cache | |
[00:23:31] [main/TRACE] [mixin]: Added class metadata for net/minecraft/client/gui/GuiListWorldSelection to metadata cache | |
[00:23:31] [main/TRACE] [mixin]: Added class metadata for net/minecraft/client/gui/GuiListWorldSelectionEntry to metadata cache | |
[00:23:31] [main/TRACE] [mixin]: Added class metadata for net/minecraft/client/gui/GuiMultiplayer to metadata cache | |
[00:23:31] [main/TRACE] [mixin]: Added class metadata for net/minecraft/client/gui/GuiNewChat to metadata cache | |
[00:23:31] [main/TRACE] [mixin]: Added class metadata for net/minecraft/nbt/NBTTagList to metadata cache | |
[00:23:31] [main/TRACE] [mixin]: Added class metadata for net/minecraft/client/renderer/entity/RenderManager to metadata cache | |
[00:23:31] [main/TRACE] [mixin]: Added class metadata for net/minecraft/client/gui/ServerListEntryNormal to metadata cache | |
[00:23:31] [main/TRACE] [mixin]: Added class metadata for net/minecraft/client/audio/SoundHandler to metadata cache | |
[00:23:31] [main/TRACE] [mixin]: Added class metadata for net/minecraft/block/Block to metadata cache | |
[00:23:31] [main/TRACE] [mixin]: Added class metadata for net/minecraft/block/BlockChest to metadata cache | |
[00:23:31] [main/TRACE] [mixin]: Added class metadata for net/minecraft/block/BlockConcretePowder to metadata cache | |
[00:23:31] [main/TRACE] [mixin]: Added class metadata for net/minecraft/block/BlockHugeMushroom to metadata cache | |
[00:23:31] [main/TRACE] [mixin]: Added class metadata for net/minecraft/block/BlockLiquid to metadata cache | |
[00:23:31] [main/TRACE] [mixin]: Added class metadata for net/minecraft/block/BlockMobSpawner to metadata cache | |
[00:23:31] [main/TRACE] [mixin]: Added class metadata for net/minecraft/client/renderer/BlockModelShapes to metadata cache | |
[00:23:31] [main/TRACE] [mixin]: Added class metadata for net/minecraft/block/BlockPistonBase to metadata cache | |
[00:23:31] [main/TRACE] [mixin]: Added class metadata for net/minecraft/block/BlockSlime to metadata cache | |
[00:23:31] [main/TRACE] [mixin]: Added class metadata for net/minecraft/block/BlockSnow to metadata cache | |
[00:23:31] [main/TRACE] [mixin]: Added class metadata for net/minecraft/world/chunk/Chunk to metadata cache | |
[00:23:31] [main/TRACE] [mixin]: Added class metadata for net/minecraft/world/gen/ChunkGeneratorOverworld to metadata cache | |
[00:23:31] [main/TRACE] [mixin]: Added class metadata for net/minecraft/command/CommandBase to metadata cache | |
[00:23:31] [main/TRACE] [mixin]: Added class metadata for net/minecraft/command/CommandFill to metadata cache | |
[00:23:31] [main/TRACE] [mixin]: Added class metadata for net/minecraft/network/play/client/CPacketChatMessage to metadata cache | |
[00:23:31] [main/TRACE] [mixin]: Added class metadata for net/minecraft/client/renderer/debug/DebugRendererChunkBorder to metadata cache | |
[00:23:31] [main/TRACE] [mixin]: Added class metadata for net/minecraft/entity/passive/EntityChicken to metadata cache | |
[00:23:31] [main/TRACE] [mixin]: Added class metadata for net/minecraft/entity/item/EntityItem to metadata cache | |
[00:23:31] [main/TRACE] [mixin]: Added class metadata for net/minecraft/entity/item/EntityItemFrame to metadata cache | |
[00:23:31] [main/TRACE] [mixin]: Added class metadata for net/minecraft/entity/EntityLivingBase to metadata cache | |
[00:23:31] [main/TRACE] [mixin]: Added class metadata for net/minecraft/client/entity/EntityPlayerSP to metadata cache | |
[00:23:31] [main/TRACE] [mixin]: Added class metadata for net/minecraft/client/renderer/EntityRenderer$1 to metadata cache | |
[00:23:31] [main/TRACE] [mixin]: Added class metadata for net/minecraft/block/BlockBarrier to metadata cache | |
[00:23:31] [main/TRACE] [mixin]: Added class metadata for net/minecraft/block/BlockCommandBlock to metadata cache | |
[00:23:31] [main/TRACE] [mixin]: Added class metadata for net/minecraft/block/BlockDragonEgg to metadata cache | |
[00:23:31] [main/TRACE] [mixin]: Added class metadata for net/minecraft/block/BlockStructure to metadata cache | |
[00:23:31] [main/TRACE] [mixin]: Added class metadata for net/minecraft/client/settings/GameSettings to metadata cache | |
[00:23:31] [main/TRACE] [mixin]: Added class metadata for net/minecraft/client/renderer/GlStateManager to metadata cache | |
[00:23:31] [main/TRACE] [mixin]: Added class metadata for net/minecraft/client/gui/GuiBossOverlay to metadata cache | |
[00:23:31] [main/TRACE] [mixin]: Added class metadata for net/minecraft/client/gui/GuiControls to metadata cache | |
[00:23:31] [main/TRACE] [mixin]: Added class metadata for net/minecraft/client/gui/GuiDisconnected to metadata cache | |
[00:23:31] [main/TRACE] [mixin]: Added class metadata for net/minecraft/client/gui/GuiGameOver to metadata cache | |
[00:23:31] [main/TRACE] [mixin]: Added class metadata for net/minecraft/client/gui/GuiIngame to metadata cache | |
[00:23:31] [main/TRACE] [mixin]: Added class metadata for net/minecraft/client/gui/GuiIngameMenu to metadata cache | |
[00:23:31] [main/TRACE] [mixin]: Added class metadata for net/minecraft/client/gui/inventory/GuiInventory to metadata cache | |
[00:23:31] [main/TRACE] [mixin]: Added class metadata for net/minecraft/client/gui/GuiLanguage$List to metadata cache | |
[00:23:31] [main/TRACE] [mixin]: Added class metadata for net/minecraft/client/gui/GuiMainMenu to metadata cache | |
[00:23:31] [main/TRACE] [mixin]: Added class metadata for net/minecraft/client/gui/GuiOverlayDebug to metadata cache | |
[00:23:31] [main/TRACE] [mixin]: Added class metadata for net/minecraft/client/gui/recipebook/GuiRecipeBook to metadata cache | |
[00:23:31] [main/TRACE] [mixin]: Added class metadata for net/minecraft/client/gui/GuiScreen to metadata cache | |
[00:23:31] [main/TRACE] [mixin]: Added class metadata for net/minecraft/client/gui/achievement/GuiStats to metadata cache | |
[00:23:31] [main/TRACE] [mixin]: Added class metadata for net/minecraft/client/gui/GuiWorldSelection to metadata cache | |
[00:23:31] [main/TRACE] [mixin]: Added class metadata for net/minecraft/client/renderer/InventoryEffectRenderer to metadata cache | |
[00:23:31] [main/TRACE] [mixin]: Added class metadata for net/minecraft/item/ItemFirework to metadata cache | |
[00:23:31] [main/TRACE] [mixin]: Added class metadata for net/minecraft/item/ItemFlintAndSteel to metadata cache | |
[00:23:31] [main/TRACE] [mixin]: Added class metadata for net/minecraft/client/renderer/ItemRenderer to metadata cache | |
[00:23:31] [main/TRACE] [mixin]: Added class metadata for net/minecraft/item/ItemStack to metadata cache | |
[00:23:31] [main/TRACE] [mixin]: Added class metadata for net/minecraft/client/renderer/entity/layers/LayerArmorBase to metadata cache | |
[00:23:31] [main/TRACE] [mixin]: Added class metadata for net/minecraft/util/LazyLoadBase to metadata cache | |
[00:23:31] [main/TRACE] [mixin]: Added class metadata for net/minecraft/client/Minecraft to metadata cache | |
[00:23:31] [main/TRACE] [mixin]: Added class metadata for net/minecraft/client/network/NetHandlerPlayClient to metadata cache | |
[00:23:31] [main/TRACE] [mixin]: Added class metadata for net/minecraft/network/NetworkManager to metadata cache | |
[00:23:31] [main/TRACE] [mixin]: Added class metadata for net/minecraft/network/NetworkManager$5 to metadata cache | |
[00:23:31] [main/TRACE] [mixin]: Added class metadata for net/minecraft/network/PacketThreadUtil to metadata cache | |
[00:23:31] [main/TRACE] [mixin]: Added class metadata for net/minecraft/client/particle/ParticleDigging to metadata cache | |
[00:23:31] [main/TRACE] [mixin]: Added class metadata for net/minecraft/client/particle/ParticleFirework$Spark to metadata cache | |
[00:23:31] [main/TRACE] [mixin]: Added class metadata for net/minecraft/client/particle/ParticleManager to metadata cache | |
[00:23:31] [main/TRACE] [mixin]: Added class metadata for net/minecraft/client/multiplayer/PlayerControllerMP to metadata cache | |
[00:23:31] [main/TRACE] [mixin]: Added class metadata for net/minecraft/client/gui/spectator/PlayerMenuObject to metadata cache | |
[00:23:31] [main/TRACE] [mixin]: Added class metadata for net/minecraft/client/renderer/color/BlockColors$4 to metadata cache | |
[00:23:31] [main/TRACE] [mixin]: Added class metadata for net/minecraft/client/renderer/color/BlockColors$5 to metadata cache | |
[00:23:31] [main/TRACE] [mixin]: Added class metadata for net/minecraft/stats/RecipeBook to metadata cache | |
[00:23:31] [main/TRACE] [mixin]: Added class metadata for net/minecraft/client/renderer/RenderGlobal to metadata cache | |
[00:23:31] [main/TRACE] [mixin]: Added class metadata for net/minecraft/client/renderer/RenderItem to metadata cache | |
[00:23:31] [main/TRACE] [mixin]: Added class metadata for net/minecraft/client/renderer/entity/RenderItemFrame to metadata cache | |
[00:23:31] [main/TRACE] [mixin]: Added class metadata for net/minecraft/client/gui/inventory/GuiContainerCreative to metadata cache | |
[00:23:31] [main/TRACE] [mixin]: Added class metadata for net/minecraft/client/gui/spectator/SpectatorMenu to metadata cache | |
[00:23:31] [main/TRACE] [mixin]: Added class metadata for net/minecraft/client/gui/spectator/categories/TeleportToPlayer to metadata cache | |
[00:23:31] [main/TRACE] [mixin]: Added class metadata for net/minecraft/client/renderer/tileentity/TileEntityBeaconRenderer to metadata cache | |
[00:23:31] [main/TRACE] [mixin]: Added class metadata for net/minecraft/client/renderer/tileentity/TileEntityChestRenderer to metadata cache | |
[00:23:31] [main/TRACE] [mixin]: Added class metadata for net/minecraft/tileentity/TileEntityPiston to metadata cache | |
[00:23:31] [main/TRACE] [mixin]: Added class metadata for net/minecraft/client/renderer/tileentity/TileEntityPistonRenderer to metadata cache | |
[00:23:31] [main/TRACE] [mixin]: Added class metadata for net/minecraft/client/renderer/tileentity/TileEntityRendererDispatcher to metadata cache | |
[00:23:31] [main/TRACE] [mixin]: Added class metadata for net/minecraft/world/World to metadata cache | |
[00:23:31] [main/TRACE] [mixin]: Added class metadata for net/minecraft/client/multiplayer/WorldClient to metadata cache | |
[00:23:31] [main/INFO] [mixin]: Preparing mixins.cutelessmod.clientcommands.json (9) | |
[00:23:31] [main/TRACE] [mixin]: Added class metadata for net/minecraft/item/ItemSword to metadata cache | |
[00:23:31] [main/TRACE] [mixin]: Added class metadata for net/minecraft/client/settings/KeyBinding to metadata cache | |
[00:23:31] [main/TRACE] [mixin]: Added class metadata for net/minecraft/util/TabCompleter to metadata cache | |
[00:23:31] [main/INFO] [mixin]: Preparing mixins.cutelessmod.chunk_display.json (3) | |
[00:23:31] [main/TRACE] [mixin]: Added class metadata for net/minecraftforge/fml/common/network/FMLIndexedMessageToMessageCodec to metadata cache | |
[00:23:31] [main/DEBUG] [mixin]: Registering new injector for @Inject with org.spongepowered.asm.mixin.injection.struct.CallbackInjectionInfo | |
[00:23:31] [main/DEBUG] [mixin]: Registering new injector for @ModifyArg with org.spongepowered.asm.mixin.injection.struct.ModifyArgInjectionInfo | |
[00:23:31] [main/DEBUG] [mixin]: Registering new injector for @ModifyArgs with org.spongepowered.asm.mixin.injection.struct.ModifyArgsInjectionInfo | |
[00:23:31] [main/DEBUG] [mixin]: Registering new injector for @Redirect with org.spongepowered.asm.mixin.injection.struct.RedirectInjectionInfo | |
[00:23:31] [main/DEBUG] [mixin]: Registering new injector for @ModifyVariable with org.spongepowered.asm.mixin.injection.struct.ModifyVariableInjectionInfo | |
[00:23:31] [main/DEBUG] [mixin]: Registering new injector for @ModifyConstant with org.spongepowered.asm.mixin.injection.struct.ModifyConstantInjectionInfo | |
[00:23:31] [main/TRACE] [mixin]: Added class metadata for net/minecraft/entity/Entity to metadata cache | |
[00:23:31] [main/TRACE] [mixin]: Added class metadata for net/minecraft/block/BlockChest$Type to metadata cache | |
[00:23:31] [main/TRACE] [mixin]: Added class metadata for java/lang/invoke/MethodHandles$Lookup to metadata cache | |
[00:23:31] [main/TRACE] [mixin]: Added class metadata for net/minecraft/block/BlockContainer to metadata cache | |
[00:23:31] [main/TRACE] [mixin]: Added class metadata for org/spongepowered/asm/mixin/injection/At$Shift to metadata cache | |
[00:23:31] [main/TRACE] [mixin]: Added class metadata for net/minecraft/client/settings/GameSettings$Options to metadata cache | |
[00:23:31] [main/TRACE] [mixin]: Added class metadata for net/minecraft/client/gui/GuiListExtended$IGuiListEntry to metadata cache | |
[00:23:31] [main/TRACE] [mixin]: Added class metadata for net/minecraft/util/math/RayTraceResult$Type to metadata cache | |
[00:23:31] [main/TRACE] [mixin]: Added class metadata for net/minecraft/network/play/client/CPacketPlayerDigging$Action to metadata cache | |
[00:23:31] [main/TRACE] [mixin]: Added class metadata for java/util/Map$Entry to metadata cache | |
[00:23:31] [main/TRACE] [mixin]: Added class metadata for net/minecraft/util/text/event/ClickEvent$Action to metadata cache | |
[00:23:31] [main/TRACE] [mixin]: Added class metadata for net/minecraft/client/particle/ParticleSimpleAnimated to metadata cache | |
[00:23:31] [main/TRACE] [mixin]: Added class metadata for net/minecraft/client/particle/Particle to metadata cache | |
[00:23:31] [main/TRACE] [mixin]: Added class metadata for net/minecraft/client/gui/inventory/GuiContainer to metadata cache | |
[00:23:31] [main/TRACE] [mixin]: Added class metadata for net/minecraft/client/gui/Gui to metadata cache | |
[00:23:31] [main/TRACE] [mixin]: Added class metadata for net/minecraft/util/math/BlockPos$MutableBlockPos to metadata cache | |
[00:23:31] [main/TRACE] [mixin]: Added class metadata for net/dugged/cutelessmod/ContainerSpy$SimpleContainer to metadata cache | |
[00:23:31] [main/TRACE] [mixin]: Added class metadata for net/minecraft/item/Item$ToolMaterial to metadata cache | |
[00:23:31] [main/TRACE] [mixin]: Added class metadata for net/dugged/cutelessmod/clientcommands/ClientCommandHandler$Position to metadata cache | |
[00:23:31] [main/INFO] [mixin]: Prepared 102 mixins in 1.120 sec (11.0ms avg) (251ms load, 482ms transform, 0ms plugin) | |
[00:23:31] [main/INFO] [LaunchWrapper]: Launching wrapped minecraft {net.minecraft.client.main.Main} | |
[00:23:31] [main/INFO] [mixin]: Mixing MixinMinecraft from mixins.cutelessmod.json into net.minecraft.client.Minecraft | |
[00:23:31] [main/TRACE] [mixin]: Added class metadata for org/spongepowered/asm/mixin/injection/callback/CallbackInfo to metadata cache | |
[00:23:31] [main/TRACE] [mixin]: Added class metadata for net/dugged/cutelessmod/Configuration to metadata cache | |
[00:23:31] [main/TRACE] [mixin]: Added class metadata for net/minecraft/client/entity/AbstractClientPlayer to metadata cache | |
[00:23:31] [main/TRACE] [mixin]: Added class metadata for net/minecraft/util/math/RayTraceResult to metadata cache | |
[00:23:31] [main/TRACE] [mixin]: Added class metadata for net/minecraft/entity/player/InventoryPlayer to metadata cache | |
[00:23:31] [main/TRACE] [mixin]: Added class metadata for net/minecraft/util/EnumHand to metadata cache | |
[00:23:31] [main/TRACE] [mixin]: Added class metadata for net/dugged/cutelessmod/CutelessMod to metadata cache | |
[00:23:31] [main/TRACE] [mixin]: Added class metadata for net/dugged/cutelessmod/GuiCompass to metadata cache | |
[00:23:31] [main/TRACE] [mixin]: Added class metadata for java/lang/Comparable to metadata cache | |
[00:23:31] [main/INFO] [mixin]: Mixing MixinMinecraft from mixins.cutelessmod.clientcommands.json into net.minecraft.client.Minecraft | |
[00:23:31] [main/TRACE] [mixin]: Added class metadata for net/dugged/cutelessmod/clientcommands/Handler to metadata cache | |
[00:23:31] [main/TRACE] [mixin]: Added class metadata for net/dugged/cutelessmod/clientcommands/HandlerSetBlock to metadata cache | |
[00:23:31] [main/TRACE] [mixin]: Added class metadata for net/dugged/cutelessmod/clientcommands/HandlerFill to metadata cache | |
[00:23:31] [main/TRACE] [mixin]: Added class metadata for net/dugged/cutelessmod/clientcommands/HandlerClone to metadata cache | |
[00:23:31] [main/TRACE] [mixin]: Added class metadata for net/dugged/cutelessmod/clientcommands/HandlerReplaceItem to metadata cache | |
[00:23:31] [main/INFO] [mixin]: Mixing MixinMinecraft from mixins.cutelessmod.chunk_display.json into net.minecraft.client.Minecraft | |
[00:23:31] [main/TRACE] [mixin]: Added class metadata for net/dugged/cutelessmod/chunk_display/gui/GuiChunkGrid to metadata cache | |
[00:23:31] [main/TRACE] [mixin]: Added class metadata for net/dugged/cutelessmod/chunk_display/gui/Controller to metadata cache | |
[00:23:31] [main/TRACE] [mixin]: Added class metadata for net/minecraft/util/IThreadListener to metadata cache | |
[00:23:31] [main/TRACE] [mixin]: Added class metadata for net/minecraft/profiler/ISnooperInfo to metadata cache | |
[00:23:31] [main/TRACE] [mixin]: Added class metadata for java/lang/String to metadata cache | |
[00:23:32] [main/TRACE] [mixin]: Added class metadata for net/minecraft/util/ReportedException to metadata cache | |
[00:23:32] [main/TRACE] [mixin]: Added class metadata for net/minecraft/util/MinecraftError to metadata cache | |
[00:23:32] [main/TRACE] [mixin]: Added class metadata for java/lang/RuntimeException to metadata cache | |
[00:23:32] [main/TRACE] [mixin]: Added class metadata for java/lang/Exception to metadata cache | |
[00:23:32] [main/TRACE] [mixin]: Added class metadata for java/lang/Throwable to metadata cache | |
[00:23:32] [main/TRACE] [mixin]: Added class metadata for java/lang/Error to metadata cache | |
[00:23:32] [main/TRACE] [mixin]: Added class metadata for java/util/Iterator to metadata cache | |
[00:23:32] [main/TRACE] [mixin]: Added class metadata for java/lang/Integer to metadata cache | |
[00:23:32] [main/TRACE] [mixin]: Added class metadata for java/lang/Number to metadata cache | |
[00:23:32] [main/TRACE] [mixin]: Added class metadata for com/mojang/authlib/yggdrasil/YggdrasilAuthenticationService to metadata cache | |
[00:23:32] [main/TRACE] [mixin]: Added class metadata for com/mojang/authlib/HttpAuthenticationService to metadata cache | |
[00:23:32] [main/TRACE] [mixin]: Added class metadata for com/mojang/authlib/BaseAuthenticationService to metadata cache | |
[00:23:32] [main/TRACE] [mixin]: Added class metadata for java/lang/InterruptedException to metadata cache | |
[00:23:32] [main/TRACE] [mixin]: Added class metadata for com/mojang/authlib/minecraft/MinecraftSessionService to metadata cache | |
[00:23:32] [main/INFO] [mixin]: Mixing MixinGuiScreen from mixins.cutelessmod.json into net.minecraft.client.gui.GuiScreen | |
[00:23:32] [main/TRACE] [mixin]: Added class metadata for net/dugged/cutelessmod/DesktopApi to metadata cache | |
[00:23:32] [main/TRACE] [mixin]: Added class metadata for com/google/common/base/Splitter to metadata cache | |
[00:23:32] [main/TRACE] [mixin]: Added class metadata for java/lang/Iterable to metadata cache | |
[00:23:32] [main/INFO] [mixin]: Mixing MixinShulkerBoxDisplayRenderer from mixins.cutelessmod.json into net.minecraft.client.gui.GuiScreen | |
[00:23:32] [main/TRACE] [mixin]: Added class metadata for net/dugged/cutelessmod/ShulkerBoxDisplay to metadata cache | |
[00:23:32] [main/INFO] [mixin]: Mixing MixinGuiScreen from mixins.cutelessmod.clientcommands.json into net.minecraft.client.gui.GuiScreen | |
[00:23:32] [main/TRACE] [mixin]: Added class metadata for net/dugged/cutelessmod/clientcommands/ClientCommandHandler to metadata cache | |
[00:23:32] [main/TRACE] [mixin]: Added class metadata for net/dugged/cutelessmod/clientcommands/CommandUndo to metadata cache | |
[00:23:32] [main/TRACE] [mixin]: Added class metadata for net/dugged/cutelessmod/clientcommands/ClientCommand to metadata cache | |
[00:23:32] [main/TRACE] [mixin]: Added class metadata for net/minecraft/command/ICommand to metadata cache | |
[00:23:32] [main/TRACE] [mixin]: Added class metadata for net/minecraft/client/gui/GuiYesNoCallback to metadata cache | |
[00:23:32] [main/TRACE] [mixin]: Added class metadata for java/net/URI to metadata cache | |
[00:23:32] [main/TRACE] [mixin]: Added class metadata for java/awt/datatransfer/Transferable to metadata cache | |
[00:23:32] [main/TRACE] [mixin]: Added class metadata for net/minecraft/nbt/NBTException to metadata cache | |
[00:23:32] [main/TRACE] [mixin]: Added class metadata for net/minecraft/nbt/NBTTagCompound to metadata cache | |
[00:23:32] [main/TRACE] [mixin]: Added class metadata for net/minecraft/nbt/NBTBase to metadata cache | |
[00:23:32] [main/TRACE] [mixin]: Added class metadata for java/lang/Class to metadata cache | |
[00:23:32] [main/INFO] [mixin]: Mixing MixinWorld from mixins.cutelessmod.json into net.minecraft.world.World | |
[00:23:32] [main/TRACE] [mixin]: Added class metadata for java/lang/Boolean to metadata cache | |
[00:23:32] [main/TRACE] [mixin]: Added class metadata for java/io/Serializable to metadata cache | |
[00:23:32] [main/TRACE] [mixin]: Added class metadata for org/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable to metadata cache | |
[00:23:32] [main/TRACE] [mixin]: Added class metadata for net/minecraftforge/common/capabilities/ICapabilityProvider to metadata cache | |
[00:23:32] [main/TRACE] [mixin]: Added class metadata for net/minecraft/world/IBlockAccess to metadata cache | |
[00:23:32] [main/INFO] [mixin]: Mixing MixinWorldClient from mixins.cutelessmod.json into net.minecraft.client.multiplayer.WorldClient | |
[00:23:32] [main/TRACE] [mixin]: Added class metadata for net/minecraft/world/storage/ISaveHandler to metadata cache | |
[00:23:32] [main/TRACE] [mixin]: Added class metadata for net/minecraft/world/storage/WorldInfo to metadata cache | |
[00:23:32] [main/TRACE] [mixin]: Added class metadata for net/minecraft/world/WorldProvider to metadata cache | |
[00:23:32] [main/TRACE] [mixin]: Added class metadata for net/minecraft/profiler/Profiler to metadata cache | |
[00:23:32] [main/TRACE] [mixin]: Added class metadata for net/minecraft/entity/item/EntityFireworkRocket to metadata cache | |
[00:23:32] [main/INFO] [mixin]: Mixing MixinGuiIngame from mixins.cutelessmod.json into net.minecraft.client.gui.GuiIngame | |
[00:23:32] [main/TRACE] [mixin]: Added class metadata for org/apache/commons/lang3/StringUtils to metadata cache | |
[00:23:32] [main/TRACE] [mixin]: Added class metadata for net/minecraft/client/multiplayer/ServerData to metadata cache | |
[00:23:32] [main/TRACE] [mixin]: Added class metadata for java/util/ArrayList to metadata cache | |
[00:23:32] [main/TRACE] [mixin]: Added class metadata for java/util/AbstractList to metadata cache | |
[00:23:32] [main/TRACE] [mixin]: Added class metadata for java/util/AbstractCollection to metadata cache | |
[00:23:32] [main/TRACE] [mixin]: Added class metadata for java/util/Collection to metadata cache | |
[00:23:32] [main/TRACE] [mixin]: Added class metadata for java/util/List to metadata cache | |
[00:23:32] [main/TRACE] [mixin]: Added class metadata for java/lang/Cloneable to metadata cache | |
[00:23:32] [main/TRACE] [mixin]: Added class metadata for java/util/RandomAccess to metadata cache | |
[00:23:32] [main/TRACE] [mixin]: Added class metadata for java/util/Map to metadata cache | |
[00:23:32] [main/TRACE] [mixin]: Added class metadata for net/minecraft/client/gui/ScaledResolution to metadata cache | |
[00:23:32] [main/INFO] [mixin]: Mixing MixinGuiMainMenu from mixins.cutelessmod.json into net.minecraft.client.gui.GuiMainMenu | |
[00:23:32] [main/TRACE] [mixin]: Added class metadata for net/minecraft/client/gui/GuiButton to metadata cache | |
[00:23:32] [main/TRACE] [mixin]: Added class metadata for net/minecraft/client/resources/I18n to metadata cache | |
[00:23:32] [main/TRACE] [mixin]: Added class metadata for java/io/IOException to metadata cache | |
[00:23:32] [main/TRACE] [mixin]: Added class metadata for net/minecraft/realms/RealmsBridge to metadata cache | |
[00:23:32] [main/INFO] [mixin]: Mixing MixinRecipeBook from mixins.cutelessmod.json into net.minecraft.stats.RecipeBook | |
[00:23:32] [main/INFO] [mixin]: Mixing CMixinNoClip$MixinEntityPlayer from mixins.cutelessmod.json into net.minecraft.entity.player.EntityPlayer | |
[00:23:32] [main/TRACE] [mixin]: Added class metadata for net/minecraft/entity/player/PlayerCapabilities to metadata cache | |
[00:23:32] [main/TRACE] [mixin]: Added class metadata for net/minecraft/command/ICommandSender to metadata cache | |
[00:23:32] [main/TRACE] [mixin]: Added class metadata for net/minecraftforge/common/capabilities/ICapabilitySerializable to metadata cache | |
[00:23:32] [main/TRACE] [mixin]: Added class metadata for net/minecraftforge/common/util/INBTSerializable to metadata cache | |
[00:23:32] [main/TRACE] [mixin]: Added class metadata for net/minecraft/entity/MoverType to metadata cache | |
[00:23:32] [main/INFO] [mixin]: Mixing MixinEntityLivingBase from mixins.cutelessmod.json into net.minecraft.entity.EntityLivingBase | |
[00:23:32] [main/TRACE] [mixin]: Added class metadata for net/minecraft/entity/player/EntityPlayerMP to metadata cache | |
[00:23:32] [main/INFO] [mixin]: Mixing MixinEntityPlayerSP from mixins.cutelessmod.json into net.minecraft.client.entity.EntityPlayerSP | |
[00:23:32] [main/TRACE] [mixin]: Added class metadata for net/minecraft/inventory/Container to metadata cache | |
[00:23:32] [main/TRACE] [mixin]: Added class metadata for net/minecraft/inventory/ClickType to metadata cache | |
[00:23:32] [main/TRACE] [mixin]: Added class metadata for net/dugged/cutelessmod/CutelessModUtils to metadata cache | |
[00:23:32] [main/TRACE] [mixin]: Added class metadata for org/lwjgl/input/Keyboard to metadata cache | |
[00:23:32] [main/TRACE] [mixin]: Added class metadata for net/minecraft/stats/StatBase to metadata cache | |
[00:23:32] [main/TRACE] [mixin]: Added class metadata for net/dugged/cutelessmod/StatPlugin to metadata cache | |
[00:23:32] [main/TRACE] [mixin]: Added class metadata for net/minecraft/util/math/MathHelper to metadata cache | |
[00:23:32] [main/TRACE] [mixin]: Added class metadata for java/lang/Float to metadata cache | |
[00:23:32] [main/TRACE] [mixin]: Added class metadata for com/mojang/authlib/GameProfile to metadata cache | |
[00:23:32] [main/TRACE] [mixin]: Added class metadata for net/minecraft/inventory/ContainerMerchant to metadata cache | |
[00:23:32] [main/INFO] [mixin]: Mixing IGuiChat from mixins.cutelessmod.json into net.minecraft.client.gui.GuiChat | |
[00:23:32] [main/INFO] [mixin]: Mixing MixinGuiChat from mixins.cutelessmod.json into net.minecraft.client.gui.GuiChat | |
[00:23:32] [main/TRACE] [mixin]: Added class metadata for net/minecraft/util/ITabCompleter to metadata cache | |
[00:23:32] [main/INFO] [mixin]: Mixing MixinGuiInventory from mixins.cutelessmod.json into net.minecraft.client.gui.inventory.GuiInventory | |
[00:23:32] [main/TRACE] [mixin]: Added class metadata for net/minecraft/util/ResourceLocation to metadata cache | |
[00:23:32] [main/TRACE] [mixin]: Added class metadata for net/minecraft/client/gui/recipebook/IRecipeShownListener to metadata cache | |
[00:23:32] [main/INFO] [mixin]: Mixing MixinInventoryEffectRenderer from mixins.cutelessmod.json into net.minecraft.client.renderer.InventoryEffectRenderer | |
[00:23:32] [main/INFO] [mixin]: Mixing INBTTagList from mixins.cutelessmod.json into net.minecraft.nbt.NBTTagList | |
[00:23:32] [main/TRACE] [mixin]: Added class metadata for net/minecraft/nbt/NBTTagEnd to metadata cache | |
[00:23:32] [main/INFO] [mixin]: Mixing MixinGuiIngameMenu from mixins.cutelessmod.json into net.minecraft.client.gui.GuiIngameMenu | |
[00:23:33] [main/TRACE] [mixin]: Added class metadata for net/minecraft/client/multiplayer/GuiConnecting to metadata cache | |
[00:23:33] [main/INFO] [mixin]: Mixing MixinGuiGameOver from mixins.cutelessmod.json into net.minecraft.client.gui.GuiGameOver | |
[00:23:33] [Client thread/INFO] [net.minecraft.client.Minecraft]: Setting user: Player937 | |
[00:23:33] [Client thread/INFO] [mixin]: Mixing MixinBlock from mixins.cutelessmod.json into net.minecraft.block.Block | |
[00:23:33] [Client thread/TRACE] [mixin]: Added class metadata for net/minecraftforge/registries/IForgeRegistryEntry$Impl to metadata cache | |
[00:23:33] [Client thread/TRACE] [mixin]: Added class metadata for net/minecraft/util/math/Vec3d to metadata cache | |
[00:23:33] [Client thread/TRACE] [mixin]: Added class metadata for net/minecraftforge/registries/IForgeRegistryEntry to metadata cache | |
[00:23:33] [Client thread/TRACE] [mixin]: Added class metadata for net/minecraft/block/state/IBlockState to metadata cache | |
[00:23:33] [Client thread/TRACE] [mixin]: Added class metadata for net/minecraft/util/math/BlockPos to metadata cache | |
[00:23:33] [Client thread/INFO] [mixin]: Mixing MixinEntityItem from mixins.cutelessmod.json into net.minecraft.entity.item.EntityItem | |
[00:23:33] [Client thread/TRACE] [mixin]: Added class metadata for net/dugged/cutelessmod/ItemCounter to metadata cache | |
[00:23:34] [Client thread/INFO] [mixin]: Mixing MixinItemStack from mixins.cutelessmod.json into net.minecraft.item.ItemStack | |
[00:23:34] [Client thread/INFO] [mixin]: Renaming synthetic method lambda$static$1(Lnet/minecraft/nbt/NBTTagCompound;)I to md91b69f$lambda$static$1$0 in mixins.cutelessmod.json:MixinItemStack | |
[00:23:34] [Client thread/INFO] [mixin]: Renaming synthetic method lambda$static$0(Lnet/minecraft/nbt/NBTTagCompound;)I to md91b69f$lambda$static$0$1 in mixins.cutelessmod.json:MixinItemStack | |
[00:23:34] [Client thread/TRACE] [mixin]: Added class metadata for com/google/common/collect/Multimap to metadata cache | |
[00:23:34] [Client thread/TRACE] [mixin]: Added class metadata for java/util/Comparator to metadata cache | |
[00:23:34] [Client thread/TRACE] [mixin]: Added class metadata for java/util/function/ToIntFunction to metadata cache | |
[00:23:34] [Client thread/TRACE] [mixin]: Added class metadata for com/google/common/collect/HashMultimap to metadata cache | |
[00:23:34] [Client thread/TRACE] [mixin]: Added class metadata for com/google/common/collect/AbstractSetMultimap to metadata cache | |
[00:23:34] [Client thread/TRACE] [mixin]: Added class metadata for com/google/common/collect/AbstractMapBasedMultimap to metadata cache | |
[00:23:34] [Client thread/TRACE] [mixin]: Added class metadata for com/google/common/collect/AbstractMultimap to metadata cache | |
[00:23:34] [Client thread/INFO] [mixin]: Mixing MixinBlockChest from mixins.cutelessmod.json into net.minecraft.block.BlockChest | |
[00:23:34] [Client thread/TRACE] [mixin]: Added class metadata for net/minecraft/util/math/AxisAlignedBB to metadata cache | |
[00:23:34] [Client thread/TRACE] [mixin]: Added class metadata for net/minecraft/util/EnumFacing to metadata cache | |
[00:23:34] [Client thread/INFO] [mixin]: Renaming synthetic method lambda$getActualState$0(Lnet/minecraft/util/math/AxisAlignedBB;)Lnet/minecraft/util/EnumFacing; to md91b69f$lambda$getActualState$0$0 in mixins.cutelessmod.json:MixinBlockChest | |
[00:23:34] [Client thread/TRACE] [mixin]: Added class metadata for net/minecraft/block/ITileEntityProvider to metadata cache | |
[00:23:34] [Client thread/TRACE] [mixin]: Added class metadata for net/dugged/cutelessmod/DoubleChestSide to metadata cache | |
[00:23:34] [Client thread/TRACE] [mixin]: Added class metadata for java/util/Arrays to metadata cache | |
[00:23:34] [Client thread/TRACE] [mixin]: Added class metadata for net/minecraft/util/EnumBlockRenderType to metadata cache | |
[00:23:34] [Client thread/TRACE] [mixin]: Added class metadata for net/minecraft/block/state/IBlockBehaviors to metadata cache | |
[00:23:34] [Client thread/TRACE] [mixin]: Added class metadata for net/minecraft/block/state/IBlockProperties to metadata cache | |
[00:23:34] [Client thread/TRACE] [mixin]: Added class metadata for java/util/function/Supplier to metadata cache | |
[00:23:34] [Client thread/TRACE] [mixin]: Added class metadata for java/lang/Enum to metadata cache | |
[00:23:34] [Client thread/TRACE] [mixin]: Added class metadata for net/minecraft/util/IStringSerializable to metadata cache | |
[00:23:34] [Client thread/TRACE] [mixin]: Added class metadata for net/minecraft/block/material/Material to metadata cache | |
[00:23:34] [Client thread/TRACE] [mixin]: Added class metadata for net/minecraft/block/properties/PropertyEnum to metadata cache | |
[00:23:34] [Client thread/TRACE] [mixin]: Added class metadata for net/minecraft/block/properties/IProperty to metadata cache | |
[00:23:34] [Client thread/TRACE] [mixin]: Added class metadata for java/lang/invoke/MethodType to metadata cache | |
[00:23:34] [Client thread/TRACE] [mixin]: Added class metadata for java/lang/invoke/MethodHandle to metadata cache | |
[00:23:34] [Client thread/TRACE] [mixin]: Added class metadata for java/lang/invoke/CallSite to metadata cache | |
[00:23:34] [Client thread/TRACE] [mixin]: Added class metadata for net/minecraft/block/properties/PropertyDirection to metadata cache | |
[00:23:34] [Client thread/TRACE] [mixin]: Added class metadata for net/minecraft/util/math/Vec3i to metadata cache | |
[00:23:34] [Client thread/TRACE] [mixin]: Added class metadata for net/minecraft/inventory/InventoryLargeChest to metadata cache | |
[00:23:34] [Client thread/TRACE] [mixin]: Added class metadata for net/minecraft/tileentity/TileEntityChest to metadata cache | |
[00:23:34] [Client thread/TRACE] [mixin]: Added class metadata for net/minecraft/tileentity/TileEntityLockableLoot to metadata cache | |
[00:23:34] [Client thread/TRACE] [mixin]: Added class metadata for net/minecraft/tileentity/TileEntityLockable to metadata cache | |
[00:23:34] [Client thread/TRACE] [mixin]: Added class metadata for net/minecraft/tileentity/TileEntity to metadata cache | |
[00:23:34] [Client thread/INFO] [mixin]: Mixing MixinBlockLiquid from mixins.cutelessmod.json into net.minecraft.block.BlockLiquid | |
[00:23:34] [Client thread/INFO] [mixin]: Mixing MixinBlockPistonBase from mixins.cutelessmod.json into net.minecraft.block.BlockPistonBase | |
[00:23:34] [Client thread/TRACE] [mixin]: Added class metadata for net/minecraft/block/BlockDirectional to metadata cache | |
[00:23:34] [Client thread/TRACE] [mixin]: Added class metadata for net/minecraft/init/Items to metadata cache | |
[00:23:34] [Client thread/TRACE] [mixin]: Added class metadata for net/dugged/cutelessmod/PistonHelper to metadata cache | |
[00:23:34] [Client thread/TRACE] [mixin]: Added class metadata for net/minecraft/block/properties/PropertyBool to metadata cache | |
[00:23:34] [Client thread/TRACE] [mixin]: Added class metadata for net/minecraft/item/Item to metadata cache | |
[00:23:34] [Client thread/TRACE] [mixin]: Added class metadata for net/minecraft/block/BlockPistonExtension$EnumPistonType to metadata cache | |
[00:23:34] [Client thread/TRACE] [mixin]: Added class metadata for net/minecraft/block/BlockPistonMoving to metadata cache | |
[00:23:34] [Client thread/TRACE] [mixin]: Added class metadata for net/minecraft/block/material/EnumPushReaction to metadata cache | |
[00:23:34] [Client thread/INFO] [mixin]: Mixing MixinTileEntityPiston from mixins.cutelessmod.json into net.minecraft.tileentity.TileEntityPiston | |
[00:23:34] [Client thread/TRACE] [mixin]: Added class metadata for java/lang/Math to metadata cache | |
[00:23:34] [Client thread/TRACE] [mixin]: Added class metadata for net/minecraft/util/ITickable to metadata cache | |
[00:23:35] [Client thread/INFO] [mixin]: Mixing MixinBlockMobSpawner from mixins.cutelessmod.json into net.minecraft.block.BlockMobSpawner | |
[00:23:35] [Client thread/INFO] [mixin]: Mixing MixinExtraBlocksInCreativeMenu from mixins.cutelessmod.json into net.minecraft.block.BlockMobSpawner | |
[00:23:35] [Client thread/TRACE] [mixin]: Added class metadata for net/minecraft/creativetab/CreativeTabs to metadata cache | |
[00:23:35] [Client thread/INFO] [mixin]: Mixing MixinBlockSnow from mixins.cutelessmod.json into net.minecraft.block.BlockSnow | |
[00:23:35] [Client thread/TRACE] [mixin]: Added class metadata for java/util/Random to metadata cache | |
[00:23:35] [Client thread/TRACE] [mixin]: Added class metadata for net/minecraft/util/EnumParticleTypes to metadata cache | |
[00:23:35] [Client thread/INFO] [mixin]: Mixing MixinBlockHugeMushroom from mixins.cutelessmod.json into net.minecraft.block.BlockHugeMushroom | |
[00:23:35] [Client thread/INFO] [mixin]: Mixing MixinExtraBlocksInCreativeMenu from mixins.cutelessmod.json into net.minecraft.block.BlockDragonEgg | |
[00:23:35] [Client thread/INFO] [mixin]: Mixing MixinExtraBlocksInCreativeMenu from mixins.cutelessmod.json into net.minecraft.block.BlockCommandBlock | |
[00:23:35] [Client thread/INFO] [mixin]: Mixing IEntityBeacon from mixins.cutelessmod.json into net.minecraft.tileentity.TileEntityBeacon | |
[00:23:35] [Client thread/INFO] [mixin]: Mixing MixinBlockSlime from mixins.cutelessmod.json into net.minecraft.block.BlockSlime | |
[00:23:35] [Client thread/TRACE] [mixin]: Added class metadata for net/minecraft/block/BlockBreakable to metadata cache | |
[00:23:35] [Client thread/INFO] [mixin]: Mixing MixinExtraBlocksInCreativeMenu from mixins.cutelessmod.json into net.minecraft.block.BlockBarrier | |
[00:23:36] [Client thread/INFO] [mixin]: Mixing MixinBlockConcretePowder from mixins.cutelessmod.json into net.minecraft.block.BlockConcretePowder | |
[00:23:36] [Client thread/TRACE] [mixin]: Added class metadata for net/minecraft/block/BlockFalling to metadata cache | |
[00:23:36] [Client thread/TRACE] [mixin]: Added class metadata for net/minecraft/item/EnumDyeColor to metadata cache | |
[00:23:36] [Client thread/INFO] [mixin]: Mixing MixinExtraBlocksInCreativeMenu from mixins.cutelessmod.json into net.minecraft.block.BlockStructure | |
[00:23:36] [Client thread/INFO] [mixin]: Mixing MixinItemFlintAndSteel from mixins.cutelessmod.json into net.minecraft.item.ItemFlintAndSteel | |
[00:23:36] [Client thread/TRACE] [mixin]: Added class metadata for com/google/common/collect/ImmutableMap to metadata cache | |
[00:23:36] [Client thread/TRACE] [mixin]: Added class metadata for net/minecraft/network/play/client/CPacketPlayerDigging to metadata cache | |
[00:23:36] [Client thread/TRACE] [mixin]: Added class metadata for net/minecraft/network/Packet to metadata cache | |
[00:23:36] [Client thread/INFO] [mixin]: Mixing IItemSword from mixins.cutelessmod.clientcommands.json into net.minecraft.item.ItemSword | |
[00:23:36] [Client thread/INFO] [mixin]: Mixing MixinEntityItemFrame from mixins.cutelessmod.json into net.minecraft.entity.item.EntityItemFrame | |
[00:23:36] [Client thread/TRACE] [mixin]: Added class metadata for net/minecraft/entity/EntityHanging to metadata cache | |
[00:23:36] [Client thread/INFO] [mixin]: Mixing MixinItemFirework from mixins.cutelessmod.json into net.minecraft.item.ItemFirework | |
[00:23:36] [Client thread/TRACE] [mixin]: Added class metadata for net/minecraft/util/CooldownTracker to metadata cache | |
[00:23:36] [Client thread/INFO] [mixin]: Mixing MixinEntityChicken from mixins.cutelessmod.json into net.minecraft.entity.passive.EntityChicken | |
[00:23:36] [Client thread/TRACE] [mixin]: Added class metadata for net/minecraft/entity/passive/EntityAnimal to metadata cache | |
[00:23:36] [Client thread/TRACE] [mixin]: Added class metadata for net/minecraft/entity/EntityAgeable to metadata cache | |
[00:23:36] [Client thread/TRACE] [mixin]: Added class metadata for net/minecraft/entity/EntityCreature to metadata cache | |
[00:23:36] [Client thread/TRACE] [mixin]: Added class metadata for net/minecraft/entity/EntityLiving to metadata cache | |
[00:23:36] [Client thread/TRACE] [mixin]: Added class metadata for net/minecraft/entity/passive/IAnimals to metadata cache | |
[00:23:37] [Client thread/DEBUG] [FML]: Creating vanilla freeze snapshot | |
[00:23:37] [Client thread/DEBUG] [FML]: Vanilla freeze snapshot created | |
[00:23:37] [Client thread/INFO] [mixin]: Mixing IKeybinding from mixins.cutelessmod.clientcommands.json into net.minecraft.client.settings.KeyBinding | |
[00:23:37] [Client thread/INFO] [mixin]: Renaming @Accessor method getKeyBindArray()Ljava/util/Map; to getKeyBindArray_$md$91b69f$0 in mixins.cutelessmod.clientcommands.json:IKeybinding | |
[00:23:38] [Client thread/INFO] [mixin]: Mixing MixinGameSettings from mixins.cutelessmod.json into net.minecraft.client.settings.GameSettings | |
[00:23:38] [Client thread/TRACE] [mixin]: Added class metadata for java/lang/StringBuilder to metadata cache | |
[00:23:38] [Client thread/TRACE] [mixin]: Added class metadata for java/lang/AbstractStringBuilder to metadata cache | |
[00:23:38] [Client thread/TRACE] [mixin]: Added class metadata for java/lang/Appendable to metadata cache | |
[00:23:38] [Client thread/TRACE] [mixin]: Added class metadata for java/lang/CharSequence to metadata cache | |
[00:23:38] [Client thread/INFO] [net.minecraft.client.Minecraft]: LWJGL Version: 2.9.4 | |
[00:23:39] [Client thread/INFO] [mixin]: Mixing MixinGlStateManager from mixins.cutelessmod.json into net.minecraft.client.renderer.GlStateManager | |
[00:23:39] [Client thread/DEBUG] [FML]: Bar Finished: Loading Resource - LanguageManager took 0.002s | |
[00:23:39] [Client thread/INFO] [mixin]: Mixing MixinGuiWorldSelection from mixins.cutelessmod.json into net.minecraft.client.gui.GuiWorldSelection | |
[00:23:39] [Client thread/TRACE] [mixin]: Added class metadata for net/minecraft/client/gui/GuiTextField to metadata cache | |
[00:23:39] [Client thread/TRACE] [mixin]: Added class metadata for net/minecraft/util/text/TextComponentTranslation to metadata cache | |
[00:23:39] [Client thread/TRACE] [mixin]: Added class metadata for net/minecraft/util/text/TextComponentBase to metadata cache | |
[00:23:39] [Client thread/TRACE] [mixin]: Added class metadata for net/minecraft/util/text/ITextComponent to metadata cache | |
[00:23:39] [Client thread/TRACE] [mixin]: Added class metadata for net/minecraft/client/gui/FontRenderer to metadata cache | |
[00:23:39] [Client thread/TRACE] [mixin]: Added class metadata for com/google/common/collect/Lists to metadata cache | |
[00:23:39] [Client thread/TRACE] [mixin]: Added class metadata for net/minecraft/world/storage/WorldSummary to metadata cache | |
[00:23:39] [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_302, Amazon.com Inc. | |
Java VM Version: OpenJDK 64-Bit Server VM (mixed mode), Amazon.com Inc. | |
Memory: 379499424 bytes (361 MB) / 563609600 bytes (537 MB) up to 3806855168 bytes (3630 MB) | |
JVM Flags: 0 total; | |
IntCache: cache: 0, tcache: 0, allocated: 0, tallocated: 0 | |
FML: | |
Loaded coremods (and transformers): | |
CutelessModLoadingPlugin (unknown) | |
GL info: ' Vendor: 'NVIDIA Corporation' Version: '4.6.0 NVIDIA 456.71' Renderer: 'GeForce GTX 980 Ti/PCIe/SSE2' | |
[00:23:39] [Client thread/INFO] [FML]: MinecraftForge v14.23.5.2847 Initialized | |
[00:23:39] [Client thread/INFO] [FML]: Starts to replace vanilla recipe ingredients with ore ingredients. | |
[00:23:39] [Client thread/INFO] [FML]: Invalid recipe found with multiple oredict ingredients in the same ingredient... | |
[00:23:39] [Client thread/INFO] [FML]: Replaced 1227 ore ingredients | |
[00:23:40] [Client thread/DEBUG] [FML]: File C:\Users\Nessi\IdeaProjects\CutelessMod\run\config\injectedDependencies.json not found. No dependencies injected | |
[00:23:40] [Client thread/DEBUG] [FML]: Building injected Mod Containers [net.minecraftforge.fml.common.FMLContainer, net.minecraftforge.common.ForgeModContainer] | |
[00:23:40] [Client thread/DEBUG] [FML]: Attempting to load mods contained in the minecraft jar file and associated classes | |
[00:23:40] [Client thread/TRACE] [FML]: Skipping known library file C:\Users\Nessi\.jdks\corretto-1.8.0_302\jre\lib\charsets.jar | |
[00:23:40] [Client thread/TRACE] [FML]: Skipping known library file C:\Users\Nessi\.jdks\corretto-1.8.0_302\jre\lib\ext\access-bridge-64.jar | |
[00:23:40] [Client thread/TRACE] [FML]: Skipping known library file C:\Users\Nessi\.jdks\corretto-1.8.0_302\jre\lib\ext\cldrdata.jar | |
[00:23:40] [Client thread/TRACE] [FML]: Skipping known library file C:\Users\Nessi\.jdks\corretto-1.8.0_302\jre\lib\ext\dnsns.jar | |
[00:23:40] [Client thread/TRACE] [FML]: Skipping known library file C:\Users\Nessi\.jdks\corretto-1.8.0_302\jre\lib\ext\jaccess.jar | |
[00:23:40] [Client thread/TRACE] [FML]: Skipping known library file C:\Users\Nessi\.jdks\corretto-1.8.0_302\jre\lib\ext\jfxrt.jar | |
[00:23:40] [Client thread/TRACE] [FML]: Skipping known library file C:\Users\Nessi\.jdks\corretto-1.8.0_302\jre\lib\ext\localedata.jar | |
[00:23:40] [Client thread/TRACE] [FML]: Skipping known library file C:\Users\Nessi\.jdks\corretto-1.8.0_302\jre\lib\ext\nashorn.jar | |
[00:23:40] [Client thread/TRACE] [FML]: Skipping known library file C:\Users\Nessi\.jdks\corretto-1.8.0_302\jre\lib\ext\sunec.jar | |
[00:23:40] [Client thread/TRACE] [FML]: Skipping known library file C:\Users\Nessi\.jdks\corretto-1.8.0_302\jre\lib\ext\sunjce_provider.jar | |
[00:23:40] [Client thread/TRACE] [FML]: Skipping known library file C:\Users\Nessi\.jdks\corretto-1.8.0_302\jre\lib\ext\sunmscapi.jar | |
[00:23:40] [Client thread/TRACE] [FML]: Skipping known library file C:\Users\Nessi\.jdks\corretto-1.8.0_302\jre\lib\ext\sunpkcs11.jar | |
[00:23:40] [Client thread/TRACE] [FML]: Skipping known library file C:\Users\Nessi\.jdks\corretto-1.8.0_302\jre\lib\ext\zipfs.jar | |
[00:23:40] [Client thread/TRACE] [FML]: Skipping known library file C:\Users\Nessi\.jdks\corretto-1.8.0_302\jre\lib\jce.jar | |
[00:23:40] [Client thread/TRACE] [FML]: Skipping known library file C:\Users\Nessi\.jdks\corretto-1.8.0_302\jre\lib\jfr.jar | |
[00:23:40] [Client thread/TRACE] [FML]: Skipping known library file C:\Users\Nessi\.jdks\corretto-1.8.0_302\jre\lib\jfxswt.jar | |
[00:23:40] [Client thread/TRACE] [FML]: Skipping known library file C:\Users\Nessi\.jdks\corretto-1.8.0_302\jre\lib\jsse.jar | |
[00:23:40] [Client thread/TRACE] [FML]: Skipping known library file C:\Users\Nessi\.jdks\corretto-1.8.0_302\jre\lib\management-agent.jar | |
[00:23:40] [Client thread/TRACE] [FML]: Skipping known library file C:\Users\Nessi\.jdks\corretto-1.8.0_302\jre\lib\resources.jar | |
[00:23:40] [Client thread/TRACE] [FML]: Skipping known library file C:\Users\Nessi\.jdks\corretto-1.8.0_302\jre\lib\rt.jar | |
[00:23:40] [Client thread/DEBUG] [FML]: Found a minecraft related directory at C:\Users\Nessi\IdeaProjects\CutelessMod\build\classes\java\main, examining for mod candidates | |
[00:23:40] [Client thread/DEBUG] [FML]: Found a minecraft related directory at C:\Users\Nessi\IdeaProjects\CutelessMod\build\resources\main, examining for mod candidates | |
[00:23:40] [Client thread/DEBUG] [FML]: Found a minecraft related file at C:\Users\Nessi\.gradle\caches\minecraft\deobfedDeps\compileDummy.jar, examining for mod candidates | |
[00:23:40] [Client thread/DEBUG] [FML]: Found a minecraft related file at C:\Users\Nessi\.gradle\caches\minecraft\deobfedDeps\providedDummy.jar, examining for mod candidates | |
[00:23:40] [Client thread/DEBUG] [FML]: Found a minecraft related file at C:\Users\Nessi\.gradle\caches\modules-2\files-2.1\org.spongepowered\mixin\0.8.3\5b08b203d5c601e2393be5cf9b4d39c26d12eb5f\mixin-0.8.3.jar, examining for mod candidates | |
[00:23:40] [Client thread/DEBUG] [FML]: Found a minecraft related file at C:\Users\Nessi\.gradle\caches\minecraft\net\minecraftforge\forge\1.12.2-14.23.5.2847\stable\39\forgeSrc-1.12.2-14.23.5.2847.jar, examining for mod candidates | |
[00:23:40] [Client thread/TRACE] [FML]: Skipping known library file C:\Users\Nessi\.gradle\caches\modules-2\files-2.1\com.mojang\authlib\1.5.25\9834cdf236c22e84b946bba989e2f94ef5897c3c\authlib-1.5.25.jar | |
[00:23:40] [Client thread/DEBUG] [FML]: Found a minecraft related file at C:\Users\Nessi\.gradle\caches\modules-2\files-2.1\com.google.code.findbugs\jsr305\3.0.1\f7be08ec23c21485b9b5a1cf1654c2ec8c58168d\jsr305-3.0.1.jar, examining for mod candidates | |
[00:23:40] [Client thread/DEBUG] [FML]: Found a minecraft related file at C:\Users\Nessi\.gradle\caches\modules-2\files-2.1\com.mojang\patchy\1.2.3\e3107ca512d704a434076a153a6e1149e3787275\patchy-1.2.3.jar, examining for mod candidates | |
[00:23:40] [Client thread/TRACE] [FML]: Skipping known library file C:\Users\Nessi\.gradle\caches\modules-2\files-2.1\oshi-project\oshi-core\1.1\9ddf7b048a8d701be231c0f4f95fd986198fd2d8\oshi-core-1.1.jar | |
[00:23:40] [Client thread/DEBUG] [FML]: Found a minecraft related file at C:\Users\Nessi\.gradle\caches\modules-2\files-2.1\com.mojang\text2speech\1.10.3\48fd510879dff266c3815947de66e3d4809f8668\text2speech-1.10.3.jar, examining for mod candidates | |
[00:23:40] [Client thread/TRACE] [FML]: Skipping known library file C:\Users\Nessi\.gradle\caches\modules-2\files-2.1\net.java.dev.jna\jna\4.4.0\cb208278274bf12ebdb56c61bd7407e6f774d65a\jna-4.4.0.jar | |
[00:23:40] [Client thread/TRACE] [FML]: Skipping known library file C:\Users\Nessi\.gradle\caches\modules-2\files-2.1\net.java.dev.jna\platform\3.4.0\e3f70017be8100d3d6923f50b3d2ee17714e9c13\platform-3.4.0.jar | |
[00:23:40] [Client thread/TRACE] [FML]: Skipping known library file C:\Users\Nessi\.gradle\caches\modules-2\files-2.1\com.ibm.icu\icu4j-core-mojang\51.2\63d216a9311cca6be337c1e458e587f99d382b84\icu4j-core-mojang-51.2.jar | |
[00:23:40] [Client thread/TRACE] [FML]: Skipping known library file C:\Users\Nessi\.gradle\caches\modules-2\files-2.1\net.minecraft\launchwrapper\1.12\111e7bea9c968cdb3d06ef4632bf7ff0824d0f36\launchwrapper-1.12.jar | |
[00:23:40] [Client thread/TRACE] [FML]: Skipping known library file C:\Users\Nessi\.gradle\caches\modules-2\files-2.1\net.sf.jopt-simple\jopt-simple\5.0.3\cdd846cfc4e0f7eefafc02c0f5dce32b9303aa2a\jopt-simple-5.0.3.jar | |
[00:23:40] [Client thread/TRACE] [FML]: Skipping known library file C:\Users\Nessi\.gradle\caches\modules-2\files-2.1\io.netty\netty-all\4.1.9.Final\97860965d6a0a6b98e7f569f3f966727b8db75\netty-all-4.1.9.Final.jar | |
[00:23:40] [Client thread/TRACE] [FML]: Skipping known library file C:\Users\Nessi\.gradle\caches\modules-2\files-2.1\com.google.guava\guava\21.0\3a3d111be1be1b745edfa7d91678a12d7ed38709\guava-21.0.jar | |
[00:23:40] [Client thread/DEBUG] [FML]: Found a minecraft related file at C:\Users\Nessi\.gradle\caches\modules-2\files-2.1\org.apache.maven\maven-artifact\3.5.3\7dc72b6d6d8a6dced3d294ed54c2cc3515ade9f4\maven-artifact-3.5.3.jar, examining for mod candidates | |
[00:23:40] [Client thread/TRACE] [FML]: Skipping known library file C:\Users\Nessi\.gradle\caches\modules-2\files-2.1\org.apache.commons\commons-lang3\3.5\6c6c702c89bfff3cd9e80b04d668c5e190d588c6\commons-lang3-3.5.jar | |
[00:23:40] [Client thread/TRACE] [FML]: Skipping known library file C:\Users\Nessi\.gradle\caches\modules-2\files-2.1\commons-io\commons-io\2.5\2852e6e05fbb95076fc091f6d1780f1f8fe35e0f\commons-io-2.5.jar | |
[00:23:40] [Client thread/TRACE] [FML]: Skipping known library file C:\Users\Nessi\.gradle\caches\modules-2\files-2.1\com.mojang\realms\1.10.22\bd0dccebdf3744c75f1ca20063f16e8f7d5e663f\realms-1.10.22.jar | |
[00:23:40] [Client thread/TRACE] [FML]: Skipping known library file C:\Users\Nessi\.gradle\caches\modules-2\files-2.1\org.apache.httpcomponents\httpclient\4.3.3\18f4247ff4572a074444572cee34647c43e7c9c7\httpclient-4.3.3.jar | |
[00:23:40] [Client thread/TRACE] [FML]: Skipping known library file C:\Users\Nessi\.gradle\caches\modules-2\files-2.1\commons-codec\commons-codec\1.10\4b95f4897fa13f2cd904aee711aeafc0c5295cd8\commons-codec-1.10.jar | |
[00:23:40] [Client thread/TRACE] [FML]: Skipping known library file C:\Users\Nessi\.gradle\caches\modules-2\files-2.1\com.paulscode\librarylwjglopenal\20100824\73e80d0794c39665aec3f62eee88ca91676674ef\librarylwjglopenal-20100824.jar | |
[00:23:40] [Client thread/TRACE] [FML]: Skipping known library file C:\Users\Nessi\.gradle\caches\modules-2\files-2.1\org.lwjgl.lwjgl\lwjgl_util\2.9.4-nightly-20150209\d51a7c040a721d13efdfbd34f8b257b2df882ad0\lwjgl_util-2.9.4-nightly-20150209.jar | |
[00:23:40] [Client thread/TRACE] [FML]: Skipping known library file C:\Users\Nessi\.gradle\caches\modules-2\files-2.1\org.lwjgl.lwjgl\lwjgl\2.9.4-nightly-20150209\697517568c68e78ae0b4544145af031c81082dfe\lwjgl-2.9.4-nightly-20150209.jar | |
[00:23:40] [Client thread/TRACE] [FML]: Skipping known library file C:\Users\Nessi\.gradle\caches\modules-2\files-2.1\net.java.jinput\jinput\2.0.5\39c7796b469a600f72380316f6b1f11db6c2c7c4\jinput-2.0.5.jar | |
[00:23:40] [Client thread/TRACE] [FML]: Skipping known library file C:\Users\Nessi\.gradle\caches\modules-2\files-2.1\net.java.jutils\jutils\1.0.0\e12fe1fda814bd348c1579329c86943d2cd3c6a6\jutils-1.0.0.jar | |
[00:23:40] [Client thread/TRACE] [FML]: Skipping known library file C:\Users\Nessi\.gradle\caches\modules-2\files-2.1\com.google.code.gson\gson\2.8.0\c4ba5371a29ac9b2ad6129b1d39ea38750043eff\gson-2.8.0.jar | |
[00:23:40] [Client thread/TRACE] [FML]: Skipping known library file C:\Users\Nessi\.gradle\caches\modules-2\files-2.1\org.apache.commons\commons-compress\1.8.1\a698750c16740fd5b3871425f4cb3bbaa87f529d\commons-compress-1.8.1.jar | |
[00:23:40] [Client thread/TRACE] [FML]: Skipping known library file C:\Users\Nessi\.gradle\caches\modules-2\files-2.1\commons-logging\commons-logging\1.1.3\f6f66e966c70a83ffbdb6f17a0919eaf7c8aca7f\commons-logging-1.1.3.jar | |
[00:23:40] [Client thread/TRACE] [FML]: Skipping known library file C:\Users\Nessi\.gradle\caches\modules-2\files-2.1\org.apache.httpcomponents\httpcore\4.3.2\31fbbff1ddbf98f3aa7377c94d33b0447c646b6e\httpcore-4.3.2.jar | |
[00:23:40] [Client thread/TRACE] [FML]: Skipping known library file C:\Users\Nessi\.gradle\caches\modules-2\files-2.1\it.unimi.dsi\fastutil\7.1.0\9835253257524c1be7ab50c057aa2d418fb72082\fastutil-7.1.0.jar | |
[00:23:40] [Client thread/TRACE] [FML]: Skipping known library file C:\Users\Nessi\.gradle\caches\modules-2\files-2.1\org.apache.logging.log4j\log4j-core\2.8.1\4ac28ff2f1ddf05dae3043a190451e8c46b73c31\log4j-core-2.8.1.jar | |
[00:23:40] [Client thread/TRACE] [FML]: Skipping known library file C:\Users\Nessi\.gradle\caches\modules-2\files-2.1\org.apache.logging.log4j\log4j-api\2.8.1\e801d13612e22cad62a3f4f3fe7fdbe6334a8e72\log4j-api-2.8.1.jar | |
[00:23:40] [Client thread/TRACE] [FML]: Skipping known library file C:\Users\Nessi\.gradle\caches\modules-2\files-2.1\org.jline\jline\3.5.1\51800e9d7a13608894a5a28eed0f5c7fa2f300fb\jline-3.5.1.jar | |
[00:23:40] [Client thread/DEBUG] [FML]: Found a minecraft related file at C:\Users\Nessi\.gradle\caches\modules-2\files-2.1\org.ow2.asm\asm-debug-all\5.2\3354e11e2b34215f06dab629ab88e06aca477c19\asm-debug-all-5.2.jar, examining for mod candidates | |
[00:23:40] [Client thread/TRACE] [FML]: Skipping known library file C:\Users\Nessi\.gradle\caches\modules-2\files-2.1\com.typesafe.akka\akka-actor_2.11\2.3.3\ed62e9fc709ca0f2ff1a3220daa8b70a2870078e\akka-actor_2.11-2.3.3.jar | |
[00:23:40] [Client thread/TRACE] [FML]: Skipping known library file C:\Users\Nessi\.gradle\caches\modules-2\files-2.1\com.typesafe\config\1.2.1\f771f71fdae3df231bcd54d5ca2d57f0bf93f467\config-1.2.1.jar | |
[00:23:40] [Client thread/TRACE] [FML]: Skipping known library file C:\Users\Nessi\.gradle\caches\modules-2\files-2.1\org.scala-lang\scala-actors-migration_2.11\1.1.0\dfa8bc42b181d5b9f1a5dd147f8ae308b893eb6f\scala-actors-migration_2.11-1.1.0.jar | |
[00:23:40] [Client thread/TRACE] [FML]: Skipping known library file C:\Users\Nessi\.gradle\caches\modules-2\files-2.1\org.scala-lang.plugins\scala-continuations-plugin_2.11.1\1.0.2\f361a3283452c57fa30c1ee69448995de23c60f7\scala-continuations-plugin_2.11.1-1.0.2.jar | |
[00:23:40] [Client thread/TRACE] [FML]: Skipping known library file C:\Users\Nessi\.gradle\caches\modules-2\files-2.1\org.scala-lang\scala-compiler\2.11.1\56ea2e6c025e0821f28d73ca271218b8dd04926a\scala-compiler-2.11.1.jar | |
[00:23:40] [Client thread/TRACE] [FML]: Skipping known library file C:\Users\Nessi\.gradle\caches\modules-2\files-2.1\org.scala-lang.plugins\scala-continuations-library_2.11\1.0.2\e517c53a7e9acd6b1668c5a35eccbaa3bab9aac\scala-continuations-library_2.11-1.0.2.jar | |
[00:23:40] [Client thread/TRACE] [FML]: Skipping known library file C:\Users\Nessi\.gradle\caches\modules-2\files-2.1\org.scala-lang.modules\scala-parser-combinators_2.11\1.0.1\f05d7345bf5a58924f2837c6c1f4d73a938e1ff0\scala-parser-combinators_2.11-1.0.1.jar | |
[00:23:40] [Client thread/TRACE] [FML]: Skipping known library file C:\Users\Nessi\.gradle\caches\modules-2\files-2.1\org.scala-lang\scala-reflect\2.11.1\6580347e61cc7f8e802941e7fde40fa83b8badeb\scala-reflect-2.11.1.jar | |
[00:23:40] [Client thread/TRACE] [FML]: Skipping known library file C:\Users\Nessi\.gradle\caches\modules-2\files-2.1\org.scala-lang.modules\scala-swing_2.11\1.0.1\b1cdd92bd47b1e1837139c1c53020e86bb9112ae\scala-swing_2.11-1.0.1.jar | |
[00:23:40] [Client thread/TRACE] [FML]: Skipping known library file C:\Users\Nessi\.gradle\caches\modules-2\files-2.1\org.scala-lang.modules\scala-xml_2.11\1.0.2\820fbca7e524b530fdadc594c39d49a21ea0337e\scala-xml_2.11-1.0.2.jar | |
[00:23:40] [Client thread/TRACE] [FML]: Skipping known library file C:\Users\Nessi\.gradle\caches\modules-2\files-2.1\org.scala-lang\scala-library\2.11.1\e11da23da3eabab9f4777b9220e60d44c1aab6a\scala-library-2.11.1.jar | |
[00:23:40] [Client thread/TRACE] [FML]: Skipping known library file C:\Users\Nessi\.gradle\caches\modules-2\files-2.1\lzma\lzma\0.0.1\521616dc7487b42bef0e803bd2fa3faf668101d7\lzma-0.0.1.jar | |
[00:23:40] [Client thread/TRACE] [FML]: Skipping known library file C:\Users\Nessi\.gradle\caches\modules-2\files-2.1\net.sf.trove4j\trove4j\3.0.3\42ccaf4761f0dfdfa805c9e340d99a755907e2dd\trove4j-3.0.3.jar | |
[00:23:40] [Client thread/TRACE] [FML]: Skipping known library file C:\Users\Nessi\.gradle\caches\modules-2\files-2.1\com.paulscode\codecjorbis\20101023\c73b5636faf089d9f00e8732a829577de25237ee\codecjorbis-20101023.jar | |
[00:23:40] [Client thread/TRACE] [FML]: Skipping known library file C:\Users\Nessi\.gradle\caches\modules-2\files-2.1\com.paulscode\codecwav\20101023\12f031cfe88fef5c1dd36c563c0a3a69bd7261da\codecwav-20101023.jar | |
[00:23:40] [Client thread/TRACE] [FML]: Skipping known library file C:\Users\Nessi\.gradle\caches\modules-2\files-2.1\com.paulscode\libraryjavasound\20101123\5c5e304366f75f9eaa2e8cca546a1fb6109348b3\libraryjavasound-20101123.jar | |
[00:23:40] [Client thread/TRACE] [FML]: Skipping known library file C:\Users\Nessi\.gradle\caches\modules-2\files-2.1\com.paulscode\soundsystem\20120107\419c05fe9be71f792b2d76cfc9b67f1ed0fec7f6\soundsystem-20120107.jar | |
[00:23:40] [Client thread/TRACE] [FML]: Skipping known library file C:\Users\Nessi\.gradle\caches\modules-2\files-2.1\java3d\vecmath\1.5.2\79846ba34cbd89e2422d74d53752f993dcc2ccaf\vecmath-1.5.2.jar | |
[00:23:40] [Client thread/DEBUG] [FML]: Found a minecraft related file at C:\Users\Nessi\.gradle\caches\modules-2\files-2.1\ca.weblite\java-objc-bridge\1.0.0\6ef160c3133a78de015830860197602ca1c855d3\java-objc-bridge-1.0.0.jar, examining for mod candidates | |
[00:23:40] [Client thread/DEBUG] [FML]: Found a minecraft related file at C:\Users\Nessi\.gradle\caches\modules-2\files-2.1\org.codehaus.plexus\plexus-utils\3.1.0\60eecb6f15abdb1c653ad80abaac6fe188b3feaa\plexus-utils-3.1.0.jar, examining for mod candidates | |
[00:23:40] [Client thread/TRACE] [FML]: Skipping known library file C:\Users\Nessi\.gradle\caches\modules-2\files-2.1\org.lwjgl.lwjgl\lwjgl-platform\2.9.4-nightly-20150209\931074f46c795d2f7b30ed6395df5715cfd7675b\lwjgl-platform-2.9.4-nightly-20150209-natives-linux.jar | |
[00:23:40] [Client thread/TRACE] [FML]: Skipping known library file C:\Users\Nessi\.gradle\caches\modules-2\files-2.1\org.lwjgl.lwjgl\lwjgl-platform\2.9.4-nightly-20150209\bcab850f8f487c3f4c4dbabde778bb82bd1a40ed\lwjgl-platform-2.9.4-nightly-20150209-natives-osx.jar | |
[00:23:40] [Client thread/TRACE] [FML]: Skipping known library file C:\Users\Nessi\.gradle\caches\modules-2\files-2.1\org.lwjgl.lwjgl\lwjgl-platform\2.9.4-nightly-20150209\b84d5102b9dbfabfeb5e43c7e2828d98a7fc80e0\lwjgl-platform-2.9.4-nightly-20150209-natives-windows.jar | |
[00:23:40] [Client thread/TRACE] [FML]: Skipping known library file C:\Users\Nessi\.gradle\caches\modules-2\files-2.1\net.java.jinput\jinput-platform\2.0.5\7ff832a6eb9ab6a767f1ade2b548092d0fa64795\jinput-platform-2.0.5-natives-linux.jar | |
[00:23:40] [Client thread/TRACE] [FML]: Skipping known library file C:\Users\Nessi\.gradle\caches\modules-2\files-2.1\net.java.jinput\jinput-platform\2.0.5\53f9c919f34d2ca9de8c51fc4e1e8282029a9232\jinput-platform-2.0.5-natives-osx.jar | |
[00:23:40] [Client thread/TRACE] [FML]: Skipping known library file C:\Users\Nessi\.gradle\caches\modules-2\files-2.1\net.java.jinput\jinput-platform\2.0.5\385ee093e01f587f30ee1c8a2ee7d408fd732e16\jinput-platform-2.0.5-natives-windows.jar | |
[00:23:40] [Client thread/TRACE] [FML]: Skipping known library file C:\Users\Nessi\.gradle\caches\modules-2\files-2.1\org.scala-lang\scala-actors\2.11.0\8ccfb6541de179bb1c4d45cf414acee069b7f78b\scala-actors-2.11.0.jar | |
[00:23:40] [Client thread/DEBUG] [FML]: Found a minecraft related directory at C:\Users\Nessi\.gradle\caches\minecraft\net\minecraftforge\forge\1.12.2-14.23.5.2847\start, examining for mod candidates | |
[00:23:40] [Client thread/DEBUG] [FML]: Found a minecraft related file at C:\Program Files\JetBrains\IntelliJ IDEA 2019.3\lib\idea_rt.jar, examining for mod candidates | |
[00:23:40] [Client thread/DEBUG] [FML]: Minecraft jar mods loaded successfully | |
[00:23:40] [Client thread/INFO] [FML]: Searching C:\Users\Nessi\IdeaProjects\CutelessMod\run\.\mods for mods | |
[00:23:40] [Client thread/DEBUG] [FML]: Examining directory main for potential mods | |
[00:23:40] [Client thread/DEBUG] [FML]: No mcmod.info file found in directory main | |
[00:23:40] [Client thread/TRACE] [FML]: Recursing into package net | |
[00:23:40] [Client thread/TRACE] [FML]: Recursing into package net/dugged | |
[00:23:40] [Client thread/TRACE] [FML]: Recursing into package net/dugged/cutelessmod | |
[00:23:40] [Client thread/TRACE] [FML]: Recursing into package net/dugged/cutelessmod/chunk_display | |
[00:23:40] [Client thread/TRACE] [FML]: Recursing into package net/dugged/cutelessmod/chunk_display/gui | |
[00:23:40] [Client thread/TRACE] [FML]: Recursing into package net/dugged/cutelessmod/chunk_display/mixins | |
[00:23:40] [Client thread/TRACE] [FML]: Recursing into package net/dugged/cutelessmod/clientcommands | |
[00:23:40] [Client thread/TRACE] [FML]: Recursing into package net/dugged/cutelessmod/clientcommands/mixins | |
[00:23:40] [Client thread/TRACE] [FML]: Recursing into package net/dugged/cutelessmod/clientcommands/worldedit | |
[00:23:40] [Client thread/DEBUG] [FML]: Identified a mod of type Lnet/minecraftforge/fml/common/Mod; (net.dugged.cutelessmod.CutelessMod) - loading | |
[00:23:40] [Client thread/TRACE] [FML]: Parsed dependency info for cutelessmod: Requirements: [] After:[] Before:[] | |
[00:23:40] [Client thread/TRACE] [FML]: Recursing into package net/dugged/cutelessmod/mixins | |
[00:23:40] [Client thread/DEBUG] [FML]: Examining directory main for potential mods | |
[00:23:40] [Client thread/DEBUG] [FML]: Found an mcmod.info file in directory main | |
[00:23:40] [Client thread/TRACE] [FML]: Recursing into package assets | |
[00:23:40] [Client thread/TRACE] [FML]: Recursing into package assets/cutelessmod | |
[00:23:40] [Client thread/TRACE] [FML]: Recursing into package assets/cutelessmod/lang | |
[00:23:40] [Client thread/TRACE] [FML]: Recursing into package assets/cutelessmod/textures | |
[00:23:40] [Client thread/TRACE] [FML]: Recursing into package assets/minecraft | |
[00:23:40] [Client thread/TRACE] [FML]: Recursing into package assets/minecraft/blockstates | |
[00:23:40] [Client thread/TRACE] [FML]: Recursing into package assets/minecraft/models | |
[00:23:40] [Client thread/TRACE] [FML]: Recursing into package assets/minecraft/models/block | |
[00:23:40] [Client thread/TRACE] [FML]: Recursing into package assets/minecraft/models/item | |
[00:23:40] [Client thread/TRACE] [FML]: Recursing into package assets/minecraft/textures | |
[00:23:40] [Client thread/TRACE] [FML]: Recursing into package assets/minecraft/textures/entity | |
[00:23:40] [Client thread/TRACE] [FML]: Recursing into package assets/minecraft/textures/entity/chest | |
[00:23:40] [Client thread/DEBUG] [FML]: Examining file compileDummy.jar for potential mods | |
[00:23:40] [Client thread/DEBUG] [FML]: The mod container compileDummy.jar appears to be missing an mcmod.info file | |
[00:23:40] [Client thread/DEBUG] [FML]: Examining file providedDummy.jar for potential mods | |
[00:23:40] [Client thread/DEBUG] [FML]: The mod container providedDummy.jar appears to be missing an mcmod.info file | |
[00:23:40] [Client thread/DEBUG] [FML]: Examining file mixin-0.8.3.jar for potential mods | |
[00:23:40] [Client thread/DEBUG] [FML]: The mod container mixin-0.8.3.jar appears to be missing an mcmod.info file | |
[00:23:40] [Client thread/DEBUG] [FML]: Examining file forgeSrc-1.12.2-14.23.5.2847.jar for potential mods | |
[00:23:40] [Client thread/DEBUG] [FML]: The mod container forgeSrc-1.12.2-14.23.5.2847.jar appears to be missing an mcmod.info file | |
[00:23:41] [Client thread/DEBUG] [FML]: Examining file jsr305-3.0.1.jar for potential mods | |
[00:23:41] [Client thread/DEBUG] [FML]: The mod container jsr305-3.0.1.jar appears to be missing an mcmod.info file | |
[00:23:41] [Client thread/DEBUG] [FML]: Examining file patchy-1.2.3.jar for potential mods | |
[00:23:41] [Client thread/DEBUG] [FML]: The mod container patchy-1.2.3.jar appears to be missing an mcmod.info file | |
[00:23:41] [Client thread/DEBUG] [FML]: Examining file text2speech-1.10.3.jar for potential mods | |
[00:23:41] [Client thread/DEBUG] [FML]: The mod container text2speech-1.10.3.jar appears to be missing an mcmod.info file | |
[00:23:41] [Client thread/DEBUG] [FML]: Examining file maven-artifact-3.5.3.jar for potential mods | |
[00:23:41] [Client thread/DEBUG] [FML]: The mod container maven-artifact-3.5.3.jar appears to be missing an mcmod.info file | |
[00:23:41] [Client thread/DEBUG] [FML]: Examining file asm-debug-all-5.2.jar for potential mods | |
[00:23:41] [Client thread/DEBUG] [FML]: The mod container asm-debug-all-5.2.jar appears to be missing an mcmod.info file | |
[00:23:41] [Client thread/DEBUG] [FML]: Examining file java-objc-bridge-1.0.0.jar for potential mods | |
[00:23:41] [Client thread/DEBUG] [FML]: The mod container java-objc-bridge-1.0.0.jar appears to be missing an mcmod.info file | |
[00:23:41] [Client thread/DEBUG] [FML]: Examining file plexus-utils-3.1.0.jar for potential mods | |
[00:23:41] [Client thread/DEBUG] [FML]: The mod container plexus-utils-3.1.0.jar appears to be missing an mcmod.info file | |
[00:23:41] [Client thread/DEBUG] [FML]: Examining directory start for potential mods | |
[00:23:41] [Client thread/DEBUG] [FML]: No mcmod.info file found in directory start | |
[00:23:41] [Client thread/TRACE] [FML]: Recursing into package net | |
[00:23:41] [Client thread/TRACE] [FML]: Recursing into package net/minecraftforge | |
[00:23:41] [Client thread/TRACE] [FML]: Recursing into package net/minecraftforge/gradle | |
[00:23:41] [Client thread/TRACE] [FML]: Recursing into package net/minecraftforge/gradle/tweakers | |
[00:23:41] [Client thread/DEBUG] [FML]: Examining file idea_rt.jar for potential mods | |
[00:23:41] [Client thread/DEBUG] [FML]: The mod container idea_rt.jar appears to be missing an mcmod.info file | |
[00:23:41] [Client thread/INFO] [FML]: Forge Mod Loader has identified 5 mods to load | |
[00:23:41] [Client thread/TRACE] [FML]: Received a system property request '' | |
[00:23:41] [Client thread/TRACE] [FML]: System property request managing the state of 0 mods | |
[00:23:41] [Client thread/DEBUG] [FML]: After merging, found state information for 0 mods | |
[00:23:41] [Client thread/DEBUG] [FML]: Mod Forge Mod Loader is missing a pack.mcmeta file, substituting a dummy one | |
[00:23:41] [Client thread/DEBUG] [FML]: Mod Minecraft Forge is missing a pack.mcmeta file, substituting a dummy one | |
[00:23:41] [Client thread/DEBUG] [FML]: Enabling mod cutelessmod | |
[00:23:41] [Client thread/DEBUG] [FML]: Mod CutelessMod is missing a pack.mcmeta file, substituting a dummy one | |
[00:23:41] [Client thread/TRACE] [FML]: Verifying mod requirements are satisfied | |
[00:23:41] [Client thread/TRACE] [FML]: All mod requirements are satisfied | |
[00:23:41] [Thread-3/INFO] [FML]: Using sync timing. 200 frames of Display.update took 91456300 nanos | |
[00:23:41] [Client thread/TRACE] [FML]: Sorting mods into an ordered list | |
[00:23:41] [Client thread/TRACE] [FML]: Mod sorting completed successfully | |
[00:23:41] [Client thread/DEBUG] [FML]: Mod sorting data | |
[00:23:41] [Client thread/DEBUG] [FML]: cutelessmod(CutelessMod:0.3.0): main () | |
[00:23:41] [Client thread/DEBUG] [FML]: Loading @Config anotation data | |
[00:23:41] [Client thread/TRACE] [FML]: Sending event FMLConstructionEvent to mod minecraft | |
[00:23:41] [Client thread/TRACE] [FML]: Sent event FMLConstructionEvent to mod minecraft | |
[00:23:41] [Client thread/DEBUG] [FML]: Bar Step: Construction - Minecraft took 0.004s | |
[00:23:41] [Client thread/TRACE] [FML]: Sending event FMLConstructionEvent to mod mcp | |
[00:23:41] [Client thread/TRACE] [FML]: Sent event FMLConstructionEvent to mod mcp | |
[00:23:41] [Client thread/DEBUG] [FML]: Bar Step: Construction - Minecraft Coder Pack took 0.000s | |
[00:23:41] [Client thread/TRACE] [FML]: Sending event FMLConstructionEvent to mod FML | |
[00:23:42] [Client thread/TRACE] [FML]: Mod FML is using network checker : Invoking method checkModLists | |
[00:23:42] [Client thread/TRACE] [FML]: Testing mod FML to verify it accepts its own version in a remote connection | |
[00:23:42] [Client thread/TRACE] [FML]: The mod FML accepts its own version (8.0.99.99) | |
[00:23:42] [Client thread/INFO] [FML]: Attempting connection with missing mods [minecraft, mcp, FML, forge, cutelessmod] at CLIENT | |
[00:23:42] [Client thread/INFO] [FML]: Attempting connection with missing mods [minecraft, mcp, FML, forge, cutelessmod] at SERVER | |
[00:23:42] [Client thread/INFO] [mixin]: Mixing MixinFMLIndexedMessageToMessageCodec from mixins.cutelessmod.chunk_display.json into net.minecraftforge.fml.common.network.FMLIndexedMessageToMessageCodec | |
[00:23:42] [Client thread/TRACE] [mixin]: Added class metadata for io/netty/handler/codec/MessageToMessageCodec to metadata cache | |
[00:23:42] [Client thread/TRACE] [mixin]: Added class metadata for io/netty/channel/ChannelDuplexHandler to metadata cache | |
[00:23:42] [Client thread/TRACE] [mixin]: Added class metadata for io/netty/channel/ChannelInboundHandlerAdapter to metadata cache | |
[00:23:42] [Client thread/TRACE] [mixin]: Added class metadata for io/netty/channel/ChannelHandlerAdapter to metadata cache | |
[00:23:42] [Client thread/TRACE] [mixin]: Added class metadata for io/netty/channel/ChannelHandler to metadata cache | |
[00:23:42] [Client thread/TRACE] [mixin]: Added class metadata for io/netty/channel/ChannelInboundHandler to metadata cache | |
[00:23:42] [Client thread/TRACE] [mixin]: Added class metadata for io/netty/channel/ChannelOutboundHandler to metadata cache | |
[00:23:42] [Client thread/TRACE] [mixin]: Added class metadata for net/minecraftforge/fml/common/network/internal/FMLProxyPacket to metadata cache | |
[00:23:42] [Client thread/TRACE] [mixin]: Added class metadata for io/netty/buffer/ByteBuf to metadata cache | |
[00:23:42] [Client thread/TRACE] [mixin]: Added class metadata for net/minecraftforge/fml/common/FMLLog to metadata cache | |
[00:23:42] [Client thread/TRACE] [mixin]: Added class metadata for io/netty/channel/ChannelHandlerContext to metadata cache | |
[00:23:42] [Client thread/TRACE] [mixin]: Added class metadata for net/minecraftforge/fml/common/network/NetworkRegistry to metadata cache | |
[00:23:42] [Client thread/TRACE] [mixin]: Added class metadata for io/netty/channel/Channel to metadata cache | |
[00:23:42] [Client thread/TRACE] [mixin]: Added class metadata for io/netty/util/AttributeMap to metadata cache | |
[00:23:42] [Client thread/TRACE] [mixin]: Added class metadata for org/apache/logging/log4j/Logger to metadata cache | |
[00:23:42] [Client thread/TRACE] [mixin]: Added class metadata for io/netty/util/Attribute to metadata cache | |
[00:23:42] [Client thread/TRACE] [mixin]: Added class metadata for java/lang/ref/WeakReference to metadata cache | |
[00:23:42] [Client thread/TRACE] [mixin]: Added class metadata for java/lang/ref/Reference to metadata cache | |
[00:23:42] [Client thread/TRACE] [mixin]: Added class metadata for java/lang/ThreadLocal to metadata cache | |
[00:23:42] [Client thread/TRACE] [mixin]: Added class metadata for io/netty/util/ReferenceCounted to metadata cache | |
[00:23:42] [Client thread/TRACE] [mixin]: Added class metadata for io/netty/buffer/Unpooled to metadata cache | |
[00:23:42] [Client thread/TRACE] [mixin]: Added class metadata for net/minecraft/network/PacketBuffer to metadata cache | |
[00:23:42] [Client thread/TRACE] [mixin]: Added class metadata for net/dugged/cutelessmod/chunk_display/CarpetPacket to metadata cache | |
[00:23:42] [Client thread/TRACE] [FML]: Sent event FMLConstructionEvent to mod FML | |
[00:23:42] [Client thread/DEBUG] [FML]: Bar Step: Construction - Forge Mod Loader took 0.827s | |
[00:23:42] [Client thread/TRACE] [FML]: Sending event FMLConstructionEvent to mod forge | |
[00:23:42] [Client thread/DEBUG] [forge]: Loading Vanilla annotations: null | |
[00:23:42] [Client thread/DEBUG] [forge]: Preloading CrashReport Classes | |
[00:23:42] [Client thread/DEBUG] [forge]: net/minecraft/client/Minecraft$10 | |
[00:23:42] [Client thread/DEBUG] [forge]: net/minecraft/client/Minecraft$11 | |
[00:23:42] [Client thread/DEBUG] [forge]: net/minecraft/client/Minecraft$12 | |
[00:23:42] [Client thread/DEBUG] [forge]: net/minecraft/client/Minecraft$13 | |
[00:23:42] [Client thread/DEBUG] [forge]: net/minecraft/client/Minecraft$14 | |
[00:23:42] [Client thread/DEBUG] [forge]: net/minecraft/client/Minecraft$2 | |
[00:23:42] [Client thread/DEBUG] [forge]: net/minecraft/client/Minecraft$3 | |
[00:23:42] [Client thread/DEBUG] [forge]: net/minecraft/client/Minecraft$4 | |
[00:23:42] [Client thread/DEBUG] [forge]: net/minecraft/client/Minecraft$5 | |
[00:23:42] [Client thread/DEBUG] [forge]: net/minecraft/client/Minecraft$6 | |
[00:23:42] [Client thread/DEBUG] [forge]: net/minecraft/client/Minecraft$7 | |
[00:23:42] [Client thread/DEBUG] [forge]: net/minecraft/client/Minecraft$8 | |
[00:23:42] [Client thread/DEBUG] [forge]: net/minecraft/client/Minecraft$9 | |
[00:23:42] [Client thread/DEBUG] [forge]: net/minecraft/client/multiplayer/WorldClient$1 | |
[00:23:42] [Client thread/DEBUG] [forge]: net/minecraft/client/multiplayer/WorldClient$2 | |
[00:23:42] [Client thread/DEBUG] [forge]: net/minecraft/client/multiplayer/WorldClient$3 | |
[00:23:42] [Client thread/DEBUG] [forge]: net/minecraft/client/multiplayer/WorldClient$4 | |
[00:23:42] [Client thread/DEBUG] [forge]: net/minecraft/client/particle/ParticleManager$1 | |
[00:23:42] [Client thread/DEBUG] [forge]: net/minecraft/client/particle/ParticleManager$2 | |
[00:23:42] [Client thread/DEBUG] [forge]: net/minecraft/client/particle/ParticleManager$3 | |
[00:23:42] [Client thread/DEBUG] [forge]: net/minecraft/client/particle/ParticleManager$4 | |
[00:23:42] [Client thread/DEBUG] [forge]: net/minecraft/client/renderer/EntityRenderer$2 | |
[00:23:42] [Client thread/DEBUG] [forge]: net/minecraft/client/renderer/EntityRenderer$3 | |
[00:23:42] [Client thread/DEBUG] [forge]: net/minecraft/client/renderer/EntityRenderer$4 | |
[00:23:42] [Client thread/DEBUG] [forge]: net/minecraft/client/renderer/RenderGlobal$1 | |
[00:23:42] [Client thread/DEBUG] [forge]: net/minecraft/client/renderer/RenderItem$1 | |
[00:23:42] [Client thread/DEBUG] [forge]: net/minecraft/client/renderer/RenderItem$2 | |
[00:23:42] [Client thread/DEBUG] [forge]: net/minecraft/client/renderer/RenderItem$3 | |
[00:23:42] [Client thread/DEBUG] [forge]: net/minecraft/client/renderer/RenderItem$4 | |
[00:23:42] [Client thread/DEBUG] [forge]: net/minecraft/client/renderer/texture/TextureAtlasSprite$1 | |
[00:23:42] [Client thread/DEBUG] [forge]: net/minecraft/client/renderer/texture/TextureManager$1 | |
[00:23:42] [Client thread/DEBUG] [forge]: net/minecraft/client/renderer/texture/TextureMap$1 | |
[00:23:42] [Client thread/DEBUG] [forge]: net/minecraft/client/renderer/texture/TextureMap$2 | |
[00:23:42] [Client thread/DEBUG] [forge]: net/minecraft/client/renderer/texture/TextureMap$3 | |
[00:23:42] [Client thread/DEBUG] [forge]: net/minecraft/crash/CrashReport$1 | |
[00:23:42] [Client thread/DEBUG] [forge]: net/minecraft/crash/CrashReport$2 | |
[00:23:42] [Client thread/DEBUG] [forge]: net/minecraft/crash/CrashReport$3 | |
[00:23:42] [Client thread/DEBUG] [forge]: net/minecraft/crash/CrashReport$4 | |
[00:23:42] [Client thread/DEBUG] [forge]: net/minecraft/crash/CrashReport$5 | |
[00:23:42] [Client thread/DEBUG] [forge]: net/minecraft/crash/CrashReport$6 | |
[00:23:42] [Client thread/DEBUG] [forge]: net/minecraft/crash/CrashReport$7 | |
[00:23:42] [Client thread/DEBUG] [forge]: net/minecraft/crash/CrashReportCategory$1 | |
[00:23:42] [Client thread/DEBUG] [forge]: net/minecraft/crash/CrashReportCategory$2 | |
[00:23:42] [Client thread/DEBUG] [forge]: net/minecraft/crash/CrashReportCategory$3 | |
[00:23:42] [Client thread/DEBUG] [forge]: net/minecraft/crash/CrashReportCategory$4 | |
[00:23:42] [Client thread/DEBUG] [forge]: net/minecraft/crash/CrashReportCategory$5 | |
[00:23:42] [Client thread/DEBUG] [forge]: net/minecraft/entity/Entity$2 | |
[00:23:42] [Client thread/DEBUG] [forge]: net/minecraft/entity/Entity$3 | |
[00:23:42] [Client thread/DEBUG] [forge]: net/minecraft/entity/Entity$4 | |
[00:23:42] [Client thread/DEBUG] [forge]: net/minecraft/entity/Entity$5 | |
[00:23:42] [Client thread/DEBUG] [forge]: net/minecraft/entity/EntityTracker$1 | |
[00:23:42] [Client thread/DEBUG] [forge]: net/minecraft/entity/player/InventoryPlayer$1 | |
[00:23:42] [Client thread/DEBUG] [forge]: net/minecraft/nbt/NBTTagCompound$1 | |
[00:23:42] [Client thread/DEBUG] [forge]: net/minecraft/nbt/NBTTagCompound$2 | |
[00:23:42] [Client thread/DEBUG] [forge]: net/minecraft/network/NetHandlerPlayServer$3 | |
[00:23:42] [Client thread/DEBUG] [forge]: net/minecraft/network/NetworkSystem$6 | |
[00:23:42] [Client thread/DEBUG] [forge]: net/minecraft/server/MinecraftServer$2 | |
[00:23:42] [Client thread/DEBUG] [forge]: net/minecraft/server/MinecraftServer$3 | |
[00:23:42] [Client thread/DEBUG] [forge]: net/minecraft/server/dedicated/DedicatedServer$3 | |
[00:23:42] [Client thread/DEBUG] [forge]: net/minecraft/server/dedicated/DedicatedServer$4 | |
[00:23:42] [Client thread/DEBUG] [forge]: net/minecraft/server/integrated/IntegratedServer$1 | |
[00:23:42] [Client thread/DEBUG] [forge]: net/minecraft/server/integrated/IntegratedServer$2 | |
[00:23:42] [Client thread/DEBUG] [forge]: net/minecraft/tileentity/CommandBlockBaseLogic$1 | |
[00:23:42] [Client thread/DEBUG] [forge]: net/minecraft/tileentity/CommandBlockBaseLogic$2 | |
[00:23:42] [Client thread/DEBUG] [forge]: net/minecraft/tileentity/TileEntity$1 | |
[00:23:42] [Client thread/DEBUG] [forge]: net/minecraft/tileentity/TileEntity$2 | |
[00:23:42] [Client thread/DEBUG] [forge]: net/minecraft/tileentity/TileEntity$3 | |
[00:23:42] [Client thread/DEBUG] [forge]: net/minecraft/world/World$1 | |
[00:23:42] [Client thread/DEBUG] [forge]: net/minecraft/world/World$2 | |
[00:23:42] [Client thread/DEBUG] [forge]: net/minecraft/world/World$3 | |
[00:23:42] [Client thread/DEBUG] [forge]: net/minecraft/world/World$4 | |
[00:23:42] [Client thread/DEBUG] [forge]: net/minecraft/world/World$5 | |
[00:23:42] [Client thread/DEBUG] [forge]: net/minecraft/world/chunk/Chunk$1 | |
[00:23:42] [Client thread/DEBUG] [forge]: net/minecraft/world/gen/structure/MapGenStructure$1 | |
[00:23:42] [Client thread/DEBUG] [forge]: net/minecraft/world/gen/structure/MapGenStructure$2 | |
[00:23:42] [Client thread/DEBUG] [forge]: net/minecraft/world/gen/structure/MapGenStructure$3 | |
[00:23:42] [Client thread/DEBUG] [forge]: net/minecraft/world/storage/WorldInfo$10 | |
[00:23:42] [Client thread/DEBUG] [forge]: net/minecraft/world/storage/WorldInfo$2 | |
[00:23:42] [Client thread/DEBUG] [forge]: net/minecraft/world/storage/WorldInfo$3 | |
[00:23:42] [Client thread/DEBUG] [forge]: net/minecraft/world/storage/WorldInfo$4 | |
[00:23:42] [Client thread/DEBUG] [forge]: net/minecraft/world/storage/WorldInfo$5 | |
[00:23:42] [Client thread/DEBUG] [forge]: net/minecraft/world/storage/WorldInfo$6 | |
[00:23:42] [Client thread/DEBUG] [forge]: net/minecraft/world/storage/WorldInfo$7 | |
[00:23:42] [Client thread/DEBUG] [forge]: net/minecraft/world/storage/WorldInfo$8 | |
[00:23:42] [Client thread/DEBUG] [forge]: net/minecraft/world/storage/WorldInfo$9 | |
[00:23:42] [Client thread/DEBUG] [forge]: net/minecraftforge/common/util/TextTable | |
[00:23:42] [Client thread/DEBUG] [forge]: net/minecraftforge/common/util/TextTable$Alignment | |
[00:23:42] [Client thread/DEBUG] [forge]: net/minecraftforge/common/util/TextTable$Column | |
[00:23:42] [Client thread/DEBUG] [forge]: net/minecraftforge/common/util/TextTable$Row | |
[00:23:42] [Client thread/DEBUG] [forge]: net/minecraftforge/fml/client/SplashProgress$1 | |
[00:23:42] [Client thread/DEBUG] [forge]: net/minecraftforge/fml/common/FMLCommonHandler$1 | |
[00:23:42] [Client thread/DEBUG] [forge]: net/minecraftforge/fml/common/ICrashCallable | |
[00:23:42] [Client thread/DEBUG] [forge]: net/minecraftforge/fml/common/Loader$1 | |
[00:23:42] [Client thread/TRACE] [FML]: Mod forge is using network checker : No network checking performed | |
[00:23:42] [Client thread/TRACE] [FML]: Testing mod forge to verify it accepts its own version in a remote connection | |
[00:23:42] [Client thread/TRACE] [FML]: The mod forge accepts its own version (14.23.5.2847) | |
[00:23:42] [Client thread/DEBUG] [FML]: Attempting to inject @Config classes into forge for type INSTANCE | |
[00:23:42] [Client thread/TRACE] [FML]: Sent event FMLConstructionEvent to mod forge | |
[00:23:42] [Client thread/DEBUG] [FML]: Bar Step: Construction - Minecraft Forge took 0.245s | |
[00:23:42] [Client thread/TRACE] [FML]: Sending event FMLConstructionEvent to mod cutelessmod | |
[00:23:43] [Client thread/TRACE] [FML]: Mod cutelessmod is using network checker : Accepting version 0.3.0 | |
[00:23:43] [Client thread/TRACE] [FML]: Testing mod cutelessmod to verify it accepts its own version in a remote connection | |
[00:23:43] [Client thread/TRACE] [FML]: The mod cutelessmod accepts its own version (0.3.0) | |
[00:23:43] [Client thread/DEBUG] [FML]: Attempting to inject @SidedProxy classes into cutelessmod | |
[00:23:43] [Client thread/DEBUG] [FML]: Attempting to inject @EventBusSubscriber classes into the eventbus for cutelessmod | |
[00:23:43] [Client thread/DEBUG] [FML]: Attempting to inject @Config classes into cutelessmod for type INSTANCE | |
[00:23:43] [Client thread/TRACE] [FML]: Sent event FMLConstructionEvent to mod cutelessmod | |
[00:23:43] [Client thread/DEBUG] [FML]: Bar Step: Construction - CutelessMod took 0.118s | |
[00:23:43] [Client thread/DEBUG] [FML]: Bar Finished: Construction took 1.194s | |
[00:23:43] [Client thread/DEBUG] [FML]: Mod signature data | |
[00:23:43] [Client thread/DEBUG] [FML]: Valid Signatures: | |
[00:23:43] [Client thread/DEBUG] [FML]: Missing Signatures: | |
[00:23:43] [Client thread/DEBUG] [FML]: minecraft (Minecraft 1.12.2) minecraft.jar | |
[00:23:43] [Client thread/DEBUG] [FML]: mcp (Minecraft Coder Pack 9.42) minecraft.jar | |
[00:23:43] [Client thread/DEBUG] [FML]: FML (Forge Mod Loader 8.0.99.99) forgeSrc-1.12.2-14.23.5.2847.jar | |
[00:23:43] [Client thread/DEBUG] [FML]: forge (Minecraft Forge 14.23.5.2847) forgeSrc-1.12.2-14.23.5.2847.jar | |
[00:23:43] [Client thread/DEBUG] [FML]: cutelessmod (CutelessMod 0.3.0) main | |
[00:23:43] [Client thread/INFO] [net.minecraft.client.resources.SimpleReloadableResourceManager]: Reloading ResourceManager: Default, FMLFileResourcePack:Forge Mod Loader, FMLFileResourcePack:Minecraft Forge, FMLFileResourcePack:CutelessMod | |
[00:23:43] [Client thread/DEBUG] [FML]: Bar Step: Loading Resources - Default took 0.008s | |
[00:23:43] [Client thread/DEBUG] [FML]: Bar Step: Loading Resources - FMLFileResourcePack:Forge Mod Loader took 0.048s | |
[00:23:43] [Client thread/DEBUG] [FML]: Bar Step: Loading Resources - FMLFileResourcePack:Minecraft Forge took 0.019s | |
[00:23:43] [Client thread/DEBUG] [FML]: Bar Step: Loading Resources - FMLFileResourcePack:CutelessMod took 0.001s | |
[00:23:43] [Client thread/INFO] [mixin]: Mixing MixinRenderItem from mixins.cutelessmod.json into net.minecraft.client.renderer.RenderItem | |
[00:23:43] [Client thread/TRACE] [mixin]: Added class metadata for net/minecraft/init/Enchantments to metadata cache | |
[00:23:43] [Client thread/TRACE] [mixin]: Added class metadata for net/minecraft/enchantment/EnchantmentHelper to metadata cache | |
[00:23:43] [Client thread/TRACE] [mixin]: Added class metadata for net/minecraft/client/resources/IResourceManagerReloadListener to metadata cache | |
[00:23:43] [Client thread/TRACE] [mixin]: Added class metadata for net/minecraft/client/renderer/Tessellator to metadata cache | |
[00:23:43] [Client thread/INFO] [mixin]: Mixing MixinRenderGlobal from mixins.cutelessmod.json into net.minecraft.client.renderer.RenderGlobal | |
[00:23:43] [Client thread/TRACE] [mixin]: Added class metadata for net/minecraft/client/renderer/culling/ICamera to metadata cache | |
[00:23:43] [Client thread/TRACE] [mixin]: Added class metadata for java/util/Set to metadata cache | |
[00:23:43] [Client thread/TRACE] [mixin]: Added class metadata for net/minecraft/entity/EntityList to metadata cache | |
[00:23:43] [Client thread/TRACE] [mixin]: Added class metadata for java/util/HashMap to metadata cache | |
[00:23:43] [Client thread/TRACE] [mixin]: Added class metadata for java/util/AbstractMap to metadata cache | |
[00:23:43] [Client thread/TRACE] [mixin]: Added class metadata for net/minecraft/world/IWorldEventListener to metadata cache | |
[00:23:43] [Client thread/TRACE] [mixin]: Added class metadata for net/minecraft/client/renderer/DestroyBlockProgress to metadata cache | |
[00:23:43] [Client thread/TRACE] [mixin]: Added class metadata for net/minecraft/client/renderer/culling/Frustum to metadata cache | |
[00:23:43] [Client thread/INFO] [mixin]: Mixing ISoundHandler from mixins.cutelessmod.json into net.minecraft.client.audio.SoundHandler | |
[00:23:43] [Client thread/TRACE] [mixin]: Added class metadata for net/minecraft/client/audio/SoundHandler$2 to metadata cache | |
[00:23:43] [Client thread/TRACE] [mixin]: Added class metadata for net/minecraft/client/audio/Sound to metadata cache | |
[00:23:43] [Client thread/INFO] [mixin]: Mixing CMixinNoClip$MixinEntityRenderer from mixins.cutelessmod.json into net.minecraft.client.renderer.EntityRenderer | |
[00:23:43] [Client thread/INFO] [mixin]: Mixing MixinEntityRenderer from mixins.cutelessmod.json into net.minecraft.client.renderer.EntityRenderer | |
[00:23:43] [Client thread/TRACE] [mixin]: Added class metadata for net/dugged/cutelessmod/AreaSelectionRenderer to metadata cache | |
[00:23:43] [Client thread/INFO] [mixin]: Mixing MixinEntityRenderer from mixins.cutelessmod.clientcommands.json into net.minecraft.client.renderer.EntityRenderer | |
[00:23:43] [Client thread/TRACE] [mixin]: Added class metadata for net/dugged/cutelessmod/clientcommands/worldedit/WorldEditRenderer to metadata cache | |
[00:23:43] [Client thread/INFO] [mixin]: Mixing MixinEntityRenderer from mixins.cutelessmod.chunk_display.json into net.minecraft.client.renderer.EntityRenderer | |
[00:23:43] [Client thread/DEBUG] [FML]: Bar Finished: Reloading - LanguageManager took 0.264s | |
[00:23:43] [Client thread/DEBUG] [FML]: Bar Step: Loading Resources - Reloading listeners took 0.264s | |
[00:23:43] [Client thread/DEBUG] [FML]: Bar Finished: Loading Resources took 0.341s | |
[00:23:43] [Client thread/DEBUG] [FML]: Mod Forge Mod Loader is missing a pack.mcmeta file, substituting a dummy one | |
[00:23:43] [Client thread/DEBUG] [FML]: Mod Minecraft Forge is missing a pack.mcmeta file, substituting a dummy one | |
[00:23:43] [Client thread/DEBUG] [FML]: Mod CutelessMod is missing a pack.mcmeta file, substituting a dummy one | |
[00:23:43] [Client thread/INFO] [FML]: Processing ObjectHolder annotations | |
[00:23:43] [Client thread/INFO] [FML]: Found 1168 ObjectHolder annotations | |
[00:23:43] [Client thread/INFO] [FML]: Identifying ItemStackHolder annotations | |
[00:23:43] [Client thread/INFO] [FML]: Found 0 ItemStackHolder annotations | |
[00:23:43] [Client thread/TRACE] [FML]: Sending event FMLPreInitializationEvent to mod minecraft | |
[00:23:43] [Client thread/TRACE] [FML]: Sent event FMLPreInitializationEvent to mod minecraft | |
[00:23:43] [Client thread/DEBUG] [FML]: Bar Step: PreInitialization - Minecraft took 0.001s | |
[00:23:43] [Client thread/TRACE] [FML]: Sending event FMLPreInitializationEvent to mod mcp | |
[00:23:43] [Client thread/TRACE] [FML]: Sent event FMLPreInitializationEvent to mod mcp | |
[00:23:43] [Client thread/DEBUG] [FML]: Bar Step: PreInitialization - Minecraft Coder Pack took 0.001s | |
[00:23:43] [Client thread/TRACE] [FML]: Sending event FMLPreInitializationEvent to mod FML | |
[00:23:43] [Client thread/TRACE] [FML]: Sent event FMLPreInitializationEvent to mod FML | |
[00:23:43] [Client thread/DEBUG] [FML]: Bar Step: PreInitialization - Forge Mod Loader took 0.000s | |
[00:23:43] [Client thread/TRACE] [FML]: Sending event FMLPreInitializationEvent to mod forge | |
[00:23:43] [Client thread/INFO] [mixin]: Mixing MixinChunk from mixins.cutelessmod.json into net.minecraft.world.chunk.Chunk | |
[00:23:43] [Client thread/INFO] [FML]: Configured a dormant chunk cache size of 0 | |
[00:23:43] [Client thread/TRACE] [FML]: Sent event FMLPreInitializationEvent to mod forge | |
[00:23:43] [Client thread/DEBUG] [FML]: Bar Step: PreInitialization - Minecraft Forge took 0.167s | |
[00:23:43] [Client thread/TRACE] [FML]: Sending event FMLPreInitializationEvent to mod cutelessmod | |
[00:23:43] [Forge Version Check/INFO] [forge.VersionCheck]: [forge] Starting version check at http://files.minecraftforge.net/maven/net/minecraftforge/forge/promotions_slim.json | |
[00:23:43] [Client thread/TRACE] [FML]: Sent event FMLPreInitializationEvent to mod cutelessmod | |
[00:23:43] [Client thread/DEBUG] [FML]: Bar Step: PreInitialization - CutelessMod took 0.007s | |
[00:23:43] [Client thread/DEBUG] [FML]: Bar Finished: PreInitialization took 0.176s | |
[00:23:43] [Client thread/INFO] [FML]: Applying holder lookups | |
[00:23:43] [Client thread/INFO] [FML]: Holder lookups applied | |
[00:23:43] [Client thread/INFO] [FML]: Applying holder lookups | |
[00:23:43] [Client thread/INFO] [FML]: Holder lookups applied | |
[00:23:43] [Client thread/INFO] [FML]: Applying holder lookups | |
[00:23:43] [Client thread/INFO] [FML]: Holder lookups applied | |
[00:23:43] [Client thread/INFO] [FML]: Applying holder lookups | |
[00:23:43] [Client thread/INFO] [FML]: Holder lookups applied | |
[00:23:43] [Client thread/INFO] [FML]: Injecting itemstacks | |
[00:23:43] [Client thread/INFO] [FML]: Itemstack injection complete | |
[00:23:43] [Client thread/DEBUG] [FML]: Bar Finished: Loading Resource - TextureManager took 0.000s | |
[00:23:45] [Forge Version Check/DEBUG] [forge.VersionCheck]: [forge] Received version check data: | |
{ | |
"homepage": "https://files.minecraftforge.net/net/minecraftforge/forge/", | |
"promos": { | |
"1.1-latest": "1.3.4.29", | |
"1.2.3-latest": "1.4.1.64", | |
"1.2.4-latest": "2.0.0.68", | |
"1.2.5-latest": "3.4.9.171", | |
"1.3.2-latest": "4.3.5.318", | |
"1.4.0-latest": "5.0.0.326", | |
"1.4.1-latest": "6.0.0.329", | |
"1.4.2-latest": "6.0.1.355", | |
"1.4.3-latest": "6.2.1.358", | |
"1.4.4-latest": "6.3.0.378", | |
"1.4.5-latest": "6.4.2.448", | |
"1.4.6-latest": "6.5.0.489", | |
"1.4.7-latest": "6.6.2.534", | |
"1.5-latest": "7.7.0.598", | |
"1.5.1-latest": "7.7.2.682", | |
"1.5.2-latest": "7.8.1.738", | |
"1.5.2-recommended": "7.8.1.738", | |
"1.6.1-latest": "8.9.0.775", | |
"1.6.2-latest": "9.10.1.871", | |
"1.6.2-recommended": "9.10.1.871", | |
"1.6.3-latest": "9.11.0.878", | |
"1.6.4-latest": "9.11.1.1345", | |
"1.6.4-recommended": "9.11.1.1345", | |
"1.7.2-latest": "10.12.2.1161", | |
"1.7.2-recommended": "10.12.2.1161", | |
"1.7.10_pre4-latest": "10.12.2.1149", | |
"1.7.10-latest": "10.13.4.1614", | |
"1.7.10-recommended": "10.13.4.1614", | |
"1.8-latest": "11.14.4.1577", | |
"1.8-recommended": "11.14.4.1563", | |
"1.8.8-latest": "11.15.0.1655", | |
"1.8.9-latest": "11.15.1.2318", | |
"1.8.9-recommended": "11.15.1.2318", | |
"1.9-latest": "12.16.1.1938", | |
"1.9-recommended": "12.16.1.1887", | |
"1.9.4-latest": "12.17.0.2317", | |
"1.9.4-recommended": "12.17.0.2317", | |
"1.10-latest": "12.18.0.2000", | |
"1.10.2-latest": "12.18.3.2511", | |
"1.10.2-recommended": "12.18.3.2511", | |
"1.11-latest": "13.19.1.2199", | |
"1.11-recommended": "13.19.1.2189", | |
"1.11.2-latest": "13.20.1.2588", | |
"1.11.2-recommended": "13.20.1.2588", | |
"1.12-latest": "14.21.1.2443", | |
"1.12-recommended": "14.21.1.2387", | |
"1.12.1-latest": "14.22.1.2485", | |
"1.12.1-recommended": "14.22.1.2478", | |
"1.12.2-latest": "14.23.5.2855", | |
"1.12.2-recommended": "14.23.5.2855", | |
"1.13.2-latest": "25.0.219", | |
"1.14.2-latest": "26.0.63", | |
"1.14.3-latest": "27.0.60", | |
"1.14.4-latest": "28.2.23", | |
"1.14.4-recommended": "28.2.0", | |
"1.15-latest": "29.0.4", | |
"1.15.1-latest": "30.0.51", | |
"1.15.2-latest": "31.2.55", | |
"1.15.2-recommended": "31.2.0", | |
"1.16.1-latest": "32.0.108", | |
"1.16.2-latest": "33.0.61", | |
"1.16.3-latest": "34.1.42", | |
"1.16.3-recommended": "34.1.0", | |
"1.16.4-latest": "35.1.37", | |
"1.16.4-recommended": "35.1.4", | |
"1.16.5-latest": "36.2.2", | |
"1.16.5-recommended": "36.2.0", | |
"1.17.1-latest": "37.0.44" | |
} | |
} | |
[00:23:45] [Forge Version Check/INFO] [forge.VersionCheck]: [forge] Found status: OUTDATED Target: 14.23.5.2855 | |
[00:23:49] [Client thread/DEBUG] [FML]: Bar Finished: Loading sounds took 5.973s | |
[00:23:49] [Client thread/DEBUG] [FML]: Bar Finished: Loading Resource - SoundHandler took 6.030s | |
[00:23:49] [Sound Library Loader/INFO] [net.minecraft.client.audio.SoundManager]: Starting up SoundSystem... | |
[00:23:49] [Client thread/DEBUG] [FML]: Bar Finished: Loading Resource - FontRenderer took 0.002s | |
[00:23:49] [Client thread/DEBUG] [FML]: Bar Finished: Loading Resource - FontRenderer took 0.002s | |
[00:23:49] [Client thread/DEBUG] [FML]: Bar Finished: Loading Resource - GrassColorReloadListener took 0.010s | |
[00:23:49] [Client thread/DEBUG] [FML]: Bar Finished: Loading Resource - FoliageColorReloadListener took 0.010s | |
[00:23:49] [Client thread/DEBUG] [FML]: Bar Step: Rendering Setup - GL Setup took 0.002s | |
[00:23:49] [Client thread/DEBUG] [FML]: Bar Step: Rendering Setup - Loading Texture Map took 0.010s | |
[00:23:49] [Client thread/INFO] [mixin]: Mixing MixinBlockModelShapes from mixins.cutelessmod.json into net.minecraft.client.renderer.BlockModelShapes | |
[00:23:49] [Client thread/INFO] [mixin]: Renaming synthetic method lambda$removeSpecialChestRenderer$1([Lnet/minecraft/block/Block;I)V to md91b69f$lambda$removeSpecialChestRenderer$1$0 in mixins.cutelessmod.json:MixinBlockModelShapes | |
[00:23:49] [Client thread/INFO] [mixin]: Renaming synthetic method lambda$removeSpecialChestRenderer$0([Lnet/minecraft/block/Block;I)Z to md91b69f$lambda$removeSpecialChestRenderer$0$1 in mixins.cutelessmod.json:MixinBlockModelShapes | |
[00:23:49] [Client thread/TRACE] [mixin]: Added class metadata for java/util/stream/IntStream to metadata cache | |
[00:23:49] [Client thread/TRACE] [mixin]: Added class metadata for java/util/stream/BaseStream to metadata cache | |
[00:23:49] [Client thread/TRACE] [mixin]: Added class metadata for java/lang/AutoCloseable to metadata cache | |
[00:23:49] [Client thread/TRACE] [mixin]: Added class metadata for net/minecraft/init/Blocks to metadata cache | |
[00:23:49] [Client thread/TRACE] [mixin]: Added class metadata for java/util/function/IntPredicate to metadata cache | |
[00:23:49] [Client thread/TRACE] [mixin]: Added class metadata for java/util/function/IntConsumer to metadata cache | |
[00:23:50] [Thread-5/INFO] [net.minecraft.client.audio.SoundManager]: Initializing LWJGL OpenAL | |
[00:23:50] [Thread-5/INFO] [net.minecraft.client.audio.SoundManager]: (The LWJGL binding of OpenAL. For more information, see http://www.lwjgl.org) | |
[00:23:50] [Client thread/DEBUG] [FML]: Bar Finished: Loading Resource - B3DLoader took 0.000s | |
[00:23:50] [Client thread/DEBUG] [FML]: Bar Finished: Loading Resource - OBJLoader took 0.000s | |
[00:23:50] [Client thread/DEBUG] [FML]: Bar Finished: Loading Resource - ModelFluid$FluidLoader took 0.000s | |
[00:23:50] [Client thread/DEBUG] [FML]: Bar Finished: Loading Resource - ItemLayerModel$Loader took 0.000s | |
[00:23:50] [Client thread/DEBUG] [FML]: Bar Finished: Loading Resource - MultiLayerModel$Loader took 0.000s | |
[00:23:50] [Client thread/DEBUG] [FML]: Bar Finished: Loading Resource - ModelDynBucket$LoaderDynBucket took 0.000s | |
[00:23:50] [Thread-5/INFO] [net.minecraft.client.audio.SoundManager]: OpenAL initialized. | |
[00:23:50] [Sound Library Loader/INFO] [net.minecraft.client.audio.SoundManager]: Sound engine started | |
[00:23:56] [Client thread/DEBUG] [FML]: Bar Finished: ModelLoader: blocks took 5.859s | |
[00:23:59] [Client thread/DEBUG] [FML]: Bar Finished: ModelLoader: items took 3.288s | |
[00:23:59] [Client thread/INFO] [FML]: Max texture size: 16384 | |
[00:23:59] [Client thread/DEBUG] [FML]: Bar Finished: Texture stitching took 0.328s | |
[00:23:59] [Client thread/DEBUG] [FML]: Bar Finished: Texture stitching took 0.021s | |
[00:23:59] [Client thread/INFO] [net.minecraft.client.renderer.texture.TextureMap]: Created: 512x512 textures-atlas | |
[00:23:59] [Client thread/DEBUG] [FML]: Bar Finished: Texture creation took 0.025s | |
[00:23:59] [Client thread/DEBUG] [FML]: Bar Finished: Texture mipmap and upload took 0.035s | |
[00:24:00] [Client thread/DEBUG] [FML]: Bar Finished: ModelLoader: baking took 0.552s | |
[00:24:00] [Client thread/DEBUG] [FML]: Bar Finished: Loading Resource - ModelManager took 10.385s | |
[00:24:00] [Client thread/INFO] [mixin]: Mixing MixinRainbowLeafBlockColors from mixins.cutelessmod.json into net.minecraft.client.renderer.color.BlockColors$4 | |
[00:24:00] [Client thread/TRACE] [mixin]: Added class metadata for java/awt/Color to metadata cache | |
[00:24:00] [Client thread/TRACE] [mixin]: Added class metadata for java/awt/Paint to metadata cache | |
[00:24:00] [Client thread/TRACE] [mixin]: Added class metadata for java/awt/Transparency to metadata cache | |
[00:24:00] [Client thread/TRACE] [mixin]: Added class metadata for net/minecraft/client/renderer/color/IBlockColor to metadata cache | |
[00:24:00] [Client thread/INFO] [mixin]: Mixing MixinRainbowLeafBlockColors from mixins.cutelessmod.json into net.minecraft.client.renderer.color.BlockColors$5 | |
[00:24:00] [Client thread/DEBUG] [FML]: Bar Step: Rendering Setup - Loading Model Manager took 10.593s | |
[00:24:00] [Client thread/INFO] [mixin]: Mixing IRenderManager from mixins.cutelessmod.json into net.minecraft.client.renderer.entity.RenderManager | |
[00:24:00] [Client thread/INFO] [mixin]: Mixing MixinRenderManager from mixins.cutelessmod.json into net.minecraft.client.renderer.entity.RenderManager | |
[00:24:00] [Client thread/INFO] [mixin]: Mixing MixinLayerArmorBase from mixins.cutelessmod.json into net.minecraft.client.renderer.entity.layers.LayerArmorBase | |
[00:24:00] [Client thread/TRACE] [mixin]: Added class metadata for net/minecraft/client/renderer/entity/layers/LayerRenderer to metadata cache | |
[00:24:00] [Client thread/INFO] [mixin]: Mixing MixinRenderItemFrame from mixins.cutelessmod.json into net.minecraft.client.renderer.entity.RenderItemFrame | |
[00:24:00] [Client thread/TRACE] [mixin]: Added class metadata for net/minecraft/client/renderer/entity/Render to metadata cache | |
[00:24:01] [Client thread/INFO] [mixin]: Mixing MixinItemRenderer from mixins.cutelessmod.json into net.minecraft.client.renderer.ItemRenderer | |
[00:24:01] [Client thread/TRACE] [mixin]: Added class metadata for net/minecraft/util/EnumHandSide to metadata cache | |
[00:24:01] [Client thread/DEBUG] [FML]: Bar Finished: Loading Resource - RenderItem took 0.026s | |
[00:24:01] [Client thread/DEBUG] [FML]: Bar Step: Rendering Setup - Loading Item Renderer took 0.558s | |
[00:24:01] [Client thread/DEBUG] [FML]: Bar Finished: Loading Resource - EntityRenderer took 0.000s | |
[00:24:01] [Client thread/DEBUG] [FML]: Bar Finished: Loading Resource - BlockRendererDispatcher took 0.000s | |
[00:24:01] [Client thread/DEBUG] [FML]: Bar Finished: Loading Resource - RenderGlobal took 0.000s | |
[00:24:01] [Client thread/DEBUG] [FML]: Bar Finished: Loading Resource - SearchTreeManager took 0.113s | |
[00:24:01] [Client thread/INFO] [mixin]: Mixing MixinParticleManager from mixins.cutelessmod.json into net.minecraft.client.particle.ParticleManager | |
[00:24:01] [Client thread/INFO] [mixin]: Mixing MixinParticleDigging from mixins.cutelessmod.json into net.minecraft.client.particle.ParticleDigging | |
[00:24:01] [Client thread/TRACE] [mixin]: Added class metadata for net/minecraft/client/renderer/BlockRendererDispatcher to metadata cache | |
[00:24:01] [Client thread/INFO] [mixin]: Mixing MixinParticleFirework_Spark from mixins.cutelessmod.json into net.minecraft.client.particle.ParticleFirework$Spark | |
[00:24:01] [Client thread/DEBUG] [FML]: Bar Step: Rendering Setup - Loading Entity Renderer took 0.550s | |
[00:24:01] [Client thread/DEBUG] [FML]: Bar Finished: Rendering Setup took 11.712s | |
[00:24:01] [Client thread/INFO] [FML]: Applying holder lookups | |
[00:24:01] [Client thread/INFO] [FML]: Holder lookups applied | |
[00:24:01] [Client thread/TRACE] [FML]: Sending event FMLInitializationEvent to mod minecraft | |
[00:24:01] [Client thread/TRACE] [FML]: Sent event FMLInitializationEvent to mod minecraft | |
[00:24:01] [Client thread/DEBUG] [FML]: Bar Step: Initialization - Minecraft took 0.000s | |
[00:24:01] [Client thread/TRACE] [FML]: Sending event FMLInitializationEvent to mod mcp | |
[00:24:01] [Client thread/TRACE] [FML]: Sent event FMLInitializationEvent to mod mcp | |
[00:24:01] [Client thread/DEBUG] [FML]: Bar Step: Initialization - Minecraft Coder Pack took 0.000s | |
[00:24:01] [Client thread/TRACE] [FML]: Sending event FMLInitializationEvent to mod FML | |
[00:24:01] [Client thread/TRACE] [FML]: Sent event FMLInitializationEvent to mod FML | |
[00:24:01] [Client thread/DEBUG] [FML]: Bar Step: Initialization - Forge Mod Loader took 0.000s | |
[00:24:01] [Client thread/TRACE] [FML]: Sending event FMLInitializationEvent to mod forge | |
[00:24:01] [Client thread/TRACE] [FML]: Sent event FMLInitializationEvent to mod forge | |
[00:24:01] [Client thread/DEBUG] [FML]: Bar Step: Initialization - Minecraft Forge took 0.000s | |
[00:24:01] [Client thread/TRACE] [FML]: Sending event FMLInitializationEvent to mod cutelessmod | |
[00:24:01] [Client thread/INFO] [mixin]: Mixing MixinCommandBase from mixins.cutelessmod.json into net.minecraft.command.CommandBase | |
[00:24:01] [Client thread/TRACE] [FML]: Sent event FMLInitializationEvent to mod cutelessmod | |
[00:24:01] [Client thread/DEBUG] [FML]: Bar Step: Initialization - CutelessMod took 0.195s | |
[00:24:01] [Client thread/DEBUG] [FML]: Bar Finished: Initialization took 0.196s | |
[00:24:01] [Client thread/TRACE] [FML]: Attempting to deliver 0 IMC messages to mod minecraft | |
[00:24:01] [Client thread/TRACE] [FML]: Sending event IMCEvent to mod minecraft | |
[00:24:01] [Client thread/TRACE] [FML]: Sent event IMCEvent to mod minecraft | |
[00:24:01] [Client thread/DEBUG] [FML]: Bar Step: InterModComms$IMC - Minecraft took 0.006s | |
[00:24:01] [Client thread/TRACE] [FML]: Attempting to deliver 0 IMC messages to mod mcp | |
[00:24:01] [Client thread/TRACE] [FML]: Sending event IMCEvent to mod mcp | |
[00:24:01] [Client thread/TRACE] [FML]: Sent event IMCEvent to mod mcp | |
[00:24:01] [Client thread/DEBUG] [FML]: Bar Step: InterModComms$IMC - Minecraft Coder Pack took 0.000s | |
[00:24:01] [Client thread/TRACE] [FML]: Attempting to deliver 0 IMC messages to mod FML | |
[00:24:01] [Client thread/TRACE] [FML]: Sending event IMCEvent to mod FML | |
[00:24:01] [Client thread/TRACE] [FML]: Sent event IMCEvent to mod FML | |
[00:24:01] [Client thread/DEBUG] [FML]: Bar Step: InterModComms$IMC - Forge Mod Loader took 0.000s | |
[00:24:01] [Client thread/TRACE] [FML]: Attempting to deliver 0 IMC messages to mod forge | |
[00:24:01] [Client thread/TRACE] [FML]: Sending event IMCEvent to mod forge | |
[00:24:01] [Client thread/TRACE] [FML]: Sent event IMCEvent to mod forge | |
[00:24:01] [Client thread/DEBUG] [FML]: Bar Step: InterModComms$IMC - Minecraft Forge took 0.000s | |
[00:24:01] [Client thread/TRACE] [FML]: Attempting to deliver 0 IMC messages to mod cutelessmod | |
[00:24:01] [Client thread/TRACE] [FML]: Sending event IMCEvent to mod cutelessmod | |
[00:24:01] [Client thread/TRACE] [FML]: Sent event IMCEvent to mod cutelessmod | |
[00:24:01] [Client thread/DEBUG] [FML]: Bar Step: InterModComms$IMC - CutelessMod took 0.000s | |
[00:24:01] [Client thread/DEBUG] [FML]: Bar Finished: InterModComms$IMC took 0.007s | |
[00:24:01] [Client thread/INFO] [FML]: Injecting itemstacks | |
[00:24:01] [Client thread/INFO] [FML]: Itemstack injection complete | |
[00:24:01] [Client thread/TRACE] [FML]: Sending event FMLPostInitializationEvent to mod minecraft | |
[00:24:01] [Client thread/TRACE] [FML]: Sent event FMLPostInitializationEvent to mod minecraft | |
[00:24:01] [Client thread/DEBUG] [FML]: Bar Step: PostInitialization - Minecraft took 0.000s | |
[00:24:01] [Client thread/TRACE] [FML]: Sending event FMLPostInitializationEvent to mod mcp | |
[00:24:01] [Client thread/TRACE] [FML]: Sent event FMLPostInitializationEvent to mod mcp | |
[00:24:01] [Client thread/DEBUG] [FML]: Bar Step: PostInitialization - Minecraft Coder Pack took 0.000s | |
[00:24:01] [Client thread/TRACE] [FML]: Sending event FMLPostInitializationEvent to mod FML | |
[00:24:01] [Client thread/TRACE] [FML]: Sent event FMLPostInitializationEvent to mod FML | |
[00:24:01] [Client thread/DEBUG] [FML]: Bar Step: PostInitialization - Forge Mod Loader took 0.000s | |
[00:24:01] [Client thread/TRACE] [FML]: Sending event FMLPostInitializationEvent to mod forge | |
[00:24:01] [Client thread/TRACE] [FML]: Sent event FMLPostInitializationEvent to mod forge | |
[00:24:01] [Client thread/DEBUG] [FML]: Bar Step: PostInitialization - Minecraft Forge took 0.015s | |
[00:24:01] [Client thread/TRACE] [FML]: Sending event FMLPostInitializationEvent to mod cutelessmod | |
[00:24:01] [Client thread/TRACE] [FML]: Sent event FMLPostInitializationEvent to mod cutelessmod | |
[00:24:01] [Client thread/DEBUG] [FML]: Bar Step: PostInitialization - CutelessMod took 0.000s | |
[00:24:01] [Client thread/DEBUG] [FML]: Bar Finished: PostInitialization took 0.016s | |
[00:24:01] [Client thread/TRACE] [FML]: Sending event FMLLoadCompleteEvent to mod minecraft | |
[00:24:01] [Client thread/TRACE] [FML]: Sent event FMLLoadCompleteEvent to mod minecraft | |
[00:24:01] [Client thread/DEBUG] [FML]: Bar Step: LoadComplete - Minecraft took 0.000s | |
[00:24:01] [Client thread/TRACE] [FML]: Sending event FMLLoadCompleteEvent to mod mcp | |
[00:24:01] [Client thread/TRACE] [FML]: Sent event FMLLoadCompleteEvent to mod mcp | |
[00:24:01] [Client thread/DEBUG] [FML]: Bar Step: LoadComplete - Minecraft Coder Pack took 0.000s | |
[00:24:01] [Client thread/TRACE] [FML]: Sending event FMLLoadCompleteEvent to mod FML | |
[00:24:01] [Client thread/TRACE] [FML]: Sent event FMLLoadCompleteEvent to mod FML | |
[00:24:01] [Client thread/DEBUG] [FML]: Bar Step: LoadComplete - Forge Mod Loader took 0.000s | |
[00:24:01] [Client thread/TRACE] [FML]: Sending event FMLLoadCompleteEvent to mod forge | |
[00:24:01] [Client thread/DEBUG] [FML]: Forge RecipeSorter Baking: | |
[00:24:01] [Client thread/DEBUG] [FML]: 16: RecipeEntry("Before", UNKNOWN, ) | |
[00:24:01] [Client thread/DEBUG] [FML]: 15: RecipeEntry("minecraft:shaped", SHAPED, net.minecraft.item.crafting.ShapedRecipes) Before: minecraft:shapeless | |
[00:24:01] [Client thread/DEBUG] [FML]: 14: RecipeEntry("forge:shapedore", SHAPED, net.minecraftforge.oredict.ShapedOreRecipe) Before: minecraft:shapeless After: minecraft:shaped | |
[00:24:01] [Client thread/DEBUG] [FML]: 13: RecipeEntry("minecraft:mapextending", SHAPED, net.minecraft.item.crafting.RecipesMapExtending) Before: minecraft:shapeless After: minecraft:shaped | |
[00:24:01] [Client thread/DEBUG] [FML]: 12: RecipeEntry("minecraft:shapeless", SHAPELESS, net.minecraft.item.crafting.ShapelessRecipes) After: minecraft:shaped | |
[00:24:01] [Client thread/DEBUG] [FML]: 11: RecipeEntry("minecraft:repair", SHAPELESS, net.minecraft.item.crafting.RecipeRepairItem) After: minecraft:shapeless | |
[00:24:01] [Client thread/DEBUG] [FML]: 10: RecipeEntry("minecraft:shield_deco", SHAPELESS, net.minecraft.item.crafting.ShieldRecipes$Decoration) After: minecraft:shapeless | |
[00:24:01] [Client thread/DEBUG] [FML]: 9: RecipeEntry("minecraft:armordyes", SHAPELESS, net.minecraft.item.crafting.RecipesArmorDyes) After: minecraft:shapeless | |
[00:24:01] [Client thread/DEBUG] [FML]: 8: RecipeEntry("minecraft:fireworks", SHAPELESS, net.minecraft.item.crafting.RecipeFireworks) After: minecraft:shapeless | |
[00:24:01] [Client thread/DEBUG] [FML]: 7: RecipeEntry("minecraft:pattern_dupe", SHAPELESS, net.minecraft.item.crafting.RecipesBanners$RecipeDuplicatePattern) After: minecraft:shapeless | |
[00:24:01] [Client thread/DEBUG] [FML]: 6: RecipeEntry("minecraft:tippedarrow", SHAPELESS, net.minecraft.item.crafting.RecipeTippedArrow) After: minecraft:shapeless | |
[00:24:01] [Client thread/DEBUG] [FML]: 5: RecipeEntry("minecraft:mapcloning", SHAPELESS, net.minecraft.item.crafting.RecipesMapCloning) After: minecraft:shapeless | |
[00:24:01] [Client thread/DEBUG] [FML]: 4: RecipeEntry("forge:shapelessore", SHAPELESS, net.minecraftforge.oredict.ShapelessOreRecipe) After: minecraft:shapeless | |
[00:24:01] [Client thread/DEBUG] [FML]: 3: RecipeEntry("minecraft:pattern_add", SHAPELESS, net.minecraft.item.crafting.RecipesBanners$RecipeAddPattern) After: minecraft:shapeless | |
[00:24:01] [Client thread/DEBUG] [FML]: 2: RecipeEntry("minecraft:bookcloning", SHAPELESS, net.minecraft.item.crafting.RecipeBookCloning) After: minecraft:shapeless | |
[00:24:01] [Client thread/DEBUG] [FML]: 1: RecipeEntry("After", UNKNOWN, ) | |
[00:24:01] [Client thread/DEBUG] [FML]: Sorting recipes | |
[00:24:01] [Client thread/TRACE] [FML]: Sent event FMLLoadCompleteEvent to mod forge | |
[00:24:01] [Client thread/DEBUG] [FML]: Bar Step: LoadComplete - Minecraft Forge took 0.010s | |
[00:24:01] [Client thread/TRACE] [FML]: Sending event FMLLoadCompleteEvent to mod cutelessmod | |
[00:24:01] [Client thread/TRACE] [FML]: Sent event FMLLoadCompleteEvent to mod cutelessmod | |
[00:24:01] [Client thread/DEBUG] [FML]: Bar Step: LoadComplete - CutelessMod took 0.000s | |
[00:24:01] [Client thread/DEBUG] [FML]: Bar Finished: LoadComplete took 0.011s | |
[00:24:01] [Client thread/DEBUG] [FML]: Freezing registries | |
[00:24:01] [Client thread/TRACE] [FML]: Sending event FMLModIdMappingEvent to mod minecraft | |
[00:24:01] [Client thread/TRACE] [FML]: Sent event FMLModIdMappingEvent to mod minecraft | |
[00:24:01] [Client thread/DEBUG] [FML]: Bar Step: ModIdMapping - Minecraft took 0.000s | |
[00:24:01] [Client thread/TRACE] [FML]: Sending event FMLModIdMappingEvent to mod mcp | |
[00:24:01] [Client thread/TRACE] [FML]: Sent event FMLModIdMappingEvent to mod mcp | |
[00:24:01] [Client thread/DEBUG] [FML]: Bar Step: ModIdMapping - Minecraft Coder Pack took 0.000s | |
[00:24:01] [Client thread/TRACE] [FML]: Sending event FMLModIdMappingEvent to mod FML | |
[00:24:01] [Client thread/TRACE] [FML]: Sent event FMLModIdMappingEvent to mod FML | |
[00:24:01] [Client thread/DEBUG] [FML]: Bar Step: ModIdMapping - Forge Mod Loader took 0.000s | |
[00:24:01] [Client thread/TRACE] [FML]: Sending event FMLModIdMappingEvent to mod forge | |
[00:24:02] [Client thread/TRACE] [FML]: Sent event FMLModIdMappingEvent to mod forge | |
[00:24:02] [Client thread/DEBUG] [FML]: Bar Step: ModIdMapping - Minecraft Forge took 0.168s | |
[00:24:02] [Client thread/TRACE] [FML]: Sending event FMLModIdMappingEvent to mod cutelessmod | |
[00:24:02] [Client thread/TRACE] [FML]: Sent event FMLModIdMappingEvent to mod cutelessmod | |
[00:24:02] [Client thread/DEBUG] [FML]: Bar Step: ModIdMapping - CutelessMod took 0.000s | |
[00:24:02] [Client thread/DEBUG] [FML]: Bar Finished: ModIdMapping took 0.169s | |
[00:24:02] [Client thread/DEBUG] [FML]: All registries frozen | |
[00:24:02] [Client thread/INFO] [FML]: Forge Mod Loader has successfully loaded 5 mods | |
[00:24:02] [Client thread/DEBUG] [FML]: Bar Finished: Loading took 22.118s | |
[00:24:02] [Client thread/INFO] [mixin]: Mixing MixinGuiOverlayDebug from mixins.cutelessmod.json into net.minecraft.client.gui.GuiOverlayDebug | |
[00:24:02] [Client thread/INFO] [mixin]: Mixing IGuiNewChat from mixins.cutelessmod.json into net.minecraft.client.gui.GuiNewChat | |
[00:24:02] [Client thread/INFO] [mixin]: Mixing MixinGuiNewChat from mixins.cutelessmod.json into net.minecraft.client.gui.GuiNewChat | |
[00:24:02] [Client thread/TRACE] [mixin]: Added class metadata for net/dugged/cutelessmod/CompactChat to metadata cache | |
[00:24:02] [Client thread/INFO] [mixin]: Mixing MixinGuiBossOverlay from mixins.cutelessmod.json into net.minecraft.client.gui.GuiBossOverlay | |
[00:24:02] [Client thread/INFO] [mixin]: Mixing MixinGuiBossOverlay from mixins.cutelessmod.clientcommands.json into net.minecraft.client.gui.GuiBossOverlay | |
[00:24:02] [Client thread/TRACE] [mixin]: Added class metadata for net/minecraft/client/renderer/texture/TextureManager to metadata cache | |
[00:24:02] [Client thread/TRACE] [mixin]: Added class metadata for com/google/common/base/Strings to metadata cache | |
[00:24:02] [Client thread/INFO] [com.mojang.text2speech.NarratorWindows]: Narrator library for x64 successfully loaded | |
[00:24:02] [Client thread/INFO] [mixin]: Mixing IGuiMultiplayer from mixins.cutelessmod.json into net.minecraft.client.gui.GuiMultiplayer | |
[00:24:02] [Client thread/INFO] [mixin]: Mixing MixinGuiMultiplayer from mixins.cutelessmod.json into net.minecraft.client.gui.GuiMultiplayer | |
[00:24:02] [Client thread/INFO] [mixin]: Renaming synthetic method lambda$dynamicListUpdates$0(I)V to md91b69f$lambda$dynamicListUpdates$0$0 in mixins.cutelessmod.json:MixinGuiMultiplayer | |
[00:24:02] [Client thread/TRACE] [mixin]: Added class metadata for net/minecraft/client/network/ServerPinger to metadata cache | |
[00:24:02] [Client thread/TRACE] [mixin]: Added class metadata for net/minecraft/client/multiplayer/ServerList to metadata cache | |
[00:24:02] [Client thread/TRACE] [mixin]: Added class metadata for net/minecraft/client/gui/ServerSelectionList to metadata cache | |
[00:24:02] [Client thread/TRACE] [mixin]: Added class metadata for net/minecraft/client/gui/GuiListExtended to metadata cache | |
[00:24:02] [Client thread/TRACE] [mixin]: Added class metadata for net/minecraft/client/gui/GuiSlot to metadata cache | |
[00:24:02] [Client thread/TRACE] [mixin]: Added class metadata for java/util/concurrent/ThreadPoolExecutor to metadata cache | |
[00:24:02] [Client thread/TRACE] [mixin]: Added class metadata for java/lang/Runnable to metadata cache | |
[00:24:02] [Client thread/INFO] [mixin]: Mixing MixinDebugRendererChunkBorder from mixins.cutelessmod.json into net.minecraft.client.renderer.debug.DebugRendererChunkBorder | |
[00:24:02] [Client thread/TRACE] [mixin]: Added class metadata for net/minecraft/client/renderer/vertex/DefaultVertexFormats to metadata cache | |
[00:24:02] [Client thread/TRACE] [mixin]: Added class metadata for net/minecraft/client/renderer/BufferBuilder to metadata cache | |
[00:24:02] [Client thread/TRACE] [mixin]: Added class metadata for net/minecraft/client/renderer/debug/DebugRenderer$IDebugRenderer to metadata cache | |
[00:24:02] [Client thread/DEBUG] [FML]: Bar Finished: Loading Resource - CloudRenderer took 0.004s | |
[00:24:02] [Client thread/INFO] [mixin]: Mixing MixinTileEntityRendererDispatcher from mixins.cutelessmod.json into net.minecraft.client.renderer.tileentity.TileEntityRendererDispatcher | |
[00:24:02] [Client thread/INFO] [mixin]: Mixing MixinTileEntityPistonRenderer from mixins.cutelessmod.json into net.minecraft.client.renderer.tileentity.TileEntityPistonRenderer | |
[00:24:02] [Client thread/TRACE] [mixin]: Added class metadata for net/minecraft/client/renderer/tileentity/TileEntitySpecialRenderer to metadata cache | |
[00:24:02] [Client thread/INFO] [mixin]: Mixing MixinTileEntityChestRenderer from mixins.cutelessmod.json into net.minecraft.client.renderer.tileentity.TileEntityChestRenderer | |
[00:24:02] [Client thread/TRACE] [mixin]: Added class metadata for net/dugged/cutelessmod/ContainerSpy to metadata cache | |
[00:24:02] [Client thread/INFO] [mixin]: Mixing MixinTileEntityBeaconRenderer from mixins.cutelessmod.json into net.minecraft.client.renderer.tileentity.TileEntityBeaconRenderer | |
[00:24:02] [Realms Notification Availability checker #1/INFO] [com.mojang.realmsclient.client.RealmsClient]: Could not authorize you against Realms server: Invalid session id | |
[00:24:05] [Client thread/INFO] [mixin]: Mixing IGuiListWorldSelection from mixins.cutelessmod.json into net.minecraft.client.gui.GuiListWorldSelection | |
[00:24:05] [Client thread/INFO] [mixin]: Mixing IGuiListWorldSelectionEntry from mixins.cutelessmod.json into net.minecraft.client.gui.GuiListWorldSelectionEntry | |
[00:24:07] [Client thread/INFO] [mixin]: Mixing MixinLazyLoadBase from mixins.cutelessmod.json into net.minecraft.util.LazyLoadBase | |
[00:24:07] [Client thread/INFO] [mixin]: Mixing MixinCommandFill from mixins.cutelessmod.json into net.minecraft.command.CommandFill | |
[00:24:07] [Server thread/INFO] [net.minecraft.server.integrated.IntegratedServer]: Starting integrated minecraft server version 1.12.2 | |
[00:24:07] [Server thread/INFO] [net.minecraft.server.integrated.IntegratedServer]: Generating keypair | |
[00:24:07] [Server thread/TRACE] [FML]: Sending event FMLServerAboutToStartEvent to mod minecraft | |
[00:24:07] [Server thread/TRACE] [FML]: Sent event FMLServerAboutToStartEvent to mod minecraft | |
[00:24:07] [Server thread/DEBUG] [FML]: Bar Step: ServerAboutToStart - Minecraft took 0.001s | |
[00:24:07] [Server thread/TRACE] [FML]: Sending event FMLServerAboutToStartEvent to mod mcp | |
[00:24:07] [Server thread/TRACE] [FML]: Sent event FMLServerAboutToStartEvent to mod mcp | |
[00:24:07] [Server thread/DEBUG] [FML]: Bar Step: ServerAboutToStart - Minecraft Coder Pack took 0.000s | |
[00:24:07] [Server thread/TRACE] [FML]: Sending event FMLServerAboutToStartEvent to mod FML | |
[00:24:07] [Server thread/TRACE] [FML]: Sent event FMLServerAboutToStartEvent to mod FML | |
[00:24:07] [Server thread/DEBUG] [FML]: Bar Step: ServerAboutToStart - Forge Mod Loader took 0.000s | |
[00:24:07] [Server thread/TRACE] [FML]: Sending event FMLServerAboutToStartEvent to mod forge | |
[00:24:07] [Server thread/TRACE] [FML]: Sent event FMLServerAboutToStartEvent to mod forge | |
[00:24:07] [Server thread/DEBUG] [FML]: Bar Step: ServerAboutToStart - Minecraft Forge took 0.000s | |
[00:24:07] [Server thread/TRACE] [FML]: Sending event FMLServerAboutToStartEvent to mod cutelessmod | |
[00:24:07] [Server thread/TRACE] [FML]: Sent event FMLServerAboutToStartEvent to mod cutelessmod | |
[00:24:07] [Server thread/DEBUG] [FML]: Bar Step: ServerAboutToStart - CutelessMod took 0.000s | |
[00:24:07] [Server thread/DEBUG] [FML]: Bar Finished: ServerAboutToStart took 0.002s | |
[00:24:07] [Server thread/INFO] [FML.ModTracker]: This world was saved with mod cutelessmod version 0.2.9 and it is now at version 0.3.0, things may not work well | |
[00:24:07] [Server thread/INFO] [FML]: Injecting existing registry data into this server instance | |
[00:24:07] [Server thread/TRACE] [FML]: Registry Name : minecraft:blocks | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 0 minecraft:air Block{minecraft:air} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 1 minecraft:stone Block{minecraft:stone} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 2 minecraft:grass Block{minecraft:grass} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 3 minecraft:dirt Block{minecraft:dirt} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 4 minecraft:cobblestone Block{minecraft:cobblestone} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 5 minecraft:planks Block{minecraft:planks} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 6 minecraft:sapling Block{minecraft:sapling} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 7 minecraft:bedrock Block{minecraft:bedrock} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 8 minecraft:flowing_water Block{minecraft:flowing_water} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 9 minecraft:water Block{minecraft:water} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 10 minecraft:flowing_lava Block{minecraft:flowing_lava} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 11 minecraft:lava Block{minecraft:lava} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 12 minecraft:sand Block{minecraft:sand} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 13 minecraft:gravel Block{minecraft:gravel} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 14 minecraft:gold_ore Block{minecraft:gold_ore} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 15 minecraft:iron_ore Block{minecraft:iron_ore} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 16 minecraft:coal_ore Block{minecraft:coal_ore} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 17 minecraft:log Block{minecraft:log} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 18 minecraft:leaves Block{minecraft:leaves} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 19 minecraft:sponge Block{minecraft:sponge} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 20 minecraft:glass Block{minecraft:glass} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 21 minecraft:lapis_ore Block{minecraft:lapis_ore} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 22 minecraft:lapis_block Block{minecraft:lapis_block} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 23 minecraft:dispenser Block{minecraft:dispenser} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 24 minecraft:sandstone Block{minecraft:sandstone} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 25 minecraft:noteblock Block{minecraft:noteblock} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 26 minecraft:bed Block{minecraft:bed} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 27 minecraft:golden_rail Block{minecraft:golden_rail} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 28 minecraft:detector_rail Block{minecraft:detector_rail} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 29 minecraft:sticky_piston Block{minecraft:sticky_piston} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 30 minecraft:web Block{minecraft:web} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 31 minecraft:tallgrass Block{minecraft:tallgrass} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 32 minecraft:deadbush Block{minecraft:deadbush} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 33 minecraft:piston Block{minecraft:piston} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 34 minecraft:piston_head Block{minecraft:piston_head} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 35 minecraft:wool Block{minecraft:wool} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 36 minecraft:piston_extension Block{minecraft:piston_extension} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 37 minecraft:yellow_flower Block{minecraft:yellow_flower} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 38 minecraft:red_flower Block{minecraft:red_flower} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 39 minecraft:brown_mushroom Block{minecraft:brown_mushroom} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 40 minecraft:red_mushroom Block{minecraft:red_mushroom} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 41 minecraft:gold_block Block{minecraft:gold_block} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 42 minecraft:iron_block Block{minecraft:iron_block} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 43 minecraft:double_stone_slab Block{minecraft:double_stone_slab} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 44 minecraft:stone_slab Block{minecraft:stone_slab} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 45 minecraft:brick_block Block{minecraft:brick_block} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 46 minecraft:tnt Block{minecraft:tnt} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 47 minecraft:bookshelf Block{minecraft:bookshelf} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 48 minecraft:mossy_cobblestone Block{minecraft:mossy_cobblestone} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 49 minecraft:obsidian Block{minecraft:obsidian} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 50 minecraft:torch Block{minecraft:torch} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 51 minecraft:fire Block{minecraft:fire} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 52 minecraft:mob_spawner Block{minecraft:mob_spawner} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 53 minecraft:oak_stairs Block{minecraft:oak_stairs} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 54 minecraft:chest Block{minecraft:chest} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 55 minecraft:redstone_wire Block{minecraft:redstone_wire} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 56 minecraft:diamond_ore Block{minecraft:diamond_ore} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 57 minecraft:diamond_block Block{minecraft:diamond_block} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 58 minecraft:crafting_table Block{minecraft:crafting_table} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 59 minecraft:wheat Block{minecraft:wheat} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 60 minecraft:farmland Block{minecraft:farmland} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 61 minecraft:furnace Block{minecraft:furnace} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 62 minecraft:lit_furnace Block{minecraft:lit_furnace} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 63 minecraft:standing_sign Block{minecraft:standing_sign} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 64 minecraft:wooden_door Block{minecraft:wooden_door} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 65 minecraft:ladder Block{minecraft:ladder} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 66 minecraft:rail Block{minecraft:rail} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 67 minecraft:stone_stairs Block{minecraft:stone_stairs} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 68 minecraft:wall_sign Block{minecraft:wall_sign} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 69 minecraft:lever Block{minecraft:lever} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 70 minecraft:stone_pressure_plate Block{minecraft:stone_pressure_plate} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 71 minecraft:iron_door Block{minecraft:iron_door} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 72 minecraft:wooden_pressure_plate Block{minecraft:wooden_pressure_plate} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 73 minecraft:redstone_ore Block{minecraft:redstone_ore} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 74 minecraft:lit_redstone_ore Block{minecraft:lit_redstone_ore} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 75 minecraft:unlit_redstone_torch Block{minecraft:unlit_redstone_torch} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 76 minecraft:redstone_torch Block{minecraft:redstone_torch} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 77 minecraft:stone_button Block{minecraft:stone_button} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 78 minecraft:snow_layer Block{minecraft:snow_layer} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 79 minecraft:ice Block{minecraft:ice} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 80 minecraft:snow Block{minecraft:snow} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 81 minecraft:cactus Block{minecraft:cactus} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 82 minecraft:clay Block{minecraft:clay} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 83 minecraft:reeds Block{minecraft:reeds} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 84 minecraft:jukebox Block{minecraft:jukebox} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 85 minecraft:fence Block{minecraft:fence} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 86 minecraft:pumpkin Block{minecraft:pumpkin} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 87 minecraft:netherrack Block{minecraft:netherrack} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 88 minecraft:soul_sand Block{minecraft:soul_sand} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 89 minecraft:glowstone Block{minecraft:glowstone} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 90 minecraft:portal Block{minecraft:portal} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 91 minecraft:lit_pumpkin Block{minecraft:lit_pumpkin} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 92 minecraft:cake Block{minecraft:cake} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 93 minecraft:unpowered_repeater Block{minecraft:unpowered_repeater} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 94 minecraft:powered_repeater Block{minecraft:powered_repeater} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 95 minecraft:stained_glass Block{minecraft:stained_glass} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 96 minecraft:trapdoor Block{minecraft:trapdoor} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 97 minecraft:monster_egg Block{minecraft:monster_egg} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 98 minecraft:stonebrick Block{minecraft:stonebrick} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 99 minecraft:brown_mushroom_block Block{minecraft:brown_mushroom_block} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 100 minecraft:red_mushroom_block Block{minecraft:red_mushroom_block} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 101 minecraft:iron_bars Block{minecraft:iron_bars} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 102 minecraft:glass_pane Block{minecraft:glass_pane} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 103 minecraft:melon_block Block{minecraft:melon_block} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 104 minecraft:pumpkin_stem Block{minecraft:pumpkin_stem} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 105 minecraft:melon_stem Block{minecraft:melon_stem} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 106 minecraft:vine Block{minecraft:vine} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 107 minecraft:fence_gate Block{minecraft:fence_gate} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 108 minecraft:brick_stairs Block{minecraft:brick_stairs} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 109 minecraft:stone_brick_stairs Block{minecraft:stone_brick_stairs} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 110 minecraft:mycelium Block{minecraft:mycelium} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 111 minecraft:waterlily Block{minecraft:waterlily} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 112 minecraft:nether_brick Block{minecraft:nether_brick} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 113 minecraft:nether_brick_fence Block{minecraft:nether_brick_fence} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 114 minecraft:nether_brick_stairs Block{minecraft:nether_brick_stairs} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 115 minecraft:nether_wart Block{minecraft:nether_wart} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 116 minecraft:enchanting_table Block{minecraft:enchanting_table} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 117 minecraft:brewing_stand Block{minecraft:brewing_stand} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 118 minecraft:cauldron Block{minecraft:cauldron} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 119 minecraft:end_portal Block{minecraft:end_portal} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 120 minecraft:end_portal_frame Block{minecraft:end_portal_frame} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 121 minecraft:end_stone Block{minecraft:end_stone} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 122 minecraft:dragon_egg Block{minecraft:dragon_egg} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 123 minecraft:redstone_lamp Block{minecraft:redstone_lamp} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 124 minecraft:lit_redstone_lamp Block{minecraft:lit_redstone_lamp} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 125 minecraft:double_wooden_slab Block{minecraft:double_wooden_slab} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 126 minecraft:wooden_slab Block{minecraft:wooden_slab} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 127 minecraft:cocoa Block{minecraft:cocoa} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 128 minecraft:sandstone_stairs Block{minecraft:sandstone_stairs} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 129 minecraft:emerald_ore Block{minecraft:emerald_ore} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 130 minecraft:ender_chest Block{minecraft:ender_chest} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 131 minecraft:tripwire_hook Block{minecraft:tripwire_hook} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 132 minecraft:tripwire Block{minecraft:tripwire} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 133 minecraft:emerald_block Block{minecraft:emerald_block} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 134 minecraft:spruce_stairs Block{minecraft:spruce_stairs} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 135 minecraft:birch_stairs Block{minecraft:birch_stairs} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 136 minecraft:jungle_stairs Block{minecraft:jungle_stairs} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 137 minecraft:command_block Block{minecraft:command_block} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 138 minecraft:beacon Block{minecraft:beacon} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 139 minecraft:cobblestone_wall Block{minecraft:cobblestone_wall} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 140 minecraft:flower_pot Block{minecraft:flower_pot} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 141 minecraft:carrots Block{minecraft:carrots} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 142 minecraft:potatoes Block{minecraft:potatoes} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 143 minecraft:wooden_button Block{minecraft:wooden_button} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 144 minecraft:skull Block{minecraft:skull} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 145 minecraft:anvil Block{minecraft:anvil} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 146 minecraft:trapped_chest Block{minecraft:trapped_chest} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 147 minecraft:light_weighted_pressure_plate Block{minecraft:light_weighted_pressure_plate} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 148 minecraft:heavy_weighted_pressure_plate Block{minecraft:heavy_weighted_pressure_plate} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 149 minecraft:unpowered_comparator Block{minecraft:unpowered_comparator} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 150 minecraft:powered_comparator Block{minecraft:powered_comparator} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 151 minecraft:daylight_detector Block{minecraft:daylight_detector} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 152 minecraft:redstone_block Block{minecraft:redstone_block} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 153 minecraft:quartz_ore Block{minecraft:quartz_ore} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 154 minecraft:hopper Block{minecraft:hopper} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 155 minecraft:quartz_block Block{minecraft:quartz_block} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 156 minecraft:quartz_stairs Block{minecraft:quartz_stairs} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 157 minecraft:activator_rail Block{minecraft:activator_rail} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 158 minecraft:dropper Block{minecraft:dropper} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 159 minecraft:stained_hardened_clay Block{minecraft:stained_hardened_clay} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 160 minecraft:stained_glass_pane Block{minecraft:stained_glass_pane} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 161 minecraft:leaves2 Block{minecraft:leaves2} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 162 minecraft:log2 Block{minecraft:log2} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 163 minecraft:acacia_stairs Block{minecraft:acacia_stairs} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 164 minecraft:dark_oak_stairs Block{minecraft:dark_oak_stairs} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 165 minecraft:slime Block{minecraft:slime} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 166 minecraft:barrier Block{minecraft:barrier} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 167 minecraft:iron_trapdoor Block{minecraft:iron_trapdoor} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 168 minecraft:prismarine Block{minecraft:prismarine} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 169 minecraft:sea_lantern Block{minecraft:sea_lantern} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 170 minecraft:hay_block Block{minecraft:hay_block} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 171 minecraft:carpet Block{minecraft:carpet} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 172 minecraft:hardened_clay Block{minecraft:hardened_clay} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 173 minecraft:coal_block Block{minecraft:coal_block} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 174 minecraft:packed_ice Block{minecraft:packed_ice} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 175 minecraft:double_plant Block{minecraft:double_plant} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 176 minecraft:standing_banner Block{minecraft:standing_banner} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 177 minecraft:wall_banner Block{minecraft:wall_banner} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 178 minecraft:daylight_detector_inverted Block{minecraft:daylight_detector_inverted} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 179 minecraft:red_sandstone Block{minecraft:red_sandstone} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 180 minecraft:red_sandstone_stairs Block{minecraft:red_sandstone_stairs} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 181 minecraft:double_stone_slab2 Block{minecraft:double_stone_slab2} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 182 minecraft:stone_slab2 Block{minecraft:stone_slab2} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 183 minecraft:spruce_fence_gate Block{minecraft:spruce_fence_gate} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 184 minecraft:birch_fence_gate Block{minecraft:birch_fence_gate} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 185 minecraft:jungle_fence_gate Block{minecraft:jungle_fence_gate} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 186 minecraft:dark_oak_fence_gate Block{minecraft:dark_oak_fence_gate} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 187 minecraft:acacia_fence_gate Block{minecraft:acacia_fence_gate} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 188 minecraft:spruce_fence Block{minecraft:spruce_fence} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 189 minecraft:birch_fence Block{minecraft:birch_fence} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 190 minecraft:jungle_fence Block{minecraft:jungle_fence} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 191 minecraft:dark_oak_fence Block{minecraft:dark_oak_fence} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 192 minecraft:acacia_fence Block{minecraft:acacia_fence} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 193 minecraft:spruce_door Block{minecraft:spruce_door} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 194 minecraft:birch_door Block{minecraft:birch_door} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 195 minecraft:jungle_door Block{minecraft:jungle_door} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 196 minecraft:acacia_door Block{minecraft:acacia_door} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 197 minecraft:dark_oak_door Block{minecraft:dark_oak_door} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 198 minecraft:end_rod Block{minecraft:end_rod} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 199 minecraft:chorus_plant Block{minecraft:chorus_plant} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 200 minecraft:chorus_flower Block{minecraft:chorus_flower} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 201 minecraft:purpur_block Block{minecraft:purpur_block} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 202 minecraft:purpur_pillar Block{minecraft:purpur_pillar} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 203 minecraft:purpur_stairs Block{minecraft:purpur_stairs} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 204 minecraft:purpur_double_slab Block{minecraft:purpur_double_slab} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 205 minecraft:purpur_slab Block{minecraft:purpur_slab} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 206 minecraft:end_bricks Block{minecraft:end_bricks} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 207 minecraft:beetroots Block{minecraft:beetroots} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 208 minecraft:grass_path Block{minecraft:grass_path} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 209 minecraft:end_gateway Block{minecraft:end_gateway} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 210 minecraft:repeating_command_block Block{minecraft:repeating_command_block} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 211 minecraft:chain_command_block Block{minecraft:chain_command_block} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 212 minecraft:frosted_ice Block{minecraft:frosted_ice} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 213 minecraft:magma Block{minecraft:magma} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 214 minecraft:nether_wart_block Block{minecraft:nether_wart_block} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 215 minecraft:red_nether_brick Block{minecraft:red_nether_brick} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 216 minecraft:bone_block Block{minecraft:bone_block} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 217 minecraft:structure_void Block{minecraft:structure_void} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 218 minecraft:observer Block{minecraft:observer} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 219 minecraft:white_shulker_box Block{minecraft:white_shulker_box} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 220 minecraft:orange_shulker_box Block{minecraft:orange_shulker_box} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 221 minecraft:magenta_shulker_box Block{minecraft:magenta_shulker_box} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 222 minecraft:light_blue_shulker_box Block{minecraft:light_blue_shulker_box} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 223 minecraft:yellow_shulker_box Block{minecraft:yellow_shulker_box} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 224 minecraft:lime_shulker_box Block{minecraft:lime_shulker_box} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 225 minecraft:pink_shulker_box Block{minecraft:pink_shulker_box} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 226 minecraft:gray_shulker_box Block{minecraft:gray_shulker_box} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 227 minecraft:silver_shulker_box Block{minecraft:silver_shulker_box} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 228 minecraft:cyan_shulker_box Block{minecraft:cyan_shulker_box} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 229 minecraft:purple_shulker_box Block{minecraft:purple_shulker_box} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 230 minecraft:blue_shulker_box Block{minecraft:blue_shulker_box} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 231 minecraft:brown_shulker_box Block{minecraft:brown_shulker_box} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 232 minecraft:green_shulker_box Block{minecraft:green_shulker_box} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 233 minecraft:red_shulker_box Block{minecraft:red_shulker_box} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 234 minecraft:black_shulker_box Block{minecraft:black_shulker_box} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 235 minecraft:white_glazed_terracotta Block{minecraft:white_glazed_terracotta} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 236 minecraft:orange_glazed_terracotta Block{minecraft:orange_glazed_terracotta} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 237 minecraft:magenta_glazed_terracotta Block{minecraft:magenta_glazed_terracotta} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 238 minecraft:light_blue_glazed_terracotta Block{minecraft:light_blue_glazed_terracotta} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 239 minecraft:yellow_glazed_terracotta Block{minecraft:yellow_glazed_terracotta} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 240 minecraft:lime_glazed_terracotta Block{minecraft:lime_glazed_terracotta} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 241 minecraft:pink_glazed_terracotta Block{minecraft:pink_glazed_terracotta} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 242 minecraft:gray_glazed_terracotta Block{minecraft:gray_glazed_terracotta} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 243 minecraft:silver_glazed_terracotta Block{minecraft:silver_glazed_terracotta} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 244 minecraft:cyan_glazed_terracotta Block{minecraft:cyan_glazed_terracotta} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 245 minecraft:purple_glazed_terracotta Block{minecraft:purple_glazed_terracotta} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 246 minecraft:blue_glazed_terracotta Block{minecraft:blue_glazed_terracotta} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 247 minecraft:brown_glazed_terracotta Block{minecraft:brown_glazed_terracotta} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 248 minecraft:green_glazed_terracotta Block{minecraft:green_glazed_terracotta} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 249 minecraft:red_glazed_terracotta Block{minecraft:red_glazed_terracotta} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 250 minecraft:black_glazed_terracotta Block{minecraft:black_glazed_terracotta} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 251 minecraft:concrete Block{minecraft:concrete} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 252 minecraft:concrete_powder Block{minecraft:concrete_powder} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 255 minecraft:structure_block Block{minecraft:structure_block} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry Name : minecraft:items | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 0 minecraft:air net.minecraft.item.ItemAir@3725242e | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 1 minecraft:stone net.minecraft.item.ItemMultiTexture@34fde3a3 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 2 minecraft:grass net.minecraft.item.ItemColored@5d9639bb | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 3 minecraft:dirt net.minecraft.item.ItemMultiTexture@59d8a968 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 4 minecraft:cobblestone net.minecraft.item.ItemBlock@14cd8dfa | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 5 minecraft:planks net.minecraft.item.ItemMultiTexture@73983f07 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 6 minecraft:sapling net.minecraft.item.ItemMultiTexture@608448e7 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 7 minecraft:bedrock net.minecraft.item.ItemBlock@3bd7829b | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 12 minecraft:sand net.minecraft.item.ItemMultiTexture@6971c6b7 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 13 minecraft:gravel net.minecraft.item.ItemBlock@402d45c6 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 14 minecraft:gold_ore net.minecraft.item.ItemBlock@4b37b01e | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 15 minecraft:iron_ore net.minecraft.item.ItemBlock@f53db1a | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 16 minecraft:coal_ore net.minecraft.item.ItemBlock@6870e039 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 17 minecraft:log net.minecraft.item.ItemMultiTexture@4a1cafb2 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 18 minecraft:leaves net.minecraft.item.ItemLeaves@52811dc1 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 19 minecraft:sponge net.minecraft.item.ItemMultiTexture@35800dea | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 20 minecraft:glass net.minecraft.item.ItemBlock@3b4cce5a | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 21 minecraft:lapis_ore net.minecraft.item.ItemBlock@58178b69 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 22 minecraft:lapis_block net.minecraft.item.ItemBlock@4a723adf | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 23 minecraft:dispenser net.minecraft.item.ItemBlock@7f289126 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 24 minecraft:sandstone net.minecraft.item.ItemMultiTexture@26864891 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 25 minecraft:noteblock net.minecraft.item.ItemBlock@5946e540 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 27 minecraft:golden_rail net.minecraft.item.ItemBlock@651a399 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 28 minecraft:detector_rail net.minecraft.item.ItemBlock@79ef8115 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 29 minecraft:sticky_piston net.minecraft.item.ItemPiston@3bb186b | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 30 minecraft:web net.minecraft.item.ItemBlock@8fd3eee | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 31 minecraft:tallgrass net.minecraft.item.ItemColored@d9ff1cd | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 32 minecraft:deadbush net.minecraft.item.ItemBlock@2c64ee53 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 33 minecraft:piston net.minecraft.item.ItemPiston@77c7d3f4 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 35 minecraft:wool net.minecraft.item.ItemCloth@54d0d561 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 37 minecraft:yellow_flower net.minecraft.item.ItemMultiTexture@5a513627 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 38 minecraft:red_flower net.minecraft.item.ItemMultiTexture@2fe12ec3 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 39 minecraft:brown_mushroom net.minecraft.item.ItemBlock@678a7489 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 40 minecraft:red_mushroom net.minecraft.item.ItemBlock@3e2a8fc | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 41 minecraft:gold_block net.minecraft.item.ItemBlock@6921ce3f | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 42 minecraft:iron_block net.minecraft.item.ItemBlock@4f1072ee | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 44 minecraft:stone_slab net.minecraft.item.ItemSlab@6eaa8abf | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 45 minecraft:brick_block net.minecraft.item.ItemBlock@4fe91eed | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 46 minecraft:tnt net.minecraft.item.ItemBlock@329cef32 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 47 minecraft:bookshelf net.minecraft.item.ItemBlock@5f171392 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 48 minecraft:mossy_cobblestone net.minecraft.item.ItemBlock@655295bd | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 49 minecraft:obsidian net.minecraft.item.ItemBlock@62cbe18c | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 50 minecraft:torch net.minecraft.item.ItemBlock@377b7798 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 52 minecraft:mob_spawner net.minecraft.item.ItemBlock@428440f2 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 53 minecraft:oak_stairs net.minecraft.item.ItemBlock@23c24c0e | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 54 minecraft:chest net.minecraft.item.ItemBlock@7e729046 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 56 minecraft:diamond_ore net.minecraft.item.ItemBlock@565bf1bb | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 57 minecraft:diamond_block net.minecraft.item.ItemBlock@3638a852 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 58 minecraft:crafting_table net.minecraft.item.ItemBlock@7ab20a7 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 60 minecraft:farmland net.minecraft.item.ItemBlock@6db160b4 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 61 minecraft:furnace net.minecraft.item.ItemBlock@64ee9290 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 65 minecraft:ladder net.minecraft.item.ItemBlock@17e7cc67 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 66 minecraft:rail net.minecraft.item.ItemBlock@49976824 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 67 minecraft:stone_stairs net.minecraft.item.ItemBlock@2fc51562 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 69 minecraft:lever net.minecraft.item.ItemBlock@3f2f6818 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 70 minecraft:stone_pressure_plate net.minecraft.item.ItemBlock@16021f6e | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 72 minecraft:wooden_pressure_plate net.minecraft.item.ItemBlock@642693c2 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 73 minecraft:redstone_ore net.minecraft.item.ItemBlock@63cff421 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 76 minecraft:redstone_torch net.minecraft.item.ItemBlock@27e42fe8 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 77 minecraft:stone_button net.minecraft.item.ItemBlock@219bad15 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 78 minecraft:snow_layer net.minecraft.item.ItemSnow@6d810e94 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 79 minecraft:ice net.minecraft.item.ItemBlock@6b9ce7a3 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 80 minecraft:snow net.minecraft.item.ItemBlock@17931cc0 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 81 minecraft:cactus net.minecraft.item.ItemBlock@7a9e44ff | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 82 minecraft:clay net.minecraft.item.ItemBlock@1f8e1096 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 84 minecraft:jukebox net.minecraft.item.ItemBlock@13a35d3b | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 85 minecraft:fence net.minecraft.item.ItemBlock@1cd93693 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 86 minecraft:pumpkin net.minecraft.item.ItemBlock@65145fb7 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 87 minecraft:netherrack net.minecraft.item.ItemBlock@651bec9a | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 88 minecraft:soul_sand net.minecraft.item.ItemBlock@76d4e1af | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 89 minecraft:glowstone net.minecraft.item.ItemBlock@483f19c0 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 91 minecraft:lit_pumpkin net.minecraft.item.ItemBlock@f111e97 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 95 minecraft:stained_glass net.minecraft.item.ItemCloth@647468a7 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 96 minecraft:trapdoor net.minecraft.item.ItemBlock@35d44cd3 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 97 minecraft:monster_egg net.minecraft.item.ItemMultiTexture@445adbd7 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 98 minecraft:stonebrick net.minecraft.item.ItemMultiTexture@47fca369 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 99 minecraft:brown_mushroom_block net.minecraft.item.ItemBlock@296a350 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 100 minecraft:red_mushroom_block net.minecraft.item.ItemBlock@4f3a8e3e | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 101 minecraft:iron_bars net.minecraft.item.ItemBlock@4824d077 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 102 minecraft:glass_pane net.minecraft.item.ItemBlock@6ae1d5f1 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 103 minecraft:melon_block net.minecraft.item.ItemBlock@5d5a77de | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 106 minecraft:vine net.minecraft.item.ItemColored@460a4935 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 107 minecraft:fence_gate net.minecraft.item.ItemBlock@28c38eeb | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 108 minecraft:brick_stairs net.minecraft.item.ItemBlock@3fb54673 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 109 minecraft:stone_brick_stairs net.minecraft.item.ItemBlock@4b55652a | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 110 minecraft:mycelium net.minecraft.item.ItemBlock@8c54f48 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 111 minecraft:waterlily net.minecraft.item.ItemLilyPad@48c584c | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 112 minecraft:nether_brick net.minecraft.item.ItemBlock@641001c2 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 113 minecraft:nether_brick_fence net.minecraft.item.ItemBlock@468dbd07 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 114 minecraft:nether_brick_stairs net.minecraft.item.ItemBlock@2fedae96 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 116 minecraft:enchanting_table net.minecraft.item.ItemBlock@4945cd1f | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 120 minecraft:end_portal_frame net.minecraft.item.ItemBlock@2dbfcbe4 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 121 minecraft:end_stone net.minecraft.item.ItemBlock@6f13ed1 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 122 minecraft:dragon_egg net.minecraft.item.ItemBlock@23e0b938 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 123 minecraft:redstone_lamp net.minecraft.item.ItemBlock@7053b64b | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 126 minecraft:wooden_slab net.minecraft.item.ItemSlab@7f5b0926 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 128 minecraft:sandstone_stairs net.minecraft.item.ItemBlock@6eac71db | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 129 minecraft:emerald_ore net.minecraft.item.ItemBlock@48a32c4f | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 130 minecraft:ender_chest net.minecraft.item.ItemBlock@25af2afe | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 131 minecraft:tripwire_hook net.minecraft.item.ItemBlock@21a1554 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 133 minecraft:emerald_block net.minecraft.item.ItemBlock@f359e65 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 134 minecraft:spruce_stairs net.minecraft.item.ItemBlock@5ea50a98 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 135 minecraft:birch_stairs net.minecraft.item.ItemBlock@2812368 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 136 minecraft:jungle_stairs net.minecraft.item.ItemBlock@50e336d9 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 137 minecraft:command_block net.minecraft.item.ItemBlock@73864c16 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 138 minecraft:beacon net.minecraft.item.ItemBlock@5016934 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 139 minecraft:cobblestone_wall net.minecraft.item.ItemMultiTexture@8eda949 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 143 minecraft:wooden_button net.minecraft.item.ItemBlock@273c4b3 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 145 minecraft:anvil net.minecraft.item.ItemAnvilBlock@2bcaec2e | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 146 minecraft:trapped_chest net.minecraft.item.ItemBlock@45cce4c2 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 147 minecraft:light_weighted_pressure_plate net.minecraft.item.ItemBlock@9d4d221 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 148 minecraft:heavy_weighted_pressure_plate net.minecraft.item.ItemBlock@4dfe5727 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 151 minecraft:daylight_detector net.minecraft.item.ItemBlock@3129792a | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 152 minecraft:redstone_block net.minecraft.item.ItemBlock@13617139 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 153 minecraft:quartz_ore net.minecraft.item.ItemBlock@3c0becae | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 154 minecraft:hopper net.minecraft.item.ItemBlock@373c367 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 155 minecraft:quartz_block net.minecraft.item.ItemMultiTexture@79690a0a | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 156 minecraft:quartz_stairs net.minecraft.item.ItemBlock@619944a7 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 157 minecraft:activator_rail net.minecraft.item.ItemBlock@294aaa6 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 158 minecraft:dropper net.minecraft.item.ItemBlock@1f612968 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 159 minecraft:stained_hardened_clay net.minecraft.item.ItemCloth@2ee949d4 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 160 minecraft:stained_glass_pane net.minecraft.item.ItemCloth@29f58b44 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 161 minecraft:leaves2 net.minecraft.item.ItemLeaves@4f9191c1 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 162 minecraft:log2 net.minecraft.item.ItemMultiTexture@2eb27091 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 163 minecraft:acacia_stairs net.minecraft.item.ItemBlock@3b303b78 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 164 minecraft:dark_oak_stairs net.minecraft.item.ItemBlock@685e97e0 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 165 minecraft:slime net.minecraft.item.ItemBlock@68e8bbab | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 166 minecraft:barrier net.minecraft.item.ItemBlock@57e9cd2 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 167 minecraft:iron_trapdoor net.minecraft.item.ItemBlock@2298d741 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 168 minecraft:prismarine net.minecraft.item.ItemMultiTexture@4dc23273 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 169 minecraft:sea_lantern net.minecraft.item.ItemBlock@35bfa7be | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 170 minecraft:hay_block net.minecraft.item.ItemBlock@34a48013 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 171 minecraft:carpet net.minecraft.item.ItemCloth@50e7d8ba | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 172 minecraft:hardened_clay net.minecraft.item.ItemBlock@210e4678 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 173 minecraft:coal_block net.minecraft.item.ItemBlock@4548bfc7 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 174 minecraft:packed_ice net.minecraft.item.ItemBlock@557c0b65 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 175 minecraft:double_plant net.minecraft.item.ItemMultiTexture@5eabcf77 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 179 minecraft:red_sandstone net.minecraft.item.ItemMultiTexture@557abb68 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 180 minecraft:red_sandstone_stairs net.minecraft.item.ItemBlock@1cb4cad0 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 182 minecraft:stone_slab2 net.minecraft.item.ItemSlab@3152d449 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 183 minecraft:spruce_fence_gate net.minecraft.item.ItemBlock@4ce9985f | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 184 minecraft:birch_fence_gate net.minecraft.item.ItemBlock@4283f29b | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 185 minecraft:jungle_fence_gate net.minecraft.item.ItemBlock@56d4481f | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 186 minecraft:dark_oak_fence_gate net.minecraft.item.ItemBlock@625430f8 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 187 minecraft:acacia_fence_gate net.minecraft.item.ItemBlock@627f678d | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 188 minecraft:spruce_fence net.minecraft.item.ItemBlock@14e8304b | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 189 minecraft:birch_fence net.minecraft.item.ItemBlock@7b0d88e0 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 190 minecraft:jungle_fence net.minecraft.item.ItemBlock@724e483f | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 191 minecraft:dark_oak_fence net.minecraft.item.ItemBlock@27f6854b | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 192 minecraft:acacia_fence net.minecraft.item.ItemBlock@72499396 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 198 minecraft:end_rod net.minecraft.item.ItemBlock@50177966 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 199 minecraft:chorus_plant net.minecraft.item.ItemBlock@2199e1a4 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 200 minecraft:chorus_flower net.minecraft.item.ItemBlock@1c63b39a | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 201 minecraft:purpur_block net.minecraft.item.ItemBlock@7048d039 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 202 minecraft:purpur_pillar net.minecraft.item.ItemBlock@1bff4b1f | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 203 minecraft:purpur_stairs net.minecraft.item.ItemBlock@75051d05 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 205 minecraft:purpur_slab net.minecraft.item.ItemSlab@747b8f5c | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 206 minecraft:end_bricks net.minecraft.item.ItemBlock@44aaa987 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 208 minecraft:grass_path net.minecraft.item.ItemBlock@5dfaa2f0 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 210 minecraft:repeating_command_block net.minecraft.item.ItemBlock@2f95ce11 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 211 minecraft:chain_command_block net.minecraft.item.ItemBlock@2f349170 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 213 minecraft:magma net.minecraft.item.ItemBlock@15ec3c0c | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 214 minecraft:nether_wart_block net.minecraft.item.ItemBlock@323b5264 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 215 minecraft:red_nether_brick net.minecraft.item.ItemBlock@335ff774 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 216 minecraft:bone_block net.minecraft.item.ItemBlock@386b4f7e | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 217 minecraft:structure_void net.minecraft.item.ItemBlock@4c131823 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 218 minecraft:observer net.minecraft.item.ItemBlock@2453cbb7 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 219 minecraft:white_shulker_box net.minecraft.item.ItemShulkerBox@a89dec0 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 220 minecraft:orange_shulker_box net.minecraft.item.ItemShulkerBox@5e8f1db2 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 221 minecraft:magenta_shulker_box net.minecraft.item.ItemShulkerBox@64bb6ba7 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 222 minecraft:light_blue_shulker_box net.minecraft.item.ItemShulkerBox@571360b2 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 223 minecraft:yellow_shulker_box net.minecraft.item.ItemShulkerBox@13a8cb4e | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 224 minecraft:lime_shulker_box net.minecraft.item.ItemShulkerBox@35ec3604 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 225 minecraft:pink_shulker_box net.minecraft.item.ItemShulkerBox@ab5954d | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 226 minecraft:gray_shulker_box net.minecraft.item.ItemShulkerBox@466f7259 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 227 minecraft:silver_shulker_box net.minecraft.item.ItemShulkerBox@13482361 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 228 minecraft:cyan_shulker_box net.minecraft.item.ItemShulkerBox@47c06b1a | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 229 minecraft:purple_shulker_box net.minecraft.item.ItemShulkerBox@61799152 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 230 minecraft:blue_shulker_box net.minecraft.item.ItemShulkerBox@5c39da9e | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 231 minecraft:brown_shulker_box net.minecraft.item.ItemShulkerBox@e38b953 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 232 minecraft:green_shulker_box net.minecraft.item.ItemShulkerBox@4a648b35 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 233 minecraft:red_shulker_box net.minecraft.item.ItemShulkerBox@673a702a | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 234 minecraft:black_shulker_box net.minecraft.item.ItemShulkerBox@75c5ab79 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 235 minecraft:white_glazed_terracotta net.minecraft.item.ItemBlock@3e7c66b3 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 236 minecraft:orange_glazed_terracotta net.minecraft.item.ItemBlock@502f6f6a | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 237 minecraft:magenta_glazed_terracotta net.minecraft.item.ItemBlock@64a0ee65 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 238 minecraft:light_blue_glazed_terracotta net.minecraft.item.ItemBlock@3ce60feb | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 239 minecraft:yellow_glazed_terracotta net.minecraft.item.ItemBlock@61f2bf3a | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 240 minecraft:lime_glazed_terracotta net.minecraft.item.ItemBlock@4a0dd851 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 241 minecraft:pink_glazed_terracotta net.minecraft.item.ItemBlock@293dd4b3 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 242 minecraft:gray_glazed_terracotta net.minecraft.item.ItemBlock@25a81f28 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 243 minecraft:silver_glazed_terracotta net.minecraft.item.ItemBlock@51577fc8 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 244 minecraft:cyan_glazed_terracotta net.minecraft.item.ItemBlock@753cfae3 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 245 minecraft:purple_glazed_terracotta net.minecraft.item.ItemBlock@326320bb | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 246 minecraft:blue_glazed_terracotta net.minecraft.item.ItemBlock@57573880 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 247 minecraft:brown_glazed_terracotta net.minecraft.item.ItemBlock@3d94b49d | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 248 minecraft:green_glazed_terracotta net.minecraft.item.ItemBlock@2fedaa2e | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 249 minecraft:red_glazed_terracotta net.minecraft.item.ItemBlock@4203190 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 250 minecraft:black_glazed_terracotta net.minecraft.item.ItemBlock@6add8aac | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 251 minecraft:concrete net.minecraft.item.ItemCloth@72f5fb36 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 252 minecraft:concrete_powder net.minecraft.item.ItemCloth@300b839c | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 255 minecraft:structure_block net.minecraft.item.ItemBlock@352288bc | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 256 minecraft:iron_shovel net.minecraft.item.ItemSpade@a422390 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 257 minecraft:iron_pickaxe net.minecraft.item.ItemPickaxe@3d056418 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 258 minecraft:iron_axe net.minecraft.item.ItemAxe@6d58ed12 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 259 minecraft:flint_and_steel net.minecraft.item.ItemFlintAndSteel@39240aa3 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 260 minecraft:apple net.minecraft.item.ItemFood@1ed763aa | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 261 minecraft:bow net.minecraft.item.ItemBow@79c9a128 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 262 minecraft:arrow net.minecraft.item.ItemArrow@5275d709 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 263 minecraft:coal net.minecraft.item.ItemCoal@5232cec1 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 264 minecraft:diamond net.minecraft.item.Item@388ad8aa | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 265 minecraft:iron_ingot net.minecraft.item.Item@283240b0 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 266 minecraft:gold_ingot net.minecraft.item.Item@4ec78008 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 267 minecraft:iron_sword net.minecraft.item.ItemSword@1150b923 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 268 minecraft:wooden_sword net.minecraft.item.ItemSword@54c2cfc9 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 269 minecraft:wooden_shovel net.minecraft.item.ItemSpade@3d9dc84d | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 270 minecraft:wooden_pickaxe net.minecraft.item.ItemPickaxe@73625632 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 271 minecraft:wooden_axe net.minecraft.item.ItemAxe@676f70dc | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 272 minecraft:stone_sword net.minecraft.item.ItemSword@2591477f | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 273 minecraft:stone_shovel net.minecraft.item.ItemSpade@761d3c20 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 274 minecraft:stone_pickaxe net.minecraft.item.ItemPickaxe@172f2717 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 275 minecraft:stone_axe net.minecraft.item.ItemAxe@bda4cbe | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 276 minecraft:diamond_sword net.minecraft.item.ItemSword@24df4805 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 277 minecraft:diamond_shovel net.minecraft.item.ItemSpade@3bbc8c82 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 278 minecraft:diamond_pickaxe net.minecraft.item.ItemPickaxe@5545137d | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 279 minecraft:diamond_axe net.minecraft.item.ItemAxe@ca31ad7 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 280 minecraft:stick net.minecraft.item.Item@52e2e426 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 281 minecraft:bowl net.minecraft.item.Item@d65ba64 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 282 minecraft:mushroom_stew net.minecraft.item.ItemSoup@45c73e09 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 283 minecraft:golden_sword net.minecraft.item.ItemSword@1b87f7cd | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 284 minecraft:golden_shovel net.minecraft.item.ItemSpade@306f439c | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 285 minecraft:golden_pickaxe net.minecraft.item.ItemPickaxe@ac6da02 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 286 minecraft:golden_axe net.minecraft.item.ItemAxe@768d8a25 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 287 minecraft:string net.minecraft.item.ItemBlockSpecial@6d13cd6d | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 288 minecraft:feather net.minecraft.item.Item@3a2b1f24 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 289 minecraft:gunpowder net.minecraft.item.Item@72d2470 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 290 minecraft:wooden_hoe net.minecraft.item.ItemHoe@5988e36e | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 291 minecraft:stone_hoe net.minecraft.item.ItemHoe@4194a77f | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 292 minecraft:iron_hoe net.minecraft.item.ItemHoe@3c55e9d4 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 293 minecraft:diamond_hoe net.minecraft.item.ItemHoe@2acbbee4 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 294 minecraft:golden_hoe net.minecraft.item.ItemHoe@3446ab40 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 295 minecraft:wheat_seeds net.minecraft.item.ItemSeeds@f8b6743 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 296 minecraft:wheat net.minecraft.item.Item@644eed73 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 297 minecraft:bread net.minecraft.item.ItemFood@253a8bdb | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 298 minecraft:leather_helmet net.minecraft.item.ItemArmor@4c1c134 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 299 minecraft:leather_chestplate net.minecraft.item.ItemArmor@486480e2 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 300 minecraft:leather_leggings net.minecraft.item.ItemArmor@63bdf82d | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 301 minecraft:leather_boots net.minecraft.item.ItemArmor@1da40ae8 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 302 minecraft:chainmail_helmet net.minecraft.item.ItemArmor@1766b009 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 303 minecraft:chainmail_chestplate net.minecraft.item.ItemArmor@7be95197 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 304 minecraft:chainmail_leggings net.minecraft.item.ItemArmor@7719b257 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 305 minecraft:chainmail_boots net.minecraft.item.ItemArmor@4a571516 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 306 minecraft:iron_helmet net.minecraft.item.ItemArmor@681302ad | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 307 minecraft:iron_chestplate net.minecraft.item.ItemArmor@594793d1 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 308 minecraft:iron_leggings net.minecraft.item.ItemArmor@63f609a4 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 309 minecraft:iron_boots net.minecraft.item.ItemArmor@11fb4f69 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 310 minecraft:diamond_helmet net.minecraft.item.ItemArmor@618d2191 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 311 minecraft:diamond_chestplate net.minecraft.item.ItemArmor@4b1ef6a | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 312 minecraft:diamond_leggings net.minecraft.item.ItemArmor@57596d71 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 313 minecraft:diamond_boots net.minecraft.item.ItemArmor@1c12f0f4 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 314 minecraft:golden_helmet net.minecraft.item.ItemArmor@149bdb4e | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 315 minecraft:golden_chestplate net.minecraft.item.ItemArmor@1f5aac08 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 316 minecraft:golden_leggings net.minecraft.item.ItemArmor@3747877 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 317 minecraft:golden_boots net.minecraft.item.ItemArmor@86abdbd | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 318 minecraft:flint net.minecraft.item.Item@42e14655 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 319 minecraft:porkchop net.minecraft.item.ItemFood@81198ed | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 320 minecraft:cooked_porkchop net.minecraft.item.ItemFood@2806fe58 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 321 minecraft:painting net.minecraft.item.ItemHangingEntity@3285c141 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 322 minecraft:golden_apple net.minecraft.item.ItemAppleGold@4ca50bb9 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 323 minecraft:sign net.minecraft.item.ItemSign@6903ef57 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 324 minecraft:wooden_door net.minecraft.item.ItemDoor@25bfc558 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 325 minecraft:bucket net.minecraft.item.ItemBucket@4ff3ca23 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 326 minecraft:water_bucket net.minecraft.item.ItemBucket@65f8933b | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 327 minecraft:lava_bucket net.minecraft.item.ItemBucket@29422e61 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 328 minecraft:minecart net.minecraft.item.ItemMinecart@67c020c8 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 329 minecraft:saddle net.minecraft.item.ItemSaddle@5ae5a507 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 330 minecraft:iron_door net.minecraft.item.ItemDoor@e8ef60b | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 331 minecraft:redstone net.minecraft.item.ItemRedstone@6e21b6f8 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 332 minecraft:snowball net.minecraft.item.ItemSnowball@6517bc6b | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 333 minecraft:boat net.minecraft.item.ItemBoat@5aa0e9c6 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 334 minecraft:leather net.minecraft.item.Item@57dd4bc9 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 335 minecraft:milk_bucket net.minecraft.item.ItemBucketMilk@5f6dd89c | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 336 minecraft:brick net.minecraft.item.Item@606c2e4b | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 337 minecraft:clay_ball net.minecraft.item.Item@1b914e36 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 338 minecraft:reeds net.minecraft.item.ItemBlockSpecial@29f3ea39 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 339 minecraft:paper net.minecraft.item.Item@18eb6ea3 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 340 minecraft:book net.minecraft.item.ItemBook@44ad3c5e | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 341 minecraft:slime_ball net.minecraft.item.Item@64cbc28e | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 342 minecraft:chest_minecart net.minecraft.item.ItemMinecart@5623fd90 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 343 minecraft:furnace_minecart net.minecraft.item.ItemMinecart@4842a683 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 344 minecraft:egg net.minecraft.item.ItemEgg@59eff566 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 345 minecraft:compass net.minecraft.item.ItemCompass@591cda84 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 346 minecraft:fishing_rod net.minecraft.item.ItemFishingRod@6fb514db | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 347 minecraft:clock net.minecraft.item.ItemClock@5e81b406 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 348 minecraft:glowstone_dust net.minecraft.item.Item@3ff83cc8 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 349 minecraft:fish net.minecraft.item.ItemFishFood@36e8fefe | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 350 minecraft:cooked_fish net.minecraft.item.ItemFishFood@5e8633da | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 351 minecraft:dye net.minecraft.item.ItemDye@795ce9b5 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 352 minecraft:bone net.minecraft.item.Item@280cb0b4 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 353 minecraft:sugar net.minecraft.item.Item@108b2321 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 354 minecraft:cake net.minecraft.item.ItemBlockSpecial@7f2c36de | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 355 minecraft:bed net.minecraft.item.ItemBed@12ff3df | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 356 minecraft:repeater net.minecraft.item.ItemBlockSpecial@12b962b1 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 357 minecraft:cookie net.minecraft.item.ItemFood@15844237 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 358 minecraft:filled_map net.minecraft.item.ItemMap@54455c8d | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 359 minecraft:shears net.minecraft.item.ItemShears@302692b1 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 360 minecraft:melon net.minecraft.item.ItemFood@c52c362 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 361 minecraft:pumpkin_seeds net.minecraft.item.ItemSeeds@7f794b0f | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 362 minecraft:melon_seeds net.minecraft.item.ItemSeeds@efe75a2 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 363 minecraft:beef net.minecraft.item.ItemFood@a49cdd6 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 364 minecraft:cooked_beef net.minecraft.item.ItemFood@109a462e | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 365 minecraft:chicken net.minecraft.item.ItemFood@57f31caf | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 366 minecraft:cooked_chicken net.minecraft.item.ItemFood@5c088d72 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 367 minecraft:rotten_flesh net.minecraft.item.ItemFood@4bda93f1 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 368 minecraft:ender_pearl net.minecraft.item.ItemEnderPearl@44b99f09 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 369 minecraft:blaze_rod net.minecraft.item.Item@261d7ee2 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 370 minecraft:ghast_tear net.minecraft.item.Item@724a80d2 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 371 minecraft:gold_nugget net.minecraft.item.Item@5ce34685 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 372 minecraft:nether_wart net.minecraft.item.ItemSeeds@54aacbc7 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 373 minecraft:potion net.minecraft.item.ItemPotion@3fe70a2d | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 374 minecraft:glass_bottle net.minecraft.item.ItemGlassBottle@437ac2dc | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 375 minecraft:spider_eye net.minecraft.item.ItemFood@3de507af | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 376 minecraft:fermented_spider_eye net.minecraft.item.Item@349504d5 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 377 minecraft:blaze_powder net.minecraft.item.Item@347770a9 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 378 minecraft:magma_cream net.minecraft.item.Item@218e28d9 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 379 minecraft:brewing_stand net.minecraft.item.ItemBlockSpecial@34438b38 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 380 minecraft:cauldron net.minecraft.item.ItemBlockSpecial@28ec92c9 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 381 minecraft:ender_eye net.minecraft.item.ItemEnderEye@7b7268db | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 382 minecraft:speckled_melon net.minecraft.item.Item@1d8230cd | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 383 minecraft:spawn_egg net.minecraft.item.ItemMonsterPlacer@375f276e | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 384 minecraft:experience_bottle net.minecraft.item.ItemExpBottle@2ce7d43 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 385 minecraft:fire_charge net.minecraft.item.ItemFireball@1dbe592f | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 386 minecraft:writable_book net.minecraft.item.ItemWritableBook@7a8316fa | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 387 minecraft:written_book net.minecraft.item.ItemWrittenBook@1d47b761 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 388 minecraft:emerald net.minecraft.item.Item@d4962bd | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 389 minecraft:item_frame net.minecraft.item.ItemHangingEntity@76fa3dd8 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 390 minecraft:flower_pot net.minecraft.item.ItemBlockSpecial@58f27c37 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 391 minecraft:carrot net.minecraft.item.ItemSeedFood@5b5f48d5 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 392 minecraft:potato net.minecraft.item.ItemSeedFood@421c4c3e | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 393 minecraft:baked_potato net.minecraft.item.ItemFood@63236968 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 394 minecraft:poisonous_potato net.minecraft.item.ItemFood@4f6f7a86 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 395 minecraft:map net.minecraft.item.ItemEmptyMap@504216ff | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 396 minecraft:golden_carrot net.minecraft.item.ItemFood@4ce4c097 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 397 minecraft:skull net.minecraft.item.ItemSkull@67cc5a38 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 398 minecraft:carrot_on_a_stick net.minecraft.item.ItemCarrotOnAStick@a589070 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 399 minecraft:nether_star net.minecraft.item.ItemSimpleFoiled@1fbd0850 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 400 minecraft:pumpkin_pie net.minecraft.item.ItemFood@57bc7f67 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 401 minecraft:fireworks net.minecraft.item.ItemFirework@117bfeb8 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 402 minecraft:firework_charge net.minecraft.item.ItemFireworkCharge@144caca6 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 403 minecraft:enchanted_book net.minecraft.item.ItemEnchantedBook@63fe055 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 404 minecraft:comparator net.minecraft.item.ItemBlockSpecial@50572c04 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 405 minecraft:netherbrick net.minecraft.item.Item@ab90b8c | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 406 minecraft:quartz net.minecraft.item.Item@640a80aa | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 407 minecraft:tnt_minecart net.minecraft.item.ItemMinecart@1d4ee936 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 408 minecraft:hopper_minecart net.minecraft.item.ItemMinecart@7410c197 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 409 minecraft:prismarine_shard net.minecraft.item.Item@363751f2 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 410 minecraft:prismarine_crystals net.minecraft.item.Item@688884e | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 411 minecraft:rabbit net.minecraft.item.ItemFood@6c65c6f0 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 412 minecraft:cooked_rabbit net.minecraft.item.ItemFood@1e0bae92 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 413 minecraft:rabbit_stew net.minecraft.item.ItemSoup@123fd460 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 414 minecraft:rabbit_foot net.minecraft.item.Item@5037f491 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 415 minecraft:rabbit_hide net.minecraft.item.Item@1227ea21 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 416 minecraft:armor_stand net.minecraft.item.ItemArmorStand@6018a6a2 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 417 minecraft:iron_horse_armor net.minecraft.item.Item@3ae5cbb9 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 418 minecraft:golden_horse_armor net.minecraft.item.Item@1f15d346 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 419 minecraft:diamond_horse_armor net.minecraft.item.Item@7fb70e94 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 420 minecraft:lead net.minecraft.item.ItemLead@2d05d022 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 421 minecraft:name_tag net.minecraft.item.ItemNameTag@2aa85cc4 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 422 minecraft:command_block_minecart net.minecraft.item.ItemMinecart@466fd19b | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 423 minecraft:mutton net.minecraft.item.ItemFood@348d1a5e | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 424 minecraft:cooked_mutton net.minecraft.item.ItemFood@7f746160 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 425 minecraft:banner net.minecraft.item.ItemBanner@2a1fce44 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 426 minecraft:end_crystal net.minecraft.item.ItemEndCrystal@2100b770 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 427 minecraft:spruce_door net.minecraft.item.ItemDoor@349469db | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 428 minecraft:birch_door net.minecraft.item.ItemDoor@2c3a2935 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 429 minecraft:jungle_door net.minecraft.item.ItemDoor@2ca4b010 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 430 minecraft:acacia_door net.minecraft.item.ItemDoor@83b39c3 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 431 minecraft:dark_oak_door net.minecraft.item.ItemDoor@1f7653ae | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 432 minecraft:chorus_fruit net.minecraft.item.ItemChorusFruit@30ffc3c0 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 433 minecraft:chorus_fruit_popped net.minecraft.item.Item@76b8b6a6 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 434 minecraft:beetroot net.minecraft.item.ItemFood@47e02a89 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 435 minecraft:beetroot_seeds net.minecraft.item.ItemSeeds@6d9bcf19 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 436 minecraft:beetroot_soup net.minecraft.item.ItemSoup@23b4f0a9 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 437 minecraft:dragon_breath net.minecraft.item.Item@108a7fff | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 438 minecraft:splash_potion net.minecraft.item.ItemSplashPotion@62099f75 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 439 minecraft:spectral_arrow net.minecraft.item.ItemSpectralArrow@36c8e1c6 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 440 minecraft:tipped_arrow net.minecraft.item.ItemTippedArrow@6d1c15cb | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 441 minecraft:lingering_potion net.minecraft.item.ItemLingeringPotion@794cd751 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 442 minecraft:shield net.minecraft.item.ItemShield@252459b2 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 443 minecraft:elytra net.minecraft.item.ItemElytra@2be49c8c | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 444 minecraft:spruce_boat net.minecraft.item.ItemBoat@5f160341 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 445 minecraft:birch_boat net.minecraft.item.ItemBoat@31f5580b | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 446 minecraft:jungle_boat net.minecraft.item.ItemBoat@56a8b19f | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 447 minecraft:acacia_boat net.minecraft.item.ItemBoat@5927473a | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 448 minecraft:dark_oak_boat net.minecraft.item.ItemBoat@36c45b54 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 449 minecraft:totem_of_undying net.minecraft.item.Item@2d6a6887 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 450 minecraft:shulker_shell net.minecraft.item.Item@3e5d10fc | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 452 minecraft:iron_nugget net.minecraft.item.Item@5da08e9a | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 453 minecraft:knowledge_book net.minecraft.item.ItemKnowledgeBook@22cf6c9c | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 2256 minecraft:record_13 net.minecraft.item.ItemRecord@2140de63 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 2257 minecraft:record_cat net.minecraft.item.ItemRecord@2da273b3 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 2258 minecraft:record_blocks net.minecraft.item.ItemRecord@6b02909d | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 2259 minecraft:record_chirp net.minecraft.item.ItemRecord@655008a2 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 2260 minecraft:record_far net.minecraft.item.ItemRecord@424461ad | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 2261 minecraft:record_mall net.minecraft.item.ItemRecord@7cc5bdbd | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 2262 minecraft:record_mellohi net.minecraft.item.ItemRecord@33c5cc0 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 2263 minecraft:record_stal net.minecraft.item.ItemRecord@664c411d | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 2264 minecraft:record_strad net.minecraft.item.ItemRecord@7641d70 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 2265 minecraft:record_ward net.minecraft.item.ItemRecord@569d7074 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 2266 minecraft:record_11 net.minecraft.item.ItemRecord@3726fc3b | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 2267 minecraft:record_wait net.minecraft.item.ItemRecord@33e6176b | |
[00:24:07] [Server thread/TRACE] [FML]: Registry Name : minecraft:potions | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 1 minecraft:speed net.minecraft.potion.Potion@1ffe7c42 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 2 minecraft:slowness net.minecraft.potion.Potion@5f72aaed | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 3 minecraft:haste net.minecraft.potion.Potion@1d9295e2 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 4 minecraft:mining_fatigue net.minecraft.potion.Potion@4b708c16 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 5 minecraft:strength net.minecraft.potion.PotionAttackDamage@b8e6981 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 6 minecraft:instant_health net.minecraft.potion.PotionHealth@4922dc84 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 7 minecraft:instant_damage net.minecraft.potion.PotionHealth@2ed9e59b | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 8 minecraft:jump_boost net.minecraft.potion.Potion@66790851 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 9 minecraft:nausea net.minecraft.potion.Potion@3796ff4 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 10 minecraft:regeneration net.minecraft.potion.Potion@5ce045e3 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 11 minecraft:resistance net.minecraft.potion.Potion@3df496d9 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 12 minecraft:fire_resistance net.minecraft.potion.Potion@13e12ab6 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 13 minecraft:water_breathing net.minecraft.potion.Potion@5bafe1f1 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 14 minecraft:invisibility net.minecraft.potion.Potion@5be783a | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 15 minecraft:blindness net.minecraft.potion.Potion@1c65740a | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 16 minecraft:night_vision net.minecraft.potion.Potion@6cb59aa | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 17 minecraft:hunger net.minecraft.potion.Potion@224f90eb | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 18 minecraft:weakness net.minecraft.potion.PotionAttackDamage@54464330 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 19 minecraft:poison net.minecraft.potion.Potion@63b4a896 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 20 minecraft:wither net.minecraft.potion.Potion@3feeab43 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 21 minecraft:health_boost net.minecraft.potion.PotionHealthBoost@2f318251 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 22 minecraft:absorption net.minecraft.potion.PotionAbsorption@797dd7ef | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 23 minecraft:saturation net.minecraft.potion.PotionHealth@ece7204 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 24 minecraft:glowing net.minecraft.potion.Potion@22c4151b | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 25 minecraft:levitation net.minecraft.potion.Potion@2c3df478 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 26 minecraft:luck net.minecraft.potion.Potion@3be88cbf | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 27 minecraft:unluck net.minecraft.potion.Potion@46cb9794 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry Name : minecraft:biomes | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 0 minecraft:ocean net.minecraft.world.biome.BiomeOcean@27015621 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 1 minecraft:plains net.minecraft.world.biome.BiomePlains@ecc5101 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 2 minecraft:desert net.minecraft.world.biome.BiomeDesert@bcde468 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 3 minecraft:extreme_hills net.minecraft.world.biome.BiomeHills@5843ab8 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 4 minecraft:forest net.minecraft.world.biome.BiomeForest@57fd3b57 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 5 minecraft:taiga net.minecraft.world.biome.BiomeTaiga@4c24063c | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 6 minecraft:swampland net.minecraft.world.biome.BiomeSwamp@6cf71064 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 7 minecraft:river net.minecraft.world.biome.BiomeRiver@2762bd70 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 8 minecraft:hell net.minecraft.world.biome.BiomeHell@5113ab26 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 9 minecraft:sky net.minecraft.world.biome.BiomeEnd@6be6cb16 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 10 minecraft:frozen_ocean net.minecraft.world.biome.BiomeOcean@69ee825c | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 11 minecraft:frozen_river net.minecraft.world.biome.BiomeRiver@5c44bce3 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 12 minecraft:ice_flats net.minecraft.world.biome.BiomeSnow@179367ff | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 13 minecraft:ice_mountains net.minecraft.world.biome.BiomeSnow@7b4b6dca | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 14 minecraft:mushroom_island net.minecraft.world.biome.BiomeMushroomIsland@99a89e9 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 15 minecraft:mushroom_island_shore net.minecraft.world.biome.BiomeMushroomIsland@5baabba | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 16 minecraft:beaches net.minecraft.world.biome.BiomeBeach@57283e4 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 17 minecraft:desert_hills net.minecraft.world.biome.BiomeDesert@58fa8762 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 18 minecraft:forest_hills net.minecraft.world.biome.BiomeForest@8cd00bc | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 19 minecraft:taiga_hills net.minecraft.world.biome.BiomeTaiga@5035c23c | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 20 minecraft:smaller_extreme_hills net.minecraft.world.biome.BiomeHills@4149067d | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 21 minecraft:jungle net.minecraft.world.biome.BiomeJungle@35abfeba | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 22 minecraft:jungle_hills net.minecraft.world.biome.BiomeJungle@7b031f53 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 23 minecraft:jungle_edge net.minecraft.world.biome.BiomeJungle@1b42eb0f | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 24 minecraft:deep_ocean net.minecraft.world.biome.BiomeOcean@6e92f150 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 25 minecraft:stone_beach net.minecraft.world.biome.BiomeStoneBeach@673ce246 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 26 minecraft:cold_beach net.minecraft.world.biome.BiomeBeach@6baa673d | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 27 minecraft:birch_forest net.minecraft.world.biome.BiomeForest@124b1369 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 28 minecraft:birch_forest_hills net.minecraft.world.biome.BiomeForest@22bd6b0a | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 29 minecraft:roofed_forest net.minecraft.world.biome.BiomeForest@221383c9 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 30 minecraft:taiga_cold net.minecraft.world.biome.BiomeTaiga@1a389b39 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 31 minecraft:taiga_cold_hills net.minecraft.world.biome.BiomeTaiga@50a2034c | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 32 minecraft:redwood_taiga net.minecraft.world.biome.BiomeTaiga@190ec769 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 33 minecraft:redwood_taiga_hills net.minecraft.world.biome.BiomeTaiga@27bd124a | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 34 minecraft:extreme_hills_with_trees net.minecraft.world.biome.BiomeHills@7902a4d7 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 35 minecraft:savanna net.minecraft.world.biome.BiomeSavanna@56a0dd11 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 36 minecraft:savanna_rock net.minecraft.world.biome.BiomeSavanna@1940bacd | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 37 minecraft:mesa net.minecraft.world.biome.BiomeMesa@62bcfa01 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 38 minecraft:mesa_rock net.minecraft.world.biome.BiomeMesa@b549c4a | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 39 minecraft:mesa_clear_rock net.minecraft.world.biome.BiomeMesa@72412c3d | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 127 minecraft:void net.minecraft.world.biome.BiomeVoid@2b097d19 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 129 minecraft:mutated_plains net.minecraft.world.biome.BiomePlains@5d46f4a3 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 130 minecraft:mutated_desert net.minecraft.world.biome.BiomeDesert@4fe03c06 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 131 minecraft:mutated_extreme_hills net.minecraft.world.biome.BiomeHills@79f14c56 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 132 minecraft:mutated_forest net.minecraft.world.biome.BiomeForest@19f007c4 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 133 minecraft:mutated_taiga net.minecraft.world.biome.BiomeTaiga@73790bb5 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 134 minecraft:mutated_swampland net.minecraft.world.biome.BiomeSwamp@3d3709d0 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 140 minecraft:mutated_ice_flats net.minecraft.world.biome.BiomeSnow@4ed761dc | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 149 minecraft:mutated_jungle net.minecraft.world.biome.BiomeJungle@578081e5 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 151 minecraft:mutated_jungle_edge net.minecraft.world.biome.BiomeJungle@6c1f1c03 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 155 minecraft:mutated_birch_forest net.minecraft.world.biome.BiomeForestMutated@1ccfa4b8 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 156 minecraft:mutated_birch_forest_hills net.minecraft.world.biome.BiomeForestMutated@4f93816d | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 157 minecraft:mutated_roofed_forest net.minecraft.world.biome.BiomeForest@5bf86398 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 158 minecraft:mutated_taiga_cold net.minecraft.world.biome.BiomeTaiga@2de3ac17 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 160 minecraft:mutated_redwood_taiga net.minecraft.world.biome.BiomeTaiga@4c683777 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 161 minecraft:mutated_redwood_taiga_hills net.minecraft.world.biome.BiomeTaiga@1fa35f7e | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 162 minecraft:mutated_extreme_hills_with_trees net.minecraft.world.biome.BiomeHills@7df0bb1 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 163 minecraft:mutated_savanna net.minecraft.world.biome.BiomeSavannaMutated@3ab2d64c | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 164 minecraft:mutated_savanna_rock net.minecraft.world.biome.BiomeSavannaMutated@3f6f26cb | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 165 minecraft:mutated_mesa net.minecraft.world.biome.BiomeMesa@40123014 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 166 minecraft:mutated_mesa_rock net.minecraft.world.biome.BiomeMesa@13cfe28b | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 167 minecraft:mutated_mesa_clear_rock net.minecraft.world.biome.BiomeMesa@3f634608 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry Name : minecraft:soundevents | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 0 minecraft:ambient.cave net.minecraft.util.SoundEvent@6f2864c3 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 1 minecraft:block.anvil.break net.minecraft.util.SoundEvent@16cb6f51 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 2 minecraft:block.anvil.destroy net.minecraft.util.SoundEvent@3fc5d397 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 3 minecraft:block.anvil.fall net.minecraft.util.SoundEvent@25c8c71e | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 4 minecraft:block.anvil.hit net.minecraft.util.SoundEvent@57867d96 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 5 minecraft:block.anvil.land net.minecraft.util.SoundEvent@1a7a21d0 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 6 minecraft:block.anvil.place net.minecraft.util.SoundEvent@bb21063 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 7 minecraft:block.anvil.step net.minecraft.util.SoundEvent@6821c63c | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 8 minecraft:block.anvil.use net.minecraft.util.SoundEvent@c2f7c63 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 9 minecraft:block.brewing_stand.brew net.minecraft.util.SoundEvent@4790b897 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 10 minecraft:block.chest.close net.minecraft.util.SoundEvent@5cba890e | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 11 minecraft:block.chest.locked net.minecraft.util.SoundEvent@3a4cb483 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 12 minecraft:block.chest.open net.minecraft.util.SoundEvent@4d770bcd | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 13 minecraft:block.chorus_flower.death net.minecraft.util.SoundEvent@fe156f4 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 14 minecraft:block.chorus_flower.grow net.minecraft.util.SoundEvent@79b4cff | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 15 minecraft:block.cloth.break net.minecraft.util.SoundEvent@58ac0823 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 16 minecraft:block.cloth.fall net.minecraft.util.SoundEvent@2d705998 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 17 minecraft:block.cloth.hit net.minecraft.util.SoundEvent@28a3fc34 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 18 minecraft:block.cloth.place net.minecraft.util.SoundEvent@7582a16b | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 19 minecraft:block.cloth.step net.minecraft.util.SoundEvent@4dd752e8 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 20 minecraft:block.comparator.click net.minecraft.util.SoundEvent@62c46e53 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 21 minecraft:block.dispenser.dispense net.minecraft.util.SoundEvent@55317c63 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 22 minecraft:block.dispenser.fail net.minecraft.util.SoundEvent@35d81657 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 23 minecraft:block.dispenser.launch net.minecraft.util.SoundEvent@42ef5216 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 24 minecraft:block.enchantment_table.use net.minecraft.util.SoundEvent@3180aee | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 25 minecraft:block.end_gateway.spawn net.minecraft.util.SoundEvent@5d94ac8a | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 26 minecraft:block.end_portal.spawn net.minecraft.util.SoundEvent@288b73c1 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 27 minecraft:block.end_portal_frame.fill net.minecraft.util.SoundEvent@104cfb24 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 28 minecraft:block.enderchest.close net.minecraft.util.SoundEvent@5340ccb9 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 29 minecraft:block.enderchest.open net.minecraft.util.SoundEvent@2bc8caa7 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 30 minecraft:block.fence_gate.close net.minecraft.util.SoundEvent@582ea164 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 31 minecraft:block.fence_gate.open net.minecraft.util.SoundEvent@2fccf49e | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 32 minecraft:block.fire.ambient net.minecraft.util.SoundEvent@7abcc0da | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 33 minecraft:block.fire.extinguish net.minecraft.util.SoundEvent@174cb0d8 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 34 minecraft:block.furnace.fire_crackle net.minecraft.util.SoundEvent@3ac406d4 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 35 minecraft:block.glass.break net.minecraft.util.SoundEvent@72646d16 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 36 minecraft:block.glass.fall net.minecraft.util.SoundEvent@6ec2d990 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 37 minecraft:block.glass.hit net.minecraft.util.SoundEvent@1cfa7ee0 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 38 minecraft:block.glass.place net.minecraft.util.SoundEvent@612290d | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 39 minecraft:block.glass.step net.minecraft.util.SoundEvent@57cff804 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 40 minecraft:block.grass.break net.minecraft.util.SoundEvent@2f39b534 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 41 minecraft:block.grass.fall net.minecraft.util.SoundEvent@60fbc34d | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 42 minecraft:block.grass.hit net.minecraft.util.SoundEvent@7736c41e | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 43 minecraft:block.grass.place net.minecraft.util.SoundEvent@5f911d24 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 44 minecraft:block.grass.step net.minecraft.util.SoundEvent@3de383f7 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 45 minecraft:block.gravel.break net.minecraft.util.SoundEvent@33ccead | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 46 minecraft:block.gravel.fall net.minecraft.util.SoundEvent@42ebece0 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 47 minecraft:block.gravel.hit net.minecraft.util.SoundEvent@15c4b1a4 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 48 minecraft:block.gravel.place net.minecraft.util.SoundEvent@341964d0 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 49 minecraft:block.gravel.step net.minecraft.util.SoundEvent@51b59d58 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 50 minecraft:block.iron_door.close net.minecraft.util.SoundEvent@4ca4f762 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 51 minecraft:block.iron_door.open net.minecraft.util.SoundEvent@7c5d36c3 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 52 minecraft:block.iron_trapdoor.close net.minecraft.util.SoundEvent@31de27c | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 53 minecraft:block.iron_trapdoor.open net.minecraft.util.SoundEvent@7ebfe01a | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 54 minecraft:block.ladder.break net.minecraft.util.SoundEvent@154b0748 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 55 minecraft:block.ladder.fall net.minecraft.util.SoundEvent@35c00c | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 56 minecraft:block.ladder.hit net.minecraft.util.SoundEvent@6cd7dc74 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 57 minecraft:block.ladder.place net.minecraft.util.SoundEvent@6d695ec4 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 58 minecraft:block.ladder.step net.minecraft.util.SoundEvent@20556566 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 59 minecraft:block.lava.ambient net.minecraft.util.SoundEvent@e4ef4c0 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 60 minecraft:block.lava.extinguish net.minecraft.util.SoundEvent@5ca8bd01 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 61 minecraft:block.lava.pop net.minecraft.util.SoundEvent@7b10472e | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 62 minecraft:block.lever.click net.minecraft.util.SoundEvent@70e5737f | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 63 minecraft:block.metal.break net.minecraft.util.SoundEvent@9746157 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 64 minecraft:block.metal.fall net.minecraft.util.SoundEvent@10ad95cd | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 65 minecraft:block.metal.hit net.minecraft.util.SoundEvent@69fd99c1 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 66 minecraft:block.metal.place net.minecraft.util.SoundEvent@32d8710a | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 67 minecraft:block.metal.step net.minecraft.util.SoundEvent@180cc0df | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 68 minecraft:block.metal_pressureplate.click_off net.minecraft.util.SoundEvent@64f33dee | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 69 minecraft:block.metal_pressureplate.click_on net.minecraft.util.SoundEvent@61c58320 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 70 minecraft:block.note.basedrum net.minecraft.util.SoundEvent@10e4ee33 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 71 minecraft:block.note.bass net.minecraft.util.SoundEvent@6e90cec8 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 72 minecraft:block.note.bell net.minecraft.util.SoundEvent@13f182b9 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 73 minecraft:block.note.chime net.minecraft.util.SoundEvent@5ee0cf64 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 74 minecraft:block.note.flute net.minecraft.util.SoundEvent@69c227fd | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 75 minecraft:block.note.guitar net.minecraft.util.SoundEvent@14c5283 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 76 minecraft:block.note.harp net.minecraft.util.SoundEvent@1eb7ec59 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 77 minecraft:block.note.hat net.minecraft.util.SoundEvent@46748b04 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 78 minecraft:block.note.pling net.minecraft.util.SoundEvent@3e71a1f8 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 79 minecraft:block.note.snare net.minecraft.util.SoundEvent@5d4a34ff | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 80 minecraft:block.note.xylophone net.minecraft.util.SoundEvent@7cbede2b | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 81 minecraft:block.piston.contract net.minecraft.util.SoundEvent@1ef04613 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 82 minecraft:block.piston.extend net.minecraft.util.SoundEvent@2d3d4a54 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 83 minecraft:block.portal.ambient net.minecraft.util.SoundEvent@215c6ec0 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 84 minecraft:block.portal.travel net.minecraft.util.SoundEvent@2b19b346 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 85 minecraft:block.portal.trigger net.minecraft.util.SoundEvent@37c5b8e8 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 86 minecraft:block.redstone_torch.burnout net.minecraft.util.SoundEvent@706d2bae | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 87 minecraft:block.sand.break net.minecraft.util.SoundEvent@3205610d | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 88 minecraft:block.sand.fall net.minecraft.util.SoundEvent@54e06788 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 89 minecraft:block.sand.hit net.minecraft.util.SoundEvent@4e789704 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 90 minecraft:block.sand.place net.minecraft.util.SoundEvent@5751e53e | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 91 minecraft:block.sand.step net.minecraft.util.SoundEvent@4e45fbd0 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 92 minecraft:block.shulker_box.close net.minecraft.util.SoundEvent@19ce19b7 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 93 minecraft:block.shulker_box.open net.minecraft.util.SoundEvent@13047d3d | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 94 minecraft:block.slime.break net.minecraft.util.SoundEvent@4b240276 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 95 minecraft:block.slime.fall net.minecraft.util.SoundEvent@2a5efbb9 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 96 minecraft:block.slime.hit net.minecraft.util.SoundEvent@43b45ce4 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 97 minecraft:block.slime.place net.minecraft.util.SoundEvent@73e93c3a | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 98 minecraft:block.slime.step net.minecraft.util.SoundEvent@1835b783 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 99 minecraft:block.snow.break net.minecraft.util.SoundEvent@456b140f | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 100 minecraft:block.snow.fall net.minecraft.util.SoundEvent@2459333a | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 101 minecraft:block.snow.hit net.minecraft.util.SoundEvent@1e6bd367 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 102 minecraft:block.snow.place net.minecraft.util.SoundEvent@2bd7f686 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 103 minecraft:block.snow.step net.minecraft.util.SoundEvent@3601549f | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 104 minecraft:block.stone.break net.minecraft.util.SoundEvent@5b2c7186 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 105 minecraft:block.stone.fall net.minecraft.util.SoundEvent@1b9c716f | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 106 minecraft:block.stone.hit net.minecraft.util.SoundEvent@f6bc75c | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 107 minecraft:block.stone.place net.minecraft.util.SoundEvent@33f2cf82 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 108 minecraft:block.stone.step net.minecraft.util.SoundEvent@bea283b | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 109 minecraft:block.stone_button.click_off net.minecraft.util.SoundEvent@73852720 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 110 minecraft:block.stone_button.click_on net.minecraft.util.SoundEvent@22854f2b | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 111 minecraft:block.stone_pressureplate.click_off net.minecraft.util.SoundEvent@7ae0a26 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 112 minecraft:block.stone_pressureplate.click_on net.minecraft.util.SoundEvent@5ddf5118 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 113 minecraft:block.tripwire.attach net.minecraft.util.SoundEvent@7b9d1a4 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 114 minecraft:block.tripwire.click_off net.minecraft.util.SoundEvent@fcd3a6f | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 115 minecraft:block.tripwire.click_on net.minecraft.util.SoundEvent@7845ee8a | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 116 minecraft:block.tripwire.detach net.minecraft.util.SoundEvent@5f35370b | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 117 minecraft:block.water.ambient net.minecraft.util.SoundEvent@16c8e9b8 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 118 minecraft:block.waterlily.place net.minecraft.util.SoundEvent@7030b74c | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 119 minecraft:block.wood.break net.minecraft.util.SoundEvent@27d6267e | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 120 minecraft:block.wood.fall net.minecraft.util.SoundEvent@512dc0e0 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 121 minecraft:block.wood.hit net.minecraft.util.SoundEvent@f96654 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 122 minecraft:block.wood.place net.minecraft.util.SoundEvent@75063bd0 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 123 minecraft:block.wood.step net.minecraft.util.SoundEvent@637506d8 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 124 minecraft:block.wood_button.click_off net.minecraft.util.SoundEvent@5c60f096 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 125 minecraft:block.wood_button.click_on net.minecraft.util.SoundEvent@1760e688 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 126 minecraft:block.wood_pressureplate.click_off net.minecraft.util.SoundEvent@53fc870f | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 127 minecraft:block.wood_pressureplate.click_on net.minecraft.util.SoundEvent@18f4086e | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 128 minecraft:block.wooden_door.close net.minecraft.util.SoundEvent@43cbafa6 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 129 minecraft:block.wooden_door.open net.minecraft.util.SoundEvent@538f45f1 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 130 minecraft:block.wooden_trapdoor.close net.minecraft.util.SoundEvent@64fc6470 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 131 minecraft:block.wooden_trapdoor.open net.minecraft.util.SoundEvent@5cf3a7f9 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 132 minecraft:enchant.thorns.hit net.minecraft.util.SoundEvent@42db955e | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 133 minecraft:entity.armorstand.break net.minecraft.util.SoundEvent@6bd2f039 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 134 minecraft:entity.armorstand.fall net.minecraft.util.SoundEvent@6c8ad6d7 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 135 minecraft:entity.armorstand.hit net.minecraft.util.SoundEvent@2d0778d0 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 136 minecraft:entity.armorstand.place net.minecraft.util.SoundEvent@33e8694b | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 137 minecraft:entity.arrow.hit net.minecraft.util.SoundEvent@4fc71437 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 138 minecraft:entity.arrow.hit_player net.minecraft.util.SoundEvent@75c15f76 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 139 minecraft:entity.arrow.shoot net.minecraft.util.SoundEvent@631678e6 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 140 minecraft:entity.bat.ambient net.minecraft.util.SoundEvent@1344f7fe | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 141 minecraft:entity.bat.death net.minecraft.util.SoundEvent@64d53f0d | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 142 minecraft:entity.bat.hurt net.minecraft.util.SoundEvent@1b10f60e | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 143 minecraft:entity.bat.loop net.minecraft.util.SoundEvent@4b916cc2 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 144 minecraft:entity.bat.takeoff net.minecraft.util.SoundEvent@7f5e9949 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 145 minecraft:entity.blaze.ambient net.minecraft.util.SoundEvent@323eecf8 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 146 minecraft:entity.blaze.burn net.minecraft.util.SoundEvent@2e02cc37 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 147 minecraft:entity.blaze.death net.minecraft.util.SoundEvent@6e355249 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 148 minecraft:entity.blaze.hurt net.minecraft.util.SoundEvent@652a1a17 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 149 minecraft:entity.blaze.shoot net.minecraft.util.SoundEvent@20b67366 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 150 minecraft:entity.boat.paddle_land net.minecraft.util.SoundEvent@186d6033 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 151 minecraft:entity.boat.paddle_water net.minecraft.util.SoundEvent@5c0ece6d | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 152 minecraft:entity.bobber.retrieve net.minecraft.util.SoundEvent@69419d59 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 153 minecraft:entity.bobber.splash net.minecraft.util.SoundEvent@7affee54 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 154 minecraft:entity.bobber.throw net.minecraft.util.SoundEvent@96075c0 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 155 minecraft:entity.cat.ambient net.minecraft.util.SoundEvent@2337bf27 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 156 minecraft:entity.cat.death net.minecraft.util.SoundEvent@4679554d | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 157 minecraft:entity.cat.hiss net.minecraft.util.SoundEvent@43719e98 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 158 minecraft:entity.cat.hurt net.minecraft.util.SoundEvent@49353d43 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 159 minecraft:entity.cat.purr net.minecraft.util.SoundEvent@57e57dc5 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 160 minecraft:entity.cat.purreow net.minecraft.util.SoundEvent@5bba9949 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 161 minecraft:entity.chicken.ambient net.minecraft.util.SoundEvent@147059f8 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 162 minecraft:entity.chicken.death net.minecraft.util.SoundEvent@744fb110 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 163 minecraft:entity.chicken.egg net.minecraft.util.SoundEvent@838e109 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 164 minecraft:entity.chicken.hurt net.minecraft.util.SoundEvent@7474196 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 165 minecraft:entity.chicken.step net.minecraft.util.SoundEvent@11ee671f | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 166 minecraft:entity.cow.ambient net.minecraft.util.SoundEvent@18209303 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 167 minecraft:entity.cow.death net.minecraft.util.SoundEvent@57df09a7 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 168 minecraft:entity.cow.hurt net.minecraft.util.SoundEvent@6aa9a93b | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 169 minecraft:entity.cow.milk net.minecraft.util.SoundEvent@81dfdee | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 170 minecraft:entity.cow.step net.minecraft.util.SoundEvent@14b9df65 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 171 minecraft:entity.creeper.death net.minecraft.util.SoundEvent@3b046e64 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 172 minecraft:entity.creeper.hurt net.minecraft.util.SoundEvent@1c43e84e | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 173 minecraft:entity.creeper.primed net.minecraft.util.SoundEvent@7bd694a5 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 174 minecraft:entity.donkey.ambient net.minecraft.util.SoundEvent@21ce2e4d | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 175 minecraft:entity.donkey.angry net.minecraft.util.SoundEvent@3921135e | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 176 minecraft:entity.donkey.chest net.minecraft.util.SoundEvent@3a239dac | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 177 minecraft:entity.donkey.death net.minecraft.util.SoundEvent@759f45f1 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 178 minecraft:entity.donkey.hurt net.minecraft.util.SoundEvent@2573b149 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 179 minecraft:entity.egg.throw net.minecraft.util.SoundEvent@1479ed5a | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 180 minecraft:entity.elder_guardian.ambient net.minecraft.util.SoundEvent@3211cc84 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 181 minecraft:entity.elder_guardian.ambient_land net.minecraft.util.SoundEvent@3d2eb7fa | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 182 minecraft:entity.elder_guardian.curse net.minecraft.util.SoundEvent@56fa0ef | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 183 minecraft:entity.elder_guardian.death net.minecraft.util.SoundEvent@5e278e25 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 184 minecraft:entity.elder_guardian.death_land net.minecraft.util.SoundEvent@62ee1c89 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 185 minecraft:entity.elder_guardian.flop net.minecraft.util.SoundEvent@2ab7f649 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 186 minecraft:entity.elder_guardian.hurt net.minecraft.util.SoundEvent@52a74328 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 187 minecraft:entity.elder_guardian.hurt_land net.minecraft.util.SoundEvent@3093b9ff | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 188 minecraft:entity.enderdragon.ambient net.minecraft.util.SoundEvent@220be130 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 189 minecraft:entity.enderdragon.death net.minecraft.util.SoundEvent@379b4e86 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 190 minecraft:entity.enderdragon.flap net.minecraft.util.SoundEvent@5f4df55e | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 191 minecraft:entity.enderdragon.growl net.minecraft.util.SoundEvent@72bce309 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 192 minecraft:entity.enderdragon.hurt net.minecraft.util.SoundEvent@f439e0f | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 193 minecraft:entity.enderdragon.shoot net.minecraft.util.SoundEvent@62410e1f | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 194 minecraft:entity.enderdragon_fireball.explode net.minecraft.util.SoundEvent@5296f00c | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 195 minecraft:entity.endereye.death net.minecraft.util.SoundEvent@4727e5fc | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 196 minecraft:entity.endereye.launch net.minecraft.util.SoundEvent@5487a8f1 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 197 minecraft:entity.endermen.ambient net.minecraft.util.SoundEvent@3e5c7588 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 198 minecraft:entity.endermen.death net.minecraft.util.SoundEvent@5b2ff4df | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 199 minecraft:entity.endermen.hurt net.minecraft.util.SoundEvent@23dff243 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 200 minecraft:entity.endermen.scream net.minecraft.util.SoundEvent@4af606e9 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 201 minecraft:entity.endermen.stare net.minecraft.util.SoundEvent@17dbca0a | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 202 minecraft:entity.endermen.teleport net.minecraft.util.SoundEvent@33765d22 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 203 minecraft:entity.endermite.ambient net.minecraft.util.SoundEvent@6f67ece5 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 204 minecraft:entity.endermite.death net.minecraft.util.SoundEvent@155c7eae | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 205 minecraft:entity.endermite.hurt net.minecraft.util.SoundEvent@5c9e6d95 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 206 minecraft:entity.endermite.step net.minecraft.util.SoundEvent@5d00b469 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 207 minecraft:entity.enderpearl.throw net.minecraft.util.SoundEvent@dd07be8 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 208 minecraft:entity.evocation_fangs.attack net.minecraft.util.SoundEvent@7b8fcdf2 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 209 minecraft:entity.evocation_illager.ambient net.minecraft.util.SoundEvent@54d2f5d3 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 210 minecraft:entity.evocation_illager.cast_spell net.minecraft.util.SoundEvent@c29b0dc | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 211 minecraft:entity.evocation_illager.death net.minecraft.util.SoundEvent@228958a | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 212 minecraft:entity.evocation_illager.hurt net.minecraft.util.SoundEvent@7cd3860 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 213 minecraft:entity.evocation_illager.prepare_attack net.minecraft.util.SoundEvent@44f23927 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 214 minecraft:entity.evocation_illager.prepare_summon net.minecraft.util.SoundEvent@59cde35 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 215 minecraft:entity.evocation_illager.prepare_wololo net.minecraft.util.SoundEvent@43de9fc9 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 216 minecraft:entity.experience_bottle.throw net.minecraft.util.SoundEvent@2d3eb1ea | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 217 minecraft:entity.experience_orb.pickup net.minecraft.util.SoundEvent@78508e6b | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 218 minecraft:entity.firework.blast net.minecraft.util.SoundEvent@1bde9a22 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 219 minecraft:entity.firework.blast_far net.minecraft.util.SoundEvent@2cc97e47 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 220 minecraft:entity.firework.large_blast net.minecraft.util.SoundEvent@74a03bd5 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 221 minecraft:entity.firework.large_blast_far net.minecraft.util.SoundEvent@87fc0fc | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 222 minecraft:entity.firework.launch net.minecraft.util.SoundEvent@671f545b | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 223 minecraft:entity.firework.shoot net.minecraft.util.SoundEvent@c335b9 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 224 minecraft:entity.firework.twinkle net.minecraft.util.SoundEvent@75c8d8e7 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 225 minecraft:entity.firework.twinkle_far net.minecraft.util.SoundEvent@3c68e82 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 226 minecraft:entity.generic.big_fall net.minecraft.util.SoundEvent@1e66bf2d | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 227 minecraft:entity.generic.burn net.minecraft.util.SoundEvent@7112fa5 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 228 minecraft:entity.generic.death net.minecraft.util.SoundEvent@342dc040 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 229 minecraft:entity.generic.drink net.minecraft.util.SoundEvent@3a8ead9 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 230 minecraft:entity.generic.eat net.minecraft.util.SoundEvent@281ca256 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 231 minecraft:entity.generic.explode net.minecraft.util.SoundEvent@26feccf7 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 232 minecraft:entity.generic.extinguish_fire net.minecraft.util.SoundEvent@7c8b37a8 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 233 minecraft:entity.generic.hurt net.minecraft.util.SoundEvent@3831f4c2 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 234 minecraft:entity.generic.small_fall net.minecraft.util.SoundEvent@75f2ff80 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 235 minecraft:entity.generic.splash net.minecraft.util.SoundEvent@253b1cbd | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 236 minecraft:entity.generic.swim net.minecraft.util.SoundEvent@a859c5 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 237 minecraft:entity.ghast.ambient net.minecraft.util.SoundEvent@37083af6 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 238 minecraft:entity.ghast.death net.minecraft.util.SoundEvent@55e4dd68 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 239 minecraft:entity.ghast.hurt net.minecraft.util.SoundEvent@28c7fd9d | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 240 minecraft:entity.ghast.scream net.minecraft.util.SoundEvent@6a63ff31 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 241 minecraft:entity.ghast.shoot net.minecraft.util.SoundEvent@1c4aa701 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 242 minecraft:entity.ghast.warn net.minecraft.util.SoundEvent@6f36267d | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 243 minecraft:entity.guardian.ambient net.minecraft.util.SoundEvent@788a0513 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 244 minecraft:entity.guardian.ambient_land net.minecraft.util.SoundEvent@d65e744 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 245 minecraft:entity.guardian.attack net.minecraft.util.SoundEvent@44de3b46 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 246 minecraft:entity.guardian.death net.minecraft.util.SoundEvent@1a85e86e | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 247 minecraft:entity.guardian.death_land net.minecraft.util.SoundEvent@320fc4b0 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 248 minecraft:entity.guardian.flop net.minecraft.util.SoundEvent@10724a72 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 249 minecraft:entity.guardian.hurt net.minecraft.util.SoundEvent@25435731 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 250 minecraft:entity.guardian.hurt_land net.minecraft.util.SoundEvent@10301d6f | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 251 minecraft:entity.horse.ambient net.minecraft.util.SoundEvent@5cd6719d | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 252 minecraft:entity.horse.angry net.minecraft.util.SoundEvent@5ef591af | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 253 minecraft:entity.horse.armor net.minecraft.util.SoundEvent@61b0af9f | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 254 minecraft:entity.horse.breathe net.minecraft.util.SoundEvent@71fb1da3 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 255 minecraft:entity.horse.death net.minecraft.util.SoundEvent@1ecec098 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 256 minecraft:entity.horse.eat net.minecraft.util.SoundEvent@6cc44207 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 257 minecraft:entity.horse.gallop net.minecraft.util.SoundEvent@8ecc457 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 258 minecraft:entity.horse.hurt net.minecraft.util.SoundEvent@21d3d6ec | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 259 minecraft:entity.horse.jump net.minecraft.util.SoundEvent@49f1184e | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 260 minecraft:entity.horse.land net.minecraft.util.SoundEvent@7ebaf0d | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 261 minecraft:entity.horse.saddle net.minecraft.util.SoundEvent@694b1ddb | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 262 minecraft:entity.horse.step net.minecraft.util.SoundEvent@5690c2a8 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 263 minecraft:entity.horse.step_wood net.minecraft.util.SoundEvent@17e2835c | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 264 minecraft:entity.hostile.big_fall net.minecraft.util.SoundEvent@4d2bc56a | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 265 minecraft:entity.hostile.death net.minecraft.util.SoundEvent@7cbfbcd1 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 266 minecraft:entity.hostile.hurt net.minecraft.util.SoundEvent@2c6aa46c | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 267 minecraft:entity.hostile.small_fall net.minecraft.util.SoundEvent@2f112ade | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 268 minecraft:entity.hostile.splash net.minecraft.util.SoundEvent@3c82bac3 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 269 minecraft:entity.hostile.swim net.minecraft.util.SoundEvent@3ddac0b6 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 270 minecraft:entity.husk.ambient net.minecraft.util.SoundEvent@446a5aa5 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 271 minecraft:entity.husk.death net.minecraft.util.SoundEvent@628bcf2c | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 272 minecraft:entity.husk.hurt net.minecraft.util.SoundEvent@4b76251c | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 273 minecraft:entity.husk.step net.minecraft.util.SoundEvent@20c283b4 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 274 minecraft:entity.illusion_illager.ambient net.minecraft.util.SoundEvent@366b4a7b | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 275 minecraft:entity.illusion_illager.cast_spell net.minecraft.util.SoundEvent@a251135 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 276 minecraft:entity.illusion_illager.death net.minecraft.util.SoundEvent@70819ba8 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 277 minecraft:entity.illusion_illager.hurt net.minecraft.util.SoundEvent@446a692f | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 278 minecraft:entity.illusion_illager.mirror_move net.minecraft.util.SoundEvent@283ecb4b | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 279 minecraft:entity.illusion_illager.prepare_blindness net.minecraft.util.SoundEvent@a30dbc0 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 280 minecraft:entity.illusion_illager.prepare_mirror net.minecraft.util.SoundEvent@76104df5 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 281 minecraft:entity.irongolem.attack net.minecraft.util.SoundEvent@61246109 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 282 minecraft:entity.irongolem.death net.minecraft.util.SoundEvent@3f9e8af5 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 283 minecraft:entity.irongolem.hurt net.minecraft.util.SoundEvent@337cb81d | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 284 minecraft:entity.irongolem.step net.minecraft.util.SoundEvent@47772462 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 285 minecraft:entity.item.break net.minecraft.util.SoundEvent@59929ac | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 286 minecraft:entity.item.pickup net.minecraft.util.SoundEvent@4e9bd2c8 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 287 minecraft:entity.itemframe.add_item net.minecraft.util.SoundEvent@18f13756 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 288 minecraft:entity.itemframe.break net.minecraft.util.SoundEvent@665b441e | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 289 minecraft:entity.itemframe.place net.minecraft.util.SoundEvent@2ac3d530 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 290 minecraft:entity.itemframe.remove_item net.minecraft.util.SoundEvent@3a5e4f32 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 291 minecraft:entity.itemframe.rotate_item net.minecraft.util.SoundEvent@2b0494a8 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 292 minecraft:entity.leashknot.break net.minecraft.util.SoundEvent@17c34e62 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 293 minecraft:entity.leashknot.place net.minecraft.util.SoundEvent@239d73ff | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 294 minecraft:entity.lightning.impact net.minecraft.util.SoundEvent@6bf28f61 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 295 minecraft:entity.lightning.thunder net.minecraft.util.SoundEvent@64dcf763 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 296 minecraft:entity.lingeringpotion.throw net.minecraft.util.SoundEvent@696105c4 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 297 minecraft:entity.llama.ambient net.minecraft.util.SoundEvent@21ab919c | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 298 minecraft:entity.llama.angry net.minecraft.util.SoundEvent@5edd9b4f | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 299 minecraft:entity.llama.chest net.minecraft.util.SoundEvent@5db90818 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 300 minecraft:entity.llama.death net.minecraft.util.SoundEvent@3c17794e | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 301 minecraft:entity.llama.eat net.minecraft.util.SoundEvent@414d2821 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 302 minecraft:entity.llama.hurt net.minecraft.util.SoundEvent@7378c4a4 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 303 minecraft:entity.llama.spit net.minecraft.util.SoundEvent@6694fb1b | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 304 minecraft:entity.llama.step net.minecraft.util.SoundEvent@61ce238e | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 305 minecraft:entity.llama.swag net.minecraft.util.SoundEvent@49ea13b6 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 306 minecraft:entity.magmacube.death net.minecraft.util.SoundEvent@7c02b3cb | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 307 minecraft:entity.magmacube.hurt net.minecraft.util.SoundEvent@3d8fd373 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 308 minecraft:entity.magmacube.jump net.minecraft.util.SoundEvent@2dcd451f | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 309 minecraft:entity.magmacube.squish net.minecraft.util.SoundEvent@342394b3 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 310 minecraft:entity.minecart.inside net.minecraft.util.SoundEvent@5dd6f517 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 311 minecraft:entity.minecart.riding net.minecraft.util.SoundEvent@1e01b195 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 312 minecraft:entity.mooshroom.shear net.minecraft.util.SoundEvent@59a3eaf7 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 313 minecraft:entity.mule.ambient net.minecraft.util.SoundEvent@718d6b7c | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 314 minecraft:entity.mule.chest net.minecraft.util.SoundEvent@1b994617 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 315 minecraft:entity.mule.death net.minecraft.util.SoundEvent@807c1e8 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 316 minecraft:entity.mule.hurt net.minecraft.util.SoundEvent@4eb5764d | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 317 minecraft:entity.painting.break net.minecraft.util.SoundEvent@54f9326c | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 318 minecraft:entity.painting.place net.minecraft.util.SoundEvent@5016f1a | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 319 minecraft:entity.parrot.ambient net.minecraft.util.SoundEvent@33bfe6d3 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 320 minecraft:entity.parrot.death net.minecraft.util.SoundEvent@56dde9f7 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 321 minecraft:entity.parrot.eat net.minecraft.util.SoundEvent@4b2acb12 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 322 minecraft:entity.parrot.fly net.minecraft.util.SoundEvent@455d04d2 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 323 minecraft:entity.parrot.hurt net.minecraft.util.SoundEvent@998fbd4 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 324 minecraft:entity.parrot.imitate.blaze net.minecraft.util.SoundEvent@30333941 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 325 minecraft:entity.parrot.imitate.creeper net.minecraft.util.SoundEvent@2d5c160e | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 326 minecraft:entity.parrot.imitate.elder_guardian net.minecraft.util.SoundEvent@8afce3 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 327 minecraft:entity.parrot.imitate.enderdragon net.minecraft.util.SoundEvent@4e02f17d | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 328 minecraft:entity.parrot.imitate.enderman net.minecraft.util.SoundEvent@675230cd | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 329 minecraft:entity.parrot.imitate.endermite net.minecraft.util.SoundEvent@2a73a64f | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 330 minecraft:entity.parrot.imitate.evocation_illager net.minecraft.util.SoundEvent@7dc92a06 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 331 minecraft:entity.parrot.imitate.ghast net.minecraft.util.SoundEvent@2419a5db | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 332 minecraft:entity.parrot.imitate.husk net.minecraft.util.SoundEvent@52bb3dcd | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 333 minecraft:entity.parrot.imitate.illusion_illager net.minecraft.util.SoundEvent@654db80b | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 334 minecraft:entity.parrot.imitate.magmacube net.minecraft.util.SoundEvent@516037be | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 335 minecraft:entity.parrot.imitate.polar_bear net.minecraft.util.SoundEvent@383e6734 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 336 minecraft:entity.parrot.imitate.shulker net.minecraft.util.SoundEvent@336070ab | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 337 minecraft:entity.parrot.imitate.silverfish net.minecraft.util.SoundEvent@3be50b2c | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 338 minecraft:entity.parrot.imitate.skeleton net.minecraft.util.SoundEvent@6be80629 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 339 minecraft:entity.parrot.imitate.slime net.minecraft.util.SoundEvent@20a4cba7 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 340 minecraft:entity.parrot.imitate.spider net.minecraft.util.SoundEvent@10f10230 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 341 minecraft:entity.parrot.imitate.stray net.minecraft.util.SoundEvent@3dec769 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 342 minecraft:entity.parrot.imitate.vex net.minecraft.util.SoundEvent@282c5075 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 343 minecraft:entity.parrot.imitate.vindication_illager net.minecraft.util.SoundEvent@2ed35f24 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 344 minecraft:entity.parrot.imitate.witch net.minecraft.util.SoundEvent@362b384c | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 345 minecraft:entity.parrot.imitate.wither net.minecraft.util.SoundEvent@433b546f | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 346 minecraft:entity.parrot.imitate.wither_skeleton net.minecraft.util.SoundEvent@9de1b85 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 347 minecraft:entity.parrot.imitate.wolf net.minecraft.util.SoundEvent@3d405fe5 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 348 minecraft:entity.parrot.imitate.zombie net.minecraft.util.SoundEvent@52c6e959 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 349 minecraft:entity.parrot.imitate.zombie_pigman net.minecraft.util.SoundEvent@4b475742 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 350 minecraft:entity.parrot.imitate.zombie_villager net.minecraft.util.SoundEvent@323c6f9c | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 351 minecraft:entity.parrot.step net.minecraft.util.SoundEvent@dbca149 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 352 minecraft:entity.pig.ambient net.minecraft.util.SoundEvent@68550d86 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 353 minecraft:entity.pig.death net.minecraft.util.SoundEvent@19d9ba89 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 354 minecraft:entity.pig.hurt net.minecraft.util.SoundEvent@484876a1 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 355 minecraft:entity.pig.saddle net.minecraft.util.SoundEvent@20163008 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 356 minecraft:entity.pig.step net.minecraft.util.SoundEvent@60ef30b1 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 357 minecraft:entity.player.attack.crit net.minecraft.util.SoundEvent@3436d3d7 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 358 minecraft:entity.player.attack.knockback net.minecraft.util.SoundEvent@3f40568e | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 359 minecraft:entity.player.attack.nodamage net.minecraft.util.SoundEvent@2e47a71e | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 360 minecraft:entity.player.attack.strong net.minecraft.util.SoundEvent@37b470df | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 361 minecraft:entity.player.attack.sweep net.minecraft.util.SoundEvent@359ea595 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 362 minecraft:entity.player.attack.weak net.minecraft.util.SoundEvent@8d7718e | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 363 minecraft:entity.player.big_fall net.minecraft.util.SoundEvent@1bbb48dd | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 364 minecraft:entity.player.breath net.minecraft.util.SoundEvent@f9de1fd | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 365 minecraft:entity.player.burp net.minecraft.util.SoundEvent@4fef4f96 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 366 minecraft:entity.player.death net.minecraft.util.SoundEvent@7c871ce4 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 367 minecraft:entity.player.hurt net.minecraft.util.SoundEvent@3d3b4e09 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 368 minecraft:entity.player.hurt_drown net.minecraft.util.SoundEvent@5dc9d25a | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 369 minecraft:entity.player.hurt_on_fire net.minecraft.util.SoundEvent@686fb58a | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 370 minecraft:entity.player.levelup net.minecraft.util.SoundEvent@2c4be45f | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 371 minecraft:entity.player.small_fall net.minecraft.util.SoundEvent@4be7acd9 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 372 minecraft:entity.player.splash net.minecraft.util.SoundEvent@58afecfd | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 373 minecraft:entity.player.swim net.minecraft.util.SoundEvent@4d79d187 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 374 minecraft:entity.polar_bear.ambient net.minecraft.util.SoundEvent@3e63bd6b | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 375 minecraft:entity.polar_bear.baby_ambient net.minecraft.util.SoundEvent@48144f1a | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 376 minecraft:entity.polar_bear.death net.minecraft.util.SoundEvent@6f7b8ae1 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 377 minecraft:entity.polar_bear.hurt net.minecraft.util.SoundEvent@6c8d8b60 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 378 minecraft:entity.polar_bear.step net.minecraft.util.SoundEvent@4fa6fb7f | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 379 minecraft:entity.polar_bear.warning net.minecraft.util.SoundEvent@2520010e | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 380 minecraft:entity.rabbit.ambient net.minecraft.util.SoundEvent@163fbbc9 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 381 minecraft:entity.rabbit.attack net.minecraft.util.SoundEvent@1669f4e5 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 382 minecraft:entity.rabbit.death net.minecraft.util.SoundEvent@6e6c8854 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 383 minecraft:entity.rabbit.hurt net.minecraft.util.SoundEvent@4be1dce6 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 384 minecraft:entity.rabbit.jump net.minecraft.util.SoundEvent@206bd7a0 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 385 minecraft:entity.sheep.ambient net.minecraft.util.SoundEvent@79fcd194 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 386 minecraft:entity.sheep.death net.minecraft.util.SoundEvent@73d8c8d7 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 387 minecraft:entity.sheep.hurt net.minecraft.util.SoundEvent@361b3ca6 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 388 minecraft:entity.sheep.shear net.minecraft.util.SoundEvent@48333b12 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 389 minecraft:entity.sheep.step net.minecraft.util.SoundEvent@575c23f1 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 390 minecraft:entity.shulker.ambient net.minecraft.util.SoundEvent@62f7d7bd | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 391 minecraft:entity.shulker.close net.minecraft.util.SoundEvent@de63949 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 392 minecraft:entity.shulker.death net.minecraft.util.SoundEvent@5c5c784c | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 393 minecraft:entity.shulker.hurt net.minecraft.util.SoundEvent@6a299b9d | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 394 minecraft:entity.shulker.hurt_closed net.minecraft.util.SoundEvent@363fe35a | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 395 minecraft:entity.shulker.open net.minecraft.util.SoundEvent@a2fb8a5 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 396 minecraft:entity.shulker.shoot net.minecraft.util.SoundEvent@350e3fb4 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 397 minecraft:entity.shulker.teleport net.minecraft.util.SoundEvent@13ddaffb | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 398 minecraft:entity.shulker_bullet.hit net.minecraft.util.SoundEvent@5a31abe9 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 399 minecraft:entity.shulker_bullet.hurt net.minecraft.util.SoundEvent@2dacda9a | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 400 minecraft:entity.silverfish.ambient net.minecraft.util.SoundEvent@699bb304 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 401 minecraft:entity.silverfish.death net.minecraft.util.SoundEvent@17477bbb | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 402 minecraft:entity.silverfish.hurt net.minecraft.util.SoundEvent@40fee459 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 403 minecraft:entity.silverfish.step net.minecraft.util.SoundEvent@bcd9ed6 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 404 minecraft:entity.skeleton.ambient net.minecraft.util.SoundEvent@3ffa0f38 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 405 minecraft:entity.skeleton.death net.minecraft.util.SoundEvent@13cc31df | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 406 minecraft:entity.skeleton.hurt net.minecraft.util.SoundEvent@24a7d3d3 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 407 minecraft:entity.skeleton.shoot net.minecraft.util.SoundEvent@43fbc2bf | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 408 minecraft:entity.skeleton.step net.minecraft.util.SoundEvent@2c978637 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 409 minecraft:entity.skeleton_horse.ambient net.minecraft.util.SoundEvent@5e2718b3 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 410 minecraft:entity.skeleton_horse.death net.minecraft.util.SoundEvent@440461ef | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 411 minecraft:entity.skeleton_horse.hurt net.minecraft.util.SoundEvent@5977bdea | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 412 minecraft:entity.slime.attack net.minecraft.util.SoundEvent@49c13ecd | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 413 minecraft:entity.slime.death net.minecraft.util.SoundEvent@2f4545c6 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 414 minecraft:entity.slime.hurt net.minecraft.util.SoundEvent@482942d8 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 415 minecraft:entity.slime.jump net.minecraft.util.SoundEvent@2cd52eda | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 416 minecraft:entity.slime.squish net.minecraft.util.SoundEvent@6c225adb | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 417 minecraft:entity.small_magmacube.death net.minecraft.util.SoundEvent@69cc49ec | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 418 minecraft:entity.small_magmacube.hurt net.minecraft.util.SoundEvent@6b71e98f | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 419 minecraft:entity.small_magmacube.squish net.minecraft.util.SoundEvent@6ed7b9c5 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 420 minecraft:entity.small_slime.death net.minecraft.util.SoundEvent@105dc246 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 421 minecraft:entity.small_slime.hurt net.minecraft.util.SoundEvent@1b556a88 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 422 minecraft:entity.small_slime.jump net.minecraft.util.SoundEvent@7f8cd5fc | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 423 minecraft:entity.small_slime.squish net.minecraft.util.SoundEvent@2c465259 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 424 minecraft:entity.snowball.throw net.minecraft.util.SoundEvent@52f7fa65 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 425 minecraft:entity.snowman.ambient net.minecraft.util.SoundEvent@62c6db99 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 426 minecraft:entity.snowman.death net.minecraft.util.SoundEvent@7bfcc108 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 427 minecraft:entity.snowman.hurt net.minecraft.util.SoundEvent@65b680b4 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 428 minecraft:entity.snowman.shoot net.minecraft.util.SoundEvent@87f6ab5 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 429 minecraft:entity.spider.ambient net.minecraft.util.SoundEvent@5c316230 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 430 minecraft:entity.spider.death net.minecraft.util.SoundEvent@41581c3f | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 431 minecraft:entity.spider.hurt net.minecraft.util.SoundEvent@10ba9780 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 432 minecraft:entity.spider.step net.minecraft.util.SoundEvent@63636de0 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 433 minecraft:entity.splash_potion.break net.minecraft.util.SoundEvent@3494a35e | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 434 minecraft:entity.splash_potion.throw net.minecraft.util.SoundEvent@352ce817 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 435 minecraft:entity.squid.ambient net.minecraft.util.SoundEvent@716e6fa5 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 436 minecraft:entity.squid.death net.minecraft.util.SoundEvent@91a1005 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 437 minecraft:entity.squid.hurt net.minecraft.util.SoundEvent@1885dc2b | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 438 minecraft:entity.stray.ambient net.minecraft.util.SoundEvent@4a3bf37c | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 439 minecraft:entity.stray.death net.minecraft.util.SoundEvent@48aaaed9 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 440 minecraft:entity.stray.hurt net.minecraft.util.SoundEvent@116915f1 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 441 minecraft:entity.stray.step net.minecraft.util.SoundEvent@27bbe773 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 442 minecraft:entity.tnt.primed net.minecraft.util.SoundEvent@328e50eb | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 443 minecraft:entity.vex.ambient net.minecraft.util.SoundEvent@2fcffc05 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 444 minecraft:entity.vex.charge net.minecraft.util.SoundEvent@76d0a290 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 445 minecraft:entity.vex.death net.minecraft.util.SoundEvent@ea84346 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 446 minecraft:entity.vex.hurt net.minecraft.util.SoundEvent@4e614370 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 447 minecraft:entity.villager.ambient net.minecraft.util.SoundEvent@1e1ea16d | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 448 minecraft:entity.villager.death net.minecraft.util.SoundEvent@6da9541c | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 449 minecraft:entity.villager.hurt net.minecraft.util.SoundEvent@2157889c | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 450 minecraft:entity.villager.no net.minecraft.util.SoundEvent@65e92505 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 451 minecraft:entity.villager.trading net.minecraft.util.SoundEvent@e97f51c | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 452 minecraft:entity.villager.yes net.minecraft.util.SoundEvent@29394966 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 453 minecraft:entity.vindication_illager.ambient net.minecraft.util.SoundEvent@343727b5 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 454 minecraft:entity.vindication_illager.death net.minecraft.util.SoundEvent@18dafd3b | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 455 minecraft:entity.vindication_illager.hurt net.minecraft.util.SoundEvent@2954c429 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 456 minecraft:entity.witch.ambient net.minecraft.util.SoundEvent@4a45ca1c | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 457 minecraft:entity.witch.death net.minecraft.util.SoundEvent@4742466e | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 458 minecraft:entity.witch.drink net.minecraft.util.SoundEvent@83e5898 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 459 minecraft:entity.witch.hurt net.minecraft.util.SoundEvent@7c4a03a | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 460 minecraft:entity.witch.throw net.minecraft.util.SoundEvent@63b58ff4 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 461 minecraft:entity.wither.ambient net.minecraft.util.SoundEvent@3691d4da | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 462 minecraft:entity.wither.break_block net.minecraft.util.SoundEvent@4c91a008 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 463 minecraft:entity.wither.death net.minecraft.util.SoundEvent@6ef61cd0 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 464 minecraft:entity.wither.hurt net.minecraft.util.SoundEvent@2173e4d5 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 465 minecraft:entity.wither.shoot net.minecraft.util.SoundEvent@197cc325 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 466 minecraft:entity.wither.spawn net.minecraft.util.SoundEvent@582ca1e2 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 467 minecraft:entity.wither_skeleton.ambient net.minecraft.util.SoundEvent@66226ab | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 468 minecraft:entity.wither_skeleton.death net.minecraft.util.SoundEvent@38093ffe | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 469 minecraft:entity.wither_skeleton.hurt net.minecraft.util.SoundEvent@4713b631 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 470 minecraft:entity.wither_skeleton.step net.minecraft.util.SoundEvent@7a0d2c80 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 471 minecraft:entity.wolf.ambient net.minecraft.util.SoundEvent@6d4d0a14 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 472 minecraft:entity.wolf.death net.minecraft.util.SoundEvent@1cca3e8c | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 473 minecraft:entity.wolf.growl net.minecraft.util.SoundEvent@46b2a11a | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 474 minecraft:entity.wolf.howl net.minecraft.util.SoundEvent@55c8fc60 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 475 minecraft:entity.wolf.hurt net.minecraft.util.SoundEvent@50d05167 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 476 minecraft:entity.wolf.pant net.minecraft.util.SoundEvent@1da32baf | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 477 minecraft:entity.wolf.shake net.minecraft.util.SoundEvent@4e4af370 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 478 minecraft:entity.wolf.step net.minecraft.util.SoundEvent@5cf33d25 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 479 minecraft:entity.wolf.whine net.minecraft.util.SoundEvent@efa04b5 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 480 minecraft:entity.zombie.ambient net.minecraft.util.SoundEvent@a80a896 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 481 minecraft:entity.zombie.attack_door_wood net.minecraft.util.SoundEvent@13c81bc5 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 482 minecraft:entity.zombie.attack_iron_door net.minecraft.util.SoundEvent@5617168c | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 483 minecraft:entity.zombie.break_door_wood net.minecraft.util.SoundEvent@8167f57 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 484 minecraft:entity.zombie.death net.minecraft.util.SoundEvent@75da2db | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 485 minecraft:entity.zombie.hurt net.minecraft.util.SoundEvent@541897c6 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 486 minecraft:entity.zombie.infect net.minecraft.util.SoundEvent@3ad558bf | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 487 minecraft:entity.zombie.step net.minecraft.util.SoundEvent@1826475 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 488 minecraft:entity.zombie_horse.ambient net.minecraft.util.SoundEvent@6ba355e4 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 489 minecraft:entity.zombie_horse.death net.minecraft.util.SoundEvent@7b1559f1 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 490 minecraft:entity.zombie_horse.hurt net.minecraft.util.SoundEvent@6b15e68c | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 491 minecraft:entity.zombie_pig.ambient net.minecraft.util.SoundEvent@79a68657 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 492 minecraft:entity.zombie_pig.angry net.minecraft.util.SoundEvent@8dbf0f2 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 493 minecraft:entity.zombie_pig.death net.minecraft.util.SoundEvent@59d0fac9 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 494 minecraft:entity.zombie_pig.hurt net.minecraft.util.SoundEvent@1d3546f9 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 495 minecraft:entity.zombie_villager.ambient net.minecraft.util.SoundEvent@50ecef36 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 496 minecraft:entity.zombie_villager.converted net.minecraft.util.SoundEvent@767d9b9 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 497 minecraft:entity.zombie_villager.cure net.minecraft.util.SoundEvent@593f7d2e | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 498 minecraft:entity.zombie_villager.death net.minecraft.util.SoundEvent@6e8aea7e | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 499 minecraft:entity.zombie_villager.hurt net.minecraft.util.SoundEvent@59282dc6 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 500 minecraft:entity.zombie_villager.step net.minecraft.util.SoundEvent@603b9d4b | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 501 minecraft:item.armor.equip_chain net.minecraft.util.SoundEvent@42cf5a6f | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 502 minecraft:item.armor.equip_diamond net.minecraft.util.SoundEvent@7b2f8152 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 503 minecraft:item.armor.equip_elytra net.minecraft.util.SoundEvent@6371c5ec | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 504 minecraft:item.armor.equip_generic net.minecraft.util.SoundEvent@5f9ccd0c | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 505 minecraft:item.armor.equip_gold net.minecraft.util.SoundEvent@6738e8b2 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 506 minecraft:item.armor.equip_iron net.minecraft.util.SoundEvent@609ad016 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 507 minecraft:item.armor.equip_leather net.minecraft.util.SoundEvent@da9374c | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 508 minecraft:item.bottle.empty net.minecraft.util.SoundEvent@34647f58 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 509 minecraft:item.bottle.fill net.minecraft.util.SoundEvent@14b96c1e | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 510 minecraft:item.bottle.fill_dragonbreath net.minecraft.util.SoundEvent@229514ff | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 511 minecraft:item.bucket.empty net.minecraft.util.SoundEvent@664254b6 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 512 minecraft:item.bucket.empty_lava net.minecraft.util.SoundEvent@714b6999 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 513 minecraft:item.bucket.fill net.minecraft.util.SoundEvent@2e4d2232 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 514 minecraft:item.bucket.fill_lava net.minecraft.util.SoundEvent@24f5e9e8 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 515 minecraft:item.chorus_fruit.teleport net.minecraft.util.SoundEvent@50e6ee24 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 516 minecraft:item.elytra.flying net.minecraft.util.SoundEvent@7acb5200 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 517 minecraft:item.firecharge.use net.minecraft.util.SoundEvent@3d50a3d9 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 518 minecraft:item.flintandsteel.use net.minecraft.util.SoundEvent@3661b732 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 519 minecraft:item.hoe.till net.minecraft.util.SoundEvent@5111f814 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 520 minecraft:item.shield.block net.minecraft.util.SoundEvent@71eafb64 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 521 minecraft:item.shield.break net.minecraft.util.SoundEvent@491cc0eb | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 522 minecraft:item.shovel.flatten net.minecraft.util.SoundEvent@727f36dd | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 523 minecraft:item.totem.use net.minecraft.util.SoundEvent@2c70a1de | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 524 minecraft:music.creative net.minecraft.util.SoundEvent@ae74eef | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 525 minecraft:music.credits net.minecraft.util.SoundEvent@2553dcc0 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 526 minecraft:music.dragon net.minecraft.util.SoundEvent@2e91cf69 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 527 minecraft:music.end net.minecraft.util.SoundEvent@746e534 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 528 minecraft:music.game net.minecraft.util.SoundEvent@37665305 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 529 minecraft:music.menu net.minecraft.util.SoundEvent@c683cf5 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 530 minecraft:music.nether net.minecraft.util.SoundEvent@2c224096 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 531 minecraft:record.11 net.minecraft.util.SoundEvent@1cfd6f63 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 532 minecraft:record.13 net.minecraft.util.SoundEvent@1906f982 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 533 minecraft:record.blocks net.minecraft.util.SoundEvent@5444f1c3 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 534 minecraft:record.cat net.minecraft.util.SoundEvent@6a5c2d2d | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 535 minecraft:record.chirp net.minecraft.util.SoundEvent@1dadd172 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 536 minecraft:record.far net.minecraft.util.SoundEvent@33c9f1ac | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 537 minecraft:record.mall net.minecraft.util.SoundEvent@4070c4ff | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 538 minecraft:record.mellohi net.minecraft.util.SoundEvent@4bceac99 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 539 minecraft:record.stal net.minecraft.util.SoundEvent@389bc2d3 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 540 minecraft:record.strad net.minecraft.util.SoundEvent@442310fd | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 541 minecraft:record.wait net.minecraft.util.SoundEvent@23263ba | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 542 minecraft:record.ward net.minecraft.util.SoundEvent@3ca6bd01 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 543 minecraft:ui.button.click net.minecraft.util.SoundEvent@5acd7d1c | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 544 minecraft:ui.toast.in net.minecraft.util.SoundEvent@6b52a40 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 545 minecraft:ui.toast.out net.minecraft.util.SoundEvent@178ba69f | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 546 minecraft:ui.toast.challenge_complete net.minecraft.util.SoundEvent@1e4c4fda | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 547 minecraft:weather.rain net.minecraft.util.SoundEvent@2f58f492 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 548 minecraft:weather.rain.above net.minecraft.util.SoundEvent@903c13 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry Name : minecraft:potiontypes | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 0 minecraft:empty net.minecraft.potion.PotionType@14ce13fa | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 1 minecraft:water net.minecraft.potion.PotionType@296ddfc7 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 2 minecraft:mundane net.minecraft.potion.PotionType@29aa29f5 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 3 minecraft:thick net.minecraft.potion.PotionType@2a742ee4 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 4 minecraft:awkward net.minecraft.potion.PotionType@4e41b993 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 5 minecraft:night_vision net.minecraft.potion.PotionType@915c47b | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 6 minecraft:long_night_vision net.minecraft.potion.PotionType@7108b12d | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 7 minecraft:invisibility net.minecraft.potion.PotionType@7a80b2e6 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 8 minecraft:long_invisibility net.minecraft.potion.PotionType@394e0104 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 9 minecraft:leaping net.minecraft.potion.PotionType@1e5f3c4a | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 10 minecraft:long_leaping net.minecraft.potion.PotionType@2aea7775 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 11 minecraft:strong_leaping net.minecraft.potion.PotionType@5502f74c | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 12 minecraft:fire_resistance net.minecraft.potion.PotionType@1c8d9ac9 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 13 minecraft:long_fire_resistance net.minecraft.potion.PotionType@7b57587e | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 14 minecraft:swiftness net.minecraft.potion.PotionType@2ffc9be | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 15 minecraft:long_swiftness net.minecraft.potion.PotionType@4005e63a | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 16 minecraft:strong_swiftness net.minecraft.potion.PotionType@30ae6721 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 17 minecraft:slowness net.minecraft.potion.PotionType@717b4de2 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 18 minecraft:long_slowness net.minecraft.potion.PotionType@d35d84a | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 19 minecraft:water_breathing net.minecraft.potion.PotionType@626edbe0 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 20 minecraft:long_water_breathing net.minecraft.potion.PotionType@213a2fe3 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 21 minecraft:healing net.minecraft.potion.PotionType@a05727b | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 22 minecraft:strong_healing net.minecraft.potion.PotionType@29511cf9 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 23 minecraft:harming net.minecraft.potion.PotionType@3df473e8 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 24 minecraft:strong_harming net.minecraft.potion.PotionType@4dc10682 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 25 minecraft:poison net.minecraft.potion.PotionType@6cf633eb | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 26 minecraft:long_poison net.minecraft.potion.PotionType@4de14c58 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 27 minecraft:strong_poison net.minecraft.potion.PotionType@53141d3f | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 28 minecraft:regeneration net.minecraft.potion.PotionType@16a4e4c9 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 29 minecraft:long_regeneration net.minecraft.potion.PotionType@4b90f49d | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 30 minecraft:strong_regeneration net.minecraft.potion.PotionType@c54e23b | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 31 minecraft:strength net.minecraft.potion.PotionType@7fdaeb6b | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 32 minecraft:long_strength net.minecraft.potion.PotionType@4ee9daf5 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 33 minecraft:strong_strength net.minecraft.potion.PotionType@291fba9 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 34 minecraft:weakness net.minecraft.potion.PotionType@29ff84fa | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 35 minecraft:long_weakness net.minecraft.potion.PotionType@156b31d | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 36 minecraft:luck net.minecraft.potion.PotionType@168ffb0 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry Name : minecraft:enchantments | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 0 minecraft:protection net.minecraft.enchantment.EnchantmentProtection@38503309 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 1 minecraft:fire_protection net.minecraft.enchantment.EnchantmentProtection@4ad04b05 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 2 minecraft:feather_falling net.minecraft.enchantment.EnchantmentProtection@78b888df | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 3 minecraft:blast_protection net.minecraft.enchantment.EnchantmentProtection@6f2e0945 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 4 minecraft:projectile_protection net.minecraft.enchantment.EnchantmentProtection@565fa7d2 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 5 minecraft:respiration net.minecraft.enchantment.EnchantmentOxygen@72a45b71 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 6 minecraft:aqua_affinity net.minecraft.enchantment.EnchantmentWaterWorker@41dbf02b | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 7 minecraft:thorns net.minecraft.enchantment.EnchantmentThorns@750448fb | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 8 minecraft:depth_strider net.minecraft.enchantment.EnchantmentWaterWalker@1aaa3406 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 9 minecraft:frost_walker net.minecraft.enchantment.EnchantmentFrostWalker@548e70f0 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 10 minecraft:binding_curse net.minecraft.enchantment.EnchantmentBindingCurse@47483211 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 16 minecraft:sharpness net.minecraft.enchantment.EnchantmentDamage@5fb392e | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 17 minecraft:smite net.minecraft.enchantment.EnchantmentDamage@19e67cc2 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 18 minecraft:bane_of_arthropods net.minecraft.enchantment.EnchantmentDamage@62525579 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 19 minecraft:knockback net.minecraft.enchantment.EnchantmentKnockback@32ae890 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 20 minecraft:fire_aspect net.minecraft.enchantment.EnchantmentFireAspect@352bea0e | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 21 minecraft:looting net.minecraft.enchantment.EnchantmentLootBonus@5896899d | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 22 minecraft:sweeping net.minecraft.enchantment.EnchantmentSweepingEdge@a9f7cf8 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 32 minecraft:efficiency net.minecraft.enchantment.EnchantmentDigging@664217a8 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 33 minecraft:silk_touch net.minecraft.enchantment.EnchantmentUntouching@188500e9 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 34 minecraft:unbreaking net.minecraft.enchantment.EnchantmentDurability@7955b4d4 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 35 minecraft:fortune net.minecraft.enchantment.EnchantmentLootBonus@489e1887 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 48 minecraft:power net.minecraft.enchantment.EnchantmentArrowDamage@7f088b5c | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 49 minecraft:punch net.minecraft.enchantment.EnchantmentArrowKnockback@1cdbc986 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 50 minecraft:flame net.minecraft.enchantment.EnchantmentArrowFire@2d2697a8 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 51 minecraft:infinity net.minecraft.enchantment.EnchantmentArrowInfinite@5d04adc1 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 61 minecraft:luck_of_the_sea net.minecraft.enchantment.EnchantmentLootBonus@4c2812aa | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 62 minecraft:lure net.minecraft.enchantment.EnchantmentFishingSpeed@74832504 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 70 minecraft:mending net.minecraft.enchantment.EnchantmentMending@4ce5013a | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 71 minecraft:vanishing_curse net.minecraft.enchantment.EnchantmentVanishingCurse@301434fb | |
[00:24:07] [Server thread/TRACE] [FML]: Registry Name : minecraft:recipes | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 0 minecraft:armordye net.minecraft.item.crafting.RecipesArmorDyes@446dbf7b | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 1 minecraft:bookcloning net.minecraft.item.crafting.RecipeBookCloning@4a28b6d0 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 2 minecraft:mapcloning net.minecraft.item.crafting.RecipesMapCloning@1ff584d7 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 3 minecraft:mapextending net.minecraft.item.crafting.RecipesMapExtending@18247d9b | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 4 minecraft:fireworks net.minecraft.item.crafting.RecipeFireworks@61563a91 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 5 minecraft:repairitem net.minecraft.item.crafting.RecipeRepairItem@720cbb7d | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 6 minecraft:tippedarrow net.minecraft.item.crafting.RecipeTippedArrow@5642cd03 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 7 minecraft:bannerduplicate net.minecraft.item.crafting.RecipesBanners$RecipeDuplicatePattern@1285ec6 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 8 minecraft:banneraddpattern net.minecraft.item.crafting.RecipesBanners$RecipeAddPattern@2620f935 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 9 minecraft:shielddecoration net.minecraft.item.crafting.ShieldRecipes$Decoration@6a0ca728 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 10 minecraft:shulkerboxcoloring net.minecraft.item.crafting.ShulkerBoxRecipes$ShulkerBoxColoring@6f8c6694 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 11 minecraft:yellow_wool net.minecraft.item.crafting.ShapelessRecipes@726e780a | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 12 minecraft:yellow_stained_hardened_clay net.minecraft.item.crafting.ShapedRecipes@645a9649 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 13 minecraft:yellow_stained_glass_pane net.minecraft.item.crafting.ShapedRecipes@ab5c335 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 14 minecraft:yellow_stained_glass net.minecraft.item.crafting.ShapedRecipes@43165282 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 15 minecraft:yellow_dye_from_sunflower net.minecraft.item.crafting.ShapelessRecipes@3aaeb65b | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 16 minecraft:yellow_dye_from_dandelion net.minecraft.item.crafting.ShapelessRecipes@74c58f64 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 17 minecraft:yellow_concrete_powder net.minecraft.item.crafting.ShapelessRecipes@46e2a773 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 18 minecraft:yellow_carpet net.minecraft.item.crafting.ShapedRecipes@65595be7 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 19 minecraft:yellow_bed_from_white_bed net.minecraft.item.crafting.ShapelessRecipes@251d64d6 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 20 minecraft:yellow_bed net.minecraft.item.crafting.ShapedRecipes@186f7553 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 21 minecraft:yellow_banner net.minecraft.item.crafting.ShapedRecipes@18d6ac02 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 22 minecraft:writable_book net.minecraft.item.crafting.ShapelessRecipes@6e4d660 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 23 minecraft:wooden_sword net.minecraft.item.crafting.ShapedRecipes@541ea657 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 24 minecraft:wooden_shovel net.minecraft.item.crafting.ShapedRecipes@7a90796c | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 25 minecraft:wooden_pressure_plate net.minecraft.item.crafting.ShapedRecipes@375376d5 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 26 minecraft:wooden_pickaxe net.minecraft.item.crafting.ShapedRecipes@8ea1521 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 27 minecraft:wooden_hoe net.minecraft.item.crafting.ShapedRecipes@18e4bbec | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 28 minecraft:wooden_door net.minecraft.item.crafting.ShapedRecipes@35ca0dac | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 29 minecraft:wooden_button net.minecraft.item.crafting.ShapedRecipes@44faf689 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 30 minecraft:wooden_axe net.minecraft.item.crafting.ShapedRecipes@73344f4a | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 31 minecraft:white_stained_hardened_clay net.minecraft.item.crafting.ShapedRecipes@a6cb2c9 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 32 minecraft:white_stained_glass_pane net.minecraft.item.crafting.ShapedRecipes@786125a6 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 33 minecraft:white_stained_glass net.minecraft.item.crafting.ShapedRecipes@3426d8e2 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 34 minecraft:white_concrete_powder net.minecraft.item.crafting.ShapelessRecipes@17478cec | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 35 minecraft:white_carpet net.minecraft.item.crafting.ShapedRecipes@656c356c | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 36 minecraft:white_bed net.minecraft.item.crafting.ShapedRecipes@1100363d | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 37 minecraft:white_banner net.minecraft.item.crafting.ShapedRecipes@4190b111 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 38 minecraft:wheat net.minecraft.item.crafting.ShapedRecipes@3979ff82 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 39 minecraft:tripwire_hook net.minecraft.item.crafting.ShapedRecipes@708378cc | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 40 minecraft:trapped_chest net.minecraft.item.crafting.ShapelessRecipes@35266985 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 41 minecraft:trapdoor net.minecraft.item.crafting.ShapedRecipes@7f5582db | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 42 minecraft:torch net.minecraft.item.crafting.ShapedRecipes@74876292 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 43 minecraft:tnt_minecart net.minecraft.item.crafting.ShapedRecipes@30130a31 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 44 minecraft:tnt net.minecraft.item.crafting.ShapedRecipes@28cfbcc | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 45 minecraft:sugar net.minecraft.item.crafting.ShapedRecipes@7c6f91d2 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 46 minecraft:string_to_wool net.minecraft.item.crafting.ShapedRecipes@3c67b7a9 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 47 minecraft:stonebrick net.minecraft.item.crafting.ShapedRecipes@488ae823 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 48 minecraft:stone_sword net.minecraft.item.crafting.ShapedRecipes@5876cd86 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 49 minecraft:stone_stairs net.minecraft.item.crafting.ShapedRecipes@3d123d10 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 50 minecraft:stone_slab net.minecraft.item.crafting.ShapedRecipes@6eed5b68 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 51 minecraft:stone_shovel net.minecraft.item.crafting.ShapedRecipes@40f88929 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 52 minecraft:stone_pressure_plate net.minecraft.item.crafting.ShapedRecipes@104972a0 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 53 minecraft:stone_pickaxe net.minecraft.item.crafting.ShapedRecipes@fb69ab1 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 54 minecraft:stone_hoe net.minecraft.item.crafting.ShapedRecipes@43c25e89 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 55 minecraft:stone_button net.minecraft.item.crafting.ShapedRecipes@7207cb8b | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 56 minecraft:stone_brick_stairs net.minecraft.item.crafting.ShapedRecipes@53628ff6 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 57 minecraft:stone_brick_slab net.minecraft.item.crafting.ShapedRecipes@4a7b42db | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 58 minecraft:stone_axe net.minecraft.item.crafting.ShapedRecipes@7c3920a7 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 59 minecraft:sticky_piston net.minecraft.item.crafting.ShapedRecipes@656dc20f | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 60 minecraft:stick net.minecraft.item.crafting.ShapedRecipes@3da76d3a | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 61 minecraft:spruce_wooden_slab net.minecraft.item.crafting.ShapedRecipes@190677c6 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 62 minecraft:spruce_stairs net.minecraft.item.crafting.ShapedRecipes@36ba9aa3 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 63 minecraft:spruce_planks net.minecraft.item.crafting.ShapedRecipes@3c9e82a6 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 64 minecraft:spruce_fence_gate net.minecraft.item.crafting.ShapedRecipes@2e3fdf30 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 65 minecraft:spruce_fence net.minecraft.item.crafting.ShapedRecipes@1bef1304 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 66 minecraft:spruce_door net.minecraft.item.crafting.ShapedRecipes@f2df380 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 67 minecraft:spruce_boat net.minecraft.item.crafting.ShapedRecipes@2d487df4 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 68 minecraft:spectral_arrow net.minecraft.item.crafting.ShapedRecipes@71c77042 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 69 minecraft:speckled_melon net.minecraft.item.crafting.ShapedRecipes@1272f6d9 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 70 minecraft:snow_layer net.minecraft.item.crafting.ShapedRecipes@663d59ed | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 71 minecraft:snow net.minecraft.item.crafting.ShapedRecipes@6ca6d195 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 72 minecraft:smooth_sandstone net.minecraft.item.crafting.ShapedRecipes@7859bd9a | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 73 minecraft:smooth_red_sandstone net.minecraft.item.crafting.ShapedRecipes@e8bd42f | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 74 minecraft:slime_ball net.minecraft.item.crafting.ShapedRecipes@570f96b7 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 75 minecraft:slime net.minecraft.item.crafting.ShapedRecipes@7d487147 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 76 minecraft:sign net.minecraft.item.crafting.ShapedRecipes@2116e9cf | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 77 minecraft:shield net.minecraft.item.crafting.ShapedRecipes@bf2aa3f | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 78 minecraft:shears net.minecraft.item.crafting.ShapedRecipes@1f02ce3 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 79 minecraft:sea_lantern net.minecraft.item.crafting.ShapedRecipes@4d08fee2 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 80 minecraft:sandstone_stairs net.minecraft.item.crafting.ShapedRecipes@3872c85f | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 81 minecraft:sandstone_slab net.minecraft.item.crafting.ShapedRecipes@25198ead | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 82 minecraft:sandstone net.minecraft.item.crafting.ShapedRecipes@6770a229 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 83 minecraft:repeater net.minecraft.item.crafting.ShapedRecipes@5e9db5e7 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 84 minecraft:redstone_torch net.minecraft.item.crafting.ShapedRecipes@29ae939c | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 85 minecraft:redstone_lamp net.minecraft.item.crafting.ShapedRecipes@35ec675e | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 86 minecraft:redstone_block net.minecraft.item.crafting.ShapedRecipes@40f53ea | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 87 minecraft:redstone net.minecraft.item.crafting.ShapedRecipes@8cc5602 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 88 minecraft:red_wool net.minecraft.item.crafting.ShapelessRecipes@7d6b0636 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 89 minecraft:red_stained_hardened_clay net.minecraft.item.crafting.ShapedRecipes@4619e076 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 90 minecraft:red_stained_glass_pane net.minecraft.item.crafting.ShapedRecipes@751e7d99 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 91 minecraft:red_stained_glass net.minecraft.item.crafting.ShapedRecipes@59b5251d | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 92 minecraft:red_sandstone_stairs net.minecraft.item.crafting.ShapedRecipes@4420f4d4 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 93 minecraft:red_sandstone_slab net.minecraft.item.crafting.ShapedRecipes@517594dd | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 94 minecraft:red_sandstone net.minecraft.item.crafting.ShapedRecipes@7ebefdfa | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 95 minecraft:red_nether_brick net.minecraft.item.crafting.ShapedRecipes@52caa9d8 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 96 minecraft:red_dye_from_tulip net.minecraft.item.crafting.ShapelessRecipes@1f9af742 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 97 minecraft:red_dye_from_rose_bush net.minecraft.item.crafting.ShapelessRecipes@76737130 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 98 minecraft:red_dye_from_poppy net.minecraft.item.crafting.ShapelessRecipes@61cf142f | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 99 minecraft:red_dye_from_beetroot net.minecraft.item.crafting.ShapelessRecipes@980ac1f | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 100 minecraft:red_concrete_powder net.minecraft.item.crafting.ShapelessRecipes@19fdcaba | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 101 minecraft:red_carpet net.minecraft.item.crafting.ShapedRecipes@575a6540 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 102 minecraft:red_bed_from_white_bed net.minecraft.item.crafting.ShapelessRecipes@5a95090a | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 103 minecraft:red_bed net.minecraft.item.crafting.ShapedRecipes@30741e9b | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 104 minecraft:red_banner net.minecraft.item.crafting.ShapedRecipes@4c04188 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 105 minecraft:rail net.minecraft.item.crafting.ShapedRecipes@34f4fd04 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 106 minecraft:rabbit_stew_from_red_mushroom net.minecraft.item.crafting.ShapedRecipes@173e4b75 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 107 minecraft:rabbit_stew_from_brown_mushroom net.minecraft.item.crafting.ShapedRecipes@47c14360 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 108 minecraft:quartz_stairs net.minecraft.item.crafting.ShapedRecipes@7f5ba1bf | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 109 minecraft:quartz_slab net.minecraft.item.crafting.ShapedRecipes@547d3e8e | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 110 minecraft:quartz_block net.minecraft.item.crafting.ShapedRecipes@48028e11 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 111 minecraft:purpur_stairs net.minecraft.item.crafting.ShapedRecipes@943184c | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 112 minecraft:purpur_slab net.minecraft.item.crafting.ShapedRecipes@35d8a046 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 113 minecraft:purpur_pillar net.minecraft.item.crafting.ShapedRecipes@4b50ebea | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 114 minecraft:purpur_block net.minecraft.item.crafting.ShapedRecipes@31fd3db2 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 115 minecraft:purple_wool net.minecraft.item.crafting.ShapelessRecipes@22b8eaf0 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 116 minecraft:purple_stained_hardened_clay net.minecraft.item.crafting.ShapedRecipes@6c366d3 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 117 minecraft:purple_stained_glass_pane net.minecraft.item.crafting.ShapedRecipes@7acb0a44 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 118 minecraft:purple_stained_glass net.minecraft.item.crafting.ShapedRecipes@3759ea4d | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 119 minecraft:purple_shulker_box net.minecraft.item.crafting.ShapedRecipes@28d07fa4 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 120 minecraft:purple_dye net.minecraft.item.crafting.ShapelessRecipes@33c6c4f | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 121 minecraft:purple_concrete_powder net.minecraft.item.crafting.ShapelessRecipes@70d4c4ff | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 122 minecraft:purple_carpet net.minecraft.item.crafting.ShapedRecipes@4a6ac443 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 123 minecraft:purple_bed_from_white_bed net.minecraft.item.crafting.ShapelessRecipes@6da5cb1 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 124 minecraft:purple_bed net.minecraft.item.crafting.ShapedRecipes@3f6bfcbe | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 125 minecraft:purple_banner net.minecraft.item.crafting.ShapedRecipes@bf70ce5 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 126 minecraft:pumpkin_seeds net.minecraft.item.crafting.ShapedRecipes@14432052 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 127 minecraft:pumpkin_pie net.minecraft.item.crafting.ShapelessRecipes@56394880 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 128 minecraft:prismarine_bricks net.minecraft.item.crafting.ShapedRecipes@6b0bcea5 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 129 minecraft:prismarine net.minecraft.item.crafting.ShapedRecipes@6bab65b6 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 130 minecraft:polished_granite net.minecraft.item.crafting.ShapedRecipes@5acbef42 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 131 minecraft:polished_diorite net.minecraft.item.crafting.ShapedRecipes@6311898c | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 132 minecraft:polished_andesite net.minecraft.item.crafting.ShapedRecipes@1f315f3d | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 133 minecraft:piston net.minecraft.item.crafting.ShapedRecipes@1c1bc904 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 134 minecraft:pink_wool net.minecraft.item.crafting.ShapelessRecipes@57b4fc1e | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 135 minecraft:pink_stained_hardened_clay net.minecraft.item.crafting.ShapedRecipes@1aae50f9 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 136 minecraft:pink_stained_glass_pane net.minecraft.item.crafting.ShapedRecipes@11885841 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 137 minecraft:pink_stained_glass net.minecraft.item.crafting.ShapedRecipes@32f35739 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 138 minecraft:pink_dye_from_red_bonemeal net.minecraft.item.crafting.ShapelessRecipes@509e4bc4 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 139 minecraft:pink_dye_from_pink_tulip net.minecraft.item.crafting.ShapelessRecipes@72f4232 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 140 minecraft:pink_dye_from_peony net.minecraft.item.crafting.ShapelessRecipes@3cc7cf58 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 141 minecraft:pink_concrete_powder net.minecraft.item.crafting.ShapelessRecipes@3d2a164e | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 142 minecraft:pink_carpet net.minecraft.item.crafting.ShapedRecipes@51a42767 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 143 minecraft:pink_bed_from_white_bed net.minecraft.item.crafting.ShapelessRecipes@5d52a17b | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 144 minecraft:pink_bed net.minecraft.item.crafting.ShapedRecipes@57f8a3cf | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 145 minecraft:pink_banner net.minecraft.item.crafting.ShapedRecipes@4c821dc7 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 146 minecraft:pillar_quartz_block net.minecraft.item.crafting.ShapedRecipes@2c99419f | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 147 minecraft:paper net.minecraft.item.crafting.ShapedRecipes@6236beac | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 148 minecraft:painting net.minecraft.item.crafting.ShapedRecipes@3c72c488 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 149 minecraft:orange_wool net.minecraft.item.crafting.ShapelessRecipes@284e68ae | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 150 minecraft:orange_stained_hardened_clay net.minecraft.item.crafting.ShapedRecipes@7432cb37 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 151 minecraft:orange_stained_glass_pane net.minecraft.item.crafting.ShapedRecipes@4f94b2a8 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 152 minecraft:orange_stained_glass net.minecraft.item.crafting.ShapedRecipes@3644d12a | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 153 minecraft:orange_dye_from_red_yellow net.minecraft.item.crafting.ShapelessRecipes@70f5f6c7 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 154 minecraft:orange_dye_from_orange_tulip net.minecraft.item.crafting.ShapelessRecipes@6b5f91a5 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 155 minecraft:orange_concrete_powder net.minecraft.item.crafting.ShapelessRecipes@358f85b1 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 156 minecraft:orange_carpet net.minecraft.item.crafting.ShapedRecipes@7c4b7bc3 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 157 minecraft:orange_bed_from_white_bed net.minecraft.item.crafting.ShapelessRecipes@3ef97efc | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 158 minecraft:orange_bed net.minecraft.item.crafting.ShapedRecipes@67add4c9 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 159 minecraft:orange_banner net.minecraft.item.crafting.ShapedRecipes@77ef7b2b | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 160 minecraft:observer net.minecraft.item.crafting.ShapedRecipes@7aca4144 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 161 minecraft:oak_wooden_slab net.minecraft.item.crafting.ShapedRecipes@5f92ef40 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 162 minecraft:oak_stairs net.minecraft.item.crafting.ShapedRecipes@2746b1cc | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 163 minecraft:oak_planks net.minecraft.item.crafting.ShapedRecipes@38e46ea | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 164 minecraft:noteblock net.minecraft.item.crafting.ShapedRecipes@508863eb | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 165 minecraft:nether_wart_block net.minecraft.item.crafting.ShapedRecipes@5ac3d009 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 166 minecraft:nether_brick_stairs net.minecraft.item.crafting.ShapedRecipes@29617475 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 167 minecraft:nether_brick_slab net.minecraft.item.crafting.ShapedRecipes@4ff7de80 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 168 minecraft:nether_brick_fence net.minecraft.item.crafting.ShapedRecipes@e8c381e | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 169 minecraft:nether_brick net.minecraft.item.crafting.ShapedRecipes@430abcad | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 170 minecraft:mushroom_stew net.minecraft.item.crafting.ShapelessRecipes@25bc36 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 171 minecraft:mossy_stonebrick net.minecraft.item.crafting.ShapelessRecipes@286f8e90 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 172 minecraft:mossy_cobblestone_wall net.minecraft.item.crafting.ShapedRecipes@11a9f958 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 173 minecraft:mossy_cobblestone net.minecraft.item.crafting.ShapelessRecipes@cf6a6eb | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 174 minecraft:minecart net.minecraft.item.crafting.ShapedRecipes@e934485 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 175 minecraft:melon_seeds net.minecraft.item.crafting.ShapedRecipes@3c22a99a | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 176 minecraft:melon_block net.minecraft.item.crafting.ShapedRecipes@4b75d640 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 177 minecraft:map net.minecraft.item.crafting.ShapedRecipes@579b1d86 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 178 minecraft:magma_cream net.minecraft.item.crafting.ShapelessRecipes@3f7d20c5 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 179 minecraft:magma net.minecraft.item.crafting.ShapedRecipes@f4a21cb | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 180 minecraft:magenta_wool net.minecraft.item.crafting.ShapelessRecipes@61236349 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 181 minecraft:magenta_stained_hardened_clay net.minecraft.item.crafting.ShapedRecipes@271df4c0 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 182 minecraft:magenta_stained_glass_pane net.minecraft.item.crafting.ShapedRecipes@22edca96 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 183 minecraft:magenta_stained_glass net.minecraft.item.crafting.ShapedRecipes@52364a6e | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 184 minecraft:magenta_dye_from_purple_and_pink net.minecraft.item.crafting.ShapelessRecipes@2f8ede54 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 185 minecraft:magenta_dye_from_lilac net.minecraft.item.crafting.ShapelessRecipes@da8853c | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 186 minecraft:magenta_dye_from_lapis_red_pink net.minecraft.item.crafting.ShapelessRecipes@1e499f1 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 187 minecraft:magenta_dye_from_lapis_ink_bonemeal net.minecraft.item.crafting.ShapelessRecipes@71cdb24 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 188 minecraft:magenta_dye_from_allium net.minecraft.item.crafting.ShapelessRecipes@18e0f894 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 189 minecraft:magenta_concrete_powder net.minecraft.item.crafting.ShapelessRecipes@4eb34397 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 190 minecraft:magenta_carpet net.minecraft.item.crafting.ShapedRecipes@6a339bc1 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 191 minecraft:magenta_bed_from_white_bed net.minecraft.item.crafting.ShapelessRecipes@169f4152 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 192 minecraft:magenta_bed net.minecraft.item.crafting.ShapedRecipes@701c092c | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 193 minecraft:magenta_banner net.minecraft.item.crafting.ShapedRecipes@135fb22d | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 194 minecraft:lit_pumpkin net.minecraft.item.crafting.ShapedRecipes@273cb729 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 195 minecraft:lime_wool net.minecraft.item.crafting.ShapelessRecipes@2d44025b | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 196 minecraft:lime_stained_hardened_clay net.minecraft.item.crafting.ShapedRecipes@327fd5c9 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 197 minecraft:lime_stained_glass_pane net.minecraft.item.crafting.ShapedRecipes@41d34a11 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 198 minecraft:lime_stained_glass net.minecraft.item.crafting.ShapedRecipes@194feb27 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 199 minecraft:lime_dye net.minecraft.item.crafting.ShapelessRecipes@45b4d2ff | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 200 minecraft:lime_concrete_powder net.minecraft.item.crafting.ShapelessRecipes@4e92c6c2 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 201 minecraft:lime_carpet net.minecraft.item.crafting.ShapedRecipes@24663d05 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 202 minecraft:lime_bed_from_white_bed net.minecraft.item.crafting.ShapelessRecipes@6d7e2c53 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 203 minecraft:lime_bed net.minecraft.item.crafting.ShapedRecipes@279e9c95 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 204 minecraft:lime_banner net.minecraft.item.crafting.ShapedRecipes@7ff395fa | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 205 minecraft:light_weighted_pressure_plate net.minecraft.item.crafting.ShapedRecipes@a59324f | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 206 minecraft:light_gray_wool net.minecraft.item.crafting.ShapelessRecipes@339d5e8 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 207 minecraft:light_gray_stained_hardened_clay net.minecraft.item.crafting.ShapedRecipes@698b2343 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 208 minecraft:light_gray_stained_glass_pane net.minecraft.item.crafting.ShapedRecipes@2ce80c85 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 209 minecraft:light_gray_stained_glass net.minecraft.item.crafting.ShapedRecipes@794eb6e7 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 210 minecraft:light_gray_dye_from_white_tulip net.minecraft.item.crafting.ShapelessRecipes@76a5a831 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 211 minecraft:light_gray_dye_from_oxeye_daisy net.minecraft.item.crafting.ShapelessRecipes@7e49ab66 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 212 minecraft:light_gray_dye_from_ink_bonemeal net.minecraft.item.crafting.ShapelessRecipes@23644367 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 213 minecraft:light_gray_dye_from_gray_bonemeal net.minecraft.item.crafting.ShapelessRecipes@6c524a7f | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 214 minecraft:light_gray_dye_from_azure_bluet net.minecraft.item.crafting.ShapelessRecipes@6e057374 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 215 minecraft:light_gray_concrete_powder net.minecraft.item.crafting.ShapelessRecipes@4c1d2a13 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 216 minecraft:light_gray_carpet net.minecraft.item.crafting.ShapedRecipes@3d1b91d1 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 217 minecraft:light_gray_bed_from_white_bed net.minecraft.item.crafting.ShapelessRecipes@659f5f32 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 218 minecraft:light_gray_bed net.minecraft.item.crafting.ShapedRecipes@34b69a14 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 219 minecraft:light_gray_banner net.minecraft.item.crafting.ShapedRecipes@816272a | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 220 minecraft:light_blue_wool net.minecraft.item.crafting.ShapelessRecipes@497d9489 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 221 minecraft:light_blue_stained_hardened_clay net.minecraft.item.crafting.ShapedRecipes@4fe0aa21 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 222 minecraft:light_blue_stained_glass_pane net.minecraft.item.crafting.ShapedRecipes@72933ccb | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 223 minecraft:light_blue_stained_glass net.minecraft.item.crafting.ShapedRecipes@1a120e41 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 224 minecraft:light_blue_dye_from_lapis_bonemeal net.minecraft.item.crafting.ShapelessRecipes@7d9587b3 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 225 minecraft:light_blue_dye_from_blue_orchid net.minecraft.item.crafting.ShapelessRecipes@5411a529 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 226 minecraft:light_blue_concrete_powder net.minecraft.item.crafting.ShapelessRecipes@68769265 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 227 minecraft:light_blue_carpet net.minecraft.item.crafting.ShapedRecipes@34788780 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 228 minecraft:light_blue_bed_from_white_bed net.minecraft.item.crafting.ShapelessRecipes@73602e88 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 229 minecraft:light_blue_bed net.minecraft.item.crafting.ShapedRecipes@6a53cddc | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 230 minecraft:light_blue_banner net.minecraft.item.crafting.ShapedRecipes@276511ca | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 231 minecraft:lever net.minecraft.item.crafting.ShapedRecipes@424c8ebe | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 232 minecraft:leather_leggings net.minecraft.item.crafting.ShapedRecipes@77e8492f | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 233 minecraft:leather_helmet net.minecraft.item.crafting.ShapedRecipes@13190355 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 234 minecraft:leather_chestplate net.minecraft.item.crafting.ShapedRecipes@6b8cfbeb | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 235 minecraft:leather_boots net.minecraft.item.crafting.ShapedRecipes@5ffae42f | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 236 minecraft:leather net.minecraft.item.crafting.ShapedRecipes@6d9069ab | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 237 minecraft:lead net.minecraft.item.crafting.ShapedRecipes@15cba6dc | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 238 minecraft:lapis_lazuli net.minecraft.item.crafting.ShapedRecipes@31e08c61 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 239 minecraft:lapis_block net.minecraft.item.crafting.ShapedRecipes@48446968 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 240 minecraft:ladder net.minecraft.item.crafting.ShapedRecipes@5f83b506 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 241 minecraft:jungle_wooden_slab net.minecraft.item.crafting.ShapedRecipes@59df8444 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 242 minecraft:jungle_stairs net.minecraft.item.crafting.ShapedRecipes@6bed8d98 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 243 minecraft:jungle_planks net.minecraft.item.crafting.ShapedRecipes@3ddec942 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 244 minecraft:jungle_fence_gate net.minecraft.item.crafting.ShapedRecipes@9760f17 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 245 minecraft:jungle_fence net.minecraft.item.crafting.ShapedRecipes@75be6796 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 246 minecraft:jungle_door net.minecraft.item.crafting.ShapedRecipes@6121b045 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 247 minecraft:jungle_boat net.minecraft.item.crafting.ShapedRecipes@fabe3f8 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 248 minecraft:jukebox net.minecraft.item.crafting.ShapedRecipes@4c14ed24 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 249 minecraft:item_frame net.minecraft.item.crafting.ShapedRecipes@7900d917 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 250 minecraft:iron_trapdoor net.minecraft.item.crafting.ShapedRecipes@5aeb2c8a | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 251 minecraft:iron_sword net.minecraft.item.crafting.ShapedRecipes@1bc6a43c | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 252 minecraft:iron_shovel net.minecraft.item.crafting.ShapedRecipes@37905236 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 253 minecraft:iron_pickaxe net.minecraft.item.crafting.ShapedRecipes@f341e3c | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 254 minecraft:iron_nugget net.minecraft.item.crafting.ShapedRecipes@4170ee0f | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 255 minecraft:iron_leggings net.minecraft.item.crafting.ShapedRecipes@6e245068 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 256 minecraft:iron_ingot_from_nuggets net.minecraft.item.crafting.ShapedRecipes@6999dca2 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 257 minecraft:iron_ingot_from_block net.minecraft.item.crafting.ShapedRecipes@363b7709 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 258 minecraft:iron_hoe net.minecraft.item.crafting.ShapedRecipes@6fe47be | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 259 minecraft:iron_helmet net.minecraft.item.crafting.ShapedRecipes@27131d01 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 260 minecraft:iron_door net.minecraft.item.crafting.ShapedRecipes@5fe1b8d2 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 261 minecraft:iron_chestplate net.minecraft.item.crafting.ShapedRecipes@2baf2c6 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 262 minecraft:iron_boots net.minecraft.item.crafting.ShapedRecipes@7a337217 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 263 minecraft:iron_block net.minecraft.item.crafting.ShapedRecipes@42f15e87 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 264 minecraft:iron_bars net.minecraft.item.crafting.ShapedRecipes@581661d6 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 265 minecraft:iron_axe net.minecraft.item.crafting.ShapedRecipes@6d1a4522 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 266 minecraft:hopper_minecart net.minecraft.item.crafting.ShapedRecipes@6717f504 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 267 minecraft:hopper net.minecraft.item.crafting.ShapedRecipes@3b0b20a8 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 268 minecraft:heavy_weighted_pressure_plate net.minecraft.item.crafting.ShapedRecipes@8b814b | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 269 minecraft:hay_block net.minecraft.item.crafting.ShapedRecipes@6e44825e | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 270 minecraft:green_wool net.minecraft.item.crafting.ShapelessRecipes@1476e447 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 271 minecraft:green_stained_hardened_clay net.minecraft.item.crafting.ShapedRecipes@4057babc | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 272 minecraft:green_stained_glass_pane net.minecraft.item.crafting.ShapedRecipes@451e8bd0 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 273 minecraft:green_stained_glass net.minecraft.item.crafting.ShapedRecipes@6efa2e06 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 274 minecraft:green_concrete_powder net.minecraft.item.crafting.ShapelessRecipes@561f982f | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 275 minecraft:green_carpet net.minecraft.item.crafting.ShapedRecipes@7f69a16b | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 276 minecraft:green_bed_from_white_bed net.minecraft.item.crafting.ShapelessRecipes@339b9869 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 277 minecraft:green_bed net.minecraft.item.crafting.ShapedRecipes@3d707885 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 278 minecraft:green_banner net.minecraft.item.crafting.ShapedRecipes@4dd11699 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 279 minecraft:gray_wool net.minecraft.item.crafting.ShapelessRecipes@2eb95662 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 280 minecraft:gray_stained_hardened_clay net.minecraft.item.crafting.ShapedRecipes@1e5e0e75 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 281 minecraft:gray_stained_glass_pane net.minecraft.item.crafting.ShapedRecipes@282c3aa0 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 282 minecraft:gray_stained_glass net.minecraft.item.crafting.ShapedRecipes@74a121fe | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 283 minecraft:gray_dye net.minecraft.item.crafting.ShapelessRecipes@2e50ca51 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 284 minecraft:gray_concrete_powder net.minecraft.item.crafting.ShapelessRecipes@11f8d64 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 285 minecraft:gray_carpet net.minecraft.item.crafting.ShapedRecipes@3597174b | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 286 minecraft:gray_bed_from_white_bed net.minecraft.item.crafting.ShapelessRecipes@41a372c1 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 287 minecraft:gray_bed net.minecraft.item.crafting.ShapedRecipes@d5d9d92 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 288 minecraft:gray_banner net.minecraft.item.crafting.ShapedRecipes@623e578b | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 289 minecraft:granite net.minecraft.item.crafting.ShapelessRecipes@1c93f349 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 290 minecraft:golden_sword net.minecraft.item.crafting.ShapedRecipes@708ddfd3 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 291 minecraft:golden_shovel net.minecraft.item.crafting.ShapedRecipes@f9b97dc | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 292 minecraft:golden_rail net.minecraft.item.crafting.ShapedRecipes@3f46fb53 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 293 minecraft:golden_pickaxe net.minecraft.item.crafting.ShapedRecipes@6bd21eb7 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 294 minecraft:golden_leggings net.minecraft.item.crafting.ShapedRecipes@564b221e | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 295 minecraft:golden_hoe net.minecraft.item.crafting.ShapedRecipes@26350832 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 296 minecraft:golden_helmet net.minecraft.item.crafting.ShapedRecipes@58179860 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 297 minecraft:golden_chestplate net.minecraft.item.crafting.ShapedRecipes@13eb8ca | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 298 minecraft:golden_carrot net.minecraft.item.crafting.ShapedRecipes@62a07c01 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 299 minecraft:golden_boots net.minecraft.item.crafting.ShapedRecipes@704205ef | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 300 minecraft:golden_axe net.minecraft.item.crafting.ShapedRecipes@6587c92f | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 301 minecraft:golden_apple net.minecraft.item.crafting.ShapedRecipes@18a8a40e | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 302 minecraft:gold_nugget net.minecraft.item.crafting.ShapedRecipes@7d91e9c9 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 303 minecraft:gold_ingot_from_nuggets net.minecraft.item.crafting.ShapedRecipes@2fbbdca | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 304 minecraft:gold_ingot_from_block net.minecraft.item.crafting.ShapedRecipes@61bbe16d | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 305 minecraft:gold_block net.minecraft.item.crafting.ShapedRecipes@577e2b91 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 306 minecraft:glowstone net.minecraft.item.crafting.ShapedRecipes@653e79fc | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 307 minecraft:glass_pane net.minecraft.item.crafting.ShapedRecipes@6b886e86 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 308 minecraft:glass_bottle net.minecraft.item.crafting.ShapedRecipes@6b1381fc | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 309 minecraft:furnace_minecart net.minecraft.item.crafting.ShapedRecipes@5973d3ec | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 310 minecraft:furnace net.minecraft.item.crafting.ShapedRecipes@10164e94 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 311 minecraft:flower_pot net.minecraft.item.crafting.ShapedRecipes@2c70da80 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 312 minecraft:flint_and_steel net.minecraft.item.crafting.ShapelessRecipes@340fd670 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 313 minecraft:fishing_rod net.minecraft.item.crafting.ShapedRecipes@52ebacbf | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 314 minecraft:fire_charge net.minecraft.item.crafting.ShapelessRecipes@32b273c1 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 315 minecraft:fermented_spider_eye net.minecraft.item.crafting.ShapelessRecipes@5b810b54 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 316 minecraft:fence_gate net.minecraft.item.crafting.ShapedRecipes@127c5f20 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 317 minecraft:fence net.minecraft.item.crafting.ShapedRecipes@4e885b9 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 318 minecraft:ender_eye net.minecraft.item.crafting.ShapelessRecipes@6ae247b7 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 319 minecraft:ender_chest net.minecraft.item.crafting.ShapedRecipes@7c4663ec | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 320 minecraft:end_rod net.minecraft.item.crafting.ShapedRecipes@3237522b | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 321 minecraft:end_crystal net.minecraft.item.crafting.ShapedRecipes@1f94e1 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 322 minecraft:end_bricks net.minecraft.item.crafting.ShapedRecipes@3566d527 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 323 minecraft:enchanting_table net.minecraft.item.crafting.ShapedRecipes@37846cc2 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 324 minecraft:emerald_block net.minecraft.item.crafting.ShapedRecipes@4833bb83 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 325 minecraft:emerald net.minecraft.item.crafting.ShapedRecipes@2dba6013 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 326 minecraft:dropper net.minecraft.item.crafting.ShapedRecipes@3177190a | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 327 minecraft:dispenser net.minecraft.item.crafting.ShapedRecipes@71fd082 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 328 minecraft:diorite net.minecraft.item.crafting.ShapedRecipes@2960ae22 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 329 minecraft:diamond_sword net.minecraft.item.crafting.ShapedRecipes@18ab86a2 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 330 minecraft:diamond_shovel net.minecraft.item.crafting.ShapedRecipes@2bfe2327 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 331 minecraft:diamond_pickaxe net.minecraft.item.crafting.ShapedRecipes@342615e2 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 332 minecraft:diamond_leggings net.minecraft.item.crafting.ShapedRecipes@43f88150 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 333 minecraft:diamond_hoe net.minecraft.item.crafting.ShapedRecipes@133e7789 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 334 minecraft:diamond_helmet net.minecraft.item.crafting.ShapedRecipes@2a8e93db | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 335 minecraft:diamond_chestplate net.minecraft.item.crafting.ShapedRecipes@49d5db99 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 336 minecraft:diamond_boots net.minecraft.item.crafting.ShapedRecipes@6dad684f | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 337 minecraft:diamond_block net.minecraft.item.crafting.ShapedRecipes@24c7563b | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 338 minecraft:diamond_axe net.minecraft.item.crafting.ShapedRecipes@21440e36 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 339 minecraft:diamond net.minecraft.item.crafting.ShapedRecipes@518e9141 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 340 minecraft:detector_rail net.minecraft.item.crafting.ShapedRecipes@70b9a553 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 341 minecraft:daylight_detector net.minecraft.item.crafting.ShapedRecipes@78ded8c9 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 342 minecraft:dark_prismarine net.minecraft.item.crafting.ShapedRecipes@44c141ce | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 343 minecraft:dark_oak_wooden_slab net.minecraft.item.crafting.ShapedRecipes@13668c8b | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 344 minecraft:dark_oak_stairs net.minecraft.item.crafting.ShapedRecipes@605a10fd | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 345 minecraft:dark_oak_planks net.minecraft.item.crafting.ShapedRecipes@3c320c8b | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 346 minecraft:dark_oak_fence_gate net.minecraft.item.crafting.ShapedRecipes@2d7e6c8c | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 347 minecraft:dark_oak_fence net.minecraft.item.crafting.ShapedRecipes@3808bdfc | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 348 minecraft:dark_oak_door net.minecraft.item.crafting.ShapedRecipes@5ceeab0c | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 349 minecraft:dark_oak_boat net.minecraft.item.crafting.ShapedRecipes@36cd58e7 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 350 minecraft:cyan_wool net.minecraft.item.crafting.ShapelessRecipes@e471cef | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 351 minecraft:cyan_stained_hardened_clay net.minecraft.item.crafting.ShapedRecipes@329b4814 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 352 minecraft:cyan_stained_glass_pane net.minecraft.item.crafting.ShapedRecipes@4e31229f | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 353 minecraft:cyan_stained_glass net.minecraft.item.crafting.ShapedRecipes@60a6564c | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 354 minecraft:cyan_dye net.minecraft.item.crafting.ShapelessRecipes@30f39d9d | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 355 minecraft:cyan_concrete_powder net.minecraft.item.crafting.ShapelessRecipes@580694ce | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 356 minecraft:cyan_carpet net.minecraft.item.crafting.ShapedRecipes@5d5ad1e2 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 357 minecraft:cyan_bed_from_white_bed net.minecraft.item.crafting.ShapelessRecipes@41ebae0e | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 358 minecraft:cyan_bed net.minecraft.item.crafting.ShapedRecipes@4bb05a4e | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 359 minecraft:cyan_banner net.minecraft.item.crafting.ShapedRecipes@1d413e98 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 360 minecraft:crafting_table net.minecraft.item.crafting.ShapedRecipes@74af4b0 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 361 minecraft:cookie net.minecraft.item.crafting.ShapedRecipes@5a77e0e4 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 362 minecraft:compass net.minecraft.item.crafting.ShapedRecipes@4a544672 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 363 minecraft:comparator net.minecraft.item.crafting.ShapedRecipes@47bcaf67 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 364 minecraft:cobblestone_wall net.minecraft.item.crafting.ShapedRecipes@2796716d | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 365 minecraft:cobblestone_slab net.minecraft.item.crafting.ShapedRecipes@135a8812 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 366 minecraft:coarse_dirt net.minecraft.item.crafting.ShapedRecipes@3479b4cd | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 367 minecraft:coal_block net.minecraft.item.crafting.ShapedRecipes@6208f81c | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 368 minecraft:coal net.minecraft.item.crafting.ShapedRecipes@74be992a | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 369 minecraft:clock net.minecraft.item.crafting.ShapedRecipes@cf9223f | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 370 minecraft:clay net.minecraft.item.crafting.ShapedRecipes@2a03b87 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 371 minecraft:chiseled_stonebrick net.minecraft.item.crafting.ShapedRecipes@6ad703cd | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 372 minecraft:chiseled_sandstone net.minecraft.item.crafting.ShapedRecipes@54cb2cee | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 373 minecraft:chiseled_red_sandstone net.minecraft.item.crafting.ShapedRecipes@7c1f435a | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 374 minecraft:chiseled_quartz_block net.minecraft.item.crafting.ShapedRecipes@238fcafa | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 375 minecraft:chest_minecart net.minecraft.item.crafting.ShapedRecipes@30f929ff | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 376 minecraft:chest net.minecraft.item.crafting.ShapedRecipes@431bf770 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 377 minecraft:cauldron net.minecraft.item.crafting.ShapedRecipes@48fbb1bc | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 378 minecraft:carrot_on_a_stick net.minecraft.item.crafting.ShapedRecipes@2ae25358 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 379 minecraft:cake net.minecraft.item.crafting.ShapedRecipes@45a9f3d4 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 380 minecraft:bucket net.minecraft.item.crafting.ShapedRecipes@7326f323 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 381 minecraft:brown_wool net.minecraft.item.crafting.ShapelessRecipes@aba3735 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 382 minecraft:brown_stained_hardened_clay net.minecraft.item.crafting.ShapedRecipes@1817f7f0 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 383 minecraft:brown_stained_glass_pane net.minecraft.item.crafting.ShapedRecipes@18791f7b | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 384 minecraft:brown_stained_glass net.minecraft.item.crafting.ShapedRecipes@5f2312f3 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 385 minecraft:brown_concrete_powder net.minecraft.item.crafting.ShapelessRecipes@3dd4f91d | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 386 minecraft:brown_carpet net.minecraft.item.crafting.ShapedRecipes@b6a5cf5 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 387 minecraft:brown_bed_from_white_bed net.minecraft.item.crafting.ShapelessRecipes@4263fbe8 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 388 minecraft:brown_bed net.minecraft.item.crafting.ShapedRecipes@77095c8c | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 389 minecraft:brown_banner net.minecraft.item.crafting.ShapedRecipes@271bbb75 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 390 minecraft:brick_stairs net.minecraft.item.crafting.ShapedRecipes@53e7cc08 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 391 minecraft:brick_slab net.minecraft.item.crafting.ShapedRecipes@5dbd7f00 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 392 minecraft:brick_block net.minecraft.item.crafting.ShapedRecipes@3c832820 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 393 minecraft:brewing_stand net.minecraft.item.crafting.ShapedRecipes@7f3616d2 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 394 minecraft:bread net.minecraft.item.crafting.ShapedRecipes@2bf3ec4a | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 395 minecraft:bowl net.minecraft.item.crafting.ShapedRecipes@76bfecef | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 396 minecraft:bow net.minecraft.item.crafting.ShapedRecipes@21584b99 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 397 minecraft:bookshelf net.minecraft.item.crafting.ShapedRecipes@7072606 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 398 minecraft:book net.minecraft.item.crafting.ShapelessRecipes@173a86ad | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 399 minecraft:bone_meal_from_bone net.minecraft.item.crafting.ShapelessRecipes@6a5ed5f9 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 400 minecraft:bone_meal_from_block net.minecraft.item.crafting.ShapelessRecipes@4e44b713 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 401 minecraft:bone_block net.minecraft.item.crafting.ShapedRecipes@2ea82cef | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 402 minecraft:boat net.minecraft.item.crafting.ShapedRecipes@6fcf3192 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 403 minecraft:blue_wool net.minecraft.item.crafting.ShapelessRecipes@252da8f | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 404 minecraft:blue_stained_hardened_clay net.minecraft.item.crafting.ShapedRecipes@143abb21 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 405 minecraft:blue_stained_glass_pane net.minecraft.item.crafting.ShapedRecipes@1c0455c4 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 406 minecraft:blue_stained_glass net.minecraft.item.crafting.ShapedRecipes@6bd5cb99 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 407 minecraft:blue_concrete_powder net.minecraft.item.crafting.ShapelessRecipes@67f25c | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 408 minecraft:blue_carpet net.minecraft.item.crafting.ShapedRecipes@2fad48b7 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 409 minecraft:blue_bed_from_white_bed net.minecraft.item.crafting.ShapelessRecipes@491d36ef | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 410 minecraft:blue_bed net.minecraft.item.crafting.ShapedRecipes@2d4e6bb2 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 411 minecraft:blue_banner net.minecraft.item.crafting.ShapedRecipes@71586f | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 412 minecraft:blaze_powder net.minecraft.item.crafting.ShapelessRecipes@2eb6a77f | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 413 minecraft:black_wool net.minecraft.item.crafting.ShapelessRecipes@3d8d926f | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 414 minecraft:black_stained_hardened_clay net.minecraft.item.crafting.ShapedRecipes@2ba0b7cf | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 415 minecraft:black_stained_glass_pane net.minecraft.item.crafting.ShapedRecipes@23389e2b | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 416 minecraft:black_stained_glass net.minecraft.item.crafting.ShapedRecipes@65899694 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 417 minecraft:black_concrete_powder net.minecraft.item.crafting.ShapelessRecipes@2bdc2c26 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 418 minecraft:black_carpet net.minecraft.item.crafting.ShapedRecipes@5936e4ba | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 419 minecraft:black_bed_from_white_bed net.minecraft.item.crafting.ShapelessRecipes@435b944c | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 420 minecraft:black_bed net.minecraft.item.crafting.ShapedRecipes@509d0d21 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 421 minecraft:black_banner net.minecraft.item.crafting.ShapedRecipes@79378802 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 422 minecraft:birch_wooden_slab net.minecraft.item.crafting.ShapedRecipes@6245303e | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 423 minecraft:birch_stairs net.minecraft.item.crafting.ShapedRecipes@799bb4ed | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 424 minecraft:birch_planks net.minecraft.item.crafting.ShapedRecipes@4e64e44c | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 425 minecraft:birch_fence_gate net.minecraft.item.crafting.ShapedRecipes@7b0f5814 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 426 minecraft:birch_fence net.minecraft.item.crafting.ShapedRecipes@6f34d178 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 427 minecraft:birch_door net.minecraft.item.crafting.ShapedRecipes@4c666872 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 428 minecraft:birch_boat net.minecraft.item.crafting.ShapedRecipes@e6d9c25 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 429 minecraft:beetroot_soup net.minecraft.item.crafting.ShapedRecipes@4c33bf70 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 430 minecraft:beacon net.minecraft.item.crafting.ShapedRecipes@334d96af | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 431 minecraft:arrow net.minecraft.item.crafting.ShapedRecipes@200ef05b | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 432 minecraft:armor_stand net.minecraft.item.crafting.ShapedRecipes@8e654f7 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 433 minecraft:anvil net.minecraft.item.crafting.ShapedRecipes@64e6f678 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 434 minecraft:andesite net.minecraft.item.crafting.ShapelessRecipes@3ef8de39 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 435 minecraft:activator_rail net.minecraft.item.crafting.ShapedRecipes@180466a9 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 436 minecraft:acacia_wooden_slab net.minecraft.item.crafting.ShapedRecipes@4e22fdc0 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 437 minecraft:acacia_stairs net.minecraft.item.crafting.ShapedRecipes@28516b2d | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 438 minecraft:acacia_planks net.minecraft.item.crafting.ShapedRecipes@50ade311 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 439 minecraft:acacia_fence_gate net.minecraft.item.crafting.ShapedRecipes@51ce8293 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 440 minecraft:acacia_fence net.minecraft.item.crafting.ShapedRecipes@4e1349cf | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 441 minecraft:acacia_door net.minecraft.item.crafting.ShapedRecipes@1405dd10 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 442 minecraft:acacia_boat net.minecraft.item.crafting.ShapedRecipes@2f81d7f | |
[00:24:07] [Server thread/TRACE] [FML]: Registry Name : minecraft:villagerprofessions | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 0 minecraft:farmer net.minecraftforge.fml.common.registry.VillagerRegistry$VillagerProfession@628fa8ea | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 1 minecraft:librarian net.minecraftforge.fml.common.registry.VillagerRegistry$VillagerProfession@6f1b0ead | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 2 minecraft:priest net.minecraftforge.fml.common.registry.VillagerRegistry$VillagerProfession@4487dce | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 3 minecraft:smith net.minecraftforge.fml.common.registry.VillagerRegistry$VillagerProfession@3aafa1c1 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 4 minecraft:butcher net.minecraftforge.fml.common.registry.VillagerRegistry$VillagerProfession@192f807 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 5 minecraft:nitwit net.minecraftforge.fml.common.registry.VillagerRegistry$VillagerProfession@36cbe0fe | |
[00:24:07] [Server thread/TRACE] [FML]: Registry Name : minecraft:dataserializers | |
[00:24:07] [Server thread/TRACE] [FML]: Registry Name : minecraft:entities | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 1 minecraft:item net.minecraftforge.fml.common.registry.EntityEntry@21298c3a | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 2 minecraft:xp_orb net.minecraftforge.fml.common.registry.EntityEntry@369958b0 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 3 minecraft:area_effect_cloud net.minecraftforge.fml.common.registry.EntityEntry@41f274d | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 4 minecraft:elder_guardian net.minecraftforge.fml.common.registry.EntityEntry@2df6d461 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 5 minecraft:wither_skeleton net.minecraftforge.fml.common.registry.EntityEntry@70ca533a | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 6 minecraft:stray net.minecraftforge.fml.common.registry.EntityEntry@51f91d19 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 7 minecraft:egg net.minecraftforge.fml.common.registry.EntityEntry@5fd0235c | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 8 minecraft:leash_knot net.minecraftforge.fml.common.registry.EntityEntry@56929ce | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 9 minecraft:painting net.minecraftforge.fml.common.registry.EntityEntry@25a2a71d | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 10 minecraft:arrow net.minecraftforge.fml.common.registry.EntityEntry@6bca3b27 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 11 minecraft:snowball net.minecraftforge.fml.common.registry.EntityEntry@15974f4e | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 12 minecraft:fireball net.minecraftforge.fml.common.registry.EntityEntry@2fba15c5 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 13 minecraft:small_fireball net.minecraftforge.fml.common.registry.EntityEntry@14738629 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 14 minecraft:ender_pearl net.minecraftforge.fml.common.registry.EntityEntry@22599048 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 15 minecraft:eye_of_ender_signal net.minecraftforge.fml.common.registry.EntityEntry@38007ead | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 16 minecraft:potion net.minecraftforge.fml.common.registry.EntityEntry@33544cc5 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 17 minecraft:xp_bottle net.minecraftforge.fml.common.registry.EntityEntry@1bce19db | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 18 minecraft:item_frame net.minecraftforge.fml.common.registry.EntityEntry@5d3c0735 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 19 minecraft:wither_skull net.minecraftforge.fml.common.registry.EntityEntry@2408ca4c | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 20 minecraft:tnt net.minecraftforge.fml.common.registry.EntityEntry@5f745970 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 21 minecraft:falling_block net.minecraftforge.fml.common.registry.EntityEntry@35f59dfe | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 22 minecraft:fireworks_rocket net.minecraftforge.fml.common.registry.EntityEntry@1633962a | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 23 minecraft:husk net.minecraftforge.fml.common.registry.EntityEntry@41cec7b0 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 24 minecraft:spectral_arrow net.minecraftforge.fml.common.registry.EntityEntry@5523f107 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 25 minecraft:shulker_bullet net.minecraftforge.fml.common.registry.EntityEntry@6ca6cc1c | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 26 minecraft:dragon_fireball net.minecraftforge.fml.common.registry.EntityEntry@5f9cb96f | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 27 minecraft:zombie_villager net.minecraftforge.fml.common.registry.EntityEntry@6fa98e98 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 28 minecraft:skeleton_horse net.minecraftforge.fml.common.registry.EntityEntry@1d2b49b2 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 29 minecraft:zombie_horse net.minecraftforge.fml.common.registry.EntityEntry@7197b96c | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 30 minecraft:armor_stand net.minecraftforge.fml.common.registry.EntityEntry@47858d7c | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 31 minecraft:donkey net.minecraftforge.fml.common.registry.EntityEntry@7c2d4398 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 32 minecraft:mule net.minecraftforge.fml.common.registry.EntityEntry@7280785f | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 33 minecraft:evocation_fangs net.minecraftforge.fml.common.registry.EntityEntry@5565d718 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 34 minecraft:evocation_illager net.minecraftforge.fml.common.registry.EntityEntry@72161dbb | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 35 minecraft:vex net.minecraftforge.fml.common.registry.EntityEntry@753b6846 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 36 minecraft:vindication_illager net.minecraftforge.fml.common.registry.EntityEntry@168f447d | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 37 minecraft:illusion_illager net.minecraftforge.fml.common.registry.EntityEntry@33c590 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 40 minecraft:commandblock_minecart net.minecraftforge.fml.common.registry.EntityEntry@1d0695da | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 41 minecraft:boat net.minecraftforge.fml.common.registry.EntityEntry@5ceb6796 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 42 minecraft:minecart net.minecraftforge.fml.common.registry.EntityEntry@3208e15 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 43 minecraft:chest_minecart net.minecraftforge.fml.common.registry.EntityEntry@6d86d1ad | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 44 minecraft:furnace_minecart net.minecraftforge.fml.common.registry.EntityEntry@51b1732d | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 45 minecraft:tnt_minecart net.minecraftforge.fml.common.registry.EntityEntry@3e668743 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 46 minecraft:hopper_minecart net.minecraftforge.fml.common.registry.EntityEntry@414d5660 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 47 minecraft:spawner_minecart net.minecraftforge.fml.common.registry.EntityEntry@771deee6 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 50 minecraft:creeper net.minecraftforge.fml.common.registry.EntityEntry@4ac64dc2 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 51 minecraft:skeleton net.minecraftforge.fml.common.registry.EntityEntry@66f15ce5 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 52 minecraft:spider net.minecraftforge.fml.common.registry.EntityEntry@6479b4cb | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 53 minecraft:giant net.minecraftforge.fml.common.registry.EntityEntry@333cedbd | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 54 minecraft:zombie net.minecraftforge.fml.common.registry.EntityEntry@4225b4e2 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 55 minecraft:slime net.minecraftforge.fml.common.registry.EntityEntry@4c3c1963 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 56 minecraft:ghast net.minecraftforge.fml.common.registry.EntityEntry@6942ff10 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 57 minecraft:zombie_pigman net.minecraftforge.fml.common.registry.EntityEntry@14c06f50 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 58 minecraft:enderman net.minecraftforge.fml.common.registry.EntityEntry@637bf67c | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 59 minecraft:cave_spider net.minecraftforge.fml.common.registry.EntityEntry@5ce59833 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 60 minecraft:silverfish net.minecraftforge.fml.common.registry.EntityEntry@3bc82aa3 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 61 minecraft:blaze net.minecraftforge.fml.common.registry.EntityEntry@6df8131c | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 62 minecraft:magma_cube net.minecraftforge.fml.common.registry.EntityEntry@35825d43 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 63 minecraft:ender_dragon net.minecraftforge.fml.common.registry.EntityEntry@2181144e | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 64 minecraft:wither net.minecraftforge.fml.common.registry.EntityEntry@2d3bb293 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 65 minecraft:bat net.minecraftforge.fml.common.registry.EntityEntry@3a892b9f | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 66 minecraft:witch net.minecraftforge.fml.common.registry.EntityEntry@f6921b7 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 67 minecraft:endermite net.minecraftforge.fml.common.registry.EntityEntry@4e8e0052 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 68 minecraft:guardian net.minecraftforge.fml.common.registry.EntityEntry@1c8e1233 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 69 minecraft:shulker net.minecraftforge.fml.common.registry.EntityEntry@2b55ac77 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 90 minecraft:pig net.minecraftforge.fml.common.registry.EntityEntry@cc41d2d | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 91 minecraft:sheep net.minecraftforge.fml.common.registry.EntityEntry@6b174aa3 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 92 minecraft:cow net.minecraftforge.fml.common.registry.EntityEntry@78ba0a57 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 93 minecraft:chicken net.minecraftforge.fml.common.registry.EntityEntry@360b6ea1 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 94 minecraft:squid net.minecraftforge.fml.common.registry.EntityEntry@5d6d6533 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 95 minecraft:wolf net.minecraftforge.fml.common.registry.EntityEntry@2296926d | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 96 minecraft:mooshroom net.minecraftforge.fml.common.registry.EntityEntry@7ae3591b | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 97 minecraft:snowman net.minecraftforge.fml.common.registry.EntityEntry@234421ca | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 98 minecraft:ocelot net.minecraftforge.fml.common.registry.EntityEntry@30ee413a | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 99 minecraft:villager_golem net.minecraftforge.fml.common.registry.EntityEntry@4fda9fde | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 100 minecraft:horse net.minecraftforge.fml.common.registry.EntityEntry@4ed7fb78 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 101 minecraft:rabbit net.minecraftforge.fml.common.registry.EntityEntry@68893394 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 102 minecraft:polar_bear net.minecraftforge.fml.common.registry.EntityEntry@7227e3f1 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 103 minecraft:llama net.minecraftforge.fml.common.registry.EntityEntry@3d587c73 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 104 minecraft:llama_spit net.minecraftforge.fml.common.registry.EntityEntry@776eb512 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 105 minecraft:parrot net.minecraftforge.fml.common.registry.EntityEntry@2e6ca6b5 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 120 minecraft:villager net.minecraftforge.fml.common.registry.EntityEntry@66e6e5e9 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 200 minecraft:ender_crystal net.minecraftforge.fml.common.registry.EntityEntry@654ab198 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry Name : minecraft:blocks | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 0 minecraft:air Block{minecraft:air} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 1 minecraft:stone Block{minecraft:stone} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 2 minecraft:grass Block{minecraft:grass} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 3 minecraft:dirt Block{minecraft:dirt} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 4 minecraft:cobblestone Block{minecraft:cobblestone} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 5 minecraft:planks Block{minecraft:planks} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 6 minecraft:sapling Block{minecraft:sapling} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 7 minecraft:bedrock Block{minecraft:bedrock} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 8 minecraft:flowing_water Block{minecraft:flowing_water} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 9 minecraft:water Block{minecraft:water} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 10 minecraft:flowing_lava Block{minecraft:flowing_lava} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 11 minecraft:lava Block{minecraft:lava} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 12 minecraft:sand Block{minecraft:sand} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 13 minecraft:gravel Block{minecraft:gravel} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 14 minecraft:gold_ore Block{minecraft:gold_ore} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 15 minecraft:iron_ore Block{minecraft:iron_ore} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 16 minecraft:coal_ore Block{minecraft:coal_ore} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 17 minecraft:log Block{minecraft:log} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 18 minecraft:leaves Block{minecraft:leaves} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 19 minecraft:sponge Block{minecraft:sponge} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 20 minecraft:glass Block{minecraft:glass} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 21 minecraft:lapis_ore Block{minecraft:lapis_ore} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 22 minecraft:lapis_block Block{minecraft:lapis_block} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 23 minecraft:dispenser Block{minecraft:dispenser} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 24 minecraft:sandstone Block{minecraft:sandstone} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 25 minecraft:noteblock Block{minecraft:noteblock} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 26 minecraft:bed Block{minecraft:bed} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 27 minecraft:golden_rail Block{minecraft:golden_rail} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 28 minecraft:detector_rail Block{minecraft:detector_rail} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 29 minecraft:sticky_piston Block{minecraft:sticky_piston} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 30 minecraft:web Block{minecraft:web} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 31 minecraft:tallgrass Block{minecraft:tallgrass} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 32 minecraft:deadbush Block{minecraft:deadbush} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 33 minecraft:piston Block{minecraft:piston} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 34 minecraft:piston_head Block{minecraft:piston_head} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 35 minecraft:wool Block{minecraft:wool} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 36 minecraft:piston_extension Block{minecraft:piston_extension} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 37 minecraft:yellow_flower Block{minecraft:yellow_flower} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 38 minecraft:red_flower Block{minecraft:red_flower} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 39 minecraft:brown_mushroom Block{minecraft:brown_mushroom} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 40 minecraft:red_mushroom Block{minecraft:red_mushroom} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 41 minecraft:gold_block Block{minecraft:gold_block} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 42 minecraft:iron_block Block{minecraft:iron_block} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 43 minecraft:double_stone_slab Block{minecraft:double_stone_slab} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 44 minecraft:stone_slab Block{minecraft:stone_slab} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 45 minecraft:brick_block Block{minecraft:brick_block} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 46 minecraft:tnt Block{minecraft:tnt} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 47 minecraft:bookshelf Block{minecraft:bookshelf} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 48 minecraft:mossy_cobblestone Block{minecraft:mossy_cobblestone} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 49 minecraft:obsidian Block{minecraft:obsidian} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 50 minecraft:torch Block{minecraft:torch} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 51 minecraft:fire Block{minecraft:fire} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 52 minecraft:mob_spawner Block{minecraft:mob_spawner} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 53 minecraft:oak_stairs Block{minecraft:oak_stairs} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 54 minecraft:chest Block{minecraft:chest} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 55 minecraft:redstone_wire Block{minecraft:redstone_wire} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 56 minecraft:diamond_ore Block{minecraft:diamond_ore} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 57 minecraft:diamond_block Block{minecraft:diamond_block} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 58 minecraft:crafting_table Block{minecraft:crafting_table} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 59 minecraft:wheat Block{minecraft:wheat} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 60 minecraft:farmland Block{minecraft:farmland} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 61 minecraft:furnace Block{minecraft:furnace} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 62 minecraft:lit_furnace Block{minecraft:lit_furnace} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 63 minecraft:standing_sign Block{minecraft:standing_sign} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 64 minecraft:wooden_door Block{minecraft:wooden_door} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 65 minecraft:ladder Block{minecraft:ladder} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 66 minecraft:rail Block{minecraft:rail} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 67 minecraft:stone_stairs Block{minecraft:stone_stairs} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 68 minecraft:wall_sign Block{minecraft:wall_sign} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 69 minecraft:lever Block{minecraft:lever} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 70 minecraft:stone_pressure_plate Block{minecraft:stone_pressure_plate} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 71 minecraft:iron_door Block{minecraft:iron_door} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 72 minecraft:wooden_pressure_plate Block{minecraft:wooden_pressure_plate} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 73 minecraft:redstone_ore Block{minecraft:redstone_ore} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 74 minecraft:lit_redstone_ore Block{minecraft:lit_redstone_ore} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 75 minecraft:unlit_redstone_torch Block{minecraft:unlit_redstone_torch} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 76 minecraft:redstone_torch Block{minecraft:redstone_torch} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 77 minecraft:stone_button Block{minecraft:stone_button} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 78 minecraft:snow_layer Block{minecraft:snow_layer} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 79 minecraft:ice Block{minecraft:ice} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 80 minecraft:snow Block{minecraft:snow} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 81 minecraft:cactus Block{minecraft:cactus} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 82 minecraft:clay Block{minecraft:clay} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 83 minecraft:reeds Block{minecraft:reeds} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 84 minecraft:jukebox Block{minecraft:jukebox} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 85 minecraft:fence Block{minecraft:fence} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 86 minecraft:pumpkin Block{minecraft:pumpkin} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 87 minecraft:netherrack Block{minecraft:netherrack} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 88 minecraft:soul_sand Block{minecraft:soul_sand} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 89 minecraft:glowstone Block{minecraft:glowstone} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 90 minecraft:portal Block{minecraft:portal} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 91 minecraft:lit_pumpkin Block{minecraft:lit_pumpkin} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 92 minecraft:cake Block{minecraft:cake} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 93 minecraft:unpowered_repeater Block{minecraft:unpowered_repeater} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 94 minecraft:powered_repeater Block{minecraft:powered_repeater} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 95 minecraft:stained_glass Block{minecraft:stained_glass} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 96 minecraft:trapdoor Block{minecraft:trapdoor} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 97 minecraft:monster_egg Block{minecraft:monster_egg} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 98 minecraft:stonebrick Block{minecraft:stonebrick} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 99 minecraft:brown_mushroom_block Block{minecraft:brown_mushroom_block} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 100 minecraft:red_mushroom_block Block{minecraft:red_mushroom_block} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 101 minecraft:iron_bars Block{minecraft:iron_bars} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 102 minecraft:glass_pane Block{minecraft:glass_pane} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 103 minecraft:melon_block Block{minecraft:melon_block} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 104 minecraft:pumpkin_stem Block{minecraft:pumpkin_stem} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 105 minecraft:melon_stem Block{minecraft:melon_stem} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 106 minecraft:vine Block{minecraft:vine} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 107 minecraft:fence_gate Block{minecraft:fence_gate} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 108 minecraft:brick_stairs Block{minecraft:brick_stairs} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 109 minecraft:stone_brick_stairs Block{minecraft:stone_brick_stairs} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 110 minecraft:mycelium Block{minecraft:mycelium} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 111 minecraft:waterlily Block{minecraft:waterlily} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 112 minecraft:nether_brick Block{minecraft:nether_brick} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 113 minecraft:nether_brick_fence Block{minecraft:nether_brick_fence} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 114 minecraft:nether_brick_stairs Block{minecraft:nether_brick_stairs} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 115 minecraft:nether_wart Block{minecraft:nether_wart} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 116 minecraft:enchanting_table Block{minecraft:enchanting_table} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 117 minecraft:brewing_stand Block{minecraft:brewing_stand} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 118 minecraft:cauldron Block{minecraft:cauldron} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 119 minecraft:end_portal Block{minecraft:end_portal} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 120 minecraft:end_portal_frame Block{minecraft:end_portal_frame} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 121 minecraft:end_stone Block{minecraft:end_stone} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 122 minecraft:dragon_egg Block{minecraft:dragon_egg} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 123 minecraft:redstone_lamp Block{minecraft:redstone_lamp} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 124 minecraft:lit_redstone_lamp Block{minecraft:lit_redstone_lamp} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 125 minecraft:double_wooden_slab Block{minecraft:double_wooden_slab} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 126 minecraft:wooden_slab Block{minecraft:wooden_slab} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 127 minecraft:cocoa Block{minecraft:cocoa} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 128 minecraft:sandstone_stairs Block{minecraft:sandstone_stairs} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 129 minecraft:emerald_ore Block{minecraft:emerald_ore} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 130 minecraft:ender_chest Block{minecraft:ender_chest} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 131 minecraft:tripwire_hook Block{minecraft:tripwire_hook} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 132 minecraft:tripwire Block{minecraft:tripwire} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 133 minecraft:emerald_block Block{minecraft:emerald_block} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 134 minecraft:spruce_stairs Block{minecraft:spruce_stairs} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 135 minecraft:birch_stairs Block{minecraft:birch_stairs} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 136 minecraft:jungle_stairs Block{minecraft:jungle_stairs} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 137 minecraft:command_block Block{minecraft:command_block} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 138 minecraft:beacon Block{minecraft:beacon} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 139 minecraft:cobblestone_wall Block{minecraft:cobblestone_wall} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 140 minecraft:flower_pot Block{minecraft:flower_pot} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 141 minecraft:carrots Block{minecraft:carrots} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 142 minecraft:potatoes Block{minecraft:potatoes} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 143 minecraft:wooden_button Block{minecraft:wooden_button} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 144 minecraft:skull Block{minecraft:skull} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 145 minecraft:anvil Block{minecraft:anvil} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 146 minecraft:trapped_chest Block{minecraft:trapped_chest} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 147 minecraft:light_weighted_pressure_plate Block{minecraft:light_weighted_pressure_plate} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 148 minecraft:heavy_weighted_pressure_plate Block{minecraft:heavy_weighted_pressure_plate} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 149 minecraft:unpowered_comparator Block{minecraft:unpowered_comparator} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 150 minecraft:powered_comparator Block{minecraft:powered_comparator} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 151 minecraft:daylight_detector Block{minecraft:daylight_detector} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 152 minecraft:redstone_block Block{minecraft:redstone_block} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 153 minecraft:quartz_ore Block{minecraft:quartz_ore} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 154 minecraft:hopper Block{minecraft:hopper} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 155 minecraft:quartz_block Block{minecraft:quartz_block} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 156 minecraft:quartz_stairs Block{minecraft:quartz_stairs} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 157 minecraft:activator_rail Block{minecraft:activator_rail} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 158 minecraft:dropper Block{minecraft:dropper} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 159 minecraft:stained_hardened_clay Block{minecraft:stained_hardened_clay} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 160 minecraft:stained_glass_pane Block{minecraft:stained_glass_pane} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 161 minecraft:leaves2 Block{minecraft:leaves2} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 162 minecraft:log2 Block{minecraft:log2} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 163 minecraft:acacia_stairs Block{minecraft:acacia_stairs} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 164 minecraft:dark_oak_stairs Block{minecraft:dark_oak_stairs} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 165 minecraft:slime Block{minecraft:slime} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 166 minecraft:barrier Block{minecraft:barrier} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 167 minecraft:iron_trapdoor Block{minecraft:iron_trapdoor} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 168 minecraft:prismarine Block{minecraft:prismarine} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 169 minecraft:sea_lantern Block{minecraft:sea_lantern} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 170 minecraft:hay_block Block{minecraft:hay_block} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 171 minecraft:carpet Block{minecraft:carpet} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 172 minecraft:hardened_clay Block{minecraft:hardened_clay} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 173 minecraft:coal_block Block{minecraft:coal_block} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 174 minecraft:packed_ice Block{minecraft:packed_ice} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 175 minecraft:double_plant Block{minecraft:double_plant} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 176 minecraft:standing_banner Block{minecraft:standing_banner} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 177 minecraft:wall_banner Block{minecraft:wall_banner} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 178 minecraft:daylight_detector_inverted Block{minecraft:daylight_detector_inverted} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 179 minecraft:red_sandstone Block{minecraft:red_sandstone} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 180 minecraft:red_sandstone_stairs Block{minecraft:red_sandstone_stairs} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 181 minecraft:double_stone_slab2 Block{minecraft:double_stone_slab2} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 182 minecraft:stone_slab2 Block{minecraft:stone_slab2} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 183 minecraft:spruce_fence_gate Block{minecraft:spruce_fence_gate} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 184 minecraft:birch_fence_gate Block{minecraft:birch_fence_gate} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 185 minecraft:jungle_fence_gate Block{minecraft:jungle_fence_gate} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 186 minecraft:dark_oak_fence_gate Block{minecraft:dark_oak_fence_gate} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 187 minecraft:acacia_fence_gate Block{minecraft:acacia_fence_gate} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 188 minecraft:spruce_fence Block{minecraft:spruce_fence} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 189 minecraft:birch_fence Block{minecraft:birch_fence} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 190 minecraft:jungle_fence Block{minecraft:jungle_fence} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 191 minecraft:dark_oak_fence Block{minecraft:dark_oak_fence} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 192 minecraft:acacia_fence Block{minecraft:acacia_fence} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 193 minecraft:spruce_door Block{minecraft:spruce_door} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 194 minecraft:birch_door Block{minecraft:birch_door} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 195 minecraft:jungle_door Block{minecraft:jungle_door} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 196 minecraft:acacia_door Block{minecraft:acacia_door} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 197 minecraft:dark_oak_door Block{minecraft:dark_oak_door} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 198 minecraft:end_rod Block{minecraft:end_rod} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 199 minecraft:chorus_plant Block{minecraft:chorus_plant} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 200 minecraft:chorus_flower Block{minecraft:chorus_flower} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 201 minecraft:purpur_block Block{minecraft:purpur_block} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 202 minecraft:purpur_pillar Block{minecraft:purpur_pillar} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 203 minecraft:purpur_stairs Block{minecraft:purpur_stairs} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 204 minecraft:purpur_double_slab Block{minecraft:purpur_double_slab} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 205 minecraft:purpur_slab Block{minecraft:purpur_slab} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 206 minecraft:end_bricks Block{minecraft:end_bricks} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 207 minecraft:beetroots Block{minecraft:beetroots} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 208 minecraft:grass_path Block{minecraft:grass_path} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 209 minecraft:end_gateway Block{minecraft:end_gateway} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 210 minecraft:repeating_command_block Block{minecraft:repeating_command_block} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 211 minecraft:chain_command_block Block{minecraft:chain_command_block} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 212 minecraft:frosted_ice Block{minecraft:frosted_ice} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 213 minecraft:magma Block{minecraft:magma} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 214 minecraft:nether_wart_block Block{minecraft:nether_wart_block} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 215 minecraft:red_nether_brick Block{minecraft:red_nether_brick} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 216 minecraft:bone_block Block{minecraft:bone_block} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 217 minecraft:structure_void Block{minecraft:structure_void} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 218 minecraft:observer Block{minecraft:observer} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 219 minecraft:white_shulker_box Block{minecraft:white_shulker_box} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 220 minecraft:orange_shulker_box Block{minecraft:orange_shulker_box} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 221 minecraft:magenta_shulker_box Block{minecraft:magenta_shulker_box} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 222 minecraft:light_blue_shulker_box Block{minecraft:light_blue_shulker_box} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 223 minecraft:yellow_shulker_box Block{minecraft:yellow_shulker_box} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 224 minecraft:lime_shulker_box Block{minecraft:lime_shulker_box} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 225 minecraft:pink_shulker_box Block{minecraft:pink_shulker_box} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 226 minecraft:gray_shulker_box Block{minecraft:gray_shulker_box} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 227 minecraft:silver_shulker_box Block{minecraft:silver_shulker_box} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 228 minecraft:cyan_shulker_box Block{minecraft:cyan_shulker_box} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 229 minecraft:purple_shulker_box Block{minecraft:purple_shulker_box} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 230 minecraft:blue_shulker_box Block{minecraft:blue_shulker_box} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 231 minecraft:brown_shulker_box Block{minecraft:brown_shulker_box} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 232 minecraft:green_shulker_box Block{minecraft:green_shulker_box} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 233 minecraft:red_shulker_box Block{minecraft:red_shulker_box} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 234 minecraft:black_shulker_box Block{minecraft:black_shulker_box} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 235 minecraft:white_glazed_terracotta Block{minecraft:white_glazed_terracotta} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 236 minecraft:orange_glazed_terracotta Block{minecraft:orange_glazed_terracotta} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 237 minecraft:magenta_glazed_terracotta Block{minecraft:magenta_glazed_terracotta} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 238 minecraft:light_blue_glazed_terracotta Block{minecraft:light_blue_glazed_terracotta} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 239 minecraft:yellow_glazed_terracotta Block{minecraft:yellow_glazed_terracotta} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 240 minecraft:lime_glazed_terracotta Block{minecraft:lime_glazed_terracotta} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 241 minecraft:pink_glazed_terracotta Block{minecraft:pink_glazed_terracotta} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 242 minecraft:gray_glazed_terracotta Block{minecraft:gray_glazed_terracotta} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 243 minecraft:silver_glazed_terracotta Block{minecraft:silver_glazed_terracotta} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 244 minecraft:cyan_glazed_terracotta Block{minecraft:cyan_glazed_terracotta} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 245 minecraft:purple_glazed_terracotta Block{minecraft:purple_glazed_terracotta} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 246 minecraft:blue_glazed_terracotta Block{minecraft:blue_glazed_terracotta} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 247 minecraft:brown_glazed_terracotta Block{minecraft:brown_glazed_terracotta} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 248 minecraft:green_glazed_terracotta Block{minecraft:green_glazed_terracotta} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 249 minecraft:red_glazed_terracotta Block{minecraft:red_glazed_terracotta} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 250 minecraft:black_glazed_terracotta Block{minecraft:black_glazed_terracotta} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 251 minecraft:concrete Block{minecraft:concrete} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 252 minecraft:concrete_powder Block{minecraft:concrete_powder} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 255 minecraft:structure_block Block{minecraft:structure_block} | |
[00:24:07] [Server thread/TRACE] [FML]: Registry Name : minecraft:items | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 0 minecraft:air net.minecraft.item.ItemAir@3725242e | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 1 minecraft:stone net.minecraft.item.ItemMultiTexture@34fde3a3 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 2 minecraft:grass net.minecraft.item.ItemColored@5d9639bb | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 3 minecraft:dirt net.minecraft.item.ItemMultiTexture@59d8a968 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 4 minecraft:cobblestone net.minecraft.item.ItemBlock@14cd8dfa | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 5 minecraft:planks net.minecraft.item.ItemMultiTexture@73983f07 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 6 minecraft:sapling net.minecraft.item.ItemMultiTexture@608448e7 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 7 minecraft:bedrock net.minecraft.item.ItemBlock@3bd7829b | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 12 minecraft:sand net.minecraft.item.ItemMultiTexture@6971c6b7 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 13 minecraft:gravel net.minecraft.item.ItemBlock@402d45c6 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 14 minecraft:gold_ore net.minecraft.item.ItemBlock@4b37b01e | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 15 minecraft:iron_ore net.minecraft.item.ItemBlock@f53db1a | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 16 minecraft:coal_ore net.minecraft.item.ItemBlock@6870e039 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 17 minecraft:log net.minecraft.item.ItemMultiTexture@4a1cafb2 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 18 minecraft:leaves net.minecraft.item.ItemLeaves@52811dc1 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 19 minecraft:sponge net.minecraft.item.ItemMultiTexture@35800dea | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 20 minecraft:glass net.minecraft.item.ItemBlock@3b4cce5a | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 21 minecraft:lapis_ore net.minecraft.item.ItemBlock@58178b69 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 22 minecraft:lapis_block net.minecraft.item.ItemBlock@4a723adf | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 23 minecraft:dispenser net.minecraft.item.ItemBlock@7f289126 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 24 minecraft:sandstone net.minecraft.item.ItemMultiTexture@26864891 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 25 minecraft:noteblock net.minecraft.item.ItemBlock@5946e540 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 27 minecraft:golden_rail net.minecraft.item.ItemBlock@651a399 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 28 minecraft:detector_rail net.minecraft.item.ItemBlock@79ef8115 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 29 minecraft:sticky_piston net.minecraft.item.ItemPiston@3bb186b | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 30 minecraft:web net.minecraft.item.ItemBlock@8fd3eee | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 31 minecraft:tallgrass net.minecraft.item.ItemColored@d9ff1cd | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 32 minecraft:deadbush net.minecraft.item.ItemBlock@2c64ee53 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 33 minecraft:piston net.minecraft.item.ItemPiston@77c7d3f4 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 35 minecraft:wool net.minecraft.item.ItemCloth@54d0d561 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 37 minecraft:yellow_flower net.minecraft.item.ItemMultiTexture@5a513627 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 38 minecraft:red_flower net.minecraft.item.ItemMultiTexture@2fe12ec3 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 39 minecraft:brown_mushroom net.minecraft.item.ItemBlock@678a7489 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 40 minecraft:red_mushroom net.minecraft.item.ItemBlock@3e2a8fc | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 41 minecraft:gold_block net.minecraft.item.ItemBlock@6921ce3f | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 42 minecraft:iron_block net.minecraft.item.ItemBlock@4f1072ee | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 44 minecraft:stone_slab net.minecraft.item.ItemSlab@6eaa8abf | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 45 minecraft:brick_block net.minecraft.item.ItemBlock@4fe91eed | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 46 minecraft:tnt net.minecraft.item.ItemBlock@329cef32 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 47 minecraft:bookshelf net.minecraft.item.ItemBlock@5f171392 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 48 minecraft:mossy_cobblestone net.minecraft.item.ItemBlock@655295bd | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 49 minecraft:obsidian net.minecraft.item.ItemBlock@62cbe18c | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 50 minecraft:torch net.minecraft.item.ItemBlock@377b7798 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 52 minecraft:mob_spawner net.minecraft.item.ItemBlock@428440f2 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 53 minecraft:oak_stairs net.minecraft.item.ItemBlock@23c24c0e | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 54 minecraft:chest net.minecraft.item.ItemBlock@7e729046 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 56 minecraft:diamond_ore net.minecraft.item.ItemBlock@565bf1bb | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 57 minecraft:diamond_block net.minecraft.item.ItemBlock@3638a852 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 58 minecraft:crafting_table net.minecraft.item.ItemBlock@7ab20a7 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 60 minecraft:farmland net.minecraft.item.ItemBlock@6db160b4 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 61 minecraft:furnace net.minecraft.item.ItemBlock@64ee9290 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 65 minecraft:ladder net.minecraft.item.ItemBlock@17e7cc67 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 66 minecraft:rail net.minecraft.item.ItemBlock@49976824 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 67 minecraft:stone_stairs net.minecraft.item.ItemBlock@2fc51562 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 69 minecraft:lever net.minecraft.item.ItemBlock@3f2f6818 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 70 minecraft:stone_pressure_plate net.minecraft.item.ItemBlock@16021f6e | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 72 minecraft:wooden_pressure_plate net.minecraft.item.ItemBlock@642693c2 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 73 minecraft:redstone_ore net.minecraft.item.ItemBlock@63cff421 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 76 minecraft:redstone_torch net.minecraft.item.ItemBlock@27e42fe8 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 77 minecraft:stone_button net.minecraft.item.ItemBlock@219bad15 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 78 minecraft:snow_layer net.minecraft.item.ItemSnow@6d810e94 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 79 minecraft:ice net.minecraft.item.ItemBlock@6b9ce7a3 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 80 minecraft:snow net.minecraft.item.ItemBlock@17931cc0 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 81 minecraft:cactus net.minecraft.item.ItemBlock@7a9e44ff | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 82 minecraft:clay net.minecraft.item.ItemBlock@1f8e1096 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 84 minecraft:jukebox net.minecraft.item.ItemBlock@13a35d3b | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 85 minecraft:fence net.minecraft.item.ItemBlock@1cd93693 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 86 minecraft:pumpkin net.minecraft.item.ItemBlock@65145fb7 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 87 minecraft:netherrack net.minecraft.item.ItemBlock@651bec9a | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 88 minecraft:soul_sand net.minecraft.item.ItemBlock@76d4e1af | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 89 minecraft:glowstone net.minecraft.item.ItemBlock@483f19c0 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 91 minecraft:lit_pumpkin net.minecraft.item.ItemBlock@f111e97 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 95 minecraft:stained_glass net.minecraft.item.ItemCloth@647468a7 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 96 minecraft:trapdoor net.minecraft.item.ItemBlock@35d44cd3 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 97 minecraft:monster_egg net.minecraft.item.ItemMultiTexture@445adbd7 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 98 minecraft:stonebrick net.minecraft.item.ItemMultiTexture@47fca369 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 99 minecraft:brown_mushroom_block net.minecraft.item.ItemBlock@296a350 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 100 minecraft:red_mushroom_block net.minecraft.item.ItemBlock@4f3a8e3e | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 101 minecraft:iron_bars net.minecraft.item.ItemBlock@4824d077 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 102 minecraft:glass_pane net.minecraft.item.ItemBlock@6ae1d5f1 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 103 minecraft:melon_block net.minecraft.item.ItemBlock@5d5a77de | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 106 minecraft:vine net.minecraft.item.ItemColored@460a4935 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 107 minecraft:fence_gate net.minecraft.item.ItemBlock@28c38eeb | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 108 minecraft:brick_stairs net.minecraft.item.ItemBlock@3fb54673 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 109 minecraft:stone_brick_stairs net.minecraft.item.ItemBlock@4b55652a | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 110 minecraft:mycelium net.minecraft.item.ItemBlock@8c54f48 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 111 minecraft:waterlily net.minecraft.item.ItemLilyPad@48c584c | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 112 minecraft:nether_brick net.minecraft.item.ItemBlock@641001c2 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 113 minecraft:nether_brick_fence net.minecraft.item.ItemBlock@468dbd07 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 114 minecraft:nether_brick_stairs net.minecraft.item.ItemBlock@2fedae96 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 116 minecraft:enchanting_table net.minecraft.item.ItemBlock@4945cd1f | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 120 minecraft:end_portal_frame net.minecraft.item.ItemBlock@2dbfcbe4 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 121 minecraft:end_stone net.minecraft.item.ItemBlock@6f13ed1 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 122 minecraft:dragon_egg net.minecraft.item.ItemBlock@23e0b938 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 123 minecraft:redstone_lamp net.minecraft.item.ItemBlock@7053b64b | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 126 minecraft:wooden_slab net.minecraft.item.ItemSlab@7f5b0926 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 128 minecraft:sandstone_stairs net.minecraft.item.ItemBlock@6eac71db | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 129 minecraft:emerald_ore net.minecraft.item.ItemBlock@48a32c4f | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 130 minecraft:ender_chest net.minecraft.item.ItemBlock@25af2afe | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 131 minecraft:tripwire_hook net.minecraft.item.ItemBlock@21a1554 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 133 minecraft:emerald_block net.minecraft.item.ItemBlock@f359e65 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 134 minecraft:spruce_stairs net.minecraft.item.ItemBlock@5ea50a98 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 135 minecraft:birch_stairs net.minecraft.item.ItemBlock@2812368 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 136 minecraft:jungle_stairs net.minecraft.item.ItemBlock@50e336d9 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 137 minecraft:command_block net.minecraft.item.ItemBlock@73864c16 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 138 minecraft:beacon net.minecraft.item.ItemBlock@5016934 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 139 minecraft:cobblestone_wall net.minecraft.item.ItemMultiTexture@8eda949 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 143 minecraft:wooden_button net.minecraft.item.ItemBlock@273c4b3 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 145 minecraft:anvil net.minecraft.item.ItemAnvilBlock@2bcaec2e | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 146 minecraft:trapped_chest net.minecraft.item.ItemBlock@45cce4c2 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 147 minecraft:light_weighted_pressure_plate net.minecraft.item.ItemBlock@9d4d221 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 148 minecraft:heavy_weighted_pressure_plate net.minecraft.item.ItemBlock@4dfe5727 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 151 minecraft:daylight_detector net.minecraft.item.ItemBlock@3129792a | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 152 minecraft:redstone_block net.minecraft.item.ItemBlock@13617139 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 153 minecraft:quartz_ore net.minecraft.item.ItemBlock@3c0becae | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 154 minecraft:hopper net.minecraft.item.ItemBlock@373c367 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 155 minecraft:quartz_block net.minecraft.item.ItemMultiTexture@79690a0a | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 156 minecraft:quartz_stairs net.minecraft.item.ItemBlock@619944a7 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 157 minecraft:activator_rail net.minecraft.item.ItemBlock@294aaa6 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 158 minecraft:dropper net.minecraft.item.ItemBlock@1f612968 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 159 minecraft:stained_hardened_clay net.minecraft.item.ItemCloth@2ee949d4 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 160 minecraft:stained_glass_pane net.minecraft.item.ItemCloth@29f58b44 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 161 minecraft:leaves2 net.minecraft.item.ItemLeaves@4f9191c1 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 162 minecraft:log2 net.minecraft.item.ItemMultiTexture@2eb27091 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 163 minecraft:acacia_stairs net.minecraft.item.ItemBlock@3b303b78 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 164 minecraft:dark_oak_stairs net.minecraft.item.ItemBlock@685e97e0 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 165 minecraft:slime net.minecraft.item.ItemBlock@68e8bbab | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 166 minecraft:barrier net.minecraft.item.ItemBlock@57e9cd2 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 167 minecraft:iron_trapdoor net.minecraft.item.ItemBlock@2298d741 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 168 minecraft:prismarine net.minecraft.item.ItemMultiTexture@4dc23273 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 169 minecraft:sea_lantern net.minecraft.item.ItemBlock@35bfa7be | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 170 minecraft:hay_block net.minecraft.item.ItemBlock@34a48013 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 171 minecraft:carpet net.minecraft.item.ItemCloth@50e7d8ba | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 172 minecraft:hardened_clay net.minecraft.item.ItemBlock@210e4678 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 173 minecraft:coal_block net.minecraft.item.ItemBlock@4548bfc7 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 174 minecraft:packed_ice net.minecraft.item.ItemBlock@557c0b65 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 175 minecraft:double_plant net.minecraft.item.ItemMultiTexture@5eabcf77 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 179 minecraft:red_sandstone net.minecraft.item.ItemMultiTexture@557abb68 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 180 minecraft:red_sandstone_stairs net.minecraft.item.ItemBlock@1cb4cad0 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 182 minecraft:stone_slab2 net.minecraft.item.ItemSlab@3152d449 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 183 minecraft:spruce_fence_gate net.minecraft.item.ItemBlock@4ce9985f | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 184 minecraft:birch_fence_gate net.minecraft.item.ItemBlock@4283f29b | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 185 minecraft:jungle_fence_gate net.minecraft.item.ItemBlock@56d4481f | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 186 minecraft:dark_oak_fence_gate net.minecraft.item.ItemBlock@625430f8 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 187 minecraft:acacia_fence_gate net.minecraft.item.ItemBlock@627f678d | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 188 minecraft:spruce_fence net.minecraft.item.ItemBlock@14e8304b | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 189 minecraft:birch_fence net.minecraft.item.ItemBlock@7b0d88e0 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 190 minecraft:jungle_fence net.minecraft.item.ItemBlock@724e483f | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 191 minecraft:dark_oak_fence net.minecraft.item.ItemBlock@27f6854b | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 192 minecraft:acacia_fence net.minecraft.item.ItemBlock@72499396 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 198 minecraft:end_rod net.minecraft.item.ItemBlock@50177966 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 199 minecraft:chorus_plant net.minecraft.item.ItemBlock@2199e1a4 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 200 minecraft:chorus_flower net.minecraft.item.ItemBlock@1c63b39a | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 201 minecraft:purpur_block net.minecraft.item.ItemBlock@7048d039 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 202 minecraft:purpur_pillar net.minecraft.item.ItemBlock@1bff4b1f | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 203 minecraft:purpur_stairs net.minecraft.item.ItemBlock@75051d05 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 205 minecraft:purpur_slab net.minecraft.item.ItemSlab@747b8f5c | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 206 minecraft:end_bricks net.minecraft.item.ItemBlock@44aaa987 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 208 minecraft:grass_path net.minecraft.item.ItemBlock@5dfaa2f0 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 210 minecraft:repeating_command_block net.minecraft.item.ItemBlock@2f95ce11 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 211 minecraft:chain_command_block net.minecraft.item.ItemBlock@2f349170 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 213 minecraft:magma net.minecraft.item.ItemBlock@15ec3c0c | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 214 minecraft:nether_wart_block net.minecraft.item.ItemBlock@323b5264 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 215 minecraft:red_nether_brick net.minecraft.item.ItemBlock@335ff774 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 216 minecraft:bone_block net.minecraft.item.ItemBlock@386b4f7e | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 217 minecraft:structure_void net.minecraft.item.ItemBlock@4c131823 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 218 minecraft:observer net.minecraft.item.ItemBlock@2453cbb7 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 219 minecraft:white_shulker_box net.minecraft.item.ItemShulkerBox@a89dec0 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 220 minecraft:orange_shulker_box net.minecraft.item.ItemShulkerBox@5e8f1db2 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 221 minecraft:magenta_shulker_box net.minecraft.item.ItemShulkerBox@64bb6ba7 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 222 minecraft:light_blue_shulker_box net.minecraft.item.ItemShulkerBox@571360b2 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 223 minecraft:yellow_shulker_box net.minecraft.item.ItemShulkerBox@13a8cb4e | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 224 minecraft:lime_shulker_box net.minecraft.item.ItemShulkerBox@35ec3604 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 225 minecraft:pink_shulker_box net.minecraft.item.ItemShulkerBox@ab5954d | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 226 minecraft:gray_shulker_box net.minecraft.item.ItemShulkerBox@466f7259 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 227 minecraft:silver_shulker_box net.minecraft.item.ItemShulkerBox@13482361 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 228 minecraft:cyan_shulker_box net.minecraft.item.ItemShulkerBox@47c06b1a | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 229 minecraft:purple_shulker_box net.minecraft.item.ItemShulkerBox@61799152 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 230 minecraft:blue_shulker_box net.minecraft.item.ItemShulkerBox@5c39da9e | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 231 minecraft:brown_shulker_box net.minecraft.item.ItemShulkerBox@e38b953 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 232 minecraft:green_shulker_box net.minecraft.item.ItemShulkerBox@4a648b35 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 233 minecraft:red_shulker_box net.minecraft.item.ItemShulkerBox@673a702a | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 234 minecraft:black_shulker_box net.minecraft.item.ItemShulkerBox@75c5ab79 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 235 minecraft:white_glazed_terracotta net.minecraft.item.ItemBlock@3e7c66b3 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 236 minecraft:orange_glazed_terracotta net.minecraft.item.ItemBlock@502f6f6a | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 237 minecraft:magenta_glazed_terracotta net.minecraft.item.ItemBlock@64a0ee65 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 238 minecraft:light_blue_glazed_terracotta net.minecraft.item.ItemBlock@3ce60feb | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 239 minecraft:yellow_glazed_terracotta net.minecraft.item.ItemBlock@61f2bf3a | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 240 minecraft:lime_glazed_terracotta net.minecraft.item.ItemBlock@4a0dd851 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 241 minecraft:pink_glazed_terracotta net.minecraft.item.ItemBlock@293dd4b3 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 242 minecraft:gray_glazed_terracotta net.minecraft.item.ItemBlock@25a81f28 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 243 minecraft:silver_glazed_terracotta net.minecraft.item.ItemBlock@51577fc8 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 244 minecraft:cyan_glazed_terracotta net.minecraft.item.ItemBlock@753cfae3 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 245 minecraft:purple_glazed_terracotta net.minecraft.item.ItemBlock@326320bb | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 246 minecraft:blue_glazed_terracotta net.minecraft.item.ItemBlock@57573880 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 247 minecraft:brown_glazed_terracotta net.minecraft.item.ItemBlock@3d94b49d | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 248 minecraft:green_glazed_terracotta net.minecraft.item.ItemBlock@2fedaa2e | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 249 minecraft:red_glazed_terracotta net.minecraft.item.ItemBlock@4203190 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 250 minecraft:black_glazed_terracotta net.minecraft.item.ItemBlock@6add8aac | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 251 minecraft:concrete net.minecraft.item.ItemCloth@72f5fb36 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 252 minecraft:concrete_powder net.minecraft.item.ItemCloth@300b839c | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 255 minecraft:structure_block net.minecraft.item.ItemBlock@352288bc | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 256 minecraft:iron_shovel net.minecraft.item.ItemSpade@a422390 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 257 minecraft:iron_pickaxe net.minecraft.item.ItemPickaxe@3d056418 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 258 minecraft:iron_axe net.minecraft.item.ItemAxe@6d58ed12 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 259 minecraft:flint_and_steel net.minecraft.item.ItemFlintAndSteel@39240aa3 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 260 minecraft:apple net.minecraft.item.ItemFood@1ed763aa | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 261 minecraft:bow net.minecraft.item.ItemBow@79c9a128 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 262 minecraft:arrow net.minecraft.item.ItemArrow@5275d709 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 263 minecraft:coal net.minecraft.item.ItemCoal@5232cec1 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 264 minecraft:diamond net.minecraft.item.Item@388ad8aa | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 265 minecraft:iron_ingot net.minecraft.item.Item@283240b0 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 266 minecraft:gold_ingot net.minecraft.item.Item@4ec78008 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 267 minecraft:iron_sword net.minecraft.item.ItemSword@1150b923 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 268 minecraft:wooden_sword net.minecraft.item.ItemSword@54c2cfc9 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 269 minecraft:wooden_shovel net.minecraft.item.ItemSpade@3d9dc84d | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 270 minecraft:wooden_pickaxe net.minecraft.item.ItemPickaxe@73625632 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 271 minecraft:wooden_axe net.minecraft.item.ItemAxe@676f70dc | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 272 minecraft:stone_sword net.minecraft.item.ItemSword@2591477f | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 273 minecraft:stone_shovel net.minecraft.item.ItemSpade@761d3c20 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 274 minecraft:stone_pickaxe net.minecraft.item.ItemPickaxe@172f2717 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 275 minecraft:stone_axe net.minecraft.item.ItemAxe@bda4cbe | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 276 minecraft:diamond_sword net.minecraft.item.ItemSword@24df4805 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 277 minecraft:diamond_shovel net.minecraft.item.ItemSpade@3bbc8c82 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 278 minecraft:diamond_pickaxe net.minecraft.item.ItemPickaxe@5545137d | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 279 minecraft:diamond_axe net.minecraft.item.ItemAxe@ca31ad7 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 280 minecraft:stick net.minecraft.item.Item@52e2e426 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 281 minecraft:bowl net.minecraft.item.Item@d65ba64 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 282 minecraft:mushroom_stew net.minecraft.item.ItemSoup@45c73e09 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 283 minecraft:golden_sword net.minecraft.item.ItemSword@1b87f7cd | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 284 minecraft:golden_shovel net.minecraft.item.ItemSpade@306f439c | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 285 minecraft:golden_pickaxe net.minecraft.item.ItemPickaxe@ac6da02 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 286 minecraft:golden_axe net.minecraft.item.ItemAxe@768d8a25 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 287 minecraft:string net.minecraft.item.ItemBlockSpecial@6d13cd6d | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 288 minecraft:feather net.minecraft.item.Item@3a2b1f24 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 289 minecraft:gunpowder net.minecraft.item.Item@72d2470 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 290 minecraft:wooden_hoe net.minecraft.item.ItemHoe@5988e36e | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 291 minecraft:stone_hoe net.minecraft.item.ItemHoe@4194a77f | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 292 minecraft:iron_hoe net.minecraft.item.ItemHoe@3c55e9d4 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 293 minecraft:diamond_hoe net.minecraft.item.ItemHoe@2acbbee4 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 294 minecraft:golden_hoe net.minecraft.item.ItemHoe@3446ab40 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 295 minecraft:wheat_seeds net.minecraft.item.ItemSeeds@f8b6743 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 296 minecraft:wheat net.minecraft.item.Item@644eed73 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 297 minecraft:bread net.minecraft.item.ItemFood@253a8bdb | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 298 minecraft:leather_helmet net.minecraft.item.ItemArmor@4c1c134 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 299 minecraft:leather_chestplate net.minecraft.item.ItemArmor@486480e2 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 300 minecraft:leather_leggings net.minecraft.item.ItemArmor@63bdf82d | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 301 minecraft:leather_boots net.minecraft.item.ItemArmor@1da40ae8 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 302 minecraft:chainmail_helmet net.minecraft.item.ItemArmor@1766b009 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 303 minecraft:chainmail_chestplate net.minecraft.item.ItemArmor@7be95197 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 304 minecraft:chainmail_leggings net.minecraft.item.ItemArmor@7719b257 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 305 minecraft:chainmail_boots net.minecraft.item.ItemArmor@4a571516 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 306 minecraft:iron_helmet net.minecraft.item.ItemArmor@681302ad | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 307 minecraft:iron_chestplate net.minecraft.item.ItemArmor@594793d1 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 308 minecraft:iron_leggings net.minecraft.item.ItemArmor@63f609a4 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 309 minecraft:iron_boots net.minecraft.item.ItemArmor@11fb4f69 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 310 minecraft:diamond_helmet net.minecraft.item.ItemArmor@618d2191 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 311 minecraft:diamond_chestplate net.minecraft.item.ItemArmor@4b1ef6a | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 312 minecraft:diamond_leggings net.minecraft.item.ItemArmor@57596d71 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 313 minecraft:diamond_boots net.minecraft.item.ItemArmor@1c12f0f4 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 314 minecraft:golden_helmet net.minecraft.item.ItemArmor@149bdb4e | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 315 minecraft:golden_chestplate net.minecraft.item.ItemArmor@1f5aac08 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 316 minecraft:golden_leggings net.minecraft.item.ItemArmor@3747877 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 317 minecraft:golden_boots net.minecraft.item.ItemArmor@86abdbd | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 318 minecraft:flint net.minecraft.item.Item@42e14655 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 319 minecraft:porkchop net.minecraft.item.ItemFood@81198ed | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 320 minecraft:cooked_porkchop net.minecraft.item.ItemFood@2806fe58 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 321 minecraft:painting net.minecraft.item.ItemHangingEntity@3285c141 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 322 minecraft:golden_apple net.minecraft.item.ItemAppleGold@4ca50bb9 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 323 minecraft:sign net.minecraft.item.ItemSign@6903ef57 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 324 minecraft:wooden_door net.minecraft.item.ItemDoor@25bfc558 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 325 minecraft:bucket net.minecraft.item.ItemBucket@4ff3ca23 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 326 minecraft:water_bucket net.minecraft.item.ItemBucket@65f8933b | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 327 minecraft:lava_bucket net.minecraft.item.ItemBucket@29422e61 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 328 minecraft:minecart net.minecraft.item.ItemMinecart@67c020c8 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 329 minecraft:saddle net.minecraft.item.ItemSaddle@5ae5a507 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 330 minecraft:iron_door net.minecraft.item.ItemDoor@e8ef60b | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 331 minecraft:redstone net.minecraft.item.ItemRedstone@6e21b6f8 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 332 minecraft:snowball net.minecraft.item.ItemSnowball@6517bc6b | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 333 minecraft:boat net.minecraft.item.ItemBoat@5aa0e9c6 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 334 minecraft:leather net.minecraft.item.Item@57dd4bc9 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 335 minecraft:milk_bucket net.minecraft.item.ItemBucketMilk@5f6dd89c | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 336 minecraft:brick net.minecraft.item.Item@606c2e4b | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 337 minecraft:clay_ball net.minecraft.item.Item@1b914e36 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 338 minecraft:reeds net.minecraft.item.ItemBlockSpecial@29f3ea39 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 339 minecraft:paper net.minecraft.item.Item@18eb6ea3 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 340 minecraft:book net.minecraft.item.ItemBook@44ad3c5e | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 341 minecraft:slime_ball net.minecraft.item.Item@64cbc28e | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 342 minecraft:chest_minecart net.minecraft.item.ItemMinecart@5623fd90 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 343 minecraft:furnace_minecart net.minecraft.item.ItemMinecart@4842a683 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 344 minecraft:egg net.minecraft.item.ItemEgg@59eff566 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 345 minecraft:compass net.minecraft.item.ItemCompass@591cda84 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 346 minecraft:fishing_rod net.minecraft.item.ItemFishingRod@6fb514db | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 347 minecraft:clock net.minecraft.item.ItemClock@5e81b406 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 348 minecraft:glowstone_dust net.minecraft.item.Item@3ff83cc8 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 349 minecraft:fish net.minecraft.item.ItemFishFood@36e8fefe | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 350 minecraft:cooked_fish net.minecraft.item.ItemFishFood@5e8633da | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 351 minecraft:dye net.minecraft.item.ItemDye@795ce9b5 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 352 minecraft:bone net.minecraft.item.Item@280cb0b4 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 353 minecraft:sugar net.minecraft.item.Item@108b2321 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 354 minecraft:cake net.minecraft.item.ItemBlockSpecial@7f2c36de | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 355 minecraft:bed net.minecraft.item.ItemBed@12ff3df | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 356 minecraft:repeater net.minecraft.item.ItemBlockSpecial@12b962b1 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 357 minecraft:cookie net.minecraft.item.ItemFood@15844237 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 358 minecraft:filled_map net.minecraft.item.ItemMap@54455c8d | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 359 minecraft:shears net.minecraft.item.ItemShears@302692b1 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 360 minecraft:melon net.minecraft.item.ItemFood@c52c362 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 361 minecraft:pumpkin_seeds net.minecraft.item.ItemSeeds@7f794b0f | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 362 minecraft:melon_seeds net.minecraft.item.ItemSeeds@efe75a2 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 363 minecraft:beef net.minecraft.item.ItemFood@a49cdd6 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 364 minecraft:cooked_beef net.minecraft.item.ItemFood@109a462e | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 365 minecraft:chicken net.minecraft.item.ItemFood@57f31caf | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 366 minecraft:cooked_chicken net.minecraft.item.ItemFood@5c088d72 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 367 minecraft:rotten_flesh net.minecraft.item.ItemFood@4bda93f1 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 368 minecraft:ender_pearl net.minecraft.item.ItemEnderPearl@44b99f09 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 369 minecraft:blaze_rod net.minecraft.item.Item@261d7ee2 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 370 minecraft:ghast_tear net.minecraft.item.Item@724a80d2 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 371 minecraft:gold_nugget net.minecraft.item.Item@5ce34685 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 372 minecraft:nether_wart net.minecraft.item.ItemSeeds@54aacbc7 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 373 minecraft:potion net.minecraft.item.ItemPotion@3fe70a2d | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 374 minecraft:glass_bottle net.minecraft.item.ItemGlassBottle@437ac2dc | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 375 minecraft:spider_eye net.minecraft.item.ItemFood@3de507af | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 376 minecraft:fermented_spider_eye net.minecraft.item.Item@349504d5 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 377 minecraft:blaze_powder net.minecraft.item.Item@347770a9 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 378 minecraft:magma_cream net.minecraft.item.Item@218e28d9 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 379 minecraft:brewing_stand net.minecraft.item.ItemBlockSpecial@34438b38 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 380 minecraft:cauldron net.minecraft.item.ItemBlockSpecial@28ec92c9 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 381 minecraft:ender_eye net.minecraft.item.ItemEnderEye@7b7268db | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 382 minecraft:speckled_melon net.minecraft.item.Item@1d8230cd | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 383 minecraft:spawn_egg net.minecraft.item.ItemMonsterPlacer@375f276e | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 384 minecraft:experience_bottle net.minecraft.item.ItemExpBottle@2ce7d43 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 385 minecraft:fire_charge net.minecraft.item.ItemFireball@1dbe592f | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 386 minecraft:writable_book net.minecraft.item.ItemWritableBook@7a8316fa | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 387 minecraft:written_book net.minecraft.item.ItemWrittenBook@1d47b761 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 388 minecraft:emerald net.minecraft.item.Item@d4962bd | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 389 minecraft:item_frame net.minecraft.item.ItemHangingEntity@76fa3dd8 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 390 minecraft:flower_pot net.minecraft.item.ItemBlockSpecial@58f27c37 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 391 minecraft:carrot net.minecraft.item.ItemSeedFood@5b5f48d5 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 392 minecraft:potato net.minecraft.item.ItemSeedFood@421c4c3e | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 393 minecraft:baked_potato net.minecraft.item.ItemFood@63236968 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 394 minecraft:poisonous_potato net.minecraft.item.ItemFood@4f6f7a86 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 395 minecraft:map net.minecraft.item.ItemEmptyMap@504216ff | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 396 minecraft:golden_carrot net.minecraft.item.ItemFood@4ce4c097 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 397 minecraft:skull net.minecraft.item.ItemSkull@67cc5a38 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 398 minecraft:carrot_on_a_stick net.minecraft.item.ItemCarrotOnAStick@a589070 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 399 minecraft:nether_star net.minecraft.item.ItemSimpleFoiled@1fbd0850 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 400 minecraft:pumpkin_pie net.minecraft.item.ItemFood@57bc7f67 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 401 minecraft:fireworks net.minecraft.item.ItemFirework@117bfeb8 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 402 minecraft:firework_charge net.minecraft.item.ItemFireworkCharge@144caca6 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 403 minecraft:enchanted_book net.minecraft.item.ItemEnchantedBook@63fe055 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 404 minecraft:comparator net.minecraft.item.ItemBlockSpecial@50572c04 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 405 minecraft:netherbrick net.minecraft.item.Item@ab90b8c | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 406 minecraft:quartz net.minecraft.item.Item@640a80aa | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 407 minecraft:tnt_minecart net.minecraft.item.ItemMinecart@1d4ee936 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 408 minecraft:hopper_minecart net.minecraft.item.ItemMinecart@7410c197 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 409 minecraft:prismarine_shard net.minecraft.item.Item@363751f2 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 410 minecraft:prismarine_crystals net.minecraft.item.Item@688884e | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 411 minecraft:rabbit net.minecraft.item.ItemFood@6c65c6f0 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 412 minecraft:cooked_rabbit net.minecraft.item.ItemFood@1e0bae92 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 413 minecraft:rabbit_stew net.minecraft.item.ItemSoup@123fd460 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 414 minecraft:rabbit_foot net.minecraft.item.Item@5037f491 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 415 minecraft:rabbit_hide net.minecraft.item.Item@1227ea21 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 416 minecraft:armor_stand net.minecraft.item.ItemArmorStand@6018a6a2 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 417 minecraft:iron_horse_armor net.minecraft.item.Item@3ae5cbb9 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 418 minecraft:golden_horse_armor net.minecraft.item.Item@1f15d346 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 419 minecraft:diamond_horse_armor net.minecraft.item.Item@7fb70e94 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 420 minecraft:lead net.minecraft.item.ItemLead@2d05d022 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 421 minecraft:name_tag net.minecraft.item.ItemNameTag@2aa85cc4 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 422 minecraft:command_block_minecart net.minecraft.item.ItemMinecart@466fd19b | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 423 minecraft:mutton net.minecraft.item.ItemFood@348d1a5e | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 424 minecraft:cooked_mutton net.minecraft.item.ItemFood@7f746160 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 425 minecraft:banner net.minecraft.item.ItemBanner@2a1fce44 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 426 minecraft:end_crystal net.minecraft.item.ItemEndCrystal@2100b770 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 427 minecraft:spruce_door net.minecraft.item.ItemDoor@349469db | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 428 minecraft:birch_door net.minecraft.item.ItemDoor@2c3a2935 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 429 minecraft:jungle_door net.minecraft.item.ItemDoor@2ca4b010 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 430 minecraft:acacia_door net.minecraft.item.ItemDoor@83b39c3 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 431 minecraft:dark_oak_door net.minecraft.item.ItemDoor@1f7653ae | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 432 minecraft:chorus_fruit net.minecraft.item.ItemChorusFruit@30ffc3c0 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 433 minecraft:chorus_fruit_popped net.minecraft.item.Item@76b8b6a6 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 434 minecraft:beetroot net.minecraft.item.ItemFood@47e02a89 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 435 minecraft:beetroot_seeds net.minecraft.item.ItemSeeds@6d9bcf19 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 436 minecraft:beetroot_soup net.minecraft.item.ItemSoup@23b4f0a9 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 437 minecraft:dragon_breath net.minecraft.item.Item@108a7fff | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 438 minecraft:splash_potion net.minecraft.item.ItemSplashPotion@62099f75 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 439 minecraft:spectral_arrow net.minecraft.item.ItemSpectralArrow@36c8e1c6 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 440 minecraft:tipped_arrow net.minecraft.item.ItemTippedArrow@6d1c15cb | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 441 minecraft:lingering_potion net.minecraft.item.ItemLingeringPotion@794cd751 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 442 minecraft:shield net.minecraft.item.ItemShield@252459b2 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 443 minecraft:elytra net.minecraft.item.ItemElytra@2be49c8c | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 444 minecraft:spruce_boat net.minecraft.item.ItemBoat@5f160341 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 445 minecraft:birch_boat net.minecraft.item.ItemBoat@31f5580b | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 446 minecraft:jungle_boat net.minecraft.item.ItemBoat@56a8b19f | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 447 minecraft:acacia_boat net.minecraft.item.ItemBoat@5927473a | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 448 minecraft:dark_oak_boat net.minecraft.item.ItemBoat@36c45b54 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 449 minecraft:totem_of_undying net.minecraft.item.Item@2d6a6887 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 450 minecraft:shulker_shell net.minecraft.item.Item@3e5d10fc | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 452 minecraft:iron_nugget net.minecraft.item.Item@5da08e9a | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 453 minecraft:knowledge_book net.minecraft.item.ItemKnowledgeBook@22cf6c9c | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 2256 minecraft:record_13 net.minecraft.item.ItemRecord@2140de63 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 2257 minecraft:record_cat net.minecraft.item.ItemRecord@2da273b3 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 2258 minecraft:record_blocks net.minecraft.item.ItemRecord@6b02909d | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 2259 minecraft:record_chirp net.minecraft.item.ItemRecord@655008a2 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 2260 minecraft:record_far net.minecraft.item.ItemRecord@424461ad | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 2261 minecraft:record_mall net.minecraft.item.ItemRecord@7cc5bdbd | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 2262 minecraft:record_mellohi net.minecraft.item.ItemRecord@33c5cc0 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 2263 minecraft:record_stal net.minecraft.item.ItemRecord@664c411d | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 2264 minecraft:record_strad net.minecraft.item.ItemRecord@7641d70 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 2265 minecraft:record_ward net.minecraft.item.ItemRecord@569d7074 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 2266 minecraft:record_11 net.minecraft.item.ItemRecord@3726fc3b | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 2267 minecraft:record_wait net.minecraft.item.ItemRecord@33e6176b | |
[00:24:07] [Server thread/TRACE] [FML]: Registry Name : minecraft:potions | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 1 minecraft:speed net.minecraft.potion.Potion@1ffe7c42 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 2 minecraft:slowness net.minecraft.potion.Potion@5f72aaed | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 3 minecraft:haste net.minecraft.potion.Potion@1d9295e2 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 4 minecraft:mining_fatigue net.minecraft.potion.Potion@4b708c16 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 5 minecraft:strength net.minecraft.potion.PotionAttackDamage@b8e6981 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 6 minecraft:instant_health net.minecraft.potion.PotionHealth@4922dc84 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 7 minecraft:instant_damage net.minecraft.potion.PotionHealth@2ed9e59b | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 8 minecraft:jump_boost net.minecraft.potion.Potion@66790851 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 9 minecraft:nausea net.minecraft.potion.Potion@3796ff4 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 10 minecraft:regeneration net.minecraft.potion.Potion@5ce045e3 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 11 minecraft:resistance net.minecraft.potion.Potion@3df496d9 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 12 minecraft:fire_resistance net.minecraft.potion.Potion@13e12ab6 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 13 minecraft:water_breathing net.minecraft.potion.Potion@5bafe1f1 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 14 minecraft:invisibility net.minecraft.potion.Potion@5be783a | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 15 minecraft:blindness net.minecraft.potion.Potion@1c65740a | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 16 minecraft:night_vision net.minecraft.potion.Potion@6cb59aa | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 17 minecraft:hunger net.minecraft.potion.Potion@224f90eb | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 18 minecraft:weakness net.minecraft.potion.PotionAttackDamage@54464330 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 19 minecraft:poison net.minecraft.potion.Potion@63b4a896 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 20 minecraft:wither net.minecraft.potion.Potion@3feeab43 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 21 minecraft:health_boost net.minecraft.potion.PotionHealthBoost@2f318251 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 22 minecraft:absorption net.minecraft.potion.PotionAbsorption@797dd7ef | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 23 minecraft:saturation net.minecraft.potion.PotionHealth@ece7204 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 24 minecraft:glowing net.minecraft.potion.Potion@22c4151b | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 25 minecraft:levitation net.minecraft.potion.Potion@2c3df478 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 26 minecraft:luck net.minecraft.potion.Potion@3be88cbf | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 27 minecraft:unluck net.minecraft.potion.Potion@46cb9794 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry Name : minecraft:biomes | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 0 minecraft:ocean net.minecraft.world.biome.BiomeOcean@27015621 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 1 minecraft:plains net.minecraft.world.biome.BiomePlains@ecc5101 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 2 minecraft:desert net.minecraft.world.biome.BiomeDesert@bcde468 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 3 minecraft:extreme_hills net.minecraft.world.biome.BiomeHills@5843ab8 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 4 minecraft:forest net.minecraft.world.biome.BiomeForest@57fd3b57 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 5 minecraft:taiga net.minecraft.world.biome.BiomeTaiga@4c24063c | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 6 minecraft:swampland net.minecraft.world.biome.BiomeSwamp@6cf71064 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 7 minecraft:river net.minecraft.world.biome.BiomeRiver@2762bd70 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 8 minecraft:hell net.minecraft.world.biome.BiomeHell@5113ab26 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 9 minecraft:sky net.minecraft.world.biome.BiomeEnd@6be6cb16 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 10 minecraft:frozen_ocean net.minecraft.world.biome.BiomeOcean@69ee825c | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 11 minecraft:frozen_river net.minecraft.world.biome.BiomeRiver@5c44bce3 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 12 minecraft:ice_flats net.minecraft.world.biome.BiomeSnow@179367ff | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 13 minecraft:ice_mountains net.minecraft.world.biome.BiomeSnow@7b4b6dca | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 14 minecraft:mushroom_island net.minecraft.world.biome.BiomeMushroomIsland@99a89e9 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 15 minecraft:mushroom_island_shore net.minecraft.world.biome.BiomeMushroomIsland@5baabba | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 16 minecraft:beaches net.minecraft.world.biome.BiomeBeach@57283e4 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 17 minecraft:desert_hills net.minecraft.world.biome.BiomeDesert@58fa8762 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 18 minecraft:forest_hills net.minecraft.world.biome.BiomeForest@8cd00bc | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 19 minecraft:taiga_hills net.minecraft.world.biome.BiomeTaiga@5035c23c | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 20 minecraft:smaller_extreme_hills net.minecraft.world.biome.BiomeHills@4149067d | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 21 minecraft:jungle net.minecraft.world.biome.BiomeJungle@35abfeba | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 22 minecraft:jungle_hills net.minecraft.world.biome.BiomeJungle@7b031f53 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 23 minecraft:jungle_edge net.minecraft.world.biome.BiomeJungle@1b42eb0f | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 24 minecraft:deep_ocean net.minecraft.world.biome.BiomeOcean@6e92f150 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 25 minecraft:stone_beach net.minecraft.world.biome.BiomeStoneBeach@673ce246 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 26 minecraft:cold_beach net.minecraft.world.biome.BiomeBeach@6baa673d | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 27 minecraft:birch_forest net.minecraft.world.biome.BiomeForest@124b1369 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 28 minecraft:birch_forest_hills net.minecraft.world.biome.BiomeForest@22bd6b0a | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 29 minecraft:roofed_forest net.minecraft.world.biome.BiomeForest@221383c9 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 30 minecraft:taiga_cold net.minecraft.world.biome.BiomeTaiga@1a389b39 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 31 minecraft:taiga_cold_hills net.minecraft.world.biome.BiomeTaiga@50a2034c | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 32 minecraft:redwood_taiga net.minecraft.world.biome.BiomeTaiga@190ec769 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 33 minecraft:redwood_taiga_hills net.minecraft.world.biome.BiomeTaiga@27bd124a | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 34 minecraft:extreme_hills_with_trees net.minecraft.world.biome.BiomeHills@7902a4d7 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 35 minecraft:savanna net.minecraft.world.biome.BiomeSavanna@56a0dd11 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 36 minecraft:savanna_rock net.minecraft.world.biome.BiomeSavanna@1940bacd | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 37 minecraft:mesa net.minecraft.world.biome.BiomeMesa@62bcfa01 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 38 minecraft:mesa_rock net.minecraft.world.biome.BiomeMesa@b549c4a | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 39 minecraft:mesa_clear_rock net.minecraft.world.biome.BiomeMesa@72412c3d | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 127 minecraft:void net.minecraft.world.biome.BiomeVoid@2b097d19 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 129 minecraft:mutated_plains net.minecraft.world.biome.BiomePlains@5d46f4a3 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 130 minecraft:mutated_desert net.minecraft.world.biome.BiomeDesert@4fe03c06 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 131 minecraft:mutated_extreme_hills net.minecraft.world.biome.BiomeHills@79f14c56 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 132 minecraft:mutated_forest net.minecraft.world.biome.BiomeForest@19f007c4 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 133 minecraft:mutated_taiga net.minecraft.world.biome.BiomeTaiga@73790bb5 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 134 minecraft:mutated_swampland net.minecraft.world.biome.BiomeSwamp@3d3709d0 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 140 minecraft:mutated_ice_flats net.minecraft.world.biome.BiomeSnow@4ed761dc | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 149 minecraft:mutated_jungle net.minecraft.world.biome.BiomeJungle@578081e5 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 151 minecraft:mutated_jungle_edge net.minecraft.world.biome.BiomeJungle@6c1f1c03 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 155 minecraft:mutated_birch_forest net.minecraft.world.biome.BiomeForestMutated@1ccfa4b8 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 156 minecraft:mutated_birch_forest_hills net.minecraft.world.biome.BiomeForestMutated@4f93816d | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 157 minecraft:mutated_roofed_forest net.minecraft.world.biome.BiomeForest@5bf86398 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 158 minecraft:mutated_taiga_cold net.minecraft.world.biome.BiomeTaiga@2de3ac17 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 160 minecraft:mutated_redwood_taiga net.minecraft.world.biome.BiomeTaiga@4c683777 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 161 minecraft:mutated_redwood_taiga_hills net.minecraft.world.biome.BiomeTaiga@1fa35f7e | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 162 minecraft:mutated_extreme_hills_with_trees net.minecraft.world.biome.BiomeHills@7df0bb1 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 163 minecraft:mutated_savanna net.minecraft.world.biome.BiomeSavannaMutated@3ab2d64c | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 164 minecraft:mutated_savanna_rock net.minecraft.world.biome.BiomeSavannaMutated@3f6f26cb | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 165 minecraft:mutated_mesa net.minecraft.world.biome.BiomeMesa@40123014 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 166 minecraft:mutated_mesa_rock net.minecraft.world.biome.BiomeMesa@13cfe28b | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 167 minecraft:mutated_mesa_clear_rock net.minecraft.world.biome.BiomeMesa@3f634608 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry Name : minecraft:soundevents | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 0 minecraft:ambient.cave net.minecraft.util.SoundEvent@6f2864c3 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 1 minecraft:block.anvil.break net.minecraft.util.SoundEvent@16cb6f51 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 2 minecraft:block.anvil.destroy net.minecraft.util.SoundEvent@3fc5d397 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 3 minecraft:block.anvil.fall net.minecraft.util.SoundEvent@25c8c71e | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 4 minecraft:block.anvil.hit net.minecraft.util.SoundEvent@57867d96 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 5 minecraft:block.anvil.land net.minecraft.util.SoundEvent@1a7a21d0 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 6 minecraft:block.anvil.place net.minecraft.util.SoundEvent@bb21063 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 7 minecraft:block.anvil.step net.minecraft.util.SoundEvent@6821c63c | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 8 minecraft:block.anvil.use net.minecraft.util.SoundEvent@c2f7c63 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 9 minecraft:block.brewing_stand.brew net.minecraft.util.SoundEvent@4790b897 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 10 minecraft:block.chest.close net.minecraft.util.SoundEvent@5cba890e | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 11 minecraft:block.chest.locked net.minecraft.util.SoundEvent@3a4cb483 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 12 minecraft:block.chest.open net.minecraft.util.SoundEvent@4d770bcd | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 13 minecraft:block.chorus_flower.death net.minecraft.util.SoundEvent@fe156f4 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 14 minecraft:block.chorus_flower.grow net.minecraft.util.SoundEvent@79b4cff | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 15 minecraft:block.cloth.break net.minecraft.util.SoundEvent@58ac0823 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 16 minecraft:block.cloth.fall net.minecraft.util.SoundEvent@2d705998 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 17 minecraft:block.cloth.hit net.minecraft.util.SoundEvent@28a3fc34 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 18 minecraft:block.cloth.place net.minecraft.util.SoundEvent@7582a16b | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 19 minecraft:block.cloth.step net.minecraft.util.SoundEvent@4dd752e8 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 20 minecraft:block.comparator.click net.minecraft.util.SoundEvent@62c46e53 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 21 minecraft:block.dispenser.dispense net.minecraft.util.SoundEvent@55317c63 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 22 minecraft:block.dispenser.fail net.minecraft.util.SoundEvent@35d81657 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 23 minecraft:block.dispenser.launch net.minecraft.util.SoundEvent@42ef5216 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 24 minecraft:block.enchantment_table.use net.minecraft.util.SoundEvent@3180aee | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 25 minecraft:block.end_gateway.spawn net.minecraft.util.SoundEvent@5d94ac8a | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 26 minecraft:block.end_portal.spawn net.minecraft.util.SoundEvent@288b73c1 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 27 minecraft:block.end_portal_frame.fill net.minecraft.util.SoundEvent@104cfb24 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 28 minecraft:block.enderchest.close net.minecraft.util.SoundEvent@5340ccb9 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 29 minecraft:block.enderchest.open net.minecraft.util.SoundEvent@2bc8caa7 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 30 minecraft:block.fence_gate.close net.minecraft.util.SoundEvent@582ea164 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 31 minecraft:block.fence_gate.open net.minecraft.util.SoundEvent@2fccf49e | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 32 minecraft:block.fire.ambient net.minecraft.util.SoundEvent@7abcc0da | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 33 minecraft:block.fire.extinguish net.minecraft.util.SoundEvent@174cb0d8 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 34 minecraft:block.furnace.fire_crackle net.minecraft.util.SoundEvent@3ac406d4 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 35 minecraft:block.glass.break net.minecraft.util.SoundEvent@72646d16 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 36 minecraft:block.glass.fall net.minecraft.util.SoundEvent@6ec2d990 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 37 minecraft:block.glass.hit net.minecraft.util.SoundEvent@1cfa7ee0 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 38 minecraft:block.glass.place net.minecraft.util.SoundEvent@612290d | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 39 minecraft:block.glass.step net.minecraft.util.SoundEvent@57cff804 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 40 minecraft:block.grass.break net.minecraft.util.SoundEvent@2f39b534 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 41 minecraft:block.grass.fall net.minecraft.util.SoundEvent@60fbc34d | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 42 minecraft:block.grass.hit net.minecraft.util.SoundEvent@7736c41e | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 43 minecraft:block.grass.place net.minecraft.util.SoundEvent@5f911d24 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 44 minecraft:block.grass.step net.minecraft.util.SoundEvent@3de383f7 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 45 minecraft:block.gravel.break net.minecraft.util.SoundEvent@33ccead | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 46 minecraft:block.gravel.fall net.minecraft.util.SoundEvent@42ebece0 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 47 minecraft:block.gravel.hit net.minecraft.util.SoundEvent@15c4b1a4 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 48 minecraft:block.gravel.place net.minecraft.util.SoundEvent@341964d0 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 49 minecraft:block.gravel.step net.minecraft.util.SoundEvent@51b59d58 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 50 minecraft:block.iron_door.close net.minecraft.util.SoundEvent@4ca4f762 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 51 minecraft:block.iron_door.open net.minecraft.util.SoundEvent@7c5d36c3 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 52 minecraft:block.iron_trapdoor.close net.minecraft.util.SoundEvent@31de27c | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 53 minecraft:block.iron_trapdoor.open net.minecraft.util.SoundEvent@7ebfe01a | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 54 minecraft:block.ladder.break net.minecraft.util.SoundEvent@154b0748 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 55 minecraft:block.ladder.fall net.minecraft.util.SoundEvent@35c00c | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 56 minecraft:block.ladder.hit net.minecraft.util.SoundEvent@6cd7dc74 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 57 minecraft:block.ladder.place net.minecraft.util.SoundEvent@6d695ec4 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 58 minecraft:block.ladder.step net.minecraft.util.SoundEvent@20556566 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 59 minecraft:block.lava.ambient net.minecraft.util.SoundEvent@e4ef4c0 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 60 minecraft:block.lava.extinguish net.minecraft.util.SoundEvent@5ca8bd01 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 61 minecraft:block.lava.pop net.minecraft.util.SoundEvent@7b10472e | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 62 minecraft:block.lever.click net.minecraft.util.SoundEvent@70e5737f | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 63 minecraft:block.metal.break net.minecraft.util.SoundEvent@9746157 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 64 minecraft:block.metal.fall net.minecraft.util.SoundEvent@10ad95cd | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 65 minecraft:block.metal.hit net.minecraft.util.SoundEvent@69fd99c1 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 66 minecraft:block.metal.place net.minecraft.util.SoundEvent@32d8710a | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 67 minecraft:block.metal.step net.minecraft.util.SoundEvent@180cc0df | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 68 minecraft:block.metal_pressureplate.click_off net.minecraft.util.SoundEvent@64f33dee | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 69 minecraft:block.metal_pressureplate.click_on net.minecraft.util.SoundEvent@61c58320 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 70 minecraft:block.note.basedrum net.minecraft.util.SoundEvent@10e4ee33 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 71 minecraft:block.note.bass net.minecraft.util.SoundEvent@6e90cec8 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 72 minecraft:block.note.bell net.minecraft.util.SoundEvent@13f182b9 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 73 minecraft:block.note.chime net.minecraft.util.SoundEvent@5ee0cf64 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 74 minecraft:block.note.flute net.minecraft.util.SoundEvent@69c227fd | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 75 minecraft:block.note.guitar net.minecraft.util.SoundEvent@14c5283 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 76 minecraft:block.note.harp net.minecraft.util.SoundEvent@1eb7ec59 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 77 minecraft:block.note.hat net.minecraft.util.SoundEvent@46748b04 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 78 minecraft:block.note.pling net.minecraft.util.SoundEvent@3e71a1f8 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 79 minecraft:block.note.snare net.minecraft.util.SoundEvent@5d4a34ff | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 80 minecraft:block.note.xylophone net.minecraft.util.SoundEvent@7cbede2b | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 81 minecraft:block.piston.contract net.minecraft.util.SoundEvent@1ef04613 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 82 minecraft:block.piston.extend net.minecraft.util.SoundEvent@2d3d4a54 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 83 minecraft:block.portal.ambient net.minecraft.util.SoundEvent@215c6ec0 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 84 minecraft:block.portal.travel net.minecraft.util.SoundEvent@2b19b346 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 85 minecraft:block.portal.trigger net.minecraft.util.SoundEvent@37c5b8e8 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 86 minecraft:block.redstone_torch.burnout net.minecraft.util.SoundEvent@706d2bae | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 87 minecraft:block.sand.break net.minecraft.util.SoundEvent@3205610d | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 88 minecraft:block.sand.fall net.minecraft.util.SoundEvent@54e06788 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 89 minecraft:block.sand.hit net.minecraft.util.SoundEvent@4e789704 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 90 minecraft:block.sand.place net.minecraft.util.SoundEvent@5751e53e | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 91 minecraft:block.sand.step net.minecraft.util.SoundEvent@4e45fbd0 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 92 minecraft:block.shulker_box.close net.minecraft.util.SoundEvent@19ce19b7 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 93 minecraft:block.shulker_box.open net.minecraft.util.SoundEvent@13047d3d | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 94 minecraft:block.slime.break net.minecraft.util.SoundEvent@4b240276 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 95 minecraft:block.slime.fall net.minecraft.util.SoundEvent@2a5efbb9 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 96 minecraft:block.slime.hit net.minecraft.util.SoundEvent@43b45ce4 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 97 minecraft:block.slime.place net.minecraft.util.SoundEvent@73e93c3a | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 98 minecraft:block.slime.step net.minecraft.util.SoundEvent@1835b783 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 99 minecraft:block.snow.break net.minecraft.util.SoundEvent@456b140f | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 100 minecraft:block.snow.fall net.minecraft.util.SoundEvent@2459333a | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 101 minecraft:block.snow.hit net.minecraft.util.SoundEvent@1e6bd367 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 102 minecraft:block.snow.place net.minecraft.util.SoundEvent@2bd7f686 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 103 minecraft:block.snow.step net.minecraft.util.SoundEvent@3601549f | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 104 minecraft:block.stone.break net.minecraft.util.SoundEvent@5b2c7186 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 105 minecraft:block.stone.fall net.minecraft.util.SoundEvent@1b9c716f | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 106 minecraft:block.stone.hit net.minecraft.util.SoundEvent@f6bc75c | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 107 minecraft:block.stone.place net.minecraft.util.SoundEvent@33f2cf82 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 108 minecraft:block.stone.step net.minecraft.util.SoundEvent@bea283b | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 109 minecraft:block.stone_button.click_off net.minecraft.util.SoundEvent@73852720 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 110 minecraft:block.stone_button.click_on net.minecraft.util.SoundEvent@22854f2b | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 111 minecraft:block.stone_pressureplate.click_off net.minecraft.util.SoundEvent@7ae0a26 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 112 minecraft:block.stone_pressureplate.click_on net.minecraft.util.SoundEvent@5ddf5118 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 113 minecraft:block.tripwire.attach net.minecraft.util.SoundEvent@7b9d1a4 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 114 minecraft:block.tripwire.click_off net.minecraft.util.SoundEvent@fcd3a6f | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 115 minecraft:block.tripwire.click_on net.minecraft.util.SoundEvent@7845ee8a | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 116 minecraft:block.tripwire.detach net.minecraft.util.SoundEvent@5f35370b | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 117 minecraft:block.water.ambient net.minecraft.util.SoundEvent@16c8e9b8 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 118 minecraft:block.waterlily.place net.minecraft.util.SoundEvent@7030b74c | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 119 minecraft:block.wood.break net.minecraft.util.SoundEvent@27d6267e | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 120 minecraft:block.wood.fall net.minecraft.util.SoundEvent@512dc0e0 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 121 minecraft:block.wood.hit net.minecraft.util.SoundEvent@f96654 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 122 minecraft:block.wood.place net.minecraft.util.SoundEvent@75063bd0 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 123 minecraft:block.wood.step net.minecraft.util.SoundEvent@637506d8 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 124 minecraft:block.wood_button.click_off net.minecraft.util.SoundEvent@5c60f096 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 125 minecraft:block.wood_button.click_on net.minecraft.util.SoundEvent@1760e688 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 126 minecraft:block.wood_pressureplate.click_off net.minecraft.util.SoundEvent@53fc870f | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 127 minecraft:block.wood_pressureplate.click_on net.minecraft.util.SoundEvent@18f4086e | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 128 minecraft:block.wooden_door.close net.minecraft.util.SoundEvent@43cbafa6 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 129 minecraft:block.wooden_door.open net.minecraft.util.SoundEvent@538f45f1 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 130 minecraft:block.wooden_trapdoor.close net.minecraft.util.SoundEvent@64fc6470 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 131 minecraft:block.wooden_trapdoor.open net.minecraft.util.SoundEvent@5cf3a7f9 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 132 minecraft:enchant.thorns.hit net.minecraft.util.SoundEvent@42db955e | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 133 minecraft:entity.armorstand.break net.minecraft.util.SoundEvent@6bd2f039 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 134 minecraft:entity.armorstand.fall net.minecraft.util.SoundEvent@6c8ad6d7 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 135 minecraft:entity.armorstand.hit net.minecraft.util.SoundEvent@2d0778d0 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 136 minecraft:entity.armorstand.place net.minecraft.util.SoundEvent@33e8694b | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 137 minecraft:entity.arrow.hit net.minecraft.util.SoundEvent@4fc71437 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 138 minecraft:entity.arrow.hit_player net.minecraft.util.SoundEvent@75c15f76 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 139 minecraft:entity.arrow.shoot net.minecraft.util.SoundEvent@631678e6 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 140 minecraft:entity.bat.ambient net.minecraft.util.SoundEvent@1344f7fe | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 141 minecraft:entity.bat.death net.minecraft.util.SoundEvent@64d53f0d | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 142 minecraft:entity.bat.hurt net.minecraft.util.SoundEvent@1b10f60e | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 143 minecraft:entity.bat.loop net.minecraft.util.SoundEvent@4b916cc2 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 144 minecraft:entity.bat.takeoff net.minecraft.util.SoundEvent@7f5e9949 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 145 minecraft:entity.blaze.ambient net.minecraft.util.SoundEvent@323eecf8 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 146 minecraft:entity.blaze.burn net.minecraft.util.SoundEvent@2e02cc37 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 147 minecraft:entity.blaze.death net.minecraft.util.SoundEvent@6e355249 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 148 minecraft:entity.blaze.hurt net.minecraft.util.SoundEvent@652a1a17 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 149 minecraft:entity.blaze.shoot net.minecraft.util.SoundEvent@20b67366 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 150 minecraft:entity.boat.paddle_land net.minecraft.util.SoundEvent@186d6033 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 151 minecraft:entity.boat.paddle_water net.minecraft.util.SoundEvent@5c0ece6d | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 152 minecraft:entity.bobber.retrieve net.minecraft.util.SoundEvent@69419d59 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 153 minecraft:entity.bobber.splash net.minecraft.util.SoundEvent@7affee54 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 154 minecraft:entity.bobber.throw net.minecraft.util.SoundEvent@96075c0 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 155 minecraft:entity.cat.ambient net.minecraft.util.SoundEvent@2337bf27 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 156 minecraft:entity.cat.death net.minecraft.util.SoundEvent@4679554d | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 157 minecraft:entity.cat.hiss net.minecraft.util.SoundEvent@43719e98 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 158 minecraft:entity.cat.hurt net.minecraft.util.SoundEvent@49353d43 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 159 minecraft:entity.cat.purr net.minecraft.util.SoundEvent@57e57dc5 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 160 minecraft:entity.cat.purreow net.minecraft.util.SoundEvent@5bba9949 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 161 minecraft:entity.chicken.ambient net.minecraft.util.SoundEvent@147059f8 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 162 minecraft:entity.chicken.death net.minecraft.util.SoundEvent@744fb110 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 163 minecraft:entity.chicken.egg net.minecraft.util.SoundEvent@838e109 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 164 minecraft:entity.chicken.hurt net.minecraft.util.SoundEvent@7474196 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 165 minecraft:entity.chicken.step net.minecraft.util.SoundEvent@11ee671f | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 166 minecraft:entity.cow.ambient net.minecraft.util.SoundEvent@18209303 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 167 minecraft:entity.cow.death net.minecraft.util.SoundEvent@57df09a7 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 168 minecraft:entity.cow.hurt net.minecraft.util.SoundEvent@6aa9a93b | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 169 minecraft:entity.cow.milk net.minecraft.util.SoundEvent@81dfdee | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 170 minecraft:entity.cow.step net.minecraft.util.SoundEvent@14b9df65 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 171 minecraft:entity.creeper.death net.minecraft.util.SoundEvent@3b046e64 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 172 minecraft:entity.creeper.hurt net.minecraft.util.SoundEvent@1c43e84e | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 173 minecraft:entity.creeper.primed net.minecraft.util.SoundEvent@7bd694a5 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 174 minecraft:entity.donkey.ambient net.minecraft.util.SoundEvent@21ce2e4d | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 175 minecraft:entity.donkey.angry net.minecraft.util.SoundEvent@3921135e | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 176 minecraft:entity.donkey.chest net.minecraft.util.SoundEvent@3a239dac | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 177 minecraft:entity.donkey.death net.minecraft.util.SoundEvent@759f45f1 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 178 minecraft:entity.donkey.hurt net.minecraft.util.SoundEvent@2573b149 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 179 minecraft:entity.egg.throw net.minecraft.util.SoundEvent@1479ed5a | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 180 minecraft:entity.elder_guardian.ambient net.minecraft.util.SoundEvent@3211cc84 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 181 minecraft:entity.elder_guardian.ambient_land net.minecraft.util.SoundEvent@3d2eb7fa | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 182 minecraft:entity.elder_guardian.curse net.minecraft.util.SoundEvent@56fa0ef | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 183 minecraft:entity.elder_guardian.death net.minecraft.util.SoundEvent@5e278e25 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 184 minecraft:entity.elder_guardian.death_land net.minecraft.util.SoundEvent@62ee1c89 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 185 minecraft:entity.elder_guardian.flop net.minecraft.util.SoundEvent@2ab7f649 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 186 minecraft:entity.elder_guardian.hurt net.minecraft.util.SoundEvent@52a74328 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 187 minecraft:entity.elder_guardian.hurt_land net.minecraft.util.SoundEvent@3093b9ff | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 188 minecraft:entity.enderdragon.ambient net.minecraft.util.SoundEvent@220be130 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 189 minecraft:entity.enderdragon.death net.minecraft.util.SoundEvent@379b4e86 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 190 minecraft:entity.enderdragon.flap net.minecraft.util.SoundEvent@5f4df55e | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 191 minecraft:entity.enderdragon.growl net.minecraft.util.SoundEvent@72bce309 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 192 minecraft:entity.enderdragon.hurt net.minecraft.util.SoundEvent@f439e0f | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 193 minecraft:entity.enderdragon.shoot net.minecraft.util.SoundEvent@62410e1f | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 194 minecraft:entity.enderdragon_fireball.explode net.minecraft.util.SoundEvent@5296f00c | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 195 minecraft:entity.endereye.death net.minecraft.util.SoundEvent@4727e5fc | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 196 minecraft:entity.endereye.launch net.minecraft.util.SoundEvent@5487a8f1 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 197 minecraft:entity.endermen.ambient net.minecraft.util.SoundEvent@3e5c7588 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 198 minecraft:entity.endermen.death net.minecraft.util.SoundEvent@5b2ff4df | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 199 minecraft:entity.endermen.hurt net.minecraft.util.SoundEvent@23dff243 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 200 minecraft:entity.endermen.scream net.minecraft.util.SoundEvent@4af606e9 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 201 minecraft:entity.endermen.stare net.minecraft.util.SoundEvent@17dbca0a | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 202 minecraft:entity.endermen.teleport net.minecraft.util.SoundEvent@33765d22 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 203 minecraft:entity.endermite.ambient net.minecraft.util.SoundEvent@6f67ece5 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 204 minecraft:entity.endermite.death net.minecraft.util.SoundEvent@155c7eae | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 205 minecraft:entity.endermite.hurt net.minecraft.util.SoundEvent@5c9e6d95 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 206 minecraft:entity.endermite.step net.minecraft.util.SoundEvent@5d00b469 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 207 minecraft:entity.enderpearl.throw net.minecraft.util.SoundEvent@dd07be8 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 208 minecraft:entity.evocation_fangs.attack net.minecraft.util.SoundEvent@7b8fcdf2 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 209 minecraft:entity.evocation_illager.ambient net.minecraft.util.SoundEvent@54d2f5d3 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 210 minecraft:entity.evocation_illager.cast_spell net.minecraft.util.SoundEvent@c29b0dc | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 211 minecraft:entity.evocation_illager.death net.minecraft.util.SoundEvent@228958a | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 212 minecraft:entity.evocation_illager.hurt net.minecraft.util.SoundEvent@7cd3860 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 213 minecraft:entity.evocation_illager.prepare_attack net.minecraft.util.SoundEvent@44f23927 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 214 minecraft:entity.evocation_illager.prepare_summon net.minecraft.util.SoundEvent@59cde35 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 215 minecraft:entity.evocation_illager.prepare_wololo net.minecraft.util.SoundEvent@43de9fc9 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 216 minecraft:entity.experience_bottle.throw net.minecraft.util.SoundEvent@2d3eb1ea | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 217 minecraft:entity.experience_orb.pickup net.minecraft.util.SoundEvent@78508e6b | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 218 minecraft:entity.firework.blast net.minecraft.util.SoundEvent@1bde9a22 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 219 minecraft:entity.firework.blast_far net.minecraft.util.SoundEvent@2cc97e47 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 220 minecraft:entity.firework.large_blast net.minecraft.util.SoundEvent@74a03bd5 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 221 minecraft:entity.firework.large_blast_far net.minecraft.util.SoundEvent@87fc0fc | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 222 minecraft:entity.firework.launch net.minecraft.util.SoundEvent@671f545b | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 223 minecraft:entity.firework.shoot net.minecraft.util.SoundEvent@c335b9 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 224 minecraft:entity.firework.twinkle net.minecraft.util.SoundEvent@75c8d8e7 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 225 minecraft:entity.firework.twinkle_far net.minecraft.util.SoundEvent@3c68e82 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 226 minecraft:entity.generic.big_fall net.minecraft.util.SoundEvent@1e66bf2d | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 227 minecraft:entity.generic.burn net.minecraft.util.SoundEvent@7112fa5 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 228 minecraft:entity.generic.death net.minecraft.util.SoundEvent@342dc040 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 229 minecraft:entity.generic.drink net.minecraft.util.SoundEvent@3a8ead9 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 230 minecraft:entity.generic.eat net.minecraft.util.SoundEvent@281ca256 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 231 minecraft:entity.generic.explode net.minecraft.util.SoundEvent@26feccf7 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 232 minecraft:entity.generic.extinguish_fire net.minecraft.util.SoundEvent@7c8b37a8 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 233 minecraft:entity.generic.hurt net.minecraft.util.SoundEvent@3831f4c2 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 234 minecraft:entity.generic.small_fall net.minecraft.util.SoundEvent@75f2ff80 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 235 minecraft:entity.generic.splash net.minecraft.util.SoundEvent@253b1cbd | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 236 minecraft:entity.generic.swim net.minecraft.util.SoundEvent@a859c5 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 237 minecraft:entity.ghast.ambient net.minecraft.util.SoundEvent@37083af6 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 238 minecraft:entity.ghast.death net.minecraft.util.SoundEvent@55e4dd68 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 239 minecraft:entity.ghast.hurt net.minecraft.util.SoundEvent@28c7fd9d | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 240 minecraft:entity.ghast.scream net.minecraft.util.SoundEvent@6a63ff31 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 241 minecraft:entity.ghast.shoot net.minecraft.util.SoundEvent@1c4aa701 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 242 minecraft:entity.ghast.warn net.minecraft.util.SoundEvent@6f36267d | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 243 minecraft:entity.guardian.ambient net.minecraft.util.SoundEvent@788a0513 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 244 minecraft:entity.guardian.ambient_land net.minecraft.util.SoundEvent@d65e744 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 245 minecraft:entity.guardian.attack net.minecraft.util.SoundEvent@44de3b46 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 246 minecraft:entity.guardian.death net.minecraft.util.SoundEvent@1a85e86e | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 247 minecraft:entity.guardian.death_land net.minecraft.util.SoundEvent@320fc4b0 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 248 minecraft:entity.guardian.flop net.minecraft.util.SoundEvent@10724a72 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 249 minecraft:entity.guardian.hurt net.minecraft.util.SoundEvent@25435731 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 250 minecraft:entity.guardian.hurt_land net.minecraft.util.SoundEvent@10301d6f | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 251 minecraft:entity.horse.ambient net.minecraft.util.SoundEvent@5cd6719d | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 252 minecraft:entity.horse.angry net.minecraft.util.SoundEvent@5ef591af | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 253 minecraft:entity.horse.armor net.minecraft.util.SoundEvent@61b0af9f | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 254 minecraft:entity.horse.breathe net.minecraft.util.SoundEvent@71fb1da3 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 255 minecraft:entity.horse.death net.minecraft.util.SoundEvent@1ecec098 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 256 minecraft:entity.horse.eat net.minecraft.util.SoundEvent@6cc44207 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 257 minecraft:entity.horse.gallop net.minecraft.util.SoundEvent@8ecc457 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 258 minecraft:entity.horse.hurt net.minecraft.util.SoundEvent@21d3d6ec | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 259 minecraft:entity.horse.jump net.minecraft.util.SoundEvent@49f1184e | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 260 minecraft:entity.horse.land net.minecraft.util.SoundEvent@7ebaf0d | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 261 minecraft:entity.horse.saddle net.minecraft.util.SoundEvent@694b1ddb | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 262 minecraft:entity.horse.step net.minecraft.util.SoundEvent@5690c2a8 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 263 minecraft:entity.horse.step_wood net.minecraft.util.SoundEvent@17e2835c | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 264 minecraft:entity.hostile.big_fall net.minecraft.util.SoundEvent@4d2bc56a | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 265 minecraft:entity.hostile.death net.minecraft.util.SoundEvent@7cbfbcd1 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 266 minecraft:entity.hostile.hurt net.minecraft.util.SoundEvent@2c6aa46c | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 267 minecraft:entity.hostile.small_fall net.minecraft.util.SoundEvent@2f112ade | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 268 minecraft:entity.hostile.splash net.minecraft.util.SoundEvent@3c82bac3 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 269 minecraft:entity.hostile.swim net.minecraft.util.SoundEvent@3ddac0b6 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 270 minecraft:entity.husk.ambient net.minecraft.util.SoundEvent@446a5aa5 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 271 minecraft:entity.husk.death net.minecraft.util.SoundEvent@628bcf2c | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 272 minecraft:entity.husk.hurt net.minecraft.util.SoundEvent@4b76251c | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 273 minecraft:entity.husk.step net.minecraft.util.SoundEvent@20c283b4 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 274 minecraft:entity.illusion_illager.ambient net.minecraft.util.SoundEvent@366b4a7b | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 275 minecraft:entity.illusion_illager.cast_spell net.minecraft.util.SoundEvent@a251135 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 276 minecraft:entity.illusion_illager.death net.minecraft.util.SoundEvent@70819ba8 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 277 minecraft:entity.illusion_illager.hurt net.minecraft.util.SoundEvent@446a692f | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 278 minecraft:entity.illusion_illager.mirror_move net.minecraft.util.SoundEvent@283ecb4b | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 279 minecraft:entity.illusion_illager.prepare_blindness net.minecraft.util.SoundEvent@a30dbc0 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 280 minecraft:entity.illusion_illager.prepare_mirror net.minecraft.util.SoundEvent@76104df5 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 281 minecraft:entity.irongolem.attack net.minecraft.util.SoundEvent@61246109 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 282 minecraft:entity.irongolem.death net.minecraft.util.SoundEvent@3f9e8af5 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 283 minecraft:entity.irongolem.hurt net.minecraft.util.SoundEvent@337cb81d | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 284 minecraft:entity.irongolem.step net.minecraft.util.SoundEvent@47772462 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 285 minecraft:entity.item.break net.minecraft.util.SoundEvent@59929ac | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 286 minecraft:entity.item.pickup net.minecraft.util.SoundEvent@4e9bd2c8 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 287 minecraft:entity.itemframe.add_item net.minecraft.util.SoundEvent@18f13756 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 288 minecraft:entity.itemframe.break net.minecraft.util.SoundEvent@665b441e | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 289 minecraft:entity.itemframe.place net.minecraft.util.SoundEvent@2ac3d530 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 290 minecraft:entity.itemframe.remove_item net.minecraft.util.SoundEvent@3a5e4f32 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 291 minecraft:entity.itemframe.rotate_item net.minecraft.util.SoundEvent@2b0494a8 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 292 minecraft:entity.leashknot.break net.minecraft.util.SoundEvent@17c34e62 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 293 minecraft:entity.leashknot.place net.minecraft.util.SoundEvent@239d73ff | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 294 minecraft:entity.lightning.impact net.minecraft.util.SoundEvent@6bf28f61 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 295 minecraft:entity.lightning.thunder net.minecraft.util.SoundEvent@64dcf763 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 296 minecraft:entity.lingeringpotion.throw net.minecraft.util.SoundEvent@696105c4 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 297 minecraft:entity.llama.ambient net.minecraft.util.SoundEvent@21ab919c | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 298 minecraft:entity.llama.angry net.minecraft.util.SoundEvent@5edd9b4f | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 299 minecraft:entity.llama.chest net.minecraft.util.SoundEvent@5db90818 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 300 minecraft:entity.llama.death net.minecraft.util.SoundEvent@3c17794e | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 301 minecraft:entity.llama.eat net.minecraft.util.SoundEvent@414d2821 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 302 minecraft:entity.llama.hurt net.minecraft.util.SoundEvent@7378c4a4 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 303 minecraft:entity.llama.spit net.minecraft.util.SoundEvent@6694fb1b | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 304 minecraft:entity.llama.step net.minecraft.util.SoundEvent@61ce238e | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 305 minecraft:entity.llama.swag net.minecraft.util.SoundEvent@49ea13b6 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 306 minecraft:entity.magmacube.death net.minecraft.util.SoundEvent@7c02b3cb | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 307 minecraft:entity.magmacube.hurt net.minecraft.util.SoundEvent@3d8fd373 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 308 minecraft:entity.magmacube.jump net.minecraft.util.SoundEvent@2dcd451f | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 309 minecraft:entity.magmacube.squish net.minecraft.util.SoundEvent@342394b3 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 310 minecraft:entity.minecart.inside net.minecraft.util.SoundEvent@5dd6f517 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 311 minecraft:entity.minecart.riding net.minecraft.util.SoundEvent@1e01b195 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 312 minecraft:entity.mooshroom.shear net.minecraft.util.SoundEvent@59a3eaf7 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 313 minecraft:entity.mule.ambient net.minecraft.util.SoundEvent@718d6b7c | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 314 minecraft:entity.mule.chest net.minecraft.util.SoundEvent@1b994617 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 315 minecraft:entity.mule.death net.minecraft.util.SoundEvent@807c1e8 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 316 minecraft:entity.mule.hurt net.minecraft.util.SoundEvent@4eb5764d | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 317 minecraft:entity.painting.break net.minecraft.util.SoundEvent@54f9326c | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 318 minecraft:entity.painting.place net.minecraft.util.SoundEvent@5016f1a | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 319 minecraft:entity.parrot.ambient net.minecraft.util.SoundEvent@33bfe6d3 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 320 minecraft:entity.parrot.death net.minecraft.util.SoundEvent@56dde9f7 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 321 minecraft:entity.parrot.eat net.minecraft.util.SoundEvent@4b2acb12 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 322 minecraft:entity.parrot.fly net.minecraft.util.SoundEvent@455d04d2 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 323 minecraft:entity.parrot.hurt net.minecraft.util.SoundEvent@998fbd4 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 324 minecraft:entity.parrot.imitate.blaze net.minecraft.util.SoundEvent@30333941 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 325 minecraft:entity.parrot.imitate.creeper net.minecraft.util.SoundEvent@2d5c160e | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 326 minecraft:entity.parrot.imitate.elder_guardian net.minecraft.util.SoundEvent@8afce3 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 327 minecraft:entity.parrot.imitate.enderdragon net.minecraft.util.SoundEvent@4e02f17d | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 328 minecraft:entity.parrot.imitate.enderman net.minecraft.util.SoundEvent@675230cd | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 329 minecraft:entity.parrot.imitate.endermite net.minecraft.util.SoundEvent@2a73a64f | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 330 minecraft:entity.parrot.imitate.evocation_illager net.minecraft.util.SoundEvent@7dc92a06 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 331 minecraft:entity.parrot.imitate.ghast net.minecraft.util.SoundEvent@2419a5db | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 332 minecraft:entity.parrot.imitate.husk net.minecraft.util.SoundEvent@52bb3dcd | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 333 minecraft:entity.parrot.imitate.illusion_illager net.minecraft.util.SoundEvent@654db80b | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 334 minecraft:entity.parrot.imitate.magmacube net.minecraft.util.SoundEvent@516037be | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 335 minecraft:entity.parrot.imitate.polar_bear net.minecraft.util.SoundEvent@383e6734 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 336 minecraft:entity.parrot.imitate.shulker net.minecraft.util.SoundEvent@336070ab | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 337 minecraft:entity.parrot.imitate.silverfish net.minecraft.util.SoundEvent@3be50b2c | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 338 minecraft:entity.parrot.imitate.skeleton net.minecraft.util.SoundEvent@6be80629 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 339 minecraft:entity.parrot.imitate.slime net.minecraft.util.SoundEvent@20a4cba7 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 340 minecraft:entity.parrot.imitate.spider net.minecraft.util.SoundEvent@10f10230 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 341 minecraft:entity.parrot.imitate.stray net.minecraft.util.SoundEvent@3dec769 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 342 minecraft:entity.parrot.imitate.vex net.minecraft.util.SoundEvent@282c5075 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 343 minecraft:entity.parrot.imitate.vindication_illager net.minecraft.util.SoundEvent@2ed35f24 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 344 minecraft:entity.parrot.imitate.witch net.minecraft.util.SoundEvent@362b384c | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 345 minecraft:entity.parrot.imitate.wither net.minecraft.util.SoundEvent@433b546f | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 346 minecraft:entity.parrot.imitate.wither_skeleton net.minecraft.util.SoundEvent@9de1b85 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 347 minecraft:entity.parrot.imitate.wolf net.minecraft.util.SoundEvent@3d405fe5 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 348 minecraft:entity.parrot.imitate.zombie net.minecraft.util.SoundEvent@52c6e959 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 349 minecraft:entity.parrot.imitate.zombie_pigman net.minecraft.util.SoundEvent@4b475742 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 350 minecraft:entity.parrot.imitate.zombie_villager net.minecraft.util.SoundEvent@323c6f9c | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 351 minecraft:entity.parrot.step net.minecraft.util.SoundEvent@dbca149 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 352 minecraft:entity.pig.ambient net.minecraft.util.SoundEvent@68550d86 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 353 minecraft:entity.pig.death net.minecraft.util.SoundEvent@19d9ba89 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 354 minecraft:entity.pig.hurt net.minecraft.util.SoundEvent@484876a1 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 355 minecraft:entity.pig.saddle net.minecraft.util.SoundEvent@20163008 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 356 minecraft:entity.pig.step net.minecraft.util.SoundEvent@60ef30b1 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 357 minecraft:entity.player.attack.crit net.minecraft.util.SoundEvent@3436d3d7 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 358 minecraft:entity.player.attack.knockback net.minecraft.util.SoundEvent@3f40568e | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 359 minecraft:entity.player.attack.nodamage net.minecraft.util.SoundEvent@2e47a71e | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 360 minecraft:entity.player.attack.strong net.minecraft.util.SoundEvent@37b470df | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 361 minecraft:entity.player.attack.sweep net.minecraft.util.SoundEvent@359ea595 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 362 minecraft:entity.player.attack.weak net.minecraft.util.SoundEvent@8d7718e | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 363 minecraft:entity.player.big_fall net.minecraft.util.SoundEvent@1bbb48dd | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 364 minecraft:entity.player.breath net.minecraft.util.SoundEvent@f9de1fd | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 365 minecraft:entity.player.burp net.minecraft.util.SoundEvent@4fef4f96 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 366 minecraft:entity.player.death net.minecraft.util.SoundEvent@7c871ce4 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 367 minecraft:entity.player.hurt net.minecraft.util.SoundEvent@3d3b4e09 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 368 minecraft:entity.player.hurt_drown net.minecraft.util.SoundEvent@5dc9d25a | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 369 minecraft:entity.player.hurt_on_fire net.minecraft.util.SoundEvent@686fb58a | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 370 minecraft:entity.player.levelup net.minecraft.util.SoundEvent@2c4be45f | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 371 minecraft:entity.player.small_fall net.minecraft.util.SoundEvent@4be7acd9 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 372 minecraft:entity.player.splash net.minecraft.util.SoundEvent@58afecfd | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 373 minecraft:entity.player.swim net.minecraft.util.SoundEvent@4d79d187 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 374 minecraft:entity.polar_bear.ambient net.minecraft.util.SoundEvent@3e63bd6b | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 375 minecraft:entity.polar_bear.baby_ambient net.minecraft.util.SoundEvent@48144f1a | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 376 minecraft:entity.polar_bear.death net.minecraft.util.SoundEvent@6f7b8ae1 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 377 minecraft:entity.polar_bear.hurt net.minecraft.util.SoundEvent@6c8d8b60 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 378 minecraft:entity.polar_bear.step net.minecraft.util.SoundEvent@4fa6fb7f | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 379 minecraft:entity.polar_bear.warning net.minecraft.util.SoundEvent@2520010e | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 380 minecraft:entity.rabbit.ambient net.minecraft.util.SoundEvent@163fbbc9 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 381 minecraft:entity.rabbit.attack net.minecraft.util.SoundEvent@1669f4e5 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 382 minecraft:entity.rabbit.death net.minecraft.util.SoundEvent@6e6c8854 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 383 minecraft:entity.rabbit.hurt net.minecraft.util.SoundEvent@4be1dce6 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 384 minecraft:entity.rabbit.jump net.minecraft.util.SoundEvent@206bd7a0 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 385 minecraft:entity.sheep.ambient net.minecraft.util.SoundEvent@79fcd194 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 386 minecraft:entity.sheep.death net.minecraft.util.SoundEvent@73d8c8d7 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 387 minecraft:entity.sheep.hurt net.minecraft.util.SoundEvent@361b3ca6 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 388 minecraft:entity.sheep.shear net.minecraft.util.SoundEvent@48333b12 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 389 minecraft:entity.sheep.step net.minecraft.util.SoundEvent@575c23f1 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 390 minecraft:entity.shulker.ambient net.minecraft.util.SoundEvent@62f7d7bd | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 391 minecraft:entity.shulker.close net.minecraft.util.SoundEvent@de63949 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 392 minecraft:entity.shulker.death net.minecraft.util.SoundEvent@5c5c784c | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 393 minecraft:entity.shulker.hurt net.minecraft.util.SoundEvent@6a299b9d | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 394 minecraft:entity.shulker.hurt_closed net.minecraft.util.SoundEvent@363fe35a | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 395 minecraft:entity.shulker.open net.minecraft.util.SoundEvent@a2fb8a5 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 396 minecraft:entity.shulker.shoot net.minecraft.util.SoundEvent@350e3fb4 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 397 minecraft:entity.shulker.teleport net.minecraft.util.SoundEvent@13ddaffb | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 398 minecraft:entity.shulker_bullet.hit net.minecraft.util.SoundEvent@5a31abe9 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 399 minecraft:entity.shulker_bullet.hurt net.minecraft.util.SoundEvent@2dacda9a | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 400 minecraft:entity.silverfish.ambient net.minecraft.util.SoundEvent@699bb304 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 401 minecraft:entity.silverfish.death net.minecraft.util.SoundEvent@17477bbb | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 402 minecraft:entity.silverfish.hurt net.minecraft.util.SoundEvent@40fee459 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 403 minecraft:entity.silverfish.step net.minecraft.util.SoundEvent@bcd9ed6 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 404 minecraft:entity.skeleton.ambient net.minecraft.util.SoundEvent@3ffa0f38 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 405 minecraft:entity.skeleton.death net.minecraft.util.SoundEvent@13cc31df | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 406 minecraft:entity.skeleton.hurt net.minecraft.util.SoundEvent@24a7d3d3 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 407 minecraft:entity.skeleton.shoot net.minecraft.util.SoundEvent@43fbc2bf | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 408 minecraft:entity.skeleton.step net.minecraft.util.SoundEvent@2c978637 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 409 minecraft:entity.skeleton_horse.ambient net.minecraft.util.SoundEvent@5e2718b3 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 410 minecraft:entity.skeleton_horse.death net.minecraft.util.SoundEvent@440461ef | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 411 minecraft:entity.skeleton_horse.hurt net.minecraft.util.SoundEvent@5977bdea | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 412 minecraft:entity.slime.attack net.minecraft.util.SoundEvent@49c13ecd | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 413 minecraft:entity.slime.death net.minecraft.util.SoundEvent@2f4545c6 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 414 minecraft:entity.slime.hurt net.minecraft.util.SoundEvent@482942d8 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 415 minecraft:entity.slime.jump net.minecraft.util.SoundEvent@2cd52eda | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 416 minecraft:entity.slime.squish net.minecraft.util.SoundEvent@6c225adb | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 417 minecraft:entity.small_magmacube.death net.minecraft.util.SoundEvent@69cc49ec | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 418 minecraft:entity.small_magmacube.hurt net.minecraft.util.SoundEvent@6b71e98f | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 419 minecraft:entity.small_magmacube.squish net.minecraft.util.SoundEvent@6ed7b9c5 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 420 minecraft:entity.small_slime.death net.minecraft.util.SoundEvent@105dc246 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 421 minecraft:entity.small_slime.hurt net.minecraft.util.SoundEvent@1b556a88 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 422 minecraft:entity.small_slime.jump net.minecraft.util.SoundEvent@7f8cd5fc | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 423 minecraft:entity.small_slime.squish net.minecraft.util.SoundEvent@2c465259 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 424 minecraft:entity.snowball.throw net.minecraft.util.SoundEvent@52f7fa65 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 425 minecraft:entity.snowman.ambient net.minecraft.util.SoundEvent@62c6db99 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 426 minecraft:entity.snowman.death net.minecraft.util.SoundEvent@7bfcc108 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 427 minecraft:entity.snowman.hurt net.minecraft.util.SoundEvent@65b680b4 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 428 minecraft:entity.snowman.shoot net.minecraft.util.SoundEvent@87f6ab5 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 429 minecraft:entity.spider.ambient net.minecraft.util.SoundEvent@5c316230 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 430 minecraft:entity.spider.death net.minecraft.util.SoundEvent@41581c3f | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 431 minecraft:entity.spider.hurt net.minecraft.util.SoundEvent@10ba9780 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 432 minecraft:entity.spider.step net.minecraft.util.SoundEvent@63636de0 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 433 minecraft:entity.splash_potion.break net.minecraft.util.SoundEvent@3494a35e | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 434 minecraft:entity.splash_potion.throw net.minecraft.util.SoundEvent@352ce817 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 435 minecraft:entity.squid.ambient net.minecraft.util.SoundEvent@716e6fa5 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 436 minecraft:entity.squid.death net.minecraft.util.SoundEvent@91a1005 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 437 minecraft:entity.squid.hurt net.minecraft.util.SoundEvent@1885dc2b | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 438 minecraft:entity.stray.ambient net.minecraft.util.SoundEvent@4a3bf37c | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 439 minecraft:entity.stray.death net.minecraft.util.SoundEvent@48aaaed9 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 440 minecraft:entity.stray.hurt net.minecraft.util.SoundEvent@116915f1 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 441 minecraft:entity.stray.step net.minecraft.util.SoundEvent@27bbe773 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 442 minecraft:entity.tnt.primed net.minecraft.util.SoundEvent@328e50eb | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 443 minecraft:entity.vex.ambient net.minecraft.util.SoundEvent@2fcffc05 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 444 minecraft:entity.vex.charge net.minecraft.util.SoundEvent@76d0a290 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 445 minecraft:entity.vex.death net.minecraft.util.SoundEvent@ea84346 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 446 minecraft:entity.vex.hurt net.minecraft.util.SoundEvent@4e614370 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 447 minecraft:entity.villager.ambient net.minecraft.util.SoundEvent@1e1ea16d | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 448 minecraft:entity.villager.death net.minecraft.util.SoundEvent@6da9541c | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 449 minecraft:entity.villager.hurt net.minecraft.util.SoundEvent@2157889c | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 450 minecraft:entity.villager.no net.minecraft.util.SoundEvent@65e92505 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 451 minecraft:entity.villager.trading net.minecraft.util.SoundEvent@e97f51c | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 452 minecraft:entity.villager.yes net.minecraft.util.SoundEvent@29394966 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 453 minecraft:entity.vindication_illager.ambient net.minecraft.util.SoundEvent@343727b5 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 454 minecraft:entity.vindication_illager.death net.minecraft.util.SoundEvent@18dafd3b | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 455 minecraft:entity.vindication_illager.hurt net.minecraft.util.SoundEvent@2954c429 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 456 minecraft:entity.witch.ambient net.minecraft.util.SoundEvent@4a45ca1c | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 457 minecraft:entity.witch.death net.minecraft.util.SoundEvent@4742466e | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 458 minecraft:entity.witch.drink net.minecraft.util.SoundEvent@83e5898 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 459 minecraft:entity.witch.hurt net.minecraft.util.SoundEvent@7c4a03a | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 460 minecraft:entity.witch.throw net.minecraft.util.SoundEvent@63b58ff4 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 461 minecraft:entity.wither.ambient net.minecraft.util.SoundEvent@3691d4da | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 462 minecraft:entity.wither.break_block net.minecraft.util.SoundEvent@4c91a008 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 463 minecraft:entity.wither.death net.minecraft.util.SoundEvent@6ef61cd0 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 464 minecraft:entity.wither.hurt net.minecraft.util.SoundEvent@2173e4d5 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 465 minecraft:entity.wither.shoot net.minecraft.util.SoundEvent@197cc325 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 466 minecraft:entity.wither.spawn net.minecraft.util.SoundEvent@582ca1e2 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 467 minecraft:entity.wither_skeleton.ambient net.minecraft.util.SoundEvent@66226ab | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 468 minecraft:entity.wither_skeleton.death net.minecraft.util.SoundEvent@38093ffe | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 469 minecraft:entity.wither_skeleton.hurt net.minecraft.util.SoundEvent@4713b631 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 470 minecraft:entity.wither_skeleton.step net.minecraft.util.SoundEvent@7a0d2c80 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 471 minecraft:entity.wolf.ambient net.minecraft.util.SoundEvent@6d4d0a14 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 472 minecraft:entity.wolf.death net.minecraft.util.SoundEvent@1cca3e8c | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 473 minecraft:entity.wolf.growl net.minecraft.util.SoundEvent@46b2a11a | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 474 minecraft:entity.wolf.howl net.minecraft.util.SoundEvent@55c8fc60 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 475 minecraft:entity.wolf.hurt net.minecraft.util.SoundEvent@50d05167 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 476 minecraft:entity.wolf.pant net.minecraft.util.SoundEvent@1da32baf | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 477 minecraft:entity.wolf.shake net.minecraft.util.SoundEvent@4e4af370 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 478 minecraft:entity.wolf.step net.minecraft.util.SoundEvent@5cf33d25 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 479 minecraft:entity.wolf.whine net.minecraft.util.SoundEvent@efa04b5 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 480 minecraft:entity.zombie.ambient net.minecraft.util.SoundEvent@a80a896 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 481 minecraft:entity.zombie.attack_door_wood net.minecraft.util.SoundEvent@13c81bc5 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 482 minecraft:entity.zombie.attack_iron_door net.minecraft.util.SoundEvent@5617168c | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 483 minecraft:entity.zombie.break_door_wood net.minecraft.util.SoundEvent@8167f57 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 484 minecraft:entity.zombie.death net.minecraft.util.SoundEvent@75da2db | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 485 minecraft:entity.zombie.hurt net.minecraft.util.SoundEvent@541897c6 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 486 minecraft:entity.zombie.infect net.minecraft.util.SoundEvent@3ad558bf | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 487 minecraft:entity.zombie.step net.minecraft.util.SoundEvent@1826475 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 488 minecraft:entity.zombie_horse.ambient net.minecraft.util.SoundEvent@6ba355e4 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 489 minecraft:entity.zombie_horse.death net.minecraft.util.SoundEvent@7b1559f1 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 490 minecraft:entity.zombie_horse.hurt net.minecraft.util.SoundEvent@6b15e68c | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 491 minecraft:entity.zombie_pig.ambient net.minecraft.util.SoundEvent@79a68657 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 492 minecraft:entity.zombie_pig.angry net.minecraft.util.SoundEvent@8dbf0f2 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 493 minecraft:entity.zombie_pig.death net.minecraft.util.SoundEvent@59d0fac9 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 494 minecraft:entity.zombie_pig.hurt net.minecraft.util.SoundEvent@1d3546f9 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 495 minecraft:entity.zombie_villager.ambient net.minecraft.util.SoundEvent@50ecef36 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 496 minecraft:entity.zombie_villager.converted net.minecraft.util.SoundEvent@767d9b9 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 497 minecraft:entity.zombie_villager.cure net.minecraft.util.SoundEvent@593f7d2e | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 498 minecraft:entity.zombie_villager.death net.minecraft.util.SoundEvent@6e8aea7e | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 499 minecraft:entity.zombie_villager.hurt net.minecraft.util.SoundEvent@59282dc6 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 500 minecraft:entity.zombie_villager.step net.minecraft.util.SoundEvent@603b9d4b | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 501 minecraft:item.armor.equip_chain net.minecraft.util.SoundEvent@42cf5a6f | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 502 minecraft:item.armor.equip_diamond net.minecraft.util.SoundEvent@7b2f8152 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 503 minecraft:item.armor.equip_elytra net.minecraft.util.SoundEvent@6371c5ec | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 504 minecraft:item.armor.equip_generic net.minecraft.util.SoundEvent@5f9ccd0c | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 505 minecraft:item.armor.equip_gold net.minecraft.util.SoundEvent@6738e8b2 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 506 minecraft:item.armor.equip_iron net.minecraft.util.SoundEvent@609ad016 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 507 minecraft:item.armor.equip_leather net.minecraft.util.SoundEvent@da9374c | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 508 minecraft:item.bottle.empty net.minecraft.util.SoundEvent@34647f58 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 509 minecraft:item.bottle.fill net.minecraft.util.SoundEvent@14b96c1e | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 510 minecraft:item.bottle.fill_dragonbreath net.minecraft.util.SoundEvent@229514ff | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 511 minecraft:item.bucket.empty net.minecraft.util.SoundEvent@664254b6 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 512 minecraft:item.bucket.empty_lava net.minecraft.util.SoundEvent@714b6999 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 513 minecraft:item.bucket.fill net.minecraft.util.SoundEvent@2e4d2232 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 514 minecraft:item.bucket.fill_lava net.minecraft.util.SoundEvent@24f5e9e8 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 515 minecraft:item.chorus_fruit.teleport net.minecraft.util.SoundEvent@50e6ee24 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 516 minecraft:item.elytra.flying net.minecraft.util.SoundEvent@7acb5200 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 517 minecraft:item.firecharge.use net.minecraft.util.SoundEvent@3d50a3d9 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 518 minecraft:item.flintandsteel.use net.minecraft.util.SoundEvent@3661b732 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 519 minecraft:item.hoe.till net.minecraft.util.SoundEvent@5111f814 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 520 minecraft:item.shield.block net.minecraft.util.SoundEvent@71eafb64 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 521 minecraft:item.shield.break net.minecraft.util.SoundEvent@491cc0eb | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 522 minecraft:item.shovel.flatten net.minecraft.util.SoundEvent@727f36dd | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 523 minecraft:item.totem.use net.minecraft.util.SoundEvent@2c70a1de | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 524 minecraft:music.creative net.minecraft.util.SoundEvent@ae74eef | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 525 minecraft:music.credits net.minecraft.util.SoundEvent@2553dcc0 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 526 minecraft:music.dragon net.minecraft.util.SoundEvent@2e91cf69 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 527 minecraft:music.end net.minecraft.util.SoundEvent@746e534 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 528 minecraft:music.game net.minecraft.util.SoundEvent@37665305 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 529 minecraft:music.menu net.minecraft.util.SoundEvent@c683cf5 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 530 minecraft:music.nether net.minecraft.util.SoundEvent@2c224096 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 531 minecraft:record.11 net.minecraft.util.SoundEvent@1cfd6f63 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 532 minecraft:record.13 net.minecraft.util.SoundEvent@1906f982 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 533 minecraft:record.blocks net.minecraft.util.SoundEvent@5444f1c3 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 534 minecraft:record.cat net.minecraft.util.SoundEvent@6a5c2d2d | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 535 minecraft:record.chirp net.minecraft.util.SoundEvent@1dadd172 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 536 minecraft:record.far net.minecraft.util.SoundEvent@33c9f1ac | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 537 minecraft:record.mall net.minecraft.util.SoundEvent@4070c4ff | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 538 minecraft:record.mellohi net.minecraft.util.SoundEvent@4bceac99 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 539 minecraft:record.stal net.minecraft.util.SoundEvent@389bc2d3 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 540 minecraft:record.strad net.minecraft.util.SoundEvent@442310fd | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 541 minecraft:record.wait net.minecraft.util.SoundEvent@23263ba | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 542 minecraft:record.ward net.minecraft.util.SoundEvent@3ca6bd01 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 543 minecraft:ui.button.click net.minecraft.util.SoundEvent@5acd7d1c | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 544 minecraft:ui.toast.in net.minecraft.util.SoundEvent@6b52a40 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 545 minecraft:ui.toast.out net.minecraft.util.SoundEvent@178ba69f | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 546 minecraft:ui.toast.challenge_complete net.minecraft.util.SoundEvent@1e4c4fda | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 547 minecraft:weather.rain net.minecraft.util.SoundEvent@2f58f492 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 548 minecraft:weather.rain.above net.minecraft.util.SoundEvent@903c13 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry Name : minecraft:potiontypes | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 0 minecraft:empty net.minecraft.potion.PotionType@14ce13fa | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 1 minecraft:water net.minecraft.potion.PotionType@296ddfc7 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 2 minecraft:mundane net.minecraft.potion.PotionType@29aa29f5 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 3 minecraft:thick net.minecraft.potion.PotionType@2a742ee4 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 4 minecraft:awkward net.minecraft.potion.PotionType@4e41b993 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 5 minecraft:night_vision net.minecraft.potion.PotionType@915c47b | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 6 minecraft:long_night_vision net.minecraft.potion.PotionType@7108b12d | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 7 minecraft:invisibility net.minecraft.potion.PotionType@7a80b2e6 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 8 minecraft:long_invisibility net.minecraft.potion.PotionType@394e0104 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 9 minecraft:leaping net.minecraft.potion.PotionType@1e5f3c4a | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 10 minecraft:long_leaping net.minecraft.potion.PotionType@2aea7775 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 11 minecraft:strong_leaping net.minecraft.potion.PotionType@5502f74c | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 12 minecraft:fire_resistance net.minecraft.potion.PotionType@1c8d9ac9 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 13 minecraft:long_fire_resistance net.minecraft.potion.PotionType@7b57587e | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 14 minecraft:swiftness net.minecraft.potion.PotionType@2ffc9be | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 15 minecraft:long_swiftness net.minecraft.potion.PotionType@4005e63a | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 16 minecraft:strong_swiftness net.minecraft.potion.PotionType@30ae6721 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 17 minecraft:slowness net.minecraft.potion.PotionType@717b4de2 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 18 minecraft:long_slowness net.minecraft.potion.PotionType@d35d84a | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 19 minecraft:water_breathing net.minecraft.potion.PotionType@626edbe0 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 20 minecraft:long_water_breathing net.minecraft.potion.PotionType@213a2fe3 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 21 minecraft:healing net.minecraft.potion.PotionType@a05727b | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 22 minecraft:strong_healing net.minecraft.potion.PotionType@29511cf9 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 23 minecraft:harming net.minecraft.potion.PotionType@3df473e8 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 24 minecraft:strong_harming net.minecraft.potion.PotionType@4dc10682 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 25 minecraft:poison net.minecraft.potion.PotionType@6cf633eb | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 26 minecraft:long_poison net.minecraft.potion.PotionType@4de14c58 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 27 minecraft:strong_poison net.minecraft.potion.PotionType@53141d3f | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 28 minecraft:regeneration net.minecraft.potion.PotionType@16a4e4c9 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 29 minecraft:long_regeneration net.minecraft.potion.PotionType@4b90f49d | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 30 minecraft:strong_regeneration net.minecraft.potion.PotionType@c54e23b | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 31 minecraft:strength net.minecraft.potion.PotionType@7fdaeb6b | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 32 minecraft:long_strength net.minecraft.potion.PotionType@4ee9daf5 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 33 minecraft:strong_strength net.minecraft.potion.PotionType@291fba9 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 34 minecraft:weakness net.minecraft.potion.PotionType@29ff84fa | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 35 minecraft:long_weakness net.minecraft.potion.PotionType@156b31d | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 36 minecraft:luck net.minecraft.potion.PotionType@168ffb0 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry Name : minecraft:enchantments | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 0 minecraft:protection net.minecraft.enchantment.EnchantmentProtection@38503309 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 1 minecraft:fire_protection net.minecraft.enchantment.EnchantmentProtection@4ad04b05 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 2 minecraft:feather_falling net.minecraft.enchantment.EnchantmentProtection@78b888df | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 3 minecraft:blast_protection net.minecraft.enchantment.EnchantmentProtection@6f2e0945 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 4 minecraft:projectile_protection net.minecraft.enchantment.EnchantmentProtection@565fa7d2 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 5 minecraft:respiration net.minecraft.enchantment.EnchantmentOxygen@72a45b71 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 6 minecraft:aqua_affinity net.minecraft.enchantment.EnchantmentWaterWorker@41dbf02b | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 7 minecraft:thorns net.minecraft.enchantment.EnchantmentThorns@750448fb | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 8 minecraft:depth_strider net.minecraft.enchantment.EnchantmentWaterWalker@1aaa3406 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 9 minecraft:frost_walker net.minecraft.enchantment.EnchantmentFrostWalker@548e70f0 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 10 minecraft:binding_curse net.minecraft.enchantment.EnchantmentBindingCurse@47483211 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 16 minecraft:sharpness net.minecraft.enchantment.EnchantmentDamage@5fb392e | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 17 minecraft:smite net.minecraft.enchantment.EnchantmentDamage@19e67cc2 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 18 minecraft:bane_of_arthropods net.minecraft.enchantment.EnchantmentDamage@62525579 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 19 minecraft:knockback net.minecraft.enchantment.EnchantmentKnockback@32ae890 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 20 minecraft:fire_aspect net.minecraft.enchantment.EnchantmentFireAspect@352bea0e | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 21 minecraft:looting net.minecraft.enchantment.EnchantmentLootBonus@5896899d | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 22 minecraft:sweeping net.minecraft.enchantment.EnchantmentSweepingEdge@a9f7cf8 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 32 minecraft:efficiency net.minecraft.enchantment.EnchantmentDigging@664217a8 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 33 minecraft:silk_touch net.minecraft.enchantment.EnchantmentUntouching@188500e9 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 34 minecraft:unbreaking net.minecraft.enchantment.EnchantmentDurability@7955b4d4 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 35 minecraft:fortune net.minecraft.enchantment.EnchantmentLootBonus@489e1887 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 48 minecraft:power net.minecraft.enchantment.EnchantmentArrowDamage@7f088b5c | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 49 minecraft:punch net.minecraft.enchantment.EnchantmentArrowKnockback@1cdbc986 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 50 minecraft:flame net.minecraft.enchantment.EnchantmentArrowFire@2d2697a8 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 51 minecraft:infinity net.minecraft.enchantment.EnchantmentArrowInfinite@5d04adc1 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 61 minecraft:luck_of_the_sea net.minecraft.enchantment.EnchantmentLootBonus@4c2812aa | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 62 minecraft:lure net.minecraft.enchantment.EnchantmentFishingSpeed@74832504 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 70 minecraft:mending net.minecraft.enchantment.EnchantmentMending@4ce5013a | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 71 minecraft:vanishing_curse net.minecraft.enchantment.EnchantmentVanishingCurse@301434fb | |
[00:24:07] [Server thread/TRACE] [FML]: Registry Name : minecraft:recipes | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 0 minecraft:armordye net.minecraft.item.crafting.RecipesArmorDyes@446dbf7b | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 1 minecraft:bookcloning net.minecraft.item.crafting.RecipeBookCloning@4a28b6d0 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 2 minecraft:mapcloning net.minecraft.item.crafting.RecipesMapCloning@1ff584d7 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 3 minecraft:mapextending net.minecraft.item.crafting.RecipesMapExtending@18247d9b | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 4 minecraft:fireworks net.minecraft.item.crafting.RecipeFireworks@61563a91 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 5 minecraft:repairitem net.minecraft.item.crafting.RecipeRepairItem@720cbb7d | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 6 minecraft:tippedarrow net.minecraft.item.crafting.RecipeTippedArrow@5642cd03 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 7 minecraft:bannerduplicate net.minecraft.item.crafting.RecipesBanners$RecipeDuplicatePattern@1285ec6 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 8 minecraft:banneraddpattern net.minecraft.item.crafting.RecipesBanners$RecipeAddPattern@2620f935 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 9 minecraft:shielddecoration net.minecraft.item.crafting.ShieldRecipes$Decoration@6a0ca728 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 10 minecraft:shulkerboxcoloring net.minecraft.item.crafting.ShulkerBoxRecipes$ShulkerBoxColoring@6f8c6694 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 11 minecraft:yellow_wool net.minecraft.item.crafting.ShapelessRecipes@726e780a | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 12 minecraft:yellow_stained_hardened_clay net.minecraft.item.crafting.ShapedRecipes@645a9649 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 13 minecraft:yellow_stained_glass_pane net.minecraft.item.crafting.ShapedRecipes@ab5c335 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 14 minecraft:yellow_stained_glass net.minecraft.item.crafting.ShapedRecipes@43165282 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 15 minecraft:yellow_dye_from_sunflower net.minecraft.item.crafting.ShapelessRecipes@3aaeb65b | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 16 minecraft:yellow_dye_from_dandelion net.minecraft.item.crafting.ShapelessRecipes@74c58f64 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 17 minecraft:yellow_concrete_powder net.minecraft.item.crafting.ShapelessRecipes@46e2a773 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 18 minecraft:yellow_carpet net.minecraft.item.crafting.ShapedRecipes@65595be7 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 19 minecraft:yellow_bed_from_white_bed net.minecraft.item.crafting.ShapelessRecipes@251d64d6 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 20 minecraft:yellow_bed net.minecraft.item.crafting.ShapedRecipes@186f7553 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 21 minecraft:yellow_banner net.minecraft.item.crafting.ShapedRecipes@18d6ac02 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 22 minecraft:writable_book net.minecraft.item.crafting.ShapelessRecipes@6e4d660 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 23 minecraft:wooden_sword net.minecraft.item.crafting.ShapedRecipes@541ea657 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 24 minecraft:wooden_shovel net.minecraft.item.crafting.ShapedRecipes@7a90796c | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 25 minecraft:wooden_pressure_plate net.minecraft.item.crafting.ShapedRecipes@375376d5 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 26 minecraft:wooden_pickaxe net.minecraft.item.crafting.ShapedRecipes@8ea1521 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 27 minecraft:wooden_hoe net.minecraft.item.crafting.ShapedRecipes@18e4bbec | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 28 minecraft:wooden_door net.minecraft.item.crafting.ShapedRecipes@35ca0dac | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 29 minecraft:wooden_button net.minecraft.item.crafting.ShapedRecipes@44faf689 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 30 minecraft:wooden_axe net.minecraft.item.crafting.ShapedRecipes@73344f4a | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 31 minecraft:white_stained_hardened_clay net.minecraft.item.crafting.ShapedRecipes@a6cb2c9 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 32 minecraft:white_stained_glass_pane net.minecraft.item.crafting.ShapedRecipes@786125a6 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 33 minecraft:white_stained_glass net.minecraft.item.crafting.ShapedRecipes@3426d8e2 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 34 minecraft:white_concrete_powder net.minecraft.item.crafting.ShapelessRecipes@17478cec | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 35 minecraft:white_carpet net.minecraft.item.crafting.ShapedRecipes@656c356c | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 36 minecraft:white_bed net.minecraft.item.crafting.ShapedRecipes@1100363d | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 37 minecraft:white_banner net.minecraft.item.crafting.ShapedRecipes@4190b111 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 38 minecraft:wheat net.minecraft.item.crafting.ShapedRecipes@3979ff82 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 39 minecraft:tripwire_hook net.minecraft.item.crafting.ShapedRecipes@708378cc | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 40 minecraft:trapped_chest net.minecraft.item.crafting.ShapelessRecipes@35266985 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 41 minecraft:trapdoor net.minecraft.item.crafting.ShapedRecipes@7f5582db | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 42 minecraft:torch net.minecraft.item.crafting.ShapedRecipes@74876292 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 43 minecraft:tnt_minecart net.minecraft.item.crafting.ShapedRecipes@30130a31 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 44 minecraft:tnt net.minecraft.item.crafting.ShapedRecipes@28cfbcc | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 45 minecraft:sugar net.minecraft.item.crafting.ShapedRecipes@7c6f91d2 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 46 minecraft:string_to_wool net.minecraft.item.crafting.ShapedRecipes@3c67b7a9 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 47 minecraft:stonebrick net.minecraft.item.crafting.ShapedRecipes@488ae823 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 48 minecraft:stone_sword net.minecraft.item.crafting.ShapedRecipes@5876cd86 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 49 minecraft:stone_stairs net.minecraft.item.crafting.ShapedRecipes@3d123d10 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 50 minecraft:stone_slab net.minecraft.item.crafting.ShapedRecipes@6eed5b68 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 51 minecraft:stone_shovel net.minecraft.item.crafting.ShapedRecipes@40f88929 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 52 minecraft:stone_pressure_plate net.minecraft.item.crafting.ShapedRecipes@104972a0 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 53 minecraft:stone_pickaxe net.minecraft.item.crafting.ShapedRecipes@fb69ab1 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 54 minecraft:stone_hoe net.minecraft.item.crafting.ShapedRecipes@43c25e89 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 55 minecraft:stone_button net.minecraft.item.crafting.ShapedRecipes@7207cb8b | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 56 minecraft:stone_brick_stairs net.minecraft.item.crafting.ShapedRecipes@53628ff6 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 57 minecraft:stone_brick_slab net.minecraft.item.crafting.ShapedRecipes@4a7b42db | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 58 minecraft:stone_axe net.minecraft.item.crafting.ShapedRecipes@7c3920a7 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 59 minecraft:sticky_piston net.minecraft.item.crafting.ShapedRecipes@656dc20f | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 60 minecraft:stick net.minecraft.item.crafting.ShapedRecipes@3da76d3a | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 61 minecraft:spruce_wooden_slab net.minecraft.item.crafting.ShapedRecipes@190677c6 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 62 minecraft:spruce_stairs net.minecraft.item.crafting.ShapedRecipes@36ba9aa3 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 63 minecraft:spruce_planks net.minecraft.item.crafting.ShapedRecipes@3c9e82a6 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 64 minecraft:spruce_fence_gate net.minecraft.item.crafting.ShapedRecipes@2e3fdf30 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 65 minecraft:spruce_fence net.minecraft.item.crafting.ShapedRecipes@1bef1304 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 66 minecraft:spruce_door net.minecraft.item.crafting.ShapedRecipes@f2df380 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 67 minecraft:spruce_boat net.minecraft.item.crafting.ShapedRecipes@2d487df4 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 68 minecraft:spectral_arrow net.minecraft.item.crafting.ShapedRecipes@71c77042 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 69 minecraft:speckled_melon net.minecraft.item.crafting.ShapedRecipes@1272f6d9 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 70 minecraft:snow_layer net.minecraft.item.crafting.ShapedRecipes@663d59ed | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 71 minecraft:snow net.minecraft.item.crafting.ShapedRecipes@6ca6d195 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 72 minecraft:smooth_sandstone net.minecraft.item.crafting.ShapedRecipes@7859bd9a | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 73 minecraft:smooth_red_sandstone net.minecraft.item.crafting.ShapedRecipes@e8bd42f | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 74 minecraft:slime_ball net.minecraft.item.crafting.ShapedRecipes@570f96b7 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 75 minecraft:slime net.minecraft.item.crafting.ShapedRecipes@7d487147 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 76 minecraft:sign net.minecraft.item.crafting.ShapedRecipes@2116e9cf | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 77 minecraft:shield net.minecraft.item.crafting.ShapedRecipes@bf2aa3f | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 78 minecraft:shears net.minecraft.item.crafting.ShapedRecipes@1f02ce3 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 79 minecraft:sea_lantern net.minecraft.item.crafting.ShapedRecipes@4d08fee2 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 80 minecraft:sandstone_stairs net.minecraft.item.crafting.ShapedRecipes@3872c85f | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 81 minecraft:sandstone_slab net.minecraft.item.crafting.ShapedRecipes@25198ead | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 82 minecraft:sandstone net.minecraft.item.crafting.ShapedRecipes@6770a229 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 83 minecraft:repeater net.minecraft.item.crafting.ShapedRecipes@5e9db5e7 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 84 minecraft:redstone_torch net.minecraft.item.crafting.ShapedRecipes@29ae939c | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 85 minecraft:redstone_lamp net.minecraft.item.crafting.ShapedRecipes@35ec675e | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 86 minecraft:redstone_block net.minecraft.item.crafting.ShapedRecipes@40f53ea | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 87 minecraft:redstone net.minecraft.item.crafting.ShapedRecipes@8cc5602 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 88 minecraft:red_wool net.minecraft.item.crafting.ShapelessRecipes@7d6b0636 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 89 minecraft:red_stained_hardened_clay net.minecraft.item.crafting.ShapedRecipes@4619e076 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 90 minecraft:red_stained_glass_pane net.minecraft.item.crafting.ShapedRecipes@751e7d99 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 91 minecraft:red_stained_glass net.minecraft.item.crafting.ShapedRecipes@59b5251d | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 92 minecraft:red_sandstone_stairs net.minecraft.item.crafting.ShapedRecipes@4420f4d4 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 93 minecraft:red_sandstone_slab net.minecraft.item.crafting.ShapedRecipes@517594dd | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 94 minecraft:red_sandstone net.minecraft.item.crafting.ShapedRecipes@7ebefdfa | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 95 minecraft:red_nether_brick net.minecraft.item.crafting.ShapedRecipes@52caa9d8 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 96 minecraft:red_dye_from_tulip net.minecraft.item.crafting.ShapelessRecipes@1f9af742 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 97 minecraft:red_dye_from_rose_bush net.minecraft.item.crafting.ShapelessRecipes@76737130 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 98 minecraft:red_dye_from_poppy net.minecraft.item.crafting.ShapelessRecipes@61cf142f | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 99 minecraft:red_dye_from_beetroot net.minecraft.item.crafting.ShapelessRecipes@980ac1f | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 100 minecraft:red_concrete_powder net.minecraft.item.crafting.ShapelessRecipes@19fdcaba | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 101 minecraft:red_carpet net.minecraft.item.crafting.ShapedRecipes@575a6540 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 102 minecraft:red_bed_from_white_bed net.minecraft.item.crafting.ShapelessRecipes@5a95090a | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 103 minecraft:red_bed net.minecraft.item.crafting.ShapedRecipes@30741e9b | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 104 minecraft:red_banner net.minecraft.item.crafting.ShapedRecipes@4c04188 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 105 minecraft:rail net.minecraft.item.crafting.ShapedRecipes@34f4fd04 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 106 minecraft:rabbit_stew_from_red_mushroom net.minecraft.item.crafting.ShapedRecipes@173e4b75 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 107 minecraft:rabbit_stew_from_brown_mushroom net.minecraft.item.crafting.ShapedRecipes@47c14360 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 108 minecraft:quartz_stairs net.minecraft.item.crafting.ShapedRecipes@7f5ba1bf | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 109 minecraft:quartz_slab net.minecraft.item.crafting.ShapedRecipes@547d3e8e | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 110 minecraft:quartz_block net.minecraft.item.crafting.ShapedRecipes@48028e11 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 111 minecraft:purpur_stairs net.minecraft.item.crafting.ShapedRecipes@943184c | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 112 minecraft:purpur_slab net.minecraft.item.crafting.ShapedRecipes@35d8a046 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 113 minecraft:purpur_pillar net.minecraft.item.crafting.ShapedRecipes@4b50ebea | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 114 minecraft:purpur_block net.minecraft.item.crafting.ShapedRecipes@31fd3db2 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 115 minecraft:purple_wool net.minecraft.item.crafting.ShapelessRecipes@22b8eaf0 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 116 minecraft:purple_stained_hardened_clay net.minecraft.item.crafting.ShapedRecipes@6c366d3 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 117 minecraft:purple_stained_glass_pane net.minecraft.item.crafting.ShapedRecipes@7acb0a44 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 118 minecraft:purple_stained_glass net.minecraft.item.crafting.ShapedRecipes@3759ea4d | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 119 minecraft:purple_shulker_box net.minecraft.item.crafting.ShapedRecipes@28d07fa4 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 120 minecraft:purple_dye net.minecraft.item.crafting.ShapelessRecipes@33c6c4f | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 121 minecraft:purple_concrete_powder net.minecraft.item.crafting.ShapelessRecipes@70d4c4ff | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 122 minecraft:purple_carpet net.minecraft.item.crafting.ShapedRecipes@4a6ac443 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 123 minecraft:purple_bed_from_white_bed net.minecraft.item.crafting.ShapelessRecipes@6da5cb1 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 124 minecraft:purple_bed net.minecraft.item.crafting.ShapedRecipes@3f6bfcbe | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 125 minecraft:purple_banner net.minecraft.item.crafting.ShapedRecipes@bf70ce5 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 126 minecraft:pumpkin_seeds net.minecraft.item.crafting.ShapedRecipes@14432052 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 127 minecraft:pumpkin_pie net.minecraft.item.crafting.ShapelessRecipes@56394880 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 128 minecraft:prismarine_bricks net.minecraft.item.crafting.ShapedRecipes@6b0bcea5 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 129 minecraft:prismarine net.minecraft.item.crafting.ShapedRecipes@6bab65b6 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 130 minecraft:polished_granite net.minecraft.item.crafting.ShapedRecipes@5acbef42 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 131 minecraft:polished_diorite net.minecraft.item.crafting.ShapedRecipes@6311898c | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 132 minecraft:polished_andesite net.minecraft.item.crafting.ShapedRecipes@1f315f3d | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 133 minecraft:piston net.minecraft.item.crafting.ShapedRecipes@1c1bc904 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 134 minecraft:pink_wool net.minecraft.item.crafting.ShapelessRecipes@57b4fc1e | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 135 minecraft:pink_stained_hardened_clay net.minecraft.item.crafting.ShapedRecipes@1aae50f9 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 136 minecraft:pink_stained_glass_pane net.minecraft.item.crafting.ShapedRecipes@11885841 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 137 minecraft:pink_stained_glass net.minecraft.item.crafting.ShapedRecipes@32f35739 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 138 minecraft:pink_dye_from_red_bonemeal net.minecraft.item.crafting.ShapelessRecipes@509e4bc4 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 139 minecraft:pink_dye_from_pink_tulip net.minecraft.item.crafting.ShapelessRecipes@72f4232 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 140 minecraft:pink_dye_from_peony net.minecraft.item.crafting.ShapelessRecipes@3cc7cf58 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 141 minecraft:pink_concrete_powder net.minecraft.item.crafting.ShapelessRecipes@3d2a164e | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 142 minecraft:pink_carpet net.minecraft.item.crafting.ShapedRecipes@51a42767 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 143 minecraft:pink_bed_from_white_bed net.minecraft.item.crafting.ShapelessRecipes@5d52a17b | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 144 minecraft:pink_bed net.minecraft.item.crafting.ShapedRecipes@57f8a3cf | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 145 minecraft:pink_banner net.minecraft.item.crafting.ShapedRecipes@4c821dc7 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 146 minecraft:pillar_quartz_block net.minecraft.item.crafting.ShapedRecipes@2c99419f | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 147 minecraft:paper net.minecraft.item.crafting.ShapedRecipes@6236beac | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 148 minecraft:painting net.minecraft.item.crafting.ShapedRecipes@3c72c488 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 149 minecraft:orange_wool net.minecraft.item.crafting.ShapelessRecipes@284e68ae | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 150 minecraft:orange_stained_hardened_clay net.minecraft.item.crafting.ShapedRecipes@7432cb37 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 151 minecraft:orange_stained_glass_pane net.minecraft.item.crafting.ShapedRecipes@4f94b2a8 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 152 minecraft:orange_stained_glass net.minecraft.item.crafting.ShapedRecipes@3644d12a | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 153 minecraft:orange_dye_from_red_yellow net.minecraft.item.crafting.ShapelessRecipes@70f5f6c7 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 154 minecraft:orange_dye_from_orange_tulip net.minecraft.item.crafting.ShapelessRecipes@6b5f91a5 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 155 minecraft:orange_concrete_powder net.minecraft.item.crafting.ShapelessRecipes@358f85b1 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 156 minecraft:orange_carpet net.minecraft.item.crafting.ShapedRecipes@7c4b7bc3 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 157 minecraft:orange_bed_from_white_bed net.minecraft.item.crafting.ShapelessRecipes@3ef97efc | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 158 minecraft:orange_bed net.minecraft.item.crafting.ShapedRecipes@67add4c9 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 159 minecraft:orange_banner net.minecraft.item.crafting.ShapedRecipes@77ef7b2b | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 160 minecraft:observer net.minecraft.item.crafting.ShapedRecipes@7aca4144 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 161 minecraft:oak_wooden_slab net.minecraft.item.crafting.ShapedRecipes@5f92ef40 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 162 minecraft:oak_stairs net.minecraft.item.crafting.ShapedRecipes@2746b1cc | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 163 minecraft:oak_planks net.minecraft.item.crafting.ShapedRecipes@38e46ea | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 164 minecraft:noteblock net.minecraft.item.crafting.ShapedRecipes@508863eb | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 165 minecraft:nether_wart_block net.minecraft.item.crafting.ShapedRecipes@5ac3d009 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 166 minecraft:nether_brick_stairs net.minecraft.item.crafting.ShapedRecipes@29617475 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 167 minecraft:nether_brick_slab net.minecraft.item.crafting.ShapedRecipes@4ff7de80 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 168 minecraft:nether_brick_fence net.minecraft.item.crafting.ShapedRecipes@e8c381e | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 169 minecraft:nether_brick net.minecraft.item.crafting.ShapedRecipes@430abcad | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 170 minecraft:mushroom_stew net.minecraft.item.crafting.ShapelessRecipes@25bc36 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 171 minecraft:mossy_stonebrick net.minecraft.item.crafting.ShapelessRecipes@286f8e90 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 172 minecraft:mossy_cobblestone_wall net.minecraft.item.crafting.ShapedRecipes@11a9f958 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 173 minecraft:mossy_cobblestone net.minecraft.item.crafting.ShapelessRecipes@cf6a6eb | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 174 minecraft:minecart net.minecraft.item.crafting.ShapedRecipes@e934485 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 175 minecraft:melon_seeds net.minecraft.item.crafting.ShapedRecipes@3c22a99a | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 176 minecraft:melon_block net.minecraft.item.crafting.ShapedRecipes@4b75d640 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 177 minecraft:map net.minecraft.item.crafting.ShapedRecipes@579b1d86 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 178 minecraft:magma_cream net.minecraft.item.crafting.ShapelessRecipes@3f7d20c5 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 179 minecraft:magma net.minecraft.item.crafting.ShapedRecipes@f4a21cb | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 180 minecraft:magenta_wool net.minecraft.item.crafting.ShapelessRecipes@61236349 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 181 minecraft:magenta_stained_hardened_clay net.minecraft.item.crafting.ShapedRecipes@271df4c0 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 182 minecraft:magenta_stained_glass_pane net.minecraft.item.crafting.ShapedRecipes@22edca96 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 183 minecraft:magenta_stained_glass net.minecraft.item.crafting.ShapedRecipes@52364a6e | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 184 minecraft:magenta_dye_from_purple_and_pink net.minecraft.item.crafting.ShapelessRecipes@2f8ede54 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 185 minecraft:magenta_dye_from_lilac net.minecraft.item.crafting.ShapelessRecipes@da8853c | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 186 minecraft:magenta_dye_from_lapis_red_pink net.minecraft.item.crafting.ShapelessRecipes@1e499f1 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 187 minecraft:magenta_dye_from_lapis_ink_bonemeal net.minecraft.item.crafting.ShapelessRecipes@71cdb24 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 188 minecraft:magenta_dye_from_allium net.minecraft.item.crafting.ShapelessRecipes@18e0f894 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 189 minecraft:magenta_concrete_powder net.minecraft.item.crafting.ShapelessRecipes@4eb34397 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 190 minecraft:magenta_carpet net.minecraft.item.crafting.ShapedRecipes@6a339bc1 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 191 minecraft:magenta_bed_from_white_bed net.minecraft.item.crafting.ShapelessRecipes@169f4152 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 192 minecraft:magenta_bed net.minecraft.item.crafting.ShapedRecipes@701c092c | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 193 minecraft:magenta_banner net.minecraft.item.crafting.ShapedRecipes@135fb22d | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 194 minecraft:lit_pumpkin net.minecraft.item.crafting.ShapedRecipes@273cb729 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 195 minecraft:lime_wool net.minecraft.item.crafting.ShapelessRecipes@2d44025b | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 196 minecraft:lime_stained_hardened_clay net.minecraft.item.crafting.ShapedRecipes@327fd5c9 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 197 minecraft:lime_stained_glass_pane net.minecraft.item.crafting.ShapedRecipes@41d34a11 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 198 minecraft:lime_stained_glass net.minecraft.item.crafting.ShapedRecipes@194feb27 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 199 minecraft:lime_dye net.minecraft.item.crafting.ShapelessRecipes@45b4d2ff | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 200 minecraft:lime_concrete_powder net.minecraft.item.crafting.ShapelessRecipes@4e92c6c2 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 201 minecraft:lime_carpet net.minecraft.item.crafting.ShapedRecipes@24663d05 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 202 minecraft:lime_bed_from_white_bed net.minecraft.item.crafting.ShapelessRecipes@6d7e2c53 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 203 minecraft:lime_bed net.minecraft.item.crafting.ShapedRecipes@279e9c95 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 204 minecraft:lime_banner net.minecraft.item.crafting.ShapedRecipes@7ff395fa | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 205 minecraft:light_weighted_pressure_plate net.minecraft.item.crafting.ShapedRecipes@a59324f | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 206 minecraft:light_gray_wool net.minecraft.item.crafting.ShapelessRecipes@339d5e8 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 207 minecraft:light_gray_stained_hardened_clay net.minecraft.item.crafting.ShapedRecipes@698b2343 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 208 minecraft:light_gray_stained_glass_pane net.minecraft.item.crafting.ShapedRecipes@2ce80c85 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 209 minecraft:light_gray_stained_glass net.minecraft.item.crafting.ShapedRecipes@794eb6e7 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 210 minecraft:light_gray_dye_from_white_tulip net.minecraft.item.crafting.ShapelessRecipes@76a5a831 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 211 minecraft:light_gray_dye_from_oxeye_daisy net.minecraft.item.crafting.ShapelessRecipes@7e49ab66 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 212 minecraft:light_gray_dye_from_ink_bonemeal net.minecraft.item.crafting.ShapelessRecipes@23644367 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 213 minecraft:light_gray_dye_from_gray_bonemeal net.minecraft.item.crafting.ShapelessRecipes@6c524a7f | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 214 minecraft:light_gray_dye_from_azure_bluet net.minecraft.item.crafting.ShapelessRecipes@6e057374 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 215 minecraft:light_gray_concrete_powder net.minecraft.item.crafting.ShapelessRecipes@4c1d2a13 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 216 minecraft:light_gray_carpet net.minecraft.item.crafting.ShapedRecipes@3d1b91d1 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 217 minecraft:light_gray_bed_from_white_bed net.minecraft.item.crafting.ShapelessRecipes@659f5f32 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 218 minecraft:light_gray_bed net.minecraft.item.crafting.ShapedRecipes@34b69a14 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 219 minecraft:light_gray_banner net.minecraft.item.crafting.ShapedRecipes@816272a | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 220 minecraft:light_blue_wool net.minecraft.item.crafting.ShapelessRecipes@497d9489 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 221 minecraft:light_blue_stained_hardened_clay net.minecraft.item.crafting.ShapedRecipes@4fe0aa21 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 222 minecraft:light_blue_stained_glass_pane net.minecraft.item.crafting.ShapedRecipes@72933ccb | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 223 minecraft:light_blue_stained_glass net.minecraft.item.crafting.ShapedRecipes@1a120e41 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 224 minecraft:light_blue_dye_from_lapis_bonemeal net.minecraft.item.crafting.ShapelessRecipes@7d9587b3 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 225 minecraft:light_blue_dye_from_blue_orchid net.minecraft.item.crafting.ShapelessRecipes@5411a529 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 226 minecraft:light_blue_concrete_powder net.minecraft.item.crafting.ShapelessRecipes@68769265 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 227 minecraft:light_blue_carpet net.minecraft.item.crafting.ShapedRecipes@34788780 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 228 minecraft:light_blue_bed_from_white_bed net.minecraft.item.crafting.ShapelessRecipes@73602e88 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 229 minecraft:light_blue_bed net.minecraft.item.crafting.ShapedRecipes@6a53cddc | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 230 minecraft:light_blue_banner net.minecraft.item.crafting.ShapedRecipes@276511ca | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 231 minecraft:lever net.minecraft.item.crafting.ShapedRecipes@424c8ebe | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 232 minecraft:leather_leggings net.minecraft.item.crafting.ShapedRecipes@77e8492f | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 233 minecraft:leather_helmet net.minecraft.item.crafting.ShapedRecipes@13190355 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 234 minecraft:leather_chestplate net.minecraft.item.crafting.ShapedRecipes@6b8cfbeb | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 235 minecraft:leather_boots net.minecraft.item.crafting.ShapedRecipes@5ffae42f | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 236 minecraft:leather net.minecraft.item.crafting.ShapedRecipes@6d9069ab | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 237 minecraft:lead net.minecraft.item.crafting.ShapedRecipes@15cba6dc | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 238 minecraft:lapis_lazuli net.minecraft.item.crafting.ShapedRecipes@31e08c61 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 239 minecraft:lapis_block net.minecraft.item.crafting.ShapedRecipes@48446968 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 240 minecraft:ladder net.minecraft.item.crafting.ShapedRecipes@5f83b506 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 241 minecraft:jungle_wooden_slab net.minecraft.item.crafting.ShapedRecipes@59df8444 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 242 minecraft:jungle_stairs net.minecraft.item.crafting.ShapedRecipes@6bed8d98 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 243 minecraft:jungle_planks net.minecraft.item.crafting.ShapedRecipes@3ddec942 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 244 minecraft:jungle_fence_gate net.minecraft.item.crafting.ShapedRecipes@9760f17 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 245 minecraft:jungle_fence net.minecraft.item.crafting.ShapedRecipes@75be6796 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 246 minecraft:jungle_door net.minecraft.item.crafting.ShapedRecipes@6121b045 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 247 minecraft:jungle_boat net.minecraft.item.crafting.ShapedRecipes@fabe3f8 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 248 minecraft:jukebox net.minecraft.item.crafting.ShapedRecipes@4c14ed24 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 249 minecraft:item_frame net.minecraft.item.crafting.ShapedRecipes@7900d917 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 250 minecraft:iron_trapdoor net.minecraft.item.crafting.ShapedRecipes@5aeb2c8a | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 251 minecraft:iron_sword net.minecraft.item.crafting.ShapedRecipes@1bc6a43c | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 252 minecraft:iron_shovel net.minecraft.item.crafting.ShapedRecipes@37905236 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 253 minecraft:iron_pickaxe net.minecraft.item.crafting.ShapedRecipes@f341e3c | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 254 minecraft:iron_nugget net.minecraft.item.crafting.ShapedRecipes@4170ee0f | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 255 minecraft:iron_leggings net.minecraft.item.crafting.ShapedRecipes@6e245068 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 256 minecraft:iron_ingot_from_nuggets net.minecraft.item.crafting.ShapedRecipes@6999dca2 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 257 minecraft:iron_ingot_from_block net.minecraft.item.crafting.ShapedRecipes@363b7709 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 258 minecraft:iron_hoe net.minecraft.item.crafting.ShapedRecipes@6fe47be | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 259 minecraft:iron_helmet net.minecraft.item.crafting.ShapedRecipes@27131d01 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 260 minecraft:iron_door net.minecraft.item.crafting.ShapedRecipes@5fe1b8d2 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 261 minecraft:iron_chestplate net.minecraft.item.crafting.ShapedRecipes@2baf2c6 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 262 minecraft:iron_boots net.minecraft.item.crafting.ShapedRecipes@7a337217 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 263 minecraft:iron_block net.minecraft.item.crafting.ShapedRecipes@42f15e87 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 264 minecraft:iron_bars net.minecraft.item.crafting.ShapedRecipes@581661d6 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 265 minecraft:iron_axe net.minecraft.item.crafting.ShapedRecipes@6d1a4522 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 266 minecraft:hopper_minecart net.minecraft.item.crafting.ShapedRecipes@6717f504 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 267 minecraft:hopper net.minecraft.item.crafting.ShapedRecipes@3b0b20a8 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 268 minecraft:heavy_weighted_pressure_plate net.minecraft.item.crafting.ShapedRecipes@8b814b | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 269 minecraft:hay_block net.minecraft.item.crafting.ShapedRecipes@6e44825e | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 270 minecraft:green_wool net.minecraft.item.crafting.ShapelessRecipes@1476e447 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 271 minecraft:green_stained_hardened_clay net.minecraft.item.crafting.ShapedRecipes@4057babc | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 272 minecraft:green_stained_glass_pane net.minecraft.item.crafting.ShapedRecipes@451e8bd0 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 273 minecraft:green_stained_glass net.minecraft.item.crafting.ShapedRecipes@6efa2e06 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 274 minecraft:green_concrete_powder net.minecraft.item.crafting.ShapelessRecipes@561f982f | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 275 minecraft:green_carpet net.minecraft.item.crafting.ShapedRecipes@7f69a16b | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 276 minecraft:green_bed_from_white_bed net.minecraft.item.crafting.ShapelessRecipes@339b9869 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 277 minecraft:green_bed net.minecraft.item.crafting.ShapedRecipes@3d707885 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 278 minecraft:green_banner net.minecraft.item.crafting.ShapedRecipes@4dd11699 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 279 minecraft:gray_wool net.minecraft.item.crafting.ShapelessRecipes@2eb95662 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 280 minecraft:gray_stained_hardened_clay net.minecraft.item.crafting.ShapedRecipes@1e5e0e75 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 281 minecraft:gray_stained_glass_pane net.minecraft.item.crafting.ShapedRecipes@282c3aa0 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 282 minecraft:gray_stained_glass net.minecraft.item.crafting.ShapedRecipes@74a121fe | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 283 minecraft:gray_dye net.minecraft.item.crafting.ShapelessRecipes@2e50ca51 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 284 minecraft:gray_concrete_powder net.minecraft.item.crafting.ShapelessRecipes@11f8d64 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 285 minecraft:gray_carpet net.minecraft.item.crafting.ShapedRecipes@3597174b | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 286 minecraft:gray_bed_from_white_bed net.minecraft.item.crafting.ShapelessRecipes@41a372c1 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 287 minecraft:gray_bed net.minecraft.item.crafting.ShapedRecipes@d5d9d92 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 288 minecraft:gray_banner net.minecraft.item.crafting.ShapedRecipes@623e578b | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 289 minecraft:granite net.minecraft.item.crafting.ShapelessRecipes@1c93f349 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 290 minecraft:golden_sword net.minecraft.item.crafting.ShapedRecipes@708ddfd3 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 291 minecraft:golden_shovel net.minecraft.item.crafting.ShapedRecipes@f9b97dc | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 292 minecraft:golden_rail net.minecraft.item.crafting.ShapedRecipes@3f46fb53 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 293 minecraft:golden_pickaxe net.minecraft.item.crafting.ShapedRecipes@6bd21eb7 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 294 minecraft:golden_leggings net.minecraft.item.crafting.ShapedRecipes@564b221e | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 295 minecraft:golden_hoe net.minecraft.item.crafting.ShapedRecipes@26350832 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 296 minecraft:golden_helmet net.minecraft.item.crafting.ShapedRecipes@58179860 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 297 minecraft:golden_chestplate net.minecraft.item.crafting.ShapedRecipes@13eb8ca | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 298 minecraft:golden_carrot net.minecraft.item.crafting.ShapedRecipes@62a07c01 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 299 minecraft:golden_boots net.minecraft.item.crafting.ShapedRecipes@704205ef | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 300 minecraft:golden_axe net.minecraft.item.crafting.ShapedRecipes@6587c92f | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 301 minecraft:golden_apple net.minecraft.item.crafting.ShapedRecipes@18a8a40e | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 302 minecraft:gold_nugget net.minecraft.item.crafting.ShapedRecipes@7d91e9c9 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 303 minecraft:gold_ingot_from_nuggets net.minecraft.item.crafting.ShapedRecipes@2fbbdca | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 304 minecraft:gold_ingot_from_block net.minecraft.item.crafting.ShapedRecipes@61bbe16d | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 305 minecraft:gold_block net.minecraft.item.crafting.ShapedRecipes@577e2b91 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 306 minecraft:glowstone net.minecraft.item.crafting.ShapedRecipes@653e79fc | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 307 minecraft:glass_pane net.minecraft.item.crafting.ShapedRecipes@6b886e86 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 308 minecraft:glass_bottle net.minecraft.item.crafting.ShapedRecipes@6b1381fc | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 309 minecraft:furnace_minecart net.minecraft.item.crafting.ShapedRecipes@5973d3ec | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 310 minecraft:furnace net.minecraft.item.crafting.ShapedRecipes@10164e94 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 311 minecraft:flower_pot net.minecraft.item.crafting.ShapedRecipes@2c70da80 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 312 minecraft:flint_and_steel net.minecraft.item.crafting.ShapelessRecipes@340fd670 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 313 minecraft:fishing_rod net.minecraft.item.crafting.ShapedRecipes@52ebacbf | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 314 minecraft:fire_charge net.minecraft.item.crafting.ShapelessRecipes@32b273c1 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 315 minecraft:fermented_spider_eye net.minecraft.item.crafting.ShapelessRecipes@5b810b54 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 316 minecraft:fence_gate net.minecraft.item.crafting.ShapedRecipes@127c5f20 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 317 minecraft:fence net.minecraft.item.crafting.ShapedRecipes@4e885b9 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 318 minecraft:ender_eye net.minecraft.item.crafting.ShapelessRecipes@6ae247b7 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 319 minecraft:ender_chest net.minecraft.item.crafting.ShapedRecipes@7c4663ec | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 320 minecraft:end_rod net.minecraft.item.crafting.ShapedRecipes@3237522b | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 321 minecraft:end_crystal net.minecraft.item.crafting.ShapedRecipes@1f94e1 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 322 minecraft:end_bricks net.minecraft.item.crafting.ShapedRecipes@3566d527 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 323 minecraft:enchanting_table net.minecraft.item.crafting.ShapedRecipes@37846cc2 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 324 minecraft:emerald_block net.minecraft.item.crafting.ShapedRecipes@4833bb83 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 325 minecraft:emerald net.minecraft.item.crafting.ShapedRecipes@2dba6013 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 326 minecraft:dropper net.minecraft.item.crafting.ShapedRecipes@3177190a | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 327 minecraft:dispenser net.minecraft.item.crafting.ShapedRecipes@71fd082 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 328 minecraft:diorite net.minecraft.item.crafting.ShapedRecipes@2960ae22 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 329 minecraft:diamond_sword net.minecraft.item.crafting.ShapedRecipes@18ab86a2 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 330 minecraft:diamond_shovel net.minecraft.item.crafting.ShapedRecipes@2bfe2327 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 331 minecraft:diamond_pickaxe net.minecraft.item.crafting.ShapedRecipes@342615e2 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 332 minecraft:diamond_leggings net.minecraft.item.crafting.ShapedRecipes@43f88150 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 333 minecraft:diamond_hoe net.minecraft.item.crafting.ShapedRecipes@133e7789 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 334 minecraft:diamond_helmet net.minecraft.item.crafting.ShapedRecipes@2a8e93db | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 335 minecraft:diamond_chestplate net.minecraft.item.crafting.ShapedRecipes@49d5db99 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 336 minecraft:diamond_boots net.minecraft.item.crafting.ShapedRecipes@6dad684f | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 337 minecraft:diamond_block net.minecraft.item.crafting.ShapedRecipes@24c7563b | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 338 minecraft:diamond_axe net.minecraft.item.crafting.ShapedRecipes@21440e36 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 339 minecraft:diamond net.minecraft.item.crafting.ShapedRecipes@518e9141 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 340 minecraft:detector_rail net.minecraft.item.crafting.ShapedRecipes@70b9a553 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 341 minecraft:daylight_detector net.minecraft.item.crafting.ShapedRecipes@78ded8c9 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 342 minecraft:dark_prismarine net.minecraft.item.crafting.ShapedRecipes@44c141ce | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 343 minecraft:dark_oak_wooden_slab net.minecraft.item.crafting.ShapedRecipes@13668c8b | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 344 minecraft:dark_oak_stairs net.minecraft.item.crafting.ShapedRecipes@605a10fd | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 345 minecraft:dark_oak_planks net.minecraft.item.crafting.ShapedRecipes@3c320c8b | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 346 minecraft:dark_oak_fence_gate net.minecraft.item.crafting.ShapedRecipes@2d7e6c8c | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 347 minecraft:dark_oak_fence net.minecraft.item.crafting.ShapedRecipes@3808bdfc | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 348 minecraft:dark_oak_door net.minecraft.item.crafting.ShapedRecipes@5ceeab0c | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 349 minecraft:dark_oak_boat net.minecraft.item.crafting.ShapedRecipes@36cd58e7 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 350 minecraft:cyan_wool net.minecraft.item.crafting.ShapelessRecipes@e471cef | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 351 minecraft:cyan_stained_hardened_clay net.minecraft.item.crafting.ShapedRecipes@329b4814 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 352 minecraft:cyan_stained_glass_pane net.minecraft.item.crafting.ShapedRecipes@4e31229f | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 353 minecraft:cyan_stained_glass net.minecraft.item.crafting.ShapedRecipes@60a6564c | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 354 minecraft:cyan_dye net.minecraft.item.crafting.ShapelessRecipes@30f39d9d | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 355 minecraft:cyan_concrete_powder net.minecraft.item.crafting.ShapelessRecipes@580694ce | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 356 minecraft:cyan_carpet net.minecraft.item.crafting.ShapedRecipes@5d5ad1e2 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 357 minecraft:cyan_bed_from_white_bed net.minecraft.item.crafting.ShapelessRecipes@41ebae0e | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 358 minecraft:cyan_bed net.minecraft.item.crafting.ShapedRecipes@4bb05a4e | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 359 minecraft:cyan_banner net.minecraft.item.crafting.ShapedRecipes@1d413e98 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 360 minecraft:crafting_table net.minecraft.item.crafting.ShapedRecipes@74af4b0 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 361 minecraft:cookie net.minecraft.item.crafting.ShapedRecipes@5a77e0e4 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 362 minecraft:compass net.minecraft.item.crafting.ShapedRecipes@4a544672 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 363 minecraft:comparator net.minecraft.item.crafting.ShapedRecipes@47bcaf67 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 364 minecraft:cobblestone_wall net.minecraft.item.crafting.ShapedRecipes@2796716d | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 365 minecraft:cobblestone_slab net.minecraft.item.crafting.ShapedRecipes@135a8812 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 366 minecraft:coarse_dirt net.minecraft.item.crafting.ShapedRecipes@3479b4cd | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 367 minecraft:coal_block net.minecraft.item.crafting.ShapedRecipes@6208f81c | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 368 minecraft:coal net.minecraft.item.crafting.ShapedRecipes@74be992a | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 369 minecraft:clock net.minecraft.item.crafting.ShapedRecipes@cf9223f | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 370 minecraft:clay net.minecraft.item.crafting.ShapedRecipes@2a03b87 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 371 minecraft:chiseled_stonebrick net.minecraft.item.crafting.ShapedRecipes@6ad703cd | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 372 minecraft:chiseled_sandstone net.minecraft.item.crafting.ShapedRecipes@54cb2cee | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 373 minecraft:chiseled_red_sandstone net.minecraft.item.crafting.ShapedRecipes@7c1f435a | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 374 minecraft:chiseled_quartz_block net.minecraft.item.crafting.ShapedRecipes@238fcafa | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 375 minecraft:chest_minecart net.minecraft.item.crafting.ShapedRecipes@30f929ff | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 376 minecraft:chest net.minecraft.item.crafting.ShapedRecipes@431bf770 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 377 minecraft:cauldron net.minecraft.item.crafting.ShapedRecipes@48fbb1bc | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 378 minecraft:carrot_on_a_stick net.minecraft.item.crafting.ShapedRecipes@2ae25358 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 379 minecraft:cake net.minecraft.item.crafting.ShapedRecipes@45a9f3d4 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 380 minecraft:bucket net.minecraft.item.crafting.ShapedRecipes@7326f323 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 381 minecraft:brown_wool net.minecraft.item.crafting.ShapelessRecipes@aba3735 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 382 minecraft:brown_stained_hardened_clay net.minecraft.item.crafting.ShapedRecipes@1817f7f0 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 383 minecraft:brown_stained_glass_pane net.minecraft.item.crafting.ShapedRecipes@18791f7b | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 384 minecraft:brown_stained_glass net.minecraft.item.crafting.ShapedRecipes@5f2312f3 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 385 minecraft:brown_concrete_powder net.minecraft.item.crafting.ShapelessRecipes@3dd4f91d | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 386 minecraft:brown_carpet net.minecraft.item.crafting.ShapedRecipes@b6a5cf5 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 387 minecraft:brown_bed_from_white_bed net.minecraft.item.crafting.ShapelessRecipes@4263fbe8 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 388 minecraft:brown_bed net.minecraft.item.crafting.ShapedRecipes@77095c8c | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 389 minecraft:brown_banner net.minecraft.item.crafting.ShapedRecipes@271bbb75 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 390 minecraft:brick_stairs net.minecraft.item.crafting.ShapedRecipes@53e7cc08 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 391 minecraft:brick_slab net.minecraft.item.crafting.ShapedRecipes@5dbd7f00 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 392 minecraft:brick_block net.minecraft.item.crafting.ShapedRecipes@3c832820 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 393 minecraft:brewing_stand net.minecraft.item.crafting.ShapedRecipes@7f3616d2 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 394 minecraft:bread net.minecraft.item.crafting.ShapedRecipes@2bf3ec4a | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 395 minecraft:bowl net.minecraft.item.crafting.ShapedRecipes@76bfecef | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 396 minecraft:bow net.minecraft.item.crafting.ShapedRecipes@21584b99 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 397 minecraft:bookshelf net.minecraft.item.crafting.ShapedRecipes@7072606 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 398 minecraft:book net.minecraft.item.crafting.ShapelessRecipes@173a86ad | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 399 minecraft:bone_meal_from_bone net.minecraft.item.crafting.ShapelessRecipes@6a5ed5f9 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 400 minecraft:bone_meal_from_block net.minecraft.item.crafting.ShapelessRecipes@4e44b713 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 401 minecraft:bone_block net.minecraft.item.crafting.ShapedRecipes@2ea82cef | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 402 minecraft:boat net.minecraft.item.crafting.ShapedRecipes@6fcf3192 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 403 minecraft:blue_wool net.minecraft.item.crafting.ShapelessRecipes@252da8f | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 404 minecraft:blue_stained_hardened_clay net.minecraft.item.crafting.ShapedRecipes@143abb21 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 405 minecraft:blue_stained_glass_pane net.minecraft.item.crafting.ShapedRecipes@1c0455c4 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 406 minecraft:blue_stained_glass net.minecraft.item.crafting.ShapedRecipes@6bd5cb99 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 407 minecraft:blue_concrete_powder net.minecraft.item.crafting.ShapelessRecipes@67f25c | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 408 minecraft:blue_carpet net.minecraft.item.crafting.ShapedRecipes@2fad48b7 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 409 minecraft:blue_bed_from_white_bed net.minecraft.item.crafting.ShapelessRecipes@491d36ef | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 410 minecraft:blue_bed net.minecraft.item.crafting.ShapedRecipes@2d4e6bb2 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 411 minecraft:blue_banner net.minecraft.item.crafting.ShapedRecipes@71586f | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 412 minecraft:blaze_powder net.minecraft.item.crafting.ShapelessRecipes@2eb6a77f | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 413 minecraft:black_wool net.minecraft.item.crafting.ShapelessRecipes@3d8d926f | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 414 minecraft:black_stained_hardened_clay net.minecraft.item.crafting.ShapedRecipes@2ba0b7cf | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 415 minecraft:black_stained_glass_pane net.minecraft.item.crafting.ShapedRecipes@23389e2b | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 416 minecraft:black_stained_glass net.minecraft.item.crafting.ShapedRecipes@65899694 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 417 minecraft:black_concrete_powder net.minecraft.item.crafting.ShapelessRecipes@2bdc2c26 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 418 minecraft:black_carpet net.minecraft.item.crafting.ShapedRecipes@5936e4ba | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 419 minecraft:black_bed_from_white_bed net.minecraft.item.crafting.ShapelessRecipes@435b944c | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 420 minecraft:black_bed net.minecraft.item.crafting.ShapedRecipes@509d0d21 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 421 minecraft:black_banner net.minecraft.item.crafting.ShapedRecipes@79378802 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 422 minecraft:birch_wooden_slab net.minecraft.item.crafting.ShapedRecipes@6245303e | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 423 minecraft:birch_stairs net.minecraft.item.crafting.ShapedRecipes@799bb4ed | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 424 minecraft:birch_planks net.minecraft.item.crafting.ShapedRecipes@4e64e44c | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 425 minecraft:birch_fence_gate net.minecraft.item.crafting.ShapedRecipes@7b0f5814 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 426 minecraft:birch_fence net.minecraft.item.crafting.ShapedRecipes@6f34d178 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 427 minecraft:birch_door net.minecraft.item.crafting.ShapedRecipes@4c666872 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 428 minecraft:birch_boat net.minecraft.item.crafting.ShapedRecipes@e6d9c25 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 429 minecraft:beetroot_soup net.minecraft.item.crafting.ShapedRecipes@4c33bf70 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 430 minecraft:beacon net.minecraft.item.crafting.ShapedRecipes@334d96af | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 431 minecraft:arrow net.minecraft.item.crafting.ShapedRecipes@200ef05b | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 432 minecraft:armor_stand net.minecraft.item.crafting.ShapedRecipes@8e654f7 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 433 minecraft:anvil net.minecraft.item.crafting.ShapedRecipes@64e6f678 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 434 minecraft:andesite net.minecraft.item.crafting.ShapelessRecipes@3ef8de39 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 435 minecraft:activator_rail net.minecraft.item.crafting.ShapedRecipes@180466a9 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 436 minecraft:acacia_wooden_slab net.minecraft.item.crafting.ShapedRecipes@4e22fdc0 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 437 minecraft:acacia_stairs net.minecraft.item.crafting.ShapedRecipes@28516b2d | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 438 minecraft:acacia_planks net.minecraft.item.crafting.ShapedRecipes@50ade311 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 439 minecraft:acacia_fence_gate net.minecraft.item.crafting.ShapedRecipes@51ce8293 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 440 minecraft:acacia_fence net.minecraft.item.crafting.ShapedRecipes@4e1349cf | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 441 minecraft:acacia_door net.minecraft.item.crafting.ShapedRecipes@1405dd10 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 442 minecraft:acacia_boat net.minecraft.item.crafting.ShapedRecipes@2f81d7f | |
[00:24:07] [Server thread/TRACE] [FML]: Registry Name : minecraft:villagerprofessions | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 0 minecraft:farmer net.minecraftforge.fml.common.registry.VillagerRegistry$VillagerProfession@628fa8ea | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 1 minecraft:librarian net.minecraftforge.fml.common.registry.VillagerRegistry$VillagerProfession@6f1b0ead | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 2 minecraft:priest net.minecraftforge.fml.common.registry.VillagerRegistry$VillagerProfession@4487dce | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 3 minecraft:smith net.minecraftforge.fml.common.registry.VillagerRegistry$VillagerProfession@3aafa1c1 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 4 minecraft:butcher net.minecraftforge.fml.common.registry.VillagerRegistry$VillagerProfession@192f807 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 5 minecraft:nitwit net.minecraftforge.fml.common.registry.VillagerRegistry$VillagerProfession@36cbe0fe | |
[00:24:07] [Server thread/TRACE] [FML]: Registry Name : minecraft:dataserializers | |
[00:24:07] [Server thread/TRACE] [FML]: Registry Name : minecraft:entities | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 1 minecraft:item net.minecraftforge.fml.common.registry.EntityEntry@21298c3a | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 2 minecraft:xp_orb net.minecraftforge.fml.common.registry.EntityEntry@369958b0 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 3 minecraft:area_effect_cloud net.minecraftforge.fml.common.registry.EntityEntry@41f274d | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 4 minecraft:elder_guardian net.minecraftforge.fml.common.registry.EntityEntry@2df6d461 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 5 minecraft:wither_skeleton net.minecraftforge.fml.common.registry.EntityEntry@70ca533a | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 6 minecraft:stray net.minecraftforge.fml.common.registry.EntityEntry@51f91d19 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 7 minecraft:egg net.minecraftforge.fml.common.registry.EntityEntry@5fd0235c | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 8 minecraft:leash_knot net.minecraftforge.fml.common.registry.EntityEntry@56929ce | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 9 minecraft:painting net.minecraftforge.fml.common.registry.EntityEntry@25a2a71d | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 10 minecraft:arrow net.minecraftforge.fml.common.registry.EntityEntry@6bca3b27 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 11 minecraft:snowball net.minecraftforge.fml.common.registry.EntityEntry@15974f4e | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 12 minecraft:fireball net.minecraftforge.fml.common.registry.EntityEntry@2fba15c5 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 13 minecraft:small_fireball net.minecraftforge.fml.common.registry.EntityEntry@14738629 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 14 minecraft:ender_pearl net.minecraftforge.fml.common.registry.EntityEntry@22599048 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 15 minecraft:eye_of_ender_signal net.minecraftforge.fml.common.registry.EntityEntry@38007ead | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 16 minecraft:potion net.minecraftforge.fml.common.registry.EntityEntry@33544cc5 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 17 minecraft:xp_bottle net.minecraftforge.fml.common.registry.EntityEntry@1bce19db | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 18 minecraft:item_frame net.minecraftforge.fml.common.registry.EntityEntry@5d3c0735 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 19 minecraft:wither_skull net.minecraftforge.fml.common.registry.EntityEntry@2408ca4c | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 20 minecraft:tnt net.minecraftforge.fml.common.registry.EntityEntry@5f745970 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 21 minecraft:falling_block net.minecraftforge.fml.common.registry.EntityEntry@35f59dfe | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 22 minecraft:fireworks_rocket net.minecraftforge.fml.common.registry.EntityEntry@1633962a | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 23 minecraft:husk net.minecraftforge.fml.common.registry.EntityEntry@41cec7b0 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 24 minecraft:spectral_arrow net.minecraftforge.fml.common.registry.EntityEntry@5523f107 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 25 minecraft:shulker_bullet net.minecraftforge.fml.common.registry.EntityEntry@6ca6cc1c | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 26 minecraft:dragon_fireball net.minecraftforge.fml.common.registry.EntityEntry@5f9cb96f | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 27 minecraft:zombie_villager net.minecraftforge.fml.common.registry.EntityEntry@6fa98e98 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 28 minecraft:skeleton_horse net.minecraftforge.fml.common.registry.EntityEntry@1d2b49b2 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 29 minecraft:zombie_horse net.minecraftforge.fml.common.registry.EntityEntry@7197b96c | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 30 minecraft:armor_stand net.minecraftforge.fml.common.registry.EntityEntry@47858d7c | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 31 minecraft:donkey net.minecraftforge.fml.common.registry.EntityEntry@7c2d4398 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 32 minecraft:mule net.minecraftforge.fml.common.registry.EntityEntry@7280785f | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 33 minecraft:evocation_fangs net.minecraftforge.fml.common.registry.EntityEntry@5565d718 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 34 minecraft:evocation_illager net.minecraftforge.fml.common.registry.EntityEntry@72161dbb | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 35 minecraft:vex net.minecraftforge.fml.common.registry.EntityEntry@753b6846 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 36 minecraft:vindication_illager net.minecraftforge.fml.common.registry.EntityEntry@168f447d | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 37 minecraft:illusion_illager net.minecraftforge.fml.common.registry.EntityEntry@33c590 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 40 minecraft:commandblock_minecart net.minecraftforge.fml.common.registry.EntityEntry@1d0695da | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 41 minecraft:boat net.minecraftforge.fml.common.registry.EntityEntry@5ceb6796 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 42 minecraft:minecart net.minecraftforge.fml.common.registry.EntityEntry@3208e15 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 43 minecraft:chest_minecart net.minecraftforge.fml.common.registry.EntityEntry@6d86d1ad | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 44 minecraft:furnace_minecart net.minecraftforge.fml.common.registry.EntityEntry@51b1732d | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 45 minecraft:tnt_minecart net.minecraftforge.fml.common.registry.EntityEntry@3e668743 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 46 minecraft:hopper_minecart net.minecraftforge.fml.common.registry.EntityEntry@414d5660 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 47 minecraft:spawner_minecart net.minecraftforge.fml.common.registry.EntityEntry@771deee6 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 50 minecraft:creeper net.minecraftforge.fml.common.registry.EntityEntry@4ac64dc2 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 51 minecraft:skeleton net.minecraftforge.fml.common.registry.EntityEntry@66f15ce5 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 52 minecraft:spider net.minecraftforge.fml.common.registry.EntityEntry@6479b4cb | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 53 minecraft:giant net.minecraftforge.fml.common.registry.EntityEntry@333cedbd | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 54 minecraft:zombie net.minecraftforge.fml.common.registry.EntityEntry@4225b4e2 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 55 minecraft:slime net.minecraftforge.fml.common.registry.EntityEntry@4c3c1963 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 56 minecraft:ghast net.minecraftforge.fml.common.registry.EntityEntry@6942ff10 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 57 minecraft:zombie_pigman net.minecraftforge.fml.common.registry.EntityEntry@14c06f50 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 58 minecraft:enderman net.minecraftforge.fml.common.registry.EntityEntry@637bf67c | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 59 minecraft:cave_spider net.minecraftforge.fml.common.registry.EntityEntry@5ce59833 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 60 minecraft:silverfish net.minecraftforge.fml.common.registry.EntityEntry@3bc82aa3 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 61 minecraft:blaze net.minecraftforge.fml.common.registry.EntityEntry@6df8131c | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 62 minecraft:magma_cube net.minecraftforge.fml.common.registry.EntityEntry@35825d43 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 63 minecraft:ender_dragon net.minecraftforge.fml.common.registry.EntityEntry@2181144e | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 64 minecraft:wither net.minecraftforge.fml.common.registry.EntityEntry@2d3bb293 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 65 minecraft:bat net.minecraftforge.fml.common.registry.EntityEntry@3a892b9f | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 66 minecraft:witch net.minecraftforge.fml.common.registry.EntityEntry@f6921b7 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 67 minecraft:endermite net.minecraftforge.fml.common.registry.EntityEntry@4e8e0052 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 68 minecraft:guardian net.minecraftforge.fml.common.registry.EntityEntry@1c8e1233 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 69 minecraft:shulker net.minecraftforge.fml.common.registry.EntityEntry@2b55ac77 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 90 minecraft:pig net.minecraftforge.fml.common.registry.EntityEntry@cc41d2d | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 91 minecraft:sheep net.minecraftforge.fml.common.registry.EntityEntry@6b174aa3 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 92 minecraft:cow net.minecraftforge.fml.common.registry.EntityEntry@78ba0a57 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 93 minecraft:chicken net.minecraftforge.fml.common.registry.EntityEntry@360b6ea1 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 94 minecraft:squid net.minecraftforge.fml.common.registry.EntityEntry@5d6d6533 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 95 minecraft:wolf net.minecraftforge.fml.common.registry.EntityEntry@2296926d | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 96 minecraft:mooshroom net.minecraftforge.fml.common.registry.EntityEntry@7ae3591b | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 97 minecraft:snowman net.minecraftforge.fml.common.registry.EntityEntry@234421ca | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 98 minecraft:ocelot net.minecraftforge.fml.common.registry.EntityEntry@30ee413a | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 99 minecraft:villager_golem net.minecraftforge.fml.common.registry.EntityEntry@4fda9fde | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 100 minecraft:horse net.minecraftforge.fml.common.registry.EntityEntry@4ed7fb78 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 101 minecraft:rabbit net.minecraftforge.fml.common.registry.EntityEntry@68893394 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 102 minecraft:polar_bear net.minecraftforge.fml.common.registry.EntityEntry@7227e3f1 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 103 minecraft:llama net.minecraftforge.fml.common.registry.EntityEntry@3d587c73 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 104 minecraft:llama_spit net.minecraftforge.fml.common.registry.EntityEntry@776eb512 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 105 minecraft:parrot net.minecraftforge.fml.common.registry.EntityEntry@2e6ca6b5 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 120 minecraft:villager net.minecraftforge.fml.common.registry.EntityEntry@66e6e5e9 | |
[00:24:07] [Server thread/TRACE] [FML]: Registry: 200 minecraft:ender_crystal net.minecraftforge.fml.common.registry.EntityEntry@654ab198 | |
[00:24:07] [Server thread/TRACE] [FML]: Sending event FMLModIdMappingEvent to mod minecraft | |
[00:24:07] [Server thread/TRACE] [FML]: Sent event FMLModIdMappingEvent to mod minecraft | |
[00:24:07] [Server thread/DEBUG] [FML]: Bar Step: ModIdMapping - Minecraft took 0.000s | |
[00:24:07] [Server thread/TRACE] [FML]: Sending event FMLModIdMappingEvent to mod mcp | |
[00:24:07] [Server thread/TRACE] [FML]: Sent event FMLModIdMappingEvent to mod mcp | |
[00:24:07] [Server thread/DEBUG] [FML]: Bar Step: ModIdMapping - Minecraft Coder Pack took 0.000s | |
[00:24:07] [Server thread/TRACE] [FML]: Sending event FMLModIdMappingEvent to mod FML | |
[00:24:07] [Server thread/TRACE] [FML]: Sent event FMLModIdMappingEvent to mod FML | |
[00:24:07] [Server thread/DEBUG] [FML]: Bar Step: ModIdMapping - Forge Mod Loader took 0.000s | |
[00:24:07] [Server thread/TRACE] [FML]: Sending event FMLModIdMappingEvent to mod forge | |
[00:24:07] [Server thread/TRACE] [FML]: Sent event FMLModIdMappingEvent to mod forge | |
[00:24:07] [Server thread/DEBUG] [FML]: Bar Step: ModIdMapping - Minecraft Forge took 0.096s | |
[00:24:07] [Server thread/TRACE] [FML]: Sending event FMLModIdMappingEvent to mod cutelessmod | |
[00:24:07] [Server thread/TRACE] [FML]: Sent event FMLModIdMappingEvent to mod cutelessmod | |
[00:24:07] [Server thread/DEBUG] [FML]: Bar Step: ModIdMapping - CutelessMod took 0.000s | |
[00:24:07] [Server thread/DEBUG] [FML]: Bar Finished: ModIdMapping took 0.097s | |
[00:24:07] [Server thread/INFO] [FML]: Applying holder lookups | |
[00:24:07] [Server thread/INFO] [FML]: Holder lookups applied | |
[00:24:07] [Server thread/DEBUG] [FML]: Loading persistent fluid defaults from world | |
[00:24:07] [Server thread/DEBUG] [FML]: The fluid minecraft:lava has been selected as the default fluid for lava | |
[00:24:07] [Server thread/DEBUG] [FML]: The fluid minecraft:water has been selected as the default fluid for water | |
[00:24:08] [Server thread/INFO] [mixin]: Mixing MixinChunkGeneratorOverworld from mixins.cutelessmod.json into net.minecraft.world.gen.ChunkGeneratorOverworld | |
[00:24:08] [Server thread/TRACE] [mixin]: Added class metadata for java/nio/file/Files to metadata cache | |
[00:24:08] [Server thread/TRACE] [mixin]: Added class metadata for java/io/FileWriter to metadata cache | |
[00:24:08] [Server thread/TRACE] [mixin]: Added class metadata for java/io/OutputStreamWriter to metadata cache | |
[00:24:08] [Server thread/TRACE] [mixin]: Added class metadata for java/io/Writer to metadata cache | |
[00:24:08] [Server thread/TRACE] [mixin]: Added class metadata for java/io/Flushable to metadata cache | |
[00:24:08] [Server thread/TRACE] [mixin]: Added class metadata for java/io/Closeable to metadata cache | |
[00:24:08] [Server thread/TRACE] [mixin]: Added class metadata for java/io/BufferedWriter to metadata cache | |
[00:24:08] [Server thread/TRACE] [mixin]: Added class metadata for java/lang/reflect/Field to metadata cache | |
[00:24:08] [Server thread/TRACE] [mixin]: Added class metadata for java/lang/reflect/AccessibleObject to metadata cache | |
[00:24:08] [Server thread/TRACE] [mixin]: Added class metadata for java/util/concurrent/atomic/AtomicLong to metadata cache | |
[00:24:08] [Server thread/TRACE] [mixin]: Added class metadata for java/util/UUID to metadata cache | |
[00:24:08] [Server thread/TRACE] [mixin]: Added class metadata for java/nio/file/Paths to metadata cache | |
[00:24:08] [Server thread/TRACE] [mixin]: Added class metadata for net/minecraft/world/gen/IChunkGenerator to metadata cache | |
[00:24:08] [Server thread/TRACE] [mixin]: Added class metadata for net/minecraft/world/biome/Biome to metadata cache | |
[00:24:08] [Server thread/TRACE] [mixin]: Added class metadata for net/minecraft/util/math/ChunkPos to metadata cache | |
[00:24:08] [Server thread/TRACE] [mixin]: Added class metadata for net/minecraft/block/BlockStaticLiquid to metadata cache | |
[00:24:08] [Server thread/INFO] [FML]: Loading dimension 0 (New World) (net.minecraft.server.integrated.IntegratedServer@48e08f60) | |
[00:24:08] [Server thread/INFO] [net.minecraft.advancements.AdvancementList]: Loaded 488 advancements | |
[00:24:08] [Server thread/INFO] [FML]: Loading dimension -1 (New World) (net.minecraft.server.integrated.IntegratedServer@48e08f60) | |
[00:24:08] [Server thread/INFO] [FML]: Loading dimension 1 (New World) (net.minecraft.server.integrated.IntegratedServer@48e08f60) | |
[00:24:08] [Server thread/INFO] [net.minecraft.server.MinecraftServer]: Preparing start region for level 0 | |
[00:24:09] [Server thread/INFO] [net.minecraft.server.MinecraftServer]: Preparing spawn area: 38% | |
[00:24:10] [Server thread/TRACE] [FML]: Sending event FMLServerStartingEvent to mod minecraft | |
[00:24:10] [Server thread/TRACE] [FML]: Sent event FMLServerStartingEvent to mod minecraft | |
[00:24:10] [Server thread/DEBUG] [FML]: Bar Step: ServerStarting - Minecraft took 0.000s | |
[00:24:10] [Server thread/TRACE] [FML]: Sending event FMLServerStartingEvent to mod mcp | |
[00:24:10] [Server thread/TRACE] [FML]: Sent event FMLServerStartingEvent to mod mcp | |
[00:24:10] [Server thread/DEBUG] [FML]: Bar Step: ServerStarting - Minecraft Coder Pack took 0.000s | |
[00:24:10] [Server thread/TRACE] [FML]: Sending event FMLServerStartingEvent to mod FML | |
[00:24:10] [Server thread/TRACE] [FML]: Sent event FMLServerStartingEvent to mod FML | |
[00:24:10] [Server thread/DEBUG] [FML]: Bar Step: ServerStarting - Forge Mod Loader took 0.000s | |
[00:24:10] [Server thread/TRACE] [FML]: Sending event FMLServerStartingEvent to mod forge | |
[00:24:10] [Server thread/TRACE] [FML]: Sent event FMLServerStartingEvent to mod forge | |
[00:24:10] [Server thread/DEBUG] [FML]: Bar Step: ServerStarting - Minecraft Forge took 0.036s | |
[00:24:10] [Server thread/TRACE] [FML]: Sending event FMLServerStartingEvent to mod cutelessmod | |
[00:24:10] [Server thread/TRACE] [FML]: Sent event FMLServerStartingEvent to mod cutelessmod | |
[00:24:10] [Server thread/DEBUG] [FML]: Bar Step: ServerStarting - CutelessMod took 0.000s | |
[00:24:10] [Server thread/DEBUG] [FML]: Bar Finished: ServerStarting took 0.037s | |
[00:24:10] [Server thread/TRACE] [FML]: Sending event FMLServerStartedEvent to mod minecraft | |
[00:24:10] [Server thread/TRACE] [FML]: Sent event FMLServerStartedEvent to mod minecraft | |
[00:24:10] [Server thread/DEBUG] [FML]: Bar Step: ServerStarted - Minecraft took 0.000s | |
[00:24:10] [Server thread/TRACE] [FML]: Sending event FMLServerStartedEvent to mod mcp | |
[00:24:10] [Server thread/TRACE] [FML]: Sent event FMLServerStartedEvent to mod mcp | |
[00:24:10] [Server thread/DEBUG] [FML]: Bar Step: ServerStarted - Minecraft Coder Pack took 0.000s | |
[00:24:10] [Server thread/TRACE] [FML]: Sending event FMLServerStartedEvent to mod FML | |
[00:24:10] [Server thread/TRACE] [FML]: Sent event FMLServerStartedEvent to mod FML | |
[00:24:10] [Server thread/DEBUG] [FML]: Bar Step: ServerStarted - Forge Mod Loader took 0.000s | |
[00:24:10] [Server thread/TRACE] [FML]: Sending event FMLServerStartedEvent to mod forge | |
[00:24:10] [Server thread/TRACE] [FML]: Sent event FMLServerStartedEvent to mod forge | |
[00:24:10] [Server thread/DEBUG] [FML]: Bar Step: ServerStarted - Minecraft Forge took 0.000s | |
[00:24:10] [Server thread/TRACE] [FML]: Sending event FMLServerStartedEvent to mod cutelessmod | |
[00:24:10] [Server thread/TRACE] [FML]: Sent event FMLServerStartedEvent to mod cutelessmod | |
[00:24:10] [Server thread/DEBUG] [FML]: Bar Step: ServerStarted - CutelessMod took 0.000s | |
[00:24:10] [Server thread/DEBUG] [FML]: Bar Finished: ServerStarted took 0.001s | |
[00:24:10] [Server thread/DEBUG] [FML]: Queueing dimension -1 to unload | |
[00:24:10] [Server thread/DEBUG] [FML]: Queueing dimension 1 to unload | |
[00:24:10] [Server thread/INFO] [FML]: Unloading dimension -1 | |
[00:24:10] [Server thread/INFO] [FML]: Unloading dimension 1 | |
[00:24:10] [Server thread/INFO] [net.minecraft.server.integrated.IntegratedServer]: Changing view distance to 12, from 10 | |
[00:24:11] [Client thread/INFO] [mixin]: Mixing MixinNetworkManager from mixins.cutelessmod.json into net.minecraft.network.NetworkManager | |
[00:24:11] [Client thread/TRACE] [mixin]: Added class metadata for io/netty/channel/SimpleChannelInboundHandler to metadata cache | |
[00:24:11] [Client thread/INFO] [mixin]: Mixing MixinGuiDisconnected from mixins.cutelessmod.json into net.minecraft.client.gui.GuiDisconnected | |
[00:24:11] [Client thread/INFO] [mixin]: Mixing MixinCPacketChatMessage from mixins.cutelessmod.json into net.minecraft.network.play.client.CPacketChatMessage | |
[00:24:12] [Netty Local Client IO #0/INFO] [mixin]: Mixing MixinNetHandlerPlayClient from mixins.cutelessmod.json into net.minecraft.client.network.NetHandlerPlayClient | |
[00:24:12] [Netty Local Client IO #0/TRACE] [mixin]: Added class metadata for net/minecraft/util/text/TextComponentString to metadata cache | |
[00:24:12] [Netty Local Client IO #0/TRACE] [mixin]: Added class metadata for net/minecraft/util/text/event/ClickEvent to metadata cache | |
[00:24:12] [Netty Local Client IO #0/TRACE] [mixin]: Added class metadata for net/minecraft/util/text/Style to metadata cache | |
[00:24:12] [Netty Local Client IO #0/TRACE] [mixin]: Added class metadata for net/minecraft/network/play/server/SPacketTimeUpdate to metadata cache | |
[00:24:12] [Netty Local Client IO #0/TRACE] [mixin]: Added class metadata for java/lang/System to metadata cache | |
[00:24:12] [Netty Local Client IO #0/TRACE] [mixin]: Added class metadata for net/minecraft/network/play/server/SPacketOpenWindow to metadata cache | |
[00:24:12] [Netty Local Client IO #0/TRACE] [mixin]: Added class metadata for net/minecraft/network/play/server/SPacketWindowItems to metadata cache | |
[00:24:12] [Netty Local Client IO #0/TRACE] [mixin]: Added class metadata for net/minecraft/network/play/server/SPacketChat to metadata cache | |
[00:24:12] [Netty Local Client IO #0/TRACE] [mixin]: Added class metadata for java/util/Collections to metadata cache | |
[00:24:12] [Netty Local Client IO #0/TRACE] [mixin]: Added class metadata for net/minecraft/client/gui/ChatLine to metadata cache | |
[00:24:12] [Netty Local Client IO #0/INFO] [mixin]: Mixing MixinNetHandlerPlayClient from mixins.cutelessmod.clientcommands.json into net.minecraft.client.network.NetHandlerPlayClient | |
[00:24:12] [Netty Local Client IO #0/TRACE] [mixin]: Added class metadata for java/util/concurrent/CopyOnWriteArrayList to metadata cache | |
[00:24:12] [Netty Local Client IO #0/TRACE] [mixin]: Added class metadata for net/minecraft/network/play/server/SPacketTabComplete to metadata cache | |
[00:24:12] [Netty Local Client IO #0/TRACE] [mixin]: Added class metadata for net/dugged/cutelessmod/clientcommands/worldedit/WorldEdit to metadata cache | |
[00:24:12] [Netty Local Client IO #0/TRACE] [mixin]: Added class metadata for net/minecraft/network/play/INetHandlerPlayClient to metadata cache | |
[00:24:12] [Netty Local Client IO #0/TRACE] [mixin]: Added class metadata for net/minecraft/network/INetHandler to metadata cache | |
[00:24:12] [Netty Local Client IO #0/TRACE] [mixin]: Added class metadata for net/minecraft/network/play/server/SPacketCombatEvent to metadata cache | |
[00:24:12] [Netty Local Client IO #0/TRACE] [mixin]: Added class metadata for net/minecraft/client/gui/GuiPlayerTabOverlay to metadata cache | |
[00:24:12] [Netty Local Client IO #0/TRACE] [mixin]: Added class metadata for net/minecraft/network/play/server/SPacketJoinGame to metadata cache | |
[00:24:12] [Netty Local Client IO #0/TRACE] [mixin]: Added class metadata for net/minecraft/network/play/server/SPacketStatistics to metadata cache | |
[00:24:12] [Netty Local Client IO #0/TRACE] [mixin]: Added class metadata for net/minecraft/network/play/server/SPacketBlockAction to metadata cache | |
[00:24:12] [Netty Local Client IO #0/TRACE] [mixin]: Added class metadata for net/minecraft/entity/item/EntityFallingBlock to metadata cache | |
[00:24:12] [Netty Local Client IO #0/TRACE] [mixin]: Added class metadata for net/minecraft/entity/EntityAreaEffectCloud to metadata cache | |
[00:24:12] [Netty Local Client IO #0/TRACE] [mixin]: Added class metadata for net/minecraft/entity/item/EntityEnderCrystal to metadata cache | |
[00:24:12] [Netty Local Client IO #0/TRACE] [mixin]: Added class metadata for net/minecraft/entity/item/EntityArmorStand to metadata cache | |
[00:24:12] [Netty Local Client IO #0/TRACE] [mixin]: Added class metadata for net/minecraft/entity/item/EntityTNTPrimed to metadata cache | |
[00:24:12] [Netty Local Client IO #0/TRACE] [mixin]: Added class metadata for net/minecraft/entity/item/EntityBoat to metadata cache | |
[00:24:12] [Netty Local Client IO #0/TRACE] [mixin]: Added class metadata for net/minecraft/entity/item/EntityExpBottle to metadata cache | |
[00:24:12] [Netty Local Client IO #0/TRACE] [mixin]: Added class metadata for net/minecraft/entity/projectile/EntityThrowable to metadata cache | |
[00:24:12] [Netty Local Client IO #0/TRACE] [mixin]: Added class metadata for net/minecraft/entity/projectile/EntityPotion to metadata cache | |
[00:24:12] [Netty Local Client IO #0/TRACE] [mixin]: Added class metadata for net/minecraft/entity/projectile/EntityEvokerFangs to metadata cache | |
[00:24:12] [Netty Local Client IO #0/TRACE] [mixin]: Added class metadata for net/minecraft/entity/projectile/EntityEgg to metadata cache | |
[00:24:12] [Netty Local Client IO #0/TRACE] [mixin]: Added class metadata for net/minecraft/entity/projectile/EntityShulkerBullet to metadata cache | |
[00:24:12] [Netty Local Client IO #0/TRACE] [mixin]: Added class metadata for net/minecraft/entity/projectile/EntityWitherSkull to metadata cache | |
[00:24:12] [Netty Local Client IO #0/TRACE] [mixin]: Added class metadata for net/minecraft/entity/projectile/EntityFireball to metadata cache | |
[00:24:12] [Netty Local Client IO #0/TRACE] [mixin]: Added class metadata for net/minecraft/entity/projectile/EntitySmallFireball to metadata cache | |
[00:24:12] [Netty Local Client IO #0/TRACE] [mixin]: Added class metadata for net/minecraft/entity/projectile/EntityDragonFireball to metadata cache | |
[00:24:12] [Netty Local Client IO #0/TRACE] [mixin]: Added class metadata for net/minecraft/entity/projectile/EntityLargeFireball to metadata cache | |
[00:24:12] [Netty Local Client IO #0/TRACE] [mixin]: Added class metadata for net/minecraft/entity/item/EntityEnderEye to metadata cache | |
[00:24:12] [Netty Local Client IO #0/TRACE] [mixin]: Added class metadata for net/minecraft/entity/item/EntityEnderPearl to metadata cache | |
[00:24:12] [Netty Local Client IO #0/TRACE] [mixin]: Added class metadata for net/minecraft/entity/EntityLeashKnot to metadata cache | |
[00:24:12] [Netty Local Client IO #0/TRACE] [mixin]: Added class metadata for net/minecraft/entity/projectile/EntityLlamaSpit to metadata cache | |
[00:24:12] [Netty Local Client IO #0/TRACE] [mixin]: Added class metadata for net/minecraft/entity/projectile/EntitySnowball to metadata cache | |
[00:24:12] [Netty Local Client IO #0/TRACE] [mixin]: Added class metadata for net/minecraft/entity/projectile/EntitySpectralArrow to metadata cache | |
[00:24:12] [Netty Local Client IO #0/TRACE] [mixin]: Added class metadata for net/minecraft/entity/projectile/EntityArrow to metadata cache | |
[00:24:12] [Netty Local Client IO #0/TRACE] [mixin]: Added class metadata for net/minecraft/entity/projectile/EntityTippedArrow to metadata cache | |
[00:24:12] [Netty Local Client IO #0/TRACE] [mixin]: Added class metadata for net/minecraft/entity/projectile/EntityFishHook to metadata cache | |
[00:24:12] [Netty Local Client IO #0/TRACE] [mixin]: Added class metadata for net/minecraft/entity/item/EntityMinecart to metadata cache | |
[00:24:12] [Netty Local Client IO #0/TRACE] [mixin]: Added class metadata for net/minecraft/tileentity/TileEntitySign to metadata cache | |
[00:24:12] [Netty Local Client IO #0/TRACE] [mixin]: Added class metadata for java/io/UnsupportedEncodingException to metadata cache | |
[00:24:12] [Netty Local Client IO #0/TRACE] [mixin]: Added class metadata for net/minecraft/scoreboard/Team$CollisionRule to metadata cache | |
[00:24:12] [Netty Local Client IO #0/TRACE] [mixin]: Added class metadata for net/minecraft/scoreboard/Team$EnumVisible to metadata cache | |
[00:24:12] [Netty Local Client IO #0/TRACE] [FML]: Handshake channel activating | |
[00:24:12] [Netty Local Client IO #0/DEBUG] [FML]: FMLHandshakeClientState: null->FMLHandshakeClientState$1:START | |
[00:24:12] [Netty Local Client IO #0/DEBUG] [FML]: Next: HELLO | |
[00:24:12] [Server thread/TRACE] [FML]: Handshake channel activating | |
[00:24:12] [Server thread/DEBUG] [FML]: FMLHandshakeServerState: null->FMLHandshakeServerState$1:START | |
[00:24:12] [Server thread/DEBUG] [FML]: Next: HELLO | |
[00:24:12] [Netty Local Client IO #0/DEBUG] [FML]: Server FML protocol version 2, 4 byte dimension received 0 | |
[00:24:12] [Netty Local Client IO #0/DEBUG] [FML]: FMLHandshakeClientState: $ServerHello->FMLHandshakeClientState$2:HELLO | |
[00:24:12] [Netty Local Client IO #0/DEBUG] [FML]: Next: WAITINGSERVERDATA | |
[00:24:12] [Netty Local Client IO #0/INFO] [FML]: Server protocol version 2 | |
[00:24:12] [Netty Local Client IO #0/DEBUG] [FML]: Received override dimension 0 | |
[00:24:12] [Netty Server IO #1/DEBUG] [FML]: FMLHandshakeServerState: $ClientHello->FMLHandshakeServerState$2:HELLO | |
[00:24:12] [Netty Server IO #1/INFO] [FML]: Client protocol version 2 | |
[00:24:12] [Netty Server IO #1/DEBUG] [FML]: FMLHandshakeServerState: $ModList:5 mods->FMLHandshakeServerState$2:HELLO | |
[00:24:12] [Netty Server IO #1/INFO] [FML]: Client attempting to join with 5 mods : [email protected],[email protected],[email protected],[email protected],[email protected] | |
[00:24:12] [Netty Server IO #1/DEBUG] [FML]: Next: WAITINGCACK | |
[00:24:12] [Netty Local Client IO #0/DEBUG] [FML]: FMLHandshakeClientState: $ModList:5 mods->FMLHandshakeClientState$3:WAITINGSERVERDATA | |
[00:24:12] [Netty Local Client IO #0/DEBUG] [FML]: Next: PENDINGCOMPLETE | |
[00:24:12] [Netty Server IO #1/DEBUG] [FML]: FMLHandshakeServerState: $HandshakeAck:{2}->FMLHandshakeServerState$3:WAITINGCACK | |
[00:24:12] [Netty Server IO #1/DEBUG] [FML]: Next: COMPLETE | |
[00:24:12] [Netty Local Client IO #0/DEBUG] [FML]: FMLHandshakeClientState: $HandshakeAck:{2}->FMLHandshakeClientState$5:PENDINGCOMPLETE | |
[00:24:12] [Netty Local Client IO #0/DEBUG] [FML]: Next: COMPLETE | |
[00:24:12] [Netty Server IO #1/DEBUG] [FML]: FMLHandshakeServerState: $HandshakeAck:{4}->FMLHandshakeServerState$4:COMPLETE | |
[00:24:12] [Netty Server IO #1/DEBUG] [FML]: Next: DONE | |
[00:24:12] [Netty Local Client IO #0/DEBUG] [FML]: The fluid minecraft:lava has been selected as the default fluid for lava | |
[00:24:12] [Netty Local Client IO #0/DEBUG] [FML]: The fluid minecraft:water has been selected as the default fluid for water | |
[00:24:12] [Netty Local Client IO #0/DEBUG] [FML]: FMLHandshakeClientState: $HandshakeAck:{3}->FMLHandshakeClientState$6:COMPLETE | |
[00:24:12] [Netty Local Client IO #0/DEBUG] [FML]: Next: DONE | |
[00:24:12] [Netty Server IO #1/DEBUG] [FML]: FMLHandshakeServerState: $HandshakeAck:{5}->FMLHandshakeServerState$5:DONE | |
[00:24:12] [Netty Local Client IO #0/INFO] [FML]: [Netty Local Client IO #0] Client side modded connection established | |
[00:24:12] [Server thread/INFO] [FML]: [Server thread] Server side modded connection established | |
[00:24:12] [Server thread/INFO] [net.minecraft.server.management.PlayerList]: Player937[local:E:afd39b7c] logged in with entity id 413 at (237.30000001192093, 86.28826431322248, 219.26481047345905) | |
[00:24:12] [Netty Local Client IO #0/INFO] [mixin]: Mixing MixinPacketThreadUtil from mixins.cutelessmod.json into net.minecraft.network.PacketThreadUtil | |
[00:24:12] [Server thread/INFO] [net.minecraft.server.MinecraftServer]: Player937 joined the game | |
[00:24:12] [Client thread/INFO] [mixin]: Mixing MixinPlayerControllerMP from mixins.cutelessmod.json into net.minecraft.client.multiplayer.PlayerControllerMP | |
[00:24:12] [Client thread/TRACE] [mixin]: Added class metadata for net/minecraft/network/play/client/CPacketPlayerTryUseItemOnBlock to metadata cache | |
[00:24:12] [Client thread/DEBUG] [FML]: Overriding dimension: using 0 | |
[00:24:13] [Server thread/INFO] [net.minecraft.server.integrated.IntegratedServer]: Saving and pausing game... | |
[00:24:13] [Client thread/INFO] [mixin]: Mixing MixinEntityRenderer_Predicate from mixins.cutelessmod.json into net.minecraft.client.renderer.EntityRenderer$1 | |
[00:24:13] [Client thread/TRACE] [mixin]: Added class metadata for com/google/common/base/Predicate to metadata cache | |
[00:24:13] [Client thread/TRACE] [mixin]: Added class metadata for java/util/function/Predicate to metadata cache | |
[00:24:13] [Server thread/INFO] [net.minecraft.server.MinecraftServer]: Saving chunks for level 'New World'/overworld | |
[00:24:13] [Server thread/DEBUG] [FML]: Gathering id map for writing to world save New World | |
[00:24:24] [Client thread/INFO] [mixin]: Mixing MixinGuiStats from mixins.cutelessmod.json into net.minecraft.client.gui.achievement.GuiStats | |
[00:24:24] [Client thread/TRACE] [mixin]: Added class metadata for net/minecraft/client/gui/IProgressMeter to metadata cache | |
[00:24:24] [Server thread/INFO] [net.minecraft.server.integrated.IntegratedServer]: Saving and pausing game... | |
[00:24:24] [Server thread/INFO] [net.minecraft.server.MinecraftServer]: Saving chunks for level 'New World'/overworld | |
[00:24:24] [Server thread/DEBUG] [FML]: Gathering id map for writing to world save New World | |
[00:24:24] [Client thread/INFO] [mixin]: Mixing MixinGuiControls from mixins.cutelessmod.json into net.minecraft.client.gui.GuiControls | |
[00:24:25] [Server thread/TRACE] [FML]: Sending event FMLServerStoppingEvent to mod minecraft | |
[00:24:25] [Server thread/TRACE] [FML]: Sent event FMLServerStoppingEvent to mod minecraft | |
[00:24:25] [Server thread/DEBUG] [FML]: Bar Step: ServerStopping - Minecraft took 0.000s | |
[00:24:25] [Server thread/TRACE] [FML]: Sending event FMLServerStoppingEvent to mod mcp | |
[00:24:25] [Server thread/TRACE] [FML]: Sent event FMLServerStoppingEvent to mod mcp | |
[00:24:25] [Server thread/DEBUG] [FML]: Bar Step: ServerStopping - Minecraft Coder Pack took 0.000s | |
[00:24:25] [Server thread/TRACE] [FML]: Sending event FMLServerStoppingEvent to mod FML | |
[00:24:25] [Server thread/TRACE] [FML]: Sent event FMLServerStoppingEvent to mod FML | |
[00:24:25] [Server thread/DEBUG] [FML]: Bar Step: ServerStopping - Forge Mod Loader took 0.000s | |
[00:24:25] [Server thread/TRACE] [FML]: Sending event FMLServerStoppingEvent to mod forge | |
[00:24:25] [Server thread/TRACE] [FML]: Sent event FMLServerStoppingEvent to mod forge | |
[00:24:25] [Server thread/DEBUG] [FML]: Bar Step: ServerStopping - Minecraft Forge took 0.000s | |
[00:24:25] [Server thread/TRACE] [FML]: Sending event FMLServerStoppingEvent to mod cutelessmod | |
[00:24:25] [Server thread/TRACE] [FML]: Sent event FMLServerStoppingEvent to mod cutelessmod | |
[00:24:25] [Server thread/DEBUG] [FML]: Bar Step: ServerStopping - CutelessMod took 0.000s | |
[00:24:25] [Server thread/DEBUG] [FML]: Bar Finished: ServerStopping took 0.001s | |
[00:24:25] [Server thread/INFO] [net.minecraft.server.MinecraftServer]: Stopping server | |
[00:24:25] [Server thread/INFO] [net.minecraft.server.MinecraftServer]: Saving players | |
[00:24:25] [Server thread/INFO] [net.minecraft.network.NetHandlerPlayServer]: Player937 lost connection: Disconnected | |
[00:24:25] [Server thread/INFO] [net.minecraft.server.MinecraftServer]: Player937 left the game | |
[00:24:25] [Server thread/INFO] [net.minecraft.network.NetHandlerPlayServer]: Stopping singleplayer server as player logged out | |
[00:24:25] [Server thread/INFO] [net.minecraft.server.MinecraftServer]: Saving worlds | |
[00:24:25] [Server thread/INFO] [net.minecraft.server.MinecraftServer]: Saving chunks for level 'New World'/overworld | |
[00:24:25] [Server thread/DEBUG] [FML]: Gathering id map for writing to world save New World | |
[00:24:25] [Server thread/INFO] [FML]: Unloading dimension 0 | |
[00:24:25] [Server thread/DEBUG] [FML]: Reverting to frozen data state. | |
[00:24:25] [Server thread/TRACE] [FML]: Sending event FMLModIdMappingEvent to mod minecraft | |
[00:24:25] [Server thread/TRACE] [FML]: Sent event FMLModIdMappingEvent to mod minecraft | |
[00:24:25] [Server thread/DEBUG] [FML]: Bar Step: ModIdMapping - Minecraft took 0.000s | |
[00:24:25] [Server thread/TRACE] [FML]: Sending event FMLModIdMappingEvent to mod mcp | |
[00:24:25] [Server thread/TRACE] [FML]: Sent event FMLModIdMappingEvent to mod mcp | |
[00:24:25] [Server thread/DEBUG] [FML]: Bar Step: ModIdMapping - Minecraft Coder Pack took 0.000s | |
[00:24:25] [Server thread/TRACE] [FML]: Sending event FMLModIdMappingEvent to mod FML | |
[00:24:25] [Server thread/TRACE] [FML]: Sent event FMLModIdMappingEvent to mod FML | |
[00:24:25] [Server thread/DEBUG] [FML]: Bar Step: ModIdMapping - Forge Mod Loader took 0.000s | |
[00:24:25] [Server thread/TRACE] [FML]: Sending event FMLModIdMappingEvent to mod forge | |
[00:24:25] [Server thread/TRACE] [FML]: Sent event FMLModIdMappingEvent to mod forge | |
[00:24:25] [Server thread/DEBUG] [FML]: Bar Step: ModIdMapping - Minecraft Forge took 0.089s | |
[00:24:25] [Server thread/TRACE] [FML]: Sending event FMLModIdMappingEvent to mod cutelessmod | |
[00:24:25] [Server thread/TRACE] [FML]: Sent event FMLModIdMappingEvent to mod cutelessmod | |
[00:24:25] [Server thread/DEBUG] [FML]: Bar Step: ModIdMapping - CutelessMod took 0.000s | |
[00:24:25] [Server thread/DEBUG] [FML]: Bar Finished: ModIdMapping took 0.090s | |
[00:24:25] [Server thread/INFO] [FML]: Applying holder lookups | |
[00:24:25] [Server thread/INFO] [FML]: Holder lookups applied | |
[00:24:25] [Server thread/DEBUG] [FML]: Frozen state restored. | |
[00:24:25] [Server thread/TRACE] [FML]: Sending event FMLServerStoppedEvent to mod minecraft | |
[00:24:25] [Server thread/TRACE] [FML]: Sent event FMLServerStoppedEvent to mod minecraft | |
[00:24:25] [Server thread/DEBUG] [FML]: Bar Step: ServerStopped - Minecraft took 0.000s | |
[00:24:25] [Server thread/TRACE] [FML]: Sending event FMLServerStoppedEvent to mod mcp | |
[00:24:25] [Server thread/TRACE] [FML]: Sent event FMLServerStoppedEvent to mod mcp | |
[00:24:25] [Server thread/DEBUG] [FML]: Bar Step: ServerStopped - Minecraft Coder Pack took 0.000s | |
[00:24:25] [Server thread/TRACE] [FML]: Sending event FMLServerStoppedEvent to mod FML | |
[00:24:25] [Server thread/TRACE] [FML]: Sent event FMLServerStoppedEvent to mod FML | |
[00:24:25] [Server thread/DEBUG] [FML]: Bar Step: ServerStopped - Forge Mod Loader took 0.000s | |
[00:24:25] [Server thread/TRACE] [FML]: Sending event FMLServerStoppedEvent to mod forge | |
[00:24:25] [Server thread/TRACE] [FML]: Sent event FMLServerStoppedEvent to mod forge | |
[00:24:25] [Server thread/DEBUG] [FML]: Bar Step: ServerStopped - Minecraft Forge took 0.000s | |
[00:24:25] [Server thread/TRACE] [FML]: Sending event FMLServerStoppedEvent to mod cutelessmod | |
[00:24:25] [Server thread/TRACE] [FML]: Sent event FMLServerStoppedEvent to mod cutelessmod | |
[00:24:25] [Server thread/DEBUG] [FML]: Bar Step: ServerStopped - CutelessMod took 0.000s | |
[00:24:25] [Server thread/DEBUG] [FML]: Bar Finished: ServerStopped took 0.001s | |
[00:24:26] [Client thread/INFO] [net.minecraft.client.Minecraft]: Stopping! | |
[00:24:26] [Client thread/INFO] [net.minecraft.client.audio.SoundManager]: SoundSystem shutting down... | |
[00:24:26] [Client thread/WARN] [net.minecraft.client.audio.SoundManager]: Author: Paul Lamb, www.paulscode.com |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[00:26:42] [main/INFO] [GradleStart]: Extra: [] | |
[00:26:42] [main/INFO] [GradleStart]: Running with arguments: [--userProperties, {}, --assetsDir, C:/Users/Nessi/.gradle/caches/minecraft/assets, --assetIndex, 1.12, --accessToken{REDACTED}, --version, 1.12.2, --tweakClass, net.minecraftforge.fml.common.launcher.FMLTweaker, --tweakClass, net.minecraftforge.gradle.tweakers.CoremodTweaker] | |
[00:26:42] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLTweaker | |
[00:26:42] [main/INFO] [LaunchWrapper]: Using primary tweak class name net.minecraftforge.fml.common.launcher.FMLTweaker | |
[00:26:42] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.gradle.tweakers.CoremodTweaker | |
[00:26:42] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLTweaker | |
[00:26:42] [main/DEBUG] [FML]: Injecting tracing printstreams for STDOUT/STDERR. | |
[00:26:42] [main/INFO] [FML]: Forge Mod Loader version 14.23.5.2847 for Minecraft 1.12.2 loading | |
[00:26:42] [main/INFO] [FML]: Java is OpenJDK 64-Bit Server VM, version 1.8.0_302, running on Windows 10:amd64:10.0, installed at C:\Users\Nessi\.jdks\corretto-1.8.0_302\jre | |
[00:26:42] [main/DEBUG] [FML]: Java classpath at launch is: | |
[00:26:42] [main/DEBUG] [FML]: C:\Users\Nessi\.jdks\corretto-1.8.0_302\jre\lib\charsets.jar | |
[00:26:42] [main/DEBUG] [FML]: C:\Users\Nessi\.jdks\corretto-1.8.0_302\jre\lib\ext\access-bridge-64.jar | |
[00:26:42] [main/DEBUG] [FML]: C:\Users\Nessi\.jdks\corretto-1.8.0_302\jre\lib\ext\cldrdata.jar | |
[00:26:42] [main/DEBUG] [FML]: C:\Users\Nessi\.jdks\corretto-1.8.0_302\jre\lib\ext\dnsns.jar | |
[00:26:42] [main/DEBUG] [FML]: C:\Users\Nessi\.jdks\corretto-1.8.0_302\jre\lib\ext\jaccess.jar | |
[00:26:42] [main/DEBUG] [FML]: C:\Users\Nessi\.jdks\corretto-1.8.0_302\jre\lib\ext\jfxrt.jar | |
[00:26:42] [main/DEBUG] [FML]: C:\Users\Nessi\.jdks\corretto-1.8.0_302\jre\lib\ext\localedata.jar | |
[00:26:42] [main/DEBUG] [FML]: C:\Users\Nessi\.jdks\corretto-1.8.0_302\jre\lib\ext\nashorn.jar | |
[00:26:42] [main/DEBUG] [FML]: C:\Users\Nessi\.jdks\corretto-1.8.0_302\jre\lib\ext\sunec.jar | |
[00:26:42] [main/DEBUG] [FML]: C:\Users\Nessi\.jdks\corretto-1.8.0_302\jre\lib\ext\sunjce_provider.jar | |
[00:26:42] [main/DEBUG] [FML]: C:\Users\Nessi\.jdks\corretto-1.8.0_302\jre\lib\ext\sunmscapi.jar | |
[00:26:42] [main/DEBUG] [FML]: C:\Users\Nessi\.jdks\corretto-1.8.0_302\jre\lib\ext\sunpkcs11.jar | |
[00:26:42] [main/DEBUG] [FML]: C:\Users\Nessi\.jdks\corretto-1.8.0_302\jre\lib\ext\zipfs.jar | |
[00:26:42] [main/DEBUG] [FML]: C:\Users\Nessi\.jdks\corretto-1.8.0_302\jre\lib\jce.jar | |
[00:26:42] [main/DEBUG] [FML]: C:\Users\Nessi\.jdks\corretto-1.8.0_302\jre\lib\jfr.jar | |
[00:26:42] [main/DEBUG] [FML]: C:\Users\Nessi\.jdks\corretto-1.8.0_302\jre\lib\jfxswt.jar | |
[00:26:42] [main/DEBUG] [FML]: C:\Users\Nessi\.jdks\corretto-1.8.0_302\jre\lib\jsse.jar | |
[00:26:42] [main/DEBUG] [FML]: C:\Users\Nessi\.jdks\corretto-1.8.0_302\jre\lib\management-agent.jar | |
[00:26:42] [main/DEBUG] [FML]: C:\Users\Nessi\.jdks\corretto-1.8.0_302\jre\lib\resources.jar | |
[00:26:42] [main/DEBUG] [FML]: C:\Users\Nessi\.jdks\corretto-1.8.0_302\jre\lib\rt.jar | |
[00:26:42] [main/DEBUG] [FML]: C:\Users\Nessi\IdeaProjects\CutelessMod\build\classes\java\main | |
[00:26:42] [main/DEBUG] [FML]: C:\Users\Nessi\IdeaProjects\CutelessMod\build\resources\main | |
[00:26:42] [main/DEBUG] [FML]: C:\Users\Nessi\.gradle\caches\minecraft\deobfedDeps\compileDummy.jar | |
[00:26:42] [main/DEBUG] [FML]: C:\Users\Nessi\.gradle\caches\minecraft\deobfedDeps\providedDummy.jar | |
[00:26:42] [main/DEBUG] [FML]: C:\Users\Nessi\.gradle\caches\modules-2\files-2.1\org.spongepowered\mixin\0.8.4-SNAPSHOT\2f8b0718d390be521dff1d9dcf44d1e3e8314773\mixin-0.8.4-SNAPSHOT.jar | |
[00:26:42] [main/DEBUG] [FML]: C:\Users\Nessi\.gradle\caches\minecraft\net\minecraftforge\forge\1.12.2-14.23.5.2847\stable\39\forgeSrc-1.12.2-14.23.5.2847.jar | |
[00:26:42] [main/DEBUG] [FML]: C:\Users\Nessi\.gradle\caches\modules-2\files-2.1\com.mojang\authlib\1.5.25\9834cdf236c22e84b946bba989e2f94ef5897c3c\authlib-1.5.25.jar | |
[00:26:42] [main/DEBUG] [FML]: C:\Users\Nessi\.gradle\caches\modules-2\files-2.1\com.google.code.findbugs\jsr305\3.0.1\f7be08ec23c21485b9b5a1cf1654c2ec8c58168d\jsr305-3.0.1.jar | |
[00:26:42] [main/DEBUG] [FML]: C:\Users\Nessi\.gradle\caches\modules-2\files-2.1\com.mojang\patchy\1.2.3\e3107ca512d704a434076a153a6e1149e3787275\patchy-1.2.3.jar | |
[00:26:42] [main/DEBUG] [FML]: C:\Users\Nessi\.gradle\caches\modules-2\files-2.1\oshi-project\oshi-core\1.1\9ddf7b048a8d701be231c0f4f95fd986198fd2d8\oshi-core-1.1.jar | |
[00:26:42] [main/DEBUG] [FML]: C:\Users\Nessi\.gradle\caches\modules-2\files-2.1\com.mojang\text2speech\1.10.3\48fd510879dff266c3815947de66e3d4809f8668\text2speech-1.10.3.jar | |
[00:26:42] [main/DEBUG] [FML]: C:\Users\Nessi\.gradle\caches\modules-2\files-2.1\net.java.dev.jna\jna\4.4.0\cb208278274bf12ebdb56c61bd7407e6f774d65a\jna-4.4.0.jar | |
[00:26:42] [main/DEBUG] [FML]: C:\Users\Nessi\.gradle\caches\modules-2\files-2.1\net.java.dev.jna\platform\3.4.0\e3f70017be8100d3d6923f50b3d2ee17714e9c13\platform-3.4.0.jar | |
[00:26:42] [main/DEBUG] [FML]: C:\Users\Nessi\.gradle\caches\modules-2\files-2.1\com.ibm.icu\icu4j-core-mojang\51.2\63d216a9311cca6be337c1e458e587f99d382b84\icu4j-core-mojang-51.2.jar | |
[00:26:42] [main/DEBUG] [FML]: C:\Users\Nessi\.gradle\caches\modules-2\files-2.1\net.minecraft\launchwrapper\1.12\111e7bea9c968cdb3d06ef4632bf7ff0824d0f36\launchwrapper-1.12.jar | |
[00:26:42] [main/DEBUG] [FML]: C:\Users\Nessi\.gradle\caches\modules-2\files-2.1\net.sf.jopt-simple\jopt-simple\5.0.3\cdd846cfc4e0f7eefafc02c0f5dce32b9303aa2a\jopt-simple-5.0.3.jar | |
[00:26:42] [main/DEBUG] [FML]: C:\Users\Nessi\.gradle\caches\modules-2\files-2.1\io.netty\netty-all\4.1.9.Final\97860965d6a0a6b98e7f569f3f966727b8db75\netty-all-4.1.9.Final.jar | |
[00:26:42] [main/DEBUG] [FML]: C:\Users\Nessi\.gradle\caches\modules-2\files-2.1\com.google.guava\guava\21.0\3a3d111be1be1b745edfa7d91678a12d7ed38709\guava-21.0.jar | |
[00:26:42] [main/DEBUG] [FML]: C:\Users\Nessi\.gradle\caches\modules-2\files-2.1\org.apache.maven\maven-artifact\3.5.3\7dc72b6d6d8a6dced3d294ed54c2cc3515ade9f4\maven-artifact-3.5.3.jar | |
[00:26:42] [main/DEBUG] [FML]: C:\Users\Nessi\.gradle\caches\modules-2\files-2.1\org.apache.commons\commons-lang3\3.5\6c6c702c89bfff3cd9e80b04d668c5e190d588c6\commons-lang3-3.5.jar | |
[00:26:42] [main/DEBUG] [FML]: C:\Users\Nessi\.gradle\caches\modules-2\files-2.1\commons-io\commons-io\2.5\2852e6e05fbb95076fc091f6d1780f1f8fe35e0f\commons-io-2.5.jar | |
[00:26:42] [main/DEBUG] [FML]: C:\Users\Nessi\.gradle\caches\modules-2\files-2.1\com.mojang\realms\1.10.22\bd0dccebdf3744c75f1ca20063f16e8f7d5e663f\realms-1.10.22.jar | |
[00:26:42] [main/DEBUG] [FML]: C:\Users\Nessi\.gradle\caches\modules-2\files-2.1\org.apache.httpcomponents\httpclient\4.3.3\18f4247ff4572a074444572cee34647c43e7c9c7\httpclient-4.3.3.jar | |
[00:26:42] [main/DEBUG] [FML]: C:\Users\Nessi\.gradle\caches\modules-2\files-2.1\commons-codec\commons-codec\1.10\4b95f4897fa13f2cd904aee711aeafc0c5295cd8\commons-codec-1.10.jar | |
[00:26:42] [main/DEBUG] [FML]: C:\Users\Nessi\.gradle\caches\modules-2\files-2.1\com.paulscode\librarylwjglopenal\20100824\73e80d0794c39665aec3f62eee88ca91676674ef\librarylwjglopenal-20100824.jar | |
[00:26:42] [main/DEBUG] [FML]: C:\Users\Nessi\.gradle\caches\modules-2\files-2.1\org.lwjgl.lwjgl\lwjgl_util\2.9.4-nightly-20150209\d51a7c040a721d13efdfbd34f8b257b2df882ad0\lwjgl_util-2.9.4-nightly-20150209.jar | |
[00:26:42] [main/DEBUG] [FML]: C:\Users\Nessi\.gradle\caches\modules-2\files-2.1\org.lwjgl.lwjgl\lwjgl\2.9.4-nightly-20150209\697517568c68e78ae0b4544145af031c81082dfe\lwjgl-2.9.4-nightly-20150209.jar | |
[00:26:42] [main/DEBUG] [FML]: C:\Users\Nessi\.gradle\caches\modules-2\files-2.1\net.java.jinput\jinput\2.0.5\39c7796b469a600f72380316f6b1f11db6c2c7c4\jinput-2.0.5.jar | |
[00:26:42] [main/DEBUG] [FML]: C:\Users\Nessi\.gradle\caches\modules-2\files-2.1\net.java.jutils\jutils\1.0.0\e12fe1fda814bd348c1579329c86943d2cd3c6a6\jutils-1.0.0.jar | |
[00:26:42] [main/DEBUG] [FML]: C:\Users\Nessi\.gradle\caches\modules-2\files-2.1\com.google.code.gson\gson\2.8.0\c4ba5371a29ac9b2ad6129b1d39ea38750043eff\gson-2.8.0.jar | |
[00:26:42] [main/DEBUG] [FML]: C:\Users\Nessi\.gradle\caches\modules-2\files-2.1\org.apache.commons\commons-compress\1.8.1\a698750c16740fd5b3871425f4cb3bbaa87f529d\commons-compress-1.8.1.jar | |
[00:26:42] [main/DEBUG] [FML]: C:\Users\Nessi\.gradle\caches\modules-2\files-2.1\commons-logging\commons-logging\1.1.3\f6f66e966c70a83ffbdb6f17a0919eaf7c8aca7f\commons-logging-1.1.3.jar | |
[00:26:42] [main/DEBUG] [FML]: C:\Users\Nessi\.gradle\caches\modules-2\files-2.1\org.apache.httpcomponents\httpcore\4.3.2\31fbbff1ddbf98f3aa7377c94d33b0447c646b6e\httpcore-4.3.2.jar | |
[00:26:42] [main/DEBUG] [FML]: C:\Users\Nessi\.gradle\caches\modules-2\files-2.1\it.unimi.dsi\fastutil\7.1.0\9835253257524c1be7ab50c057aa2d418fb72082\fastutil-7.1.0.jar | |
[00:26:42] [main/DEBUG] [FML]: C:\Users\Nessi\.gradle\caches\modules-2\files-2.1\org.apache.logging.log4j\log4j-core\2.8.1\4ac28ff2f1ddf05dae3043a190451e8c46b73c31\log4j-core-2.8.1.jar | |
[00:26:42] [main/DEBUG] [FML]: C:\Users\Nessi\.gradle\caches\modules-2\files-2.1\org.apache.logging.log4j\log4j-api\2.8.1\e801d13612e22cad62a3f4f3fe7fdbe6334a8e72\log4j-api-2.8.1.jar | |
[00:26:42] [main/DEBUG] [FML]: C:\Users\Nessi\.gradle\caches\modules-2\files-2.1\org.jline\jline\3.5.1\51800e9d7a13608894a5a28eed0f5c7fa2f300fb\jline-3.5.1.jar | |
[00:26:42] [main/DEBUG] [FML]: C:\Users\Nessi\.gradle\caches\modules-2\files-2.1\org.ow2.asm\asm-debug-all\5.2\3354e11e2b34215f06dab629ab88e06aca477c19\asm-debug-all-5.2.jar | |
[00:26:42] [main/DEBUG] [FML]: C:\Users\Nessi\.gradle\caches\modules-2\files-2.1\com.typesafe.akka\akka-actor_2.11\2.3.3\ed62e9fc709ca0f2ff1a3220daa8b70a2870078e\akka-actor_2.11-2.3.3.jar | |
[00:26:42] [main/DEBUG] [FML]: C:\Users\Nessi\.gradle\caches\modules-2\files-2.1\com.typesafe\config\1.2.1\f771f71fdae3df231bcd54d5ca2d57f0bf93f467\config-1.2.1.jar | |
[00:26:42] [main/DEBUG] [FML]: C:\Users\Nessi\.gradle\caches\modules-2\files-2.1\org.scala-lang\scala-actors-migration_2.11\1.1.0\dfa8bc42b181d5b9f1a5dd147f8ae308b893eb6f\scala-actors-migration_2.11-1.1.0.jar | |
[00:26:42] [main/DEBUG] [FML]: C:\Users\Nessi\.gradle\caches\modules-2\files-2.1\org.scala-lang.plugins\scala-continuations-plugin_2.11.1\1.0.2\f361a3283452c57fa30c1ee69448995de23c60f7\scala-continuations-plugin_2.11.1-1.0.2.jar | |
[00:26:42] [main/DEBUG] [FML]: C:\Users\Nessi\.gradle\caches\modules-2\files-2.1\org.scala-lang\scala-compiler\2.11.1\56ea2e6c025e0821f28d73ca271218b8dd04926a\scala-compiler-2.11.1.jar | |
[00:26:42] [main/DEBUG] [FML]: C:\Users\Nessi\.gradle\caches\modules-2\files-2.1\org.scala-lang.plugins\scala-continuations-library_2.11\1.0.2\e517c53a7e9acd6b1668c5a35eccbaa3bab9aac\scala-continuations-library_2.11-1.0.2.jar | |
[00:26:42] [main/DEBUG] [FML]: C:\Users\Nessi\.gradle\caches\modules-2\files-2.1\org.scala-lang.modules\scala-parser-combinators_2.11\1.0.1\f05d7345bf5a58924f2837c6c1f4d73a938e1ff0\scala-parser-combinators_2.11-1.0.1.jar | |
[00:26:42] [main/DEBUG] [FML]: C:\Users\Nessi\.gradle\caches\modules-2\files-2.1\org.scala-lang\scala-reflect\2.11.1\6580347e61cc7f8e802941e7fde40fa83b8badeb\scala-reflect-2.11.1.jar | |
[00:26:42] [main/DEBUG] [FML]: C:\Users\Nessi\.gradle\caches\modules-2\files-2.1\org.scala-lang.modules\scala-swing_2.11\1.0.1\b1cdd92bd47b1e1837139c1c53020e86bb9112ae\scala-swing_2.11-1.0.1.jar | |
[00:26:42] [main/DEBUG] [FML]: C:\Users\Nessi\.gradle\caches\modules-2\files-2.1\org.scala-lang.modules\scala-xml_2.11\1.0.2\820fbca7e524b530fdadc594c39d49a21ea0337e\scala-xml_2.11-1.0.2.jar | |
[00:26:42] [main/DEBUG] [FML]: C:\Users\Nessi\.gradle\caches\modules-2\files-2.1\org.scala-lang\scala-library\2.11.1\e11da23da3eabab9f4777b9220e60d44c1aab6a\scala-library-2.11.1.jar | |
[00:26:42] [main/DEBUG] [FML]: C:\Users\Nessi\.gradle\caches\modules-2\files-2.1\lzma\lzma\0.0.1\521616dc7487b42bef0e803bd2fa3faf668101d7\lzma-0.0.1.jar | |
[00:26:42] [main/DEBUG] [FML]: C:\Users\Nessi\.gradle\caches\modules-2\files-2.1\net.sf.trove4j\trove4j\3.0.3\42ccaf4761f0dfdfa805c9e340d99a755907e2dd\trove4j-3.0.3.jar | |
[00:26:42] [main/DEBUG] [FML]: C:\Users\Nessi\.gradle\caches\modules-2\files-2.1\com.paulscode\codecjorbis\20101023\c73b5636faf089d9f00e8732a829577de25237ee\codecjorbis-20101023.jar | |
[00:26:42] [main/DEBUG] [FML]: C:\Users\Nessi\.gradle\caches\modules-2\files-2.1\com.paulscode\codecwav\20101023\12f031cfe88fef5c1dd36c563c0a3a69bd7261da\codecwav-20101023.jar | |
[00:26:42] [main/DEBUG] [FML]: C:\Users\Nessi\.gradle\caches\modules-2\files-2.1\com.paulscode\libraryjavasound\20101123\5c5e304366f75f9eaa2e8cca546a1fb6109348b3\libraryjavasound-20101123.jar | |
[00:26:42] [main/DEBUG] [FML]: C:\Users\Nessi\.gradle\caches\modules-2\files-2.1\com.paulscode\soundsystem\20120107\419c05fe9be71f792b2d76cfc9b67f1ed0fec7f6\soundsystem-20120107.jar | |
[00:26:42] [main/DEBUG] [FML]: C:\Users\Nessi\.gradle\caches\modules-2\files-2.1\java3d\vecmath\1.5.2\79846ba34cbd89e2422d74d53752f993dcc2ccaf\vecmath-1.5.2.jar | |
[00:26:42] [main/DEBUG] [FML]: C:\Users\Nessi\.gradle\caches\modules-2\files-2.1\ca.weblite\java-objc-bridge\1.0.0\6ef160c3133a78de015830860197602ca1c855d3\java-objc-bridge-1.0.0.jar | |
[00:26:42] [main/DEBUG] [FML]: C:\Users\Nessi\.gradle\caches\modules-2\files-2.1\org.codehaus.plexus\plexus-utils\3.1.0\60eecb6f15abdb1c653ad80abaac6fe188b3feaa\plexus-utils-3.1.0.jar | |
[00:26:42] [main/DEBUG] [FML]: C:\Users\Nessi\.gradle\caches\modules-2\files-2.1\org.lwjgl.lwjgl\lwjgl-platform\2.9.4-nightly-20150209\931074f46c795d2f7b30ed6395df5715cfd7675b\lwjgl-platform-2.9.4-nightly-20150209-natives-linux.jar | |
[00:26:42] [main/DEBUG] [FML]: C:\Users\Nessi\.gradle\caches\modules-2\files-2.1\org.lwjgl.lwjgl\lwjgl-platform\2.9.4-nightly-20150209\bcab850f8f487c3f4c4dbabde778bb82bd1a40ed\lwjgl-platform-2.9.4-nightly-20150209-natives-osx.jar | |
[00:26:42] [main/DEBUG] [FML]: C:\Users\Nessi\.gradle\caches\modules-2\files-2.1\org.lwjgl.lwjgl\lwjgl-platform\2.9.4-nightly-20150209\b84d5102b9dbfabfeb5e43c7e2828d98a7fc80e0\lwjgl-platform-2.9.4-nightly-20150209-natives-windows.jar | |
[00:26:42] [main/DEBUG] [FML]: C:\Users\Nessi\.gradle\caches\modules-2\files-2.1\net.java.jinput\jinput-platform\2.0.5\7ff832a6eb9ab6a767f1ade2b548092d0fa64795\jinput-platform-2.0.5-natives-linux.jar | |
[00:26:42] [main/DEBUG] [FML]: C:\Users\Nessi\.gradle\caches\modules-2\files-2.1\net.java.jinput\jinput-platform\2.0.5\53f9c919f34d2ca9de8c51fc4e1e8282029a9232\jinput-platform-2.0.5-natives-osx.jar | |
[00:26:42] [main/DEBUG] [FML]: C:\Users\Nessi\.gradle\caches\modules-2\files-2.1\net.java.jinput\jinput-platform\2.0.5\385ee093e01f587f30ee1c8a2ee7d408fd732e16\jinput-platform-2.0.5-natives-windows.jar | |
[00:26:42] [main/DEBUG] [FML]: C:\Users\Nessi\.gradle\caches\modules-2\files-2.1\org.scala-lang\scala-actors\2.11.0\8ccfb6541de179bb1c4d45cf414acee069b7f78b\scala-actors-2.11.0.jar | |
[00:26:42] [main/DEBUG] [FML]: C:\Users\Nessi\.gradle\caches\minecraft\net\minecraftforge\forge\1.12.2-14.23.5.2847\start | |
[00:26:42] [main/DEBUG] [FML]: C:\Program Files\JetBrains\IntelliJ IDEA 2019.3\lib\idea_rt.jar | |
[00:26:42] [main/DEBUG] [FML]: Java library path at launch is: | |
[00:26:42] [main/DEBUG] [FML]: C:\Users\Nessi\.jdks\corretto-1.8.0_302\bin | |
[00:26:42] [main/DEBUG] [FML]: C:\WINDOWS\Sun\Java\bin | |
[00:26:42] [main/DEBUG] [FML]: C:\WINDOWS\system32 | |
[00:26:42] [main/DEBUG] [FML]: C:\WINDOWS | |
[00:26:42] [main/DEBUG] [FML]: C:\Program Files\AdoptOpenJDK\jdk-8.0.282.8-hotspot\bin | |
[00:26:42] [main/DEBUG] [FML]: C:\Program Files\Python38\Scripts\ | |
[00:26:42] [main/DEBUG] [FML]: C:\Program Files\Python38\ | |
[00:26:42] [main/DEBUG] [FML]: C:\Windows\system32 | |
[00:26:42] [main/DEBUG] [FML]: C:\Windows | |
[00:26:42] [main/DEBUG] [FML]: C:\Windows\System32\Wbem | |
[00:26:42] [main/DEBUG] [FML]: C:\Windows\System32\WindowsPowerShell\v1.0\ | |
[00:26:42] [main/DEBUG] [FML]: C:\Windows\System32\OpenSSH\ | |
[00:26:42] [main/DEBUG] [FML]: C:\Program Files\Microsoft VS Code\bin | |
[00:26:42] [main/DEBUG] [FML]: C:\Program Files (x86)\Wolfram Research\WolframScript\ | |
[00:26:42] [main/DEBUG] [FML]: C:\Program Files (x86)\NVIDIA Corporation\PhysX\Common | |
[00:26:42] [main/DEBUG] [FML]: C:\apache-maven-3.6.3\bin | |
[00:26:42] [main/DEBUG] [FML]: C:\WINDOWS\system32 | |
[00:26:42] [main/DEBUG] [FML]: C:\WINDOWS | |
[00:26:42] [main/DEBUG] [FML]: C:\WINDOWS\System32\Wbem | |
[00:26:42] [main/DEBUG] [FML]: C:\WINDOWS\System32\WindowsPowerShell\v1.0\ | |
[00:26:42] [main/DEBUG] [FML]: C:\WINDOWS\System32\OpenSSH\ | |
[00:26:42] [main/DEBUG] [FML]: C:\Program Files\Git\cmd | |
[00:26:42] [main/DEBUG] [FML]: C:\Program Files\WindowsPowerShell\Scripts | |
[00:26:42] [main/DEBUG] [FML]: C:\Program Files\PuTTY\ | |
[00:26:42] [main/DEBUG] [FML]: C:\Program Files\dotnet\ | |
[00:26:42] [main/DEBUG] [FML]: C:\Users\Nessi\.cargo\bin | |
[00:26:42] [main/DEBUG] [FML]: C:\Users\Nessi\AppData\Local\Microsoft\WindowsApps | |
[00:26:42] [main/DEBUG] [FML]: | |
[00:26:42] [main/DEBUG] [FML]: C:\Users\Nessi\AppData\Local\Programs\Microsoft VS Code\bin | |
[00:26:42] [main/DEBUG] [FML]: C:\Users\Nessi\.dotnet\tools | |
[00:26:42] [main/DEBUG] [FML]: . | |
[00:26:42] [main/DEBUG] [FML]: C:/Users/Nessi/.gradle/caches/minecraft/net/minecraft/natives/1.12.2 | |
[00:26:42] [main/ERROR] [FML]: Apache Maven library folder was not in the format expected. Using default libraries directory. | |
[00:26:42] [main/ERROR] [FML]: Full: C:\Users\Nessi\.gradle\caches\modules-2\files-2.1\org.apache.maven\maven-artifact\3.5.3\7dc72b6d6d8a6dced3d294ed54c2cc3515ade9f4\maven-artifact-3.5.3.jar | |
[00:26:42] [main/ERROR] [FML]: Trimmed: c:/users/nessi/.gradle/caches/modules-2/files-2.1/org.apache.maven/maven-artifact/3.5.3/ | |
[00:26:42] [main/DEBUG] [FML]: Determined Minecraft Libraries Root: .\libraries | |
[00:26:42] [main/DEBUG] [FML]: Cleaning up mods folder: .\mods | |
[00:26:43] [main/INFO] [FML]: Managed to load a deobfuscated Minecraft name- we are in a deobfuscated environment. Skipping runtime deobfuscation | |
[00:26:43] [main/INFO] [FML]: Detected deobfuscated environment, loading log configs for colored console logs. | |
[00:26:44] [main/DEBUG] [FML]: Instantiating coremod class FMLCorePlugin | |
[00:26:44] [main/INFO] [FML]: Ignoring missing certificate for coremod FMLCorePlugin (net.minecraftforge.fml.relauncher.FMLCorePlugin), we are in deobf and it's a forge core plugin | |
[00:26:44] [main/DEBUG] [FML]: Added access transformer class net.minecraftforge.fml.common.asm.transformers.AccessTransformer to enqueued access transformers | |
[00:26:44] [main/DEBUG] [FML]: Enqueued coremod FMLCorePlugin | |
[00:26:44] [main/DEBUG] [FML]: Instantiating coremod class FMLForgePlugin | |
[00:26:44] [main/INFO] [FML]: Ignoring missing certificate for coremod FMLForgePlugin (net.minecraftforge.classloading.FMLForgePlugin), we are in deobf and it's a forge core plugin | |
[00:26:44] [main/DEBUG] [FML]: Enqueued coremod FMLForgePlugin | |
[00:26:44] [main/DEBUG] [FML]: All fundamental core mods are successfully located | |
[00:26:44] [main/INFO] [FML]: Found a command line coremod : net.dugged.cutelessmod.CutelessModLoadingPlugin | |
[00:26:44] [main/DEBUG] [FML]: Instantiating coremod class CutelessModLoadingPlugin | |
[00:26:44] [main/DEBUG] [FML]: The coremod net.dugged.cutelessmod.CutelessModLoadingPlugin requested minecraft version 1.12.2 and minecraft is 1.12.2. It will be loaded. | |
[00:26:44] [main/INFO] [FML]: Ignoring missing certificate for coremod CutelessModLoadingPlugin (net.dugged.cutelessmod.CutelessModLoadingPlugin), as this is probably a dev workspace | |
[00:26:44] [main/DEBUG] [mixin]: MixinService [LaunchWrapper] was successfully booted in net.minecraft.launchwrapper.LaunchClassLoader@49139829 | |
[00:26:44] [main/DEBUG] [mixin]: MixinService [LaunchWrapper] was successfully booted in sun.misc.Launcher$AppClassLoader@18b4aac2 | |
[00:26:44] [main/DEBUG] [mixin]: FML platform agent will ignore coremod net.dugged.cutelessmod.CutelessModLoadingPlugin specified on the command line | |
[00:26:44] [main/INFO] [mixin]: SpongePowered MIXIN Subsystem Version=0.8.4 Source=file:/C:/Users/Nessi/.gradle/caches/modules-2/files-2.1/org.spongepowered/mixin/0.8.4-SNAPSHOT/2f8b0718d390be521dff1d9dcf44d1e3e8314773/mixin-0.8.4-SNAPSHOT.jar Service=LaunchWrapper Env=CLIENT | |
[00:26:44] [main/INFO] [mixin]: Attempting to load Fernflower decompiler (Threaded mode) | |
[00:26:44] [main/INFO] [mixin]: Fernflower could not be loaded, exported classes will not be decompiled. NoClassDefFoundError: org/jetbrains/java/decompiler/main/extern/IResultSaver | |
[00:26:44] [main/DEBUG] [mixin]: Adding new mixin transformer proxy #1 | |
[00:26:44] [main/DEBUG] [mixin]: Initialising Mixin Platform Manager | |
[00:26:44] [main/DEBUG] [mixin]: Adding mixin platform agents for container ContainerHandleURI(file:/C:/Users/Nessi/.gradle/caches/modules-2/files-2.1/org.spongepowered/mixin/0.8.4-SNAPSHOT/2f8b0718d390be521dff1d9dcf44d1e3e8314773/mixin-0.8.4-SNAPSHOT.jar) | |
[00:26:44] [main/DEBUG] [mixin]: Instancing new MixinPlatformAgentFMLLegacy for ContainerHandleURI(file:/C:/Users/Nessi/.gradle/caches/modules-2/files-2.1/org.spongepowered/mixin/0.8.4-SNAPSHOT/2f8b0718d390be521dff1d9dcf44d1e3e8314773/mixin-0.8.4-SNAPSHOT.jar) | |
[00:26:44] [main/DEBUG] [mixin]: MixinPlatformAgentFMLLegacy rejected container ContainerHandleURI(file:/C:/Users/Nessi/.gradle/caches/modules-2/files-2.1/org.spongepowered/mixin/0.8.4-SNAPSHOT/2f8b0718d390be521dff1d9dcf44d1e3e8314773/mixin-0.8.4-SNAPSHOT.jar) | |
[00:26:44] [main/DEBUG] [mixin]: Instancing new MixinPlatformAgentLiteLoaderLegacy for ContainerHandleURI(file:/C:/Users/Nessi/.gradle/caches/modules-2/files-2.1/org.spongepowered/mixin/0.8.4-SNAPSHOT/2f8b0718d390be521dff1d9dcf44d1e3e8314773/mixin-0.8.4-SNAPSHOT.jar) | |
[00:26:44] [main/DEBUG] [mixin]: MixinPlatformAgentLiteLoaderLegacy rejected container ContainerHandleURI(file:/C:/Users/Nessi/.gradle/caches/modules-2/files-2.1/org.spongepowered/mixin/0.8.4-SNAPSHOT/2f8b0718d390be521dff1d9dcf44d1e3e8314773/mixin-0.8.4-SNAPSHOT.jar) | |
[00:26:44] [main/DEBUG] [mixin]: Instancing new MixinPlatformAgentDefault for ContainerHandleURI(file:/C:/Users/Nessi/.gradle/caches/modules-2/files-2.1/org.spongepowered/mixin/0.8.4-SNAPSHOT/2f8b0718d390be521dff1d9dcf44d1e3e8314773/mixin-0.8.4-SNAPSHOT.jar) | |
[00:26:44] [main/DEBUG] [mixin]: MixinPlatformAgentDefault accepted container ContainerHandleURI(file:/C:/Users/Nessi/.gradle/caches/modules-2/files-2.1/org.spongepowered/mixin/0.8.4-SNAPSHOT/2f8b0718d390be521dff1d9dcf44d1e3e8314773/mixin-0.8.4-SNAPSHOT.jar) | |
[00:26:44] [main/DEBUG] [org.spongepowered.asm.service.mojang.MixinServiceLaunchWrapper]: Scanning file:/C:/Users/Nessi/.jdks/corretto-1.8.0_302/jre/lib/charsets.jar for mixin tweaker | |
[00:26:44] [main/DEBUG] [org.spongepowered.asm.service.mojang.MixinServiceLaunchWrapper]: Scanning file:/C:/Users/Nessi/.jdks/corretto-1.8.0_302/jre/lib/ext/access-bridge-64.jar for mixin tweaker | |
[00:26:44] [main/DEBUG] [org.spongepowered.asm.service.mojang.MixinServiceLaunchWrapper]: Scanning file:/C:/Users/Nessi/.jdks/corretto-1.8.0_302/jre/lib/ext/cldrdata.jar for mixin tweaker | |
[00:26:44] [main/DEBUG] [org.spongepowered.asm.service.mojang.MixinServiceLaunchWrapper]: Scanning file:/C:/Users/Nessi/.jdks/corretto-1.8.0_302/jre/lib/ext/dnsns.jar for mixin tweaker | |
[00:26:44] [main/DEBUG] [org.spongepowered.asm.service.mojang.MixinServiceLaunchWrapper]: Scanning file:/C:/Users/Nessi/.jdks/corretto-1.8.0_302/jre/lib/ext/jaccess.jar for mixin tweaker | |
[00:26:44] [main/DEBUG] [org.spongepowered.asm.service.mojang.MixinServiceLaunchWrapper]: Scanning file:/C:/Users/Nessi/.jdks/corretto-1.8.0_302/jre/lib/ext/jfxrt.jar for mixin tweaker | |
[00:26:44] [main/DEBUG] [org.spongepowered.asm.service.mojang.MixinServiceLaunchWrapper]: Scanning file:/C:/Users/Nessi/.jdks/corretto-1.8.0_302/jre/lib/ext/localedata.jar for mixin tweaker | |
[00:26:44] [main/DEBUG] [org.spongepowered.asm.service.mojang.MixinServiceLaunchWrapper]: Scanning file:/C:/Users/Nessi/.jdks/corretto-1.8.0_302/jre/lib/ext/nashorn.jar for mixin tweaker | |
[00:26:44] [main/DEBUG] [org.spongepowered.asm.service.mojang.MixinServiceLaunchWrapper]: Scanning file:/C:/Users/Nessi/.jdks/corretto-1.8.0_302/jre/lib/ext/sunec.jar for mixin tweaker | |
[00:26:44] [main/DEBUG] [org.spongepowered.asm.service.mojang.MixinServiceLaunchWrapper]: Scanning file:/C:/Users/Nessi/.jdks/corretto-1.8.0_302/jre/lib/ext/sunjce_provider.jar for mixin tweaker | |
[00:26:44] [main/DEBUG] [org.spongepowered.asm.service.mojang.MixinServiceLaunchWrapper]: Scanning file:/C:/Users/Nessi/.jdks/corretto-1.8.0_302/jre/lib/ext/sunmscapi.jar for mixin tweaker | |
[00:26:44] [main/DEBUG] [org.spongepowered.asm.service.mojang.MixinServiceLaunchWrapper]: Scanning file:/C:/Users/Nessi/.jdks/corretto-1.8.0_302/jre/lib/ext/sunpkcs11.jar for mixin tweaker | |
[00:26:44] [main/DEBUG] [org.spongepowered.asm.service.mojang.MixinServiceLaunchWrapper]: Scanning file:/C:/Users/Nessi/.jdks/corretto-1.8.0_302/jre/lib/ext/zipfs.jar for mixin tweaker | |
[00:26:44] [main/DEBUG] [org.spongepowered.asm.service.mojang.MixinServiceLaunchWrapper]: Scanning file:/C:/Users/Nessi/.jdks/corretto-1.8.0_302/jre/lib/jce.jar for mixin tweaker | |
[00:26:44] [main/DEBUG] [org.spongepowered.asm.service.mojang.MixinServiceLaunchWrapper]: Scanning file:/C:/Users/Nessi/.jdks/corretto-1.8.0_302/jre/lib/jfr.jar for mixin tweaker | |
[00:26:44] [main/DEBUG] [org.spongepowered.asm.service.mojang.MixinServiceLaunchWrapper]: Scanning file:/C:/Users/Nessi/.jdks/corretto-1.8.0_302/jre/lib/jfxswt.jar for mixin tweaker | |
[00:26:44] [main/DEBUG] [org.spongepowered.asm.service.mojang.MixinServiceLaunchWrapper]: Scanning file:/C:/Users/Nessi/.jdks/corretto-1.8.0_302/jre/lib/jsse.jar for mixin tweaker | |
[00:26:44] [main/DEBUG] [org.spongepowered.asm.service.mojang.MixinServiceLaunchWrapper]: Scanning file:/C:/Users/Nessi/.jdks/corretto-1.8.0_302/jre/lib/management-agent.jar for mixin tweaker | |
[00:26:44] [main/DEBUG] [org.spongepowered.asm.service.mojang.MixinServiceLaunchWrapper]: Scanning file:/C:/Users/Nessi/.jdks/corretto-1.8.0_302/jre/lib/resources.jar for mixin tweaker | |
[00:26:44] [main/DEBUG] [org.spongepowered.asm.service.mojang.MixinServiceLaunchWrapper]: Scanning file:/C:/Users/Nessi/.jdks/corretto-1.8.0_302/jre/lib/rt.jar for mixin tweaker | |
[00:26:44] [main/DEBUG] [org.spongepowered.asm.service.mojang.MixinServiceLaunchWrapper]: Scanning file:/C:/Users/Nessi/IdeaProjects/CutelessMod/build/classes/java/main/ for mixin tweaker | |
[00:26:44] [main/DEBUG] [org.spongepowered.asm.service.mojang.MixinServiceLaunchWrapper]: Scanning file:/C:/Users/Nessi/IdeaProjects/CutelessMod/build/resources/main/ for mixin tweaker | |
[00:26:44] [main/DEBUG] [org.spongepowered.asm.service.mojang.MixinServiceLaunchWrapper]: Scanning file:/C:/Users/Nessi/.gradle/caches/minecraft/deobfedDeps/compileDummy.jar for mixin tweaker | |
[00:26:44] [main/DEBUG] [org.spongepowered.asm.service.mojang.MixinServiceLaunchWrapper]: Scanning file:/C:/Users/Nessi/.gradle/caches/minecraft/deobfedDeps/providedDummy.jar for mixin tweaker | |
[00:26:44] [main/DEBUG] [org.spongepowered.asm.service.mojang.MixinServiceLaunchWrapper]: Scanning file:/C:/Users/Nessi/.gradle/caches/modules-2/files-2.1/org.spongepowered/mixin/0.8.4-SNAPSHOT/2f8b0718d390be521dff1d9dcf44d1e3e8314773/mixin-0.8.4-SNAPSHOT.jar for mixin tweaker | |
[00:26:44] [main/DEBUG] [org.spongepowered.asm.service.mojang.MixinServiceLaunchWrapper]: Scanning file:/C:/Users/Nessi/.gradle/caches/minecraft/net/minecraftforge/forge/1.12.2-14.23.5.2847/stable/39/forgeSrc-1.12.2-14.23.5.2847.jar for mixin tweaker | |
[00:26:44] [main/DEBUG] [org.spongepowered.asm.service.mojang.MixinServiceLaunchWrapper]: Scanning file:/C:/Users/Nessi/.gradle/caches/modules-2/files-2.1/com.mojang/authlib/1.5.25/9834cdf236c22e84b946bba989e2f94ef5897c3c/authlib-1.5.25.jar for mixin tweaker | |
[00:26:44] [main/DEBUG] [org.spongepowered.asm.service.mojang.MixinServiceLaunchWrapper]: Scanning file:/C:/Users/Nessi/.gradle/caches/modules-2/files-2.1/com.google.code.findbugs/jsr305/3.0.1/f7be08ec23c21485b9b5a1cf1654c2ec8c58168d/jsr305-3.0.1.jar for mixin tweaker | |
[00:26:44] [main/DEBUG] [org.spongepowered.asm.service.mojang.MixinServiceLaunchWrapper]: Scanning file:/C:/Users/Nessi/.gradle/caches/modules-2/files-2.1/com.mojang/patchy/1.2.3/e3107ca512d704a434076a153a6e1149e3787275/patchy-1.2.3.jar for mixin tweaker | |
[00:26:44] [main/DEBUG] [org.spongepowered.asm.service.mojang.MixinServiceLaunchWrapper]: Scanning file:/C:/Users/Nessi/.gradle/caches/modules-2/files-2.1/oshi-project/oshi-core/1.1/9ddf7b048a8d701be231c0f4f95fd986198fd2d8/oshi-core-1.1.jar for mixin tweaker | |
[00:26:44] [main/DEBUG] [org.spongepowered.asm.service.mojang.MixinServiceLaunchWrapper]: Scanning file:/C:/Users/Nessi/.gradle/caches/modules-2/files-2.1/com.mojang/text2speech/1.10.3/48fd510879dff266c3815947de66e3d4809f8668/text2speech-1.10.3.jar for mixin tweaker | |
[00:26:44] [main/DEBUG] [org.spongepowered.asm.service.mojang.MixinServiceLaunchWrapper]: Scanning file:/C:/Users/Nessi/.gradle/caches/modules-2/files-2.1/net.java.dev.jna/jna/4.4.0/cb208278274bf12ebdb56c61bd7407e6f774d65a/jna-4.4.0.jar for mixin tweaker | |
[00:26:44] [main/DEBUG] [org.spongepowered.asm.service.mojang.MixinServiceLaunchWrapper]: Scanning file:/C:/Users/Nessi/.gradle/caches/modules-2/files-2.1/net.java.dev.jna/platform/3.4.0/e3f70017be8100d3d6923f50b3d2ee17714e9c13/platform-3.4.0.jar for mixin tweaker | |
[00:26:44] [main/DEBUG] [org.spongepowered.asm.service.mojang.MixinServiceLaunchWrapper]: Scanning file:/C:/Users/Nessi/.gradle/caches/modules-2/files-2.1/com.ibm.icu/icu4j-core-mojang/51.2/63d216a9311cca6be337c1e458e587f99d382b84/icu4j-core-mojang-51.2.jar for mixin tweaker | |
[00:26:44] [main/DEBUG] [org.spongepowered.asm.service.mojang.MixinServiceLaunchWrapper]: Scanning file:/C:/Users/Nessi/.gradle/caches/modules-2/files-2.1/net.minecraft/launchwrapper/1.12/111e7bea9c968cdb3d06ef4632bf7ff0824d0f36/launchwrapper-1.12.jar for mixin tweaker | |
[00:26:44] [main/DEBUG] [org.spongepowered.asm.service.mojang.MixinServiceLaunchWrapper]: Scanning file:/C:/Users/Nessi/.gradle/caches/modules-2/files-2.1/net.sf.jopt-simple/jopt-simple/5.0.3/cdd846cfc4e0f7eefafc02c0f5dce32b9303aa2a/jopt-simple-5.0.3.jar for mixin tweaker | |
[00:26:44] [main/DEBUG] [org.spongepowered.asm.service.mojang.MixinServiceLaunchWrapper]: Scanning file:/C:/Users/Nessi/.gradle/caches/modules-2/files-2.1/io.netty/netty-all/4.1.9.Final/97860965d6a0a6b98e7f569f3f966727b8db75/netty-all-4.1.9.Final.jar for mixin tweaker | |
[00:26:44] [main/DEBUG] [org.spongepowered.asm.service.mojang.MixinServiceLaunchWrapper]: Scanning file:/C:/Users/Nessi/.gradle/caches/modules-2/files-2.1/com.google.guava/guava/21.0/3a3d111be1be1b745edfa7d91678a12d7ed38709/guava-21.0.jar for mixin tweaker | |
[00:26:44] [main/DEBUG] [org.spongepowered.asm.service.mojang.MixinServiceLaunchWrapper]: Scanning file:/C:/Users/Nessi/.gradle/caches/modules-2/files-2.1/org.apache.maven/maven-artifact/3.5.3/7dc72b6d6d8a6dced3d294ed54c2cc3515ade9f4/maven-artifact-3.5.3.jar for mixin tweaker | |
[00:26:44] [main/DEBUG] [org.spongepowered.asm.service.mojang.MixinServiceLaunchWrapper]: Scanning file:/C:/Users/Nessi/.gradle/caches/modules-2/files-2.1/org.apache.commons/commons-lang3/3.5/6c6c702c89bfff3cd9e80b04d668c5e190d588c6/commons-lang3-3.5.jar for mixin tweaker | |
[00:26:44] [main/DEBUG] [org.spongepowered.asm.service.mojang.MixinServiceLaunchWrapper]: Scanning file:/C:/Users/Nessi/.gradle/caches/modules-2/files-2.1/commons-io/commons-io/2.5/2852e6e05fbb95076fc091f6d1780f1f8fe35e0f/commons-io-2.5.jar for mixin tweaker | |
[00:26:44] [main/DEBUG] [org.spongepowered.asm.service.mojang.MixinServiceLaunchWrapper]: Scanning file:/C:/Users/Nessi/.gradle/caches/modules-2/files-2.1/com.mojang/realms/1.10.22/bd0dccebdf3744c75f1ca20063f16e8f7d5e663f/realms-1.10.22.jar for mixin tweaker | |
[00:26:44] [main/DEBUG] [org.spongepowered.asm.service.mojang.MixinServiceLaunchWrapper]: Scanning file:/C:/Users/Nessi/.gradle/caches/modules-2/files-2.1/org.apache.httpcomponents/httpclient/4.3.3/18f4247ff4572a074444572cee34647c43e7c9c7/httpclient-4.3.3.jar for mixin tweaker | |
[00:26:44] [main/DEBUG] [org.spongepowered.asm.service.mojang.MixinServiceLaunchWrapper]: Scanning file:/C:/Users/Nessi/.gradle/caches/modules-2/files-2.1/commons-codec/commons-codec/1.10/4b95f4897fa13f2cd904aee711aeafc0c5295cd8/commons-codec-1.10.jar for mixin tweaker | |
[00:26:44] [main/DEBUG] [org.spongepowered.asm.service.mojang.MixinServiceLaunchWrapper]: Scanning file:/C:/Users/Nessi/.gradle/caches/modules-2/files-2.1/com.paulscode/librarylwjglopenal/20100824/73e80d0794c39665aec3f62eee88ca91676674ef/librarylwjglopenal-20100824.jar for mixin tweaker | |
[00:26:44] [main/DEBUG] [org.spongepowered.asm.service.mojang.MixinServiceLaunchWrapper]: Scanning file:/C:/Users/Nessi/.gradle/caches/modules-2/files-2.1/org.lwjgl.lwjgl/lwjgl_util/2.9.4-nightly-20150209/d51a7c040a721d13efdfbd34f8b257b2df882ad0/lwjgl_util-2.9.4-nightly-20150209.jar for mixin tweaker | |
[00:26:44] [main/DEBUG] [org.spongepowered.asm.service.mojang.MixinServiceLaunchWrapper]: Scanning file:/C:/Users/Nessi/.gradle/caches/modules-2/files-2.1/org.lwjgl.lwjgl/lwjgl/2.9.4-nightly-20150209/697517568c68e78ae0b4544145af031c81082dfe/lwjgl-2.9.4-nightly-20150209.jar for mixin tweaker | |
[00:26:44] [main/DEBUG] [org.spongepowered.asm.service.mojang.MixinServiceLaunchWrapper]: Scanning file:/C:/Users/Nessi/.gradle/caches/modules-2/files-2.1/net.java.jinput/jinput/2.0.5/39c7796b469a600f72380316f6b1f11db6c2c7c4/jinput-2.0.5.jar for mixin tweaker | |
[00:26:44] [main/DEBUG] [org.spongepowered.asm.service.mojang.MixinServiceLaunchWrapper]: Scanning file:/C:/Users/Nessi/.gradle/caches/modules-2/files-2.1/net.java.jutils/jutils/1.0.0/e12fe1fda814bd348c1579329c86943d2cd3c6a6/jutils-1.0.0.jar for mixin tweaker | |
[00:26:44] [main/DEBUG] [org.spongepowered.asm.service.mojang.MixinServiceLaunchWrapper]: Scanning file:/C:/Users/Nessi/.gradle/caches/modules-2/files-2.1/com.google.code.gson/gson/2.8.0/c4ba5371a29ac9b2ad6129b1d39ea38750043eff/gson-2.8.0.jar for mixin tweaker | |
[00:26:44] [main/DEBUG] [org.spongepowered.asm.service.mojang.MixinServiceLaunchWrapper]: Scanning file:/C:/Users/Nessi/.gradle/caches/modules-2/files-2.1/org.apache.commons/commons-compress/1.8.1/a698750c16740fd5b3871425f4cb3bbaa87f529d/commons-compress-1.8.1.jar for mixin tweaker | |
[00:26:44] [main/DEBUG] [org.spongepowered.asm.service.mojang.MixinServiceLaunchWrapper]: Scanning file:/C:/Users/Nessi/.gradle/caches/modules-2/files-2.1/commons-logging/commons-logging/1.1.3/f6f66e966c70a83ffbdb6f17a0919eaf7c8aca7f/commons-logging-1.1.3.jar for mixin tweaker | |
[00:26:44] [main/DEBUG] [org.spongepowered.asm.service.mojang.MixinServiceLaunchWrapper]: Scanning file:/C:/Users/Nessi/.gradle/caches/modules-2/files-2.1/org.apache.httpcomponents/httpcore/4.3.2/31fbbff1ddbf98f3aa7377c94d33b0447c646b6e/httpcore-4.3.2.jar for mixin tweaker | |
[00:26:44] [main/DEBUG] [org.spongepowered.asm.service.mojang.MixinServiceLaunchWrapper]: Scanning file:/C:/Users/Nessi/.gradle/caches/modules-2/files-2.1/it.unimi.dsi/fastutil/7.1.0/9835253257524c1be7ab50c057aa2d418fb72082/fastutil-7.1.0.jar for mixin tweaker | |
[00:26:44] [main/DEBUG] [org.spongepowered.asm.service.mojang.MixinServiceLaunchWrapper]: Scanning file:/C:/Users/Nessi/.gradle/caches/modules-2/files-2.1/org.apache.logging.log4j/log4j-core/2.8.1/4ac28ff2f1ddf05dae3043a190451e8c46b73c31/log4j-core-2.8.1.jar for mixin tweaker | |
[00:26:44] [main/DEBUG] [org.spongepowered.asm.service.mojang.MixinServiceLaunchWrapper]: Scanning file:/C:/Users/Nessi/.gradle/caches/modules-2/files-2.1/org.apache.logging.log4j/log4j-api/2.8.1/e801d13612e22cad62a3f4f3fe7fdbe6334a8e72/log4j-api-2.8.1.jar for mixin tweaker | |
[00:26:44] [main/DEBUG] [org.spongepowered.asm.service.mojang.MixinServiceLaunchWrapper]: Scanning file:/C:/Users/Nessi/.gradle/caches/modules-2/files-2.1/org.jline/jline/3.5.1/51800e9d7a13608894a5a28eed0f5c7fa2f300fb/jline-3.5.1.jar for mixin tweaker | |
[00:26:44] [main/DEBUG] [org.spongepowered.asm.service.mojang.MixinServiceLaunchWrapper]: Scanning file:/C:/Users/Nessi/.gradle/caches/modules-2/files-2.1/org.ow2.asm/asm-debug-all/5.2/3354e11e2b34215f06dab629ab88e06aca477c19/asm-debug-all-5.2.jar for mixin tweaker | |
[00:26:44] [main/DEBUG] [org.spongepowered.asm.service.mojang.MixinServiceLaunchWrapper]: Scanning file:/C:/Users/Nessi/.gradle/caches/modules-2/files-2.1/com.typesafe.akka/akka-actor_2.11/2.3.3/ed62e9fc709ca0f2ff1a3220daa8b70a2870078e/akka-actor_2.11-2.3.3.jar for mixin tweaker | |
[00:26:44] [main/DEBUG] [org.spongepowered.asm.service.mojang.MixinServiceLaunchWrapper]: Scanning file:/C:/Users/Nessi/.gradle/caches/modules-2/files-2.1/com.typesafe/config/1.2.1/f771f71fdae3df231bcd54d5ca2d57f0bf93f467/config-1.2.1.jar for mixin tweaker | |
[00:26:44] [main/DEBUG] [org.spongepowered.asm.service.mojang.MixinServiceLaunchWrapper]: Scanning file:/C:/Users/Nessi/.gradle/caches/modules-2/files-2.1/org.scala-lang/scala-actors-migration_2.11/1.1.0/dfa8bc42b181d5b9f1a5dd147f8ae308b893eb6f/scala-actors-migration_2.11-1.1.0.jar for mixin tweaker | |
[00:26:44] [main/DEBUG] [org.spongepowered.asm.service.mojang.MixinServiceLaunchWrapper]: Scanning file:/C:/Users/Nessi/.gradle/caches/modules-2/files-2.1/org.scala-lang.plugins/scala-continuations-plugin_2.11.1/1.0.2/f361a3283452c57fa30c1ee69448995de23c60f7/scala-continuations-plugin_2.11.1-1.0.2.jar for mixin tweaker | |
[00:26:44] [main/DEBUG] [org.spongepowered.asm.service.mojang.MixinServiceLaunchWrapper]: Scanning file:/C:/Users/Nessi/.gradle/caches/modules-2/files-2.1/org.scala-lang/scala-compiler/2.11.1/56ea2e6c025e0821f28d73ca271218b8dd04926a/scala-compiler-2.11.1.jar for mixin tweaker | |
[00:26:44] [main/DEBUG] [org.spongepowered.asm.service.mojang.MixinServiceLaunchWrapper]: Scanning file:/C:/Users/Nessi/.gradle/caches/modules-2/files-2.1/org.scala-lang.plugins/scala-continuations-library_2.11/1.0.2/e517c53a7e9acd6b1668c5a35eccbaa3bab9aac/scala-continuations-library_2.11-1.0.2.jar for mixin tweaker | |
[00:26:44] [main/DEBUG] [org.spongepowered.asm.service.mojang.MixinServiceLaunchWrapper]: Scanning file:/C:/Users/Nessi/.gradle/caches/modules-2/files-2.1/org.scala-lang.modules/scala-parser-combinators_2.11/1.0.1/f05d7345bf5a58924f2837c6c1f4d73a938e1ff0/scala-parser-combinators_2.11-1.0.1.jar for mixin tweaker | |
[00:26:44] [main/DEBUG] [org.spongepowered.asm.service.mojang.MixinServiceLaunchWrapper]: Scanning file:/C:/Users/Nessi/.gradle/caches/modules-2/files-2.1/org.scala-lang/scala-reflect/2.11.1/6580347e61cc7f8e802941e7fde40fa83b8badeb/scala-reflect-2.11.1.jar for mixin tweaker | |
[00:26:44] [main/DEBUG] [org.spongepowered.asm.service.mojang.MixinServiceLaunchWrapper]: Scanning file:/C:/Users/Nessi/.gradle/caches/modules-2/files-2.1/org.scala-lang.modules/scala-swing_2.11/1.0.1/b1cdd92bd47b1e1837139c1c53020e86bb9112ae/scala-swing_2.11-1.0.1.jar for mixin tweaker | |
[00:26:44] [main/DEBUG] [org.spongepowered.asm.service.mojang.MixinServiceLaunchWrapper]: Scanning file:/C:/Users/Nessi/.gradle/caches/modules-2/files-2.1/org.scala-lang.modules/scala-xml_2.11/1.0.2/820fbca7e524b530fdadc594c39d49a21ea0337e/scala-xml_2.11-1.0.2.jar for mixin tweaker | |
[00:26:44] [main/DEBUG] [org.spongepowered.asm.service.mojang.MixinServiceLaunchWrapper]: Scanning file:/C:/Users/Nessi/.gradle/caches/modules-2/files-2.1/org.scala-lang/scala-library/2.11.1/e11da23da3eabab9f4777b9220e60d44c1aab6a/scala-library-2.11.1.jar for mixin tweaker | |
[00:26:44] [main/DEBUG] [org.spongepowered.asm.service.mojang.MixinServiceLaunchWrapper]: Scanning file:/C:/Users/Nessi/.gradle/caches/modules-2/files-2.1/lzma/lzma/0.0.1/521616dc7487b42bef0e803bd2fa3faf668101d7/lzma-0.0.1.jar for mixin tweaker | |
[00:26:44] [main/DEBUG] [org.spongepowered.asm.service.mojang.MixinServiceLaunchWrapper]: Scanning file:/C:/Users/Nessi/.gradle/caches/modules-2/files-2.1/net.sf.trove4j/trove4j/3.0.3/42ccaf4761f0dfdfa805c9e340d99a755907e2dd/trove4j-3.0.3.jar for mixin tweaker | |
[00:26:44] [main/DEBUG] [org.spongepowered.asm.service.mojang.MixinServiceLaunchWrapper]: Scanning file:/C:/Users/Nessi/.gradle/caches/modules-2/files-2.1/com.paulscode/codecjorbis/20101023/c73b5636faf089d9f00e8732a829577de25237ee/codecjorbis-20101023.jar for mixin tweaker | |
[00:26:44] [main/DEBUG] [org.spongepowered.asm.service.mojang.MixinServiceLaunchWrapper]: Scanning file:/C:/Users/Nessi/.gradle/caches/modules-2/files-2.1/com.paulscode/codecwav/20101023/12f031cfe88fef5c1dd36c563c0a3a69bd7261da/codecwav-20101023.jar for mixin tweaker | |
[00:26:44] [main/DEBUG] [org.spongepowered.asm.service.mojang.MixinServiceLaunchWrapper]: Scanning file:/C:/Users/Nessi/.gradle/caches/modules-2/files-2.1/com.paulscode/libraryjavasound/20101123/5c5e304366f75f9eaa2e8cca546a1fb6109348b3/libraryjavasound-20101123.jar for mixin tweaker | |
[00:26:44] [main/DEBUG] [org.spongepowered.asm.service.mojang.MixinServiceLaunchWrapper]: Scanning file:/C:/Users/Nessi/.gradle/caches/modules-2/files-2.1/com.paulscode/soundsystem/20120107/419c05fe9be71f792b2d76cfc9b67f1ed0fec7f6/soundsystem-20120107.jar for mixin tweaker | |
[00:26:44] [main/DEBUG] [org.spongepowered.asm.service.mojang.MixinServiceLaunchWrapper]: Scanning file:/C:/Users/Nessi/.gradle/caches/modules-2/files-2.1/java3d/vecmath/1.5.2/79846ba34cbd89e2422d74d53752f993dcc2ccaf/vecmath-1.5.2.jar for mixin tweaker | |
[00:26:44] [main/DEBUG] [org.spongepowered.asm.service.mojang.MixinServiceLaunchWrapper]: Scanning file:/C:/Users/Nessi/.gradle/caches/modules-2/files-2.1/ca.weblite/java-objc-bridge/1.0.0/6ef160c3133a78de015830860197602ca1c855d3/java-objc-bridge-1.0.0.jar for mixin tweaker | |
[00:26:44] [main/DEBUG] [org.spongepowered.asm.service.mojang.MixinServiceLaunchWrapper]: Scanning file:/C:/Users/Nessi/.gradle/caches/modules-2/files-2.1/org.codehaus.plexus/plexus-utils/3.1.0/60eecb6f15abdb1c653ad80abaac6fe188b3feaa/plexus-utils-3.1.0.jar for mixin tweaker | |
[00:26:44] [main/DEBUG] [org.spongepowered.asm.service.mojang.MixinServiceLaunchWrapper]: Scanning file:/C:/Users/Nessi/.gradle/caches/modules-2/files-2.1/org.lwjgl.lwjgl/lwjgl-platform/2.9.4-nightly-20150209/931074f46c795d2f7b30ed6395df5715cfd7675b/lwjgl-platform-2.9.4-nightly-20150209-natives-linux.jar for mixin tweaker | |
[00:26:44] [main/DEBUG] [org.spongepowered.asm.service.mojang.MixinServiceLaunchWrapper]: Scanning file:/C:/Users/Nessi/.gradle/caches/modules-2/files-2.1/org.lwjgl.lwjgl/lwjgl-platform/2.9.4-nightly-20150209/bcab850f8f487c3f4c4dbabde778bb82bd1a40ed/lwjgl-platform-2.9.4-nightly-20150209-natives-osx.jar for mixin tweaker | |
[00:26:44] [main/DEBUG] [org.spongepowered.asm.service.mojang.MixinServiceLaunchWrapper]: Scanning file:/C:/Users/Nessi/.gradle/caches/modules-2/files-2.1/org.lwjgl.lwjgl/lwjgl-platform/2.9.4-nightly-20150209/b84d5102b9dbfabfeb5e43c7e2828d98a7fc80e0/lwjgl-platform-2.9.4-nightly-20150209-natives-windows.jar for mixin tweaker | |
[00:26:44] [main/DEBUG] [org.spongepowered.asm.service.mojang.MixinServiceLaunchWrapper]: Scanning file:/C:/Users/Nessi/.gradle/caches/modules-2/files-2.1/net.java.jinput/jinput-platform/2.0.5/7ff832a6eb9ab6a767f1ade2b548092d0fa64795/jinput-platform-2.0.5-natives-linux.jar for mixin tweaker | |
[00:26:44] [main/DEBUG] [org.spongepowered.asm.service.mojang.MixinServiceLaunchWrapper]: Scanning file:/C:/Users/Nessi/.gradle/caches/modules-2/files-2.1/net.java.jinput/jinput-platform/2.0.5/53f9c919f34d2ca9de8c51fc4e1e8282029a9232/jinput-platform-2.0.5-natives-osx.jar for mixin tweaker | |
[00:26:44] [main/DEBUG] [org.spongepowered.asm.service.mojang.MixinServiceLaunchWrapper]: Scanning file:/C:/Users/Nessi/.gradle/caches/modules-2/files-2.1/net.java.jinput/jinput-platform/2.0.5/385ee093e01f587f30ee1c8a2ee7d408fd732e16/jinput-platform-2.0.5-natives-windows.jar for mixin tweaker | |
[00:26:44] [main/DEBUG] [org.spongepowered.asm.service.mojang.MixinServiceLaunchWrapper]: Scanning file:/C:/Users/Nessi/.gradle/caches/modules-2/files-2.1/org.scala-lang/scala-actors/2.11.0/8ccfb6541de179bb1c4d45cf414acee069b7f78b/scala-actors-2.11.0.jar for mixin tweaker | |
[00:26:44] [main/DEBUG] [org.spongepowered.asm.service.mojang.MixinServiceLaunchWrapper]: Scanning file:/C:/Users/Nessi/.gradle/caches/minecraft/net/minecraftforge/forge/1.12.2-14.23.5.2847/start/ for mixin tweaker | |
[00:26:44] [main/DEBUG] [org.spongepowered.asm.service.mojang.MixinServiceLaunchWrapper]: Scanning file:/C:/Program%20Files/JetBrains/IntelliJ%20IDEA%202019.3/lib/idea_rt.jar for mixin tweaker | |
[00:26:44] [main/DEBUG] [mixin]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:ContainerHandleURI(file:/C:/Users/Nessi/.gradle/caches/modules-2/files-2.1/org.spongepowered/mixin/0.8.4-SNAPSHOT/2f8b0718d390be521dff1d9dcf44d1e3e8314773/mixin-0.8.4-SNAPSHOT.jar)] | |
[00:26:44] [main/DEBUG] [mixin]: Creating FML remapper adapter: org.spongepowered.asm.bridge.RemapperAdapterFML | |
[00:26:44] [main/INFO] [mixin]: Preparing mixins for MixinEnvironment[PREINIT] | |
[00:26:44] [main/INFO] [mixin]: Initialised Mixin FML Remapper Adapter with net.minecraftforge.fml.common.asm.transformers.deobf.FMLDeobfuscatingRemapper@2631f68c | |
[00:26:45] [main/INFO] [mixin]: Compatibility level set to JAVA_8 | |
[00:26:45] [main/DEBUG] [FML]: Enqueued coremod CutelessModLoadingPlugin | |
[00:26:45] [main/DEBUG] [FML]: Discovering coremods | |
[00:26:45] [main/INFO] [FML]: Searching C:\Users\Nessi\IdeaProjects\CutelessMod\run\.\mods for mods | |
[00:26:45] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.gradle.tweakers.CoremodTweaker | |
[00:26:45] [main/INFO] [GradleStart]: Injecting location in coremod net.minecraftforge.fml.relauncher.FMLCorePlugin | |
[00:26:45] [main/INFO] [GradleStart]: Injecting location in coremod net.minecraftforge.classloading.FMLForgePlugin | |
[00:26:45] [main/INFO] [GradleStart]: Injecting location in coremod net.dugged.cutelessmod.CutelessModLoadingPlugin | |
[00:26:45] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLInjectionAndSortingTweaker | |
[00:26:45] [main/INFO] [LaunchWrapper]: Loading tweak class name org.spongepowered.asm.mixin.EnvironmentStateTweaker | |
[00:26:45] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLDeobfTweaker | |
[00:26:45] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.gradle.tweakers.AccessTransformerTweaker | |
[00:26:45] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLInjectionAndSortingTweaker | |
[00:26:45] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLInjectionAndSortingTweaker | |
[00:26:45] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper | |
[00:26:45] [main/DEBUG] [FML]: Injecting coremod FMLCorePlugin \{net.minecraftforge.fml.relauncher.FMLCorePlugin\} class transformers | |
[00:26:45] [main/TRACE] [FML]: Registering transformer net.minecraftforge.fml.common.asm.transformers.SideTransformer | |
[00:26:45] [main/INFO] [mixin]: Checking for additional mixins for MixinEnvironment[PREINIT] | |
[00:26:45] [main/TRACE] [FML]: Registering transformer net.minecraftforge.fml.common.asm.transformers.EventSubscriptionTransformer | |
[00:26:45] [main/TRACE] [FML]: Registering transformer net.minecraftforge.fml.common.asm.transformers.EventSubscriberTransformer | |
[00:26:45] [main/TRACE] [FML]: Registering transformer net.minecraftforge.fml.common.asm.transformers.SoundEngineFixTransformer | |
[00:26:45] [main/DEBUG] [FML]: Injection complete | |
[00:26:45] [main/DEBUG] [FML]: Running coremod plugin for FMLCorePlugin \{net.minecraftforge.fml.relauncher.FMLCorePlugin\} | |
[00:26:45] [main/DEBUG] [FML]: Running coremod plugin FMLCorePlugin | |
[00:26:45] [main/DEBUG] [FML]: Loading deobfuscation resource C:\Users\Nessi\.gradle\caches\minecraft\de\oceanlabs\mcp\mcp_stable\39\1.12.2\srgs\srg-mcp.srg with 36076 records | |
[00:26:48] [main/ERROR] [FML]: FML appears to be missing any signature data. This is not a good thing | |
[00:26:48] [main/DEBUG] [FML]: Coremod plugin class FMLCorePlugin run successfully | |
[00:26:48] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper | |
[00:26:48] [main/DEBUG] [FML]: Injecting coremod FMLForgePlugin \{net.minecraftforge.classloading.FMLForgePlugin\} class transformers | |
[00:26:48] [main/DEBUG] [FML]: Injection complete | |
[00:26:48] [main/DEBUG] [FML]: Running coremod plugin for FMLForgePlugin \{net.minecraftforge.classloading.FMLForgePlugin\} | |
[00:26:48] [main/DEBUG] [FML]: Running coremod plugin FMLForgePlugin | |
[00:26:48] [main/DEBUG] [FML]: Coremod plugin class FMLForgePlugin run successfully | |
[00:26:48] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper | |
[00:26:48] [main/DEBUG] [FML]: Injecting coremod CutelessModLoadingPlugin \{net.dugged.cutelessmod.CutelessModLoadingPlugin\} class transformers | |
[00:26:48] [main/DEBUG] [FML]: Injection complete | |
[00:26:48] [main/DEBUG] [FML]: Running coremod plugin for CutelessModLoadingPlugin \{net.dugged.cutelessmod.CutelessModLoadingPlugin\} | |
[00:26:48] [main/DEBUG] [FML]: Running coremod plugin CutelessModLoadingPlugin | |
[00:26:48] [main/DEBUG] [FML]: Coremod plugin class CutelessModLoadingPlugin run successfully | |
[00:26:48] [main/INFO] [LaunchWrapper]: Calling tweak class org.spongepowered.asm.mixin.EnvironmentStateTweaker | |
[00:26:48] [main/DEBUG] [mixin]: Processing launch tasks for PlatformAgent[MixinPlatformAgentDefault:ContainerHandleURI(file:/C:/Users/Nessi/.gradle/caches/modules-2/files-2.1/org.spongepowered/mixin/0.8.4-SNAPSHOT/2f8b0718d390be521dff1d9dcf44d1e3e8314773/mixin-0.8.4-SNAPSHOT.jar)] | |
[00:26:48] [main/DEBUG] [org.spongepowered.asm.service.mojang.MixinServiceLaunchWrapper]: Scanning file:/C:/Users/Nessi/.jdks/corretto-1.8.0_302/jre/lib/charsets.jar for mixin tweaker | |
[00:26:48] [main/DEBUG] [org.spongepowered.asm.service.mojang.MixinServiceLaunchWrapper]: Scanning file:/C:/Users/Nessi/.jdks/corretto-1.8.0_302/jre/lib/ext/access-bridge-64.jar for mixin tweaker | |
[00:26:48] [main/DEBUG] [org.spongepowered.asm.service.mojang.MixinServiceLaunchWrapper]: Scanning file:/C:/Users/Nessi/.jdks/corretto-1.8.0_302/jre/lib/ext/cldrdata.jar for mixin tweaker | |
[00:26:48] [main/DEBUG] [org.spongepowered.asm.service.mojang.MixinServiceLaunchWrapper]: Scanning file:/C:/Users/Nessi/.jdks/corretto-1.8.0_302/jre/lib/ext/dnsns.jar for mixin tweaker | |
[00:26:48] [main/DEBUG] [org.spongepowered.asm.service.mojang.MixinServiceLaunchWrapper]: Scanning file:/C:/Users/Nessi/.jdks/corretto-1.8.0_302/jre/lib/ext/jaccess.jar for mixin tweaker | |
[00:26:48] [main/DEBUG] [org.spongepowered.asm.service.mojang.MixinServiceLaunchWrapper]: Scanning file:/C:/Users/Nessi/.jdks/corretto-1.8.0_302/jre/lib/ext/jfxrt.jar for mixin tweaker | |
[00:26:48] [main/DEBUG] [org.spongepowered.asm.service.mojang.MixinServiceLaunchWrapper]: Scanning file:/C:/Users/Nessi/.jdks/corretto-1.8.0_302/jre/lib/ext/localedata.jar for mixin tweaker | |
[00:26:48] [main/DEBUG] [org.spongepowered.asm.service.mojang.MixinServiceLaunchWrapper]: Scanning file:/C:/Users/Nessi/.jdks/corretto-1.8.0_302/jre/lib/ext/nashorn.jar for mixin tweaker | |
[00:26:48] [main/DEBUG] [org.spongepowered.asm.service.mojang.MixinServiceLaunchWrapper]: Scanning file:/C:/Users/Nessi/.jdks/corretto-1.8.0_302/jre/lib/ext/sunec.jar for mixin tweaker | |
[00:26:48] [main/DEBUG] [org.spongepowered.asm.service.mojang.MixinServiceLaunchWrapper]: Scanning file:/C:/Users/Nessi/.jdks/corretto-1.8.0_302/jre/lib/ext/sunjce_provider.jar for mixin tweaker | |
[00:26:48] [main/DEBUG] [org.spongepowered.asm.service.mojang.MixinServiceLaunchWrapper]: Scanning file:/C:/Users/Nessi/.jdks/corretto-1.8.0_302/jre/lib/ext/sunmscapi.jar for mixin tweaker | |
[00:26:48] [main/DEBUG] [org.spongepowered.asm.service.mojang.MixinServiceLaunchWrapper]: Scanning file:/C:/Users/Nessi/.jdks/corretto-1.8.0_302/jre/lib/ext/sunpkcs11.jar for mixin tweaker | |
[00:26:48] [main/DEBUG] [org.spongepowered.asm.service.mojang.MixinServiceLaunchWrapper]: Scanning file:/C:/Users/Nessi/.jdks/corretto-1.8.0_302/jre/lib/ext/zipfs.jar for mixin tweaker | |
[00:26:48] [main/DEBUG] [org.spongepowered.asm.service.mojang.MixinServiceLaunchWrapper]: Scanning file:/C:/Users/Nessi/.jdks/corretto-1.8.0_302/jre/lib/jce.jar for mixin tweaker | |
[00:26:48] [main/DEBUG] [org.spongepowered.asm.service.mojang.MixinServiceLaunchWrapper]: Scanning file:/C:/Users/Nessi/.jdks/corretto-1.8.0_302/jre/lib/jfr.jar for mixin tweaker | |
[00:26:48] [main/DEBUG] [org.spongepowered.asm.service.mojang.MixinServiceLaunchWrapper]: Scanning file:/C:/Users/Nessi/.jdks/corretto-1.8.0_302/jre/lib/jfxswt.jar for mixin tweaker | |
[00:26:48] [main/DEBUG] [org.spongepowered.asm.service.mojang.MixinServiceLaunchWrapper]: Scanning file:/C:/Users/Nessi/.jdks/corretto-1.8.0_302/jre/lib/jsse.jar for mixin tweaker | |
[00:26:48] [main/DEBUG] [org.spongepowered.asm.service.mojang.MixinServiceLaunchWrapper]: Scanning file:/C:/Users/Nessi/.jdks/corretto-1.8.0_302/jre/lib/management-agent.jar for mixin tweaker | |
[00:26:48] [main/DEBUG] [org.spongepowered.asm.service.mojang.MixinServiceLaunchWrapper]: Scanning file:/C:/Users/Nessi/.jdks/corretto-1.8.0_302/jre/lib/resources.jar for mixin tweaker | |
[00:26:48] [main/DEBUG] [org.spongepowered.asm.service.mojang.MixinServiceLaunchWrapper]: Scanning file:/C:/Users/Nessi/.jdks/corretto-1.8.0_302/jre/lib/rt.jar for mixin tweaker | |
[00:26:48] [main/DEBUG] [org.spongepowered.asm.service.mojang.MixinServiceLaunchWrapper]: Scanning file:/C:/Users/Nessi/IdeaProjects/CutelessMod/build/classes/java/main/ for mixin tweaker | |
[00:26:48] [main/DEBUG] [org.spongepowered.asm.service.mojang.MixinServiceLaunchWrapper]: Scanning file:/C:/Users/Nessi/IdeaProjects/CutelessMod/build/resources/main/ for mixin tweaker | |
[00:26:48] [main/DEBUG] [org.spongepowered.asm.service.mojang.MixinServiceLaunchWrapper]: Scanning file:/C:/Users/Nessi/.gradle/caches/minecraft/deobfedDeps/compileDummy.jar for mixin tweaker | |
[00:26:48] [main/DEBUG] [org.spongepowered.asm.service.mojang.MixinServiceLaunchWrapper]: Scanning file:/C:/Users/Nessi/.gradle/caches/minecraft/deobfedDeps/providedDummy.jar for mixin tweaker | |
[00:26:48] [main/DEBUG] [org.spongepowered.asm.service.mojang.MixinServiceLaunchWrapper]: Scanning file:/C:/Users/Nessi/.gradle/caches/modules-2/files-2.1/org.spongepowered/mixin/0.8.4-SNAPSHOT/2f8b0718d390be521dff1d9dcf44d1e3e8314773/mixin-0.8.4-SNAPSHOT.jar for mixin tweaker | |
[00:26:48] [main/DEBUG] [org.spongepowered.asm.service.mojang.MixinServiceLaunchWrapper]: Scanning file:/C:/Users/Nessi/.gradle/caches/minecraft/net/minecraftforge/forge/1.12.2-14.23.5.2847/stable/39/forgeSrc-1.12.2-14.23.5.2847.jar for mixin tweaker | |
[00:26:48] [main/DEBUG] [org.spongepowered.asm.service.mojang.MixinServiceLaunchWrapper]: Scanning file:/C:/Users/Nessi/.gradle/caches/modules-2/files-2.1/com.mojang/authlib/1.5.25/9834cdf236c22e84b946bba989e2f94ef5897c3c/authlib-1.5.25.jar for mixin tweaker | |
[00:26:48] [main/DEBUG] [org.spongepowered.asm.service.mojang.MixinServiceLaunchWrapper]: Scanning file:/C:/Users/Nessi/.gradle/caches/modules-2/files-2.1/com.google.code.findbugs/jsr305/3.0.1/f7be08ec23c21485b9b5a1cf1654c2ec8c58168d/jsr305-3.0.1.jar for mixin tweaker | |
[00:26:48] [main/DEBUG] [org.spongepowered.asm.service.mojang.MixinServiceLaunchWrapper]: Scanning file:/C:/Users/Nessi/.gradle/caches/modules-2/files-2.1/com.mojang/patchy/1.2.3/e3107ca512d704a434076a153a6e1149e3787275/patchy-1.2.3.jar for mixin tweaker | |
[00:26:48] [main/DEBUG] [org.spongepowered.asm.service.mojang.MixinServiceLaunchWrapper]: Scanning file:/C:/Users/Nessi/.gradle/caches/modules-2/files-2.1/oshi-project/oshi-core/1.1/9ddf7b048a8d701be231c0f4f95fd986198fd2d8/oshi-core-1.1.jar for mixin tweaker | |
[00:26:48] [main/DEBUG] [org.spongepowered.asm.service.mojang.MixinServiceLaunchWrapper]: Scanning file:/C:/Users/Nessi/.gradle/caches/modules-2/files-2.1/com.mojang/text2speech/1.10.3/48fd510879dff266c3815947de66e3d4809f8668/text2speech-1.10.3.jar for mixin tweaker | |
[00:26:48] [main/DEBUG] [org.spongepowered.asm.service.mojang.MixinServiceLaunchWrapper]: Scanning file:/C:/Users/Nessi/.gradle/caches/modules-2/files-2.1/net.java.dev.jna/jna/4.4.0/cb208278274bf12ebdb56c61bd7407e6f774d65a/jna-4.4.0.jar for mixin tweaker | |
[00:26:48] [main/DEBUG] [org.spongepowered.asm.service.mojang.MixinServiceLaunchWrapper]: Scanning file:/C:/Users/Nessi/.gradle/caches/modules-2/files-2.1/net.java.dev.jna/platform/3.4.0/e3f70017be8100d3d6923f50b3d2ee17714e9c13/platform-3.4.0.jar for mixin tweaker | |
[00:26:48] [main/DEBUG] [org.spongepowered.asm.service.mojang.MixinServiceLaunchWrapper]: Scanning file:/C:/Users/Nessi/.gradle/caches/modules-2/files-2.1/com.ibm.icu/icu4j-core-mojang/51.2/63d216a9311cca6be337c1e458e587f99d382b84/icu4j-core-mojang-51.2.jar for mixin tweaker | |
[00:26:48] [main/DEBUG] [org.spongepowered.asm.service.mojang.MixinServiceLaunchWrapper]: Scanning file:/C:/Users/Nessi/.gradle/caches/modules-2/files-2.1/net.minecraft/launchwrapper/1.12/111e7bea9c968cdb3d06ef4632bf7ff0824d0f36/launchwrapper-1.12.jar for mixin tweaker | |
[00:26:48] [main/DEBUG] [org.spongepowered.asm.service.mojang.MixinServiceLaunchWrapper]: Scanning file:/C:/Users/Nessi/.gradle/caches/modules-2/files-2.1/net.sf.jopt-simple/jopt-simple/5.0.3/cdd846cfc4e0f7eefafc02c0f5dce32b9303aa2a/jopt-simple-5.0.3.jar for mixin tweaker | |
[00:26:48] [main/DEBUG] [org.spongepowered.asm.service.mojang.MixinServiceLaunchWrapper]: Scanning file:/C:/Users/Nessi/.gradle/caches/modules-2/files-2.1/io.netty/netty-all/4.1.9.Final/97860965d6a0a6b98e7f569f3f966727b8db75/netty-all-4.1.9.Final.jar for mixin tweaker | |
[00:26:48] [main/DEBUG] [org.spongepowered.asm.service.mojang.MixinServiceLaunchWrapper]: Scanning file:/C:/Users/Nessi/.gradle/caches/modules-2/files-2.1/com.google.guava/guava/21.0/3a3d111be1be1b745edfa7d91678a12d7ed38709/guava-21.0.jar for mixin tweaker | |
[00:26:48] [main/DEBUG] [org.spongepowered.asm.service.mojang.MixinServiceLaunchWrapper]: Scanning file:/C:/Users/Nessi/.gradle/caches/modules-2/files-2.1/org.apache.maven/maven-artifact/3.5.3/7dc72b6d6d8a6dced3d294ed54c2cc3515ade9f4/maven-artifact-3.5.3.jar for mixin tweaker | |
[00:26:48] [main/DEBUG] [org.spongepowered.asm.service.mojang.MixinServiceLaunchWrapper]: Scanning file:/C:/Users/Nessi/.gradle/caches/modules-2/files-2.1/org.apache.commons/commons-lang3/3.5/6c6c702c89bfff3cd9e80b04d668c5e190d588c6/commons-lang3-3.5.jar for mixin tweaker | |
[00:26:48] [main/DEBUG] [org.spongepowered.asm.service.mojang.MixinServiceLaunchWrapper]: Scanning file:/C:/Users/Nessi/.gradle/caches/modules-2/files-2.1/commons-io/commons-io/2.5/2852e6e05fbb95076fc091f6d1780f1f8fe35e0f/commons-io-2.5.jar for mixin tweaker | |
[00:26:48] [main/DEBUG] [org.spongepowered.asm.service.mojang.MixinServiceLaunchWrapper]: Scanning file:/C:/Users/Nessi/.gradle/caches/modules-2/files-2.1/com.mojang/realms/1.10.22/bd0dccebdf3744c75f1ca20063f16e8f7d5e663f/realms-1.10.22.jar for mixin tweaker | |
[00:26:48] [main/DEBUG] [org.spongepowered.asm.service.mojang.MixinServiceLaunchWrapper]: Scanning file:/C:/Users/Nessi/.gradle/caches/modules-2/files-2.1/org.apache.httpcomponents/httpclient/4.3.3/18f4247ff4572a074444572cee34647c43e7c9c7/httpclient-4.3.3.jar for mixin tweaker | |
[00:26:48] [main/DEBUG] [org.spongepowered.asm.service.mojang.MixinServiceLaunchWrapper]: Scanning file:/C:/Users/Nessi/.gradle/caches/modules-2/files-2.1/commons-codec/commons-codec/1.10/4b95f4897fa13f2cd904aee711aeafc0c5295cd8/commons-codec-1.10.jar for mixin tweaker | |
[00:26:48] [main/DEBUG] [org.spongepowered.asm.service.mojang.MixinServiceLaunchWrapper]: Scanning file:/C:/Users/Nessi/.gradle/caches/modules-2/files-2.1/com.paulscode/librarylwjglopenal/20100824/73e80d0794c39665aec3f62eee88ca91676674ef/librarylwjglopenal-20100824.jar for mixin tweaker | |
[00:26:48] [main/DEBUG] [org.spongepowered.asm.service.mojang.MixinServiceLaunchWrapper]: Scanning file:/C:/Users/Nessi/.gradle/caches/modules-2/files-2.1/org.lwjgl.lwjgl/lwjgl_util/2.9.4-nightly-20150209/d51a7c040a721d13efdfbd34f8b257b2df882ad0/lwjgl_util-2.9.4-nightly-20150209.jar for mixin tweaker | |
[00:26:48] [main/DEBUG] [org.spongepowered.asm.service.mojang.MixinServiceLaunchWrapper]: Scanning file:/C:/Users/Nessi/.gradle/caches/modules-2/files-2.1/org.lwjgl.lwjgl/lwjgl/2.9.4-nightly-20150209/697517568c68e78ae0b4544145af031c81082dfe/lwjgl-2.9.4-nightly-20150209.jar for mixin tweaker | |
[00:26:48] [main/DEBUG] [org.spongepowered.asm.service.mojang.MixinServiceLaunchWrapper]: Scanning file:/C:/Users/Nessi/.gradle/caches/modules-2/files-2.1/net.java.jinput/jinput/2.0.5/39c7796b469a600f72380316f6b1f11db6c2c7c4/jinput-2.0.5.jar for mixin tweaker | |
[00:26:48] [main/DEBUG] [org.spongepowered.asm.service.mojang.MixinServiceLaunchWrapper]: Scanning file:/C:/Users/Nessi/.gradle/caches/modules-2/files-2.1/net.java.jutils/jutils/1.0.0/e12fe1fda814bd348c1579329c86943d2cd3c6a6/jutils-1.0.0.jar for mixin tweaker | |
[00:26:48] [main/DEBUG] [org.spongepowered.asm.service.mojang.MixinServiceLaunchWrapper]: Scanning file:/C:/Users/Nessi/.gradle/caches/modules-2/files-2.1/com.google.code.gson/gson/2.8.0/c4ba5371a29ac9b2ad6129b1d39ea38750043eff/gson-2.8.0.jar for mixin tweaker | |
[00:26:48] [main/DEBUG] [org.spongepowered.asm.service.mojang.MixinServiceLaunchWrapper]: Scanning file:/C:/Users/Nessi/.gradle/caches/modules-2/files-2.1/org.apache.commons/commons-compress/1.8.1/a698750c16740fd5b3871425f4cb3bbaa87f529d/commons-compress-1.8.1.jar for mixin tweaker | |
[00:26:48] [main/DEBUG] [org.spongepowered.asm.service.mojang.MixinServiceLaunchWrapper]: Scanning file:/C:/Users/Nessi/.gradle/caches/modules-2/files-2.1/commons-logging/commons-logging/1.1.3/f6f66e966c70a83ffbdb6f17a0919eaf7c8aca7f/commons-logging-1.1.3.jar for mixin tweaker | |
[00:26:48] [main/DEBUG] [org.spongepowered.asm.service.mojang.MixinServiceLaunchWrapper]: Scanning file:/C:/Users/Nessi/.gradle/caches/modules-2/files-2.1/org.apache.httpcomponents/httpcore/4.3.2/31fbbff1ddbf98f3aa7377c94d33b0447c646b6e/httpcore-4.3.2.jar for mixin tweaker | |
[00:26:48] [main/DEBUG] [org.spongepowered.asm.service.mojang.MixinServiceLaunchWrapper]: Scanning file:/C:/Users/Nessi/.gradle/caches/modules-2/files-2.1/it.unimi.dsi/fastutil/7.1.0/9835253257524c1be7ab50c057aa2d418fb72082/fastutil-7.1.0.jar for mixin tweaker | |
[00:26:48] [main/DEBUG] [org.spongepowered.asm.service.mojang.MixinServiceLaunchWrapper]: Scanning file:/C:/Users/Nessi/.gradle/caches/modules-2/files-2.1/org.apache.logging.log4j/log4j-core/2.8.1/4ac28ff2f1ddf05dae3043a190451e8c46b73c31/log4j-core-2.8.1.jar for mixin tweaker | |
[00:26:48] [main/DEBUG] [org.spongepowered.asm.service.mojang.MixinServiceLaunchWrapper]: Scanning file:/C:/Users/Nessi/.gradle/caches/modules-2/files-2.1/org.apache.logging.log4j/log4j-api/2.8.1/e801d13612e22cad62a3f4f3fe7fdbe6334a8e72/log4j-api-2.8.1.jar for mixin tweaker | |
[00:26:48] [main/DEBUG] [org.spongepowered.asm.service.mojang.MixinServiceLaunchWrapper]: Scanning file:/C:/Users/Nessi/.gradle/caches/modules-2/files-2.1/org.jline/jline/3.5.1/51800e9d7a13608894a5a28eed0f5c7fa2f300fb/jline-3.5.1.jar for mixin tweaker | |
[00:26:48] [main/DEBUG] [org.spongepowered.asm.service.mojang.MixinServiceLaunchWrapper]: Scanning file:/C:/Users/Nessi/.gradle/caches/modules-2/files-2.1/org.ow2.asm/asm-debug-all/5.2/3354e11e2b34215f06dab629ab88e06aca477c19/asm-debug-all-5.2.jar for mixin tweaker | |
[00:26:48] [main/DEBUG] [org.spongepowered.asm.service.mojang.MixinServiceLaunchWrapper]: Scanning file:/C:/Users/Nessi/.gradle/caches/modules-2/files-2.1/com.typesafe.akka/akka-actor_2.11/2.3.3/ed62e9fc709ca0f2ff1a3220daa8b70a2870078e/akka-actor_2.11-2.3.3.jar for mixin tweaker | |
[00:26:48] [main/DEBUG] [org.spongepowered.asm.service.mojang.MixinServiceLaunchWrapper]: Scanning file:/C:/Users/Nessi/.gradle/caches/modules-2/files-2.1/com.typesafe/config/1.2.1/f771f71fdae3df231bcd54d5ca2d57f0bf93f467/config-1.2.1.jar for mixin tweaker | |
[00:26:48] [main/DEBUG] [org.spongepowered.asm.service.mojang.MixinServiceLaunchWrapper]: Scanning file:/C:/Users/Nessi/.gradle/caches/modules-2/files-2.1/org.scala-lang/scala-actors-migration_2.11/1.1.0/dfa8bc42b181d5b9f1a5dd147f8ae308b893eb6f/scala-actors-migration_2.11-1.1.0.jar for mixin tweaker | |
[00:26:48] [main/DEBUG] [org.spongepowered.asm.service.mojang.MixinServiceLaunchWrapper]: Scanning file:/C:/Users/Nessi/.gradle/caches/modules-2/files-2.1/org.scala-lang.plugins/scala-continuations-plugin_2.11.1/1.0.2/f361a3283452c57fa30c1ee69448995de23c60f7/scala-continuations-plugin_2.11.1-1.0.2.jar for mixin tweaker | |
[00:26:48] [main/DEBUG] [org.spongepowered.asm.service.mojang.MixinServiceLaunchWrapper]: Scanning file:/C:/Users/Nessi/.gradle/caches/modules-2/files-2.1/org.scala-lang/scala-compiler/2.11.1/56ea2e6c025e0821f28d73ca271218b8dd04926a/scala-compiler-2.11.1.jar for mixin tweaker | |
[00:26:48] [main/DEBUG] [org.spongepowered.asm.service.mojang.MixinServiceLaunchWrapper]: Scanning file:/C:/Users/Nessi/.gradle/caches/modules-2/files-2.1/org.scala-lang.plugins/scala-continuations-library_2.11/1.0.2/e517c53a7e9acd6b1668c5a35eccbaa3bab9aac/scala-continuations-library_2.11-1.0.2.jar for mixin tweaker | |
[00:26:48] [main/DEBUG] [org.spongepowered.asm.service.mojang.MixinServiceLaunchWrapper]: Scanning file:/C:/Users/Nessi/.gradle/caches/modules-2/files-2.1/org.scala-lang.modules/scala-parser-combinators_2.11/1.0.1/f05d7345bf5a58924f2837c6c1f4d73a938e1ff0/scala-parser-combinators_2.11-1.0.1.jar for mixin tweaker | |
[00:26:48] [main/DEBUG] [org.spongepowered.asm.service.mojang.MixinServiceLaunchWrapper]: Scanning file:/C:/Users/Nessi/.gradle/caches/modules-2/files-2.1/org.scala-lang/scala-reflect/2.11.1/6580347e61cc7f8e802941e7fde40fa83b8badeb/scala-reflect-2.11.1.jar for mixin tweaker | |
[00:26:48] [main/DEBUG] [org.spongepowered.asm.service.mojang.MixinServiceLaunchWrapper]: Scanning file:/C:/Users/Nessi/.gradle/caches/modules-2/files-2.1/org.scala-lang.modules/scala-swing_2.11/1.0.1/b1cdd92bd47b1e1837139c1c53020e86bb9112ae/scala-swing_2.11-1.0.1.jar for mixin tweaker | |
[00:26:48] [main/DEBUG] [org.spongepowered.asm.service.mojang.MixinServiceLaunchWrapper]: Scanning file:/C:/Users/Nessi/.gradle/caches/modules-2/files-2.1/org.scala-lang.modules/scala-xml_2.11/1.0.2/820fbca7e524b530fdadc594c39d49a21ea0337e/scala-xml_2.11-1.0.2.jar for mixin tweaker | |
[00:26:48] [main/DEBUG] [org.spongepowered.asm.service.mojang.MixinServiceLaunchWrapper]: Scanning file:/C:/Users/Nessi/.gradle/caches/modules-2/files-2.1/org.scala-lang/scala-library/2.11.1/e11da23da3eabab9f4777b9220e60d44c1aab6a/scala-library-2.11.1.jar for mixin tweaker | |
[00:26:48] [main/DEBUG] [org.spongepowered.asm.service.mojang.MixinServiceLaunchWrapper]: Scanning file:/C:/Users/Nessi/.gradle/caches/modules-2/files-2.1/lzma/lzma/0.0.1/521616dc7487b42bef0e803bd2fa3faf668101d7/lzma-0.0.1.jar for mixin tweaker | |
[00:26:48] [main/DEBUG] [org.spongepowered.asm.service.mojang.MixinServiceLaunchWrapper]: Scanning file:/C:/Users/Nessi/.gradle/caches/modules-2/files-2.1/net.sf.trove4j/trove4j/3.0.3/42ccaf4761f0dfdfa805c9e340d99a755907e2dd/trove4j-3.0.3.jar for mixin tweaker | |
[00:26:48] [main/DEBUG] [org.spongepowered.asm.service.mojang.MixinServiceLaunchWrapper]: Scanning file:/C:/Users/Nessi/.gradle/caches/modules-2/files-2.1/com.paulscode/codecjorbis/20101023/c73b5636faf089d9f00e8732a829577de25237ee/codecjorbis-20101023.jar for mixin tweaker | |
[00:26:48] [main/DEBUG] [org.spongepowered.asm.service.mojang.MixinServiceLaunchWrapper]: Scanning file:/C:/Users/Nessi/.gradle/caches/modules-2/files-2.1/com.paulscode/codecwav/20101023/12f031cfe88fef5c1dd36c563c0a3a69bd7261da/codecwav-20101023.jar for mixin tweaker | |
[00:26:48] [main/DEBUG] [org.spongepowered.asm.service.mojang.MixinServiceLaunchWrapper]: Scanning file:/C:/Users/Nessi/.gradle/caches/modules-2/files-2.1/com.paulscode/libraryjavasound/20101123/5c5e304366f75f9eaa2e8cca546a1fb6109348b3/libraryjavasound-20101123.jar for mixin tweaker | |
[00:26:48] [main/DEBUG] [org.spongepowered.asm.service.mojang.MixinServiceLaunchWrapper]: Scanning file:/C:/Users/Nessi/.gradle/caches/modules-2/files-2.1/com.paulscode/soundsystem/20120107/419c05fe9be71f792b2d76cfc9b67f1ed0fec7f6/soundsystem-20120107.jar for mixin tweaker | |
[00:26:48] [main/DEBUG] [org.spongepowered.asm.service.mojang.MixinServiceLaunchWrapper]: Scanning file:/C:/Users/Nessi/.gradle/caches/modules-2/files-2.1/java3d/vecmath/1.5.2/79846ba34cbd89e2422d74d53752f993dcc2ccaf/vecmath-1.5.2.jar for mixin tweaker | |
[00:26:48] [main/DEBUG] [org.spongepowered.asm.service.mojang.MixinServiceLaunchWrapper]: Scanning file:/C:/Users/Nessi/.gradle/caches/modules-2/files-2.1/ca.weblite/java-objc-bridge/1.0.0/6ef160c3133a78de015830860197602ca1c855d3/java-objc-bridge-1.0.0.jar for mixin tweaker | |
[00:26:48] [main/DEBUG] [org.spongepowered.asm.service.mojang.MixinServiceLaunchWrapper]: Scanning file:/C:/Users/Nessi/.gradle/caches/modules-2/files-2.1/org.codehaus.plexus/plexus-utils/3.1.0/60eecb6f15abdb1c653ad80abaac6fe188b3feaa/plexus-utils-3.1.0.jar for mixin tweaker | |
[00:26:48] [main/DEBUG] [org.spongepowered.asm.service.mojang.MixinServiceLaunchWrapper]: Scanning file:/C:/Users/Nessi/.gradle/caches/modules-2/files-2.1/org.lwjgl.lwjgl/lwjgl-platform/2.9.4-nightly-20150209/931074f46c795d2f7b30ed6395df5715cfd7675b/lwjgl-platform-2.9.4-nightly-20150209-natives-linux.jar for mixin tweaker | |
[00:26:48] [main/DEBUG] [org.spongepowered.asm.service.mojang.MixinServiceLaunchWrapper]: Scanning file:/C:/Users/Nessi/.gradle/caches/modules-2/files-2.1/org.lwjgl.lwjgl/lwjgl-platform/2.9.4-nightly-20150209/bcab850f8f487c3f4c4dbabde778bb82bd1a40ed/lwjgl-platform-2.9.4-nightly-20150209-natives-osx.jar for mixin tweaker | |
[00:26:48] [main/DEBUG] [org.spongepowered.asm.service.mojang.MixinServiceLaunchWrapper]: Scanning file:/C:/Users/Nessi/.gradle/caches/modules-2/files-2.1/org.lwjgl.lwjgl/lwjgl-platform/2.9.4-nightly-20150209/b84d5102b9dbfabfeb5e43c7e2828d98a7fc80e0/lwjgl-platform-2.9.4-nightly-20150209-natives-windows.jar for mixin tweaker | |
[00:26:48] [main/DEBUG] [org.spongepowered.asm.service.mojang.MixinServiceLaunchWrapper]: Scanning file:/C:/Users/Nessi/.gradle/caches/modules-2/files-2.1/net.java.jinput/jinput-platform/2.0.5/7ff832a6eb9ab6a767f1ade2b548092d0fa64795/jinput-platform-2.0.5-natives-linux.jar for mixin tweaker | |
[00:26:48] [main/DEBUG] [org.spongepowered.asm.service.mojang.MixinServiceLaunchWrapper]: Scanning file:/C:/Users/Nessi/.gradle/caches/modules-2/files-2.1/net.java.jinput/jinput-platform/2.0.5/53f9c919f34d2ca9de8c51fc4e1e8282029a9232/jinput-platform-2.0.5-natives-osx.jar for mixin tweaker | |
[00:26:48] [main/DEBUG] [org.spongepowered.asm.service.mojang.MixinServiceLaunchWrapper]: Scanning file:/C:/Users/Nessi/.gradle/caches/modules-2/files-2.1/net.java.jinput/jinput-platform/2.0.5/385ee093e01f587f30ee1c8a2ee7d408fd732e16/jinput-platform-2.0.5-natives-windows.jar for mixin tweaker | |
[00:26:48] [main/DEBUG] [org.spongepowered.asm.service.mojang.MixinServiceLaunchWrapper]: Scanning file:/C:/Users/Nessi/.gradle/caches/modules-2/files-2.1/org.scala-lang/scala-actors/2.11.0/8ccfb6541de179bb1c4d45cf414acee069b7f78b/scala-actors-2.11.0.jar for mixin tweaker | |
[00:26:48] [main/DEBUG] [org.spongepowered.asm.service.mojang.MixinServiceLaunchWrapper]: Scanning file:/C:/Users/Nessi/.gradle/caches/minecraft/net/minecraftforge/forge/1.12.2-14.23.5.2847/start/ for mixin tweaker | |
[00:26:48] [main/DEBUG] [org.spongepowered.asm.service.mojang.MixinServiceLaunchWrapper]: Scanning file:/C:/Program%20Files/JetBrains/IntelliJ%20IDEA%202019.3/lib/idea_rt.jar for mixin tweaker | |
[00:26:48] [main/DEBUG] [org.spongepowered.asm.service.mojang.MixinServiceLaunchWrapper]: Scanning asmgen:/ for mixin tweaker | |
[00:26:48] [main/DEBUG] [mixin]: inject() running with 1 agents | |
[00:26:48] [main/DEBUG] [mixin]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:ContainerHandleURI(file:/C:/Users/Nessi/.gradle/caches/modules-2/files-2.1/org.spongepowered/mixin/0.8.4-SNAPSHOT/2f8b0718d390be521dff1d9dcf44d1e3e8314773/mixin-0.8.4-SNAPSHOT.jar)] | |
[00:26:48] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLDeobfTweaker | |
[00:26:48] [main/DEBUG] [FML]: Loaded 215 rules from AccessTransformer config file forge_at.cfg | |
[00:26:48] [main/DEBUG] [mixin]: Adding new mixin transformer proxy #2 | |
[00:26:48] [main/DEBUG] [FML]: Validating minecraft | |
[00:26:48] [main/INFO] [mixin]: Preparing mixins for MixinEnvironment[INIT] | |
[00:26:49] [main/DEBUG] [FML]: Minecraft validated, launching... | |
[00:26:49] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.gradle.tweakers.AccessTransformerTweaker | |
[00:26:49] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.TerminalTweaker | |
[00:26:49] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.TerminalTweaker | |
[00:26:49] [main/DEBUG] [mixin]: Adding new mixin transformer proxy #3 | |
[00:26:49] [main/INFO] [mixin]: Preparing mixins for MixinEnvironment[DEFAULT] | |
[00:26:49] [main/INFO] [mixin]: Selecting config mixins.cutelessmod.json | |
[00:26:49] [main/WARN] [mixin]: Reference map 'mixins.cutelessmod.refmap.json' for mixins.cutelessmod.json could not be read. If this is a development environment you can ignore this message | |
[00:26:49] [main/INFO] [mixin]: Selecting config mixins.cutelessmod.clientcommands.json | |
[00:26:49] [main/WARN] [mixin]: Reference map 'mixins.cutelessmod.refmap.json' for mixins.cutelessmod.clientcommands.json could not be read. If this is a development environment you can ignore this message | |
[00:26:49] [main/INFO] [mixin]: Selecting config mixins.cutelessmod.chunk_display.json | |
[00:26:49] [main/WARN] [mixin]: Reference map 'mixins.cutelessmod.refmap.json' for mixins.cutelessmod.chunk_display.json could not be read. If this is a development environment you can ignore this message | |
[00:26:49] [main/INFO] [mixin]: Preparing mixins.cutelessmod.json (90) | |
[00:26:49] [main/DEBUG] [org.spongepowered.asm.service.mojang.MixinServiceLaunchWrapper]: Found name transformer: net.minecraftforge.fml.common.asm.transformers.DeobfuscationTransformer | |
[00:26:49] [main/DEBUG] [org.spongepowered.asm.service.mojang.MixinServiceLaunchWrapper]: Rebuilding transformer delegation list: | |
[00:26:49] [main/DEBUG] [org.spongepowered.asm.service.mojang.MixinServiceLaunchWrapper]: Found name transformer: net.minecraftforge.fml.common.asm.transformers.DeobfuscationTransformer | |
[00:26:49] [main/DEBUG] [org.spongepowered.asm.service.mojang.MixinServiceLaunchWrapper]: Adding: net.minecraftforge.fml.common.asm.transformers.PatchingTransformer | |
[00:26:49] [main/DEBUG] [org.spongepowered.asm.service.mojang.MixinServiceLaunchWrapper]: Excluding: org.spongepowered.asm.mixin.transformer.Proxy | |
[00:26:49] [main/DEBUG] [org.spongepowered.asm.service.mojang.MixinServiceLaunchWrapper]: Adding: $wrapper.net.minecraftforge.fml.common.asm.transformers.SideTransformer | |
[00:26:49] [main/DEBUG] [org.spongepowered.asm.service.mojang.MixinServiceLaunchWrapper]: Excluding: $wrapper.net.minecraftforge.fml.common.asm.transformers.EventSubscriptionTransformer | |
[00:26:49] [main/DEBUG] [org.spongepowered.asm.service.mojang.MixinServiceLaunchWrapper]: Adding: $wrapper.net.minecraftforge.fml.common.asm.transformers.EventSubscriberTransformer | |
[00:26:49] [main/DEBUG] [org.spongepowered.asm.service.mojang.MixinServiceLaunchWrapper]: Adding: $wrapper.net.minecraftforge.fml.common.asm.transformers.SoundEngineFixTransformer | |
[00:26:49] [main/DEBUG] [org.spongepowered.asm.service.mojang.MixinServiceLaunchWrapper]: Adding: net.minecraftforge.fml.common.asm.transformers.DeobfuscationTransformer | |
[00:26:49] [main/DEBUG] [org.spongepowered.asm.service.mojang.MixinServiceLaunchWrapper]: Adding: net.minecraftforge.fml.common.asm.transformers.AccessTransformer | |
[00:26:49] [main/DEBUG] [org.spongepowered.asm.service.mojang.MixinServiceLaunchWrapper]: Adding: net.minecraftforge.fml.common.asm.transformers.ModAccessTransformer | |
[00:26:49] [main/DEBUG] [org.spongepowered.asm.service.mojang.MixinServiceLaunchWrapper]: Adding: net.minecraftforge.fml.common.asm.transformers.ItemStackTransformer | |
[00:26:49] [main/DEBUG] [org.spongepowered.asm.service.mojang.MixinServiceLaunchWrapper]: Adding: net.minecraftforge.fml.common.asm.transformers.ItemBlockTransformer | |
[00:26:49] [main/DEBUG] [org.spongepowered.asm.service.mojang.MixinServiceLaunchWrapper]: Adding: net.minecraftforge.fml.common.asm.transformers.ItemBlockSpecialTransformer | |
[00:26:49] [main/DEBUG] [org.spongepowered.asm.service.mojang.MixinServiceLaunchWrapper]: Adding: net.minecraftforge.fml.common.asm.transformers.PotionEffectTransformer | |
[00:26:49] [main/DEBUG] [org.spongepowered.asm.service.mojang.MixinServiceLaunchWrapper]: Excluding: org.spongepowered.asm.mixin.transformer.Proxy | |
[00:26:49] [main/DEBUG] [org.spongepowered.asm.service.mojang.MixinServiceLaunchWrapper]: Adding: net.minecraftforge.gradle.GradleForgeHacks$AccessTransformerTransformer | |
[00:26:49] [main/DEBUG] [org.spongepowered.asm.service.mojang.MixinServiceLaunchWrapper]: Excluding: net.minecraftforge.fml.common.asm.transformers.TerminalTransformer | |
[00:26:49] [main/DEBUG] [org.spongepowered.asm.service.mojang.MixinServiceLaunchWrapper]: Excluding: org.spongepowered.asm.mixin.transformer.Proxy | |
[00:26:49] [main/DEBUG] [org.spongepowered.asm.service.mojang.MixinServiceLaunchWrapper]: Transformer delegation list created with 12 entries | |
[00:26:49] [main/TRACE] [mixin]: Added class metadata for net/minecraft/entity/player/EntityPlayer to metadata cache | |
[00:26:49] [main/TRACE] [mixin]: Added class metadata for net/minecraft/client/renderer/EntityRenderer to metadata cache | |
[00:26:49] [main/TRACE] [mixin]: Added class metadata for net/minecraft/tileentity/TileEntityBeacon to metadata cache | |
[00:26:49] [main/TRACE] [mixin]: Added class metadata for net/minecraft/client/gui/GuiButtonImage to metadata cache | |
[00:26:49] [main/TRACE] [mixin]: Added class metadata for net/minecraft/client/gui/GuiChat to metadata cache | |
[00:26:49] [main/TRACE] [mixin]: Added class metadata for net/minecraft/client/gui/GuiListWorldSelection to metadata cache | |
[00:26:49] [main/TRACE] [mixin]: Added class metadata for net/minecraft/client/gui/GuiListWorldSelectionEntry to metadata cache | |
[00:26:49] [main/TRACE] [mixin]: Added class metadata for net/minecraft/client/gui/GuiMultiplayer to metadata cache | |
[00:26:49] [main/TRACE] [mixin]: Added class metadata for net/minecraft/client/gui/GuiNewChat to metadata cache | |
[00:26:49] [main/TRACE] [mixin]: Added class metadata for net/minecraft/nbt/NBTTagList to metadata cache | |
[00:26:49] [main/TRACE] [mixin]: Added class metadata for net/minecraft/client/renderer/entity/RenderManager to metadata cache | |
[00:26:49] [main/TRACE] [mixin]: Added class metadata for net/minecraft/client/gui/ServerListEntryNormal to metadata cache | |
[00:26:49] [main/TRACE] [mixin]: Added class metadata for net/minecraft/client/audio/SoundHandler to metadata cache | |
[00:26:49] [main/TRACE] [mixin]: Added class metadata for net/minecraft/block/Block to metadata cache | |
[00:26:49] [main/TRACE] [mixin]: Added class metadata for net/minecraft/block/BlockChest to metadata cache | |
[00:26:49] [main/TRACE] [mixin]: Added class metadata for net/minecraft/block/BlockConcretePowder to metadata cache | |
[00:26:49] [main/TRACE] [mixin]: Added class metadata for net/minecraft/block/BlockHugeMushroom to metadata cache | |
[00:26:49] [main/TRACE] [mixin]: Added class metadata for net/minecraft/block/BlockLiquid to metadata cache | |
[00:26:49] [main/TRACE] [mixin]: Added class metadata for net/minecraft/block/BlockMobSpawner to metadata cache | |
[00:26:49] [main/TRACE] [mixin]: Added class metadata for net/minecraft/client/renderer/BlockModelShapes to metadata cache | |
[00:26:49] [main/TRACE] [mixin]: Added class metadata for net/minecraft/block/BlockPistonBase to metadata cache | |
[00:26:49] [main/TRACE] [mixin]: Added class metadata for net/minecraft/block/BlockSlime to metadata cache | |
[00:26:49] [main/TRACE] [mixin]: Added class metadata for net/minecraft/block/BlockSnow to metadata cache | |
[00:26:49] [main/TRACE] [mixin]: Added class metadata for net/minecraft/world/chunk/Chunk to metadata cache | |
[00:26:49] [main/TRACE] [mixin]: Added class metadata for net/minecraft/world/gen/ChunkGeneratorOverworld to metadata cache | |
[00:26:49] [main/TRACE] [mixin]: Added class metadata for net/minecraft/command/CommandBase to metadata cache | |
[00:26:49] [main/TRACE] [mixin]: Added class metadata for net/minecraft/command/CommandFill to metadata cache | |
[00:26:49] [main/TRACE] [mixin]: Added class metadata for net/minecraft/network/play/client/CPacketChatMessage to metadata cache | |
[00:26:49] [main/TRACE] [mixin]: Added class metadata for net/minecraft/client/renderer/debug/DebugRendererChunkBorder to metadata cache | |
[00:26:49] [main/TRACE] [mixin]: Added class metadata for net/minecraft/entity/passive/EntityChicken to metadata cache | |
[00:26:49] [main/TRACE] [mixin]: Added class metadata for net/minecraft/entity/item/EntityItem to metadata cache | |
[00:26:49] [main/TRACE] [mixin]: Added class metadata for net/minecraft/entity/item/EntityItemFrame to metadata cache | |
[00:26:49] [main/TRACE] [mixin]: Added class metadata for net/minecraft/entity/EntityLivingBase to metadata cache | |
[00:26:49] [main/TRACE] [mixin]: Added class metadata for net/minecraft/client/entity/EntityPlayerSP to metadata cache | |
[00:26:49] [main/TRACE] [mixin]: Added class metadata for net/minecraft/client/renderer/EntityRenderer$1 to metadata cache | |
[00:26:49] [main/TRACE] [mixin]: Added class metadata for net/minecraft/block/BlockBarrier to metadata cache | |
[00:26:49] [main/TRACE] [mixin]: Added class metadata for net/minecraft/block/BlockCommandBlock to metadata cache | |
[00:26:49] [main/TRACE] [mixin]: Added class metadata for net/minecraft/block/BlockDragonEgg to metadata cache | |
[00:26:49] [main/TRACE] [mixin]: Added class metadata for net/minecraft/block/BlockStructure to metadata cache | |
[00:26:49] [main/TRACE] [mixin]: Added class metadata for net/minecraft/client/settings/GameSettings to metadata cache | |
[00:26:49] [main/TRACE] [mixin]: Added class metadata for net/minecraft/client/renderer/GlStateManager to metadata cache | |
[00:26:49] [main/TRACE] [mixin]: Added class metadata for net/minecraft/client/gui/GuiBossOverlay to metadata cache | |
[00:26:49] [main/TRACE] [mixin]: Added class metadata for net/minecraft/client/gui/GuiControls to metadata cache | |
[00:26:49] [main/TRACE] [mixin]: Added class metadata for net/minecraft/client/gui/GuiDisconnected to metadata cache | |
[00:26:49] [main/TRACE] [mixin]: Added class metadata for net/minecraft/client/gui/GuiGameOver to metadata cache | |
[00:26:49] [main/TRACE] [mixin]: Added class metadata for net/minecraft/client/gui/GuiIngame to metadata cache | |
[00:26:49] [main/TRACE] [mixin]: Added class metadata for net/minecraft/client/gui/GuiIngameMenu to metadata cache | |
[00:26:49] [main/TRACE] [mixin]: Added class metadata for net/minecraft/client/gui/inventory/GuiInventory to metadata cache | |
[00:26:49] [main/TRACE] [mixin]: Added class metadata for net/minecraft/client/gui/GuiLanguage$List to metadata cache | |
[00:26:49] [main/TRACE] [mixin]: Added class metadata for net/minecraft/client/gui/GuiMainMenu to metadata cache | |
[00:26:49] [main/TRACE] [mixin]: Added class metadata for net/minecraft/client/gui/GuiOverlayDebug to metadata cache | |
[00:26:49] [main/TRACE] [mixin]: Added class metadata for net/minecraft/client/gui/recipebook/GuiRecipeBook to metadata cache | |
[00:26:49] [main/TRACE] [mixin]: Added class metadata for net/minecraft/client/gui/GuiScreen to metadata cache | |
[00:26:49] [main/TRACE] [mixin]: Added class metadata for net/minecraft/client/gui/achievement/GuiStats to metadata cache | |
[00:26:49] [main/TRACE] [mixin]: Added class metadata for net/minecraft/client/gui/GuiWorldSelection to metadata cache | |
[00:26:49] [main/TRACE] [mixin]: Added class metadata for net/minecraft/client/renderer/InventoryEffectRenderer to metadata cache | |
[00:26:49] [main/TRACE] [mixin]: Added class metadata for net/minecraft/item/ItemFirework to metadata cache | |
[00:26:49] [main/TRACE] [mixin]: Added class metadata for net/minecraft/item/ItemFlintAndSteel to metadata cache | |
[00:26:49] [main/TRACE] [mixin]: Added class metadata for net/minecraft/client/renderer/ItemRenderer to metadata cache | |
[00:26:49] [main/TRACE] [mixin]: Added class metadata for net/minecraft/item/ItemStack to metadata cache | |
[00:26:49] [main/TRACE] [mixin]: Added class metadata for net/minecraft/client/renderer/entity/layers/LayerArmorBase to metadata cache | |
[00:26:49] [main/TRACE] [mixin]: Added class metadata for net/minecraft/util/LazyLoadBase to metadata cache | |
[00:26:49] [main/TRACE] [mixin]: Added class metadata for net/minecraft/client/Minecraft to metadata cache | |
[00:26:49] [main/TRACE] [mixin]: Added class metadata for net/minecraft/client/network/NetHandlerPlayClient to metadata cache | |
[00:26:49] [main/TRACE] [mixin]: Added class metadata for net/minecraft/network/NetworkManager to metadata cache | |
[00:26:49] [main/TRACE] [mixin]: Added class metadata for net/minecraft/network/NetworkManager$5 to metadata cache | |
[00:26:49] [main/TRACE] [mixin]: Added class metadata for net/minecraft/network/PacketThreadUtil to metadata cache | |
[00:26:49] [main/TRACE] [mixin]: Added class metadata for net/minecraft/client/particle/ParticleDigging to metadata cache | |
[00:26:49] [main/TRACE] [mixin]: Added class metadata for net/minecraft/client/particle/ParticleFirework$Spark to metadata cache | |
[00:26:49] [main/TRACE] [mixin]: Added class metadata for net/minecraft/client/particle/ParticleManager to metadata cache | |
[00:26:49] [main/TRACE] [mixin]: Added class metadata for net/minecraft/client/multiplayer/PlayerControllerMP to metadata cache | |
[00:26:49] [main/TRACE] [mixin]: Added class metadata for net/minecraft/client/gui/spectator/PlayerMenuObject to metadata cache | |
[00:26:49] [main/TRACE] [mixin]: Added class metadata for net/minecraft/client/renderer/color/BlockColors$4 to metadata cache | |
[00:26:49] [main/TRACE] [mixin]: Added class metadata for net/minecraft/client/renderer/color/BlockColors$5 to metadata cache | |
[00:26:49] [main/TRACE] [mixin]: Added class metadata for net/minecraft/stats/RecipeBook to metadata cache | |
[00:26:49] [main/TRACE] [mixin]: Added class metadata for net/minecraft/client/renderer/RenderGlobal to metadata cache | |
[00:26:49] [main/TRACE] [mixin]: Added class metadata for net/minecraft/client/renderer/RenderItem to metadata cache | |
[00:26:49] [main/TRACE] [mixin]: Added class metadata for net/minecraft/client/renderer/entity/RenderItemFrame to metadata cache | |
[00:26:49] [main/TRACE] [mixin]: Added class metadata for net/minecraft/client/gui/inventory/GuiContainerCreative to metadata cache | |
[00:26:49] [main/TRACE] [mixin]: Added class metadata for net/minecraft/client/gui/spectator/SpectatorMenu to metadata cache | |
[00:26:49] [main/TRACE] [mixin]: Added class metadata for net/minecraft/client/gui/spectator/categories/TeleportToPlayer to metadata cache | |
[00:26:49] [main/TRACE] [mixin]: Added class metadata for net/minecraft/client/renderer/tileentity/TileEntityBeaconRenderer to metadata cache | |
[00:26:49] [main/TRACE] [mixin]: Added class metadata for net/minecraft/client/renderer/tileentity/TileEntityChestRenderer to metadata cache | |
[00:26:49] [main/TRACE] [mixin]: Added class metadata for net/minecraft/tileentity/TileEntityPiston to metadata cache | |
[00:26:49] [main/TRACE] [mixin]: Added class metadata for net/minecraft/client/renderer/tileentity/TileEntityPistonRenderer to metadata cache | |
[00:26:49] [main/TRACE] [mixin]: Added class metadata for net/minecraft/client/renderer/tileentity/TileEntityRendererDispatcher to metadata cache | |
[00:26:49] [main/TRACE] [mixin]: Added class metadata for net/minecraft/world/World to metadata cache | |
[00:26:49] [main/TRACE] [mixin]: Added class metadata for net/minecraft/client/multiplayer/WorldClient to metadata cache | |
[00:26:49] [main/INFO] [mixin]: Preparing mixins.cutelessmod.clientcommands.json (9) | |
[00:26:49] [main/TRACE] [mixin]: Added class metadata for net/minecraft/item/ItemSword to metadata cache | |
[00:26:49] [main/TRACE] [mixin]: Added class metadata for net/minecraft/client/settings/KeyBinding to metadata cache | |
[00:26:49] [main/TRACE] [mixin]: Added class metadata for net/minecraft/util/TabCompleter to metadata cache | |
[00:26:49] [main/INFO] [mixin]: Preparing mixins.cutelessmod.chunk_display.json (3) | |
[00:26:49] [main/TRACE] [mixin]: Added class metadata for net/minecraftforge/fml/common/network/FMLIndexedMessageToMessageCodec to metadata cache | |
[00:26:49] [main/DEBUG] [mixin]: Registering new injector for @Inject with org.spongepowered.asm.mixin.injection.struct.CallbackInjectionInfo | |
[00:26:49] [main/DEBUG] [mixin]: Registering new injector for @ModifyArg with org.spongepowered.asm.mixin.injection.struct.ModifyArgInjectionInfo | |
[00:26:49] [main/DEBUG] [mixin]: Registering new injector for @ModifyArgs with org.spongepowered.asm.mixin.injection.struct.ModifyArgsInjectionInfo | |
[00:26:49] [main/DEBUG] [mixin]: Registering new injector for @Redirect with org.spongepowered.asm.mixin.injection.struct.RedirectInjectionInfo | |
[00:26:49] [main/DEBUG] [mixin]: Registering new injector for @ModifyVariable with org.spongepowered.asm.mixin.injection.struct.ModifyVariableInjectionInfo | |
[00:26:50] [main/DEBUG] [mixin]: Registering new injector for @ModifyConstant with org.spongepowered.asm.mixin.injection.struct.ModifyConstantInjectionInfo | |
[00:26:50] [main/TRACE] [mixin]: Added class metadata for net/minecraft/entity/Entity to metadata cache | |
[00:26:50] [main/TRACE] [mixin]: Added class metadata for net/minecraft/block/BlockChest$Type to metadata cache | |
[00:26:50] [main/TRACE] [mixin]: Added class metadata for java/lang/invoke/MethodHandles$Lookup to metadata cache | |
[00:26:50] [main/TRACE] [mixin]: Added class metadata for net/minecraft/block/BlockContainer to metadata cache | |
[00:26:50] [main/TRACE] [mixin]: Added class metadata for org/spongepowered/asm/mixin/injection/At$Shift to metadata cache | |
[00:26:50] [main/TRACE] [mixin]: Added class metadata for net/minecraft/client/settings/GameSettings$Options to metadata cache | |
[00:26:50] [main/TRACE] [mixin]: Added class metadata for net/minecraft/client/gui/GuiListExtended$IGuiListEntry to metadata cache | |
[00:26:50] [main/TRACE] [mixin]: Added class metadata for net/minecraft/util/math/RayTraceResult$Type to metadata cache | |
[00:26:50] [main/TRACE] [mixin]: Added class metadata for net/minecraft/network/play/client/CPacketPlayerDigging$Action to metadata cache | |
[00:26:50] [main/TRACE] [mixin]: Added class metadata for java/util/Map$Entry to metadata cache | |
[00:26:50] [main/TRACE] [mixin]: Added class metadata for net/minecraft/util/text/event/ClickEvent$Action to metadata cache | |
[00:26:50] [main/TRACE] [mixin]: Added class metadata for net/minecraft/client/particle/ParticleSimpleAnimated to metadata cache | |
[00:26:50] [main/TRACE] [mixin]: Added class metadata for net/minecraft/client/particle/Particle to metadata cache | |
[00:26:50] [main/TRACE] [mixin]: Added class metadata for net/minecraft/client/gui/inventory/GuiContainer to metadata cache | |
[00:26:50] [main/TRACE] [mixin]: Added class metadata for net/minecraft/client/gui/Gui to metadata cache | |
[00:26:50] [main/TRACE] [mixin]: Added class metadata for net/minecraft/util/math/BlockPos$MutableBlockPos to metadata cache | |
[00:26:50] [main/TRACE] [mixin]: Added class metadata for net/dugged/cutelessmod/ContainerSpy$SimpleContainer to metadata cache | |
[00:26:50] [main/TRACE] [mixin]: Added class metadata for net/minecraft/item/Item$ToolMaterial to metadata cache | |
[00:26:50] [main/TRACE] [mixin]: Added class metadata for net/dugged/cutelessmod/clientcommands/ClientCommandHandler$Position to metadata cache | |
[00:26:50] [main/INFO] [mixin]: Prepared 102 mixins in 1.044 sec (10.2ms avg) (247ms load, 437ms transform, 0ms plugin) | |
[00:26:50] [main/INFO] [LaunchWrapper]: Launching wrapped minecraft {net.minecraft.client.main.Main} | |
[00:26:50] [main/INFO] [mixin]: Mixing MixinMinecraft from mixins.cutelessmod.json into net.minecraft.client.Minecraft | |
[00:26:50] [main/TRACE] [mixin]: Added class metadata for org/spongepowered/asm/mixin/injection/callback/CallbackInfo to metadata cache | |
[00:26:50] [main/TRACE] [mixin]: Added class metadata for net/dugged/cutelessmod/Configuration to metadata cache | |
[00:26:50] [main/TRACE] [mixin]: Added class metadata for net/minecraft/client/entity/AbstractClientPlayer to metadata cache | |
[00:26:50] [main/TRACE] [mixin]: Added class metadata for net/minecraft/util/math/RayTraceResult to metadata cache | |
[00:26:50] [main/TRACE] [mixin]: Added class metadata for net/minecraft/entity/player/InventoryPlayer to metadata cache | |
[00:26:50] [main/TRACE] [mixin]: Added class metadata for net/minecraft/util/EnumHand to metadata cache | |
[00:26:50] [main/TRACE] [mixin]: Added class metadata for net/dugged/cutelessmod/CutelessMod to metadata cache | |
[00:26:50] [main/TRACE] [mixin]: Added class metadata for net/dugged/cutelessmod/GuiCompass to metadata cache | |
[00:26:50] [main/TRACE] [mixin]: Added class metadata for java/lang/Comparable to metadata cache | |
[00:26:50] [main/INFO] [mixin]: Mixing MixinMinecraft from mixins.cutelessmod.clientcommands.json into net.minecraft.client.Minecraft | |
[00:26:50] [main/TRACE] [mixin]: Added class metadata for net/dugged/cutelessmod/clientcommands/Handler to metadata cache | |
[00:26:50] [main/TRACE] [mixin]: Added class metadata for net/dugged/cutelessmod/clientcommands/HandlerSetBlock to metadata cache | |
[00:26:50] [main/TRACE] [mixin]: Added class metadata for net/dugged/cutelessmod/clientcommands/HandlerFill to metadata cache | |
[00:26:50] [main/TRACE] [mixin]: Added class metadata for net/dugged/cutelessmod/clientcommands/HandlerClone to metadata cache | |
[00:26:50] [main/TRACE] [mixin]: Added class metadata for net/dugged/cutelessmod/clientcommands/HandlerReplaceItem to metadata cache | |
[00:26:50] [main/INFO] [mixin]: Mixing MixinMinecraft from mixins.cutelessmod.chunk_display.json into net.minecraft.client.Minecraft | |
[00:26:50] [main/TRACE] [mixin]: Added class metadata for net/dugged/cutelessmod/chunk_display/gui/GuiChunkGrid to metadata cache | |
[00:26:50] [main/TRACE] [mixin]: Added class metadata for net/dugged/cutelessmod/chunk_display/gui/Controller to metadata cache | |
[00:26:50] [main/TRACE] [mixin]: Added class metadata for net/minecraft/util/IThreadListener to metadata cache | |
[00:26:50] [main/TRACE] [mixin]: Added class metadata for net/minecraft/profiler/ISnooperInfo to metadata cache | |
[00:26:50] [main/TRACE] [mixin]: Added class metadata for java/lang/String to metadata cache | |
[00:26:50] [main/TRACE] [mixin]: Added class metadata for net/minecraft/util/ReportedException to metadata cache | |
[00:26:50] [main/TRACE] [mixin]: Added class metadata for net/minecraft/util/MinecraftError to metadata cache | |
[00:26:50] [main/TRACE] [mixin]: Added class metadata for java/lang/RuntimeException to metadata cache | |
[00:26:50] [main/TRACE] [mixin]: Added class metadata for java/lang/Exception to metadata cache | |
[00:26:50] [main/TRACE] [mixin]: Added class metadata for java/lang/Throwable to metadata cache | |
[00:26:50] [main/TRACE] [mixin]: Added class metadata for java/lang/Error to metadata cache | |
[00:26:50] [main/TRACE] [mixin]: Added class metadata for java/util/Iterator to metadata cache | |
[00:26:50] [main/TRACE] [mixin]: Added class metadata for java/lang/Integer to metadata cache | |
[00:26:50] [main/TRACE] [mixin]: Added class metadata for java/lang/Number to metadata cache | |
[00:26:50] [main/TRACE] [mixin]: Added class metadata for com/mojang/authlib/yggdrasil/YggdrasilAuthenticationService to metadata cache | |
[00:26:50] [main/TRACE] [mixin]: Added class metadata for com/mojang/authlib/HttpAuthenticationService to metadata cache | |
[00:26:50] [main/TRACE] [mixin]: Added class metadata for com/mojang/authlib/BaseAuthenticationService to metadata cache | |
[00:26:50] [main/TRACE] [mixin]: Added class metadata for java/lang/InterruptedException to metadata cache | |
[00:26:50] [main/TRACE] [mixin]: Added class metadata for com/mojang/authlib/minecraft/MinecraftSessionService to metadata cache | |
[00:26:50] [main/INFO] [mixin]: Mixing MixinGuiScreen from mixins.cutelessmod.json into net.minecraft.client.gui.GuiScreen | |
[00:26:50] [main/TRACE] [mixin]: Added class metadata for net/dugged/cutelessmod/DesktopApi to metadata cache | |
[00:26:50] [main/TRACE] [mixin]: Added class metadata for com/google/common/base/Splitter to metadata cache | |
[00:26:50] [main/TRACE] [mixin]: Added class metadata for java/lang/Iterable to metadata cache | |
[00:26:50] [main/INFO] [mixin]: Mixing MixinShulkerBoxDisplayRenderer from mixins.cutelessmod.json into net.minecraft.client.gui.GuiScreen | |
[00:26:50] [main/TRACE] [mixin]: Added class metadata for net/dugged/cutelessmod/ShulkerBoxDisplay to metadata cache | |
[00:26:50] [main/INFO] [mixin]: Mixing MixinGuiScreen from mixins.cutelessmod.clientcommands.json into net.minecraft.client.gui.GuiScreen | |
[00:26:50] [main/TRACE] [mixin]: Added class metadata for net/dugged/cutelessmod/clientcommands/ClientCommandHandler to metadata cache | |
[00:26:50] [main/TRACE] [mixin]: Added class metadata for net/dugged/cutelessmod/clientcommands/CommandUndo to metadata cache | |
[00:26:50] [main/TRACE] [mixin]: Added class metadata for net/dugged/cutelessmod/clientcommands/ClientCommand to metadata cache | |
[00:26:50] [main/TRACE] [mixin]: Added class metadata for net/minecraft/command/ICommand to metadata cache | |
[00:26:50] [main/TRACE] [mixin]: Added class metadata for net/minecraft/client/gui/GuiYesNoCallback to metadata cache | |
[00:26:50] [main/TRACE] [mixin]: Added class metadata for java/net/URI to metadata cache | |
[00:26:50] [main/TRACE] [mixin]: Added class metadata for java/awt/datatransfer/Transferable to metadata cache | |
[00:26:50] [main/TRACE] [mixin]: Added class metadata for net/minecraft/nbt/NBTException to metadata cache | |
[00:26:50] [main/TRACE] [mixin]: Added class metadata for net/minecraft/nbt/NBTTagCompound to metadata cache | |
[00:26:50] [main/TRACE] [mixin]: Added class metadata for net/minecraft/nbt/NBTBase to metadata cache | |
[00:26:50] [main/TRACE] [mixin]: Added class metadata for java/lang/Class to metadata cache | |
[00:26:50] [main/INFO] [mixin]: Mixing MixinWorld from mixins.cutelessmod.json into net.minecraft.world.World | |
[00:26:50] [main/TRACE] [mixin]: Added class metadata for java/lang/Boolean to metadata cache | |
[00:26:50] [main/TRACE] [mixin]: Added class metadata for java/io/Serializable to metadata cache | |
[00:26:50] [main/TRACE] [mixin]: Added class metadata for org/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable to metadata cache | |
[00:26:50] [main/TRACE] [mixin]: Added class metadata for net/minecraftforge/common/capabilities/ICapabilityProvider to metadata cache | |
[00:26:50] [main/TRACE] [mixin]: Added class metadata for net/minecraft/world/IBlockAccess to metadata cache | |
[00:26:50] [main/INFO] [mixin]: Mixing MixinWorldClient from mixins.cutelessmod.json into net.minecraft.client.multiplayer.WorldClient | |
[00:26:50] [main/TRACE] [mixin]: Added class metadata for net/minecraft/world/storage/ISaveHandler to metadata cache | |
[00:26:50] [main/TRACE] [mixin]: Added class metadata for net/minecraft/world/storage/WorldInfo to metadata cache | |
[00:26:50] [main/TRACE] [mixin]: Added class metadata for net/minecraft/world/WorldProvider to metadata cache | |
[00:26:50] [main/TRACE] [mixin]: Added class metadata for net/minecraft/profiler/Profiler to metadata cache | |
[00:26:50] [main/TRACE] [mixin]: Added class metadata for net/minecraft/entity/item/EntityFireworkRocket to metadata cache | |
[00:26:51] [main/INFO] [mixin]: Mixing MixinGuiIngame from mixins.cutelessmod.json into net.minecraft.client.gui.GuiIngame | |
[00:26:51] [main/TRACE] [mixin]: Added class metadata for org/apache/commons/lang3/StringUtils to metadata cache | |
[00:26:51] [main/TRACE] [mixin]: Added class metadata for net/minecraft/client/multiplayer/ServerData to metadata cache | |
[00:26:51] [main/TRACE] [mixin]: Added class metadata for java/util/ArrayList to metadata cache | |
[00:26:51] [main/TRACE] [mixin]: Added class metadata for java/util/AbstractList to metadata cache | |
[00:26:51] [main/TRACE] [mixin]: Added class metadata for java/util/AbstractCollection to metadata cache | |
[00:26:51] [main/TRACE] [mixin]: Added class metadata for java/util/Collection to metadata cache | |
[00:26:51] [main/TRACE] [mixin]: Added class metadata for java/util/List to metadata cache | |
[00:26:51] [main/TRACE] [mixin]: Added class metadata for java/lang/Cloneable to metadata cache | |
[00:26:51] [main/TRACE] [mixin]: Added class metadata for java/util/RandomAccess to metadata cache | |
[00:26:51] [main/TRACE] [mixin]: Added class metadata for java/util/Map to metadata cache | |
[00:26:51] [main/TRACE] [mixin]: Added class metadata for net/minecraft/client/gui/ScaledResolution to metadata cache | |
[00:26:51] [main/INFO] [mixin]: Mixing MixinGuiMainMenu from mixins.cutelessmod.json into net.minecraft.client.gui.GuiMainMenu | |
[00:26:51] [main/TRACE] [mixin]: Added class metadata for net/minecraft/client/gui/GuiButton to metadata cache | |
[00:26:51] [main/TRACE] [mixin]: Added class metadata for net/minecraft/client/resources/I18n to metadata cache | |
[00:26:51] [main/TRACE] [mixin]: Added class metadata for java/io/IOException to metadata cache | |
[00:26:51] [main/TRACE] [mixin]: Added class metadata for net/minecraft/realms/RealmsBridge to metadata cache | |
[00:26:51] [main/INFO] [mixin]: Mixing MixinGuiGameOver from mixins.cutelessmod.json into net.minecraft.client.gui.GuiGameOver | |
[00:26:51] [main/INFO] [mixin]: Mixing MixinRecipeBook from mixins.cutelessmod.json into net.minecraft.stats.RecipeBook | |
[00:26:51] [main/INFO] [mixin]: Mixing CMixinNoClip$MixinEntityPlayer from mixins.cutelessmod.json into net.minecraft.entity.player.EntityPlayer | |
[00:26:51] [main/TRACE] [mixin]: Added class metadata for net/minecraft/entity/player/PlayerCapabilities to metadata cache | |
[00:26:51] [main/TRACE] [mixin]: Added class metadata for net/minecraft/command/ICommandSender to metadata cache | |
[00:26:51] [main/TRACE] [mixin]: Added class metadata for net/minecraftforge/common/capabilities/ICapabilitySerializable to metadata cache | |
[00:26:51] [main/TRACE] [mixin]: Added class metadata for net/minecraftforge/common/util/INBTSerializable to metadata cache | |
[00:26:51] [main/TRACE] [mixin]: Added class metadata for net/minecraft/entity/MoverType to metadata cache | |
[00:26:51] [main/INFO] [mixin]: Mixing MixinEntityLivingBase from mixins.cutelessmod.json into net.minecraft.entity.EntityLivingBase | |
[00:26:51] [main/TRACE] [mixin]: Added class metadata for net/minecraft/entity/player/EntityPlayerMP to metadata cache | |
[00:26:51] [main/INFO] [mixin]: Mixing MixinEntityPlayerSP from mixins.cutelessmod.json into net.minecraft.client.entity.EntityPlayerSP | |
[00:26:51] [main/TRACE] [mixin]: Added class metadata for net/minecraft/inventory/Container to metadata cache | |
[00:26:51] [main/TRACE] [mixin]: Added class metadata for net/minecraft/inventory/ClickType to metadata cache | |
[00:26:51] [main/TRACE] [mixin]: Added class metadata for net/dugged/cutelessmod/CutelessModUtils to metadata cache | |
[00:26:51] [main/TRACE] [mixin]: Added class metadata for org/lwjgl/input/Keyboard to metadata cache | |
[00:26:51] [main/TRACE] [mixin]: Added class metadata for net/minecraft/stats/StatBase to metadata cache | |
[00:26:51] [main/TRACE] [mixin]: Added class metadata for net/dugged/cutelessmod/StatPlugin to metadata cache | |
[00:26:51] [main/TRACE] [mixin]: Added class metadata for net/minecraft/util/math/MathHelper to metadata cache | |
[00:26:51] [main/TRACE] [mixin]: Added class metadata for java/lang/Float to metadata cache | |
[00:26:51] [main/TRACE] [mixin]: Added class metadata for com/mojang/authlib/GameProfile to metadata cache | |
[00:26:51] [main/TRACE] [mixin]: Added class metadata for net/minecraft/inventory/ContainerMerchant to metadata cache | |
[00:26:51] [main/INFO] [mixin]: Mixing IGuiChat from mixins.cutelessmod.json into net.minecraft.client.gui.GuiChat | |
[00:26:51] [main/INFO] [mixin]: Mixing MixinGuiChat from mixins.cutelessmod.json into net.minecraft.client.gui.GuiChat | |
[00:26:51] [main/TRACE] [mixin]: Added class metadata for net/minecraft/util/ITabCompleter to metadata cache | |
[00:26:51] [main/INFO] [mixin]: Mixing MixinGuiInventory from mixins.cutelessmod.json into net.minecraft.client.gui.inventory.GuiInventory | |
[00:26:51] [main/TRACE] [mixin]: Added class metadata for net/minecraft/util/ResourceLocation to metadata cache | |
[00:26:51] [main/TRACE] [mixin]: Added class metadata for net/minecraft/client/gui/recipebook/IRecipeShownListener to metadata cache | |
[00:26:51] [main/INFO] [mixin]: Mixing MixinInventoryEffectRenderer from mixins.cutelessmod.json into net.minecraft.client.renderer.InventoryEffectRenderer | |
[00:26:51] [main/INFO] [mixin]: Mixing INBTTagList from mixins.cutelessmod.json into net.minecraft.nbt.NBTTagList | |
[00:26:51] [main/TRACE] [mixin]: Added class metadata for net/minecraft/nbt/NBTTagEnd to metadata cache | |
[00:26:51] [main/INFO] [mixin]: Mixing MixinGuiIngameMenu from mixins.cutelessmod.json into net.minecraft.client.gui.GuiIngameMenu | |
[00:26:51] [main/TRACE] [mixin]: Added class metadata for net/minecraft/client/multiplayer/GuiConnecting to metadata cache | |
[00:26:51] [Client thread/INFO] [net.minecraft.client.Minecraft]: Setting user: Player421 | |
[00:26:52] [Client thread/INFO] [mixin]: Mixing MixinBlock from mixins.cutelessmod.json into net.minecraft.block.Block | |
[00:26:52] [Client thread/TRACE] [mixin]: Added class metadata for net/minecraftforge/registries/IForgeRegistryEntry$Impl to metadata cache | |
[00:26:52] [Client thread/TRACE] [mixin]: Added class metadata for net/minecraft/util/math/Vec3d to metadata cache | |
[00:26:52] [Client thread/TRACE] [mixin]: Added class metadata for net/minecraftforge/registries/IForgeRegistryEntry to metadata cache | |
[00:26:52] [Client thread/TRACE] [mixin]: Added class metadata for net/minecraft/block/state/IBlockState to metadata cache | |
[00:26:52] [Client thread/TRACE] [mixin]: Added class metadata for net/minecraft/util/math/BlockPos to metadata cache | |
[00:26:52] [Client thread/INFO] [mixin]: Mixing MixinEntityItem from mixins.cutelessmod.json into net.minecraft.entity.item.EntityItem | |
[00:26:52] [Client thread/TRACE] [mixin]: Added class metadata for net/dugged/cutelessmod/ItemCounter to metadata cache | |
[00:26:52] [Client thread/INFO] [mixin]: Mixing MixinItemStack from mixins.cutelessmod.json into net.minecraft.item.ItemStack | |
[00:26:52] [Client thread/INFO] [mixin]: Renaming synthetic method lambda$static$1(Lnet/minecraft/nbt/NBTTagCompound;)I to md7aedfe$lambda$static$1$0 in mixins.cutelessmod.json:MixinItemStack | |
[00:26:52] [Client thread/INFO] [mixin]: Renaming synthetic method lambda$static$0(Lnet/minecraft/nbt/NBTTagCompound;)I to md7aedfe$lambda$static$0$1 in mixins.cutelessmod.json:MixinItemStack | |
[00:26:52] [Client thread/TRACE] [mixin]: Added class metadata for com/google/common/collect/Multimap to metadata cache | |
[00:26:52] [Client thread/TRACE] [mixin]: Added class metadata for java/util/Comparator to metadata cache | |
[00:26:52] [Client thread/TRACE] [mixin]: Added class metadata for java/util/function/ToIntFunction to metadata cache | |
[00:26:52] [Client thread/TRACE] [mixin]: Added class metadata for com/google/common/collect/HashMultimap to metadata cache | |
[00:26:52] [Client thread/TRACE] [mixin]: Added class metadata for com/google/common/collect/AbstractSetMultimap to metadata cache | |
[00:26:52] [Client thread/TRACE] [mixin]: Added class metadata for com/google/common/collect/AbstractMapBasedMultimap to metadata cache | |
[00:26:52] [Client thread/TRACE] [mixin]: Added class metadata for com/google/common/collect/AbstractMultimap to metadata cache | |
[00:26:52] [Client thread/INFO] [mixin]: Mixing MixinBlockChest from mixins.cutelessmod.json into net.minecraft.block.BlockChest | |
[00:26:52] [Client thread/TRACE] [mixin]: Added class metadata for net/minecraft/util/math/AxisAlignedBB to metadata cache | |
[00:26:52] [Client thread/TRACE] [mixin]: Added class metadata for net/minecraft/util/EnumFacing to metadata cache | |
[00:26:52] [Client thread/INFO] [mixin]: Renaming synthetic method lambda$getActualState$0(Lnet/minecraft/util/math/AxisAlignedBB;)Lnet/minecraft/util/EnumFacing; to md7aedfe$lambda$getActualState$0$0 in mixins.cutelessmod.json:MixinBlockChest | |
[00:26:52] [Client thread/TRACE] [mixin]: Added class metadata for net/minecraft/block/ITileEntityProvider to metadata cache | |
[00:26:52] [Client thread/TRACE] [mixin]: Added class metadata for net/dugged/cutelessmod/DoubleChestSide to metadata cache | |
[00:26:52] [Client thread/TRACE] [mixin]: Added class metadata for java/util/Arrays to metadata cache | |
[00:26:52] [Client thread/TRACE] [mixin]: Added class metadata for net/minecraft/util/EnumBlockRenderType to metadata cache | |
[00:26:52] [Client thread/TRACE] [mixin]: Added class metadata for net/minecraft/block/state/IBlockBehaviors to metadata cache | |
[00:26:52] [Client thread/TRACE] [mixin]: Added class metadata for net/minecraft/block/state/IBlockProperties to metadata cache | |
[00:26:52] [Client thread/TRACE] [mixin]: Added class metadata for java/util/function/Supplier to metadata cache | |
[00:26:52] [Client thread/TRACE] [mixin]: Added class metadata for java/lang/Enum to metadata cache | |
[00:26:52] [Client thread/TRACE] [mixin]: Added class metadata for net/minecraft/util/IStringSerializable to metadata cache | |
[00:26:52] [Client thread/TRACE] [mixin]: Added class metadata for net/minecraft/block/material/Material to metadata cache | |
[00:26:52] [Client thread/TRACE] [mixin]: Added class metadata for net/minecraft/block/properties/PropertyEnum to metadata cache | |
[00:26:52] [Client thread/TRACE] [mixin]: Added class metadata for net/minecraft/block/properties/IProperty to metadata cache | |
[00:26:52] [Client thread/TRACE] [mixin]: Added class metadata for java/lang/invoke/MethodType to metadata cache | |
[00:26:52] [Client thread/TRACE] [mixin]: Added class metadata for java/lang/invoke/MethodHandle to metadata cache | |
[00:26:52] [Client thread/TRACE] [mixin]: Added class metadata for java/lang/invoke/CallSite to metadata cache | |
[00:26:52] [Client thread/TRACE] [mixin]: Added class metadata for net/minecraft/block/properties/PropertyDirection to metadata cache | |
[00:26:52] [Client thread/TRACE] [mixin]: Added class metadata for net/minecraft/util/math/Vec3i to metadata cache | |
[00:26:52] [Client thread/TRACE] [mixin]: Added class metadata for net/minecraft/inventory/InventoryLargeChest to metadata cache | |
[00:26:52] [Client thread/TRACE] [mixin]: Added class metadata for net/minecraft/tileentity/TileEntityChest to metadata cache | |
[00:26:52] [Client thread/TRACE] [mixin]: Added class metadata for net/minecraft/tileentity/TileEntityLockableLoot to metadata cache | |
[00:26:52] [Client thread/TRACE] [mixin]: Added class metadata for net/minecraft/tileentity/TileEntityLockable to metadata cache | |
[00:26:52] [Client thread/TRACE] [mixin]: Added class metadata for net/minecraft/tileentity/TileEntity to metadata cache | |
[00:26:52] [Client thread/INFO] [mixin]: Mixing MixinBlockLiquid from mixins.cutelessmod.json into net.minecraft.block.BlockLiquid | |
[00:26:53] [Client thread/INFO] [mixin]: Mixing MixinBlockPistonBase from mixins.cutelessmod.json into net.minecraft.block.BlockPistonBase | |
[00:26:53] [Client thread/TRACE] [mixin]: Added class metadata for net/minecraft/block/BlockDirectional to metadata cache | |
[00:26:53] [Client thread/TRACE] [mixin]: Added class metadata for net/minecraft/init/Items to metadata cache | |
[00:26:53] [Client thread/TRACE] [mixin]: Added class metadata for net/dugged/cutelessmod/PistonHelper to metadata cache | |
[00:26:53] [Client thread/TRACE] [mixin]: Added class metadata for net/minecraft/block/properties/PropertyBool to metadata cache | |
[00:26:53] [Client thread/TRACE] [mixin]: Added class metadata for net/minecraft/item/Item to metadata cache | |
[00:26:53] [Client thread/TRACE] [mixin]: Added class metadata for net/minecraft/block/BlockPistonExtension$EnumPistonType to metadata cache | |
[00:26:53] [Client thread/TRACE] [mixin]: Added class metadata for net/minecraft/block/BlockPistonMoving to metadata cache | |
[00:26:53] [Client thread/TRACE] [mixin]: Added class metadata for net/minecraft/block/material/EnumPushReaction to metadata cache | |
[00:26:53] [Client thread/INFO] [mixin]: Mixing MixinTileEntityPiston from mixins.cutelessmod.json into net.minecraft.tileentity.TileEntityPiston | |
[00:26:53] [Client thread/TRACE] [mixin]: Added class metadata for java/lang/Math to metadata cache | |
[00:26:53] [Client thread/TRACE] [mixin]: Added class metadata for net/minecraft/util/ITickable to metadata cache | |
[00:26:53] [Client thread/INFO] [mixin]: Mixing MixinBlockMobSpawner from mixins.cutelessmod.json into net.minecraft.block.BlockMobSpawner | |
[00:26:53] [Client thread/INFO] [mixin]: Mixing MixinExtraBlocksInCreativeMenu from mixins.cutelessmod.json into net.minecraft.block.BlockMobSpawner | |
[00:26:53] [Client thread/TRACE] [mixin]: Added class metadata for net/minecraft/creativetab/CreativeTabs to metadata cache | |
[00:26:53] [Client thread/INFO] [mixin]: Mixing MixinBlockSnow from mixins.cutelessmod.json into net.minecraft.block.BlockSnow | |
[00:26:53] [Client thread/TRACE] [mixin]: Added class metadata for java/util/Random to metadata cache | |
[00:26:53] [Client thread/TRACE] [mixin]: Added class metadata for net/minecraft/util/EnumParticleTypes to metadata cache | |
[00:26:53] [Client thread/INFO] [mixin]: Mixing MixinBlockHugeMushroom from mixins.cutelessmod.json into net.minecraft.block.BlockHugeMushroom | |
[00:26:53] [Client thread/INFO] [mixin]: Mixing MixinExtraBlocksInCreativeMenu from mixins.cutelessmod.json into net.minecraft.block.BlockDragonEgg | |
[00:26:53] [Client thread/INFO] [mixin]: Mixing MixinExtraBlocksInCreativeMenu from mixins.cutelessmod.json into net.minecraft.block.BlockCommandBlock | |
[00:26:53] [Client thread/INFO] [mixin]: Mixing IEntityBeacon from mixins.cutelessmod.json into net.minecraft.tileentity.TileEntityBeacon | |
[00:26:54] [Client thread/INFO] [mixin]: Mixing MixinBlockSlime from mixins.cutelessmod.json into net.minecraft.block.BlockSlime | |
[00:26:54] [Client thread/TRACE] [mixin]: Added class metadata for net/minecraft/block/BlockBreakable to metadata cache | |
[00:26:54] [Client thread/INFO] [mixin]: Mixing MixinExtraBlocksInCreativeMenu from mixins.cutelessmod.json into net.minecraft.block.BlockBarrier | |
[00:26:54] [Client thread/INFO] [mixin]: Mixing MixinBlockConcretePowder from mixins.cutelessmod.json into net.minecraft.block.BlockConcretePowder | |
[00:26:54] [Client thread/TRACE] [mixin]: Added class metadata for net/minecraft/block/BlockFalling to metadata cache | |
[00:26:54] [Client thread/TRACE] [mixin]: Added class metadata for net/minecraft/item/EnumDyeColor to metadata cache | |
[00:26:54] [Client thread/INFO] [mixin]: Mixing MixinExtraBlocksInCreativeMenu from mixins.cutelessmod.json into net.minecraft.block.BlockStructure | |
[00:26:54] [Client thread/INFO] [mixin]: Mixing MixinItemFlintAndSteel from mixins.cutelessmod.json into net.minecraft.item.ItemFlintAndSteel | |
[00:26:54] [Client thread/TRACE] [mixin]: Added class metadata for com/google/common/collect/ImmutableMap to metadata cache | |
[00:26:54] [Client thread/TRACE] [mixin]: Added class metadata for net/minecraft/network/play/client/CPacketPlayerDigging to metadata cache | |
[00:26:54] [Client thread/TRACE] [mixin]: Added class metadata for net/minecraft/network/Packet to metadata cache | |
[00:26:54] [Client thread/INFO] [mixin]: Mixing IItemSword from mixins.cutelessmod.clientcommands.json into net.minecraft.item.ItemSword | |
[00:26:54] [Client thread/INFO] [mixin]: Mixing MixinEntityItemFrame from mixins.cutelessmod.json into net.minecraft.entity.item.EntityItemFrame | |
[00:26:54] [Client thread/TRACE] [mixin]: Added class metadata for net/minecraft/entity/EntityHanging to metadata cache | |
[00:26:54] [Client thread/INFO] [mixin]: Mixing MixinItemFirework from mixins.cutelessmod.json into net.minecraft.item.ItemFirework | |
[00:26:54] [Client thread/TRACE] [mixin]: Added class metadata for net/minecraft/util/CooldownTracker to metadata cache | |
[00:26:55] [Client thread/INFO] [mixin]: Mixing MixinEntityChicken from mixins.cutelessmod.json into net.minecraft.entity.passive.EntityChicken | |
[00:26:55] [Client thread/TRACE] [mixin]: Added class metadata for net/minecraft/entity/passive/EntityAnimal to metadata cache | |
[00:26:55] [Client thread/TRACE] [mixin]: Added class metadata for net/minecraft/entity/EntityAgeable to metadata cache | |
[00:26:55] [Client thread/TRACE] [mixin]: Added class metadata for net/minecraft/entity/EntityCreature to metadata cache | |
[00:26:55] [Client thread/TRACE] [mixin]: Added class metadata for net/minecraft/entity/EntityLiving to metadata cache | |
[00:26:55] [Client thread/TRACE] [mixin]: Added class metadata for net/minecraft/entity/passive/IAnimals to metadata cache | |
[00:26:56] [Client thread/DEBUG] [FML]: Creating vanilla freeze snapshot | |
[00:26:56] [Client thread/DEBUG] [FML]: Vanilla freeze snapshot created | |
[00:26:56] [Client thread/INFO] [mixin]: Mixing IKeybinding from mixins.cutelessmod.clientcommands.json into net.minecraft.client.settings.KeyBinding | |
[00:26:56] [Client thread/INFO] [mixin]: Renaming @Accessor method getKeyBindArray()Ljava/util/Map; to getKeyBindArray_$md$7aedfe$0 in mixins.cutelessmod.clientcommands.json:IKeybinding | |
[00:26:56] [Client thread/INFO] [mixin]: Mixing MixinGameSettings from mixins.cutelessmod.json into net.minecraft.client.settings.GameSettings | |
[00:26:56] [Client thread/TRACE] [mixin]: Added class metadata for java/lang/StringBuilder to metadata cache | |
[00:26:56] [Client thread/TRACE] [mixin]: Added class metadata for java/lang/AbstractStringBuilder to metadata cache | |
[00:26:56] [Client thread/TRACE] [mixin]: Added class metadata for java/lang/Appendable to metadata cache | |
[00:26:56] [Client thread/TRACE] [mixin]: Added class metadata for java/lang/CharSequence to metadata cache | |
[00:26:56] [Client thread/INFO] [net.minecraft.client.Minecraft]: LWJGL Version: 2.9.4 | |
[00:26:57] [Client thread/INFO] [mixin]: Mixing MixinGlStateManager from mixins.cutelessmod.json into net.minecraft.client.renderer.GlStateManager | |
[00:26:57] [Client thread/DEBUG] [FML]: Bar Finished: Loading Resource - LanguageManager took 0.002s | |
[00:26:57] [Client thread/INFO] [mixin]: Mixing MixinGuiWorldSelection from mixins.cutelessmod.json into net.minecraft.client.gui.GuiWorldSelection | |
[00:26:57] [Client thread/TRACE] [mixin]: Added class metadata for net/minecraft/client/gui/GuiTextField to metadata cache | |
[00:26:57] [Client thread/TRACE] [mixin]: Added class metadata for net/minecraft/util/text/TextComponentTranslation to metadata cache | |
[00:26:57] [Client thread/TRACE] [mixin]: Added class metadata for net/minecraft/util/text/TextComponentBase to metadata cache | |
[00:26:57] [Client thread/TRACE] [mixin]: Added class metadata for net/minecraft/util/text/ITextComponent to metadata cache | |
[00:26:57] [Client thread/TRACE] [mixin]: Added class metadata for net/minecraft/client/gui/FontRenderer to metadata cache | |
[00:26:57] [Client thread/TRACE] [mixin]: Added class metadata for com/google/common/collect/Lists to metadata cache | |
[00:26:57] [Client thread/TRACE] [mixin]: Added class metadata for net/minecraft/world/storage/WorldSummary to metadata cache | |
[00:26:57] [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_302, Amazon.com Inc. | |
Java VM Version: OpenJDK 64-Bit Server VM (mixed mode), Amazon.com Inc. | |
Memory: 386220288 bytes (368 MB) / 567279616 bytes (541 MB) up to 3806855168 bytes (3630 MB) | |
JVM Flags: 0 total; | |
IntCache: cache: 0, tcache: 0, allocated: 0, tallocated: 0 | |
FML: | |
Loaded coremods (and transformers): | |
CutelessModLoadingPlugin (unknown) | |
GL info: ' Vendor: 'NVIDIA Corporation' Version: '4.6.0 NVIDIA 456.71' Renderer: 'GeForce GTX 980 Ti/PCIe/SSE2' | |
[00:26:57] [Client thread/INFO] [FML]: MinecraftForge v14.23.5.2847 Initialized | |
[00:26:58] [Client thread/INFO] [FML]: Starts to replace vanilla recipe ingredients with ore ingredients. | |
[00:26:58] [Client thread/INFO] [FML]: Invalid recipe found with multiple oredict ingredients in the same ingredient... | |
[00:26:58] [Client thread/INFO] [FML]: Replaced 1227 ore ingredients | |
[00:26:58] [Client thread/DEBUG] [FML]: File C:\Users\Nessi\IdeaProjects\CutelessMod\run\config\injectedDependencies.json not found. No dependencies injected | |
[00:26:58] [Client thread/DEBUG] [FML]: Building injected Mod Containers [net.minecraftforge.fml.common.FMLContainer, net.minecraftforge.common.ForgeModContainer] | |
[00:26:58] [Client thread/DEBUG] [FML]: Attempting to load mods contained in the minecraft jar file and associated classes | |
[00:26:58] [Client thread/TRACE] [FML]: Skipping known library file C:\Users\Nessi\.jdks\corretto-1.8.0_302\jre\lib\charsets.jar | |
[00:26:58] [Client thread/TRACE] [FML]: Skipping known library file C:\Users\Nessi\.jdks\corretto-1.8.0_302\jre\lib\ext\access-bridge-64.jar | |
[00:26:58] [Client thread/TRACE] [FML]: Skipping known library file C:\Users\Nessi\.jdks\corretto-1.8.0_302\jre\lib\ext\cldrdata.jar | |
[00:26:58] [Client thread/TRACE] [FML]: Skipping known library file C:\Users\Nessi\.jdks\corretto-1.8.0_302\jre\lib\ext\dnsns.jar | |
[00:26:58] [Client thread/TRACE] [FML]: Skipping known library file C:\Users\Nessi\.jdks\corretto-1.8.0_302\jre\lib\ext\jaccess.jar | |
[00:26:58] [Client thread/TRACE] [FML]: Skipping known library file C:\Users\Nessi\.jdks\corretto-1.8.0_302\jre\lib\ext\jfxrt.jar | |
[00:26:58] [Client thread/TRACE] [FML]: Skipping known library file C:\Users\Nessi\.jdks\corretto-1.8.0_302\jre\lib\ext\localedata.jar | |
[00:26:58] [Client thread/TRACE] [FML]: Skipping known library file C:\Users\Nessi\.jdks\corretto-1.8.0_302\jre\lib\ext\nashorn.jar | |
[00:26:58] [Client thread/TRACE] [FML]: Skipping known library file C:\Users\Nessi\.jdks\corretto-1.8.0_302\jre\lib\ext\sunec.jar | |
[00:26:58] [Client thread/TRACE] [FML]: Skipping known library file C:\Users\Nessi\.jdks\corretto-1.8.0_302\jre\lib\ext\sunjce_provider.jar | |
[00:26:58] [Client thread/TRACE] [FML]: Skipping known library file C:\Users\Nessi\.jdks\corretto-1.8.0_302\jre\lib\ext\sunmscapi.jar | |
[00:26:58] [Client thread/TRACE] [FML]: Skipping known library file C:\Users\Nessi\.jdks\corretto-1.8.0_302\jre\lib\ext\sunpkcs11.jar | |
[00:26:58] [Client thread/TRACE] [FML]: Skipping known library file C:\Users\Nessi\.jdks\corretto-1.8.0_302\jre\lib\ext\zipfs.jar | |
[00:26:58] [Client thread/TRACE] [FML]: Skipping known library file C:\Users\Nessi\.jdks\corretto-1.8.0_302\jre\lib\jce.jar | |
[00:26:58] [Client thread/TRACE] [FML]: Skipping known library file C:\Users\Nessi\.jdks\corretto-1.8.0_302\jre\lib\jfr.jar | |
[00:26:58] [Client thread/TRACE] [FML]: Skipping known library file C:\Users\Nessi\.jdks\corretto-1.8.0_302\jre\lib\jfxswt.jar | |
[00:26:58] [Client thread/TRACE] [FML]: Skipping known library file C:\Users\Nessi\.jdks\corretto-1.8.0_302\jre\lib\jsse.jar | |
[00:26:58] [Client thread/TRACE] [FML]: Skipping known library file C:\Users\Nessi\.jdks\corretto-1.8.0_302\jre\lib\management-agent.jar | |
[00:26:58] [Client thread/TRACE] [FML]: Skipping known library file C:\Users\Nessi\.jdks\corretto-1.8.0_302\jre\lib\resources.jar | |
[00:26:58] [Client thread/TRACE] [FML]: Skipping known library file C:\Users\Nessi\.jdks\corretto-1.8.0_302\jre\lib\rt.jar | |
[00:26:58] [Client thread/DEBUG] [FML]: Found a minecraft related directory at C:\Users\Nessi\IdeaProjects\CutelessMod\build\classes\java\main, examining for mod candidates | |
[00:26:58] [Client thread/DEBUG] [FML]: Found a minecraft related directory at C:\Users\Nessi\IdeaProjects\CutelessMod\build\resources\main, examining for mod candidates | |
[00:26:58] [Client thread/DEBUG] [FML]: Found a minecraft related file at C:\Users\Nessi\.gradle\caches\minecraft\deobfedDeps\compileDummy.jar, examining for mod candidates | |
[00:26:58] [Client thread/DEBUG] [FML]: Found a minecraft related file at C:\Users\Nessi\.gradle\caches\minecraft\deobfedDeps\providedDummy.jar, examining for mod candidates | |
[00:26:58] [Client thread/DEBUG] [FML]: Found a minecraft related file at C:\Users\Nessi\.gradle\caches\modules-2\files-2.1\org.spongepowered\mixin\0.8.4-SNAPSHOT\2f8b0718d390be521dff1d9dcf44d1e3e8314773\mixin-0.8.4-SNAPSHOT.jar, examining for mod candidates | |
[00:26:58] [Client thread/DEBUG] [FML]: Found a minecraft related file at C:\Users\Nessi\.gradle\caches\minecraft\net\minecraftforge\forge\1.12.2-14.23.5.2847\stable\39\forgeSrc-1.12.2-14.23.5.2847.jar, examining for mod candidates | |
[00:26:58] [Client thread/TRACE] [FML]: Skipping known library file C:\Users\Nessi\.gradle\caches\modules-2\files-2.1\com.mojang\authlib\1.5.25\9834cdf236c22e84b946bba989e2f94ef5897c3c\authlib-1.5.25.jar | |
[00:26:58] [Client thread/DEBUG] [FML]: Found a minecraft related file at C:\Users\Nessi\.gradle\caches\modules-2\files-2.1\com.google.code.findbugs\jsr305\3.0.1\f7be08ec23c21485b9b5a1cf1654c2ec8c58168d\jsr305-3.0.1.jar, examining for mod candidates | |
[00:26:58] [Client thread/DEBUG] [FML]: Found a minecraft related file at C:\Users\Nessi\.gradle\caches\modules-2\files-2.1\com.mojang\patchy\1.2.3\e3107ca512d704a434076a153a6e1149e3787275\patchy-1.2.3.jar, examining for mod candidates | |
[00:26:58] [Client thread/TRACE] [FML]: Skipping known library file C:\Users\Nessi\.gradle\caches\modules-2\files-2.1\oshi-project\oshi-core\1.1\9ddf7b048a8d701be231c0f4f95fd986198fd2d8\oshi-core-1.1.jar | |
[00:26:58] [Client thread/DEBUG] [FML]: Found a minecraft related file at C:\Users\Nessi\.gradle\caches\modules-2\files-2.1\com.mojang\text2speech\1.10.3\48fd510879dff266c3815947de66e3d4809f8668\text2speech-1.10.3.jar, examining for mod candidates | |
[00:26:58] [Client thread/TRACE] [FML]: Skipping known library file C:\Users\Nessi\.gradle\caches\modules-2\files-2.1\net.java.dev.jna\jna\4.4.0\cb208278274bf12ebdb56c61bd7407e6f774d65a\jna-4.4.0.jar | |
[00:26:58] [Client thread/TRACE] [FML]: Skipping known library file C:\Users\Nessi\.gradle\caches\modules-2\files-2.1\net.java.dev.jna\platform\3.4.0\e3f70017be8100d3d6923f50b3d2ee17714e9c13\platform-3.4.0.jar | |
[00:26:58] [Client thread/TRACE] [FML]: Skipping known library file C:\Users\Nessi\.gradle\caches\modules-2\files-2.1\com.ibm.icu\icu4j-core-mojang\51.2\63d216a9311cca6be337c1e458e587f99d382b84\icu4j-core-mojang-51.2.jar | |
[00:26:58] [Client thread/TRACE] [FML]: Skipping known library file C:\Users\Nessi\.gradle\caches\modules-2\files-2.1\net.minecraft\launchwrapper\1.12\111e7bea9c968cdb3d06ef4632bf7ff0824d0f36\launchwrapper-1.12.jar | |
[00:26:58] [Client thread/TRACE] [FML]: Skipping known library file C:\Users\Nessi\.gradle\caches\modules-2\files-2.1\net.sf.jopt-simple\jopt-simple\5.0.3\cdd846cfc4e0f7eefafc02c0f5dce32b9303aa2a\jopt-simple-5.0.3.jar | |
[00:26:58] [Client thread/TRACE] [FML]: Skipping known library file C:\Users\Nessi\.gradle\caches\modules-2\files-2.1\io.netty\netty-all\4.1.9.Final\97860965d6a0a6b98e7f569f3f966727b8db75\netty-all-4.1.9.Final.jar | |
[00:26:58] [Client thread/TRACE] [FML]: Skipping known library file C:\Users\Nessi\.gradle\caches\modules-2\files-2.1\com.google.guava\guava\21.0\3a3d111be1be1b745edfa7d91678a12d7ed38709\guava-21.0.jar | |
[00:26:58] [Client thread/DEBUG] [FML]: Found a minecraft related file at C:\Users\Nessi\.gradle\caches\modules-2\files-2.1\org.apache.maven\maven-artifact\3.5.3\7dc72b6d6d8a6dced3d294ed54c2cc3515ade9f4\maven-artifact-3.5.3.jar, examining for mod candidates | |
[00:26:58] [Client thread/TRACE] [FML]: Skipping known library file C:\Users\Nessi\.gradle\caches\modules-2\files-2.1\org.apache.commons\commons-lang3\3.5\6c6c702c89bfff3cd9e80b04d668c5e190d588c6\commons-lang3-3.5.jar | |
[00:26:58] [Client thread/TRACE] [FML]: Skipping known library file C:\Users\Nessi\.gradle\caches\modules-2\files-2.1\commons-io\commons-io\2.5\2852e6e05fbb95076fc091f6d1780f1f8fe35e0f\commons-io-2.5.jar | |
[00:26:58] [Client thread/TRACE] [FML]: Skipping known library file C:\Users\Nessi\.gradle\caches\modules-2\files-2.1\com.mojang\realms\1.10.22\bd0dccebdf3744c75f1ca20063f16e8f7d5e663f\realms-1.10.22.jar | |
[00:26:58] [Client thread/TRACE] [FML]: Skipping known library file C:\Users\Nessi\.gradle\caches\modules-2\files-2.1\org.apache.httpcomponents\httpclient\4.3.3\18f4247ff4572a074444572cee34647c43e7c9c7\httpclient-4.3.3.jar | |
[00:26:58] [Client thread/TRACE] [FML]: Skipping known library file C:\Users\Nessi\.gradle\caches\modules-2\files-2.1\commons-codec\commons-codec\1.10\4b95f4897fa13f2cd904aee711aeafc0c5295cd8\commons-codec-1.10.jar | |
[00:26:58] [Client thread/TRACE] [FML]: Skipping known library file C:\Users\Nessi\.gradle\caches\modules-2\files-2.1\com.paulscode\librarylwjglopenal\20100824\73e80d0794c39665aec3f62eee88ca91676674ef\librarylwjglopenal-20100824.jar | |
[00:26:58] [Client thread/TRACE] [FML]: Skipping known library file C:\Users\Nessi\.gradle\caches\modules-2\files-2.1\org.lwjgl.lwjgl\lwjgl_util\2.9.4-nightly-20150209\d51a7c040a721d13efdfbd34f8b257b2df882ad0\lwjgl_util-2.9.4-nightly-20150209.jar | |
[00:26:58] [Client thread/TRACE] [FML]: Skipping known library file C:\Users\Nessi\.gradle\caches\modules-2\files-2.1\org.lwjgl.lwjgl\lwjgl\2.9.4-nightly-20150209\697517568c68e78ae0b4544145af031c81082dfe\lwjgl-2.9.4-nightly-20150209.jar | |
[00:26:58] [Client thread/TRACE] [FML]: Skipping known library file C:\Users\Nessi\.gradle\caches\modules-2\files-2.1\net.java.jinput\jinput\2.0.5\39c7796b469a600f72380316f6b1f11db6c2c7c4\jinput-2.0.5.jar | |
[00:26:58] [Client thread/TRACE] [FML]: Skipping known library file C:\Users\Nessi\.gradle\caches\modules-2\files-2.1\net.java.jutils\jutils\1.0.0\e12fe1fda814bd348c1579329c86943d2cd3c6a6\jutils-1.0.0.jar | |
[00:26:58] [Client thread/TRACE] [FML]: Skipping known library file C:\Users\Nessi\.gradle\caches\modules-2\files-2.1\com.google.code.gson\gson\2.8.0\c4ba5371a29ac9b2ad6129b1d39ea38750043eff\gson-2.8.0.jar | |
[00:26:58] [Client thread/TRACE] [FML]: Skipping known library file C:\Users\Nessi\.gradle\caches\modules-2\files-2.1\org.apache.commons\commons-compress\1.8.1\a698750c16740fd5b3871425f4cb3bbaa87f529d\commons-compress-1.8.1.jar | |
[00:26:58] [Client thread/TRACE] [FML]: Skipping known library file C:\Users\Nessi\.gradle\caches\modules-2\files-2.1\commons-logging\commons-logging\1.1.3\f6f66e966c70a83ffbdb6f17a0919eaf7c8aca7f\commons-logging-1.1.3.jar | |
[00:26:58] [Client thread/TRACE] [FML]: Skipping known library file C:\Users\Nessi\.gradle\caches\modules-2\files-2.1\org.apache.httpcomponents\httpcore\4.3.2\31fbbff1ddbf98f3aa7377c94d33b0447c646b6e\httpcore-4.3.2.jar | |
[00:26:58] [Client thread/TRACE] [FML]: Skipping known library file C:\Users\Nessi\.gradle\caches\modules-2\files-2.1\it.unimi.dsi\fastutil\7.1.0\9835253257524c1be7ab50c057aa2d418fb72082\fastutil-7.1.0.jar | |
[00:26:58] [Client thread/TRACE] [FML]: Skipping known library file C:\Users\Nessi\.gradle\caches\modules-2\files-2.1\org.apache.logging.log4j\log4j-core\2.8.1\4ac28ff2f1ddf05dae3043a190451e8c46b73c31\log4j-core-2.8.1.jar | |
[00:26:58] [Client thread/TRACE] [FML]: Skipping known library file C:\Users\Nessi\.gradle\caches\modules-2\files-2.1\org.apache.logging.log4j\log4j-api\2.8.1\e801d13612e22cad62a3f4f3fe7fdbe6334a8e72\log4j-api-2.8.1.jar | |
[00:26:58] [Client thread/TRACE] [FML]: Skipping known library file C:\Users\Nessi\.gradle\caches\modules-2\files-2.1\org.jline\jline\3.5.1\51800e9d7a13608894a5a28eed0f5c7fa2f300fb\jline-3.5.1.jar | |
[00:26:58] [Client thread/DEBUG] [FML]: Found a minecraft related file at C:\Users\Nessi\.gradle\caches\modules-2\files-2.1\org.ow2.asm\asm-debug-all\5.2\3354e11e2b34215f06dab629ab88e06aca477c19\asm-debug-all-5.2.jar, examining for mod candidates | |
[00:26:58] [Client thread/TRACE] [FML]: Skipping known library file C:\Users\Nessi\.gradle\caches\modules-2\files-2.1\com.typesafe.akka\akka-actor_2.11\2.3.3\ed62e9fc709ca0f2ff1a3220daa8b70a2870078e\akka-actor_2.11-2.3.3.jar | |
[00:26:58] [Client thread/TRACE] [FML]: Skipping known library file C:\Users\Nessi\.gradle\caches\modules-2\files-2.1\com.typesafe\config\1.2.1\f771f71fdae3df231bcd54d5ca2d57f0bf93f467\config-1.2.1.jar | |
[00:26:58] [Client thread/TRACE] [FML]: Skipping known library file C:\Users\Nessi\.gradle\caches\modules-2\files-2.1\org.scala-lang\scala-actors-migration_2.11\1.1.0\dfa8bc42b181d5b9f1a5dd147f8ae308b893eb6f\scala-actors-migration_2.11-1.1.0.jar | |
[00:26:58] [Client thread/TRACE] [FML]: Skipping known library file C:\Users\Nessi\.gradle\caches\modules-2\files-2.1\org.scala-lang.plugins\scala-continuations-plugin_2.11.1\1.0.2\f361a3283452c57fa30c1ee69448995de23c60f7\scala-continuations-plugin_2.11.1-1.0.2.jar | |
[00:26:58] [Client thread/TRACE] [FML]: Skipping known library file C:\Users\Nessi\.gradle\caches\modules-2\files-2.1\org.scala-lang\scala-compiler\2.11.1\56ea2e6c025e0821f28d73ca271218b8dd04926a\scala-compiler-2.11.1.jar | |
[00:26:58] [Client thread/TRACE] [FML]: Skipping known library file C:\Users\Nessi\.gradle\caches\modules-2\files-2.1\org.scala-lang.plugins\scala-continuations-library_2.11\1.0.2\e517c53a7e9acd6b1668c5a35eccbaa3bab9aac\scala-continuations-library_2.11-1.0.2.jar | |
[00:26:58] [Client thread/TRACE] [FML]: Skipping known library file C:\Users\Nessi\.gradle\caches\modules-2\files-2.1\org.scala-lang.modules\scala-parser-combinators_2.11\1.0.1\f05d7345bf5a58924f2837c6c1f4d73a938e1ff0\scala-parser-combinators_2.11-1.0.1.jar | |
[00:26:58] [Client thread/TRACE] [FML]: Skipping known library file C:\Users\Nessi\.gradle\caches\modules-2\files-2.1\org.scala-lang\scala-reflect\2.11.1\6580347e61cc7f8e802941e7fde40fa83b8badeb\scala-reflect-2.11.1.jar | |
[00:26:58] [Client thread/TRACE] [FML]: Skipping known library file C:\Users\Nessi\.gradle\caches\modules-2\files-2.1\org.scala-lang.modules\scala-swing_2.11\1.0.1\b1cdd92bd47b1e1837139c1c53020e86bb9112ae\scala-swing_2.11-1.0.1.jar | |
[00:26:58] [Client thread/TRACE] [FML]: Skipping known library file C:\Users\Nessi\.gradle\caches\modules-2\files-2.1\org.scala-lang.modules\scala-xml_2.11\1.0.2\820fbca7e524b530fdadc594c39d49a21ea0337e\scala-xml_2.11-1.0.2.jar | |
[00:26:58] [Client thread/TRACE] [FML]: Skipping known library file C:\Users\Nessi\.gradle\caches\modules-2\files-2.1\org.scala-lang\scala-library\2.11.1\e11da23da3eabab9f4777b9220e60d44c1aab6a\scala-library-2.11.1.jar | |
[00:26:58] [Client thread/TRACE] [FML]: Skipping known library file C:\Users\Nessi\.gradle\caches\modules-2\files-2.1\lzma\lzma\0.0.1\521616dc7487b42bef0e803bd2fa3faf668101d7\lzma-0.0.1.jar | |
[00:26:58] [Client thread/TRACE] [FML]: Skipping known library file C:\Users\Nessi\.gradle\caches\modules-2\files-2.1\net.sf.trove4j\trove4j\3.0.3\42ccaf4761f0dfdfa805c9e340d99a755907e2dd\trove4j-3.0.3.jar | |
[00:26:58] [Client thread/TRACE] [FML]: Skipping known library file C:\Users\Nessi\.gradle\caches\modules-2\files-2.1\com.paulscode\codecjorbis\20101023\c73b5636faf089d9f00e8732a829577de25237ee\codecjorbis-20101023.jar | |
[00:26:58] [Client thread/TRACE] [FML]: Skipping known library file C:\Users\Nessi\.gradle\caches\modules-2\files-2.1\com.paulscode\codecwav\20101023\12f031cfe88fef5c1dd36c563c0a3a69bd7261da\codecwav-20101023.jar | |
[00:26:58] [Client thread/TRACE] [FML]: Skipping known library file C:\Users\Nessi\.gradle\caches\modules-2\files-2.1\com.paulscode\libraryjavasound\20101123\5c5e304366f75f9eaa2e8cca546a1fb6109348b3\libraryjavasound-20101123.jar | |
[00:26:58] [Client thread/TRACE] [FML]: Skipping known library file C:\Users\Nessi\.gradle\caches\modules-2\files-2.1\com.paulscode\soundsystem\20120107\419c05fe9be71f792b2d76cfc9b67f1ed0fec7f6\soundsystem-20120107.jar | |
[00:26:58] [Client thread/TRACE] [FML]: Skipping known library file C:\Users\Nessi\.gradle\caches\modules-2\files-2.1\java3d\vecmath\1.5.2\79846ba34cbd89e2422d74d53752f993dcc2ccaf\vecmath-1.5.2.jar | |
[00:26:58] [Client thread/DEBUG] [FML]: Found a minecraft related file at C:\Users\Nessi\.gradle\caches\modules-2\files-2.1\ca.weblite\java-objc-bridge\1.0.0\6ef160c3133a78de015830860197602ca1c855d3\java-objc-bridge-1.0.0.jar, examining for mod candidates | |
[00:26:58] [Client thread/DEBUG] [FML]: Found a minecraft related file at C:\Users\Nessi\.gradle\caches\modules-2\files-2.1\org.codehaus.plexus\plexus-utils\3.1.0\60eecb6f15abdb1c653ad80abaac6fe188b3feaa\plexus-utils-3.1.0.jar, examining for mod candidates | |
[00:26:58] [Client thread/TRACE] [FML]: Skipping known library file C:\Users\Nessi\.gradle\caches\modules-2\files-2.1\org.lwjgl.lwjgl\lwjgl-platform\2.9.4-nightly-20150209\931074f46c795d2f7b30ed6395df5715cfd7675b\lwjgl-platform-2.9.4-nightly-20150209-natives-linux.jar | |
[00:26:58] [Client thread/TRACE] [FML]: Skipping known library file C:\Users\Nessi\.gradle\caches\modules-2\files-2.1\org.lwjgl.lwjgl\lwjgl-platform\2.9.4-nightly-20150209\bcab850f8f487c3f4c4dbabde778bb82bd1a40ed\lwjgl-platform-2.9.4-nightly-20150209-natives-osx.jar | |
[00:26:58] [Client thread/TRACE] [FML]: Skipping known library file C:\Users\Nessi\.gradle\caches\modules-2\files-2.1\org.lwjgl.lwjgl\lwjgl-platform\2.9.4-nightly-20150209\b84d5102b9dbfabfeb5e43c7e2828d98a7fc80e0\lwjgl-platform-2.9.4-nightly-20150209-natives-windows.jar | |
[00:26:58] [Client thread/TRACE] [FML]: Skipping known library file C:\Users\Nessi\.gradle\caches\modules-2\files-2.1\net.java.jinput\jinput-platform\2.0.5\7ff832a6eb9ab6a767f1ade2b548092d0fa64795\jinput-platform-2.0.5-natives-linux.jar | |
[00:26:58] [Client thread/TRACE] [FML]: Skipping known library file C:\Users\Nessi\.gradle\caches\modules-2\files-2.1\net.java.jinput\jinput-platform\2.0.5\53f9c919f34d2ca9de8c51fc4e1e8282029a9232\jinput-platform-2.0.5-natives-osx.jar | |
[00:26:58] [Client thread/TRACE] [FML]: Skipping known library file C:\Users\Nessi\.gradle\caches\modules-2\files-2.1\net.java.jinput\jinput-platform\2.0.5\385ee093e01f587f30ee1c8a2ee7d408fd732e16\jinput-platform-2.0.5-natives-windows.jar | |
[00:26:58] [Client thread/TRACE] [FML]: Skipping known library file C:\Users\Nessi\.gradle\caches\modules-2\files-2.1\org.scala-lang\scala-actors\2.11.0\8ccfb6541de179bb1c4d45cf414acee069b7f78b\scala-actors-2.11.0.jar | |
[00:26:58] [Client thread/DEBUG] [FML]: Found a minecraft related directory at C:\Users\Nessi\.gradle\caches\minecraft\net\minecraftforge\forge\1.12.2-14.23.5.2847\start, examining for mod candidates | |
[00:26:58] [Client thread/DEBUG] [FML]: Found a minecraft related file at C:\Program Files\JetBrains\IntelliJ IDEA 2019.3\lib\idea_rt.jar, examining for mod candidates | |
[00:26:58] [Client thread/DEBUG] [FML]: Minecraft jar mods loaded successfully | |
[00:26:58] [Client thread/INFO] [FML]: Searching C:\Users\Nessi\IdeaProjects\CutelessMod\run\.\mods for mods | |
[00:26:58] [Client thread/DEBUG] [FML]: Examining directory main for potential mods | |
[00:26:58] [Client thread/DEBUG] [FML]: No mcmod.info file found in directory main | |
[00:26:58] [Client thread/TRACE] [FML]: Recursing into package net | |
[00:26:58] [Client thread/TRACE] [FML]: Recursing into package net/dugged | |
[00:26:58] [Client thread/TRACE] [FML]: Recursing into package net/dugged/cutelessmod | |
[00:26:58] [Client thread/TRACE] [FML]: Recursing into package net/dugged/cutelessmod/chunk_display | |
[00:26:58] [Client thread/TRACE] [FML]: Recursing into package net/dugged/cutelessmod/chunk_display/gui | |
[00:26:58] [Client thread/TRACE] [FML]: Recursing into package net/dugged/cutelessmod/chunk_display/mixins | |
[00:26:58] [Client thread/TRACE] [FML]: Recursing into package net/dugged/cutelessmod/clientcommands | |
[00:26:58] [Client thread/TRACE] [FML]: Recursing into package net/dugged/cutelessmod/clientcommands/mixins | |
[00:26:58] [Client thread/TRACE] [FML]: Recursing into package net/dugged/cutelessmod/clientcommands/worldedit | |
[00:26:58] [Client thread/DEBUG] [FML]: Identified a mod of type Lnet/minecraftforge/fml/common/Mod; (net.dugged.cutelessmod.CutelessMod) - loading | |
[00:26:58] [Client thread/TRACE] [FML]: Parsed dependency info for cutelessmod: Requirements: [] After:[] Before:[] | |
[00:26:58] [Client thread/TRACE] [FML]: Recursing into package net/dugged/cutelessmod/mixins | |
[00:26:58] [Client thread/DEBUG] [FML]: Examining directory main for potential mods | |
[00:26:58] [Client thread/DEBUG] [FML]: Found an mcmod.info file in directory main | |
[00:26:58] [Client thread/TRACE] [FML]: Recursing into package assets | |
[00:26:58] [Client thread/TRACE] [FML]: Recursing into package assets/cutelessmod | |
[00:26:58] [Client thread/TRACE] [FML]: Recursing into package assets/cutelessmod/lang | |
[00:26:58] [Client thread/TRACE] [FML]: Recursing into package assets/cutelessmod/textures | |
[00:26:58] [Client thread/TRACE] [FML]: Recursing into package assets/minecraft | |
[00:26:58] [Client thread/TRACE] [FML]: Recursing into package assets/minecraft/blockstates | |
[00:26:58] [Client thread/TRACE] [FML]: Recursing into package assets/minecraft/models | |
[00:26:58] [Client thread/TRACE] [FML]: Recursing into package assets/minecraft/models/block | |
[00:26:58] [Client thread/TRACE] [FML]: Recursing into package assets/minecraft/models/item | |
[00:26:58] [Client thread/TRACE] [FML]: Recursing into package assets/minecraft/textures | |
[00:26:58] [Client thread/TRACE] [FML]: Recursing into package assets/minecraft/textures/entity | |
[00:26:58] [Client thread/TRACE] [FML]: Recursing into package assets/minecraft/textures/entity/chest | |
[00:26:58] [Client thread/DEBUG] [FML]: Examining file compileDummy.jar for potential mods | |
[00:26:58] [Client thread/DEBUG] [FML]: The mod container compileDummy.jar appears to be missing an mcmod.info file | |
[00:26:58] [Client thread/DEBUG] [FML]: Examining file providedDummy.jar for potential mods | |
[00:26:58] [Client thread/DEBUG] [FML]: The mod container providedDummy.jar appears to be missing an mcmod.info file | |
[00:26:58] [Client thread/DEBUG] [FML]: Examining file mixin-0.8.4-SNAPSHOT.jar for potential mods | |
[00:26:58] [Client thread/DEBUG] [FML]: The mod container mixin-0.8.4-SNAPSHOT.jar appears to be missing an mcmod.info file | |
[00:26:58] [Client thread/ERROR] [FML]: Unable to read a class file correctly | |
java.lang.IllegalArgumentException: null | |
at org.objectweb.asm.ClassReader.<init>(ClassReader.java:185) ~[asm-debug-all-5.2.jar:5.2] | |
at org.objectweb.asm.ClassReader.<init>(ClassReader.java:168) ~[asm-debug-all-5.2.jar:5.2] | |
at org.objectweb.asm.ClassReader.<init>(ClassReader.java:439) ~[asm-debug-all-5.2.jar:5.2] | |
at net.minecraftforge.fml.common.discovery.asm.ASMModParser.<init>(ASMModParser.java:57) [ASMModParser.class:?] | |
at net.minecraftforge.fml.common.discovery.JarDiscoverer.findClassesASM(JarDiscoverer.java:102) [JarDiscoverer.class:?] | |
at net.minecraftforge.fml.common.discovery.JarDiscoverer.discover(JarDiscoverer.java:77) [JarDiscoverer.class:?] | |
at net.minecraftforge.fml.common.discovery.ContainerType.findMods(ContainerType.java:47) [ContainerType.class:?] | |
at net.minecraftforge.fml.common.discovery.ModCandidate.explore(ModCandidate.java:74) [ModCandidate.class:?] | |
at net.minecraftforge.fml.common.discovery.ModDiscoverer.identifyMods(ModDiscoverer.java:93) [ModDiscoverer.class:?] | |
at net.minecraftforge.fml.common.Loader.identifyMods(Loader.java:427) [Loader.class:?] | |
at net.minecraftforge.fml.common.Loader.loadMods(Loader.java:568) [Loader.class:?] | |
at net.minecraftforge.fml.client.FMLClientHandler.beginMinecraftLoading(FMLClientHandler.java:232) [FMLClientHandler.class:?] | |
at net.minecraft.client.Minecraft.init(Minecraft.java:514) [Minecraft.class:?] | |
at net.minecraft.client.Minecraft.run(Minecraft.java:422) [Minecraft.class:?] | |
at net.minecraft.client.main.Main.main(Main.java:118) [Main.class:?] | |
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_302] | |
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[?:1.8.0_302] | |
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.8.0_302] | |
at java.lang.reflect.Method.invoke(Method.java:498) ~[?:1.8.0_302] | |
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_302] | |
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[?:1.8.0_302] | |
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.8.0_302] | |
at java.lang.reflect.Method.invoke(Method.java:498) ~[?:1.8.0_302] | |
at net.minecraftforge.gradle.GradleStartCommon.launch(GradleStartCommon.java:97) [start/:?] | |
at GradleStart.main(GradleStart.java:25) [start/:?] | |
[00:26:59] [Client thread/ERROR] [FML]: There was a problem reading the entry org/spongepowered/asm/launch/MixinLaunchPlugin.class in the jar C:\Users\Nessi\.gradle\caches\modules-2\files-2.1\org.spongepowered\mixin\0.8.4-SNAPSHOT\2f8b0718d390be521dff1d9dcf44d1e3e8314773\mixin-0.8.4-SNAPSHOT.jar - probably a corrupt zip | |
net.minecraftforge.fml.common.LoaderException: java.lang.IllegalArgumentException | |
at net.minecraftforge.fml.common.discovery.asm.ASMModParser.<init>(ASMModParser.java:63) ~[ASMModParser.class:?] | |
at net.minecraftforge.fml.common.discovery.JarDiscoverer.findClassesASM(JarDiscoverer.java:102) [JarDiscoverer.class:?] | |
at net.minecraftforge.fml.common.discovery.JarDiscoverer.discover(JarDiscoverer.java:77) [JarDiscoverer.class:?] | |
at net.minecraftforge.fml.common.discovery.ContainerType.findMods(ContainerType.java:47) [ContainerType.class:?] | |
at net.minecraftforge.fml.common.discovery.ModCandidate.explore(ModCandidate.java:74) [ModCandidate.class:?] | |
at net.minecraftforge.fml.common.discovery.ModDiscoverer.identifyMods(ModDiscoverer.java:93) [ModDiscoverer.class:?] | |
at net.minecraftforge.fml.common.Loader.identifyMods(Loader.java:427) [Loader.class:?] | |
at net.minecraftforge.fml.common.Loader.loadMods(Loader.java:568) [Loader.class:?] | |
at net.minecraftforge.fml.client.FMLClientHandler.beginMinecraftLoading(FMLClientHandler.java:232) [FMLClientHandler.class:?] | |
at net.minecraft.client.Minecraft.init(Minecraft.java:514) [Minecraft.class:?] | |
at net.minecraft.client.Minecraft.run(Minecraft.java:422) [Minecraft.class:?] | |
at net.minecraft.client.main.Main.main(Main.java:118) [Main.class:?] | |
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_302] | |
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[?:1.8.0_302] | |
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.8.0_302] | |
at java.lang.reflect.Method.invoke(Method.java:498) ~[?:1.8.0_302] | |
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_302] | |
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[?:1.8.0_302] | |
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.8.0_302] | |
at java.lang.reflect.Method.invoke(Method.java:498) ~[?:1.8.0_302] | |
at net.minecraftforge.gradle.GradleStartCommon.launch(GradleStartCommon.java:97) [start/:?] | |
at GradleStart.main(GradleStart.java:25) [start/:?] | |
Caused by: java.lang.IllegalArgumentException | |
at org.objectweb.asm.ClassReader.<init>(ClassReader.java:185) ~[asm-debug-all-5.2.jar:5.2] | |
at org.objectweb.asm.ClassReader.<init>(ClassReader.java:168) ~[asm-debug-all-5.2.jar:5.2] | |
at org.objectweb.asm.ClassReader.<init>(ClassReader.java:439) ~[asm-debug-all-5.2.jar:5.2] | |
at net.minecraftforge.fml.common.discovery.asm.ASMModParser.<init>(ASMModParser.java:57) ~[ASMModParser.class:?] | |
... 23 more | |
[00:26:59] [Client thread/WARN] [FML]: Zip file mixin-0.8.4-SNAPSHOT.jar failed to read properly, it will be ignored | |
net.minecraftforge.fml.common.LoaderException: java.lang.IllegalArgumentException | |
at net.minecraftforge.fml.common.discovery.asm.ASMModParser.<init>(ASMModParser.java:63) ~[ASMModParser.class:?] | |
at net.minecraftforge.fml.common.discovery.JarDiscoverer.findClassesASM(JarDiscoverer.java:102) ~[JarDiscoverer.class:?] | |
at net.minecraftforge.fml.common.discovery.JarDiscoverer.discover(JarDiscoverer.java:77) [JarDiscoverer.class:?] | |
at net.minecraftforge.fml.common.discovery.ContainerType.findMods(ContainerType.java:47) [ContainerType.class:?] | |
at net.minecraftforge.fml.common.discovery.ModCandidate.explore(ModCandidate.java:74) [ModCandidate.class:?] | |
at net.minecraftforge.fml.common.discovery.ModDiscoverer.identifyMods(ModDiscoverer.java:93) [ModDiscoverer.class:?] | |
at net.minecraftforge.fml.common.Loader.identifyMods(Loader.java:427) [Loader.class:?] | |
at net.minecraftforge.fml.common.Loader.loadMods(Loader.java:568) [Loader.class:?] | |
at net.minecraftforge.fml.client.FMLClientHandler.beginMinecraftLoading(FMLClientHandler.java:232) [FMLClientHandler.class:?] | |
at net.minecraft.client.Minecraft.init(Minecraft.java:514) [Minecraft.class:?] | |
at net.minecraft.client.Minecraft.run(Minecraft.java:422) [Minecraft.class:?] | |
at net.minecraft.client.main.Main.main(Main.java:118) [Main.class:?] | |
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_302] | |
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[?:1.8.0_302] | |
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.8.0_302] | |
at java.lang.reflect.Method.invoke(Method.java:498) ~[?:1.8.0_302] | |
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_302] | |
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[?:1.8.0_302] | |
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.8.0_302] | |
at java.lang.reflect.Method.invoke(Method.java:498) ~[?:1.8.0_302] | |
at net.minecraftforge.gradle.GradleStartCommon.launch(GradleStartCommon.java:97) [start/:?] | |
at GradleStart.main(GradleStart.java:25) [start/:?] | |
Caused by: java.lang.IllegalArgumentException | |
at org.objectweb.asm.ClassReader.<init>(ClassReader.java:185) ~[asm-debug-all-5.2.jar:5.2] | |
at org.objectweb.asm.ClassReader.<init>(ClassReader.java:168) ~[asm-debug-all-5.2.jar:5.2] | |
at org.objectweb.asm.ClassReader.<init>(ClassReader.java:439) ~[asm-debug-all-5.2.jar:5.2] | |
at net.minecraftforge.fml.common.discovery.asm.ASMModParser.<init>(ASMModParser.java:57) ~[ASMModParser.class:?] | |
... 23 more | |
[00:26:59] [Client thread/DEBUG] [FML]: Examining file forgeSrc-1.12.2-14.23.5.2847.jar for potential mods | |
[00:26:59] [Client thread/DEBUG] [FML]: The mod container forgeSrc-1.12.2-14.23.5.2847.jar appears to be missing an mcmod.info file | |
[00:27:00] [Client thread/DEBUG] [FML]: Examining file jsr305-3.0.1.jar for potential mods | |
[00:27:00] [Client thread/DEBUG] [FML]: The mod container jsr305-3.0.1.jar appears to be missing an mcmod.info file | |
[00:27:00] [Client thread/DEBUG] [FML]: Examining file patchy-1.2.3.jar for potential mods | |
[00:27:00] [Client thread/DEBUG] [FML]: The mod container patchy-1.2.3.jar appears to be missing an mcmod.info file | |
[00:27:00] [Client thread/DEBUG] [FML]: Examining file text2speech-1.10.3.jar for potential mods | |
[00:27:00] [Client thread/DEBUG] [FML]: The mod container text2speech-1.10.3.jar appears to be missing an mcmod.info file | |
[00:27:00] [Client thread/DEBUG] [FML]: Examining file maven-artifact-3.5.3.jar for potential mods | |
[00:27:00] [Client thread/DEBUG] [FML]: The mod container maven-artifact-3.5.3.jar appears to be missing an mcmod.info file | |
[00:27:00] [Thread-3/INFO] [FML]: Using sync timing. 200 frames of Display.update took 299304700 nanos | |
[00:27:00] [Client thread/DEBUG] [FML]: Examining file asm-debug-all-5.2.jar for potential mods | |
[00:27:00] [Client thread/DEBUG] [FML]: The mod container asm-debug-all-5.2.jar appears to be missing an mcmod.info file | |
[00:27:00] [Client thread/DEBUG] [FML]: Examining file java-objc-bridge-1.0.0.jar for potential mods | |
[00:27:00] [Client thread/DEBUG] [FML]: The mod container java-objc-bridge-1.0.0.jar appears to be missing an mcmod.info file | |
[00:27:00] [Client thread/DEBUG] [FML]: Examining file plexus-utils-3.1.0.jar for potential mods | |
[00:27:00] [Client thread/DEBUG] [FML]: The mod container plexus-utils-3.1.0.jar appears to be missing an mcmod.info file | |
[00:27:00] [Client thread/DEBUG] [FML]: Examining directory start for potential mods | |
[00:27:00] [Client thread/DEBUG] [FML]: No mcmod.info file found in directory start | |
[00:27:00] [Client thread/TRACE] [FML]: Recursing into package net | |
[00:27:00] [Client thread/TRACE] [FML]: Recursing into package net/minecraftforge | |
[00:27:00] [Client thread/TRACE] [FML]: Recursing into package net/minecraftforge/gradle | |
[00:27:00] [Client thread/TRACE] [FML]: Recursing into package net/minecraftforge/gradle/tweakers | |
[00:27:00] [Client thread/DEBUG] [FML]: Examining file idea_rt.jar for potential mods | |
[00:27:00] [Client thread/DEBUG] [FML]: The mod container idea_rt.jar appears to be missing an mcmod.info file | |
[00:27:00] [Client thread/INFO] [FML]: Forge Mod Loader has identified 5 mods to load | |
[00:27:00] [Client thread/TRACE] [FML]: Received a system property request '' | |
[00:27:00] [Client thread/TRACE] [FML]: System property request managing the state of 0 mods | |
[00:27:00] [Client thread/DEBUG] [FML]: After merging, found state information for 0 mods | |
[00:27:00] [Client thread/DEBUG] [FML]: Mod Forge Mod Loader is missing a pack.mcmeta file, substituting a dummy one | |
[00:27:00] [Client thread/DEBUG] [FML]: Mod Minecraft Forge is missing a pack.mcmeta file, substituting a dummy one | |
[00:27:00] [Client thread/DEBUG] [FML]: Enabling mod cutelessmod | |
[00:27:00] [Client thread/DEBUG] [FML]: Mod CutelessMod is missing a pack.mcmeta file, substituting a dummy one | |
[00:27:00] [Client thread/TRACE] [FML]: Verifying mod requirements are satisfied | |
[00:27:00] [Client thread/TRACE] [FML]: All mod requirements are satisfied | |
[00:27:00] [Client thread/TRACE] [FML]: Sorting mods into an ordered list | |
[00:27:00] [Client thread/TRACE] [FML]: Mod sorting completed successfully | |
[00:27:00] [Client thread/DEBUG] [FML]: Mod sorting data | |
[00:27:00] [Client thread/DEBUG] [FML]: cutelessmod(CutelessMod:0.3.0): main () | |
[00:27:00] [Client thread/DEBUG] [FML]: Loading @Config anotation data | |
[00:27:00] [Client thread/TRACE] [FML]: Sending event FMLConstructionEvent to mod minecraft | |
[00:27:00] [Client thread/TRACE] [FML]: Sent event FMLConstructionEvent to mod minecraft | |
[00:27:00] [Client thread/DEBUG] [FML]: Bar Step: Construction - Minecraft took 0.008s | |
[00:27:00] [Client thread/TRACE] [FML]: Sending event FMLConstructionEvent to mod mcp | |
[00:27:00] [Client thread/TRACE] [FML]: Sent event FMLConstructionEvent to mod mcp | |
[00:27:00] [Client thread/DEBUG] [FML]: Bar Step: Construction - Minecraft Coder Pack took 0.000s | |
[00:27:00] [Client thread/TRACE] [FML]: Sending event FMLConstructionEvent to mod FML | |
[00:27:01] [Client thread/TRACE] [FML]: Mod FML is using network checker : Invoking method checkModLists | |
[00:27:01] [Client thread/TRACE] [FML]: Testing mod FML to verify it accepts its own version in a remote connection | |
[00:27:01] [Client thread/TRACE] [FML]: The mod FML accepts its own version (8.0.99.99) | |
[00:27:01] [Client thread/INFO] [FML]: Attempting connection with missing mods [minecraft, mcp, FML, forge, cutelessmod] at CLIENT | |
[00:27:01] [Client thread/INFO] [FML]: Attempting connection with missing mods [minecraft, mcp, FML, forge, cutelessmod] at SERVER | |
[00:27:01] [Client thread/INFO] [mixin]: Mixing MixinFMLIndexedMessageToMessageCodec from mixins.cutelessmod.chunk_display.json into net.minecraftforge.fml.common.network.FMLIndexedMessageToMessageCodec | |
[00:27:01] [Client thread/TRACE] [mixin]: Added class metadata for io/netty/handler/codec/MessageToMessageCodec to metadata cache | |
[00:27:01] [Client thread/TRACE] [mixin]: Added class metadata for io/netty/channel/ChannelDuplexHandler to metadata cache | |
[00:27:01] [Client thread/TRACE] [mixin]: Added class metadata for io/netty/channel/ChannelInboundHandlerAdapter to metadata cache | |
[00:27:01] [Client thread/TRACE] [mixin]: Added class metadata for io/netty/channel/ChannelHandlerAdapter to metadata cache | |
[00:27:01] [Client thread/TRACE] [mixin]: Added class metadata for io/netty/channel/ChannelHandler to metadata cache | |
[00:27:01] [Client thread/TRACE] [mixin]: Added class metadata for io/netty/channel/ChannelInboundHandler to metadata cache | |
[00:27:01] [Client thread/TRACE] [mixin]: Added class metadata for io/netty/channel/ChannelOutboundHandler to metadata cache | |
[00:27:01] [Client thread/TRACE] [mixin]: Added class metadata for net/minecraftforge/fml/common/network/internal/FMLProxyPacket to metadata cache | |
[00:27:01] [Client thread/TRACE] [mixin]: Added class metadata for io/netty/buffer/ByteBuf to metadata cache | |
[00:27:01] [Client thread/TRACE] [mixin]: Added class metadata for net/minecraftforge/fml/common/FMLLog to metadata cache | |
[00:27:01] [Client thread/TRACE] [mixin]: Added class metadata for io/netty/channel/ChannelHandlerContext to metadata cache | |
[00:27:01] [Client thread/TRACE] [mixin]: Added class metadata for net/minecraftforge/fml/common/network/NetworkRegistry to metadata cache | |
[00:27:01] [Client thread/TRACE] [mixin]: Added class metadata for io/netty/channel/Channel to metadata cache | |
[00:27:01] [Client thread/TRACE] [mixin]: Added class metadata for io/netty/util/AttributeMap to metadata cache | |
[00:27:01] [Client thread/TRACE] [mixin]: Added class metadata for org/apache/logging/log4j/Logger to metadata cache | |
[00:27:01] [Client thread/TRACE] [mixin]: Added class metadata for io/netty/util/Attribute to metadata cache | |
[00:27:01] [Client thread/TRACE] [mixin]: Added class metadata for java/lang/ref/WeakReference to metadata cache | |
[00:27:01] [Client thread/TRACE] [mixin]: Added class metadata for java/lang/ref/Reference to metadata cache | |
[00:27:01] [Client thread/TRACE] [mixin]: Added class metadata for java/lang/ThreadLocal to metadata cache | |
[00:27:01] [Client thread/TRACE] [mixin]: Added class metadata for io/netty/util/ReferenceCounted to metadata cache | |
[00:27:01] [Client thread/TRACE] [mixin]: Added class metadata for io/netty/buffer/Unpooled to metadata cache | |
[00:27:01] [Client thread/TRACE] [mixin]: Added class metadata for net/minecraft/network/PacketBuffer to metadata cache | |
[00:27:01] [Client thread/TRACE] [mixin]: Added class metadata for net/dugged/cutelessmod/chunk_display/CarpetPacket to metadata cache | |
[00:27:01] [Client thread/TRACE] [FML]: Sent event FMLConstructionEvent to mod FML | |
[00:27:01] [Client thread/DEBUG] [FML]: Bar Step: Construction - Forge Mod Loader took 0.779s | |
[00:27:01] [Client thread/TRACE] [FML]: Sending event FMLConstructionEvent to mod forge | |
[00:27:01] [Client thread/DEBUG] [forge]: Loading Vanilla annotations: null | |
[00:27:01] [Client thread/DEBUG] [forge]: Preloading CrashReport Classes | |
[00:27:01] [Client thread/DEBUG] [forge]: net/minecraft/client/Minecraft$10 | |
[00:27:01] [Client thread/DEBUG] [forge]: net/minecraft/client/Minecraft$11 | |
[00:27:01] [Client thread/DEBUG] [forge]: net/minecraft/client/Minecraft$12 | |
[00:27:01] [Client thread/DEBUG] [forge]: net/minecraft/client/Minecraft$13 | |
[00:27:01] [Client thread/DEBUG] [forge]: net/minecraft/client/Minecraft$14 | |
[00:27:01] [Client thread/DEBUG] [forge]: net/minecraft/client/Minecraft$2 | |
[00:27:01] [Client thread/DEBUG] [forge]: net/minecraft/client/Minecraft$3 | |
[00:27:01] [Client thread/DEBUG] [forge]: net/minecraft/client/Minecraft$4 | |
[00:27:01] [Client thread/DEBUG] [forge]: net/minecraft/client/Minecraft$5 | |
[00:27:01] [Client thread/DEBUG] [forge]: net/minecraft/client/Minecraft$6 | |
[00:27:01] [Client thread/DEBUG] [forge]: net/minecraft/client/Minecraft$7 | |
[00:27:01] [Client thread/DEBUG] [forge]: net/minecraft/client/Minecraft$8 | |
[00:27:01] [Client thread/DEBUG] [forge]: net/minecraft/client/Minecraft$9 | |
[00:27:01] [Client thread/DEBUG] [forge]: net/minecraft/client/multiplayer/WorldClient$1 | |
[00:27:01] [Client thread/DEBUG] [forge]: net/minecraft/client/multiplayer/WorldClient$2 | |
[00:27:01] [Client thread/DEBUG] [forge]: net/minecraft/client/multiplayer/WorldClient$3 | |
[00:27:01] [Client thread/DEBUG] [forge]: net/minecraft/client/multiplayer/WorldClient$4 | |
[00:27:01] [Client thread/DEBUG] [forge]: net/minecraft/client/particle/ParticleManager$1 | |
[00:27:01] [Client thread/DEBUG] [forge]: net/minecraft/client/particle/ParticleManager$2 | |
[00:27:01] [Client thread/DEBUG] [forge]: net/minecraft/client/particle/ParticleManager$3 | |
[00:27:01] [Client thread/DEBUG] [forge]: net/minecraft/client/particle/ParticleManager$4 | |
[00:27:01] [Client thread/DEBUG] [forge]: net/minecraft/client/renderer/EntityRenderer$2 | |
[00:27:01] [Client thread/DEBUG] [forge]: net/minecraft/client/renderer/EntityRenderer$3 | |
[00:27:01] [Client thread/DEBUG] [forge]: net/minecraft/client/renderer/EntityRenderer$4 | |
[00:27:01] [Client thread/DEBUG] [forge]: net/minecraft/client/renderer/RenderGlobal$1 | |
[00:27:01] [Client thread/DEBUG] [forge]: net/minecraft/client/renderer/RenderItem$1 | |
[00:27:01] [Client thread/DEBUG] [forge]: net/minecraft/client/renderer/RenderItem$2 | |
[00:27:01] [Client thread/DEBUG] [forge]: net/minecraft/client/renderer/RenderItem$3 | |
[00:27:01] [Client thread/DEBUG] [forge]: net/minecraft/client/renderer/RenderItem$4 | |
[00:27:01] [Client thread/DEBUG] [forge]: net/minecraft/client/renderer/texture/TextureAtlasSprite$1 | |
[00:27:01] [Client thread/DEBUG] [forge]: net/minecraft/client/renderer/texture/TextureManager$1 | |
[00:27:01] [Client thread/DEBUG] [forge]: net/minecraft/client/renderer/texture/TextureMap$1 | |
[00:27:01] [Client thread/DEBUG] [forge]: net/minecraft/client/renderer/texture/TextureMap$2 | |
[00:27:01] [Client thread/DEBUG] [forge]: net/minecraft/client/renderer/texture/TextureMap$3 | |
[00:27:01] [Client thread/DEBUG] [forge]: net/minecraft/crash/CrashReport$1 | |
[00:27:01] [Client thread/DEBUG] [forge]: net/minecraft/crash/CrashReport$2 | |
[00:27:01] [Client thread/DEBUG] [forge]: net/minecraft/crash/CrashReport$3 | |
[00:27:01] [Client thread/DEBUG] [forge]: net/minecraft/crash/CrashReport$4 | |
[00:27:01] [Client thread/DEBUG] [forge]: net/minecraft/crash/CrashReport$5 | |
[00:27:01] [Client thread/DEBUG] [forge]: net/minecraft/crash/CrashReport$6 | |
[00:27:01] [Client thread/DEBUG] [forge]: net/minecraft/crash/CrashReport$7 | |
[00:27:01] [Client thread/DEBUG] [forge]: net/minecraft/crash/CrashReportCategory$1 | |
[00:27:01] [Client thread/DEBUG] [forge]: net/minecraft/crash/CrashReportCategory$2 | |
[00:27:01] [Client thread/DEBUG] [forge]: net/minecraft/crash/CrashReportCategory$3 | |
[00:27:01] [Client thread/DEBUG] [forge]: net/minecraft/crash/CrashReportCategory$4 | |
[00:27:01] [Client thread/DEBUG] [forge]: net/minecraft/crash/CrashReportCategory$5 | |
[00:27:01] [Client thread/DEBUG] [forge]: net/minecraft/entity/Entity$2 | |
[00:27:01] [Client thread/DEBUG] [forge]: net/minecraft/entity/Entity$3 | |
[00:27:01] [Client thread/DEBUG] [forge]: net/minecraft/entity/Entity$4 | |
[00:27:01] [Client thread/DEBUG] [forge]: net/minecraft/entity/Entity$5 | |
[00:27:01] [Client thread/DEBUG] [forge]: net/minecraft/entity/EntityTracker$1 | |
[00:27:01] [Client thread/DEBUG] [forge]: net/minecraft/entity/player/InventoryPlayer$1 | |
[00:27:01] [Client thread/DEBUG] [forge]: net/minecraft/nbt/NBTTagCompound$1 | |
[00:27:01] [Client thread/DEBUG] [forge]: net/minecraft/nbt/NBTTagCompound$2 | |
[00:27:01] [Client thread/DEBUG] [forge]: net/minecraft/network/NetHandlerPlayServer$3 | |
[00:27:01] [Client thread/DEBUG] [forge]: net/minecraft/network/NetworkSystem$6 | |
[00:27:01] [Client thread/DEBUG] [forge]: net/minecraft/server/MinecraftServer$2 | |
[00:27:01] [Client thread/DEBUG] [forge]: net/minecraft/server/MinecraftServer$3 | |
[00:27:01] [Client thread/DEBUG] [forge]: net/minecraft/server/dedicated/DedicatedServer$3 | |
[00:27:01] [Client thread/DEBUG] [forge]: net/minecraft/server/dedicated/DedicatedServer$4 | |
[00:27:01] [Client thread/DEBUG] [forge]: net/minecraft/server/integrated/IntegratedServer$1 | |
[00:27:01] [Client thread/DEBUG] [forge]: net/minecraft/server/integrated/IntegratedServer$2 | |
[00:27:01] [Client thread/DEBUG] [forge]: net/minecraft/tileentity/CommandBlockBaseLogic$1 | |
[00:27:01] [Client thread/DEBUG] [forge]: net/minecraft/tileentity/CommandBlockBaseLogic$2 | |
[00:27:01] [Client thread/DEBUG] [forge]: net/minecraft/tileentity/TileEntity$1 | |
[00:27:01] [Client thread/DEBUG] [forge]: net/minecraft/tileentity/TileEntity$2 | |
[00:27:01] [Client thread/DEBUG] [forge]: net/minecraft/tileentity/TileEntity$3 | |
[00:27:01] [Client thread/DEBUG] [forge]: net/minecraft/world/World$1 | |
[00:27:01] [Client thread/DEBUG] [forge]: net/minecraft/world/World$2 | |
[00:27:01] [Client thread/DEBUG] [forge]: net/minecraft/world/World$3 | |
[00:27:01] [Client thread/DEBUG] [forge]: net/minecraft/world/World$4 | |
[00:27:01] [Client thread/DEBUG] [forge]: net/minecraft/world/World$5 | |
[00:27:01] [Client thread/DEBUG] [forge]: net/minecraft/world/chunk/Chunk$1 | |
[00:27:01] [Client thread/DEBUG] [forge]: net/minecraft/world/gen/structure/MapGenStructure$1 | |
[00:27:01] [Client thread/DEBUG] [forge]: net/minecraft/world/gen/structure/MapGenStructure$2 | |
[00:27:01] [Client thread/DEBUG] [forge]: net/minecraft/world/gen/structure/MapGenStructure$3 | |
[00:27:01] [Client thread/DEBUG] [forge]: net/minecraft/world/storage/WorldInfo$10 | |
[00:27:01] [Client thread/DEBUG] [forge]: net/minecraft/world/storage/WorldInfo$2 | |
[00:27:01] [Client thread/DEBUG] [forge]: net/minecraft/world/storage/WorldInfo$3 | |
[00:27:01] [Client thread/DEBUG] [forge]: net/minecraft/world/storage/WorldInfo$4 | |
[00:27:01] [Client thread/DEBUG] [forge]: net/minecraft/world/storage/WorldInfo$5 | |
[00:27:01] [Client thread/DEBUG] [forge]: net/minecraft/world/storage/WorldInfo$6 | |
[00:27:01] [Client thread/DEBUG] [forge]: net/minecraft/world/storage/WorldInfo$7 | |
[00:27:01] [Client thread/DEBUG] [forge]: net/minecraft/world/storage/WorldInfo$8 | |
[00:27:01] [Client thread/DEBUG] [forge]: net/minecraft/world/storage/WorldInfo$9 | |
[00:27:01] [Client thread/DEBUG] [forge]: net/minecraftforge/common/util/TextTable | |
[00:27:01] [Client thread/DEBUG] [forge]: net/minecraftforge/common/util/TextTable$Alignment | |
[00:27:01] [Client thread/DEBUG] [forge]: net/minecraftforge/common/util/TextTable$Column | |
[00:27:01] [Client thread/DEBUG] [forge]: net/minecraftforge/common/util/TextTable$Row | |
[00:27:01] [Client thread/DEBUG] [forge]: net/minecraftforge/fml/client/SplashProgress$1 | |
[00:27:01] [Client thread/DEBUG] [forge]: net/minecraftforge/fml/common/FMLCommonHandler$1 | |
[00:27:01] [Client thread/DEBUG] [forge]: net/minecraftforge/fml/common/ICrashCallable | |
[00:27:01] [Client thread/DEBUG] [forge]: net/minecraftforge/fml/common/Loader$1 | |
[00:27:01] [Client thread/TRACE] [FML]: Mod forge is using network checker : No network checking performed | |
[00:27:01] [Client thread/TRACE] [FML]: Testing mod forge to verify it accepts its own version in a remote connection | |
[00:27:01] [Client thread/TRACE] [FML]: The mod forge accepts its own version (14.23.5.2847) | |
[00:27:01] [Client thread/DEBUG] [FML]: Attempting to inject @Config classes into forge for type INSTANCE | |
[00:27:01] [Client thread/TRACE] [FML]: Sent event FMLConstructionEvent to mod forge | |
[00:27:01] [Client thread/DEBUG] [FML]: Bar Step: Construction - Minecraft Forge took 0.189s | |
[00:27:01] [Client thread/TRACE] [FML]: Sending event FMLConstructionEvent to mod cutelessmod | |
[00:27:01] [Client thread/TRACE] [FML]: Mod cutelessmod is using network checker : Accepting version 0.3.0 | |
[00:27:01] [Client thread/TRACE] [FML]: Testing mod cutelessmod to verify it accepts its own version in a remote connection | |
[00:27:01] [Client thread/TRACE] [FML]: The mod cutelessmod accepts its own version (0.3.0) | |
[00:27:01] [Client thread/DEBUG] [FML]: Attempting to inject @SidedProxy classes into cutelessmod | |
[00:27:01] [Client thread/DEBUG] [FML]: Attempting to inject @EventBusSubscriber classes into the eventbus for cutelessmod | |
[00:27:01] [Client thread/DEBUG] [FML]: Attempting to inject @Config classes into cutelessmod for type INSTANCE | |
[00:27:02] [Client thread/TRACE] [FML]: Sent event FMLConstructionEvent to mod cutelessmod | |
[00:27:02] [Client thread/DEBUG] [FML]: Bar Step: Construction - CutelessMod took 0.182s | |
[00:27:02] [Client thread/DEBUG] [FML]: Bar Finished: Construction took 1.158s | |
[00:27:02] [Client thread/DEBUG] [FML]: Mod signature data | |
[00:27:02] [Client thread/DEBUG] [FML]: Valid Signatures: | |
[00:27:02] [Client thread/DEBUG] [FML]: Missing Signatures: | |
[00:27:02] [Client thread/DEBUG] [FML]: minecraft (Minecraft 1.12.2) minecraft.jar | |
[00:27:02] [Client thread/DEBUG] [FML]: mcp (Minecraft Coder Pack 9.42) minecraft.jar | |
[00:27:02] [Client thread/DEBUG] [FML]: FML (Forge Mod Loader 8.0.99.99) forgeSrc-1.12.2-14.23.5.2847.jar | |
[00:27:02] [Client thread/DEBUG] [FML]: forge (Minecraft Forge 14.23.5.2847) forgeSrc-1.12.2-14.23.5.2847.jar | |
[00:27:02] [Client thread/DEBUG] [FML]: cutelessmod (CutelessMod 0.3.0) main | |
[00:27:02] [Client thread/INFO] [net.minecraft.client.resources.SimpleReloadableResourceManager]: Reloading ResourceManager: Default, FMLFileResourcePack:Forge Mod Loader, FMLFileResourcePack:Minecraft Forge, FMLFileResourcePack:CutelessMod | |
[00:27:02] [Client thread/DEBUG] [FML]: Bar Step: Loading Resources - Default took 0.013s | |
[00:27:02] [Client thread/DEBUG] [FML]: Bar Step: Loading Resources - FMLFileResourcePack:Forge Mod Loader took 0.067s | |
[00:27:02] [Client thread/DEBUG] [FML]: Bar Step: Loading Resources - FMLFileResourcePack:Minecraft Forge took 0.015s | |
[00:27:02] [Client thread/DEBUG] [FML]: Bar Step: Loading Resources - FMLFileResourcePack:CutelessMod took 0.001s | |
[00:27:02] [Client thread/INFO] [mixin]: Mixing MixinRenderItem from mixins.cutelessmod.json into net.minecraft.client.renderer.RenderItem | |
[00:27:02] [Client thread/TRACE] [mixin]: Added class metadata for net/minecraft/init/Enchantments to metadata cache | |
[00:27:02] [Client thread/TRACE] [mixin]: Added class metadata for net/minecraft/enchantment/EnchantmentHelper to metadata cache | |
[00:27:02] [Client thread/TRACE] [mixin]: Added class metadata for net/minecraft/client/resources/IResourceManagerReloadListener to metadata cache | |
[00:27:02] [Client thread/TRACE] [mixin]: Added class metadata for net/minecraft/client/renderer/Tessellator to metadata cache | |
[00:27:02] [Client thread/INFO] [mixin]: Mixing MixinRenderGlobal from mixins.cutelessmod.json into net.minecraft.client.renderer.RenderGlobal | |
[00:27:02] [Client thread/TRACE] [mixin]: Added class metadata for net/minecraft/client/renderer/culling/ICamera to metadata cache | |
[00:27:02] [Client thread/TRACE] [mixin]: Added class metadata for java/util/Set to metadata cache | |
[00:27:02] [Client thread/TRACE] [mixin]: Added class metadata for net/minecraft/entity/EntityList to metadata cache | |
[00:27:02] [Client thread/TRACE] [mixin]: Added class metadata for java/util/HashMap to metadata cache | |
[00:27:02] [Client thread/TRACE] [mixin]: Added class metadata for java/util/AbstractMap to metadata cache | |
[00:27:02] [Client thread/TRACE] [mixin]: Added class metadata for net/minecraft/world/IWorldEventListener to metadata cache | |
[00:27:02] [Client thread/TRACE] [mixin]: Added class metadata for net/minecraft/client/renderer/DestroyBlockProgress to metadata cache | |
[00:27:02] [Client thread/TRACE] [mixin]: Added class metadata for net/minecraft/client/renderer/culling/Frustum to metadata cache | |
[00:27:02] [Client thread/INFO] [mixin]: Mixing ISoundHandler from mixins.cutelessmod.json into net.minecraft.client.audio.SoundHandler | |
[00:27:02] [Client thread/TRACE] [mixin]: Added class metadata for net/minecraft/client/audio/SoundHandler$2 to metadata cache | |
[00:27:02] [Client thread/TRACE] [mixin]: Added class metadata for net/minecraft/client/audio/Sound to metadata cache | |
[00:27:02] [Client thread/INFO] [mixin]: Mixing CMixinNoClip$MixinEntityRenderer from mixins.cutelessmod.json into net.minecraft.client.renderer.EntityRenderer | |
[00:27:02] [Client thread/INFO] [mixin]: Mixing MixinEntityRenderer from mixins.cutelessmod.json into net.minecraft.client.renderer.EntityRenderer | |
[00:27:02] [Client thread/TRACE] [mixin]: Added class metadata for net/dugged/cutelessmod/AreaSelectionRenderer to metadata cache | |
[00:27:02] [Client thread/INFO] [mixin]: Mixing MixinEntityRenderer from mixins.cutelessmod.clientcommands.json into net.minecraft.client.renderer.EntityRenderer | |
[00:27:02] [Client thread/TRACE] [mixin]: Added class metadata for net/dugged/cutelessmod/clientcommands/worldedit/WorldEditRenderer to metadata cache | |
[00:27:02] [Client thread/INFO] [mixin]: Mixing MixinEntityRenderer from mixins.cutelessmod.chunk_display.json into net.minecraft.client.renderer.EntityRenderer | |
[00:27:02] [Client thread/DEBUG] [FML]: Bar Finished: Reloading - LanguageManager took 0.348s | |
[00:27:02] [Client thread/DEBUG] [FML]: Bar Step: Loading Resources - Reloading listeners took 0.348s | |
[00:27:02] [Client thread/DEBUG] [FML]: Bar Finished: Loading Resources took 0.445s | |
[00:27:02] [Client thread/DEBUG] [FML]: Mod Forge Mod Loader is missing a pack.mcmeta file, substituting a dummy one | |
[00:27:02] [Client thread/DEBUG] [FML]: Mod Minecraft Forge is missing a pack.mcmeta file, substituting a dummy one | |
[00:27:02] [Client thread/DEBUG] [FML]: Mod CutelessMod is missing a pack.mcmeta file, substituting a dummy one | |
[00:27:02] [Client thread/INFO] [FML]: Processing ObjectHolder annotations | |
[00:27:02] [Client thread/INFO] [FML]: Found 1168 ObjectHolder annotations | |
[00:27:02] [Client thread/INFO] [FML]: Identifying ItemStackHolder annotations | |
[00:27:02] [Client thread/INFO] [FML]: Found 0 ItemStackHolder annotations | |
[00:27:02] [Client thread/TRACE] [FML]: Sending event FMLPreInitializationEvent to mod minecraft | |
[00:27:02] [Client thread/TRACE] [FML]: Sent event FMLPreInitializationEvent to mod minecraft | |
[00:27:02] [Client thread/DEBUG] [FML]: Bar Step: PreInitialization - Minecraft took 0.001s | |
[00:27:02] [Client thread/TRACE] [FML]: Sending event FMLPreInitializationEvent to mod mcp | |
[00:27:02] [Client thread/TRACE] [FML]: Sent event FMLPreInitializationEvent to mod mcp | |
[00:27:02] [Client thread/DEBUG] [FML]: Bar Step: PreInitialization - Minecraft Coder Pack took 0.000s | |
[00:27:02] [Client thread/TRACE] [FML]: Sending event FMLPreInitializationEvent to mod FML | |
[00:27:02] [Client thread/TRACE] [FML]: Sent event FMLPreInitializationEvent to mod FML | |
[00:27:02] [Client thread/DEBUG] [FML]: Bar Step: PreInitialization - Forge Mod Loader took 0.001s | |
[00:27:02] [Client thread/TRACE] [FML]: Sending event FMLPreInitializationEvent to mod forge | |
[00:27:02] [Client thread/INFO] [mixin]: Mixing MixinChunk from mixins.cutelessmod.json into net.minecraft.world.chunk.Chunk | |
[00:27:02] [Client thread/INFO] [FML]: Configured a dormant chunk cache size of 0 | |
[00:27:02] [Client thread/TRACE] [FML]: Sent event FMLPreInitializationEvent to mod forge | |
[00:27:02] [Client thread/DEBUG] [FML]: Bar Step: PreInitialization - Minecraft Forge took 0.183s | |
[00:27:02] [Client thread/TRACE] [FML]: Sending event FMLPreInitializationEvent to mod cutelessmod | |
[00:27:02] [Forge Version Check/INFO] [forge.VersionCheck]: [forge] Starting version check at http://files.minecraftforge.net/maven/net/minecraftforge/forge/promotions_slim.json | |
[00:27:02] [Client thread/TRACE] [FML]: Sent event FMLPreInitializationEvent to mod cutelessmod | |
[00:27:02] [Client thread/DEBUG] [FML]: Bar Step: PreInitialization - CutelessMod took 0.017s | |
[00:27:02] [Client thread/DEBUG] [FML]: Bar Finished: PreInitialization took 0.202s | |
[00:27:02] [Client thread/INFO] [FML]: Applying holder lookups | |
[00:27:02] [Client thread/INFO] [FML]: Holder lookups applied | |
[00:27:02] [Client thread/INFO] [FML]: Applying holder lookups | |
[00:27:02] [Client thread/INFO] [FML]: Holder lookups applied | |
[00:27:02] [Client thread/INFO] [FML]: Applying holder lookups | |
[00:27:02] [Client thread/INFO] [FML]: Holder lookups applied | |
[00:27:02] [Client thread/INFO] [FML]: Applying holder lookups | |
[00:27:02] [Client thread/INFO] [FML]: Holder lookups applied | |
[00:27:02] [Client thread/INFO] [FML]: Injecting itemstacks | |
[00:27:02] [Client thread/INFO] [FML]: Itemstack injection complete | |
[00:27:02] [Client thread/DEBUG] [FML]: Bar Finished: Loading Resource - TextureManager took 0.000s | |
[00:27:04] [Forge Version Check/DEBUG] [forge.VersionCheck]: [forge] Received version check data: | |
{ | |
"homepage": "https://files.minecraftforge.net/net/minecraftforge/forge/", | |
"promos": { | |
"1.1-latest": "1.3.4.29", | |
"1.2.3-latest": "1.4.1.64", | |
"1.2.4-latest": "2.0.0.68", | |
"1.2.5-latest": "3.4.9.171", | |
"1.3.2-latest": "4.3.5.318", | |
"1.4.0-latest": "5.0.0.326", | |
"1.4.1-latest": "6.0.0.329", | |
"1.4.2-latest": "6.0.1.355", | |
"1.4.3-latest": "6.2.1.358", | |
"1.4.4-latest": "6.3.0.378", | |
"1.4.5-latest": "6.4.2.448", | |
"1.4.6-latest": "6.5.0.489", | |
"1.4.7-latest": "6.6.2.534", | |
"1.5-latest": "7.7.0.598", | |
"1.5.1-latest": "7.7.2.682", | |
"1.5.2-latest": "7.8.1.738", | |
"1.5.2-recommended": "7.8.1.738", | |
"1.6.1-latest": "8.9.0.775", | |
"1.6.2-latest": "9.10.1.871", | |
"1.6.2-recommended": "9.10.1.871", | |
"1.6.3-latest": "9.11.0.878", | |
"1.6.4-latest": "9.11.1.1345", | |
"1.6.4-recommended": "9.11.1.1345", | |
"1.7.2-latest": "10.12.2.1161", | |
"1.7.2-recommended": "10.12.2.1161", | |
"1.7.10_pre4-latest": "10.12.2.1149", | |
"1.7.10-latest": "10.13.4.1614", | |
"1.7.10-recommended": "10.13.4.1614", | |
"1.8-latest": "11.14.4.1577", | |
"1.8-recommended": "11.14.4.1563", | |
"1.8.8-latest": "11.15.0.1655", | |
"1.8.9-latest": "11.15.1.2318", | |
"1.8.9-recommended": "11.15.1.2318", | |
"1.9-latest": "12.16.1.1938", | |
"1.9-recommended": "12.16.1.1887", | |
"1.9.4-latest": "12.17.0.2317", | |
"1.9.4-recommended": "12.17.0.2317", | |
"1.10-latest": "12.18.0.2000", | |
"1.10.2-latest": "12.18.3.2511", | |
"1.10.2-recommended": "12.18.3.2511", | |
"1.11-latest": "13.19.1.2199", | |
"1.11-recommended": "13.19.1.2189", | |
"1.11.2-latest": "13.20.1.2588", | |
"1.11.2-recommended": "13.20.1.2588", | |
"1.12-latest": "14.21.1.2443", | |
"1.12-recommended": "14.21.1.2387", | |
"1.12.1-latest": "14.22.1.2485", | |
"1.12.1-recommended": "14.22.1.2478", | |
"1.12.2-latest": "14.23.5.2855", | |
"1.12.2-recommended": "14.23.5.2855", | |
"1.13.2-latest": "25.0.219", | |
"1.14.2-latest": "26.0.63", | |
"1.14.3-latest": "27.0.60", | |
"1.14.4-latest": "28.2.23", | |
"1.14.4-recommended": "28.2.0", | |
"1.15-latest": "29.0.4", | |
"1.15.1-latest": "30.0.51", | |
"1.15.2-latest": "31.2.55", | |
"1.15.2-recommended": "31.2.0", | |
"1.16.1-latest": "32.0.108", | |
"1.16.2-latest": "33.0.61", | |
"1.16.3-latest": "34.1.42", | |
"1.16.3-recommended": "34.1.0", | |
"1.16.4-latest": "35.1.37", | |
"1.16.4-recommended": "35.1.4", | |
"1.16.5-latest": "36.2.2", | |
"1.16.5-recommended": "36.2.0", | |
"1.17.1-latest": "37.0.44" | |
} | |
} | |
[00:27:04] [Forge Version Check/INFO] [forge.VersionCheck]: [forge] Found status: OUTDATED Target: 14.23.5.2855 | |
[00:27:08] [Client thread/DEBUG] [FML]: Bar Finished: Loading sounds took 5.237s | |
[00:27:08] [Client thread/DEBUG] [FML]: Bar Finished: Loading Resource - SoundHandler took 5.274s | |
[00:27:08] [Sound Library Loader/INFO] [net.minecraft.client.audio.SoundManager]: Starting up SoundSystem... | |
[00:27:08] [Client thread/DEBUG] [FML]: Bar Finished: Loading Resource - FontRenderer took 0.004s | |
[00:27:08] [Client thread/DEBUG] [FML]: Bar Finished: Loading Resource - FontRenderer took 0.003s | |
[00:27:08] [Client thread/DEBUG] [FML]: Bar Finished: Loading Resource - GrassColorReloadListener took 0.011s | |
[00:27:08] [Client thread/DEBUG] [FML]: Bar Finished: Loading Resource - FoliageColorReloadListener took 0.009s | |
[00:27:08] [Client thread/DEBUG] [FML]: Bar Step: Rendering Setup - GL Setup took 0.003s | |
[00:27:08] [Client thread/DEBUG] [FML]: Bar Step: Rendering Setup - Loading Texture Map took 0.009s | |
[00:27:08] [Client thread/INFO] [mixin]: Mixing MixinBlockModelShapes from mixins.cutelessmod.json into net.minecraft.client.renderer.BlockModelShapes | |
[00:27:08] [Client thread/INFO] [mixin]: Renaming synthetic method lambda$removeSpecialChestRenderer$1([Lnet/minecraft/block/Block;I)V to md7aedfe$lambda$removeSpecialChestRenderer$1$0 in mixins.cutelessmod.json:MixinBlockModelShapes | |
[00:27:08] [Client thread/INFO] [mixin]: Renaming synthetic method lambda$removeSpecialChestRenderer$0([Lnet/minecraft/block/Block;I)Z to md7aedfe$lambda$removeSpecialChestRenderer$0$1 in mixins.cutelessmod.json:MixinBlockModelShapes | |
[00:27:08] [Client thread/TRACE] [mixin]: Added class metadata for java/util/stream/IntStream to metadata cache | |
[00:27:08] [Client thread/TRACE] [mixin]: Added class metadata for java/util/stream/BaseStream to metadata cache | |
[00:27:08] [Client thread/TRACE] [mixin]: Added class metadata for java/lang/AutoCloseable to metadata cache | |
[00:27:08] [Client thread/TRACE] [mixin]: Added class metadata for net/minecraft/init/Blocks to metadata cache | |
[00:27:08] [Client thread/TRACE] [mixin]: Added class metadata for java/util/function/IntPredicate to metadata cache | |
[00:27:08] [Client thread/TRACE] [mixin]: Added class metadata for java/util/function/IntConsumer to metadata cache | |
[00:27:08] [Client thread/DEBUG] [FML]: Bar Finished: Loading Resource - B3DLoader took 0.000s | |
[00:27:08] [Client thread/DEBUG] [FML]: Bar Finished: Loading Resource - OBJLoader took 0.000s | |
[00:27:08] [Client thread/DEBUG] [FML]: Bar Finished: Loading Resource - ModelFluid$FluidLoader took 0.000s | |
[00:27:08] [Client thread/DEBUG] [FML]: Bar Finished: Loading Resource - ItemLayerModel$Loader took 0.000s | |
[00:27:08] [Client thread/DEBUG] [FML]: Bar Finished: Loading Resource - MultiLayerModel$Loader took 0.000s | |
[00:27:08] [Thread-5/INFO] [net.minecraft.client.audio.SoundManager]: Initializing LWJGL OpenAL | |
[00:27:08] [Thread-5/INFO] [net.minecraft.client.audio.SoundManager]: (The LWJGL binding of OpenAL. For more information, see http://www.lwjgl.org) | |
[00:27:08] [Client thread/DEBUG] [FML]: Bar Finished: Loading Resource - ModelDynBucket$LoaderDynBucket took 0.000s | |
[00:27:08] [Thread-5/INFO] [net.minecraft.client.audio.SoundManager]: OpenAL initialized. | |
[00:27:08] [Sound Library Loader/INFO] [net.minecraft.client.audio.SoundManager]: Sound engine started | |
[00:27:14] [Client thread/DEBUG] [FML]: Bar Finished: ModelLoader: blocks took 5.543s | |
[00:27:17] [Client thread/DEBUG] [FML]: Bar Finished: ModelLoader: items took 3.051s | |
[00:27:17] [Client thread/INFO] [FML]: Max texture size: 16384 | |
[00:27:17] [Client thread/DEBUG] [FML]: Bar Finished: Texture stitching took 0.317s | |
[00:27:17] [Client thread/DEBUG] [FML]: Bar Finished: Texture stitching took 0.021s | |
[00:27:17] [Client thread/INFO] [net.minecraft.client.renderer.texture.TextureMap]: Created: 512x512 textures-atlas | |
[00:27:17] [Client thread/DEBUG] [FML]: Bar Finished: Texture creation took 0.025s | |
[00:27:17] [Client thread/DEBUG] [FML]: Bar Finished: Texture mipmap and upload took 0.029s | |
[00:27:18] [Client thread/DEBUG] [FML]: Bar Finished: ModelLoader: baking took 0.807s | |
[00:27:18] [Client thread/DEBUG] [FML]: Bar Finished: Loading Resource - ModelManager took 10.074s | |
[00:27:18] [Client thread/INFO] [mixin]: Mixing MixinRainbowLeafBlockColors from mixins.cutelessmod.json into net.minecraft.client.renderer.color.BlockColors$4 | |
[00:27:18] [Client thread/TRACE] [mixin]: Added class metadata for java/awt/Color to metadata cache | |
[00:27:18] [Client thread/TRACE] [mixin]: Added class metadata for java/awt/Paint to metadata cache | |
[00:27:18] [Client thread/TRACE] [mixin]: Added class metadata for java/awt/Transparency to metadata cache | |
[00:27:18] [Client thread/TRACE] [mixin]: Added class metadata for net/minecraft/client/renderer/color/IBlockColor to metadata cache | |
[00:27:18] [Client thread/INFO] [mixin]: Mixing MixinRainbowLeafBlockColors from mixins.cutelessmod.json into net.minecraft.client.renderer.color.BlockColors$5 | |
[00:27:18] [Client thread/DEBUG] [FML]: Bar Step: Rendering Setup - Loading Model Manager took 10.268s | |
[00:27:18] [Client thread/INFO] [mixin]: Mixing IRenderManager from mixins.cutelessmod.json into net.minecraft.client.renderer.entity.RenderManager | |
[00:27:18] [Client thread/INFO] [mixin]: Mixing MixinRenderManager from mixins.cutelessmod.json into net.minecraft.client.renderer.entity.RenderManager | |
[00:27:18] [Client thread/INFO] [mixin]: Mixing MixinLayerArmorBase from mixins.cutelessmod.json into net.minecraft.client.renderer.entity.layers.LayerArmorBase | |
[00:27:18] [Client thread/TRACE] [mixin]: Added class metadata for net/minecraft/client/renderer/entity/layers/LayerRenderer to metadata cache | |
[00:27:18] [Client thread/INFO] [mixin]: Mixing MixinRenderItemFrame from mixins.cutelessmod.json into net.minecraft.client.renderer.entity.RenderItemFrame | |
[00:27:18] [Client thread/TRACE] [mixin]: Added class metadata for net/minecraft/client/renderer/entity/Render to metadata cache | |
[00:27:19] [Client thread/INFO] [mixin]: Mixing MixinItemRenderer from mixins.cutelessmod.json into net.minecraft.client.renderer.ItemRenderer | |
[00:27:19] [Client thread/TRACE] [mixin]: Added class metadata for net/minecraft/util/EnumHandSide to metadata cache | |
[00:27:19] [Client thread/DEBUG] [FML]: Bar Finished: Loading Resource - RenderItem took 0.018s | |
[00:27:19] [Client thread/DEBUG] [FML]: Bar Step: Rendering Setup - Loading Item Renderer took 0.524s | |
[00:27:19] [Client thread/DEBUG] [FML]: Bar Finished: Loading Resource - EntityRenderer took 0.000s | |
[00:27:19] [Client thread/DEBUG] [FML]: Bar Finished: Loading Resource - BlockRendererDispatcher took 0.000s | |
[00:27:19] [Client thread/DEBUG] [FML]: Bar Finished: Loading Resource - RenderGlobal took 0.000s | |
[00:27:19] [Client thread/DEBUG] [FML]: Bar Finished: Loading Resource - SearchTreeManager took 0.093s | |
[00:27:19] [Client thread/INFO] [mixin]: Mixing MixinParticleManager from mixins.cutelessmod.json into net.minecraft.client.particle.ParticleManager | |
[00:27:19] [Client thread/INFO] [mixin]: Mixing MixinParticleDigging from mixins.cutelessmod.json into net.minecraft.client.particle.ParticleDigging | |
[00:27:19] [Client thread/TRACE] [mixin]: Added class metadata for net/minecraft/client/renderer/BlockRendererDispatcher to metadata cache | |
[00:27:19] [Client thread/INFO] [mixin]: Mixing MixinParticleFirework_Spark from mixins.cutelessmod.json into net.minecraft.client.particle.ParticleFirework$Spark | |
[00:27:19] [Client thread/DEBUG] [FML]: Bar Step: Rendering Setup - Loading Entity Renderer took 0.523s | |
[00:27:19] [Client thread/DEBUG] [FML]: Bar Finished: Rendering Setup took 11.328s | |
[00:27:19] [Client thread/INFO] [FML]: Applying holder lookups | |
[00:27:19] [Client thread/INFO] [FML]: Holder lookups applied | |
[00:27:19] [Client thread/TRACE] [FML]: Sending event FMLInitializationEvent to mod minecraft | |
[00:27:19] [Client thread/TRACE] [FML]: Sent event FMLInitializationEvent to mod minecraft | |
[00:27:19] [Client thread/DEBUG] [FML]: Bar Step: Initialization - Minecraft took 0.000s | |
[00:27:19] [Client thread/TRACE] [FML]: Sending event FMLInitializationEvent to mod mcp | |
[00:27:19] [Client thread/TRACE] [FML]: Sent event FMLInitializationEvent to mod mcp | |
[00:27:19] [Client thread/DEBUG] [FML]: Bar Step: Initialization - Minecraft Coder Pack took 0.000s | |
[00:27:19] [Client thread/TRACE] [FML]: Sending event FMLInitializationEvent to mod FML | |
[00:27:19] [Client thread/TRACE] [FML]: Sent event FMLInitializationEvent to mod FML | |
[00:27:19] [Client thread/DEBUG] [FML]: Bar Step: Initialization - Forge Mod Loader took 0.000s | |
[00:27:19] [Client thread/TRACE] [FML]: Sending event FMLInitializationEvent to mod forge | |
[00:27:19] [Client thread/TRACE] [FML]: Sent event FMLInitializationEvent to mod forge | |
[00:27:19] [Client thread/DEBUG] [FML]: Bar Step: Initialization - Minecraft Forge took 0.000s | |
[00:27:19] [Client thread/TRACE] [FML]: Sending event FMLInitializationEvent to mod cutelessmod | |
[00:27:19] [Client thread/INFO] [mixin]: Mixing MixinCommandBase from mixins.cutelessmod.json into net.minecraft.command.CommandBase | |
[00:27:19] [Client thread/TRACE] [FML]: Sent event FMLInitializationEvent to mod cutelessmod | |
[00:27:19] [Client thread/DEBUG] [FML]: Bar Step: Initialization - CutelessMod took 0.177s | |
[00:27:19] [Client thread/DEBUG] [FML]: Bar Finished: Initialization took 0.178s | |
[00:27:19] [Client thread/TRACE] [FML]: Attempting to deliver 0 IMC messages to mod minecraft | |
[00:27:19] [Client thread/TRACE] [FML]: Sending event IMCEvent to mod minecraft | |
[00:27:19] [Client thread/TRACE] [FML]: Sent event IMCEvent to mod minecraft | |
[00:27:19] [Client thread/DEBUG] [FML]: Bar Step: InterModComms$IMC - Minecraft took 0.006s | |
[00:27:19] [Client thread/TRACE] [FML]: Attempting to deliver 0 IMC messages to mod mcp | |
[00:27:19] [Client thread/TRACE] [FML]: Sending event IMCEvent to mod mcp | |
[00:27:19] [Client thread/TRACE] [FML]: Sent event IMCEvent to mod mcp | |
[00:27:19] [Client thread/DEBUG] [FML]: Bar Step: InterModComms$IMC - Minecraft Coder Pack took 0.000s | |
[00:27:19] [Client thread/TRACE] [FML]: Attempting to deliver 0 IMC messages to mod FML | |
[00:27:19] [Client thread/TRACE] [FML]: Sending event IMCEvent to mod FML | |
[00:27:19] [Client thread/TRACE] [FML]: Sent event IMCEvent to mod FML | |
[00:27:19] [Client thread/DEBUG] [FML]: Bar Step: InterModComms$IMC - Forge Mod Loader took 0.000s | |
[00:27:19] [Client thread/TRACE] [FML]: Attempting to deliver 0 IMC messages to mod forge | |
[00:27:19] [Client thread/TRACE] [FML]: Sending event IMCEvent to mod forge | |
[00:27:19] [Client thread/TRACE] [FML]: Sent event IMCEvent to mod forge | |
[00:27:19] [Client thread/DEBUG] [FML]: Bar Step: InterModComms$IMC - Minecraft Forge took 0.000s | |
[00:27:19] [Client thread/TRACE] [FML]: Attempting to deliver 0 IMC messages to mod cutelessmod | |
[00:27:19] [Client thread/TRACE] [FML]: Sending event IMCEvent to mod cutelessmod | |
[00:27:19] [Client thread/TRACE] [FML]: Sent event IMCEvent to mod cutelessmod | |
[00:27:19] [Client thread/DEBUG] [FML]: Bar Step: InterModComms$IMC - CutelessMod took 0.000s | |
[00:27:19] [Client thread/DEBUG] [FML]: Bar Finished: InterModComms$IMC took 0.007s | |
[00:27:19] [Client thread/INFO] [FML]: Injecting itemstacks | |
[00:27:19] [Client thread/INFO] [FML]: Itemstack injection complete | |
[00:27:19] [Client thread/TRACE] [FML]: Sending event FMLPostInitializationEvent to mod minecraft | |
[00:27:19] [Client thread/TRACE] [FML]: Sent event FMLPostInitializationEvent to mod minecraft | |
[00:27:19] [Client thread/DEBUG] [FML]: Bar Step: PostInitialization - Minecraft took 0.000s | |
[00:27:19] [Client thread/TRACE] [FML]: Sending event FMLPostInitializationEvent to mod mcp | |
[00:27:19] [Client thread/TRACE] [FML]: Sent event FMLPostInitializationEvent to mod mcp | |
[00:27:19] [Client thread/DEBUG] [FML]: Bar Step: PostInitialization - Minecraft Coder Pack took 0.000s | |
[00:27:19] [Client thread/TRACE] [FML]: Sending event FMLPostInitializationEvent to mod FML | |
[00:27:19] [Client thread/TRACE] [FML]: Sent event FMLPostInitializationEvent to mod FML | |
[00:27:19] [Client thread/DEBUG] [FML]: Bar Step: PostInitialization - Forge Mod Loader took 0.000s | |
[00:27:19] [Client thread/TRACE] [FML]: Sending event FMLPostInitializationEvent to mod forge | |
[00:27:19] [Client thread/TRACE] [FML]: Sent event FMLPostInitializationEvent to mod forge | |
[00:27:19] [Client thread/DEBUG] [FML]: Bar Step: PostInitialization - Minecraft Forge took 0.015s | |
[00:27:19] [Client thread/TRACE] [FML]: Sending event FMLPostInitializationEvent to mod cutelessmod | |
[00:27:19] [Client thread/TRACE] [FML]: Sent event FMLPostInitializationEvent to mod cutelessmod | |
[00:27:19] [Client thread/DEBUG] [FML]: Bar Step: PostInitialization - CutelessMod took 0.000s | |
[00:27:19] [Client thread/DEBUG] [FML]: Bar Finished: PostInitialization took 0.016s | |
[00:27:19] [Client thread/TRACE] [FML]: Sending event FMLLoadCompleteEvent to mod minecraft | |
[00:27:19] [Client thread/TRACE] [FML]: Sent event FMLLoadCompleteEvent to mod minecraft | |
[00:27:19] [Client thread/DEBUG] [FML]: Bar Step: LoadComplete - Minecraft took 0.000s | |
[00:27:19] [Client thread/TRACE] [FML]: Sending event FMLLoadCompleteEvent to mod mcp | |
[00:27:19] [Client thread/TRACE] [FML]: Sent event FMLLoadCompleteEvent to mod mcp | |
[00:27:19] [Client thread/DEBUG] [FML]: Bar Step: LoadComplete - Minecraft Coder Pack took 0.000s | |
[00:27:19] [Client thread/TRACE] [FML]: Sending event FMLLoadCompleteEvent to mod FML | |
[00:27:19] [Client thread/TRACE] [FML]: Sent event FMLLoadCompleteEvent to mod FML | |
[00:27:19] [Client thread/DEBUG] [FML]: Bar Step: LoadComplete - Forge Mod Loader took 0.000s | |
[00:27:19] [Client thread/TRACE] [FML]: Sending event FMLLoadCompleteEvent to mod forge | |
[00:27:19] [Client thread/DEBUG] [FML]: Forge RecipeSorter Baking: | |
[00:27:19] [Client thread/DEBUG] [FML]: 16: RecipeEntry("Before", UNKNOWN, ) | |
[00:27:19] [Client thread/DEBUG] [FML]: 15: RecipeEntry("minecraft:shaped", SHAPED, net.minecraft.item.crafting.ShapedRecipes) Before: minecraft:shapeless | |
[00:27:19] [Client thread/DEBUG] [FML]: 14: RecipeEntry("forge:shapedore", SHAPED, net.minecraftforge.oredict.ShapedOreRecipe) Before: minecraft:shapeless After: minecraft:shaped | |
[00:27:19] [Client thread/DEBUG] [FML]: 13: RecipeEntry("minecraft:mapextending", SHAPED, net.minecraft.item.crafting.RecipesMapExtending) Before: minecraft:shapeless After: minecraft:shaped | |
[00:27:19] [Client thread/DEBUG] [FML]: 12: RecipeEntry("minecraft:shapeless", SHAPELESS, net.minecraft.item.crafting.ShapelessRecipes) After: minecraft:shaped | |
[00:27:19] [Client thread/DEBUG] [FML]: 11: RecipeEntry("minecraft:repair", SHAPELESS, net.minecraft.item.crafting.RecipeRepairItem) After: minecraft:shapeless | |
[00:27:19] [Client thread/DEBUG] [FML]: 10: RecipeEntry("minecraft:shield_deco", SHAPELESS, net.minecraft.item.crafting.ShieldRecipes$Decoration) After: minecraft:shapeless | |
[00:27:19] [Client thread/DEBUG] [FML]: 9: RecipeEntry("minecraft:armordyes", SHAPELESS, net.minecraft.item.crafting.RecipesArmorDyes) After: minecraft:shapeless | |
[00:27:19] [Client thread/DEBUG] [FML]: 8: RecipeEntry("minecraft:fireworks", SHAPELESS, net.minecraft.item.crafting.RecipeFireworks) After: minecraft:shapeless | |
[00:27:19] [Client thread/DEBUG] [FML]: 7: RecipeEntry("minecraft:pattern_dupe", SHAPELESS, net.minecraft.item.crafting.RecipesBanners$RecipeDuplicatePattern) After: minecraft:shapeless | |
[00:27:19] [Client thread/DEBUG] [FML]: 6: RecipeEntry("minecraft:tippedarrow", SHAPELESS, net.minecraft.item.crafting.RecipeTippedArrow) After: minecraft:shapeless | |
[00:27:19] [Client thread/DEBUG] [FML]: 5: RecipeEntry("minecraft:mapcloning", SHAPELESS, net.minecraft.item.crafting.RecipesMapCloning) After: minecraft:shapeless | |
[00:27:19] [Client thread/DEBUG] [FML]: 4: RecipeEntry("forge:shapelessore", SHAPELESS, net.minecraftforge.oredict.ShapelessOreRecipe) After: minecraft:shapeless | |
[00:27:19] [Client thread/DEBUG] [FML]: 3: RecipeEntry("minecraft:pattern_add", SHAPELESS, net.minecraft.item.crafting.RecipesBanners$RecipeAddPattern) After: minecraft:shapeless | |
[00:27:19] [Client thread/DEBUG] [FML]: 2: RecipeEntry("minecraft:bookcloning", SHAPELESS, net.minecraft.item.crafting.RecipeBookCloning) After: minecraft:shapeless | |
[00:27:19] [Client thread/DEBUG] [FML]: 1: RecipeEntry("After", UNKNOWN, ) | |
[00:27:19] [Client thread/DEBUG] [FML]: Sorting recipes | |
[00:27:19] [Client thread/TRACE] [FML]: Sent event FMLLoadCompleteEvent to mod forge | |
[00:27:19] [Client thread/DEBUG] [FML]: Bar Step: LoadComplete - Minecraft Forge took 0.013s | |
[00:27:19] [Client thread/TRACE] [FML]: Sending event FMLLoadCompleteEvent to mod cutelessmod | |
[00:27:19] [Client thread/TRACE] [FML]: Sent event FMLLoadCompleteEvent to mod cutelessmod | |
[00:27:19] [Client thread/DEBUG] [FML]: Bar Step: LoadComplete - CutelessMod took 0.000s | |
[00:27:19] [Client thread/DEBUG] [FML]: Bar Finished: LoadComplete took 0.013s | |
[00:27:19] [Client thread/DEBUG] [FML]: Freezing registries | |
[00:27:19] [Client thread/TRACE] [FML]: Sending event FMLModIdMappingEvent to mod minecraft | |
[00:27:19] [Client thread/TRACE] [FML]: Sent event FMLModIdMappingEvent to mod minecraft | |
[00:27:19] [Client thread/DEBUG] [FML]: Bar Step: ModIdMapping - Minecraft took 0.000s | |
[00:27:19] [Client thread/TRACE] [FML]: Sending event FMLModIdMappingEvent to mod mcp | |
[00:27:19] [Client thread/TRACE] [FML]: Sent event FMLModIdMappingEvent to mod mcp | |
[00:27:19] [Client thread/DEBUG] [FML]: Bar Step: ModIdMapping - Minecraft Coder Pack took 0.000s | |
[00:27:19] [Client thread/TRACE] [FML]: Sending event FMLModIdMappingEvent to mod FML | |
[00:27:19] [Client thread/TRACE] [FML]: Sent event FMLModIdMappingEvent to mod FML | |
[00:27:19] [Client thread/DEBUG] [FML]: Bar Step: ModIdMapping - Forge Mod Loader took 0.000s | |
[00:27:19] [Client thread/TRACE] [FML]: Sending event FMLModIdMappingEvent to mod forge | |
[00:27:20] [Client thread/TRACE] [FML]: Sent event FMLModIdMappingEvent to mod forge | |
[00:27:20] [Client thread/DEBUG] [FML]: Bar Step: ModIdMapping - Minecraft Forge took 0.125s | |
[00:27:20] [Client thread/TRACE] [FML]: Sending event FMLModIdMappingEvent to mod cutelessmod | |
[00:27:20] [Client thread/TRACE] [FML]: Sent event FMLModIdMappingEvent to mod cutelessmod | |
[00:27:20] [Client thread/DEBUG] [FML]: Bar Step: ModIdMapping - CutelessMod took 0.000s | |
[00:27:20] [Client thread/DEBUG] [FML]: Bar Finished: ModIdMapping took 0.126s | |
[00:27:20] [Client thread/DEBUG] [FML]: All registries frozen | |
[00:27:20] [Client thread/INFO] [FML]: Forge Mod Loader has successfully loaded 5 mods | |
[00:27:20] [Client thread/DEBUG] [FML]: Bar Finished: Loading took 21.697s | |
[00:27:20] [Client thread/INFO] [mixin]: Mixing MixinGuiOverlayDebug from mixins.cutelessmod.json into net.minecraft.client.gui.GuiOverlayDebug | |
[00:27:20] [Client thread/INFO] [mixin]: Mixing IGuiNewChat from mixins.cutelessmod.json into net.minecraft.client.gui.GuiNewChat | |
[00:27:20] [Client thread/INFO] [mixin]: Mixing MixinGuiNewChat from mixins.cutelessmod.json into net.minecraft.client.gui.GuiNewChat | |
[00:27:20] [Client thread/TRACE] [mixin]: Added class metadata for net/dugged/cutelessmod/CompactChat to metadata cache | |
[00:27:20] [Client thread/INFO] [mixin]: Mixing MixinGuiBossOverlay from mixins.cutelessmod.json into net.minecraft.client.gui.GuiBossOverlay | |
[00:27:20] [Client thread/INFO] [mixin]: Mixing MixinGuiBossOverlay from mixins.cutelessmod.clientcommands.json into net.minecraft.client.gui.GuiBossOverlay | |
[00:27:20] [Client thread/TRACE] [mixin]: Added class metadata for net/minecraft/client/renderer/texture/TextureManager to metadata cache | |
[00:27:20] [Client thread/TRACE] [mixin]: Added class metadata for com/google/common/base/Strings to metadata cache | |
[00:27:20] [Client thread/INFO] [com.mojang.text2speech.NarratorWindows]: Narrator library for x64 successfully loaded | |
[00:27:20] [Client thread/INFO] [mixin]: Mixing IGuiMultiplayer from mixins.cutelessmod.json into net.minecraft.client.gui.GuiMultiplayer | |
[00:27:20] [Client thread/INFO] [mixin]: Mixing MixinGuiMultiplayer from mixins.cutelessmod.json into net.minecraft.client.gui.GuiMultiplayer | |
[00:27:20] [Client thread/INFO] [mixin]: Renaming synthetic method lambda$dynamicListUpdates$0(I)V to md7aedfe$lambda$dynamicListUpdates$0$0 in mixins.cutelessmod.json:MixinGuiMultiplayer | |
[00:27:20] [Client thread/TRACE] [mixin]: Added class metadata for net/minecraft/client/network/ServerPinger to metadata cache | |
[00:27:20] [Client thread/TRACE] [mixin]: Added class metadata for net/minecraft/client/multiplayer/ServerList to metadata cache | |
[00:27:20] [Client thread/TRACE] [mixin]: Added class metadata for net/minecraft/client/gui/ServerSelectionList to metadata cache | |
[00:27:20] [Client thread/TRACE] [mixin]: Added class metadata for net/minecraft/client/gui/GuiListExtended to metadata cache | |
[00:27:20] [Client thread/TRACE] [mixin]: Added class metadata for net/minecraft/client/gui/GuiSlot to metadata cache | |
[00:27:20] [Client thread/TRACE] [mixin]: Added class metadata for java/util/concurrent/ThreadPoolExecutor to metadata cache | |
[00:27:20] [Client thread/TRACE] [mixin]: Added class metadata for java/lang/Runnable to metadata cache | |
[00:27:20] [Client thread/INFO] [mixin]: Mixing MixinDebugRendererChunkBorder from mixins.cutelessmod.json into net.minecraft.client.renderer.debug.DebugRendererChunkBorder | |
[00:27:20] [Client thread/TRACE] [mixin]: Added class metadata for net/minecraft/client/renderer/vertex/DefaultVertexFormats to metadata cache | |
[00:27:20] [Client thread/TRACE] [mixin]: Added class metadata for net/minecraft/client/renderer/BufferBuilder to metadata cache | |
[00:27:20] [Client thread/TRACE] [mixin]: Added class metadata for net/minecraft/client/renderer/debug/DebugRenderer$IDebugRenderer to metadata cache | |
[00:27:20] [Client thread/DEBUG] [FML]: Bar Finished: Loading Resource - CloudRenderer took 0.004s | |
[00:27:20] [Client thread/INFO] [mixin]: Mixing MixinTileEntityRendererDispatcher from mixins.cutelessmod.json into net.minecraft.client.renderer.tileentity.TileEntityRendererDispatcher | |
[00:27:20] [Client thread/INFO] [mixin]: Mixing MixinTileEntityPistonRenderer from mixins.cutelessmod.json into net.minecraft.client.renderer.tileentity.TileEntityPistonRenderer | |
[00:27:20] [Client thread/TRACE] [mixin]: Added class metadata for net/minecraft/client/renderer/tileentity/TileEntitySpecialRenderer to metadata cache | |
[00:27:20] [Client thread/INFO] [mixin]: Mixing MixinTileEntityChestRenderer from mixins.cutelessmod.json into net.minecraft.client.renderer.tileentity.TileEntityChestRenderer | |
[00:27:20] [Client thread/TRACE] [mixin]: Added class metadata for net/dugged/cutelessmod/ContainerSpy to metadata cache | |
[00:27:20] [Client thread/INFO] [mixin]: Mixing MixinTileEntityBeaconRenderer from mixins.cutelessmod.json into net.minecraft.client.renderer.tileentity.TileEntityBeaconRenderer | |
[00:27:20] [Realms Notification Availability checker #1/INFO] [com.mojang.realmsclient.client.RealmsClient]: Could not authorize you against Realms server: Invalid session id | |
[00:28:25] [Client thread/INFO] [net.minecraft.client.Minecraft]: Stopping! | |
[00:28:25] [Client thread/INFO] [net.minecraft.client.audio.SoundManager]: SoundSystem shutting down... | |
[00:28:25] [Client thread/WARN] [net.minecraft.client.audio.SoundManager]: Author: Paul Lamb, www.paulscode.com |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment