From 9566b47d84098ff208c034175ff37a5bf77ccf3c Mon Sep 17 00:00:00 2001 From: refactoring Date: Sun, 31 Dec 2023 01:13:55 -0500 Subject: [PATCH] Basic bridge system, has some documentation. --- .gitignore | 46 + .idea/.gitignore | 3 + .idea/discord.xml | 7 + .idea/gradle.xml | 20 + .idea/kotlinc.xml | 6 + .idea/misc.xml | 7 + .idea/uiDesigner.xml | 124 ++ .idea/vcs.xml | 6 + Bridge/build.gradle | 10 + .../bridge/client/MinecraftClientBridge.java | 18 + .../bridge/client/input/KeyBindingBridge.java | 17 + .../dev/refactoring/bridge/core/Bridge.java | 14 + .../bridge/core/BridgeManager.java | 24 + .../bridge/core/util/MinecraftVersion.java | 18 + .../dev/refactoring/bridge/core/util/Ref.java | 23 + Client/build.gradle | 30 + .../refactoring/testclient/TestClient.java | 20 + README.md | 4 + build.gradle | 16 + gradle.properties | 1 + gradle/wrapper/gradle-wrapper.jar | Bin 0 -> 60756 bytes gradle/wrapper/gradle-wrapper.properties | 6 + gradlew | 234 +++ gradlew.bat | 89 + settings.gradle | 24 + v1_19_4/build.gradle | 74 + v1_19_4/gradle.properties | 13 + .../config/fabric/indigo-renderer.properties | 8 + .../crash-2023-12-31_01.11.41-client.txt | 287 +++ .../run/data/fabricDefaultResourcePacks.dat | Bin 0 -> 34 bytes v1_19_4/run/logs/2023-12-31-1.log.gz | Bin 0 -> 2372 bytes v1_19_4/run/logs/debug-1.log.gz | Bin 0 -> 25151 bytes v1_19_4/run/logs/debug.log | 1715 +++++++++++++++++ v1_19_4/run/logs/latest.log | 109 ++ v1_19_4/run/options.txt | 137 ++ .../dev/refactoring/ClientEntrypoint.java | 18 + .../dev/refactoring/bridge/BridgeImpl.java | 16 + .../mixins/MixinMinecraftClient.java | 38 + .../mixins/input/MixinKeyBinding.java | 69 + .../refactoring/mixins/util/MixinWindow.java | 26 + v1_19_4/src/main/resources/client.mixins.json | 16 + v1_19_4/src/main/resources/fabric.mod.json | 31 + v1_8_9/build.gradle | 70 + v1_8_9/gradle.properties | 11 + v1_8_9/run/logs/2023-12-31-1.log.gz | Bin 0 -> 1197 bytes v1_8_9/run/logs/debug-1.log.gz | Bin 0 -> 8768 bytes v1_8_9/run/logs/debug.log | 497 +++++ v1_8_9/run/logs/latest.log | 49 + .../dev/refactoring/ClientEntrypoint.java | 18 + .../dev/refactoring/bridge/BridgeImpl.java | 16 + .../mixins/MixinMinecraftClient.java | 38 + .../mixins/input/MixinKeyBinding.java | 69 + v1_8_9/src/main/resources/client.mixins.json | 15 + v1_8_9/src/main/resources/fabric.mod.json | 31 + 54 files changed, 4138 insertions(+) create mode 100644 .gitignore create mode 100644 .idea/.gitignore create mode 100644 .idea/discord.xml create mode 100644 .idea/gradle.xml create mode 100644 .idea/kotlinc.xml create mode 100644 .idea/misc.xml create mode 100644 .idea/uiDesigner.xml create mode 100644 .idea/vcs.xml create mode 100644 Bridge/build.gradle create mode 100644 Bridge/src/main/java/dev/refactoring/bridge/client/MinecraftClientBridge.java create mode 100644 Bridge/src/main/java/dev/refactoring/bridge/client/input/KeyBindingBridge.java create mode 100644 Bridge/src/main/java/dev/refactoring/bridge/core/Bridge.java create mode 100644 Bridge/src/main/java/dev/refactoring/bridge/core/BridgeManager.java create mode 100644 Bridge/src/main/java/dev/refactoring/bridge/core/util/MinecraftVersion.java create mode 100644 Bridge/src/main/java/dev/refactoring/bridge/core/util/Ref.java create mode 100644 Client/build.gradle create mode 100644 Client/src/main/java/dev/refactoring/testclient/TestClient.java create mode 100644 README.md create mode 100644 build.gradle create mode 100644 gradle.properties create mode 100644 gradle/wrapper/gradle-wrapper.jar create mode 100644 gradle/wrapper/gradle-wrapper.properties create mode 100644 gradlew create mode 100644 gradlew.bat create mode 100644 settings.gradle create mode 100644 v1_19_4/build.gradle create mode 100644 v1_19_4/gradle.properties create mode 100644 v1_19_4/run/config/fabric/indigo-renderer.properties create mode 100644 v1_19_4/run/crash-reports/crash-2023-12-31_01.11.41-client.txt create mode 100644 v1_19_4/run/data/fabricDefaultResourcePacks.dat create mode 100644 v1_19_4/run/logs/2023-12-31-1.log.gz create mode 100644 v1_19_4/run/logs/debug-1.log.gz create mode 100644 v1_19_4/run/logs/debug.log create mode 100644 v1_19_4/run/logs/latest.log create mode 100644 v1_19_4/run/options.txt create mode 100644 v1_19_4/src/main/java/dev/refactoring/ClientEntrypoint.java create mode 100644 v1_19_4/src/main/java/dev/refactoring/bridge/BridgeImpl.java create mode 100644 v1_19_4/src/main/java/dev/refactoring/mixins/MixinMinecraftClient.java create mode 100644 v1_19_4/src/main/java/dev/refactoring/mixins/input/MixinKeyBinding.java create mode 100644 v1_19_4/src/main/java/dev/refactoring/mixins/util/MixinWindow.java create mode 100644 v1_19_4/src/main/resources/client.mixins.json create mode 100644 v1_19_4/src/main/resources/fabric.mod.json create mode 100644 v1_8_9/build.gradle create mode 100644 v1_8_9/gradle.properties create mode 100644 v1_8_9/run/logs/2023-12-31-1.log.gz create mode 100644 v1_8_9/run/logs/debug-1.log.gz create mode 100644 v1_8_9/run/logs/debug.log create mode 100644 v1_8_9/run/logs/latest.log create mode 100644 v1_8_9/src/main/java/dev/refactoring/ClientEntrypoint.java create mode 100644 v1_8_9/src/main/java/dev/refactoring/bridge/BridgeImpl.java create mode 100644 v1_8_9/src/main/java/dev/refactoring/mixins/MixinMinecraftClient.java create mode 100644 v1_8_9/src/main/java/dev/refactoring/mixins/input/MixinKeyBinding.java create mode 100644 v1_8_9/src/main/resources/client.mixins.json create mode 100644 v1_8_9/src/main/resources/fabric.mod.json diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..00ddbb1 --- /dev/null +++ b/.gitignore @@ -0,0 +1,46 @@ +.gradle +build/ +!gradle/wrapper/gradle-wrapper.jar +!**/src/main/**/build/ +!**/src/test/**/build/ + +### IntelliJ IDEA ### +.idea/modules.xml +.idea/jarRepositories.xml +.idea/compiler.xml +.idea/libraries/ +*.iws +*.iml +*.ipr +out/ +!**/src/main/**/out/ +!**/src/test/**/out/ + +### Eclipse ### +.apt_generated +.classpath +.factorypath +.project +.settings +.springBeans +.sts4-cache +bin/ +!**/src/main/**/bin/ +!**/src/test/**/bin/ + +### NetBeans ### +/nbproject/private/ +/nbbuild/ +/dist/ +/nbdist/ +/.nb-gradle/ + +### VS Code ### +.vscode/ + +### Mac OS ### +.DS_Store + +### Fabric ### +./v1_8_9/run +./v1_19_4/run diff --git a/.idea/.gitignore b/.idea/.gitignore new file mode 100644 index 0000000..26d3352 --- /dev/null +++ b/.idea/.gitignore @@ -0,0 +1,3 @@ +# Default ignored files +/shelf/ +/workspace.xml diff --git a/.idea/discord.xml b/.idea/discord.xml new file mode 100644 index 0000000..d8e9561 --- /dev/null +++ b/.idea/discord.xml @@ -0,0 +1,7 @@ + + + + + \ No newline at end of file diff --git a/.idea/gradle.xml b/.idea/gradle.xml new file mode 100644 index 0000000..84d346b --- /dev/null +++ b/.idea/gradle.xml @@ -0,0 +1,20 @@ + + + + + + \ No newline at end of file diff --git a/.idea/kotlinc.xml b/.idea/kotlinc.xml new file mode 100644 index 0000000..ae3f30a --- /dev/null +++ b/.idea/kotlinc.xml @@ -0,0 +1,6 @@ + + + + + \ No newline at end of file diff --git a/.idea/misc.xml b/.idea/misc.xml new file mode 100644 index 0000000..c75befe --- /dev/null +++ b/.idea/misc.xml @@ -0,0 +1,7 @@ + + + + + + + \ No newline at end of file diff --git a/.idea/uiDesigner.xml b/.idea/uiDesigner.xml new file mode 100644 index 0000000..2b63946 --- /dev/null +++ b/.idea/uiDesigner.xml @@ -0,0 +1,124 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/.idea/vcs.xml b/.idea/vcs.xml new file mode 100644 index 0000000..94a25f7 --- /dev/null +++ b/.idea/vcs.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/Bridge/build.gradle b/Bridge/build.gradle new file mode 100644 index 0000000..2a55d25 --- /dev/null +++ b/Bridge/build.gradle @@ -0,0 +1,10 @@ +plugins { + id 'java' +} + +group = 'dev.refactoring' +version = '1.0-SNAPSHOT' + +repositories { + mavenCentral() +} \ No newline at end of file diff --git a/Bridge/src/main/java/dev/refactoring/bridge/client/MinecraftClientBridge.java b/Bridge/src/main/java/dev/refactoring/bridge/client/MinecraftClientBridge.java new file mode 100644 index 0000000..d9de452 --- /dev/null +++ b/Bridge/src/main/java/dev/refactoring/bridge/client/MinecraftClientBridge.java @@ -0,0 +1,18 @@ +package dev.refactoring.bridge.client; + +/** + * Bridge for the class MinecraftClient. + * This is just an example and will definitely need to have changes. + * + * @author refactoring + */ +public interface MinecraftClientBridge { + /** + * Returns the current FPS. + * Javadoc is not required for a bridge, but all bridge methods must start with "bridge$" + * to avoid colliding with other methods during implementation. + * + * @return the current FPS + */ + public int bridge$getCurrentFps(); +} diff --git a/Bridge/src/main/java/dev/refactoring/bridge/client/input/KeyBindingBridge.java b/Bridge/src/main/java/dev/refactoring/bridge/client/input/KeyBindingBridge.java new file mode 100644 index 0000000..4ac1e75 --- /dev/null +++ b/Bridge/src/main/java/dev/refactoring/bridge/client/input/KeyBindingBridge.java @@ -0,0 +1,17 @@ +package dev.refactoring.bridge.client.input; + +import java.util.List; + +/** + * @author refactoring + */ +public interface KeyBindingBridge { + int bridge$getKey(); + void bridge$setKey(Integer var1); + boolean bridge$isKeyDown(); + String bridge$getKeyName(); + String bridge$getKeyDescription(); + void bridge$setKeyBindState(boolean var1); + List bridge$getClashesWith(); + String bridge$getCategory(); +} diff --git a/Bridge/src/main/java/dev/refactoring/bridge/core/Bridge.java b/Bridge/src/main/java/dev/refactoring/bridge/core/Bridge.java new file mode 100644 index 0000000..6933443 --- /dev/null +++ b/Bridge/src/main/java/dev/refactoring/bridge/core/Bridge.java @@ -0,0 +1,14 @@ +package dev.refactoring.bridge.core; + + +import dev.refactoring.bridge.client.input.KeyBindingBridge; + +/** + * Has helper methods. + * Ex. Initializing a KeyBinding, ResourceLocation, the possibilities are endless. + * + * @author refactoring + */ +public interface Bridge { + public KeyBindingBridge initKeyBinding(String name, int keyCode, String cat); +} diff --git a/Bridge/src/main/java/dev/refactoring/bridge/core/BridgeManager.java b/Bridge/src/main/java/dev/refactoring/bridge/core/BridgeManager.java new file mode 100644 index 0000000..48c7d40 --- /dev/null +++ b/Bridge/src/main/java/dev/refactoring/bridge/core/BridgeManager.java @@ -0,0 +1,24 @@ +package dev.refactoring.bridge.core; + +import dev.refactoring.bridge.client.MinecraftClientBridge; +import dev.refactoring.bridge.core.util.MinecraftVersion; +import lombok.Getter; +import lombok.Setter; + +/** + * This class has all the bridges, which are to be implemented in each version. + * + * @author refactoring + */ +@Getter @Setter +public class BridgeManager { + public static BridgeManager INSTANCE = new BridgeManager(); + + // Bridges + public Bridge bridge; + public MinecraftClientBridge minecraftClientBridge; + + // Other + private String windowTitle = "Test Client | Initializing"; + private MinecraftVersion version; +} diff --git a/Bridge/src/main/java/dev/refactoring/bridge/core/util/MinecraftVersion.java b/Bridge/src/main/java/dev/refactoring/bridge/core/util/MinecraftVersion.java new file mode 100644 index 0000000..76285ad --- /dev/null +++ b/Bridge/src/main/java/dev/refactoring/bridge/core/util/MinecraftVersion.java @@ -0,0 +1,18 @@ +package dev.refactoring.bridge.core.util; + +import lombok.Getter; + +/** + * @author refactoring + */ +@Getter +public enum MinecraftVersion { + v1_8_9("1.8.9"), + v1_19_4("1.19.4"); + + MinecraftVersion(String name) { + this.name = name; + } + + private String name; +} diff --git a/Bridge/src/main/java/dev/refactoring/bridge/core/util/Ref.java b/Bridge/src/main/java/dev/refactoring/bridge/core/util/Ref.java new file mode 100644 index 0000000..725b4da --- /dev/null +++ b/Bridge/src/main/java/dev/refactoring/bridge/core/util/Ref.java @@ -0,0 +1,23 @@ +package dev.refactoring.bridge.core.util; + +import dev.refactoring.bridge.client.MinecraftClientBridge; +import dev.refactoring.bridge.core.BridgeManager; + +/** + * The Ref class has commonly used bridges to make code shorter and cleaner. + * + * @author refactoring + */ +public class Ref { + public static MinecraftClientBridge minecraft() { + return BridgeManager.INSTANCE.getMinecraftClientBridge(); + } + + /** + * It can also be used to return commonly used values. + * Here, I've used FPS. But again, the possibilities are endless. + */ + public static int fps() { + return minecraft().bridge$getCurrentFps(); + } +} diff --git a/Client/build.gradle b/Client/build.gradle new file mode 100644 index 0000000..3d0f53d --- /dev/null +++ b/Client/build.gradle @@ -0,0 +1,30 @@ +plugins { + id 'java' +} + +group = 'dev.refactoring' +version = '1.0-SNAPSHOT' + +sourceCompatibility = JavaVersion.VERSION_17 +targetCompatibility = JavaVersion.VERSION_17 + +repositories { + mavenCentral() +} + +dependencies { + /** + * The LWJGL OpenGL Bindings are added because they're the same in all versions. + * They'll be available during runtime anyway. + */ + implementation platform("org.lwjgl:lwjgl-bom:3.3.2") + + implementation("org.lwjgl:lwjgl-opengl:3.3.2") + + implementation project(":Bridge") // You need to reference this in every module. + // You also need to reference the client project. +} + +test { + useJUnitPlatform() +} \ No newline at end of file diff --git a/Client/src/main/java/dev/refactoring/testclient/TestClient.java b/Client/src/main/java/dev/refactoring/testclient/TestClient.java new file mode 100644 index 0000000..93db67a --- /dev/null +++ b/Client/src/main/java/dev/refactoring/testclient/TestClient.java @@ -0,0 +1,20 @@ +package dev.refactoring.testclient; + +import dev.refactoring.bridge.core.BridgeManager; +import dev.refactoring.bridge.core.util.Ref; + +/** + * @author refactoring + */ +public class TestClient { + public static TestClient INSTANCE = new TestClient(); + + public static TestClient get() { + return INSTANCE; + } + + public void printFps() { + BridgeManager.INSTANCE.setWindowTitle("Test Client 1.0.0 | " + BridgeManager.INSTANCE.getVersion().getName()); + System.out.println(Ref.fps()); // This is how you use the methods. + } +} diff --git a/README.md b/README.md new file mode 100644 index 0000000..8cc9e44 --- /dev/null +++ b/README.md @@ -0,0 +1,4 @@ +# Bridge Base +An easy-to-use base with bridging already setup for client developers. + +

Bridge Base by Refactoring is licensed under Attribution 4.0 International

\ No newline at end of file diff --git a/build.gradle b/build.gradle new file mode 100644 index 0000000..a5ec231 --- /dev/null +++ b/build.gradle @@ -0,0 +1,16 @@ +plugins { + id "fabric-loom" version "1.4-SNAPSHOT" apply false + id 'java' + id "io.freefair.lombok" version '6.6.+' apply false +} + +group = 'dev.refactoring' +version = '1.0-SNAPSHOT' + +subprojects { + apply plugin: "io.freefair.lombok" +} + +repositories { + mavenCentral() +} \ No newline at end of file diff --git a/gradle.properties b/gradle.properties new file mode 100644 index 0000000..7d28631 --- /dev/null +++ b/gradle.properties @@ -0,0 +1 @@ +org.gradle.jvmargs=-Xmx1G \ No newline at end of file diff --git a/gradle/wrapper/gradle-wrapper.jar b/gradle/wrapper/gradle-wrapper.jar new file mode 100644 index 0000000000000000000000000000000000000000..249e5832f090a2944b7473328c07c9755baa3196 GIT binary patch literal 60756 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 '} + case $link in #( + /*) app_path=$link ;; #( + *) app_path=$APP_HOME$link ;; + esac +done + +APP_HOME=$( cd "${APP_HOME:-./}" && pwd -P ) || exit + +APP_NAME="Gradle" +APP_BASE_NAME=${0##*/} + +# Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. +DEFAULT_JVM_OPTS='"-Xmx64m" "-Xms64m"' + +# Use the maximum available, or set MAX_FD != -1 to use that value. +MAX_FD=maximum + +warn () { + echo "$*" +} >&2 + +die () { + echo + echo "$*" + echo + exit 1 +} >&2 + +# OS specific support (must be 'true' or 'false'). +cygwin=false +msys=false +darwin=false +nonstop=false +case "$( uname )" in #( + CYGWIN* ) cygwin=true ;; #( + Darwin* ) darwin=true ;; #( + MSYS* | MINGW* ) msys=true ;; #( + NONSTOP* ) nonstop=true ;; +esac + +CLASSPATH=$APP_HOME/gradle/wrapper/gradle-wrapper.jar + + +# Determine the Java command to use to start the JVM. +if [ -n "$JAVA_HOME" ] ; then + if [ -x "$JAVA_HOME/jre/sh/java" ] ; then + # IBM's JDK on AIX uses strange locations for the executables + JAVACMD=$JAVA_HOME/jre/sh/java + else + JAVACMD=$JAVA_HOME/bin/java + fi + if [ ! -x "$JAVACMD" ] ; then + die "ERROR: JAVA_HOME is set to an invalid directory: $JAVA_HOME + +Please set the JAVA_HOME variable in your environment to match the +location of your Java installation." + fi +else + JAVACMD=java + which java >/dev/null 2>&1 || die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. + +Please set the JAVA_HOME variable in your environment to match the +location of your Java installation." +fi + +# Increase the maximum file descriptors if we can. +if ! "$cygwin" && ! "$darwin" && ! "$nonstop" ; then + case $MAX_FD in #( + max*) + MAX_FD=$( ulimit -H -n ) || + warn "Could not query maximum file descriptor limit" + esac + case $MAX_FD in #( + '' | soft) :;; #( + *) + ulimit -n "$MAX_FD" || + warn "Could not set maximum file descriptor limit to $MAX_FD" + esac +fi + +# Collect all arguments for the java command, stacking in reverse order: +# * args from the command line +# * the main class name +# * -classpath +# * -D...appname settings +# * --module-path (only if needed) +# * DEFAULT_JVM_OPTS, JAVA_OPTS, and GRADLE_OPTS environment variables. + +# For Cygwin or MSYS, switch paths to Windows format before running java +if "$cygwin" || "$msys" ; then + APP_HOME=$( cygpath --path --mixed "$APP_HOME" ) + CLASSPATH=$( cygpath --path --mixed "$CLASSPATH" ) + + JAVACMD=$( cygpath --unix "$JAVACMD" ) + + # Now convert the arguments - kludge to limit ourselves to /bin/sh + for arg do + if + case $arg in #( + -*) false ;; # don't mess with options #( + /?*) t=${arg#/} t=/${t%%/*} # looks like a POSIX filepath + [ -e "$t" ] ;; #( + *) false ;; + esac + then + arg=$( cygpath --path --ignore --mixed "$arg" ) + fi + # Roll the args list around exactly as many times as the number of + # args, so each arg winds up back in the position where it started, but + # possibly modified. + # + # NB: a `for` loop captures its iteration list before it begins, so + # changing the positional parameters here affects neither the number of + # iterations, nor the values presented in `arg`. + shift # remove old arg + set -- "$@" "$arg" # push replacement arg + done +fi + +# Collect all arguments for the java command; +# * $DEFAULT_JVM_OPTS, $JAVA_OPTS, and $GRADLE_OPTS can contain fragments of +# shell script including quotes and variable substitutions, so put them in +# double quotes to make sure that they get re-expanded; and +# * put everything else in single quotes, so that it's not re-expanded. + +set -- \ + "-Dorg.gradle.appname=$APP_BASE_NAME" \ + -classpath "$CLASSPATH" \ + org.gradle.wrapper.GradleWrapperMain \ + "$@" + +# Use "xargs" to parse quoted args. +# +# With -n1 it outputs one arg per line, with the quotes and backslashes removed. +# +# In Bash we could simply go: +# +# readarray ARGS < <( xargs -n1 <<<"$var" ) && +# set -- "${ARGS[@]}" "$@" +# +# but POSIX shell has neither arrays nor command substitution, so instead we +# post-process each arg (as a line of input to sed) to backslash-escape any +# character that might be a shell metacharacter, then use eval to reverse +# that process (while maintaining the separation between arguments), and wrap +# the whole thing up as a single "set" statement. +# +# This will of course break if any of these variables contains a newline or +# an unmatched quote. +# + +eval "set -- $( + printf '%s\n' "$DEFAULT_JVM_OPTS $JAVA_OPTS $GRADLE_OPTS" | + xargs -n1 | + sed ' s~[^-[:alnum:]+,./:=@_]~\\&~g; ' | + tr '\n' ' ' + )" '"$@"' + +exec "$JAVACMD" "$@" diff --git a/gradlew.bat b/gradlew.bat new file mode 100644 index 0000000..107acd3 --- /dev/null +++ b/gradlew.bat @@ -0,0 +1,89 @@ +@rem +@rem Copyright 2015 the original author or authors. +@rem +@rem Licensed under the Apache License, Version 2.0 (the "License"); +@rem you may not use this file except in compliance with the License. +@rem You may obtain a copy of the License at +@rem +@rem https://www.apache.org/licenses/LICENSE-2.0 +@rem +@rem Unless required by applicable law or agreed to in writing, software +@rem distributed under the License is distributed on an "AS IS" BASIS, +@rem WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +@rem See the License for the specific language governing permissions and +@rem limitations under the License. +@rem + +@if "%DEBUG%" == "" @echo off +@rem ########################################################################## +@rem +@rem Gradle startup script for Windows +@rem +@rem ########################################################################## + +@rem Set local scope for the variables with windows NT shell +if "%OS%"=="Windows_NT" setlocal + +set DIRNAME=%~dp0 +if "%DIRNAME%" == "" set DIRNAME=. +set APP_BASE_NAME=%~n0 +set APP_HOME=%DIRNAME% + +@rem Resolve any "." and ".." in APP_HOME to make it shorter. +for %%i in ("%APP_HOME%") do set APP_HOME=%%~fi + +@rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. +set DEFAULT_JVM_OPTS="-Xmx64m" "-Xms64m" + +@rem Find java.exe +if defined JAVA_HOME goto findJavaFromJavaHome + +set JAVA_EXE=java.exe +%JAVA_EXE% -version >NUL 2>&1 +if "%ERRORLEVEL%" == "0" goto execute + +echo. +echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. +echo. +echo Please set the JAVA_HOME variable in your environment to match the +echo location of your Java installation. + +goto fail + +:findJavaFromJavaHome +set JAVA_HOME=%JAVA_HOME:"=% +set JAVA_EXE=%JAVA_HOME%/bin/java.exe + +if exist "%JAVA_EXE%" goto execute + +echo. +echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME% +echo. +echo Please set the JAVA_HOME variable in your environment to match the +echo location of your Java installation. + +goto fail + +:execute +@rem Setup the command line + +set CLASSPATH=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar + + +@rem Execute Gradle +"%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" org.gradle.wrapper.GradleWrapperMain %* + +:end +@rem End local scope for the variables with windows NT shell +if "%ERRORLEVEL%"=="0" goto mainEnd + +:fail +rem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of +rem the _cmd.exe /c_ return code! +if not "" == "%GRADLE_EXIT_CONSOLE%" exit 1 +exit /b 1 + +:mainEnd +if "%OS%"=="Windows_NT" endlocal + +:omega diff --git a/settings.gradle b/settings.gradle new file mode 100644 index 0000000..c5802f9 --- /dev/null +++ b/settings.gradle @@ -0,0 +1,24 @@ +pluginManagement { + repositories { + maven { + name = "Fabric" + url = "https://maven.fabricmc.net/" + } + maven { + name = "legacy-fabric" + url = "https://repo.legacyfabric.net/repository/legacyfabric/" + } + gradlePluginPortal() + } +} + +plugins { + id 'org.gradle.toolchains.foojay-resolver-convention' version '0.5.0' +} + +rootProject.name = 'BridgeBase' +include 'Client' +include 'Bridge' +include 'v1_8_9' +include 'v1_19_4' + diff --git a/v1_19_4/build.gradle b/v1_19_4/build.gradle new file mode 100644 index 0000000..1d3155d --- /dev/null +++ b/v1_19_4/build.gradle @@ -0,0 +1,74 @@ +plugins { + id 'org.jetbrains.kotlin.jvm' version '1.9.21' + id 'fabric-loom' version '1.4-SNAPSHOT' + id 'maven-publish' +} + +version = project.mod_version +group = project.maven_group + +base { + archivesName = project.archives_base_name +} + +repositories { + mavenCentral() + maven { + url "https://jitpack.io/" + } +} + +dependencies { + minecraft "com.mojang:minecraft:${project.minecraft_version}" + mappings "net.fabricmc:yarn:${project.yarn_mappings}:v2" + modImplementation "net.fabricmc:fabric-loader:${project.loader_version}" + + modImplementation "net.fabricmc.fabric-api:fabric-api:${project.fabric_version}" + + modImplementation "net.fabricmc.fabric-api:fabric-api-deprecated:${project.fabric_version}" + + implementation project(path: ':Bridge') + implementation project(path: ':Client') +} + +jar { + from { + configurations.extraLibs.collect { it.isDirectory() ? it : zipTree(it) } + } +} + +processResources { + inputs.property "version", project.version + + filesMatching("fabric.mod.json") { + expand "version": project.version + } +} + +tasks.withType(JavaCompile).configureEach { + it.options.release = 17 +} + +java { + withSourcesJar() + + sourceCompatibility = JavaVersion.VERSION_17 + targetCompatibility = JavaVersion.VERSION_17 +} + +jar { + from("LICENSE") { + rename { "${it}_${project.base.archivesName.get()}"} + } +} + +publishing { + publications { + mavenJava(MavenPublication) { + from components.java + } + } + + repositories { + } +} diff --git a/v1_19_4/gradle.properties b/v1_19_4/gradle.properties new file mode 100644 index 0000000..df7bda6 --- /dev/null +++ b/v1_19_4/gradle.properties @@ -0,0 +1,13 @@ + +org.gradle.jvmargs=-Xmx2G +org.gradle.parallel=true + +minecraft_version=1.19.4 +yarn_mappings=1.19.4+build.2 +loader_version=0.15.2 + +fabric_version=0.79.0+1.19.4 + +mod_version = 1.0.0 +maven_group = dev.refactoring +archives_base_name = TestClient1194 \ No newline at end of file diff --git a/v1_19_4/run/config/fabric/indigo-renderer.properties b/v1_19_4/run/config/fabric/indigo-renderer.properties new file mode 100644 index 0000000..07b14b5 --- /dev/null +++ b/v1_19_4/run/config/fabric/indigo-renderer.properties @@ -0,0 +1,8 @@ +#Indigo properties file +#Sun Dec 31 01:12:41 EST 2023 +debug-compare-lighting=auto +fix-exterior-vertex-lighting=auto +ambient-occlusion-mode=hybrid +always-tesselate-blocks=auto +fix-smooth-lighting-offset=auto +fix-luminous-block-ambient-occlusion=auto diff --git a/v1_19_4/run/crash-reports/crash-2023-12-31_01.11.41-client.txt b/v1_19_4/run/crash-reports/crash-2023-12-31_01.11.41-client.txt new file mode 100644 index 0000000..8230561 --- /dev/null +++ b/v1_19_4/run/crash-reports/crash-2023-12-31_01.11.41-client.txt @@ -0,0 +1,287 @@ +---- Minecraft Crash Report ---- +// Don't be sad, have a hug! <3 + +Time: 2023-12-31 01:11:41 +Description: Initializing game + +java.lang.NullPointerException: Cannot invoke "java.lang.CharSequence.length()" because "value" is null + at org.lwjgl.system.MemoryUtil.memLengthUTF8(MemoryUtil.java:2272) + at org.lwjgl.system.MemoryStack.nUTF8(MemoryStack.java:818) + at org.lwjgl.glfw.GLFW.glfwSetWindowTitle(GLFW.java:2347) + at net.minecraft.client.util.Window.setTitle(Window.java:552) + at net.minecraft.client.MinecraftClient.updateWindowTitle(MinecraftClient.java:702) + at net.minecraft.client.MinecraftClient.setScreen(MinecraftClient.java:1086) + at net.minecraft.client.MinecraftClient.(MinecraftClient.java:679) + at net.minecraft.client.main.Main.main(Main.java:198) + at net.fabricmc.loader.impl.game.minecraft.MinecraftGameProvider.launch(MinecraftGameProvider.java:470) + at net.fabricmc.loader.impl.launch.knot.Knot.launch(Knot.java:74) + at net.fabricmc.loader.impl.launch.knot.KnotClient.main(KnotClient.java:23) + at net.fabricmc.devlaunchinjector.Main.main(Main.java:86) + + +A detailed walkthrough of the error, its code path and all known details is as follows: +--------------------------------------------------------------------------------------- + +-- Head -- +Thread: Render thread +Stacktrace: + at org.lwjgl.system.MemoryUtil.memLengthUTF8(MemoryUtil.java:2272) + at org.lwjgl.system.MemoryStack.nUTF8(MemoryStack.java:818) + at org.lwjgl.glfw.GLFW.glfwSetWindowTitle(GLFW.java:2347) + at net.minecraft.client.util.Window.setTitle(Window.java:552) + at net.minecraft.client.MinecraftClient.updateWindowTitle(MinecraftClient.java:702) + at net.minecraft.client.MinecraftClient.setScreen(MinecraftClient.java:1086) + at net.minecraft.client.MinecraftClient.(MinecraftClient.java:679) + +-- Initialization -- +Details: + Modules: + ADVAPI32.dll:Advanced Windows 32 Base API:10.0.22621.1 (WinBuild.160101.0800):Microsoft Corporation + COMCTL32.dll:User Experience Controls Library:6.10 (WinBuild.160101.0800):Microsoft Corporation + CRYPT32.dll:Crypto API32:10.0.22621.1 (WinBuild.160101.0800):Microsoft Corporation + CRYPTBASE.dll:Base cryptographic API DLL:10.0.22621.1 (WinBuild.160101.0800):Microsoft Corporation + CRYPTSP.dll:Cryptographic Service Provider API:10.0.22621.2506 (WinBuild.160101.0800):Microsoft Corporation + CoreMessaging.dll:Microsoft CoreMessaging Dll:10.0.22621.2506 (WinBuild.160101.0800):Microsoft Corporation + CoreUIComponents.dll:Microsoft Core UI Components Dll:10.0.22621.2506:Microsoft Corporation + DBGHELP.DLL:Windows Image Helper:10.0.22621.2506 (WinBuild.160101.0800):Microsoft Corporation + DEVOBJ.dll:Device Information Set DLL:10.0.22621.2506 (WinBuild.160101.0800):Microsoft Corporation + DNSAPI.dll:DNS Client API DLL:10.0.22621.1 (WinBuild.160101.0800):Microsoft Corporation + GDI32.dll:GDI Client DLL:10.0.22621.2792 (WinBuild.160101.0800):Microsoft Corporation + GLU32.dll:OpenGL Utility Library DLL:10.0.22621.1 (WinBuild.160101.0800):Microsoft Corporation + IMM32.DLL:Multi-User Windows IMM32 API Client DLL:10.0.22621.2792 (WinBuild.160101.0800):Microsoft Corporation + IPHLPAPI.DLL:IP Helper API:10.0.22621.1 (WinBuild.160101.0800):Microsoft Corporation + KERNEL32.DLL:Windows NT BASE API Client DLL:10.0.22621.2506 (WinBuild.160101.0800):Microsoft Corporation + KERNELBASE.dll:Windows NT BASE API Client DLL:10.0.22621.2506 (WinBuild.160101.0800):Microsoft Corporation + MMDevApi.dll:MMDevice API:10.0.22621.1 (WinBuild.160101.0800):Microsoft Corporation + MSCTF.dll:MSCTF Server DLL:10.0.22621.1 (WinBuild.160101.0800):Microsoft Corporation + MessageBus.dll:NVIDIA Message Bus::NVIDIA Corporation + MpOav.dll:IOfficeAntiVirus Module:4.18.23110.3 (9ebb3643d539a6fc4659898b1df3124d5da4c0a9):Microsoft Corporation + NSI.dll:NSI User-mode interface DLL:10.0.22621.1 (WinBuild.160101.0800):Microsoft Corporation + NTASN1.dll:Microsoft ASN.1 API:10.0.22621.1 (WinBuild.160101.0800):Microsoft Corporation + OLEAUT32.dll:OLEAUT32.DLL:10.0.22621.2506 (WinBuild.160101.0800):Microsoft Corporation + Ole32.dll:Microsoft OLE for Windows:10.0.22621.1 (WinBuild.160101.0800):Microsoft Corporation + OpenAL.dll:Main implementation library:1.23.0: + POWRPROF.dll:Power Profile Helper DLL:10.0.22621.2506 (WinBuild.160101.0800):Microsoft Corporation + PSAPI.DLL:Process Status Helper:10.0.22621.1 (WinBuild.160101.0800):Microsoft Corporation + Pdh.dll:Windows Performance Data Helper DLL:10.0.22621.1 (WinBuild.160101.0800):Microsoft Corporation + RPCRT4.dll:Remote Procedure Call Runtime:10.0.22621.2506 (WinBuild.160101.0800):Microsoft Corporation + SETUPAPI.dll:Windows Setup API:10.0.22621.1 (WinBuild.160101.0800):Microsoft Corporation + SHCORE.dll:SHCORE:10.0.22621.1 (WinBuild.160101.0800):Microsoft Corporation + SHELL32.dll:Windows Shell Common Dll:10.0.22621.2792 (WinBuild.160101.0800):Microsoft Corporation + UMPDC.dll:User Mode Power Dependency Coordinator:10.0.22621.1 (WinBuild.160101.0800):Microsoft Corporation + USER32.dll:Multi-User Windows USER API Client DLL:10.0.22621.1 (WinBuild.160101.0800):Microsoft Corporation + USERENV.dll:Userenv:10.0.22621.1 (WinBuild.160101.0800):Microsoft Corporation + VCRUNTIME140.dll:Microsoft® C Runtime Library:14.31.31103.0:Microsoft Corporation + VERSION.dll:Version Checking and File Installation Libraries:10.0.22621.1 (WinBuild.160101.0800):Microsoft Corporation + WINHTTP.dll:Windows HTTP Services:10.0.22621.1 (WinBuild.160101.0800):Microsoft Corporation + WINMM.dll:MCI API DLL:10.0.22621.1 (WinBuild.160101.0800):Microsoft Corporation + WINSTA.dll:Winstation Library:10.0.22621.2506 (WinBuild.160101.0800):Microsoft Corporation + WS2_32.dll:Windows Socket 2.0 32-Bit DLL:10.0.22621.1 (WinBuild.160101.0800):Microsoft Corporation + WSOCK32.dll:Windows Socket 32-Bit DLL:10.0.22621.1 (WinBuild.160101.0800):Microsoft Corporation + WTSAPI32.dll:Windows Remote Desktop Session Host Server SDK APIs:10.0.22621.1 (WinBuild.160101.0800):Microsoft Corporation + amdihk64.dll:Radeon Settings: Host Service:2,00,00,1788:Advanced Micro Devices, Inc. + amsi.dll:Anti-Malware Scan Interface:10.0.22621.1 (WinBuild.160101.0800):Microsoft Corporation + apphelp.dll:Application Compatibility Client Library:10.0.22621.1 (WinBuild.160101.0800):Microsoft Corporation + aticfx64.dll:aticfx64.dll:8.17.10.1698:Advanced Micro Devices, Inc. + atidxx64.dll:atidxx64.dll:8.17.10.01077:Advanced Micro Devices, Inc. + atiuxp64.dll:atiuxpag.dll:8.14.01.6564:Advanced Micro Devices, Inc. + bcrypt.dll:Windows Cryptographic Primitives Library:10.0.22621.1 (WinBuild.160101.0800):Microsoft Corporation + bcryptPrimitives.dll:Windows Cryptographic Primitives Library:10.0.22621.2506 (WinBuild.160101.0800):Microsoft Corporation + cfgmgr32.dll:Configuration Manager DLL:10.0.22621.2506 (WinBuild.160101.0800):Microsoft Corporation + clbcatq.dll:COM+ Configuration Catalog:2001.12.10941.16384 (WinBuild.160101.0800):Microsoft Corporation + combase.dll:Microsoft COM for Windows:10.0.22621.1 (WinBuild.160101.0800):Microsoft Corporation + cryptnet.dll:Crypto Network Related API:10.0.22621.1 (WinBuild.160101.0800):Microsoft Corporation + d3d11.dll:Direct3D 11 Runtime:10.0.22621.2506 (WinBuild.160101.0800):Microsoft Corporation + dbgcore.DLL:Windows Core Debugging Helpers:10.0.22621.1 (WinBuild.160101.0800):Microsoft Corporation + dcomp.dll:Microsoft DirectComposition Library:10.0.22621.2715 (WinBuild.160101.0800):Microsoft Corporation + dhcpcsvc.DLL:DHCP Client Service:10.0.22621.1 (WinBuild.160101.0800):Microsoft Corporation + dhcpcsvc6.DLL:DHCPv6 Client:10.0.22621.1 (WinBuild.160101.0800):Microsoft Corporation + dinput8.dll:Microsoft DirectInput:10.0.22621.1 (WinBuild.160101.0800):Microsoft Corporation + directxdatabasehelper.dll:DirectXDatabaseHelper:10.0.22621.2506 (WinBuild.160101.0800):Microsoft Corporation + drvstore.dll:Driver Store API:10.0.22621.2506 (WinBuild.160101.0800):Microsoft Corporation + dwmapi.dll:Microsoft Desktop Window Manager API:10.0.22621.1 (WinBuild.160101.0800):Microsoft Corporation + dxcore.dll:DXCore:10.0.22621.2506 (WinBuild.160101.0800):Microsoft Corporation + dxgi.dll:DirectX Graphics Infrastructure:10.0.22621.2506 (WinBuild.160101.0800):Microsoft Corporation + fastprox.dll:WMI Custom Marshaller:10.0.22621.2506 (WinBuild.160101.0800):Microsoft Corporation + fwpuclnt.dll:FWP/IPsec User-Mode API:10.0.22621.2506 (WinBuild.160101.0800):Microsoft Corporation + gdi32full.dll:GDI Client DLL:10.0.22621.2861 (WinBuild.160101.0800):Microsoft Corporation + glfw.dll:GLFW 3.4.0 DLL:3.4.0:GLFW + gpapi.dll:Group Policy Client API:10.0.22621.1 (WinBuild.160101.0800):Microsoft Corporation + icm32.dll:Microsoft Color Management Module (CMM):10.0.22621.2506 (WinBuild.160101.0800):Microsoft Corporation + iertutil.dll:Run time utility for Internet Explorer:11.00.22621.1 (WinBuild.160101.0800):Microsoft Corporation + imagehlp.dll:Windows NT Image Helper:10.0.22621.1 (WinBuild.160101.0800):Microsoft Corporation + inputhost.dll:InputHost:10.0.22621.2506 (WinBuild.160101.0800):Microsoft Corporation + java.dll:OpenJDK Platform binary:17.0.8.0:GraalVM Community + java.exe:OpenJDK Platform binary:17.0.8.0:GraalVM Community + jemalloc.dll + jimage.dll:OpenJDK Platform binary:17.0.8.0:GraalVM Community + jli.dll:OpenJDK Platform binary:17.0.8.0:GraalVM Community + jna11795957237733681969.dll:JNA native library:6.1.4:Java(TM) Native Access (JNA) + jsvml.dll:OpenJDK Platform binary:17.0.8.0:GraalVM Community + jvm.dll:OpenJDK 64-Bit server VM:17.0.8.0:GraalVM Community + jvmcicompiler.dll + kernel.appcore.dll:AppModel API Host:10.0.22621.2715 (WinBuild.160101.0800):Microsoft Corporation + lwjgl.dll + lwjgl_opengl.dll + lwjgl_stb.dll + management.dll:OpenJDK Platform binary:17.0.8.0:GraalVM Community + management_ext.dll:OpenJDK Platform binary:17.0.8.0:GraalVM Community + msasn1.dll:ASN.1 Runtime APIs:10.0.22621.2506 (WinBuild.160101.0800):Microsoft Corporation + mscms.dll:Microsoft Color Matching System DLL:10.0.22621.1 (WinBuild.160101.0800):Microsoft Corporation + msvcp140.dll:Microsoft® C Runtime Library:14.31.31103.0:Microsoft Corporation + msvcp_win.dll:Microsoft® C Runtime Library:10.0.22621.2506 (WinBuild.160101.0800):Microsoft Corporation + msvcrt.dll:Windows NT CRT DLL:7.0.22621.2506 (WinBuild.160101.0800):Microsoft Corporation + mswsock.dll:Microsoft Windows Sockets 2.0 Service Provider:10.0.22621.1 (WinBuild.160101.0800):Microsoft Corporation + napinsp.dll:E-mail Naming Shim Provider:10.0.22621.1 (WinBuild.160101.0800):Microsoft Corporation + ncrypt.dll:Windows NCrypt Router:10.0.22621.1 (WinBuild.160101.0800):Microsoft Corporation + net.dll:OpenJDK Platform binary:17.0.8.0:GraalVM Community + netutils.dll:Net Win32 API Helpers DLL:10.0.22621.2506 (WinBuild.160101.0800):Microsoft Corporation + nio.dll:OpenJDK Platform binary:17.0.8.0:GraalVM Community + nlansp_c.dll:NLA Namespace Service Provider DLL:10.0.22621.2506 (WinBuild.160101.0800):Microsoft Corporation + ntdll.dll:NT Layer DLL:10.0.22621.2506 (WinBuild.160101.0800):Microsoft Corporation + ntmarta.dll:Windows NT MARTA provider:10.0.22621.1 (WinBuild.160101.0800):Microsoft Corporation + nvapi64.dll:NVIDIA NVAPI Library, Version 546.33 :31.0.15.4633:NVIDIA Corporation + nvgpucomp64.dll:NVIDIA GPU Compiler Driver, Version 546.33 :31.0.15.4633:NVIDIA Corporation + nvldumdx.dll:NVIDIA Driver Loader, Version 546.33 :31.0.15.4633:NVIDIA Corporation + nvoglv64.dll:NVIDIA Compatible OpenGL ICD:31.0.15.4633:NVIDIA Corporation + nvspcap64.dll:NVIDIA Game Proxy:3.27.0.120:NVIDIA Corporation + nvwgf2umx.dll:NVIDIA D3D10 Driver, Version 546.33 :31.0.15.4633:NVIDIA Corporation + opengl32.dll:OpenGL Client DLL:10.0.22621.2506 (WinBuild.160101.0800):Microsoft Corporation + perfos.dll:Windows System Performance Objects DLL:10.0.22621.1 (WinBuild.160101.0800):Microsoft Corporation + pfclient.dll:SysMain Client:10.0.22621.1 (WinBuild.160101.0800):Microsoft Corporation + pnrpnsp.dll:PNRP Name Space Provider:10.0.22621.1 (WinBuild.160101.0800):Microsoft Corporation + profapi.dll:User Profile Basic API:10.0.22621.2506 (WinBuild.160101.0800):Microsoft Corporation + rasadhlp.dll:Remote Access AutoDial Helper:10.0.22621.1 (WinBuild.160101.0800):Microsoft Corporation + rsaenh.dll:Microsoft Enhanced Cryptographic Provider:10.0.22621.1 (WinBuild.160101.0800):Microsoft Corporation + sapi.dll:Speech API:5.3.26906.00 (WinBuild.160101.0800):Microsoft Corporation + sechost.dll:Host for SCM/SDDL/LSA Lookup APIs:10.0.22621.1 (WinBuild.160101.0800):Microsoft Corporation + shlwapi.dll:Shell Light-weight Utility Library:10.0.22621.1 (WinBuild.160101.0800):Microsoft Corporation + srvcli.dll:Server Service Client DLL:10.0.22621.2506 (WinBuild.160101.0800):Microsoft Corporation + sunmscapi.dll:OpenJDK Platform binary:17.0.8.0:GraalVM Community + textinputframework.dll:"TextInputFramework.DYNLINK":10.0.22621.2792 (WinBuild.160101.0800):Microsoft Corporation + ucrtbase.dll:Microsoft® C Runtime Library:10.0.22621.2506 (WinBuild.160101.0800):Microsoft Corporation + urlmon.dll:OLE32 Extensions for Win32:11.00.22621.2506 (WinBuild.160101.0800):Microsoft Corporation + uxtheme.dll:Microsoft UxTheme Library:10.0.22621.1 (WinBuild.160101.0800):Microsoft Corporation + vcruntime140_1.dll:Microsoft® C Runtime Library:14.31.31103.0:Microsoft Corporation + verify.dll:OpenJDK Platform binary:17.0.8.0:GraalVM Community + wbemcomn.dll:WMI:10.0.22621.2506 (WinBuild.160101.0800):Microsoft Corporation + wbemprox.dll:WMI:10.0.22621.2792 (WinBuild.160101.0800):Microsoft Corporation + wbemsvc.dll:WMI:10.0.22621.2792 (WinBuild.160101.0800):Microsoft Corporation + win32u.dll:Win32u:10.0.22621.2861 (WinBuild.160101.0800):Microsoft Corporation + windows.storage.dll:Microsoft WinRT Storage API:10.0.22621.2506 (WinBuild.160101.0800):Microsoft Corporation + winrnr.dll:LDAP RnR Provider DLL:10.0.22621.1 (WinBuild.160101.0800):Microsoft Corporation + wintrust.dll:Microsoft Trust Verification APIs:10.0.22621.2792 (WinBuild.160101.0800):Microsoft Corporation + wintypes.dll:Windows Base Types DLL:10.0.22621.1 (WinBuild.160101.0800):Microsoft Corporation + wldp.dll:Windows Lockdown Policy:10.0.22621.2506 (WinBuild.160101.0800):Microsoft Corporation + wshbth.dll:Windows Sockets Helper DLL:10.0.22621.2506 (WinBuild.160101.0800):Microsoft Corporation + xinput1_4.dll:Microsoft Common Controller API:10.0.22621.1 (WinBuild.160101.0800):Microsoft Corporation + zip.dll:OpenJDK Platform binary:17.0.8.0:GraalVM Community +Stacktrace: + at net.minecraft.client.main.Main.main(Main.java:198) + at net.fabricmc.loader.impl.game.minecraft.MinecraftGameProvider.launch(MinecraftGameProvider.java:470) + at net.fabricmc.loader.impl.launch.knot.Knot.launch(Knot.java:74) + at net.fabricmc.loader.impl.launch.knot.KnotClient.main(KnotClient.java:23) + at net.fabricmc.devlaunchinjector.Main.main(Main.java:86) + +-- System Details -- +Details: + Minecraft Version: 1.19.4 + Minecraft Version ID: 1.19.4 + Operating System: Windows 11 (amd64) version 10.0 + Java Version: 17.0.8, GraalVM Community + Java VM Version: OpenJDK 64-Bit Server VM (mixed mode, sharing), GraalVM Community + Memory: 142410672 bytes (135 MiB) / 420478976 bytes (401 MiB) up to 1975517184 bytes (1884 MiB) + CPUs: 12 + Processor Vendor: AuthenticAMD + Processor Name: AMD Ryzen 5 5600H with Radeon Graphics + Identifier: AuthenticAMD Family 25 Model 80 Stepping 0 + Microarchitecture: Zen 3 + Frequency (GHz): 3.29 + Number of physical packages: 1 + Number of physical CPUs: 6 + Number of logical CPUs: 12 + Graphics card #0 name: AMD Radeon(TM) Graphics + Graphics card #0 vendor: Advanced Micro Devices, Inc. (0x1002) + Graphics card #0 VRAM (MB): 512.00 + Graphics card #0 deviceId: 0x1638 + Graphics card #0 versionInfo: DriverVersion=31.0.12044.56000 + Graphics card #1 name: NVIDIA GeForce RTX 3050 Laptop GPU + Graphics card #1 vendor: NVIDIA (0x10de) + Graphics card #1 VRAM (MB): 4095.00 + Graphics card #1 deviceId: 0x25a2 + Graphics card #1 versionInfo: DriverVersion=31.0.15.4633 + Memory slot #0 capacity (MB): 8192.00 + Memory slot #0 clockSpeed (GHz): 3.20 + Memory slot #0 type: DDR4 + Virtual memory max (MB): 24742.25 + Virtual memory used (MB): 20347.82 + Swap memory total (MB): 17210.18 + Swap memory used (MB): 2594.88 + JVM Flags: 5 total; -XX:ThreadPriorityPolicy=1 -XX:+UnlockExperimentalVMOptions -XX:+EnableJVMCIProduct -XX:JVMCIThreadsPerNativeLibraryRuntime=1 -XX:-UnlockExperimentalVMOptions + Fabric Mods: + fabric-api: Fabric API 0.79.0+1.19.4 + fabric-api-base: Fabric API Base 0.4.24+9ff28bcef4 + fabric-api-lookup-api-v1: Fabric API Lookup API (v1) 1.6.25+49abcf7ef4 + fabric-biome-api-v1: Fabric Biome API (v1) 13.0.7+348a9c64f4 + fabric-block-api-v1: Fabric Block API (v1) 1.0.6+e022e5d1f4 + fabric-blockrenderlayer-v1: Fabric BlockRenderLayer Registration (v1) 1.1.34+c2e6f674f4 + fabric-client-tags-api-v1: Fabric Client Tags 1.0.15+1134c5b8f4 + fabric-command-api-v1: Fabric Command API (v1) 1.2.27+f71b366ff4 + fabric-command-api-v2: Fabric Command API (v2) 2.2.6+e719b857f4 + fabric-commands-v0: Fabric Commands (v0) 0.2.44+df3654b3f4 + fabric-containers-v0: Fabric Containers (v0) 0.1.54+df3654b3f4 + fabric-content-registries-v0: Fabric Content Registries (v0) 3.5.9+ae0966baf4 + fabric-convention-tags-v1: Fabric Convention Tags 1.4.1+9a7c5daaf4 + fabric-crash-report-info-v1: Fabric Crash Report Info (v1) 0.2.15+aeb40ebef4 + fabric-data-generation-api-v1: Fabric Data Generation API (v1) 11.4.0+6cebf059f4 + fabric-dimensions-v1: Fabric Dimensions API (v1) 2.1.45+7f87f8faf4 + fabric-entity-events-v1: Fabric Entity Events (v1) 1.5.13+e45f7c65f4 + fabric-events-interaction-v0: Fabric Events Interaction (v0) 0.4.43+a1ccd7bff4 + fabric-events-lifecycle-v0: Fabric Events Lifecycle (v0) 0.2.52+df3654b3f4 + fabric-game-rule-api-v1: Fabric Game Rule API (v1) 1.0.33+a1ccd7bff4 + fabric-gametest-api-v1: Fabric Game Test API (v1) 1.2.4+ae0966baf4 + fabric-item-api-v1: Fabric Item API (v1) 2.1.17+09a3510cf4 + fabric-item-group-api-v1: Fabric Item Group API (v1) 3.0.5+043f9acff4 + fabric-key-binding-api-v1: Fabric Key Binding API (v1) 1.0.33+c477957ef4 + fabric-keybindings-v0: Fabric Key Bindings (v0) 0.2.31+df3654b3f4 + fabric-lifecycle-events-v1: Fabric Lifecycle Events (v1) 2.2.15+5da15ca1f4 + fabric-loot-api-v2: Fabric Loot API (v2) 1.1.27+75e98211f4 + fabric-loot-tables-v1: Fabric Loot Tables (v1) 1.1.31+9e7660c6f4 + fabric-message-api-v1: Fabric Message API (v1) 5.1.1+1ee8be40f4 + fabric-mining-level-api-v1: Fabric Mining Level API (v1) 2.1.39+49abcf7ef4 + fabric-models-v0: Fabric Models (v0) 0.3.30+11ba9c3bf4 + fabric-networking-api-v1: Fabric Networking API (v1) 1.3.1+a6f3ccfaf4 + fabric-networking-v0: Fabric Networking (v0) 0.3.41+df3654b3f4 + fabric-object-builder-api-v1: Fabric Object Builder API (v1) 7.0.3+63b515f4f4 + fabric-particles-v1: Fabric Particles (v1) 1.0.23+f1e4495bf4 + fabric-recipe-api-v1: Fabric Recipe API (v1) 1.0.8+a1ccd7bff4 + fabric-registry-sync-v0: Fabric Registry Sync (v0) 2.2.0+670e8ac6f4 + fabric-renderer-api-v1: Fabric Renderer API (v1) 2.2.5+81e8c576f4 + fabric-renderer-indigo: Fabric Renderer - Indigo 1.1.1+81e8c576f4 + fabric-renderer-registries-v1: Fabric Renderer Registries (v1) 3.2.38+df3654b3f4 + fabric-rendering-data-attachment-v1: Fabric Rendering Data Attachment (v1) 0.3.28+afca2f3ef4 + fabric-rendering-fluids-v1: Fabric Rendering Fluids (v1) 3.0.21+f1e4495bf4 + fabric-rendering-v0: Fabric Rendering (v0) 1.1.41+df3654b3f4 + fabric-rendering-v1: Fabric Rendering (v1) 2.1.1+8f878217f4 + fabric-resource-conditions-api-v1: Fabric Resource Conditions API (v1) 2.3.1+e6c7d4eef4 + fabric-resource-loader-v0: Fabric Resource Loader (v0) 0.11.2+1e1fb126f4 + fabric-screen-api-v1: Fabric Screen API (v1) 1.0.45+8c25edb4f4 + fabric-screen-handler-api-v1: Fabric Screen Handler API (v1) 1.3.20+5da15ca1f4 + fabric-sound-api-v1: Fabric Sound API (v1) 1.0.9+75e98211f4 + fabric-transfer-api-v1: Fabric Transfer API (v1) 3.1.1+da9bb835f4 + fabric-transitive-access-wideners-v1: Fabric Transitive Access Wideners (v1) 3.0.3+63b515f4f4 + fabricloader: Fabric Loader 0.15.2 + java: OpenJDK 64-Bit Server VM 17 + minecraft: Minecraft 1.19.4 + mixinextras: MixinExtras 0.3.2 + testclient: Test Client 1.0.0 + Launched Version: Fabric + Backend library: LWJGL version 3.3.2-snapshot + Backend API: NVIDIA GeForce RTX 3050 Laptop GPU/PCIe/SSE2 GL version 3.2.0 NVIDIA 546.33, NVIDIA Corporation + Window size: + GL Caps: Using framebuffer using OpenGL 3.2 + GL debug messages: + Using VBOs: Yes + Is Modded: Definitely; Client brand changed to 'fabric' + Type: Client (map_client.txt) + CPU: 12x AMD Ryzen 5 5600H with Radeon Graphics \ No newline at end of file diff --git a/v1_19_4/run/data/fabricDefaultResourcePacks.dat b/v1_19_4/run/data/fabricDefaultResourcePacks.dat new file mode 100644 index 0000000000000000000000000000000000000000..9f907f8328f2fd11b435ba96ea34591bd7219161 GIT binary patch literal 34 lcmb2|=3oGW|BsUr9;75_d!Nzt)lFkyW|+9r;j9o)3IM4!38DZ1 literal 0 HcmV?d00001 diff --git a/v1_19_4/run/logs/2023-12-31-1.log.gz b/v1_19_4/run/logs/2023-12-31-1.log.gz new file mode 100644 index 0000000000000000000000000000000000000000..e10c2896a1d10d274b6b5f3c524cc0ef25901b90 GIT binary patch literal 2372 zcmV-K3A^?miwFP!00000|IJxjZ``;Qer|yL2kujBXvGnA*Pvd!axp8G=qf8Xt7s|^!6d>i`kaY7qzRFxL>49< zwx2%v(1-~h5Yuz^e6%W)dj9mupG=f0h)LHOa0?=A8Cu-%of*@b1Hi?$YeZ>khcV;n zAt*1)`^{QCZV9OEW7{*_h{h}phUhpeSG)r{7(^S68`6mR?hu%l?7rt{Vc+1EZF4Un zV_d}x*l137ywY%j9oJws_ftO@@@09(3tn?mi)#l(ncz`TSWpetJ60rPcP2{S9wQsSlNU^dEQ z*W&Te%?TCMTyjvIDjBW$qzudO8IM!Ti-siGiWfD2l`_B@yPgrGA^b~++DN^{&g60f zjpiOEj=^0o4Vdo@!5Wo;eJaY7GRl@Nb{&Hf#*!dTrzr9)7vFli1F7*<3bk63JsTUKSCfHJK-!*ZQ8qHHMtp6?(B z3t0{h)MaiEMBYKV0=z+Y!RnA{GxYZA9b@Ydfp{Vwqr=37njzX;kqHZF6?i-fZ8Cuq zG|qY5Nclra?Fe^9xNmGaLki?z$T}S5GowRd~krP%T2|&EYnFQR8j1#DI<#e zEJ$2_sCGk@t8>3OGa$1d2S^$dduY*`Rh$?5&WC~`o!?;LOTa^$SD4QfSisR7n#!#@u7UGpL$aM2F^iBG3)b5$ihJ3$clFOgy zmLd|!$JIfrrPsc|>K71K>mZSfvSjPdLG8x+y3T8MC3&5q+jUti`E~gj0ysfei@z`4 zqT5Ye?`kOB=oi=mc=$OaANJ6#a^dqd%lUkEKA-)qhS#&I1mn-}vZCOD8G|_H^$d#A zMkcvElW6!KlNnSMtoOZQvs%eD)sALh0GWsC2UfCXVd6ksL;-WS1v$^cgeH#blF%c} zvmGddl>14@2aL=yBm9Y0=$2R83^f0_D8;PlRxgU}^YhEa#oPDaW-#?DX?xy8R_Ssr zGZ(GsdM!^Ql$Mot6{@&g^I_nXMRD? zFM5>Ug$lrbHby-~ivmKQ=GpK1hR`9#+*}ZTa{Z#Ls3A#_x#!Q&AXS+ z`i%#pjbGf{yt^6h{1t_yPGtCi8ds81pZTua)ibqS!*X zBoFLK~-CusgU|Ls1aWC!8F^ zDILfkq{N@0#T0*eShnYVAJIb(v?Actrh*UUo;*UMP2!Ws^pfXH7xP#jjfZhEt-v8j zNemoYO6)j7D_<>nVn&JO#|eoXV(Jsx+&|#(j#dRGzme!S7wh+i>XNYyw~BAqw{h8| zhOTS<4>XjA1iq4g$CHmZfZC;;@$kesOn#LL_C^M@@!ia>y5Y-@VJ`Jtnfc6 zf{%(`a&aV)!~cUb$BrIU0%MFKv??q9P}4B(mTtKavO$ChsOIQe4MhE@Z#ljCy{B0h zbY0(-qGRonuV8({^JcVt)7*WpXhD~9^IKX#(@B49FA-N|Qn!sZ`kC+03q99DXV(jK zvL&Y-@Y*pt^x6(pfSVu-OU)C zshctSwYeD&aSM6d9B)fb3f@XLGr!2H%Ie%|O&)6_O~o=Zl}Wb6S@^R;XsVK4U&WNUPv0dT8D zue)y;69J(ILhtFaKG?ammm)vwW{#s8(0qP5M*d1o9*0!d?Ob=bEET&{U*IN!Mvug& qY}86Rut6!t5xx&Ttcd#Er95g{uhJ&Y$?56SC;tZ8kX8H&9RL9NrK<1% literal 0 HcmV?d00001 diff --git a/v1_19_4/run/logs/debug-1.log.gz b/v1_19_4/run/logs/debug-1.log.gz new file mode 100644 index 0000000000000000000000000000000000000000..8e64f775eefbc2461f5d79fe5a00d0551d21136c GIT binary patch literal 25151 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

v765f@Og0e&cJ9cbAd1{z?@`0!sR1xa*hqeGe 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 literal 0 HcmV?d00001 diff --git a/v1_19_4/run/logs/debug.log b/v1_19_4/run/logs/debug.log new file mode 100644 index 0000000..2f014d2 --- /dev/null +++ b/v1_19_4/run/logs/debug.log @@ -0,0 +1,1715 @@ +[01:12:29] [main/INFO] (FabricLoader/GameProvider) Loading Minecraft 1.19.4 with Fabric Loader 0.15.2 +[01:12:29] [main/DEBUG] (FabricLoader/GamePatch) Found game constructor: net.minecraft.client.main.Main -> net.minecraft.client.MinecraftClient +[01:12:29] [main/DEBUG] (FabricLoader/GamePatch) Patching game constructor (Lnet/minecraft/client/RunArgs;)V +[01:12:29] [main/DEBUG] (FabricLoader/GamePatch) Run directory field is thought to be net/minecraft/client/MinecraftClient/runDirectory +[01:12:29] [main/DEBUG] (FabricLoader/GamePatch) Applying brand name hook to net/minecraft/client/ClientBrandRetriever::getClientModName +[01:12:29] [main/DEBUG] (FabricLoader/GamePatch) Applying brand name hook to net/minecraft/server/MinecraftServer::getServerModName +[01:12:29] [main/DEBUG] (FabricLoader/Mappings) Loading mappings took 131 ms +[01:12:29] [main/DEBUG] (FabricLoader/GamePatch) Patched 3 classs +[01:12:30] [main/DEBUG] (FabricLoader/Discovery) Mod discovery time: 52.2 ms +[01:12:30] [main/DEBUG] (FabricLoader/Resolution) Mod resolution time: 55.7 ms +[01:12:30] [main/INFO] (FabricLoader) Loading 56 mods: + - fabric-api 0.79.0+1.19.4 + - fabric-api-base 0.4.24+9ff28bcef4 + - fabric-api-lookup-api-v1 1.6.25+49abcf7ef4 + - fabric-biome-api-v1 13.0.7+348a9c64f4 + - fabric-block-api-v1 1.0.6+e022e5d1f4 + - fabric-blockrenderlayer-v1 1.1.34+c2e6f674f4 + - fabric-client-tags-api-v1 1.0.15+1134c5b8f4 + - fabric-command-api-v1 1.2.27+f71b366ff4 + - fabric-command-api-v2 2.2.6+e719b857f4 + - fabric-commands-v0 0.2.44+df3654b3f4 + - fabric-containers-v0 0.1.54+df3654b3f4 + - fabric-content-registries-v0 3.5.9+ae0966baf4 + - fabric-convention-tags-v1 1.4.1+9a7c5daaf4 + - fabric-crash-report-info-v1 0.2.15+aeb40ebef4 + - fabric-data-generation-api-v1 11.4.0+6cebf059f4 + - fabric-dimensions-v1 2.1.45+7f87f8faf4 + - fabric-entity-events-v1 1.5.13+e45f7c65f4 + - fabric-events-interaction-v0 0.4.43+a1ccd7bff4 + - fabric-events-lifecycle-v0 0.2.52+df3654b3f4 + - fabric-game-rule-api-v1 1.0.33+a1ccd7bff4 + - fabric-gametest-api-v1 1.2.4+ae0966baf4 + - fabric-item-api-v1 2.1.17+09a3510cf4 + - fabric-item-group-api-v1 3.0.5+043f9acff4 + - fabric-key-binding-api-v1 1.0.33+c477957ef4 + - fabric-keybindings-v0 0.2.31+df3654b3f4 + - fabric-lifecycle-events-v1 2.2.15+5da15ca1f4 + - fabric-loot-api-v2 1.1.27+75e98211f4 + - fabric-loot-tables-v1 1.1.31+9e7660c6f4 + - fabric-message-api-v1 5.1.1+1ee8be40f4 + - fabric-mining-level-api-v1 2.1.39+49abcf7ef4 + - fabric-models-v0 0.3.30+11ba9c3bf4 + - fabric-networking-api-v1 1.3.1+a6f3ccfaf4 + - fabric-networking-v0 0.3.41+df3654b3f4 + - fabric-object-builder-api-v1 7.0.3+63b515f4f4 + - fabric-particles-v1 1.0.23+f1e4495bf4 + - fabric-recipe-api-v1 1.0.8+a1ccd7bff4 + - fabric-registry-sync-v0 2.2.0+670e8ac6f4 + - fabric-renderer-api-v1 2.2.5+81e8c576f4 + - fabric-renderer-indigo 1.1.1+81e8c576f4 + - fabric-renderer-registries-v1 3.2.38+df3654b3f4 + - fabric-rendering-data-attachment-v1 0.3.28+afca2f3ef4 + - fabric-rendering-fluids-v1 3.0.21+f1e4495bf4 + - fabric-rendering-v0 1.1.41+df3654b3f4 + - fabric-rendering-v1 2.1.1+8f878217f4 + - fabric-resource-conditions-api-v1 2.3.1+e6c7d4eef4 + - fabric-resource-loader-v0 0.11.2+1e1fb126f4 + - fabric-screen-api-v1 1.0.45+8c25edb4f4 + - fabric-screen-handler-api-v1 1.3.20+5da15ca1f4 + - fabric-sound-api-v1 1.0.9+75e98211f4 + - fabric-transfer-api-v1 3.1.1+da9bb835f4 + - fabric-transitive-access-wideners-v1 3.0.3+63b515f4f4 + - fabricloader 0.15.2 + - java 17 + - minecraft 1.19.4 + - mixinextras 0.3.2 + - testclient 1.0.0 +[01:12:30] [main/DEBUG] (FabricLoader/Knot) Adding D:\BridgeBase\.gradle\loom-cache\remapped_mods\net_fabricmc_yarn_1_19_4_1_19_4_build_2_v2\net\fabricmc\fabric-api\fabric-entity-events-v1\1.5.13+e45f7c65f4\fabric-entity-events-v1-1.5.13+e45f7c65f4.jar to classpath. +[01:12:30] [main/DEBUG] (FabricLoader/Knot) Adding D:\BridgeBase\.gradle\loom-cache\remapped_mods\net_fabricmc_yarn_1_19_4_1_19_4_build_2_v2\net\fabricmc\fabric-api\fabric-screen-handler-api-v1\1.3.20+5da15ca1f4\fabric-screen-handler-api-v1-1.3.20+5da15ca1f4.jar to classpath. +[01:12:30] [main/DEBUG] (FabricLoader/Knot) Adding D:\BridgeBase\.gradle\loom-cache\remapped_mods\net_fabricmc_yarn_1_19_4_1_19_4_build_2_v2\net\fabricmc\fabric-api\fabric-keybindings-v0\0.2.31+df3654b3f4\fabric-keybindings-v0-0.2.31+df3654b3f4.jar to classpath. +[01:12:30] [main/DEBUG] (FabricLoader/Knot) Adding D:\BridgeBase\.gradle\loom-cache\remapped_mods\net_fabricmc_yarn_1_19_4_1_19_4_build_2_v2\net\fabricmc\fabric-api\fabric-loot-tables-v1\1.1.31+9e7660c6f4\fabric-loot-tables-v1-1.1.31+9e7660c6f4.jar to classpath. +[01:12:30] [main/DEBUG] (FabricLoader/Knot) Adding D:\BridgeBase\.gradle\loom-cache\remapped_mods\net_fabricmc_yarn_1_19_4_1_19_4_build_2_v2\net\fabricmc\fabric-api\fabric-commands-v0\0.2.44+df3654b3f4\fabric-commands-v0-0.2.44+df3654b3f4.jar to classpath. +[01:12:30] [main/DEBUG] (FabricLoader/Knot) Adding D:\BridgeBase\.gradle\loom-cache\remapped_mods\net_fabricmc_yarn_1_19_4_1_19_4_build_2_v2\net\fabricmc\fabric-api\fabric-item-group-api-v1\3.0.5+043f9acff4\fabric-item-group-api-v1-3.0.5+043f9acff4.jar to classpath. +[01:12:30] [main/DEBUG] (FabricLoader/Knot) Adding D:\BridgeBase\.gradle\loom-cache\remapped_mods\net_fabricmc_yarn_1_19_4_1_19_4_build_2_v2\net\fabricmc\fabric-api\fabric-lifecycle-events-v1\2.2.15+5da15ca1f4\fabric-lifecycle-events-v1-2.2.15+5da15ca1f4.jar to classpath. +[01:12:30] [main/DEBUG] (FabricLoader/Knot) Adding D:\BridgeBase\.gradle\loom-cache\remapped_mods\net_fabricmc_yarn_1_19_4_1_19_4_build_2_v2\net\fabricmc\fabric-api\fabric-renderer-registries-v1\3.2.38+df3654b3f4\fabric-renderer-registries-v1-3.2.38+df3654b3f4.jar to classpath. +[01:12:30] [main/DEBUG] (FabricLoader/Knot) Adding D:\BridgeBase\.gradle\loom-cache\remapped_mods\net_fabricmc_yarn_1_19_4_1_19_4_build_2_v2\net\fabricmc\fabric-api\fabric-api-lookup-api-v1\1.6.25+49abcf7ef4\fabric-api-lookup-api-v1-1.6.25+49abcf7ef4.jar to classpath. +[01:12:30] [main/DEBUG] (FabricLoader/Knot) Adding D:\BridgeBase\.gradle\loom-cache\remapped_mods\net_fabricmc_yarn_1_19_4_1_19_4_build_2_v2\net\fabricmc\fabric-api\fabric-screen-api-v1\1.0.45+8c25edb4f4\fabric-screen-api-v1-1.0.45+8c25edb4f4.jar to classpath. +[01:12:30] [main/DEBUG] (FabricLoader/Knot) Adding D:\BridgeBase\.gradle\loom-cache\remapped_mods\net_fabricmc_yarn_1_19_4_1_19_4_build_2_v2\net\fabricmc\fabric-api\fabric-content-registries-v0\3.5.9+ae0966baf4\fabric-content-registries-v0-3.5.9+ae0966baf4.jar to classpath. +[01:12:30] [main/DEBUG] (FabricLoader/Knot) Adding D:\BridgeBase\.gradle\loom-cache\remapped_mods\net_fabricmc_yarn_1_19_4_1_19_4_build_2_v2\net\fabricmc\fabric-api\fabric-resource-loader-v0\0.11.2+1e1fb126f4\fabric-resource-loader-v0-0.11.2+1e1fb126f4.jar to classpath. +[01:12:30] [main/DEBUG] (FabricLoader/Knot) Adding D:\BridgeBase\.gradle\loom-cache\remapped_mods\net_fabricmc_yarn_1_19_4_1_19_4_build_2_v2\net\fabricmc\fabric-api\fabric-key-binding-api-v1\1.0.33+c477957ef4\fabric-key-binding-api-v1-1.0.33+c477957ef4.jar to classpath. +[01:12:30] [main/DEBUG] (FabricLoader/Knot) Adding D:\BridgeBase\.gradle\loom-cache\remapped_mods\net_fabricmc_yarn_1_19_4_1_19_4_build_2_v2\net\fabricmc\fabric-api\fabric-item-api-v1\2.1.17+09a3510cf4\fabric-item-api-v1-2.1.17+09a3510cf4.jar to classpath. +[01:12:30] [main/DEBUG] (FabricLoader/Knot) Adding D:\BridgeBase\.gradle\loom-cache\remapped_mods\net_fabricmc_yarn_1_19_4_1_19_4_build_2_v2\net\fabricmc\fabric-api\fabric-biome-api-v1\13.0.7+348a9c64f4\fabric-biome-api-v1-13.0.7+348a9c64f4.jar to classpath. +[01:12:30] [main/DEBUG] (FabricLoader/Knot) Adding D:\BridgeBase\.gradle\loom-cache\remapped_mods\net_fabricmc_yarn_1_19_4_1_19_4_build_2_v2\net\fabricmc\fabric-api\fabric-blockrenderlayer-v1\1.1.34+c2e6f674f4\fabric-blockrenderlayer-v1-1.1.34+c2e6f674f4.jar to classpath. +[01:12:30] [main/DEBUG] (FabricLoader/Knot) Adding D:\BridgeBase\.gradle\loom-cache\remapped_mods\net_fabricmc_yarn_1_19_4_1_19_4_build_2_v2\net\fabricmc\fabric-api\fabric-sound-api-v1\1.0.9+75e98211f4\fabric-sound-api-v1-1.0.9+75e98211f4.jar to classpath. +[01:12:30] [main/DEBUG] (FabricLoader/Knot) Adding D:\BridgeBase\.gradle\loom-cache\remapped_mods\net_fabricmc_yarn_1_19_4_1_19_4_build_2_v2\net\fabricmc\fabric-api\fabric-client-tags-api-v1\1.0.15+1134c5b8f4\fabric-client-tags-api-v1-1.0.15+1134c5b8f4.jar to classpath. +[01:12:30] [main/DEBUG] (FabricLoader/Knot) Adding D:\BridgeBase\.gradle\loom-cache\remapped_mods\net_fabricmc_yarn_1_19_4_1_19_4_build_2_v2\net\fabricmc\fabric-api\fabric-networking-v0\0.3.41+df3654b3f4\fabric-networking-v0-0.3.41+df3654b3f4.jar to classpath. +[01:12:30] [main/DEBUG] (FabricLoader/Knot) Adding D:\BridgeBase\.gradle\loom-cache\remapped_mods\net_fabricmc_yarn_1_19_4_1_19_4_build_2_v2\net\fabricmc\fabric-api\fabric-networking-api-v1\1.3.1+a6f3ccfaf4\fabric-networking-api-v1-1.3.1+a6f3ccfaf4.jar to classpath. +[01:12:30] [main/DEBUG] (FabricLoader/Knot) Adding D:\BridgeBase\.gradle\loom-cache\remapped_mods\net_fabricmc_yarn_1_19_4_1_19_4_build_2_v2\net\fabricmc\fabric-api\fabric-command-api-v2\2.2.6+e719b857f4\fabric-command-api-v2-2.2.6+e719b857f4.jar to classpath. +[01:12:30] [main/DEBUG] (FabricLoader/Knot) Adding D:\BridgeBase\.gradle\loom-cache\remapped_mods\net_fabricmc_yarn_1_19_4_1_19_4_build_2_v2\net\fabricmc\fabric-api\fabric-mining-level-api-v1\2.1.39+49abcf7ef4\fabric-mining-level-api-v1-2.1.39+49abcf7ef4.jar to classpath. +[01:12:30] [main/DEBUG] (FabricLoader/Knot) Adding D:\BridgeBase\.gradle\loom-cache\remapped_mods\net_fabricmc_yarn_1_19_4_1_19_4_build_2_v2\net\fabricmc\fabric-api\fabric-rendering-fluids-v1\3.0.21+f1e4495bf4\fabric-rendering-fluids-v1-3.0.21+f1e4495bf4.jar to classpath. +[01:12:30] [main/DEBUG] (FabricLoader/Knot) Adding D:\BridgeBase\.gradle\loom-cache\remapped_mods\net_fabricmc_yarn_1_19_4_1_19_4_build_2_v2\net\fabricmc\fabric-api\fabric-dimensions-v1\2.1.45+7f87f8faf4\fabric-dimensions-v1-2.1.45+7f87f8faf4.jar to classpath. +[01:12:30] [main/DEBUG] (FabricLoader/Knot) Adding D:\BridgeBase\.gradle\loom-cache\remapped_mods\net_fabricmc_yarn_1_19_4_1_19_4_build_2_v2\net\fabricmc\fabric-api\fabric-game-rule-api-v1\1.0.33+a1ccd7bff4\fabric-game-rule-api-v1-1.0.33+a1ccd7bff4.jar to classpath. +[01:12:30] [main/DEBUG] (FabricLoader/Knot) Adding D:\BridgeBase\.gradle\loom-cache\remapped_mods\net_fabricmc_yarn_1_19_4_1_19_4_build_2_v2\net\fabricmc\fabric-api\fabric-api\0.79.0+1.19.4\fabric-api-0.79.0+1.19.4.jar to classpath. +[01:12:30] [main/DEBUG] (FabricLoader/Knot) Adding D:\BridgeBase\.gradle\loom-cache\remapped_mods\net_fabricmc_yarn_1_19_4_1_19_4_build_2_v2\net\fabricmc\fabric-api\fabric-rendering-data-attachment-v1\0.3.28+afca2f3ef4\fabric-rendering-data-attachment-v1-0.3.28+afca2f3ef4.jar to classpath. +[01:12:30] [main/DEBUG] (FabricLoader/Knot) Adding D:\BridgeBase\.gradle\loom-cache\remapped_mods\net_fabricmc_yarn_1_19_4_1_19_4_build_2_v2\net\fabricmc\fabric-api\fabric-renderer-api-v1\2.2.5+81e8c576f4\fabric-renderer-api-v1-2.2.5+81e8c576f4.jar to classpath. +[01:12:30] [main/DEBUG] (FabricLoader/Knot) Adding D:\BridgeBase\.gradle\loom-cache\remapped_mods\net_fabricmc_yarn_1_19_4_1_19_4_build_2_v2\net\fabricmc\fabric-api\fabric-object-builder-api-v1\7.0.3+63b515f4f4\fabric-object-builder-api-v1-7.0.3+63b515f4f4.jar to classpath. +[01:12:30] [main/DEBUG] (FabricLoader/Knot) Adding D:\BridgeBase\.gradle\loom-cache\remapped_mods\net_fabricmc_yarn_1_19_4_1_19_4_build_2_v2\net\fabricmc\fabric-api\fabric-recipe-api-v1\1.0.8+a1ccd7bff4\fabric-recipe-api-v1-1.0.8+a1ccd7bff4.jar to classpath. +[01:12:30] [main/DEBUG] (FabricLoader/Knot) Adding D:\BridgeBase\v1_19_4\build\resources\main to classpath. +[01:12:30] [main/DEBUG] (FabricLoader/Knot) Adding C:\Users\rohan\.gradle\caches\modules-2\files-2.1\io.github.llamalad7\mixinextras-fabric\0.3.2\33c53c7014a170a9cdfbc801f7a77a0eefd3bd00\mixinextras-fabric-0.3.2.jar to classpath. +[01:12:30] [main/DEBUG] (FabricLoader/Knot) Adding D:\BridgeBase\.gradle\loom-cache\remapped_mods\net_fabricmc_yarn_1_19_4_1_19_4_build_2_v2\net\fabricmc\fabric-api\fabric-command-api-v1\1.2.27+f71b366ff4\fabric-command-api-v1-1.2.27+f71b366ff4.jar to classpath. +[01:12:30] [main/DEBUG] (FabricLoader/Knot) Adding D:\BridgeBase\.gradle\loom-cache\remapped_mods\net_fabricmc_yarn_1_19_4_1_19_4_build_2_v2\net\fabricmc\fabric-api\fabric-resource-conditions-api-v1\2.3.1+e6c7d4eef4\fabric-resource-conditions-api-v1-2.3.1+e6c7d4eef4.jar to classpath. +[01:12:30] [main/DEBUG] (FabricLoader/Knot) Adding D:\BridgeBase\.gradle\loom-cache\remapped_mods\net_fabricmc_yarn_1_19_4_1_19_4_build_2_v2\net\fabricmc\fabric-api\fabric-renderer-indigo\1.1.1+81e8c576f4\fabric-renderer-indigo-1.1.1+81e8c576f4.jar to classpath. +[01:12:30] [main/DEBUG] (FabricLoader/Knot) Adding D:\BridgeBase\.gradle\loom-cache\remapped_mods\net_fabricmc_yarn_1_19_4_1_19_4_build_2_v2\net\fabricmc\fabric-api\fabric-convention-tags-v1\1.4.1+9a7c5daaf4\fabric-convention-tags-v1-1.4.1+9a7c5daaf4.jar to classpath. +[01:12:30] [main/DEBUG] (FabricLoader/Knot) Adding D:\BridgeBase\.gradle\loom-cache\remapped_mods\net_fabricmc_yarn_1_19_4_1_19_4_build_2_v2\net\fabricmc\fabric-api\fabric-loot-api-v2\1.1.27+75e98211f4\fabric-loot-api-v2-1.1.27+75e98211f4.jar to classpath. +[01:12:30] [main/DEBUG] (FabricLoader/Knot) Adding D:\BridgeBase\.gradle\loom-cache\remapped_mods\net_fabricmc_yarn_1_19_4_1_19_4_build_2_v2\net\fabricmc\fabric-api\fabric-events-lifecycle-v0\0.2.52+df3654b3f4\fabric-events-lifecycle-v0-0.2.52+df3654b3f4.jar to classpath. +[01:12:30] [main/DEBUG] (FabricLoader/Knot) Adding D:\BridgeBase\.gradle\loom-cache\remapped_mods\net_fabricmc_yarn_1_19_4_1_19_4_build_2_v2\net\fabricmc\fabric-api\fabric-crash-report-info-v1\0.2.15+aeb40ebef4\fabric-crash-report-info-v1-0.2.15+aeb40ebef4.jar to classpath. +[01:12:30] [main/DEBUG] (FabricLoader/Knot) Adding D:\BridgeBase\.gradle\loom-cache\remapped_mods\net_fabricmc_yarn_1_19_4_1_19_4_build_2_v2\net\fabricmc\fabric-api\fabric-gametest-api-v1\1.2.4+ae0966baf4\fabric-gametest-api-v1-1.2.4+ae0966baf4.jar to classpath. +[01:12:30] [main/DEBUG] (FabricLoader/Knot) Adding D:\BridgeBase\.gradle\loom-cache\remapped_mods\net_fabricmc_yarn_1_19_4_1_19_4_build_2_v2\net\fabricmc\fabric-api\fabric-api-base\0.4.24+9ff28bcef4\fabric-api-base-0.4.24+9ff28bcef4.jar to classpath. +[01:12:30] [main/DEBUG] (FabricLoader/Knot) Adding D:\BridgeBase\.gradle\loom-cache\remapped_mods\net_fabricmc_yarn_1_19_4_1_19_4_build_2_v2\net\fabricmc\fabric-api\fabric-particles-v1\1.0.23+f1e4495bf4\fabric-particles-v1-1.0.23+f1e4495bf4.jar to classpath. +[01:12:30] [main/DEBUG] (FabricLoader/Knot) Adding D:\BridgeBase\.gradle\loom-cache\remapped_mods\net_fabricmc_yarn_1_19_4_1_19_4_build_2_v2\net\fabricmc\fabric-api\fabric-events-interaction-v0\0.4.43+a1ccd7bff4\fabric-events-interaction-v0-0.4.43+a1ccd7bff4.jar to classpath. +[01:12:30] [main/DEBUG] (FabricLoader/Knot) Adding D:\BridgeBase\.gradle\loom-cache\remapped_mods\net_fabricmc_yarn_1_19_4_1_19_4_build_2_v2\net\fabricmc\fabric-api\fabric-data-generation-api-v1\11.4.0+6cebf059f4\fabric-data-generation-api-v1-11.4.0+6cebf059f4.jar to classpath. +[01:12:30] [main/DEBUG] (FabricLoader/Knot) Adding D:\BridgeBase\.gradle\loom-cache\remapped_mods\net_fabricmc_yarn_1_19_4_1_19_4_build_2_v2\net\fabricmc\fabric-api\fabric-registry-sync-v0\2.2.0+670e8ac6f4\fabric-registry-sync-v0-2.2.0+670e8ac6f4.jar to classpath. +[01:12:30] [main/DEBUG] (FabricLoader/Knot) Adding D:\BridgeBase\.gradle\loom-cache\remapped_mods\net_fabricmc_yarn_1_19_4_1_19_4_build_2_v2\net\fabricmc\fabric-api\fabric-block-api-v1\1.0.6+e022e5d1f4\fabric-block-api-v1-1.0.6+e022e5d1f4.jar to classpath. +[01:12:30] [main/DEBUG] (FabricLoader/Knot) Adding D:\BridgeBase\.gradle\loom-cache\remapped_mods\net_fabricmc_yarn_1_19_4_1_19_4_build_2_v2\net\fabricmc\fabric-api\fabric-transitive-access-wideners-v1\3.0.3+63b515f4f4\fabric-transitive-access-wideners-v1-3.0.3+63b515f4f4.jar to classpath. +[01:12:30] [main/DEBUG] (FabricLoader/Knot) Adding D:\BridgeBase\.gradle\loom-cache\remapped_mods\net_fabricmc_yarn_1_19_4_1_19_4_build_2_v2\net\fabricmc\fabric-api\fabric-transfer-api-v1\3.1.1+da9bb835f4\fabric-transfer-api-v1-3.1.1+da9bb835f4.jar to classpath. +[01:12:30] [main/DEBUG] (FabricLoader/Knot) Adding D:\BridgeBase\.gradle\loom-cache\remapped_mods\net_fabricmc_yarn_1_19_4_1_19_4_build_2_v2\net\fabricmc\fabric-api\fabric-rendering-v0\1.1.41+df3654b3f4\fabric-rendering-v0-1.1.41+df3654b3f4.jar to classpath. +[01:12:30] [main/DEBUG] (FabricLoader/Knot) Adding D:\BridgeBase\.gradle\loom-cache\remapped_mods\net_fabricmc_yarn_1_19_4_1_19_4_build_2_v2\net\fabricmc\fabric-api\fabric-rendering-v1\2.1.1+8f878217f4\fabric-rendering-v1-2.1.1+8f878217f4.jar to classpath. +[01:12:30] [main/DEBUG] (FabricLoader/Knot) Adding D:\BridgeBase\.gradle\loom-cache\remapped_mods\net_fabricmc_yarn_1_19_4_1_19_4_build_2_v2\net\fabricmc\fabric-api\fabric-containers-v0\0.1.54+df3654b3f4\fabric-containers-v0-0.1.54+df3654b3f4.jar to classpath. +[01:12:30] [main/DEBUG] (FabricLoader/Knot) Adding D:\BridgeBase\.gradle\loom-cache\remapped_mods\net_fabricmc_yarn_1_19_4_1_19_4_build_2_v2\net\fabricmc\fabric-api\fabric-models-v0\0.3.30+11ba9c3bf4\fabric-models-v0-0.3.30+11ba9c3bf4.jar to classpath. +[01:12:30] [main/DEBUG] (FabricLoader/Knot) Adding D:\BridgeBase\.gradle\loom-cache\remapped_mods\net_fabricmc_yarn_1_19_4_1_19_4_build_2_v2\net\fabricmc\fabric-api\fabric-message-api-v1\5.1.1+1ee8be40f4\fabric-message-api-v1-5.1.1+1ee8be40f4.jar to classpath. +[01:12:30] [main/DEBUG] (FabricLoader/Entrypoint) Registering new-style initializer net.fabricmc.fabric.impl.screenhandler.client.ClientNetworking for mod fabric-screen-handler-api-v1 (key client) +[01:12:30] [main/DEBUG] (FabricLoader/Entrypoint) Registering new-style initializer net.fabricmc.fabric.impl.loot.table.LootTablesV1Init for mod fabric-loot-tables-v1 (key main) +[01:12:30] [main/DEBUG] (FabricLoader/Entrypoint) Registering new-style initializer net.fabricmc.fabric.impl.client.event.lifecycle.ClientLifecycleEventsImpl for mod fabric-lifecycle-events-v1 (key client) +[01:12:30] [main/DEBUG] (FabricLoader/Entrypoint) Registering new-style initializer net.fabricmc.fabric.impl.event.lifecycle.LifecycleEventsImpl for mod fabric-lifecycle-events-v1 (key main) +[01:12:30] [main/DEBUG] (FabricLoader/Entrypoint) Registering new-style initializer net.fabricmc.fabric.impl.lookup.ApiLookupImpl for mod fabric-api-lookup-api-v1 (key main) +[01:12:30] [main/DEBUG] (FabricLoader/Entrypoint) Registering new-style initializer net.fabricmc.fabric.impl.client.networking.v0.OldClientNetworkingHooks for mod fabric-networking-v0 (key client) +[01:12:30] [main/DEBUG] (FabricLoader/Entrypoint) Registering new-style initializer net.fabricmc.fabric.impl.networking.v0.OldNetworkingHooks for mod fabric-networking-v0 (key main) +[01:12:30] [main/DEBUG] (FabricLoader/Entrypoint) Registering new-style initializer net.fabricmc.fabric.impl.networking.client.ClientNetworkingImpl::clientInit for mod fabric-networking-api-v1 (key client) +[01:12:30] [main/DEBUG] (FabricLoader/Entrypoint) Registering new-style initializer net.fabricmc.fabric.impl.networking.NetworkingImpl::init for mod fabric-networking-api-v1 (key main) +[01:12:30] [main/DEBUG] (FabricLoader/Entrypoint) Registering new-style initializer net.fabricmc.fabric.impl.recipe.ingredient.client.CustomIngredientSyncClient for mod fabric-recipe-api-v1 (key client) +[01:12:30] [main/DEBUG] (FabricLoader/Entrypoint) Registering new-style initializer net.fabricmc.fabric.impl.recipe.ingredient.CustomIngredientInit for mod fabric-recipe-api-v1 (key main) +[01:12:30] [main/DEBUG] (FabricLoader/Entrypoint) Registering new-style initializer net.fabricmc.fabric.impl.recipe.ingredient.CustomIngredientSync for mod fabric-recipe-api-v1 (key main) +[01:12:30] [main/DEBUG] (FabricLoader/Entrypoint) Registering new-style initializer dev.refactoring.ClientEntrypoint for mod testclient (key client) +[01:12:30] [main/DEBUG] (FabricLoader/Entrypoint) Registering new-style initializer net.fabricmc.fabric.impl.command.v1.LegacyHandler for mod fabric-command-api-v1 (key main) +[01:12:30] [main/DEBUG] (FabricLoader/Entrypoint) Registering new-style initializer net.fabricmc.fabric.impl.client.indigo.Indigo for mod fabric-renderer-indigo (key client) +[01:12:30] [main/DEBUG] (FabricLoader/Entrypoint) Registering new-style initializer net.fabricmc.fabric.impl.event.lifecycle.v0.client.LegacyClientEventInvokers for mod fabric-events-lifecycle-v0 (key client) +[01:12:30] [main/DEBUG] (FabricLoader/Entrypoint) Registering new-style initializer net.fabricmc.fabric.impl.event.lifecycle.v0.LegacyEventInvokers for mod fabric-events-lifecycle-v0 (key main) +[01:12:30] [main/DEBUG] (FabricLoader/Entrypoint) Registering new-style initializer net.fabricmc.fabric.impl.gametest.FabricGameTestModInitializer for mod fabric-gametest-api-v1 (key main) +[01:12:30] [main/DEBUG] (FabricLoader/Entrypoint) Registering new-style initializer net.fabricmc.fabric.impl.event.interaction.InteractionEventsRouterClient for mod fabric-events-interaction-v0 (key client) +[01:12:30] [main/DEBUG] (FabricLoader/Entrypoint) Registering new-style initializer net.fabricmc.fabric.impl.event.interaction.InteractionEventsRouter for mod fabric-events-interaction-v0 (key main) +[01:12:30] [main/DEBUG] (FabricLoader/Entrypoint) Registering new-style initializer net.fabricmc.fabric.impl.client.registry.sync.FabricRegistryClientInit for mod fabric-registry-sync-v0 (key client) +[01:12:30] [main/DEBUG] (FabricLoader/Entrypoint) Registering new-style initializer net.fabricmc.fabric.impl.registry.sync.FabricRegistryInit for mod fabric-registry-sync-v0 (key main) +[01:12:30] [main/DEBUG] (FabricLoader/Entrypoint) Registering new-style initializer net.fabricmc.fabric.impl.client.rendering.v0.RenderingCallbackInvoker for mod fabric-rendering-v0 (key client) +[01:12:30] [main/DEBUG] (FabricLoader/Entrypoint) Registering new-style initializer net.fabricmc.fabric.impl.client.container.ScreenProviderRegistryImpl::init for mod fabric-containers-v0 (key client) +[01:12:30] [main/INFO] (FabricLoader/Mixin) SpongePowered MIXIN Subsystem Version=0.8.5 Source=file:/C:/Users/rohan/.gradle/caches/modules-2/files-2.1/net.fabricmc/sponge-mixin/0.12.5+mixin.0.8.5/8d31fb97c3e0cd7c8dad3441851c523bcfae6d8e/sponge-mixin-0.12.5+mixin.0.8.5.jar Service=Knot/Fabric Env=CLIENT +[01:12:30] [main/DEBUG] (FabricLoader/Mixin) Error cleaning class output directory: .mixin.out +[01:12:30] [main/DEBUG] (FabricLoader/Mixin) Initialising Mixin Platform Manager +[01:12:30] [main/DEBUG] (FabricLoader/Mixin) Adding mixin platform agents for container ContainerHandleURI(file:///C:/Users/rohan/.gradle/caches/modules-2/files-2.1/net.fabricmc/fabric-loader/0.15.2/c162baeb16a88d36812884f31d7c24f58a223a77/fabric-loader-0.15.2.jar) +[01:12:30] [main/DEBUG] (FabricLoader/Mixin) Instancing new MixinPlatformAgentDefault for ContainerHandleURI(file:///C:/Users/rohan/.gradle/caches/modules-2/files-2.1/net.fabricmc/fabric-loader/0.15.2/c162baeb16a88d36812884f31d7c24f58a223a77/fabric-loader-0.15.2.jar) +[01:12:30] [main/DEBUG] (FabricLoader/Mixin) MixinPlatformAgentDefault accepted container ContainerHandleURI(file:///C:/Users/rohan/.gradle/caches/modules-2/files-2.1/net.fabricmc/fabric-loader/0.15.2/c162baeb16a88d36812884f31d7c24f58a223a77/fabric-loader-0.15.2.jar) +[01:12:30] [main/DEBUG] (FabricLoader/Mixin) Instancing new MixinPlatformAgentDefault for ContainerHandleURI(file:///C:/Users/rohan/.gradle/caches/modules-2/files-2.1/net.fabricmc/fabric-loader/0.15.2/c162baeb16a88d36812884f31d7c24f58a223a77/fabric-loader-0.15.2.jar) +[01:12:30] [main/DEBUG] (FabricLoader/Mixin) MixinPlatformAgentDefault accepted container ContainerHandleURI(file:///C:/Users/rohan/.gradle/caches/modules-2/files-2.1/net.fabricmc/fabric-loader/0.15.2/c162baeb16a88d36812884f31d7c24f58a223a77/fabric-loader-0.15.2.jar) +[01:12:30] [main/DEBUG] (FabricLoader/Mixin) Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:ContainerHandleURI(file:///C:/Users/rohan/.gradle/caches/modules-2/files-2.1/net.fabricmc/fabric-loader/0.15.2/c162baeb16a88d36812884f31d7c24f58a223a77/fabric-loader-0.15.2.jar)] +[01:12:30] [main/DEBUG] (FabricLoader/Mixin) Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:ContainerHandleURI(file:///C:/Users/rohan/.gradle/caches/modules-2/files-2.1/net.fabricmc/fabric-loader/0.15.2/c162baeb16a88d36812884f31d7c24f58a223a77/fabric-loader-0.15.2.jar)] +[01:12:30] [main/INFO] (FabricLoader/Mixin) Loaded Fabric development mappings for mixin remapper! +[01:12:30] [main/DEBUG] (FabricLoader/Mixin) Compatibility level JAVA_16 specified by fabric-entity-events-v1.mixins.json is higher than the maximum level supported by this version of mixin (JAVA_13). +[01:12:30] [main/INFO] (FabricLoader/Mixin) Compatibility level set to JAVA_16 +[01:12:30] [main/DEBUG] (FabricLoader/Mixin) Mixin config fabric-entity-events-v1.mixins.json does not specify "minVersion" property +[01:12:30] [main/DEBUG] (FabricLoader/Mixin) Mixin config fabric-entity-events-v1.client.mixins.json does not specify "minVersion" property +[01:12:30] [main/DEBUG] (FabricLoader/Mixin) Mixin config fabric-screen-handler-api-v1.mixins.json does not specify "minVersion" property +[01:12:30] [main/DEBUG] (FabricLoader/Mixin) Mixin config fabric-loot-tables-v1.mixins.json does not specify "minVersion" property +[01:12:30] [main/DEBUG] (FabricLoader/Mixin) Compatibility level JAVA_17 specified by fabric-item-group-api-v1.mixins.json is higher than the maximum level supported by this version of mixin (JAVA_13). +[01:12:30] [main/INFO] (FabricLoader/Mixin) Compatibility level set to JAVA_17 +[01:12:30] [main/DEBUG] (FabricLoader/Mixin) Mixin config fabric-item-group-api-v1.mixins.json does not specify "minVersion" property +[01:12:30] [main/DEBUG] (FabricLoader/Mixin) Mixin config fabric-item-group-api-v1.client.mixins.json does not specify "minVersion" property +[01:12:30] [main/DEBUG] (FabricLoader/Mixin) Compatibility level JAVA_16 specified by fabric-lifecycle-events-v1.mixins.json is higher than the maximum level supported by this version of mixin (JAVA_13). +[01:12:30] [main/DEBUG] (FabricLoader/Mixin) Mixin config fabric-lifecycle-events-v1.mixins.json does not specify "minVersion" property +[01:12:30] [main/DEBUG] (FabricLoader/Mixin) Compatibility level JAVA_16 specified by fabric-lifecycle-events-v1.client.mixins.json is higher than the maximum level supported by this version of mixin (JAVA_13). +[01:12:30] [main/DEBUG] (FabricLoader/Mixin) Mixin config fabric-lifecycle-events-v1.client.mixins.json does not specify "minVersion" property +[01:12:30] [main/DEBUG] (FabricLoader/Mixin) Compatibility level JAVA_16 specified by fabric-api-lookup-api-v1.mixins.json is higher than the maximum level supported by this version of mixin (JAVA_13). +[01:12:30] [main/DEBUG] (FabricLoader/Mixin) Mixin config fabric-api-lookup-api-v1.mixins.json does not specify "minVersion" property +[01:12:30] [main/DEBUG] (FabricLoader/Mixin) Compatibility level JAVA_16 specified by fabric-screen-api-v1.mixins.json is higher than the maximum level supported by this version of mixin (JAVA_13). +[01:12:30] [main/DEBUG] (FabricLoader/Mixin) Mixin config fabric-screen-api-v1.mixins.json does not specify "minVersion" property +[01:12:30] [main/DEBUG] (FabricLoader/Mixin) Compatibility level JAVA_16 specified by fabric-content-registries-v0.mixins.json is higher than the maximum level supported by this version of mixin (JAVA_13). +[01:12:30] [main/DEBUG] (FabricLoader/Mixin) Mixin config fabric-content-registries-v0.mixins.json does not specify "minVersion" property +[01:12:30] [main/DEBUG] (FabricLoader/Mixin) Compatibility level JAVA_16 specified by fabric-resource-loader-v0.mixins.json is higher than the maximum level supported by this version of mixin (JAVA_13). +[01:12:30] [main/DEBUG] (FabricLoader/Mixin) Mixin config fabric-resource-loader-v0.mixins.json does not specify "minVersion" property +[01:12:30] [main/DEBUG] (FabricLoader/Mixin) Compatibility level JAVA_16 specified by fabric-resource-loader-v0.client.mixins.json is higher than the maximum level supported by this version of mixin (JAVA_13). +[01:12:30] [main/DEBUG] (FabricLoader/Mixin) Mixin config fabric-resource-loader-v0.client.mixins.json does not specify "minVersion" property +[01:12:30] [main/DEBUG] (FabricLoader/Mixin) Compatibility level JAVA_16 specified by fabric-key-binding-api-v1.mixins.json is higher than the maximum level supported by this version of mixin (JAVA_13). +[01:12:30] [main/DEBUG] (FabricLoader/Mixin) Mixin config fabric-key-binding-api-v1.mixins.json does not specify "minVersion" property +[01:12:30] [main/DEBUG] (FabricLoader/Mixin) Compatibility level JAVA_16 specified by fabric-item-api-v1.mixins.json is higher than the maximum level supported by this version of mixin (JAVA_13). +[01:12:30] [main/DEBUG] (FabricLoader/Mixin) Mixin config fabric-item-api-v1.mixins.json does not specify "minVersion" property +[01:12:30] [main/DEBUG] (FabricLoader/Mixin) Compatibility level JAVA_16 specified by fabric-item-api-v1.client.mixins.json is higher than the maximum level supported by this version of mixin (JAVA_13). +[01:12:30] [main/DEBUG] (FabricLoader/Mixin) Mixin config fabric-item-api-v1.client.mixins.json does not specify "minVersion" property +[01:12:30] [main/DEBUG] (FabricLoader/Mixin) Compatibility level JAVA_16 specified by fabric-biome-api-v1.mixins.json is higher than the maximum level supported by this version of mixin (JAVA_13). +[01:12:30] [main/DEBUG] (FabricLoader/Mixin) Mixin config fabric-biome-api-v1.mixins.json does not specify "minVersion" property +[01:12:30] [main/DEBUG] (FabricLoader/Mixin) Compatibility level JAVA_16 specified by fabric-blockrenderlayer-v1.mixins.json is higher than the maximum level supported by this version of mixin (JAVA_13). +[01:12:30] [main/DEBUG] (FabricLoader/Mixin) Mixin config fabric-blockrenderlayer-v1.mixins.json does not specify "minVersion" property +[01:12:30] [main/DEBUG] (FabricLoader/Mixin) Mixin config fabric-sound-api-v1.mixins.json does not specify "minVersion" property +[01:12:30] [main/DEBUG] (FabricLoader/Mixin) Compatibility level JAVA_16 specified by fabric-networking-api-v1.mixins.json is higher than the maximum level supported by this version of mixin (JAVA_13). +[01:12:30] [main/DEBUG] (FabricLoader/Mixin) Mixin config fabric-networking-api-v1.mixins.json does not specify "minVersion" property +[01:12:30] [main/DEBUG] (FabricLoader/Mixin) Compatibility level JAVA_16 specified by fabric-networking-api-v1.client.mixins.json is higher than the maximum level supported by this version of mixin (JAVA_13). +[01:12:30] [main/DEBUG] (FabricLoader/Mixin) Mixin config fabric-networking-api-v1.client.mixins.json does not specify "minVersion" property +[01:12:30] [main/DEBUG] (FabricLoader/Mixin) Compatibility level JAVA_16 specified by fabric-command-api-v2.mixins.json is higher than the maximum level supported by this version of mixin (JAVA_13). +[01:12:30] [main/DEBUG] (FabricLoader/Mixin) Mixin config fabric-command-api-v2.mixins.json does not specify "minVersion" property +[01:12:30] [main/DEBUG] (FabricLoader/Mixin) Compatibility level JAVA_16 specified by fabric-command-api-v2.client.mixins.json is higher than the maximum level supported by this version of mixin (JAVA_13). +[01:12:30] [main/DEBUG] (FabricLoader/Mixin) Mixin config fabric-command-api-v2.client.mixins.json does not specify "minVersion" property +[01:12:30] [main/DEBUG] (FabricLoader/Mixin) Compatibility level JAVA_16 specified by fabric-mining-level-api-v1.mixins.json is higher than the maximum level supported by this version of mixin (JAVA_13). +[01:12:30] [main/DEBUG] (FabricLoader/Mixin) Mixin config fabric-mining-level-api-v1.mixins.json does not specify "minVersion" property +[01:12:30] [main/DEBUG] (FabricLoader/Mixin) Compatibility level JAVA_16 specified by fabric-rendering-fluids-v1.mixins.json is higher than the maximum level supported by this version of mixin (JAVA_13). +[01:12:30] [main/DEBUG] (FabricLoader/Mixin) Mixin config fabric-rendering-fluids-v1.mixins.json does not specify "minVersion" property +[01:12:30] [main/DEBUG] (FabricLoader/Mixin) Compatibility level JAVA_16 specified by fabric-dimensions-v1.mixins.json is higher than the maximum level supported by this version of mixin (JAVA_13). +[01:12:30] [main/DEBUG] (FabricLoader/Mixin) Mixin config fabric-dimensions-v1.mixins.json does not specify "minVersion" property +[01:12:30] [main/DEBUG] (FabricLoader/Mixin) Compatibility level JAVA_16 specified by fabric-game-rule-api-v1.mixins.json is higher than the maximum level supported by this version of mixin (JAVA_13). +[01:12:30] [main/DEBUG] (FabricLoader/Mixin) Mixin config fabric-game-rule-api-v1.mixins.json does not specify "minVersion" property +[01:12:30] [main/DEBUG] (FabricLoader/Mixin) Compatibility level JAVA_16 specified by fabric-game-rule-api-v1.client.mixins.json is higher than the maximum level supported by this version of mixin (JAVA_13). +[01:12:30] [main/DEBUG] (FabricLoader/Mixin) Mixin config fabric-game-rule-api-v1.client.mixins.json does not specify "minVersion" property +[01:12:30] [main/DEBUG] (FabricLoader/Mixin) Compatibility level JAVA_16 specified by fabric-rendering-data-attachment-v1.mixins.json is higher than the maximum level supported by this version of mixin (JAVA_13). +[01:12:30] [main/DEBUG] (FabricLoader/Mixin) Mixin config fabric-rendering-data-attachment-v1.mixins.json does not specify "minVersion" property +[01:12:30] [main/DEBUG] (FabricLoader/Mixin) Compatibility level JAVA_16 specified by fabric-rendering-data-attachment-v1.client.mixins.json is higher than the maximum level supported by this version of mixin (JAVA_13). +[01:12:30] [main/DEBUG] (FabricLoader/Mixin) Mixin config fabric-rendering-data-attachment-v1.client.mixins.json does not specify "minVersion" property +[01:12:30] [main/DEBUG] (FabricLoader/Mixin) Compatibility level JAVA_16 specified by fabric-renderer-api-v1.mixins.json is higher than the maximum level supported by this version of mixin (JAVA_13). +[01:12:30] [main/DEBUG] (FabricLoader/Mixin) Mixin config fabric-renderer-api-v1.mixins.json does not specify "minVersion" property +[01:12:30] [main/DEBUG] (FabricLoader/Mixin) Compatibility level JAVA_16 specified by fabric-renderer-api-v1.debughud.mixins.json is higher than the maximum level supported by this version of mixin (JAVA_13). +[01:12:30] [main/DEBUG] (FabricLoader/Mixin) Mixin config fabric-renderer-api-v1.debughud.mixins.json does not specify "minVersion" property +[01:12:30] [main/DEBUG] (FabricLoader/Mixin) Compatibility level JAVA_16 specified by fabric-object-builder-v1.mixins.json is higher than the maximum level supported by this version of mixin (JAVA_13). +[01:12:30] [main/DEBUG] (FabricLoader/Mixin) Mixin config fabric-object-builder-v1.mixins.json does not specify "minVersion" property +[01:12:30] [main/DEBUG] (FabricLoader/Mixin) Compatibility level JAVA_16 specified by fabric-object-builder-v1.client.mixins.json is higher than the maximum level supported by this version of mixin (JAVA_13). +[01:12:30] [main/DEBUG] (FabricLoader/Mixin) Mixin config fabric-object-builder-v1.client.mixins.json does not specify "minVersion" property +[01:12:30] [main/DEBUG] (FabricLoader/Mixin) Mixin config fabric-recipe-api-v1.mixins.json does not specify "minVersion" property +[01:12:30] [main/DEBUG] (FabricLoader/Mixin) Compatibility level JAVA_16 specified by fabric-resource-conditions-api-v1.mixins.json is higher than the maximum level supported by this version of mixin (JAVA_13). +[01:12:30] [main/DEBUG] (FabricLoader/Mixin) Mixin config fabric-resource-conditions-api-v1.mixins.json does not specify "minVersion" property +[01:12:30] [main/DEBUG] (FabricLoader/Mixin) Compatibility level JAVA_16 specified by fabric-renderer-indigo.mixins.json is higher than the maximum level supported by this version of mixin (JAVA_13). +[01:12:30] [main/DEBUG] (FabricLoader/Mixin) Mixin config fabric-renderer-indigo.mixins.json does not specify "minVersion" property +[01:12:30] [main/DEBUG] (FabricLoader/Mixin) Mixin config fabric-loot-api-v2.mixins.json does not specify "minVersion" property +[01:12:30] [main/DEBUG] (FabricLoader/Mixin) Compatibility level JAVA_16 specified by fabric-crash-report-info-v1.mixins.json is higher than the maximum level supported by this version of mixin (JAVA_13). +[01:12:30] [main/DEBUG] (FabricLoader/Mixin) Mixin config fabric-crash-report-info-v1.mixins.json does not specify "minVersion" property +[01:12:30] [main/DEBUG] (FabricLoader/Mixin) Compatibility level JAVA_16 specified by fabric-gametest-api-v1.mixins.json is higher than the maximum level supported by this version of mixin (JAVA_13). +[01:12:30] [main/DEBUG] (FabricLoader/Mixin) Mixin config fabric-gametest-api-v1.mixins.json does not specify "minVersion" property +[01:12:30] [main/DEBUG] (FabricLoader/Mixin) Compatibility level JAVA_16 specified by fabric-particles-v1.client.mixins.json is higher than the maximum level supported by this version of mixin (JAVA_13). +[01:12:30] [main/DEBUG] (FabricLoader/Mixin) Mixin config fabric-particles-v1.client.mixins.json does not specify "minVersion" property +[01:12:30] [main/DEBUG] (FabricLoader/Mixin) Compatibility level JAVA_16 specified by fabric-events-interaction-v0.mixins.json is higher than the maximum level supported by this version of mixin (JAVA_13). +[01:12:30] [main/DEBUG] (FabricLoader/Mixin) Mixin config fabric-events-interaction-v0.mixins.json does not specify "minVersion" property +[01:12:30] [main/DEBUG] (FabricLoader/Mixin) Compatibility level JAVA_16 specified by fabric-events-interaction-v0.client.mixins.json is higher than the maximum level supported by this version of mixin (JAVA_13). +[01:12:30] [main/DEBUG] (FabricLoader/Mixin) Mixin config fabric-events-interaction-v0.client.mixins.json does not specify "minVersion" property +[01:12:30] [main/DEBUG] (FabricLoader/Mixin) Compatibility level JAVA_16 specified by fabric-data-generation-api-v1.mixins.json is higher than the maximum level supported by this version of mixin (JAVA_13). +[01:12:30] [main/DEBUG] (FabricLoader/Mixin) Mixin config fabric-data-generation-api-v1.mixins.json does not specify "minVersion" property +[01:12:30] [main/DEBUG] (FabricLoader/Mixin) Compatibility level JAVA_16 specified by fabric-data-generation-api-v1.client.mixins.json is higher than the maximum level supported by this version of mixin (JAVA_13). +[01:12:30] [main/DEBUG] (FabricLoader/Mixin) Mixin config fabric-data-generation-api-v1.client.mixins.json does not specify "minVersion" property +[01:12:30] [main/DEBUG] (FabricLoader/Mixin) Compatibility level JAVA_16 specified by fabric-registry-sync-v0.mixins.json is higher than the maximum level supported by this version of mixin (JAVA_13). +[01:12:30] [main/DEBUG] (FabricLoader/Mixin) Mixin config fabric-registry-sync-v0.mixins.json does not specify "minVersion" property +[01:12:30] [main/DEBUG] (FabricLoader/Mixin) Compatibility level JAVA_16 specified by fabric-registry-sync-v0.client.mixins.json is higher than the maximum level supported by this version of mixin (JAVA_13). +[01:12:30] [main/DEBUG] (FabricLoader/Mixin) Mixin config fabric-registry-sync-v0.client.mixins.json does not specify "minVersion" property +[01:12:30] [main/DEBUG] (FabricLoader/Mixin) Mixin config fabric-block-api-v1.mixins.json does not specify "minVersion" property +[01:12:30] [main/DEBUG] (FabricLoader/Mixin) Compatibility level JAVA_16 specified by fabric-transfer-api-v1.mixins.json is higher than the maximum level supported by this version of mixin (JAVA_13). +[01:12:30] [main/DEBUG] (FabricLoader/Mixin) Mixin config fabric-transfer-api-v1.mixins.json does not specify "minVersion" property +[01:12:30] [main/DEBUG] (FabricLoader/Mixin) Compatibility level JAVA_16 specified by fabric-rendering-v1.mixins.json is higher than the maximum level supported by this version of mixin (JAVA_13). +[01:12:30] [main/DEBUG] (FabricLoader/Mixin) Mixin config fabric-rendering-v1.mixins.json does not specify "minVersion" property +[01:12:30] [main/DEBUG] (FabricLoader/Mixin) Compatibility level JAVA_16 specified by fabric-containers-v0.mixins.json is higher than the maximum level supported by this version of mixin (JAVA_13). +[01:12:30] [main/DEBUG] (FabricLoader/Mixin) Mixin config fabric-containers-v0.mixins.json does not specify "minVersion" property +[01:12:30] [main/DEBUG] (FabricLoader/Mixin) Compatibility level JAVA_16 specified by fabric-containers-v0.accurate.mixins.json is higher than the maximum level supported by this version of mixin (JAVA_13). +[01:12:30] [main/DEBUG] (FabricLoader/Mixin) Mixin config fabric-containers-v0.accurate.mixins.json does not specify "minVersion" property +[01:12:30] [main/DEBUG] (FabricLoader/Mixin) Compatibility level JAVA_16 specified by fabric-models-v0.mixins.json is higher than the maximum level supported by this version of mixin (JAVA_13). +[01:12:30] [main/DEBUG] (FabricLoader/Mixin) Mixin config fabric-models-v0.mixins.json does not specify "minVersion" property +[01:12:30] [main/DEBUG] (FabricLoader/Mixin) Compatibility level JAVA_16 specified by fabric-message-api-v1.mixins.json is higher than the maximum level supported by this version of mixin (JAVA_13). +[01:12:30] [main/DEBUG] (FabricLoader/Mixin) Mixin config fabric-message-api-v1.mixins.json does not specify "minVersion" property +[01:12:30] [main/DEBUG] (FabricLoader/Mixin) Mixin config fabric-message-api-v1.client.mixins.json does not specify "minVersion" property +[01:12:30] [main/DEBUG] (FabricLoader/Knot) Adding D:\BridgeBase\.gradle\loom-cache\minecraftMaven\net\minecraft\minecraft-merged-9d06bd1931\1.19.4-net.fabricmc.yarn.1_19_4.1.19.4+build.2-v2\minecraft-merged-9d06bd1931-1.19.4-net.fabricmc.yarn.1_19_4.1.19.4+build.2-v2.jar to classpath. +[01:12:30] [main/DEBUG] (FabricLoader/Knot) Adding D:\BridgeBase\v1_19_4\build\classes\java\main to classpath. +[01:12:30] [main/DEBUG] (FabricLoader/Knot) Adding D:\BridgeBase\v1_19_4\build\resources\main to classpath. +[01:12:30] [main/DEBUG] (FabricLoader/Knot) Adding C:\Users\rohan\.gradle\caches\fabric-loom\1.19.4\net.fabricmc.yarn.1_19_4.1.19.4+build.2-v2\mappings.jar to classpath. +[01:12:30] [main/DEBUG] (FabricLoader/Knot) Adding C:\Users\rohan\.gradle\caches\modules-2\files-2.1\org.jetbrains.kotlin\kotlin-stdlib\1.9.21\17ee3e873d439566c7d8354403b5f3d9744c4c9c\kotlin-stdlib-1.9.21.jar to classpath. +[01:12:30] [main/DEBUG] (FabricLoader/Knot) Adding D:\BridgeBase\Client\build\libs\Client-1.0-SNAPSHOT.jar to classpath. +[01:12:30] [main/DEBUG] (FabricLoader/Knot) Adding D:\BridgeBase\Bridge\build\libs\Bridge-1.0-SNAPSHOT.jar to classpath. +[01:12:30] [main/DEBUG] (FabricLoader/Knot) Adding C:\Users\rohan\.gradle\caches\modules-2\files-2.1\io.github.llamalad7\mixinextras-fabric\0.3.2\33c53c7014a170a9cdfbc801f7a77a0eefd3bd00\mixinextras-fabric-0.3.2.jar to classpath. +[01:12:30] [main/DEBUG] (FabricLoader/Knot) Adding C:\Users\rohan\.gradle\caches\modules-2\files-2.1\net.fabricmc\dev-launch-injector\0.2.1+build.8\da8bef7e6e2f952da707f282bdb46882a0fce5e3\dev-launch-injector-0.2.1+build.8.jar to classpath. +[01:12:30] [main/DEBUG] (FabricLoader/Knot) Adding C:\Users\rohan\.gradle\caches\modules-2\files-2.1\com.github.oshi\oshi-core\6.2.2\54f5efc19bca95d709d9a37d19ffcbba3d21c1a6\oshi-core-6.2.2.jar to classpath. +[01:12:30] [main/DEBUG] (FabricLoader/Knot) Adding C:\Users\rohan\.gradle\caches\modules-2\files-2.1\com.google.guava\failureaccess\1.0.1\1dcf1de382a0bf95a3d8b0849546c88bac1292c9\failureaccess-1.0.1.jar to classpath. +[01:12:30] [main/DEBUG] (FabricLoader/Knot) Adding C:\Users\rohan\.gradle\caches\modules-2\files-2.1\com.google.guava\guava\31.1-jre\60458f877d055d0c9114d9e1a2efb737b4bc282c\guava-31.1-jre.jar to classpath. +[01:12:30] [main/DEBUG] (FabricLoader/Knot) Adding C:\Users\rohan\.gradle\caches\modules-2\files-2.1\com.ibm.icu\icu4j\71.1\9e7d3304c23f9ba5cb71915f7cce23231a57a445\icu4j-71.1.jar to classpath. +[01:12:30] [main/DEBUG] (FabricLoader/Knot) Adding C:\Users\rohan\.gradle\caches\modules-2\files-2.1\com.mojang\blocklist\1.0.10\5c685c5ffa94c4cd39496c7184c1d122e515ecef\blocklist-1.0.10.jar to classpath. +[01:12:30] [main/DEBUG] (FabricLoader/Knot) Adding C:\Users\rohan\.gradle\caches\modules-2\files-2.1\com.mojang\brigadier\1.0.18\c1ef1234282716483c92183f49bef47b1a89bfa9\brigadier-1.0.18.jar to classpath. +[01:12:30] [main/DEBUG] (FabricLoader/Knot) Adding C:\Users\rohan\.gradle\caches\modules-2\files-2.1\com.mojang\datafixerupper\6.0.6\e38e20946530646e866db03b2b192883d0ea6e84\datafixerupper-6.0.6.jar to classpath. +[01:12:30] [main/DEBUG] (FabricLoader/Knot) Adding C:\Users\rohan\.gradle\caches\modules-2\files-2.1\com.mojang\patchy\2.2.10\da05971b07cbb379d002cf7eaec6a2048211fefc\patchy-2.2.10.jar to classpath. +[01:12:30] [main/DEBUG] (FabricLoader/Knot) Adding C:\Users\rohan\.gradle\caches\modules-2\files-2.1\com.mojang\text2speech\1.16.7\ee4095669061d1fe4bce5fea23d69d1520bc2d58\text2speech-1.16.7.jar to classpath. +[01:12:30] [main/DEBUG] (FabricLoader/Knot) Adding C:\Users\rohan\.gradle\caches\modules-2\files-2.1\commons-codec\commons-codec\1.15\49d94806b6e3dc933dacbd8acb0fdbab8ebd1e5d\commons-codec-1.15.jar to classpath. +[01:12:30] [main/DEBUG] (FabricLoader/Knot) Adding C:\Users\rohan\.gradle\caches\modules-2\files-2.1\commons-io\commons-io\2.11.0\a2503f302b11ebde7ebc3df41daebe0e4eea3689\commons-io-2.11.0.jar to classpath. +[01:12:30] [main/DEBUG] (FabricLoader/Knot) Adding C:\Users\rohan\.gradle\caches\modules-2\files-2.1\commons-logging\commons-logging\1.2\4bfc12adfe4842bf07b657f0369c4cb522955686\commons-logging-1.2.jar to classpath. +[01:12:30] [main/DEBUG] (FabricLoader/Knot) Adding C:\Users\rohan\.gradle\caches\modules-2\files-2.1\io.netty\netty-buffer\4.1.82.Final\a544270cf1ae8b8077082f5036436a9a9971ea71\netty-buffer-4.1.82.Final.jar to classpath. +[01:12:30] [main/DEBUG] (FabricLoader/Knot) Adding C:\Users\rohan\.gradle\caches\modules-2\files-2.1\io.netty\netty-codec\4.1.82.Final\b77200379acb345a9ffdece1c605e591ac3e4e0a\netty-codec-4.1.82.Final.jar to classpath. +[01:12:30] [main/DEBUG] (FabricLoader/Knot) Adding C:\Users\rohan\.gradle\caches\modules-2\files-2.1\io.netty\netty-common\4.1.82.Final\22d148e85c3f5ebdacc0ce1f5aabb1d420f73f3\netty-common-4.1.82.Final.jar to classpath. +[01:12:30] [main/DEBUG] (FabricLoader/Knot) Adding C:\Users\rohan\.gradle\caches\modules-2\files-2.1\io.netty\netty-handler\4.1.82.Final\644041d1fa96a5d3130a29e8978630d716d76e38\netty-handler-4.1.82.Final.jar to classpath. +[01:12:30] [main/DEBUG] (FabricLoader/Knot) Adding C:\Users\rohan\.gradle\caches\modules-2\files-2.1\io.netty\netty-resolver\4.1.82.Final\38f665ae8dcd29032eea31245ba7806bed2e0fa8\netty-resolver-4.1.82.Final.jar to classpath. +[01:12:30] [main/DEBUG] (FabricLoader/Knot) Adding C:\Users\rohan\.gradle\caches\modules-2\files-2.1\io.netty\netty-transport-classes-epoll\4.1.82.Final\e7c7dd18deac93105797f30057c912651ea76521\netty-transport-classes-epoll-4.1.82.Final.jar to classpath. +[01:12:30] [main/DEBUG] (FabricLoader/Knot) Adding C:\Users\rohan\.gradle\caches\modules-2\files-2.1\io.netty\netty-transport-native-unix-common\4.1.82.Final\3e895b35ca1b8a0eca56cacff4c2dde5d2c6abce\netty-transport-native-unix-common-4.1.82.Final.jar to classpath. +[01:12:30] [main/DEBUG] (FabricLoader/Knot) Adding C:\Users\rohan\.gradle\caches\modules-2\files-2.1\io.netty\netty-transport\4.1.82.Final\e431a218d91acb6476ccad5f5aafde50aa3945ca\netty-transport-4.1.82.Final.jar to classpath. +[01:12:30] [main/DEBUG] (FabricLoader/Knot) Adding C:\Users\rohan\.gradle\caches\modules-2\files-2.1\it.unimi.dsi\fastutil\8.5.9\bb7ea75ecdb216654237830b3a96d87ad91f8cc5\fastutil-8.5.9.jar to classpath. +[01:12:30] [main/DEBUG] (FabricLoader/Knot) Adding C:\Users\rohan\.gradle\caches\modules-2\files-2.1\net.java.dev.jna\jna-platform\5.12.1\97406a297c852f4a41e688a176ec675f72e8329\jna-platform-5.12.1.jar to classpath. +[01:12:30] [main/DEBUG] (FabricLoader/Knot) Adding C:\Users\rohan\.gradle\caches\modules-2\files-2.1\net.java.dev.jna\jna\5.12.1\b1e93a735caea94f503e95e6fe79bf9cdc1e985d\jna-5.12.1.jar to classpath. +[01:12:30] [main/DEBUG] (FabricLoader/Knot) Adding C:\Users\rohan\.gradle\caches\modules-2\files-2.1\net.sf.jopt-simple\jopt-simple\5.0.4\4fdac2fbe92dfad86aa6e9301736f6b4342a3f5c\jopt-simple-5.0.4.jar to classpath. +[01:12:30] [main/DEBUG] (FabricLoader/Knot) Adding C:\Users\rohan\.gradle\caches\modules-2\files-2.1\org.apache.commons\commons-compress\1.21\4ec95b60d4e86b5c95a0e919cb172a0af98011ef\commons-compress-1.21.jar to classpath. +[01:12:30] [main/DEBUG] (FabricLoader/Knot) Adding C:\Users\rohan\.gradle\caches\modules-2\files-2.1\org.apache.commons\commons-lang3\3.12.0\c6842c86792ff03b9f1d1fe2aab8dc23aa6c6f0e\commons-lang3-3.12.0.jar to classpath. +[01:12:30] [main/DEBUG] (FabricLoader/Knot) Adding C:\Users\rohan\.gradle\caches\modules-2\files-2.1\org.apache.httpcomponents\httpclient\4.5.13\e5f6cae5ca7ecaac1ec2827a9e2d65ae2869cada\httpclient-4.5.13.jar to classpath. +[01:12:30] [main/DEBUG] (FabricLoader/Knot) Adding C:\Users\rohan\.gradle\caches\modules-2\files-2.1\org.apache.httpcomponents\httpcore\4.4.15\7f2e0c573eaa7a74bac2e89b359e1f73d92a0a1d\httpcore-4.4.15.jar to classpath. +[01:12:30] [main/DEBUG] (FabricLoader/Knot) Adding C:\Users\rohan\.gradle\caches\modules-2\files-2.1\org.joml\joml\1.10.5\22566d58af70ad3d72308bab63b8339906deb649\joml-1.10.5.jar to classpath. +[01:12:30] [main/DEBUG] (FabricLoader/Knot) Adding C:\Users\rohan\.gradle\caches\modules-2\files-2.1\org.lwjgl\lwjgl-glfw\3.3.2\757920418805fb90bfebb3d46b1d9e7669fca2eb\lwjgl-glfw-3.3.2.jar to classpath. +[01:12:30] [main/DEBUG] (FabricLoader/Knot) Adding C:\Users\rohan\.gradle\caches\modules-2\files-2.1\org.lwjgl\lwjgl-glfw\3.3.2\1251e3cb7e5d6159334cfb9244f789ce992f03b\lwjgl-glfw-3.3.2-natives-windows.jar to classpath. +[01:12:30] [main/DEBUG] (FabricLoader/Knot) Adding C:\Users\rohan\.gradle\caches\modules-2\files-2.1\org.lwjgl\lwjgl-glfw\3.3.2\e79c4857a887bd79ba78bdf2d422a7d333028a2d\lwjgl-glfw-3.3.2-natives-windows-arm64.jar to classpath. +[01:12:30] [main/DEBUG] (FabricLoader/Knot) Adding C:\Users\rohan\.gradle\caches\modules-2\files-2.1\org.lwjgl\lwjgl-glfw\3.3.2\17e1f9ec031ef72c2f7825c38eeb3a79c4d8bb17\lwjgl-glfw-3.3.2-natives-windows-x86.jar to classpath. +[01:12:30] [main/DEBUG] (FabricLoader/Knot) Adding C:\Users\rohan\.gradle\caches\modules-2\files-2.1\org.lwjgl\lwjgl-jemalloc\3.3.2\877e17e39ebcd58a9c956dc3b5b777813de0873a\lwjgl-jemalloc-3.3.2.jar to classpath. +[01:12:30] [main/DEBUG] (FabricLoader/Knot) Adding C:\Users\rohan\.gradle\caches\modules-2\files-2.1\org.lwjgl\lwjgl-jemalloc\3.3.2\db886c1f9e313c3fa2a25543b99ccd250d3f9fb5\lwjgl-jemalloc-3.3.2-natives-windows.jar to classpath. +[01:12:30] [main/DEBUG] (FabricLoader/Knot) Adding C:\Users\rohan\.gradle\caches\modules-2\files-2.1\org.lwjgl\lwjgl-jemalloc\3.3.2\598790de603c286dbc4068b27829eacc37592786\lwjgl-jemalloc-3.3.2-natives-windows-arm64.jar to classpath. +[01:12:30] [main/DEBUG] (FabricLoader/Knot) Adding C:\Users\rohan\.gradle\caches\modules-2\files-2.1\org.lwjgl\lwjgl-jemalloc\3.3.2\9b07558f81a5d54dfaeb861bab3ccc86bb4477c9\lwjgl-jemalloc-3.3.2-natives-windows-x86.jar to classpath. +[01:12:30] [main/DEBUG] (FabricLoader/Knot) Adding C:\Users\rohan\.gradle\caches\modules-2\files-2.1\org.lwjgl\lwjgl-openal\3.3.2\ae5357ed6d934546d3533993ea84c0cfb75eed95\lwjgl-openal-3.3.2.jar to classpath. +[01:12:30] [main/DEBUG] (FabricLoader/Knot) Adding C:\Users\rohan\.gradle\caches\modules-2\files-2.1\org.lwjgl\lwjgl-openal\3.3.2\e74f299a602192faaf14b917632e4cbbb493c940\lwjgl-openal-3.3.2-natives-windows.jar to classpath. +[01:12:30] [main/DEBUG] (FabricLoader/Knot) Adding C:\Users\rohan\.gradle\caches\modules-2\files-2.1\org.lwjgl\lwjgl-openal\3.3.2\545ddec7959007a78b6662d616e00dacf00e1c29\lwjgl-openal-3.3.2-natives-windows-arm64.jar to classpath. +[01:12:30] [main/DEBUG] (FabricLoader/Knot) Adding C:\Users\rohan\.gradle\caches\modules-2\files-2.1\org.lwjgl\lwjgl-openal\3.3.2\21fcb44d32ccf101017ec939fc740197677557d5\lwjgl-openal-3.3.2-natives-windows-x86.jar to classpath. +[01:12:30] [main/DEBUG] (FabricLoader/Knot) Adding C:\Users\rohan\.gradle\caches\modules-2\files-2.1\org.lwjgl\lwjgl-opengl\3.3.2\ee8e95be0b438602038bc1f02dc5e3d011b1b216\lwjgl-opengl-3.3.2.jar to classpath. +[01:12:30] [main/DEBUG] (FabricLoader/Knot) Adding C:\Users\rohan\.gradle\caches\modules-2\files-2.1\org.lwjgl\lwjgl-opengl\3.3.2\83cd34469d4e0bc335bf74c7f62206530a9480bf\lwjgl-opengl-3.3.2-natives-windows.jar to classpath. +[01:12:30] [main/DEBUG] (FabricLoader/Knot) Adding C:\Users\rohan\.gradle\caches\modules-2\files-2.1\org.lwjgl\lwjgl-opengl\3.3.2\21df035bf03dbf5001f92291b24dc951da513481\lwjgl-opengl-3.3.2-natives-windows-arm64.jar to classpath. +[01:12:30] [main/DEBUG] (FabricLoader/Knot) Adding C:\Users\rohan\.gradle\caches\modules-2\files-2.1\org.lwjgl\lwjgl-opengl\3.3.2\22fa4149159154b24f6c1bd46a342d4958a9fba1\lwjgl-opengl-3.3.2-natives-windows-x86.jar to classpath. +[01:12:30] [main/DEBUG] (FabricLoader/Knot) Adding C:\Users\rohan\.gradle\caches\modules-2\files-2.1\org.lwjgl\lwjgl-stb\3.3.2\a2550795014d622b686e9caac50b14baa87d2c70\lwjgl-stb-3.3.2.jar to classpath. +[01:12:30] [main/DEBUG] (FabricLoader/Knot) Adding C:\Users\rohan\.gradle\caches\modules-2\files-2.1\org.lwjgl\lwjgl-stb\3.3.2\1c4f4b8353bdb78c5264ab921436f03fc9aa1ba5\lwjgl-stb-3.3.2-natives-windows.jar to classpath. +[01:12:30] [main/DEBUG] (FabricLoader/Knot) Adding C:\Users\rohan\.gradle\caches\modules-2\files-2.1\org.lwjgl\lwjgl-stb\3.3.2\c29df97c3cca97dc00d34e171936153764c9f78b\lwjgl-stb-3.3.2-natives-windows-arm64.jar to classpath. +[01:12:30] [main/DEBUG] (FabricLoader/Knot) Adding C:\Users\rohan\.gradle\caches\modules-2\files-2.1\org.lwjgl\lwjgl-stb\3.3.2\a0de7bde6722fa68d25ba6afbd7395508c53c730\lwjgl-stb-3.3.2-natives-windows-x86.jar to classpath. +[01:12:30] [main/DEBUG] (FabricLoader/Knot) Adding C:\Users\rohan\.gradle\caches\modules-2\files-2.1\org.lwjgl\lwjgl-tinyfd\3.3.2\9f65c248dd77934105274fcf8351abb75b34327c\lwjgl-tinyfd-3.3.2.jar to classpath. +[01:12:30] [main/DEBUG] (FabricLoader/Knot) Adding C:\Users\rohan\.gradle\caches\modules-2\files-2.1\org.lwjgl\lwjgl-tinyfd\3.3.2\54a93ed247d20007a6f579355263fdc2c030753a\lwjgl-tinyfd-3.3.2-natives-windows.jar to classpath. +[01:12:30] [main/DEBUG] (FabricLoader/Knot) Adding C:\Users\rohan\.gradle\caches\modules-2\files-2.1\org.lwjgl\lwjgl-tinyfd\3.3.2\500f5daa3b731ca282d4b90aeafda94c528d3e27\lwjgl-tinyfd-3.3.2-natives-windows-arm64.jar to classpath. +[01:12:30] [main/DEBUG] (FabricLoader/Knot) Adding C:\Users\rohan\.gradle\caches\modules-2\files-2.1\org.lwjgl\lwjgl-tinyfd\3.3.2\c1dfa1c438e0262453e7bf625289540e5cbffb2\lwjgl-tinyfd-3.3.2-natives-windows-x86.jar to classpath. +[01:12:30] [main/DEBUG] (FabricLoader/Knot) Adding C:\Users\rohan\.gradle\caches\modules-2\files-2.1\org.lwjgl\lwjgl\3.3.2\4421d94af68e35dcaa31737a6fc59136a1e61b94\lwjgl-3.3.2.jar to classpath. +[01:12:30] [main/DEBUG] (FabricLoader/Knot) Adding C:\Users\rohan\.gradle\caches\modules-2\files-2.1\org.lwjgl\lwjgl\3.3.2\a55169ced70ffcd15f2162daf4a9c968578f6cd5\lwjgl-3.3.2-natives-windows.jar to classpath. +[01:12:30] [main/DEBUG] (FabricLoader/Knot) Adding C:\Users\rohan\.gradle\caches\modules-2\files-2.1\org.lwjgl\lwjgl\3.3.2\d900e4678449ba97ff46fa64b22e0376bf8cd00e\lwjgl-3.3.2-natives-windows-arm64.jar to classpath. +[01:12:30] [main/DEBUG] (FabricLoader/Knot) Adding C:\Users\rohan\.gradle\caches\modules-2\files-2.1\org.lwjgl\lwjgl\3.3.2\ed495259b2c8f068794da0ffedfa7ae7c130b3c5\lwjgl-3.3.2-natives-windows-x86.jar to classpath. +[01:12:30] [main/DEBUG] (FabricLoader/Knot) Adding C:\Users\rohan\.gradle\caches\modules-2\files-2.1\io.netty\netty-transport-native-epoll\4.1.82.Final\c7350a71920f3ae9142945e25fed4846cce53374\netty-transport-native-epoll-4.1.82.Final-linux-x86_64.jar to classpath. +[01:12:30] [main/DEBUG] (FabricLoader/Knot) Adding C:\Users\rohan\.gradle\caches\modules-2\files-2.1\io.netty\netty-transport-native-epoll\4.1.82.Final\476409d6255001ca53a55f65b01c13822f8dc93a\netty-transport-native-epoll-4.1.82.Final-linux-aarch_64.jar to classpath. +[01:12:30] [main/DEBUG] (FabricLoader/Knot) Adding D:\BridgeBase\.gradle\loom-cache\remapped_mods\net_fabricmc_yarn_1_19_4_1_19_4_build_2_v2\net\fabricmc\fabric-api\fabric-api\0.79.0+1.19.4\fabric-api-0.79.0+1.19.4.jar to classpath. +[01:12:30] [main/DEBUG] (FabricLoader/Knot) Adding D:\BridgeBase\.gradle\loom-cache\remapped_mods\net_fabricmc_yarn_1_19_4_1_19_4_build_2_v2\net\fabricmc\fabric-api\fabric-transfer-api-v1\3.1.1+da9bb835f4\fabric-transfer-api-v1-3.1.1+da9bb835f4.jar to classpath. +[01:12:30] [main/DEBUG] (FabricLoader/Knot) Adding D:\BridgeBase\.gradle\loom-cache\remapped_mods\net_fabricmc_yarn_1_19_4_1_19_4_build_2_v2\net\fabricmc\fabric-api\fabric-api-lookup-api-v1\1.6.25+49abcf7ef4\fabric-api-lookup-api-v1-1.6.25+49abcf7ef4.jar to classpath. +[01:12:30] [main/DEBUG] (FabricLoader/Knot) Adding D:\BridgeBase\.gradle\loom-cache\remapped_mods\net_fabricmc_yarn_1_19_4_1_19_4_build_2_v2\net\fabricmc\fabric-api\fabric-blockrenderlayer-v1\1.1.34+c2e6f674f4\fabric-blockrenderlayer-v1-1.1.34+c2e6f674f4.jar to classpath. +[01:12:30] [main/DEBUG] (FabricLoader/Knot) Adding D:\BridgeBase\.gradle\loom-cache\remapped_mods\net_fabricmc_yarn_1_19_4_1_19_4_build_2_v2\net\fabricmc\fabric-api\fabric-client-tags-api-v1\1.0.15+1134c5b8f4\fabric-client-tags-api-v1-1.0.15+1134c5b8f4.jar to classpath. +[01:12:30] [main/DEBUG] (FabricLoader/Knot) Adding D:\BridgeBase\.gradle\loom-cache\remapped_mods\net_fabricmc_yarn_1_19_4_1_19_4_build_2_v2\net\fabricmc\fabric-api\fabric-command-api-v1\1.2.27+f71b366ff4\fabric-command-api-v1-1.2.27+f71b366ff4.jar to classpath. +[01:12:30] [main/DEBUG] (FabricLoader/Knot) Adding D:\BridgeBase\.gradle\loom-cache\remapped_mods\net_fabricmc_yarn_1_19_4_1_19_4_build_2_v2\net\fabricmc\fabric-api\fabric-commands-v0\0.2.44+df3654b3f4\fabric-commands-v0-0.2.44+df3654b3f4.jar to classpath. +[01:12:30] [main/DEBUG] (FabricLoader/Knot) Adding D:\BridgeBase\.gradle\loom-cache\remapped_mods\net_fabricmc_yarn_1_19_4_1_19_4_build_2_v2\net\fabricmc\fabric-api\fabric-command-api-v2\2.2.6+e719b857f4\fabric-command-api-v2-2.2.6+e719b857f4.jar to classpath. +[01:12:30] [main/DEBUG] (FabricLoader/Knot) Adding D:\BridgeBase\.gradle\loom-cache\remapped_mods\net_fabricmc_yarn_1_19_4_1_19_4_build_2_v2\net\fabricmc\fabric-api\fabric-content-registries-v0\3.5.9+ae0966baf4\fabric-content-registries-v0-3.5.9+ae0966baf4.jar to classpath. +[01:12:30] [main/DEBUG] (FabricLoader/Knot) Adding D:\BridgeBase\.gradle\loom-cache\remapped_mods\net_fabricmc_yarn_1_19_4_1_19_4_build_2_v2\net\fabricmc\fabric-api\fabric-convention-tags-v1\1.4.1+9a7c5daaf4\fabric-convention-tags-v1-1.4.1+9a7c5daaf4.jar to classpath. +[01:12:30] [main/DEBUG] (FabricLoader/Knot) Adding D:\BridgeBase\.gradle\loom-cache\remapped_mods\net_fabricmc_yarn_1_19_4_1_19_4_build_2_v2\net\fabricmc\fabric-api\fabric-data-generation-api-v1\11.4.0+6cebf059f4\fabric-data-generation-api-v1-11.4.0+6cebf059f4.jar to classpath. +[01:12:30] [main/DEBUG] (FabricLoader/Knot) Adding D:\BridgeBase\.gradle\loom-cache\remapped_mods\net_fabricmc_yarn_1_19_4_1_19_4_build_2_v2\net\fabricmc\fabric-api\fabric-dimensions-v1\2.1.45+7f87f8faf4\fabric-dimensions-v1-2.1.45+7f87f8faf4.jar to classpath. +[01:12:30] [main/DEBUG] (FabricLoader/Knot) Adding D:\BridgeBase\.gradle\loom-cache\remapped_mods\net_fabricmc_yarn_1_19_4_1_19_4_build_2_v2\net\fabricmc\fabric-api\fabric-entity-events-v1\1.5.13+e45f7c65f4\fabric-entity-events-v1-1.5.13+e45f7c65f4.jar to classpath. +[01:12:30] [main/DEBUG] (FabricLoader/Knot) Adding D:\BridgeBase\.gradle\loom-cache\remapped_mods\net_fabricmc_yarn_1_19_4_1_19_4_build_2_v2\net\fabricmc\fabric-api\fabric-events-interaction-v0\0.4.43+a1ccd7bff4\fabric-events-interaction-v0-0.4.43+a1ccd7bff4.jar to classpath. +[01:12:30] [main/DEBUG] (FabricLoader/Knot) Adding D:\BridgeBase\.gradle\loom-cache\remapped_mods\net_fabricmc_yarn_1_19_4_1_19_4_build_2_v2\net\fabricmc\fabric-api\fabric-gametest-api-v1\1.2.4+ae0966baf4\fabric-gametest-api-v1-1.2.4+ae0966baf4.jar to classpath. +[01:12:30] [main/DEBUG] (FabricLoader/Knot) Adding D:\BridgeBase\.gradle\loom-cache\remapped_mods\net_fabricmc_yarn_1_19_4_1_19_4_build_2_v2\net\fabricmc\fabric-api\fabric-events-lifecycle-v0\0.2.52+df3654b3f4\fabric-events-lifecycle-v0-0.2.52+df3654b3f4.jar to classpath. +[01:12:30] [main/DEBUG] (FabricLoader/Knot) Adding D:\BridgeBase\.gradle\loom-cache\remapped_mods\net_fabricmc_yarn_1_19_4_1_19_4_build_2_v2\net\fabricmc\fabric-api\fabric-item-api-v1\2.1.17+09a3510cf4\fabric-item-api-v1-2.1.17+09a3510cf4.jar to classpath. +[01:12:30] [main/DEBUG] (FabricLoader/Knot) Adding D:\BridgeBase\.gradle\loom-cache\remapped_mods\net_fabricmc_yarn_1_19_4_1_19_4_build_2_v2\net\fabricmc\fabric-api\fabric-item-group-api-v1\3.0.5+043f9acff4\fabric-item-group-api-v1-3.0.5+043f9acff4.jar to classpath. +[01:12:30] [main/DEBUG] (FabricLoader/Knot) Adding D:\BridgeBase\.gradle\loom-cache\remapped_mods\net_fabricmc_yarn_1_19_4_1_19_4_build_2_v2\net\fabricmc\fabric-api\fabric-mining-level-api-v1\2.1.39+49abcf7ef4\fabric-mining-level-api-v1-2.1.39+49abcf7ef4.jar to classpath. +[01:12:30] [main/DEBUG] (FabricLoader/Knot) Adding D:\BridgeBase\.gradle\loom-cache\remapped_mods\net_fabricmc_yarn_1_19_4_1_19_4_build_2_v2\net\fabricmc\fabric-api\fabric-lifecycle-events-v1\2.2.15+5da15ca1f4\fabric-lifecycle-events-v1-2.2.15+5da15ca1f4.jar to classpath. +[01:12:30] [main/DEBUG] (FabricLoader/Knot) Adding D:\BridgeBase\.gradle\loom-cache\remapped_mods\net_fabricmc_yarn_1_19_4_1_19_4_build_2_v2\net\fabricmc\fabric-api\fabric-loot-tables-v1\1.1.31+9e7660c6f4\fabric-loot-tables-v1-1.1.31+9e7660c6f4.jar to classpath. +[01:12:30] [main/DEBUG] (FabricLoader/Knot) Adding D:\BridgeBase\.gradle\loom-cache\remapped_mods\net_fabricmc_yarn_1_19_4_1_19_4_build_2_v2\net\fabricmc\fabric-api\fabric-loot-api-v2\1.1.27+75e98211f4\fabric-loot-api-v2-1.1.27+75e98211f4.jar to classpath. +[01:12:30] [main/DEBUG] (FabricLoader/Knot) Adding D:\BridgeBase\.gradle\loom-cache\remapped_mods\net_fabricmc_yarn_1_19_4_1_19_4_build_2_v2\net\fabricmc\fabric-api\fabric-message-api-v1\5.1.1+1ee8be40f4\fabric-message-api-v1-5.1.1+1ee8be40f4.jar to classpath. +[01:12:30] [main/DEBUG] (FabricLoader/Knot) Adding D:\BridgeBase\.gradle\loom-cache\remapped_mods\net_fabricmc_yarn_1_19_4_1_19_4_build_2_v2\net\fabricmc\fabric-api\fabric-models-v0\0.3.30+11ba9c3bf4\fabric-models-v0-0.3.30+11ba9c3bf4.jar to classpath. +[01:12:30] [main/DEBUG] (FabricLoader/Knot) Adding D:\BridgeBase\.gradle\loom-cache\remapped_mods\net_fabricmc_yarn_1_19_4_1_19_4_build_2_v2\net\fabricmc\fabric-api\fabric-recipe-api-v1\1.0.8+a1ccd7bff4\fabric-recipe-api-v1-1.0.8+a1ccd7bff4.jar to classpath. +[01:12:30] [main/DEBUG] (FabricLoader/Knot) Adding D:\BridgeBase\.gradle\loom-cache\remapped_mods\net_fabricmc_yarn_1_19_4_1_19_4_build_2_v2\net\fabricmc\fabric-api\fabric-registry-sync-v0\2.2.0+670e8ac6f4\fabric-registry-sync-v0-2.2.0+670e8ac6f4.jar to classpath. +[01:12:30] [main/DEBUG] (FabricLoader/Knot) Adding D:\BridgeBase\.gradle\loom-cache\remapped_mods\net_fabricmc_yarn_1_19_4_1_19_4_build_2_v2\net\fabricmc\fabric-api\fabric-screen-handler-api-v1\1.3.20+5da15ca1f4\fabric-screen-handler-api-v1-1.3.20+5da15ca1f4.jar to classpath. +[01:12:30] [main/DEBUG] (FabricLoader/Knot) Adding D:\BridgeBase\.gradle\loom-cache\remapped_mods\net_fabricmc_yarn_1_19_4_1_19_4_build_2_v2\net\fabricmc\fabric-api\fabric-containers-v0\0.1.54+df3654b3f4\fabric-containers-v0-0.1.54+df3654b3f4.jar to classpath. +[01:12:30] [main/DEBUG] (FabricLoader/Knot) Adding D:\BridgeBase\.gradle\loom-cache\remapped_mods\net_fabricmc_yarn_1_19_4_1_19_4_build_2_v2\net\fabricmc\fabric-api\fabric-networking-v0\0.3.41+df3654b3f4\fabric-networking-v0-0.3.41+df3654b3f4.jar to classpath. +[01:12:30] [main/DEBUG] (FabricLoader/Knot) Adding D:\BridgeBase\.gradle\loom-cache\remapped_mods\net_fabricmc_yarn_1_19_4_1_19_4_build_2_v2\net\fabricmc\fabric-api\fabric-networking-api-v1\1.3.1+a6f3ccfaf4\fabric-networking-api-v1-1.3.1+a6f3ccfaf4.jar to classpath. +[01:12:30] [main/DEBUG] (FabricLoader/Knot) Adding D:\BridgeBase\.gradle\loom-cache\remapped_mods\net_fabricmc_yarn_1_19_4_1_19_4_build_2_v2\net\fabricmc\fabric-api\fabric-object-builder-api-v1\7.0.3+63b515f4f4\fabric-object-builder-api-v1-7.0.3+63b515f4f4.jar to classpath. +[01:12:30] [main/DEBUG] (FabricLoader/Knot) Adding D:\BridgeBase\.gradle\loom-cache\remapped_mods\net_fabricmc_yarn_1_19_4_1_19_4_build_2_v2\net\fabricmc\fabric-api\fabric-particles-v1\1.0.23+f1e4495bf4\fabric-particles-v1-1.0.23+f1e4495bf4.jar to classpath. +[01:12:30] [main/DEBUG] (FabricLoader/Knot) Adding D:\BridgeBase\.gradle\loom-cache\remapped_mods\net_fabricmc_yarn_1_19_4_1_19_4_build_2_v2\net\fabricmc\fabric-api\fabric-renderer-indigo\1.1.1+81e8c576f4\fabric-renderer-indigo-1.1.1+81e8c576f4.jar to classpath. +[01:12:30] [main/DEBUG] (FabricLoader/Knot) Adding D:\BridgeBase\.gradle\loom-cache\remapped_mods\net_fabricmc_yarn_1_19_4_1_19_4_build_2_v2\net\fabricmc\fabric-api\fabric-renderer-api-v1\2.2.5+81e8c576f4\fabric-renderer-api-v1-2.2.5+81e8c576f4.jar to classpath. +[01:12:30] [main/DEBUG] (FabricLoader/Knot) Adding D:\BridgeBase\.gradle\loom-cache\remapped_mods\net_fabricmc_yarn_1_19_4_1_19_4_build_2_v2\net\fabricmc\fabric-api\fabric-rendering-data-attachment-v1\0.3.28+afca2f3ef4\fabric-rendering-data-attachment-v1-0.3.28+afca2f3ef4.jar to classpath. +[01:12:30] [main/DEBUG] (FabricLoader/Knot) Adding D:\BridgeBase\.gradle\loom-cache\remapped_mods\net_fabricmc_yarn_1_19_4_1_19_4_build_2_v2\net\fabricmc\fabric-api\fabric-rendering-fluids-v1\3.0.21+f1e4495bf4\fabric-rendering-fluids-v1-3.0.21+f1e4495bf4.jar to classpath. +[01:12:30] [main/DEBUG] (FabricLoader/Knot) Adding D:\BridgeBase\.gradle\loom-cache\remapped_mods\net_fabricmc_yarn_1_19_4_1_19_4_build_2_v2\net\fabricmc\fabric-api\fabric-renderer-registries-v1\3.2.38+df3654b3f4\fabric-renderer-registries-v1-3.2.38+df3654b3f4.jar to classpath. +[01:12:30] [main/DEBUG] (FabricLoader/Knot) Adding D:\BridgeBase\.gradle\loom-cache\remapped_mods\net_fabricmc_yarn_1_19_4_1_19_4_build_2_v2\net\fabricmc\fabric-api\fabric-rendering-v0\1.1.41+df3654b3f4\fabric-rendering-v0-1.1.41+df3654b3f4.jar to classpath. +[01:12:30] [main/DEBUG] (FabricLoader/Knot) Adding D:\BridgeBase\.gradle\loom-cache\remapped_mods\net_fabricmc_yarn_1_19_4_1_19_4_build_2_v2\net\fabricmc\fabric-api\fabric-rendering-v1\2.1.1+8f878217f4\fabric-rendering-v1-2.1.1+8f878217f4.jar to classpath. +[01:12:30] [main/DEBUG] (FabricLoader/Knot) Adding D:\BridgeBase\.gradle\loom-cache\remapped_mods\net_fabricmc_yarn_1_19_4_1_19_4_build_2_v2\net\fabricmc\fabric-api\fabric-screen-api-v1\1.0.45+8c25edb4f4\fabric-screen-api-v1-1.0.45+8c25edb4f4.jar to classpath. +[01:12:30] [main/DEBUG] (FabricLoader/Knot) Adding D:\BridgeBase\.gradle\loom-cache\remapped_mods\net_fabricmc_yarn_1_19_4_1_19_4_build_2_v2\net\fabricmc\fabric-api\fabric-api-base\0.4.24+9ff28bcef4\fabric-api-base-0.4.24+9ff28bcef4.jar to classpath. +[01:12:30] [main/DEBUG] (FabricLoader/Knot) Adding D:\BridgeBase\.gradle\loom-cache\remapped_mods\net_fabricmc_yarn_1_19_4_1_19_4_build_2_v2\net\fabricmc\fabric-api\fabric-biome-api-v1\13.0.7+348a9c64f4\fabric-biome-api-v1-13.0.7+348a9c64f4.jar to classpath. +[01:12:30] [main/DEBUG] (FabricLoader/Knot) Adding D:\BridgeBase\.gradle\loom-cache\remapped_mods\net_fabricmc_yarn_1_19_4_1_19_4_build_2_v2\net\fabricmc\fabric-api\fabric-block-api-v1\1.0.6+e022e5d1f4\fabric-block-api-v1-1.0.6+e022e5d1f4.jar to classpath. +[01:12:30] [main/DEBUG] (FabricLoader/Knot) Adding D:\BridgeBase\.gradle\loom-cache\remapped_mods\net_fabricmc_yarn_1_19_4_1_19_4_build_2_v2\net\fabricmc\fabric-api\fabric-crash-report-info-v1\0.2.15+aeb40ebef4\fabric-crash-report-info-v1-0.2.15+aeb40ebef4.jar to classpath. +[01:12:30] [main/DEBUG] (FabricLoader/Knot) Adding D:\BridgeBase\.gradle\loom-cache\remapped_mods\net_fabricmc_yarn_1_19_4_1_19_4_build_2_v2\net\fabricmc\fabric-api\fabric-game-rule-api-v1\1.0.33+a1ccd7bff4\fabric-game-rule-api-v1-1.0.33+a1ccd7bff4.jar to classpath. +[01:12:30] [main/DEBUG] (FabricLoader/Knot) Adding D:\BridgeBase\.gradle\loom-cache\remapped_mods\net_fabricmc_yarn_1_19_4_1_19_4_build_2_v2\net\fabricmc\fabric-api\fabric-keybindings-v0\0.2.31+df3654b3f4\fabric-keybindings-v0-0.2.31+df3654b3f4.jar to classpath. +[01:12:30] [main/DEBUG] (FabricLoader/Knot) Adding D:\BridgeBase\.gradle\loom-cache\remapped_mods\net_fabricmc_yarn_1_19_4_1_19_4_build_2_v2\net\fabricmc\fabric-api\fabric-key-binding-api-v1\1.0.33+c477957ef4\fabric-key-binding-api-v1-1.0.33+c477957ef4.jar to classpath. +[01:12:30] [main/DEBUG] (FabricLoader/Knot) Adding D:\BridgeBase\.gradle\loom-cache\remapped_mods\net_fabricmc_yarn_1_19_4_1_19_4_build_2_v2\net\fabricmc\fabric-api\fabric-resource-conditions-api-v1\2.3.1+e6c7d4eef4\fabric-resource-conditions-api-v1-2.3.1+e6c7d4eef4.jar to classpath. +[01:12:30] [main/DEBUG] (FabricLoader/Knot) Adding D:\BridgeBase\.gradle\loom-cache\remapped_mods\net_fabricmc_yarn_1_19_4_1_19_4_build_2_v2\net\fabricmc\fabric-api\fabric-resource-loader-v0\0.11.2+1e1fb126f4\fabric-resource-loader-v0-0.11.2+1e1fb126f4.jar to classpath. +[01:12:30] [main/DEBUG] (FabricLoader/Knot) Adding D:\BridgeBase\.gradle\loom-cache\remapped_mods\net_fabricmc_yarn_1_19_4_1_19_4_build_2_v2\net\fabricmc\fabric-api\fabric-sound-api-v1\1.0.9+75e98211f4\fabric-sound-api-v1-1.0.9+75e98211f4.jar to classpath. +[01:12:30] [main/DEBUG] (FabricLoader/Knot) Adding D:\BridgeBase\.gradle\loom-cache\remapped_mods\net_fabricmc_yarn_1_19_4_1_19_4_build_2_v2\net\fabricmc\fabric-api\fabric-transitive-access-wideners-v1\3.0.3+63b515f4f4\fabric-transitive-access-wideners-v1-3.0.3+63b515f4f4.jar to classpath. +[01:12:30] [main/DEBUG] (FabricLoader/Knot) Adding C:\Users\rohan\.gradle\caches\modules-2\files-2.1\org.jetbrains\annotations\13.0\919f0dfe192fb4e063e7dacadee7f8bb9a2672a9\annotations-13.0.jar to classpath. +[01:12:30] [main/DEBUG] (FabricLoader/Knot) Adding C:\Users\rohan\.gradle\caches\modules-2\files-2.1\org.jline\jline-reader\3.12.1\4382ab1382c7b6f379377ed5f665dc2f6e1218bc\jline-reader-3.12.1.jar to classpath. +[01:12:30] [main/DEBUG] (FabricLoader/Knot) Adding C:\Users\rohan\.gradle\caches\modules-2\files-2.1\org.jline\jline-terminal\3.12.1\c777448314e050d980a6b697c140f3bfe9eb7416\jline-terminal-3.12.1.jar to classpath. +[01:12:30] [main/DEBUG] (FabricLoader/Entrypoint) No subscribers for entrypoint 'preLaunch' +[01:12:30] [main/DEBUG] (FabricLoader/Mixin) Preparing mixins for MixinEnvironment[DEFAULT] +[01:12:30] [main/DEBUG] (FabricLoader/Mixin) Selecting config fabric-entity-events-v1.mixins.json +[01:12:30] [main/DEBUG] (FabricLoader/Mixin) Remapping refMap fabric-entity-events-v1-refmap.json using remapper chain +[01:12:30] [main/DEBUG] (FabricLoader/Mixin) Selecting config fabric-entity-events-v1.client.mixins.json +[01:12:30] [main/DEBUG] (FabricLoader/Mixin) Remapping refMap client-fabric-entity-events-v1-refmap.json using remapper chain +[01:12:30] [main/DEBUG] (FabricLoader/Mixin) Selecting config fabric-screen-handler-api-v1.mixins.json +[01:12:30] [main/DEBUG] (FabricLoader/Mixin) Remapping refMap fabric-screen-handler-api-v1-refmap.json using remapper chain +[01:12:30] [main/DEBUG] (FabricLoader/Mixin) Selecting config fabric-loot-tables-v1.mixins.json +[01:12:30] [main/DEBUG] (FabricLoader/Mixin) Remapping refMap fabric-loot-tables-v1-refmap.json using remapper chain +[01:12:30] [main/DEBUG] (FabricLoader/Mixin) Selecting config fabric-item-group-api-v1.mixins.json +[01:12:30] [main/DEBUG] (FabricLoader/Mixin) Remapping refMap fabric-item-group-api-v1-refmap.json using remapper chain +[01:12:30] [main/DEBUG] (FabricLoader/Mixin) Selecting config fabric-item-group-api-v1.client.mixins.json +[01:12:30] [main/DEBUG] (FabricLoader/Mixin) Remapping refMap client-fabric-item-group-api-v1-refmap.json using remapper chain +[01:12:30] [main/DEBUG] (FabricLoader/Mixin) Selecting config fabric-lifecycle-events-v1.mixins.json +[01:12:30] [main/DEBUG] (FabricLoader/Mixin) Remapping refMap fabric-lifecycle-events-v1-refmap.json using remapper chain +[01:12:30] [main/DEBUG] (FabricLoader/Mixin) Selecting config fabric-lifecycle-events-v1.client.mixins.json +[01:12:30] [main/DEBUG] (FabricLoader/Mixin) Remapping refMap client-fabric-lifecycle-events-v1-refmap.json using remapper chain +[01:12:30] [main/DEBUG] (FabricLoader/Mixin) Selecting config fabric-api-lookup-api-v1.mixins.json +[01:12:30] [main/DEBUG] (FabricLoader/Mixin) Remapping refMap fabric-api-lookup-api-v1-refmap.json using remapper chain +[01:12:30] [main/DEBUG] (FabricLoader/Mixin) Selecting config fabric-screen-api-v1.mixins.json +[01:12:30] [main/DEBUG] (FabricLoader/Mixin) Remapping refMap client-fabric-screen-api-v1-refmap.json using remapper chain +[01:12:30] [main/DEBUG] (FabricLoader/Mixin) Selecting config fabric-content-registries-v0.mixins.json +[01:12:30] [main/DEBUG] (FabricLoader/Mixin) Remapping refMap fabric-content-registries-v0-refmap.json using remapper chain +[01:12:30] [main/DEBUG] (FabricLoader/Mixin) Selecting config fabric-resource-loader-v0.mixins.json +[01:12:30] [main/DEBUG] (FabricLoader/Mixin) Remapping refMap fabric-resource-loader-v0-refmap.json using remapper chain +[01:12:30] [main/DEBUG] (FabricLoader/Mixin) Selecting config fabric-resource-loader-v0.client.mixins.json +[01:12:30] [main/DEBUG] (FabricLoader/Mixin) Remapping refMap client-fabric-resource-loader-v0-refmap.json using remapper chain +[01:12:30] [main/DEBUG] (FabricLoader/Mixin) Selecting config fabric-key-binding-api-v1.mixins.json +[01:12:30] [main/DEBUG] (FabricLoader/Mixin) Remapping refMap client-fabric-key-binding-api-v1-refmap.json using remapper chain +[01:12:30] [main/DEBUG] (FabricLoader/Mixin) Selecting config fabric-item-api-v1.mixins.json +[01:12:30] [main/DEBUG] (FabricLoader/Mixin) Remapping refMap fabric-item-api-v1-refmap.json using remapper chain +[01:12:30] [main/DEBUG] (FabricLoader/Mixin) Selecting config fabric-item-api-v1.client.mixins.json +[01:12:30] [main/DEBUG] (FabricLoader/Mixin) Remapping refMap client-fabric-item-api-v1-refmap.json using remapper chain +[01:12:30] [main/DEBUG] (FabricLoader/Mixin) Selecting config fabric-biome-api-v1.mixins.json +[01:12:30] [main/DEBUG] (FabricLoader/Mixin) Remapping refMap fabric-biome-api-v1-refmap.json using remapper chain +[01:12:30] [main/DEBUG] (FabricLoader/Mixin) Selecting config fabric-blockrenderlayer-v1.mixins.json +[01:12:30] [main/DEBUG] (FabricLoader/Mixin) Remapping refMap client-fabric-blockrenderlayer-v1-refmap.json using remapper chain +[01:12:30] [main/DEBUG] (FabricLoader/Mixin) Selecting config fabric-sound-api-v1.mixins.json +[01:12:30] [main/DEBUG] (FabricLoader/Mixin) Remapping refMap client-fabric-sound-api-v1-refmap.json using remapper chain +[01:12:30] [main/DEBUG] (FabricLoader/Mixin) Selecting config fabric-networking-api-v1.mixins.json +[01:12:30] [main/DEBUG] (FabricLoader/Mixin) Remapping refMap fabric-networking-api-v1-refmap.json using remapper chain +[01:12:30] [main/DEBUG] (FabricLoader/Mixin) Selecting config fabric-networking-api-v1.client.mixins.json +[01:12:30] [main/DEBUG] (FabricLoader/Mixin) Remapping refMap client-fabric-networking-api-v1-refmap.json using remapper chain +[01:12:30] [main/DEBUG] (FabricLoader/Mixin) Selecting config fabric-command-api-v2.mixins.json +[01:12:30] [main/DEBUG] (FabricLoader/Mixin) Remapping refMap fabric-command-api-v2-refmap.json using remapper chain +[01:12:30] [main/DEBUG] (FabricLoader/Mixin) Selecting config fabric-command-api-v2.client.mixins.json +[01:12:30] [main/DEBUG] (FabricLoader/Mixin) Remapping refMap client-fabric-command-api-v2-refmap.json using remapper chain +[01:12:30] [main/DEBUG] (FabricLoader/Mixin) Selecting config fabric-mining-level-api-v1.mixins.json +[01:12:30] [main/DEBUG] (FabricLoader/Mixin) Remapping refMap fabric-mining-level-api-v1-refmap.json using remapper chain +[01:12:30] [main/DEBUG] (FabricLoader/Mixin) Selecting config fabric-rendering-fluids-v1.mixins.json +[01:12:30] [main/DEBUG] (FabricLoader/Mixin) Remapping refMap client-fabric-rendering-fluids-v1-refmap.json using remapper chain +[01:12:30] [main/DEBUG] (FabricLoader/Mixin) Selecting config fabric-dimensions-v1.mixins.json +[01:12:30] [main/DEBUG] (FabricLoader/Mixin) Remapping refMap fabric-dimensions-v1-refmap.json using remapper chain +[01:12:30] [main/DEBUG] (FabricLoader/Mixin) Selecting config fabric-game-rule-api-v1.mixins.json +[01:12:30] [main/DEBUG] (FabricLoader/Mixin) Remapping refMap fabric-game-rule-api-v1-refmap.json using remapper chain +[01:12:30] [main/DEBUG] (FabricLoader/Mixin) Selecting config fabric-game-rule-api-v1.client.mixins.json +[01:12:30] [main/DEBUG] (FabricLoader/Mixin) Remapping refMap client-fabric-game-rule-api-v1-refmap.json using remapper chain +[01:12:30] [main/DEBUG] (FabricLoader/Mixin) Selecting config fabric-rendering-data-attachment-v1.mixins.json +[01:12:30] [main/DEBUG] (FabricLoader/Mixin) Remapping refMap fabric-rendering-data-attachment-v1-refmap.json using remapper chain +[01:12:30] [main/DEBUG] (FabricLoader/Mixin) Selecting config fabric-rendering-data-attachment-v1.client.mixins.json +[01:12:30] [main/DEBUG] (FabricLoader/Mixin) Remapping refMap client-fabric-rendering-data-attachment-v1-refmap.json using remapper chain +[01:12:30] [main/DEBUG] (FabricLoader/Mixin) Selecting config fabric-renderer-api-v1.mixins.json +[01:12:30] [main/DEBUG] (FabricLoader/Mixin) Remapping refMap client-fabric-renderer-api-v1-refmap.json using remapper chain +[01:12:30] [main/DEBUG] (FabricLoader/Mixin) Selecting config fabric-renderer-api-v1.debughud.mixins.json +[01:12:30] [main/DEBUG] (FabricLoader/Mixin) Remapping refMap client-fabric-renderer-api-v1-refmap.json using remapper chain +[01:12:30] [main/DEBUG] (FabricLoader/Mixin) Selecting config fabric-object-builder-v1.mixins.json +[01:12:30] [main/DEBUG] (FabricLoader/Mixin) Remapping refMap fabric-object-builder-api-v1-refmap.json using remapper chain +[01:12:30] [main/DEBUG] (FabricLoader/Mixin) Selecting config fabric-object-builder-v1.client.mixins.json +[01:12:30] [main/DEBUG] (FabricLoader/Mixin) Remapping refMap client-fabric-object-builder-api-v1-refmap.json using remapper chain +[01:12:30] [main/DEBUG] (FabricLoader/Mixin) Selecting config fabric-recipe-api-v1.mixins.json +[01:12:30] [main/DEBUG] (FabricLoader/Mixin) Remapping refMap fabric-recipe-api-v1-refmap.json using remapper chain +[01:12:30] [main/DEBUG] (FabricLoader/Mixin) Selecting config client.mixins.json +[01:12:30] [main/DEBUG] (FabricLoader/Mixin) Selecting config mixinextras.init.mixins.json +[01:12:30] [main/DEBUG] (FabricLoader/MixinExtras|Service) com.llamalad7.mixinextras.service.MixinExtrasServiceImpl(version=0.3.2) is taking over from null +[01:12:30] [main/DEBUG] (FabricLoader/Mixin) Registering new injector for @Inject with org.spongepowered.asm.mixin.injection.struct.CallbackInjectionInfo +[01:12:30] [main/DEBUG] (FabricLoader/Mixin) Registering new injector for @ModifyArg with org.spongepowered.asm.mixin.injection.struct.ModifyArgInjectionInfo +[01:12:30] [main/DEBUG] (FabricLoader/Mixin) Registering new injector for @ModifyArgs with org.spongepowered.asm.mixin.injection.struct.ModifyArgsInjectionInfo +[01:12:30] [main/DEBUG] (FabricLoader/Mixin) Registering new injector for @Redirect with org.spongepowered.asm.mixin.injection.struct.RedirectInjectionInfo +[01:12:30] [main/DEBUG] (FabricLoader/Mixin) Registering new injector for @ModifyVariable with org.spongepowered.asm.mixin.injection.struct.ModifyVariableInjectionInfo +[01:12:30] [main/DEBUG] (FabricLoader/Mixin) Registering new injector for @ModifyConstant with org.spongepowered.asm.mixin.injection.struct.ModifyConstantInjectionInfo +[01:12:30] [main/DEBUG] (FabricLoader/Mixin) Selecting config fabric-resource-conditions-api-v1.mixins.json +[01:12:30] [main/DEBUG] (FabricLoader/Mixin) Remapping refMap fabric-resource-conditions-api-v1-refmap.json using remapper chain +[01:12:30] [main/DEBUG] (FabricLoader/Mixin) Selecting config fabric-renderer-indigo.mixins.json +[01:12:30] [main/DEBUG] (FabricLoader/Mixin) Remapping refMap client-fabric-renderer-indigo-refmap.json using remapper chain +[01:12:30] [main/DEBUG] (FabricLoader/Mixin) Selecting config fabric-loot-api-v2.mixins.json +[01:12:30] [main/DEBUG] (FabricLoader/Mixin) Remapping refMap fabric-loot-api-v2-refmap.json using remapper chain +[01:12:30] [main/DEBUG] (FabricLoader/Mixin) Selecting config fabric-crash-report-info-v1.mixins.json +[01:12:30] [main/DEBUG] (FabricLoader/Mixin) Remapping refMap fabric-crash-report-info-v1-refmap.json using remapper chain +[01:12:30] [main/DEBUG] (FabricLoader/Mixin) Selecting config fabric-gametest-api-v1.mixins.json +[01:12:30] [main/DEBUG] (FabricLoader/Mixin) Remapping refMap fabric-gametest-api-v1-refmap.json using remapper chain +[01:12:30] [main/DEBUG] (FabricLoader/Mixin) Selecting config fabric-particles-v1.client.mixins.json +[01:12:30] [main/DEBUG] (FabricLoader/Mixin) Remapping refMap client-fabric-particles-v1-refmap.json using remapper chain +[01:12:30] [main/DEBUG] (FabricLoader/Mixin) Selecting config fabric-events-interaction-v0.mixins.json +[01:12:30] [main/DEBUG] (FabricLoader/Mixin) Remapping refMap fabric-events-interaction-v0-refmap.json using remapper chain +[01:12:30] [main/DEBUG] (FabricLoader/Mixin) Selecting config fabric-events-interaction-v0.client.mixins.json +[01:12:30] [main/DEBUG] (FabricLoader/Mixin) Remapping refMap client-fabric-events-interaction-v0-refmap.json using remapper chain +[01:12:30] [main/DEBUG] (FabricLoader/Mixin) Selecting config fabric-data-generation-api-v1.mixins.json +[01:12:30] [main/DEBUG] (FabricLoader/Mixin) Remapping refMap fabric-data-generation-api-v1-refmap.json using remapper chain +[01:12:30] [main/DEBUG] (FabricLoader/Mixin) Selecting config fabric-data-generation-api-v1.client.mixins.json +[01:12:30] [main/DEBUG] (FabricLoader/Mixin) Remapping refMap client-fabric-data-generation-api-v1-refmap.json using remapper chain +[01:12:30] [main/DEBUG] (FabricLoader/Mixin) Selecting config fabric-registry-sync-v0.mixins.json +[01:12:30] [main/DEBUG] (FabricLoader/Mixin) Remapping refMap fabric-registry-sync-v0-refmap.json using remapper chain +[01:12:30] [main/DEBUG] (FabricLoader/Mixin) Selecting config fabric-registry-sync-v0.client.mixins.json +[01:12:30] [main/DEBUG] (FabricLoader/Mixin) Remapping refMap client-fabric-registry-sync-v0-refmap.json using remapper chain +[01:12:30] [main/DEBUG] (FabricLoader/Mixin) Selecting config fabric-block-api-v1.mixins.json +[01:12:30] [main/DEBUG] (FabricLoader/Mixin) Remapping refMap fabric-block-api-v1-refmap.json using remapper chain +[01:12:30] [main/DEBUG] (FabricLoader/Mixin) Selecting config fabric-transfer-api-v1.mixins.json +[01:12:30] [main/DEBUG] (FabricLoader/Mixin) Remapping refMap fabric-transfer-api-v1-refmap.json using remapper chain +[01:12:30] [main/DEBUG] (FabricLoader/Mixin) Selecting config fabric-rendering-v1.mixins.json +[01:12:30] [main/DEBUG] (FabricLoader/Mixin) Remapping refMap client-fabric-rendering-v1-refmap.json using remapper chain +[01:12:30] [main/DEBUG] (FabricLoader/Mixin) Selecting config fabric-containers-v0.mixins.json +[01:12:30] [main/DEBUG] (FabricLoader/Mixin) Remapping refMap fabric-containers-v0-refmap.json using remapper chain +[01:12:30] [main/DEBUG] (FabricLoader/Mixin) Selecting config fabric-containers-v0.accurate.mixins.json +[01:12:30] [main/DEBUG] (FabricLoader/Mixin) Remapping refMap fabric-containers-v0-refmap.json using remapper chain +[01:12:30] [main/DEBUG] (FabricLoader/Mixin) Selecting config fabric-models-v0.mixins.json +[01:12:30] [main/DEBUG] (FabricLoader/Mixin) Remapping refMap client-fabric-models-v0-refmap.json using remapper chain +[01:12:30] [main/DEBUG] (FabricLoader/Mixin) Selecting config fabric-message-api-v1.mixins.json +[01:12:30] [main/DEBUG] (FabricLoader/Mixin) Remapping refMap fabric-message-api-v1-refmap.json using remapper chain +[01:12:30] [main/DEBUG] (FabricLoader/Mixin) Selecting config fabric-message-api-v1.client.mixins.json +[01:12:30] [main/DEBUG] (FabricLoader/Mixin) Remapping refMap client-fabric-message-api-v1-refmap.json using remapper chain +[01:12:30] [main/DEBUG] (FabricLoader/Mixin) Preparing fabric-entity-events-v1.mixins.json (7) +[01:12:30] [main/DEBUG] (FabricLoader/Mixin) Preparing fabric-entity-events-v1.client.mixins.json (1) +[01:12:30] [main/DEBUG] (FabricLoader/Mixin) Preparing fabric-screen-handler-api-v1.mixins.json (2) +[01:12:30] [main/DEBUG] (FabricLoader/Mixin) Preparing fabric-loot-tables-v1.mixins.json (2) +[01:12:30] [main/DEBUG] (FabricLoader/Mixin) Preparing fabric-item-group-api-v1.mixins.json (4) +[01:12:30] [main/DEBUG] (FabricLoader/Mixin) Preparing fabric-item-group-api-v1.client.mixins.json (1) +[01:12:30] [main/DEBUG] (FabricLoader/Mixin) Preparing fabric-lifecycle-events-v1.mixins.json (9) +[01:12:30] [main/DEBUG] (FabricLoader/Mixin) @Mixin target net/minecraft/server/world/ServerWorld$ServerEntityHandler is public in fabric-lifecycle-events-v1.mixins.json:ServerWorldServerEntityHandlerMixin from mod fabric-lifecycle-events-v1 and should be specified in value +[01:12:30] [main/DEBUG] (FabricLoader/Mixin) Preparing fabric-lifecycle-events-v1.client.mixins.json (6) +[01:12:30] [main/DEBUG] (FabricLoader/Mixin) @Mixin target net/minecraft/client/world/ClientWorld$ClientEntityHandler is public in fabric-lifecycle-events-v1.client.mixins.json:ClientWorldClientEntityHandlerMixin from mod fabric-lifecycle-events-v1 and should be specified in value +[01:12:31] [main/DEBUG] (FabricLoader/Mixin) Preparing fabric-api-lookup-api-v1.mixins.json (2) +[01:12:31] [main/DEBUG] (FabricLoader/Mixin) Preparing fabric-screen-api-v1.mixins.json (6) +[01:12:31] [main/DEBUG] (FabricLoader/Mixin) Preparing fabric-content-registries-v0.mixins.json (14) +[01:12:31] [main/DEBUG] (FabricLoader/Mixin) Preparing fabric-resource-loader-v0.mixins.json (12) +[01:12:31] [main/DEBUG] (FabricLoader/Mixin) Preparing fabric-resource-loader-v0.client.mixins.json (6) +[01:12:31] [main/DEBUG] (FabricLoader/Mixin) @Mixin target net/minecraft/client/font/FontManager$1 is public in fabric-resource-loader-v0.client.mixins.json:FontManagerMixin from mod fabric-resource-loader-v0 and should be specified in value +[01:12:31] [main/DEBUG] (FabricLoader/Mixin) Preparing fabric-key-binding-api-v1.mixins.json (2) +[01:12:31] [main/DEBUG] (FabricLoader/Mixin) Preparing fabric-item-api-v1.mixins.json (7) +[01:12:31] [main/DEBUG] (FabricLoader/Mixin) Preparing fabric-item-api-v1.client.mixins.json (3) +[01:12:31] [main/DEBUG] (FabricLoader/Mixin) Preparing fabric-biome-api-v1.mixins.json (9) +[01:12:31] [main/DEBUG] (FabricLoader/Mixin) @Mixin target net/minecraft/world/biome/source/MultiNoiseBiomeSourceParameterList$Preset$1 is public in fabric-biome-api-v1.mixins.json:NetherBiomePresetMixin from mod fabric-biome-api-v1 and should be specified in value +[01:12:31] [main/DEBUG] (FabricLoader/Mixin) Preparing fabric-blockrenderlayer-v1.mixins.json (1) +[01:12:31] [main/DEBUG] (FabricLoader/Mixin) Preparing fabric-sound-api-v1.mixins.json (2) +[01:12:31] [main/DEBUG] (FabricLoader/Mixin) Preparing fabric-networking-api-v1.mixins.json (11) +[01:12:31] [main/DEBUG] (FabricLoader/Mixin) @Mixin target net/minecraft/server/world/ThreadedAnvilChunkStorage$EntityTracker is public in fabric-networking-api-v1.mixins.json:accessor.EntityTrackerAccessor from mod fabric-networking-api-v1 and should be specified in value +[01:12:31] [main/DEBUG] (FabricLoader/Mixin) Preparing fabric-networking-api-v1.client.mixins.json (6) +[01:12:31] [main/DEBUG] (FabricLoader/Mixin) Preparing fabric-command-api-v2.mixins.json (5) +[01:12:31] [main/DEBUG] (FabricLoader/Mixin) Preparing fabric-command-api-v2.client.mixins.json (2) +[01:12:31] [main/DEBUG] (FabricLoader/Mixin) Preparing fabric-mining-level-api-v1.mixins.json (3) +[01:12:31] [main/DEBUG] (FabricLoader/Mixin) Preparing fabric-rendering-fluids-v1.mixins.json (1) +[01:12:31] [main/DEBUG] (FabricLoader/Mixin) Preparing fabric-dimensions-v1.mixins.json (2) +[01:12:31] [main/DEBUG] (FabricLoader/Mixin) Preparing fabric-game-rule-api-v1.mixins.json (6) +[01:12:31] [main/DEBUG] (FabricLoader/Mixin) @Mixin target net/minecraft/server/command/GameRuleCommand$1 is public in fabric-game-rule-api-v1.mixins.json:GameRuleCommandVisitorMixin from mod fabric-game-rule-api-v1 and should be specified in value +[01:12:31] [main/DEBUG] (FabricLoader/Mixin) Preparing fabric-game-rule-api-v1.client.mixins.json (3) +[01:12:31] [main/DEBUG] (FabricLoader/Mixin) @Mixin target net/minecraft/client/gui/screen/world/EditGameRulesScreen$RuleListWidget$1 is public in fabric-game-rule-api-v1.client.mixins.json:RuleListWidgetVisitorMixin from mod fabric-game-rule-api-v1 and should be specified in value +[01:12:31] [main/DEBUG] (FabricLoader/Mixin) Preparing fabric-rendering-data-attachment-v1.mixins.json (2) +[01:12:31] [main/DEBUG] (FabricLoader/Mixin) Preparing fabric-rendering-data-attachment-v1.client.mixins.json (2) +[01:12:31] [main/DEBUG] (FabricLoader/Mixin) Preparing fabric-renderer-api-v1.mixins.json (4) +[01:12:31] [main/DEBUG] (FabricLoader/Mixin) Preparing fabric-renderer-api-v1.debughud.mixins.json (1) +[01:12:31] [main/DEBUG] (FabricLoader/Mixin) Preparing fabric-object-builder-v1.mixins.json (8) +[01:12:31] [main/DEBUG] (FabricLoader/Mixin) Preparing fabric-object-builder-v1.client.mixins.json (5) +[01:12:31] [main/DEBUG] (FabricLoader/Mixin) Preparing fabric-recipe-api-v1.mixins.json (3) +[01:12:31] [main/DEBUG] (FabricLoader/Mixin) Preparing client.mixins.json (3) +[01:12:31] [main/DEBUG] (FabricLoader/Mixin) Preparing mixinextras.init.mixins.json (0) +[01:12:31] [main/DEBUG] (FabricLoader/Mixin) Preparing fabric-resource-conditions-api-v1.mixins.json (5) +[01:12:31] [main/DEBUG] (FabricLoader/Mixin) Preparing fabric-renderer-indigo.mixins.json (4) +[01:12:31] [main/DEBUG] (FabricLoader/Mixin) Preparing fabric-loot-api-v2.mixins.json (5) +[01:12:31] [main/DEBUG] (FabricLoader/Mixin) Preparing fabric-crash-report-info-v1.mixins.json (1) +[01:12:31] [main/DEBUG] (FabricLoader/Mixin) Preparing fabric-gametest-api-v1.mixins.json (7) +[01:12:31] [main/DEBUG] (FabricLoader/Mixin) Preparing fabric-particles-v1.client.mixins.json (3) +[01:12:31] [main/DEBUG] (FabricLoader/Mixin) Preparing fabric-events-interaction-v0.mixins.json (3) +[01:12:31] [main/DEBUG] (FabricLoader/Mixin) @Mixin target net/minecraft/server/network/ServerPlayNetworkHandler$1 is public in fabric-events-interaction-v0.mixins.json:ServerPlayNetworkHandlerMixin from mod fabric-events-interaction-v0 and should be specified in value +[01:12:31] [main/DEBUG] (FabricLoader/Mixin) Preparing fabric-events-interaction-v0.client.mixins.json (2) +[01:12:31] [main/DEBUG] (FabricLoader/Mixin) Preparing fabric-data-generation-api-v1.mixins.json (6) +[01:12:31] [main/DEBUG] (FabricLoader/Mixin) Preparing fabric-data-generation-api-v1.client.mixins.json (1) +[01:12:31] [main/DEBUG] (FabricLoader/Mixin) Preparing fabric-registry-sync-v0.mixins.json (11) +[01:12:31] [main/DEBUG] (FabricLoader/Mixin) Preparing fabric-registry-sync-v0.client.mixins.json (5) +[01:12:31] [main/DEBUG] (FabricLoader/Mixin) Preparing fabric-block-api-v1.mixins.json (2) +[01:12:31] [main/DEBUG] (FabricLoader/Mixin) Preparing fabric-transfer-api-v1.mixins.json (11) +[01:12:31] [main/DEBUG] (FabricLoader/Mixin) Preparing fabric-rendering-v1.mixins.json (17) +[01:12:31] [main/DEBUG] (FabricLoader/Mixin) @Mixin target net/minecraft/client/gl/ShaderProgram$1 is public in fabric-rendering-v1.mixins.json:shader.ShaderProgramImportProcessorMixin from mod fabric-rendering-v1 and should be specified in value +[01:12:31] [main/DEBUG] (FabricLoader/Mixin) Preparing fabric-containers-v0.mixins.json (1) +[01:12:31] [main/DEBUG] (FabricLoader/Mixin) Preparing fabric-containers-v0.accurate.mixins.json (1) +[01:12:31] [main/DEBUG] (FabricLoader/Mixin) Preparing fabric-models-v0.mixins.json (2) +[01:12:31] [main/DEBUG] (FabricLoader/Mixin) Preparing fabric-message-api-v1.mixins.json (2) +[01:12:31] [main/DEBUG] (FabricLoader/Mixin) Preparing fabric-message-api-v1.client.mixins.json (2) +[01:12:31] [main/DEBUG] (FabricLoader/Mixin) Inner class net/fabricmc/fabric/mixin/itemgroup/ItemGroupsMixin$1ItemGroupPosition in net/fabricmc/fabric/mixin/itemgroup/ItemGroupsMixin on net/minecraft/item/ItemGroups gets unique name net/minecraft/item/ItemGroups$1ItemGroupPosition$13736f89f50b45babd9f47f8ec9874aa +[01:12:31] [main/DEBUG] (FabricLoader/Mixin) Inner class net/fabricmc/fabric/mixin/transfer/ChiseledBookshelfBlockEntityMixin$1 in net/fabricmc/fabric/mixin/transfer/ChiseledBookshelfBlockEntityMixin on net/minecraft/block/entity/ChiseledBookshelfBlockEntity gets unique name net/minecraft/block/entity/ChiseledBookshelfBlockEntity$Anonymous$ba306d2c40794435a60e883df7a004e1 +[01:12:31] [main/DEBUG] (FabricLoader/Mixin) Prepared 250 mixins in 0.691 sec (2.8ms avg) (0ms load, 0ms transform, 0ms plugin) +[01:12:31] [main/DEBUG] (io.netty.util.internal.logging.InternalLoggerFactory) Using SLF4J as the default logging framework +[01:12:31] [main/DEBUG] (io.netty.util.ResourceLeakDetector) -Dio.netty.leakDetection.level: simple +[01:12:31] [main/DEBUG] (io.netty.util.ResourceLeakDetector) -Dio.netty.leakDetection.targetRecords: 4 +[01:12:32] [main/INFO] (FabricLoader/MixinExtras|Service) Initializing MixinExtras via com.llamalad7.mixinextras.service.MixinExtrasServiceImpl(version=0.3.2). +[01:12:32] [main/DEBUG] (FabricLoader/Mixin) Registering new injector for @SugarWrapper with com.llamalad7.mixinextras.sugar.impl.SugarWrapperInjectionInfo +[01:12:32] [main/DEBUG] (FabricLoader/Mixin) Registering new injector for @FactoryRedirectWrapper with com.llamalad7.mixinextras.wrapper.factory.FactoryRedirectWrapperInjectionInfo +[01:12:32] [main/DEBUG] (FabricLoader/Mixin) Mixing SystemDetailsMixin from fabric-crash-report-info-v1.mixins.json into net.minecraft.util.SystemDetails +[01:12:32] [main/DEBUG] (FabricLoader/Mixin) fabric-crash-report-info-v1.mixins.json:SystemDetailsMixin from mod fabric-crash-report-info-v1: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[01:12:32] [main/DEBUG] (FabricLoader/Mixin) Renaming synthetic method lambda$appendMods$1(Lnet/fabricmc/loader/api/ModContainer;)Ljava/lang/String; to md5f0bfc$fabric-crash-report-info-v1$lambda$appendMods$1$0 in fabric-crash-report-info-v1.mixins.json:SystemDetailsMixin from mod fabric-crash-report-info-v1 +[01:12:32] [main/DEBUG] (FabricLoader/Mixin) Renaming synthetic method lambda$fillSystemDetails$0()Ljava/lang/String; to md5f0bfc$fabric-crash-report-info-v1$lambda$fillSystemDetails$0$1 in fabric-crash-report-info-v1.mixins.json:SystemDetailsMixin from mod fabric-crash-report-info-v1 +[01:12:32] [main/DEBUG] (FabricLoader/Mixin) fabric-crash-report-info-v1.mixins.json:SystemDetailsMixin from mod fabric-crash-report-info-v1->@Inject::fillSystemDetails(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V doesn't use it's CallbackInfo +[01:12:32] [main/DEBUG] (FabricLoader/Mixin) fabric-crash-report-info-v1.mixins.json:SystemDetailsMixin from mod fabric-crash-report-info-v1->@Inject::fillSystemDetails(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V has 0 override(s) in child classes +[01:12:32] [main/DEBUG] (FabricLoader/Mixin) fabric-crash-report-info-v1.mixins.json:SystemDetailsMixin from mod fabric-crash-report-info-v1->@Inject::fillSystemDetails(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V won't be passed a CallbackInfo as a result +[01:12:33] [main/DEBUG] (FabricLoader/Mixin) Mixing BootstrapMixin from fabric-registry-sync-v0.mixins.json into net.minecraft.Bootstrap +[01:12:33] [main/DEBUG] (FabricLoader/Mixin) fabric-registry-sync-v0.mixins.json:BootstrapMixin from mod fabric-registry-sync-v0: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[01:12:33] [main/DEBUG] (FabricLoader/Mixin) Renaming synthetic method lambda$initialize$1(Lnet/minecraft/fluid/Fluid;)Ljava/util/Collection; to md5f0bfc$fabric-registry-sync-v0$lambda$initialize$1$0 in fabric-registry-sync-v0.mixins.json:BootstrapMixin from mod fabric-registry-sync-v0 +[01:12:33] [main/DEBUG] (FabricLoader/Mixin) Renaming synthetic method lambda$initialize$0(Lnet/minecraft/block/Block;)Ljava/util/Collection; to md5f0bfc$fabric-registry-sync-v0$lambda$initialize$0$1 in fabric-registry-sync-v0.mixins.json:BootstrapMixin from mod fabric-registry-sync-v0 +[01:12:33] [main/DEBUG] (FabricLoader/Mixin) fabric-registry-sync-v0.mixins.json:BootstrapMixin from mod fabric-registry-sync-v0->@Inject::initialize(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V doesn't use it's CallbackInfo +[01:12:33] [main/DEBUG] (FabricLoader/Mixin) Mixing RegistriesAccessor from fabric-registry-sync-v0.mixins.json into net.minecraft.registry.Registries +[01:12:33] [main/DEBUG] (FabricLoader/Mixin) fabric-registry-sync-v0.mixins.json:RegistriesAccessor from mod fabric-registry-sync-v0: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[01:12:33] [main/DEBUG] (FabricLoader/Mixin) Renaming @Accessor method getROOT()Lnet/minecraft/registry/MutableRegistry; to getROOT$fabric-registry-sync-v0_$md$5f0bfc$0 in fabric-registry-sync-v0.mixins.json:RegistriesAccessor from mod fabric-registry-sync-v0 +[01:12:33] [main/DEBUG] (FabricLoader/Mixin) Mixing RegistriesMixin from fabric-registry-sync-v0.mixins.json into net.minecraft.registry.Registries +[01:12:33] [main/DEBUG] (FabricLoader/Mixin) fabric-registry-sync-v0.mixins.json:RegistriesMixin from mod fabric-registry-sync-v0: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[01:12:33] [main/DEBUG] (FabricLoader/Mixin) fabric-registry-sync-v0.mixins.json:RegistriesMixin from mod fabric-registry-sync-v0->@Inject::init(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V does use it's CallbackInfo +[01:12:33] [main/DEBUG] (FabricLoader/Mixin) Mixing SimpleRegistryMixin from fabric-registry-sync-v0.mixins.json into net.minecraft.registry.SimpleRegistry +[01:12:33] [main/DEBUG] (FabricLoader/Mixin) fabric-registry-sync-v0.mixins.json:SimpleRegistryMixin from mod fabric-registry-sync-v0: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[01:12:33] [main/DEBUG] (FabricLoader/Mixin) Renaming synthetic method lambda$new$5([Lnet/fabricmc/fabric/api/event/registry/RegistryIdRemapCallback;)Lnet/fabricmc/fabric/api/event/registry/RegistryIdRemapCallback; to md5f0bfc$fabric-registry-sync-v0$lambda$new$5$0 in fabric-registry-sync-v0.mixins.json:SimpleRegistryMixin from mod fabric-registry-sync-v0 +[01:12:33] [main/DEBUG] (FabricLoader/Mixin) Renaming synthetic method lambda$new$4([Lnet/fabricmc/fabric/api/event/registry/RegistryIdRemapCallback;Lnet/fabricmc/fabric/api/event/registry/RegistryIdRemapCallback$RemapState;)V to md5f0bfc$fabric-registry-sync-v0$lambda$new$4$1 in fabric-registry-sync-v0.mixins.json:SimpleRegistryMixin from mod fabric-registry-sync-v0 +[01:12:33] [main/DEBUG] (FabricLoader/Mixin) Renaming synthetic method lambda$new$3([Lnet/fabricmc/fabric/api/event/registry/RegistryEntryRemovedCallback;)Lnet/fabricmc/fabric/api/event/registry/RegistryEntryRemovedCallback; to md5f0bfc$fabric-registry-sync-v0$lambda$new$3$2 in fabric-registry-sync-v0.mixins.json:SimpleRegistryMixin from mod fabric-registry-sync-v0 +[01:12:33] [main/DEBUG] (FabricLoader/Mixin) Renaming synthetic method lambda$new$2([Lnet/fabricmc/fabric/api/event/registry/RegistryEntryRemovedCallback;ILnet/minecraft/util/Identifier;Ljava/lang/Object;)V to md5f0bfc$fabric-registry-sync-v0$lambda$new$2$3 in fabric-registry-sync-v0.mixins.json:SimpleRegistryMixin from mod fabric-registry-sync-v0 +[01:12:33] [main/DEBUG] (FabricLoader/Mixin) Renaming synthetic method lambda$new$1([Lnet/fabricmc/fabric/api/event/registry/RegistryEntryAddedCallback;)Lnet/fabricmc/fabric/api/event/registry/RegistryEntryAddedCallback; to md5f0bfc$fabric-registry-sync-v0$lambda$new$1$4 in fabric-registry-sync-v0.mixins.json:SimpleRegistryMixin from mod fabric-registry-sync-v0 +[01:12:33] [main/DEBUG] (FabricLoader/Mixin) Renaming synthetic method lambda$new$0([Lnet/fabricmc/fabric/api/event/registry/RegistryEntryAddedCallback;ILnet/minecraft/util/Identifier;Ljava/lang/Object;)V to md5f0bfc$fabric-registry-sync-v0$lambda$new$0$5 in fabric-registry-sync-v0.mixins.json:SimpleRegistryMixin from mod fabric-registry-sync-v0 +[01:12:33] [main/DEBUG] (FabricLoader/Mixin) fabric-registry-sync-v0.mixins.json:SimpleRegistryMixin from mod fabric-registry-sync-v0->@Inject::add(Lnet/minecraft/registry/RegistryKey;Ljava/lang/Object;Lcom/mojang/serialization/Lifecycle;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V doesn't use it's CallbackInfoReturnable +[01:12:33] [main/DEBUG] (FabricLoader/Mixin) fabric-registry-sync-v0.mixins.json:SimpleRegistryMixin from mod fabric-registry-sync-v0->@Inject::add(Lnet/minecraft/registry/RegistryKey;Ljava/lang/Object;Lcom/mojang/serialization/Lifecycle;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V has 0 override(s) in child classes +[01:12:33] [main/DEBUG] (FabricLoader/Mixin) fabric-registry-sync-v0.mixins.json:SimpleRegistryMixin from mod fabric-registry-sync-v0->@Inject::add(Lnet/minecraft/registry/RegistryKey;Ljava/lang/Object;Lcom/mojang/serialization/Lifecycle;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V won't be passed a CallbackInfoReturnable as a result +[01:12:33] [main/DEBUG] (FabricLoader/Mixin) fabric-registry-sync-v0.mixins.json:SimpleRegistryMixin from mod fabric-registry-sync-v0->@Inject::set(ILnet/minecraft/registry/RegistryKey;Ljava/lang/Object;Lcom/mojang/serialization/Lifecycle;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V does use it's CallbackInfoReturnable +[01:12:33] [main/DEBUG] (FabricLoader/Mixin) fabric-registry-sync-v0.mixins.json:SimpleRegistryMixin from mod fabric-registry-sync-v0->@Inject::setPre(ILnet/minecraft/registry/RegistryKey;Ljava/lang/Object;Lcom/mojang/serialization/Lifecycle;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V doesn't use it's CallbackInfoReturnable +[01:12:33] [main/DEBUG] (FabricLoader/Mixin) fabric-registry-sync-v0.mixins.json:SimpleRegistryMixin from mod fabric-registry-sync-v0->@Inject::setPre(ILnet/minecraft/registry/RegistryKey;Ljava/lang/Object;Lcom/mojang/serialization/Lifecycle;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V has 0 override(s) in child classes +[01:12:33] [main/DEBUG] (FabricLoader/Mixin) fabric-registry-sync-v0.mixins.json:SimpleRegistryMixin from mod fabric-registry-sync-v0->@Inject::setPre(ILnet/minecraft/registry/RegistryKey;Ljava/lang/Object;Lcom/mojang/serialization/Lifecycle;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V won't be passed a CallbackInfoReturnable as a result +[01:12:33] [main/DEBUG] (FabricLoader/Mixin) fabric-registry-sync-v0.mixins.json:SimpleRegistryMixin from mod fabric-registry-sync-v0->@Inject::setPost(ILnet/minecraft/registry/RegistryKey;Ljava/lang/Object;Lcom/mojang/serialization/Lifecycle;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V doesn't use it's CallbackInfoReturnable +[01:12:33] [main/DEBUG] (FabricLoader/Mixin) fabric-registry-sync-v0.mixins.json:SimpleRegistryMixin from mod fabric-registry-sync-v0->@Inject::setPost(ILnet/minecraft/registry/RegistryKey;Ljava/lang/Object;Lcom/mojang/serialization/Lifecycle;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V has 0 override(s) in child classes +[01:12:33] [main/DEBUG] (FabricLoader/Mixin) fabric-registry-sync-v0.mixins.json:SimpleRegistryMixin from mod fabric-registry-sync-v0->@Inject::setPost(ILnet/minecraft/registry/RegistryKey;Ljava/lang/Object;Lcom/mojang/serialization/Lifecycle;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V won't be passed a CallbackInfoReturnable as a result +[01:12:33] [main/DEBUG] (FabricLoader/Mixin) Mixing FluidMixin from fabric-transfer-api-v1.mixins.json into net.minecraft.fluid.Fluid +[01:12:33] [main/DEBUG] (FabricLoader/Mixin) fabric-transfer-api-v1.mixins.json:FluidMixin from mod fabric-transfer-api-v1: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[01:12:33] [main/DEBUG] (FabricLoader/Mixin) fabric-transfer-api-v1.mixins.json:FluidMixin from mod fabric-transfer-api-v1->@Inject::hookGetBucketFillSound(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V does use it's CallbackInfoReturnable +[01:12:33] [main/DEBUG] (FabricLoader/Mixin) Mixing BlockMixin from fabric-block-api-v1.mixins.json into net.minecraft.block.Block +[01:12:33] [main/DEBUG] (FabricLoader/Mixin) Mixing AbstractBlockAccessor from fabric-object-builder-v1.mixins.json into net.minecraft.block.AbstractBlock +[01:12:33] [main/DEBUG] (FabricLoader/Mixin) fabric-object-builder-v1.mixins.json:AbstractBlockAccessor from mod fabric-object-builder-api-v1: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[01:12:33] [main/DEBUG] (FabricLoader/Mixin) Mixing ItemMixin from fabric-item-api-v1.mixins.json into net.minecraft.item.Item +[01:12:33] [main/DEBUG] (FabricLoader/Mixin) fabric-item-api-v1.mixins.json:ItemMixin from mod fabric-item-api-v1: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[01:12:33] [main/DEBUG] (FabricLoader/Mixin) Mixing ItemMixin from fabric-transfer-api-v1.mixins.json into net.minecraft.item.Item +[01:12:33] [main/DEBUG] (FabricLoader/Mixin) fabric-transfer-api-v1.mixins.json:ItemMixin from mod fabric-transfer-api-v1: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[01:12:33] [main/DEBUG] (FabricLoader/Mixin) fabric-item-api-v1.mixins.json:ItemMixin from mod fabric-item-api-v1->@Inject::onConstruct(Lnet/minecraft/item/Item$Settings;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V doesn't use it's CallbackInfo +[01:12:33] [main/DEBUG] (FabricLoader/Mixin) fabric-item-api-v1.mixins.json:ItemMixin from mod fabric-item-api-v1->@Inject::onConstruct(Lnet/minecraft/item/Item$Settings;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V has 0 override(s) in child classes +[01:12:33] [main/DEBUG] (FabricLoader/Mixin) fabric-item-api-v1.mixins.json:ItemMixin from mod fabric-item-api-v1->@Inject::onConstruct(Lnet/minecraft/item/Item$Settings;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V won't be passed a CallbackInfo as a result +[01:12:33] [main/DEBUG] (FabricLoader/Mixin) Mixing BlockEntityTypeAccessor from fabric-api-lookup-api-v1.mixins.json into net.minecraft.block.entity.BlockEntityType +[01:12:33] [main/DEBUG] (FabricLoader/Mixin) fabric-api-lookup-api-v1.mixins.json:BlockEntityTypeAccessor from mod fabric-api-lookup-api-v1: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[01:12:33] [main/DEBUG] (FabricLoader/Mixin) Mixing ArgumentTypesAccessor from fabric-command-api-v2.mixins.json into net.minecraft.command.argument.ArgumentTypes +[01:12:33] [main/DEBUG] (FabricLoader/Mixin) fabric-command-api-v2.mixins.json:ArgumentTypesAccessor from mod fabric-command-api-v2: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[01:12:33] [main/DEBUG] (FabricLoader/Mixin) Renaming @Accessor method fabric_getClassMap()Ljava/util/Map; to fabric_getClassMap$fabric-command-api-v2_$md$5f0bfc$0 in fabric-command-api-v2.mixins.json:ArgumentTypesAccessor from mod fabric-command-api-v2 +[01:12:33] [main/DEBUG] (FabricLoader/Mixin) Mixing ArgumentTypesMixin from fabric-gametest-api-v1.mixins.json into net.minecraft.command.argument.ArgumentTypes +[01:12:33] [main/DEBUG] (FabricLoader/Mixin) fabric-gametest-api-v1.mixins.json:ArgumentTypesMixin from mod fabric-gametest-api-v1: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[01:12:33] [main/DEBUG] (FabricLoader/Mixin) fabric-gametest-api-v1.mixins.json:ArgumentTypesMixin from mod fabric-gametest-api-v1->@Inject::register(Lnet/minecraft/registry/Registry;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V doesn't use it's CallbackInfoReturnable +[01:12:33] [main/DEBUG] (FabricLoader/Mixin) Mixing FireBlockMixin from fabric-content-registries-v0.mixins.json into net.minecraft.block.FireBlock +[01:12:33] [main/DEBUG] (FabricLoader/Mixin) fabric-content-registries-v0.mixins.json:FireBlockMixin from mod fabric-content-registries-v0: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[01:12:33] [main/DEBUG] (FabricLoader/Mixin) fabric-content-registries-v0.mixins.json:FireBlockMixin from mod fabric-content-registries-v0->@Inject::afterConstruct(Lnet/minecraft/block/AbstractBlock$Settings;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V doesn't use it's CallbackInfo +[01:12:33] [main/DEBUG] (FabricLoader/Mixin) fabric-content-registries-v0.mixins.json:FireBlockMixin from mod fabric-content-registries-v0->@Inject::afterConstruct(Lnet/minecraft/block/AbstractBlock$Settings;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V has 0 override(s) in child classes +[01:12:33] [main/DEBUG] (FabricLoader/Mixin) fabric-content-registries-v0.mixins.json:FireBlockMixin from mod fabric-content-registries-v0->@Inject::afterConstruct(Lnet/minecraft/block/AbstractBlock$Settings;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V won't be passed a CallbackInfo as a result +[01:12:33] [main/DEBUG] (FabricLoader/Mixin) fabric-content-registries-v0.mixins.json:FireBlockMixin from mod fabric-content-registries-v0->@Inject::getFabricBurnChance(Lnet/minecraft/block/BlockState;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V does use it's CallbackInfoReturnable +[01:12:33] [main/DEBUG] (FabricLoader/Mixin) fabric-content-registries-v0.mixins.json:FireBlockMixin from mod fabric-content-registries-v0->@Inject::getFabricSpreadChance(Lnet/minecraft/block/BlockState;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V does use it's CallbackInfoReturnable +[01:12:33] [main/DEBUG] (FabricLoader/Mixin) Mixing WorldMixin from fabric-lifecycle-events-v1.mixins.json into net.minecraft.world.World +[01:12:33] [main/DEBUG] (FabricLoader/Mixin) fabric-lifecycle-events-v1.mixins.json:WorldMixin from mod fabric-lifecycle-events-v1: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[01:12:33] [main/DEBUG] (FabricLoader/Mixin) Mixing WorldViewMixin from fabric-rendering-data-attachment-v1.mixins.json into net.minecraft.world.WorldView +[01:12:33] [main/DEBUG] (FabricLoader/Mixin) fabric-rendering-data-attachment-v1.mixins.json:WorldViewMixin from mod fabric-rendering-data-attachment-v1: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[01:12:33] [main/DEBUG] (FabricLoader/Mixin) Mixing ServerWorldMixin from fabric-lifecycle-events-v1.mixins.json into net.minecraft.server.world.ServerWorld +[01:12:33] [main/DEBUG] (FabricLoader/Mixin) fabric-lifecycle-events-v1.mixins.json:ServerWorldMixin from mod fabric-lifecycle-events-v1: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[01:12:33] [main/DEBUG] (FabricLoader/Mixin) Mixing ServerWorldMixin from fabric-api-lookup-api-v1.mixins.json into net.minecraft.server.world.ServerWorld +[01:12:33] [main/DEBUG] (FabricLoader/Mixin) fabric-api-lookup-api-v1.mixins.json:ServerWorldMixin from mod fabric-api-lookup-api-v1: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[01:12:33] [main/DEBUG] (FabricLoader/Mixin) Renaming synthetic method lambda$fabric_invalidateCache$5(Ljava/util/Map$Entry;)Z to md5f0bfc$fabric-api-lookup-api-v1$lambda$fabric_invalidateCache$5$0 in fabric-api-lookup-api-v1.mixins.json:ServerWorldMixin from mod fabric-api-lookup-api-v1 +[01:12:33] [main/DEBUG] (FabricLoader/Mixin) Renaming synthetic method lambda$fabric_invalidateCache$4(Ljava/lang/ref/WeakReference;)Z to md5f0bfc$fabric-api-lookup-api-v1$lambda$fabric_invalidateCache$4$1 in fabric-api-lookup-api-v1.mixins.json:ServerWorldMixin from mod fabric-api-lookup-api-v1 +[01:12:33] [main/DEBUG] (FabricLoader/Mixin) Renaming synthetic method lambda$fabric_invalidateCache$3(Ljava/lang/ref/WeakReference;)V to md5f0bfc$fabric-api-lookup-api-v1$lambda$fabric_invalidateCache$3$2 in fabric-api-lookup-api-v1.mixins.json:ServerWorldMixin from mod fabric-api-lookup-api-v1 +[01:12:33] [main/DEBUG] (FabricLoader/Mixin) Renaming synthetic method lambda$fabric_invalidateCache$2(Ljava/lang/ref/WeakReference;)Z to md5f0bfc$fabric-api-lookup-api-v1$lambda$fabric_invalidateCache$2$3 in fabric-api-lookup-api-v1.mixins.json:ServerWorldMixin from mod fabric-api-lookup-api-v1 +[01:12:33] [main/DEBUG] (FabricLoader/Mixin) Renaming synthetic method lambda$fabric_registerCache$1(Ljava/lang/ref/WeakReference;)Z to md5f0bfc$fabric-api-lookup-api-v1$lambda$fabric_registerCache$1$4 in fabric-api-lookup-api-v1.mixins.json:ServerWorldMixin from mod fabric-api-lookup-api-v1 +[01:12:33] [main/DEBUG] (FabricLoader/Mixin) Renaming synthetic method lambda$fabric_registerCache$0(Lnet/minecraft/util/math/BlockPos;)Ljava/util/List; to md5f0bfc$fabric-api-lookup-api-v1$lambda$fabric_registerCache$0$5 in fabric-api-lookup-api-v1.mixins.json:ServerWorldMixin from mod fabric-api-lookup-api-v1 +[01:12:33] [main/DEBUG] (FabricLoader/Mixin) fabric-lifecycle-events-v1.mixins.json:ServerWorldMixin from mod fabric-lifecycle-events-v1->@Inject::startWorldTick(Ljava/util/function/BooleanSupplier;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V doesn't use it's CallbackInfo +[01:12:33] [main/DEBUG] (FabricLoader/Mixin) fabric-lifecycle-events-v1.mixins.json:ServerWorldMixin from mod fabric-lifecycle-events-v1->@Inject::startWorldTick(Ljava/util/function/BooleanSupplier;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V has 0 override(s) in child classes +[01:12:33] [main/DEBUG] (FabricLoader/Mixin) fabric-lifecycle-events-v1.mixins.json:ServerWorldMixin from mod fabric-lifecycle-events-v1->@Inject::startWorldTick(Ljava/util/function/BooleanSupplier;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V won't be passed a CallbackInfo as a result +[01:12:33] [main/DEBUG] (FabricLoader/Mixin) fabric-lifecycle-events-v1.mixins.json:ServerWorldMixin from mod fabric-lifecycle-events-v1->@Inject::endWorldTick(Ljava/util/function/BooleanSupplier;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V doesn't use it's CallbackInfo +[01:12:33] [main/DEBUG] (FabricLoader/Mixin) fabric-lifecycle-events-v1.mixins.json:ServerWorldMixin from mod fabric-lifecycle-events-v1->@Inject::endWorldTick(Ljava/util/function/BooleanSupplier;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V has 0 override(s) in child classes +[01:12:33] [main/DEBUG] (FabricLoader/Mixin) fabric-lifecycle-events-v1.mixins.json:ServerWorldMixin from mod fabric-lifecycle-events-v1->@Inject::endWorldTick(Ljava/util/function/BooleanSupplier;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V won't be passed a CallbackInfo as a result +[01:12:33] [main/DEBUG] (FabricLoader/Mixin) Mixing EntityMixin from fabric-entity-events-v1.mixins.json into net.minecraft.entity.Entity +[01:12:33] [main/DEBUG] (FabricLoader/Mixin) fabric-entity-events-v1.mixins.json:EntityMixin from mod fabric-entity-events-v1: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[01:12:33] [main/DEBUG] (FabricLoader/Mixin) Mixing EntityMixin from fabric-dimensions-v1.mixins.json into net.minecraft.entity.Entity +[01:12:33] [main/DEBUG] (FabricLoader/Mixin) fabric-dimensions-v1.mixins.json:EntityMixin from mod fabric-dimensions-v1: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[01:12:33] [main/DEBUG] (FabricLoader/Mixin) fabric-entity-events-v1.mixins.json:EntityMixin from mod fabric-entity-events-v1->@Inject::afterWorldChanged(Lnet/minecraft/server/world/ServerWorld;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V does use it's CallbackInfoReturnable +[01:12:33] [main/DEBUG] (FabricLoader/Mixin) fabric-entity-events-v1.mixins.json:EntityMixin from mod fabric-entity-events-v1->@Inject::afterWorldChanged(Lnet/minecraft/server/world/ServerWorld;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V does use it's CallbackInfoReturnable +[01:12:33] [main/DEBUG] (FabricLoader/Mixin) fabric-entity-events-v1.mixins.json:EntityMixin from mod fabric-entity-events-v1->@Inject::afterWorldChanged(Lnet/minecraft/server/world/ServerWorld;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V does use it's CallbackInfoReturnable +[01:12:33] [main/DEBUG] (FabricLoader/Mixin) fabric-entity-events-v1.mixins.json:EntityMixin from mod fabric-entity-events-v1->@Inject::afterEntityTeleportedToWorld(Lnet/minecraft/server/world/ServerWorld;DDDLjava/util/Set;FFLorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;FLnet/minecraft/entity/Entity;)V doesn't use it's CallbackInfoReturnable +[01:12:33] [main/DEBUG] (FabricLoader/Mixin) fabric-entity-events-v1.mixins.json:EntityMixin from mod fabric-entity-events-v1->@Inject::afterEntityTeleportedToWorld(Lnet/minecraft/server/world/ServerWorld;DDDLjava/util/Set;FFLorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;FLnet/minecraft/entity/Entity;)V has 0 override(s) in child classes +[01:12:33] [main/DEBUG] (FabricLoader/Mixin) fabric-entity-events-v1.mixins.json:EntityMixin from mod fabric-entity-events-v1->@Inject::afterEntityTeleportedToWorld(Lnet/minecraft/server/world/ServerWorld;DDDLjava/util/Set;FFLorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;FLnet/minecraft/entity/Entity;)V won't be passed a CallbackInfoReturnable as a result +[01:12:33] [main/DEBUG] (FabricLoader/Mixin) fabric-dimensions-v1.mixins.json:EntityMixin from mod fabric-dimensions-v1->@Inject::getTeleportTarget(Lnet/minecraft/server/world/ServerWorld;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V does use it's CallbackInfoReturnable +[01:12:33] [main/DEBUG] (FabricLoader/Mixin) Mixing elytra.PlayerEntityMixin from fabric-entity-events-v1.mixins.json into net.minecraft.entity.player.PlayerEntity +[01:12:33] [main/DEBUG] (FabricLoader/Mixin) fabric-entity-events-v1.mixins.json:elytra.PlayerEntityMixin from mod fabric-entity-events-v1: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[01:12:33] [main/DEBUG] (FabricLoader/Mixin) Mixing PlayerEntityMixin from fabric-entity-events-v1.mixins.json into net.minecraft.entity.player.PlayerEntity +[01:12:33] [main/DEBUG] (FabricLoader/Mixin) fabric-entity-events-v1.mixins.json:PlayerEntityMixin from mod fabric-entity-events-v1: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[01:12:33] [main/DEBUG] (FabricLoader/Mixin) fabric-entity-events-v1.mixins.json:elytra.PlayerEntityMixin from mod fabric-entity-events-v1->@Inject::injectElytraCheck(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V does use it's CallbackInfoReturnable +[01:12:33] [main/DEBUG] (FabricLoader/Mixin) fabric-entity-events-v1.mixins.json:PlayerEntityMixin from mod fabric-entity-events-v1->@Inject::onTrySleep(Lnet/minecraft/util/math/BlockPos;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V does use it's CallbackInfoReturnable +[01:12:33] [main/DEBUG] (FabricLoader/Mixin) fabric-entity-events-v1.mixins.json:PlayerEntityMixin from mod fabric-entity-events-v1->@Inject::onIsSleepingLongEnough(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V does use it's CallbackInfoReturnable +[01:12:33] [main/DEBUG] (FabricLoader/Mixin) Mixing elytra.LivingEntityMixin from fabric-entity-events-v1.mixins.json into net.minecraft.entity.LivingEntity +[01:12:33] [main/DEBUG] (FabricLoader/Mixin) fabric-entity-events-v1.mixins.json:elytra.LivingEntityMixin from mod fabric-entity-events-v1: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[01:12:33] [main/DEBUG] (FabricLoader/Mixin) Mixing LivingEntityMixin from fabric-entity-events-v1.mixins.json into net.minecraft.entity.LivingEntity +[01:12:33] [main/DEBUG] (FabricLoader/Mixin) fabric-entity-events-v1.mixins.json:LivingEntityMixin from mod fabric-entity-events-v1: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[01:12:33] [main/DEBUG] (FabricLoader/Mixin) Mixing LivingEntityMixin from fabric-lifecycle-events-v1.mixins.json into net.minecraft.entity.LivingEntity +[01:12:33] [main/DEBUG] (FabricLoader/Mixin) fabric-lifecycle-events-v1.mixins.json:LivingEntityMixin from mod fabric-lifecycle-events-v1: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[01:12:33] [main/DEBUG] (FabricLoader/Mixin) Mixing LivingEntityMixin from fabric-item-api-v1.mixins.json into net.minecraft.entity.LivingEntity +[01:12:33] [main/DEBUG] (FabricLoader/Mixin) fabric-item-api-v1.mixins.json:LivingEntityMixin from mod fabric-item-api-v1: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[01:12:33] [main/DEBUG] (FabricLoader/Mixin) fabric-entity-events-v1.mixins.json:elytra.LivingEntityMixin from mod fabric-entity-events-v1->@Inject::injectElytraTick(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V does use it's CallbackInfo +[01:12:33] [main/DEBUG] (FabricLoader/Mixin) fabric-entity-events-v1.mixins.json:LivingEntityMixin from mod fabric-entity-events-v1->@Inject::onEntityKilledOther(Lnet/minecraft/entity/damage/DamageSource;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;Lnet/minecraft/entity/Entity;)V doesn't use it's CallbackInfo +[01:12:33] [main/DEBUG] (FabricLoader/Mixin) fabric-entity-events-v1.mixins.json:LivingEntityMixin from mod fabric-entity-events-v1->@Inject::onEntityKilledOther(Lnet/minecraft/entity/damage/DamageSource;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;Lnet/minecraft/entity/Entity;)V has 0 override(s) in child classes +[01:12:33] [main/DEBUG] (FabricLoader/Mixin) fabric-entity-events-v1.mixins.json:LivingEntityMixin from mod fabric-entity-events-v1->@Inject::onEntityKilledOther(Lnet/minecraft/entity/damage/DamageSource;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;Lnet/minecraft/entity/Entity;)V won't be passed a CallbackInfo as a result +[01:12:33] [main/DEBUG] (FabricLoader/Mixin) fabric-entity-events-v1.mixins.json:LivingEntityMixin from mod fabric-entity-events-v1->@Inject::notifyDeath(Lnet/minecraft/entity/damage/DamageSource;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V doesn't use it's CallbackInfo +[01:12:33] [main/DEBUG] (FabricLoader/Mixin) fabric-entity-events-v1.mixins.json:LivingEntityMixin from mod fabric-entity-events-v1->@Inject::notifyDeath(Lnet/minecraft/entity/damage/DamageSource;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V has 0 override(s) in child classes +[01:12:33] [main/DEBUG] (FabricLoader/Mixin) fabric-entity-events-v1.mixins.json:LivingEntityMixin from mod fabric-entity-events-v1->@Inject::notifyDeath(Lnet/minecraft/entity/damage/DamageSource;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V won't be passed a CallbackInfo as a result +[01:12:33] [main/DEBUG] (FabricLoader/Mixin) fabric-entity-events-v1.mixins.json:LivingEntityMixin from mod fabric-entity-events-v1->@Inject::beforeDamage(Lnet/minecraft/entity/damage/DamageSource;FLorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V does use it's CallbackInfoReturnable +[01:12:33] [main/DEBUG] (FabricLoader/Mixin) fabric-entity-events-v1.mixins.json:LivingEntityMixin from mod fabric-entity-events-v1->@Inject::onSleep(Lnet/minecraft/util/math/BlockPos;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V doesn't use it's CallbackInfo +[01:12:33] [main/DEBUG] (FabricLoader/Mixin) fabric-entity-events-v1.mixins.json:LivingEntityMixin from mod fabric-entity-events-v1->@Inject::onSleep(Lnet/minecraft/util/math/BlockPos;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V has 0 override(s) in child classes +[01:12:33] [main/DEBUG] (FabricLoader/Mixin) fabric-entity-events-v1.mixins.json:LivingEntityMixin from mod fabric-entity-events-v1->@Inject::onSleep(Lnet/minecraft/util/math/BlockPos;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V won't be passed a CallbackInfo as a result +[01:12:33] [main/DEBUG] (FabricLoader/Mixin) fabric-entity-events-v1.mixins.json:LivingEntityMixin from mod fabric-entity-events-v1->@Inject::onWakeUp(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V doesn't use it's CallbackInfo +[01:12:33] [main/DEBUG] (FabricLoader/Mixin) fabric-entity-events-v1.mixins.json:LivingEntityMixin from mod fabric-entity-events-v1->@Inject::onWakeUp(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V has 0 override(s) in child classes +[01:12:33] [main/DEBUG] (FabricLoader/Mixin) fabric-entity-events-v1.mixins.json:LivingEntityMixin from mod fabric-entity-events-v1->@Inject::onWakeUp(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V won't be passed a CallbackInfo as a result +[01:12:33] [main/DEBUG] (FabricLoader/Mixin) fabric-entity-events-v1.mixins.json:LivingEntityMixin from mod fabric-entity-events-v1->@Inject::onIsSleepingInBed(Lnet/minecraft/util/math/BlockPos;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V does use it's CallbackInfoReturnable +[01:12:33] [main/DEBUG] (FabricLoader/Mixin) fabric-entity-events-v1.mixins.json:LivingEntityMixin from mod fabric-entity-events-v1->@Inject::onGetSleepingDirection(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;Lnet/minecraft/util/math/BlockPos;)V does use it's CallbackInfoReturnable +[01:12:33] [main/DEBUG] (FabricLoader/Mixin) fabric-lifecycle-events-v1.mixins.json:LivingEntityMixin from mod fabric-lifecycle-events-v1->@Inject::getEquipmentChanges(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;Ljava/util/Map;[Lnet/minecraft/entity/EquipmentSlot;IILnet/minecraft/entity/EquipmentSlot;Lnet/minecraft/item/ItemStack;Lnet/minecraft/item/ItemStack;)V doesn't use it's CallbackInfoReturnable +[01:12:33] [main/DEBUG] (FabricLoader/Mixin) fabric-lifecycle-events-v1.mixins.json:LivingEntityMixin from mod fabric-lifecycle-events-v1->@Inject::getEquipmentChanges(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;Ljava/util/Map;[Lnet/minecraft/entity/EquipmentSlot;IILnet/minecraft/entity/EquipmentSlot;Lnet/minecraft/item/ItemStack;Lnet/minecraft/item/ItemStack;)V has 0 override(s) in child classes +[01:12:33] [main/DEBUG] (FabricLoader/Mixin) fabric-lifecycle-events-v1.mixins.json:LivingEntityMixin from mod fabric-lifecycle-events-v1->@Inject::getEquipmentChanges(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;Ljava/util/Map;[Lnet/minecraft/entity/EquipmentSlot;IILnet/minecraft/entity/EquipmentSlot;Lnet/minecraft/item/ItemStack;Lnet/minecraft/item/ItemStack;)V won't be passed a CallbackInfoReturnable as a result +[01:12:33] [main/DEBUG] (FabricLoader/Mixin) fabric-item-api-v1.mixins.json:LivingEntityMixin from mod fabric-item-api-v1->@Inject::onGetPreferredEquipmentSlot(Lnet/minecraft/item/ItemStack;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V does use it's CallbackInfoReturnable +[01:12:33] [main/DEBUG] (FabricLoader/Mixin) Mixing IdListMixin from fabric-registry-sync-v0.mixins.json into net.minecraft.util.collection.IdList +[01:12:33] [main/DEBUG] (FabricLoader/Mixin) fabric-registry-sync-v0.mixins.json:IdListMixin from mod fabric-registry-sync-v0: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[01:12:33] [main/DEBUG] (FabricLoader/Mixin) Renaming synthetic method lambda$fabric_remapIds$0(Lit/unimi/dsi/fastutil/ints/Int2IntMap;Ljava/lang/Object;Ljava/lang/Integer;)Ljava/lang/Integer; to md5f0bfc$fabric-registry-sync-v0$lambda$fabric_remapIds$0$0 in fabric-registry-sync-v0.mixins.json:IdListMixin from mod fabric-registry-sync-v0 +[01:12:34] [main/DEBUG] (FabricLoader/Mixin) Mixing BlockStateMixin from fabric-block-api-v1.mixins.json into net.minecraft.block.BlockState +[01:12:34] [main/DEBUG] (FabricLoader/Mixin) Mixing DetectorRailBlockMixin from fabric-object-builder-v1.mixins.json into net.minecraft.block.DetectorRailBlock +[01:12:34] [main/DEBUG] (FabricLoader/Mixin) fabric-object-builder-v1.mixins.json:DetectorRailBlockMixin from mod fabric-object-builder-api-v1: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[01:12:34] [main/DEBUG] (FabricLoader/Mixin) Renaming synthetic method lambda$getCustomComparatorOutput$0(Lnet/minecraft/entity/Entity;)Z to md5f0bfc$fabric-object-builder-api-v1$lambda$getCustomComparatorOutput$0$0 in fabric-object-builder-v1.mixins.json:DetectorRailBlockMixin from mod fabric-object-builder-api-v1 +[01:12:34] [main/DEBUG] (FabricLoader/Mixin) fabric-object-builder-v1.mixins.json:DetectorRailBlockMixin from mod fabric-object-builder-api-v1->@Inject::getCustomComparatorOutput(Lnet/minecraft/block/BlockState;Lnet/minecraft/world/World;Lnet/minecraft/util/math/BlockPos;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V does use it's CallbackInfoReturnable +[01:12:34] [main/DEBUG] (FabricLoader/Mixin) Mixing DropperBlockMixin from fabric-transfer-api-v1.mixins.json into net.minecraft.block.DropperBlock +[01:12:34] [main/DEBUG] (FabricLoader/Mixin) fabric-transfer-api-v1.mixins.json:DropperBlockMixin from mod fabric-transfer-api-v1: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[01:12:34] [main/DEBUG] (FabricLoader/Mixin) Renaming synthetic method lambda$hookDispense$0(Lnet/fabricmc/fabric/api/transfer/v1/item/ItemVariant;)Z to md5f0bfc$fabric-transfer-api-v1$lambda$hookDispense$0$0 in fabric-transfer-api-v1.mixins.json:DropperBlockMixin from mod fabric-transfer-api-v1 +[01:12:34] [main/DEBUG] (FabricLoader/Mixin) fabric-transfer-api-v1.mixins.json:DropperBlockMixin from mod fabric-transfer-api-v1->@Inject::hookDispense(Lnet/minecraft/server/world/ServerWorld;Lnet/minecraft/util/math/BlockPos;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V does use it's CallbackInfo +[01:12:34] [main/DEBUG] (FabricLoader/Mixin) Mixing OxidizableMixin from fabric-content-registries-v0.mixins.json into net.minecraft.block.Oxidizable +[01:12:34] [main/DEBUG] (FabricLoader/Mixin) fabric-content-registries-v0.mixins.json:OxidizableMixin from mod fabric-content-registries-v0: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[01:12:34] [main/DEBUG] (FabricLoader/Mixin) fabric-content-registries-v0.mixins.json:OxidizableMixin from mod fabric-content-registries-v0->@Inject::createOxidationLevelIncreasesMap(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V does use it's CallbackInfoReturnable +[01:12:34] [main/DEBUG] (FabricLoader/Mixin) Mixing MaterialBuilderAccessor from fabric-object-builder-v1.mixins.json into net.minecraft.block.Material$Builder +[01:12:34] [main/DEBUG] (FabricLoader/Mixin) fabric-object-builder-v1.mixins.json:MaterialBuilderAccessor from mod fabric-object-builder-api-v1: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[01:12:34] [main/DEBUG] (FabricLoader/Mixin) Mixing AbstractBlockSettingsAccessor from fabric-object-builder-v1.mixins.json into net.minecraft.block.AbstractBlock$Settings +[01:12:34] [main/DEBUG] (FabricLoader/Mixin) fabric-object-builder-v1.mixins.json:AbstractBlockSettingsAccessor from mod fabric-object-builder-api-v1: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[01:12:34] [main/DEBUG] (FabricLoader/Mixin) Mixing BlockEntityMixin from fabric-rendering-data-attachment-v1.mixins.json into net.minecraft.block.entity.BlockEntity +[01:12:34] [main/DEBUG] (FabricLoader/Mixin) fabric-rendering-data-attachment-v1.mixins.json:BlockEntityMixin from mod fabric-rendering-data-attachment-v1: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[01:12:34] [main/DEBUG] (FabricLoader/Mixin) Mixing NamedScreenHandlerFactoryMixin from fabric-screen-handler-api-v1.mixins.json into net.minecraft.screen.NamedScreenHandlerFactory +[01:12:34] [main/DEBUG] (FabricLoader/Mixin) fabric-screen-handler-api-v1.mixins.json:NamedScreenHandlerFactoryMixin from mod fabric-screen-handler-api-v1: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[01:12:34] [main/DEBUG] (FabricLoader/Mixin) Mixing LootableContainerBlockEntityMixin from fabric-transfer-api-v1.mixins.json into net.minecraft.block.entity.LootableContainerBlockEntity +[01:12:34] [main/DEBUG] (FabricLoader/Mixin) fabric-transfer-api-v1.mixins.json:LootableContainerBlockEntityMixin from mod fabric-transfer-api-v1: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[01:12:34] [main/DEBUG] (FabricLoader/Mixin) Mixing ChiseledBookshelfBlockEntityMixin from fabric-transfer-api-v1.mixins.json into net.minecraft.block.entity.ChiseledBookshelfBlockEntity +[01:12:34] [main/DEBUG] (FabricLoader/Mixin) fabric-transfer-api-v1.mixins.json:ChiseledBookshelfBlockEntityMixin from mod fabric-transfer-api-v1: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[01:12:34] [main/DEBUG] (FabricLoader/Mixin) fabric-transfer-api-v1.mixins.json:ChiseledBookshelfBlockEntityMixin from mod fabric-transfer-api-v1->@Inject::setStackBypass(ILnet/minecraft/item/ItemStack;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V does use it's CallbackInfo +[01:12:35] [main/DEBUG] (FabricLoader/Mixin) Mixing AbstractFurnaceBlockEntityMixin from fabric-content-registries-v0.mixins.json into net.minecraft.block.entity.AbstractFurnaceBlockEntity +[01:12:35] [main/DEBUG] (FabricLoader/Mixin) fabric-content-registries-v0.mixins.json:AbstractFurnaceBlockEntityMixin from mod fabric-content-registries-v0: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[01:12:35] [main/DEBUG] (FabricLoader/Mixin) Mixing AbstractFurnaceBlockEntityMixin from fabric-item-api-v1.mixins.json into net.minecraft.block.entity.AbstractFurnaceBlockEntity +[01:12:35] [main/DEBUG] (FabricLoader/Mixin) fabric-item-api-v1.mixins.json:AbstractFurnaceBlockEntityMixin from mod fabric-item-api-v1: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[01:12:35] [main/DEBUG] (FabricLoader/Mixin) Mixing AbstractFurnaceBlockEntityMixin from fabric-transfer-api-v1.mixins.json into net.minecraft.block.entity.AbstractFurnaceBlockEntity +[01:12:35] [main/DEBUG] (FabricLoader/Mixin) fabric-transfer-api-v1.mixins.json:AbstractFurnaceBlockEntityMixin from mod fabric-transfer-api-v1: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[01:12:35] [main/DEBUG] (FabricLoader/Mixin) fabric-content-registries-v0.mixins.json:AbstractFurnaceBlockEntityMixin from mod fabric-content-registries-v0->@Inject::fuelTimeMapHook(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V does use it's CallbackInfoReturnable +[01:12:35] [main/DEBUG] (FabricLoader/Mixin) fabric-item-api-v1.mixins.json:AbstractFurnaceBlockEntityMixin from mod fabric-item-api-v1->@Inject::getStackRemainder(Lnet/minecraft/world/World;Lnet/minecraft/util/math/BlockPos;Lnet/minecraft/block/BlockState;Lnet/minecraft/block/entity/AbstractFurnaceBlockEntity;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;ZZLnet/minecraft/item/ItemStack;ZZLnet/minecraft/recipe/Recipe;I)V doesn't use it's CallbackInfo +[01:12:35] [main/DEBUG] (FabricLoader/Mixin) fabric-transfer-api-v1.mixins.json:AbstractFurnaceBlockEntityMixin from mod fabric-transfer-api-v1->@Inject::setStackSuppressUpdate(ILnet/minecraft/item/ItemStack;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V does use it's CallbackInfo +[01:12:35] [main/DEBUG] (FabricLoader/Mixin) Mixing BrewingStandBlockEntityMixin from fabric-item-api-v1.mixins.json into net.minecraft.block.entity.BrewingStandBlockEntity +[01:12:35] [main/DEBUG] (FabricLoader/Mixin) fabric-item-api-v1.mixins.json:BrewingStandBlockEntityMixin from mod fabric-item-api-v1: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[01:12:35] [main/DEBUG] (FabricLoader/Mixin) fabric-item-api-v1.mixins.json:BrewingStandBlockEntityMixin from mod fabric-item-api-v1->@Inject::captureItemStack(Lnet/minecraft/world/World;Lnet/minecraft/util/math/BlockPos;Lnet/minecraft/util/collection/DefaultedList;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;Lnet/minecraft/item/ItemStack;)V doesn't use it's CallbackInfo +[01:12:35] [main/DEBUG] (FabricLoader/Mixin) Mixing ItemStackMixin from fabric-item-api-v1.mixins.json into net.minecraft.item.ItemStack +[01:12:35] [main/DEBUG] (FabricLoader/Mixin) fabric-item-api-v1.mixins.json:ItemStackMixin from mod fabric-item-api-v1: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[01:12:35] [main/DEBUG] (FabricLoader/Mixin) Mixing ItemStackMixin from fabric-item-api-v1.client.mixins.json into net.minecraft.item.ItemStack +[01:12:35] [main/DEBUG] (FabricLoader/Mixin) fabric-item-api-v1.client.mixins.json:ItemStackMixin from mod fabric-item-api-v1: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[01:12:35] [main/DEBUG] (FabricLoader/Mixin) fabric-item-api-v1.mixins.json:ItemStackMixin from mod fabric-item-api-v1->@Inject::saveDamager(ILnet/minecraft/entity/LivingEntity;Ljava/util/function/Consumer;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V doesn't use it's CallbackInfo +[01:12:35] [main/DEBUG] (FabricLoader/Mixin) fabric-item-api-v1.mixins.json:ItemStackMixin from mod fabric-item-api-v1->@Inject::clearDamage(ILnet/minecraft/entity/LivingEntity;Ljava/util/function/Consumer;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V doesn't use it's CallbackInfo +[01:12:35] [main/DEBUG] (FabricLoader/Mixin) fabric-item-api-v1.mixins.json:ItemStackMixin from mod fabric-item-api-v1->@Inject::clearDamage(ILnet/minecraft/entity/LivingEntity;Ljava/util/function/Consumer;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V doesn't use it's CallbackInfo +[01:12:35] [main/DEBUG] (FabricLoader/Mixin) fabric-item-api-v1.mixins.json:ItemStackMixin from mod fabric-item-api-v1->@Inject::clearDamage(ILnet/minecraft/entity/LivingEntity;Ljava/util/function/Consumer;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V doesn't use it's CallbackInfo +[01:12:35] [main/DEBUG] (FabricLoader/Mixin) fabric-item-api-v1.mixins.json:ItemStackMixin from mod fabric-item-api-v1->@Inject::updateEmptyState(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V does use it's CallbackInfo +[01:12:35] [main/DEBUG] (FabricLoader/Mixin) fabric-item-api-v1.client.mixins.json:ItemStackMixin from mod fabric-item-api-v1->@Inject::getTooltip(Lnet/minecraft/entity/player/PlayerEntity;Lnet/minecraft/client/item/TooltipContext;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V does use it's CallbackInfoReturnable +[01:12:35] [main/DEBUG] (FabricLoader/Mixin) Mixing HopperBlockEntityMixin from fabric-transfer-api-v1.mixins.json into net.minecraft.block.entity.HopperBlockEntity +[01:12:35] [main/DEBUG] (FabricLoader/Mixin) fabric-transfer-api-v1.mixins.json:HopperBlockEntityMixin from mod fabric-transfer-api-v1: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[01:12:35] [main/DEBUG] (FabricLoader/Mixin) Renaming synthetic method lambda$hookExtract$1(Lnet/fabricmc/fabric/api/transfer/v1/item/ItemVariant;)Z to md5f0bfc$fabric-transfer-api-v1$lambda$hookExtract$1$0 in fabric-transfer-api-v1.mixins.json:HopperBlockEntityMixin from mod fabric-transfer-api-v1 +[01:12:35] [main/DEBUG] (FabricLoader/Mixin) Renaming synthetic method lambda$hookInsert$0(Lnet/fabricmc/fabric/api/transfer/v1/item/ItemVariant;)Z to md5f0bfc$fabric-transfer-api-v1$lambda$hookInsert$0$1 in fabric-transfer-api-v1.mixins.json:HopperBlockEntityMixin from mod fabric-transfer-api-v1 +[01:12:35] [main/DEBUG] (FabricLoader/Mixin) fabric-transfer-api-v1.mixins.json:HopperBlockEntityMixin from mod fabric-transfer-api-v1->@Inject::hookInsert(Lnet/minecraft/world/World;Lnet/minecraft/util/math/BlockPos;Lnet/minecraft/block/BlockState;Lnet/minecraft/inventory/Inventory;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;Lnet/minecraft/inventory/Inventory;)V does use it's CallbackInfoReturnable +[01:12:35] [main/DEBUG] (FabricLoader/Mixin) fabric-transfer-api-v1.mixins.json:HopperBlockEntityMixin from mod fabric-transfer-api-v1->@Inject::hookExtract(Lnet/minecraft/world/World;Lnet/minecraft/block/entity/Hopper;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;Lnet/minecraft/inventory/Inventory;)V does use it's CallbackInfoReturnable +[01:12:36] [main/DEBUG] (FabricLoader/Mixin) Mixing ArmorItemMixin from fabric-item-api-v1.mixins.json into net.minecraft.item.ArmorItem +[01:12:36] [main/DEBUG] (FabricLoader/Mixin) fabric-item-api-v1.mixins.json:ArmorItemMixin from mod fabric-item-api-v1: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[01:12:36] [main/DEBUG] (FabricLoader/Mixin) Mixing SwordItemMixin from fabric-mining-level-api-v1.mixins.json into net.minecraft.item.SwordItem +[01:12:36] [main/DEBUG] (FabricLoader/Mixin) fabric-mining-level-api-v1.mixins.json:SwordItemMixin from mod fabric-mining-level-api-v1: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[01:12:36] [main/DEBUG] (FabricLoader/Mixin) fabric-mining-level-api-v1.mixins.json:SwordItemMixin from mod fabric-mining-level-api-v1->@Inject::fabric$onIsSuitableFor(Lnet/minecraft/block/BlockState;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V does use it's CallbackInfoReturnable +[01:12:36] [main/DEBUG] (FabricLoader/Mixin) fabric-mining-level-api-v1.mixins.json:SwordItemMixin from mod fabric-mining-level-api-v1->@Inject::fabric$onGetMiningSpeedMultiplier(Lnet/minecraft/item/ItemStack;Lnet/minecraft/block/BlockState;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V does use it's CallbackInfoReturnable +[01:12:36] [main/DEBUG] (FabricLoader/Mixin) fabric-mining-level-api-v1.mixins.json:SwordItemMixin from mod fabric-mining-level-api-v1->@Inject::fabric$onGetMiningSpeedMultiplier(Lnet/minecraft/item/ItemStack;Lnet/minecraft/block/BlockState;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V does use it's CallbackInfoReturnable +[01:12:36] [main/DEBUG] (FabricLoader/Mixin) fabric-mining-level-api-v1.mixins.json:SwordItemMixin from mod fabric-mining-level-api-v1->@Inject::fabric$onGetMiningSpeedMultiplier(Lnet/minecraft/item/ItemStack;Lnet/minecraft/block/BlockState;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V does use it's CallbackInfoReturnable +[01:12:36] [main/DEBUG] (FabricLoader/Mixin) Mixing ShovelItemAccessor from fabric-content-registries-v0.mixins.json into net.minecraft.item.ShovelItem +[01:12:36] [main/DEBUG] (FabricLoader/Mixin) fabric-content-registries-v0.mixins.json:ShovelItemAccessor from mod fabric-content-registries-v0: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[01:12:36] [main/DEBUG] (FabricLoader/Mixin) Renaming @Accessor method getPathStates()Ljava/util/Map; to getPathStates$fabric-content-registries-v0_$md$5f0bfc$0 in fabric-content-registries-v0.mixins.json:ShovelItemAccessor from mod fabric-content-registries-v0 +[01:12:36] [main/DEBUG] (FabricLoader/Mixin) Mixing MiningToolItemMixin from fabric-mining-level-api-v1.mixins.json into net.minecraft.item.MiningToolItem +[01:12:36] [main/DEBUG] (FabricLoader/Mixin) fabric-mining-level-api-v1.mixins.json:MiningToolItemMixin from mod fabric-mining-level-api-v1: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[01:12:36] [main/DEBUG] (FabricLoader/Mixin) fabric-mining-level-api-v1.mixins.json:MiningToolItemMixin from mod fabric-mining-level-api-v1->@Inject::fabric$onIsSuitableFor(Lnet/minecraft/block/BlockState;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;I)V does use it's CallbackInfoReturnable +[01:12:36] [main/DEBUG] (FabricLoader/Mixin) Mixing AxeItemAccessor from fabric-content-registries-v0.mixins.json into net.minecraft.item.AxeItem +[01:12:36] [main/DEBUG] (FabricLoader/Mixin) fabric-content-registries-v0.mixins.json:AxeItemAccessor from mod fabric-content-registries-v0: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[01:12:36] [main/DEBUG] (FabricLoader/Mixin) Renaming @Accessor method getStrippedBlocks()Ljava/util/Map; to getStrippedBlocks$fabric-content-registries-v0_$md$5f0bfc$0 in fabric-content-registries-v0.mixins.json:AxeItemAccessor from mod fabric-content-registries-v0 +[01:12:36] [main/DEBUG] (FabricLoader/Mixin) Renaming @Accessor method setStrippedBlocks(Ljava/util/Map;)V to setStrippedBlocks$fabric-content-registries-v0_$md$5f0bfc$1 in fabric-content-registries-v0.mixins.json:AxeItemAccessor from mod fabric-content-registries-v0 +[01:12:36] [main/DEBUG] (FabricLoader/Mixin) Mixing HoeItemAccessor from fabric-content-registries-v0.mixins.json into net.minecraft.item.HoeItem +[01:12:36] [main/DEBUG] (FabricLoader/Mixin) fabric-content-registries-v0.mixins.json:HoeItemAccessor from mod fabric-content-registries-v0: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[01:12:36] [main/DEBUG] (FabricLoader/Mixin) Renaming @Accessor method getTillingActions()Ljava/util/Map; to getTillingActions$fabric-content-registries-v0_$md$5f0bfc$0 in fabric-content-registries-v0.mixins.json:HoeItemAccessor from mod fabric-content-registries-v0 +[01:12:36] [main/DEBUG] (FabricLoader/Mixin) Mixing BucketItemAccessor from fabric-transfer-api-v1.mixins.json into net.minecraft.item.BucketItem +[01:12:36] [main/DEBUG] (FabricLoader/Mixin) fabric-transfer-api-v1.mixins.json:BucketItemAccessor from mod fabric-transfer-api-v1: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[01:12:36] [main/DEBUG] (FabricLoader/Mixin) Mixing BucketItemMixin from fabric-transfer-api-v1.mixins.json into net.minecraft.item.BucketItem +[01:12:36] [main/DEBUG] (FabricLoader/Mixin) fabric-transfer-api-v1.mixins.json:BucketItemMixin from mod fabric-transfer-api-v1: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[01:12:36] [main/DEBUG] (FabricLoader/Mixin) Mixing ShearsItemMixin from fabric-mining-level-api-v1.mixins.json into net.minecraft.item.ShearsItem +[01:12:36] [main/DEBUG] (FabricLoader/Mixin) fabric-mining-level-api-v1.mixins.json:ShearsItemMixin from mod fabric-mining-level-api-v1: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[01:12:36] [main/DEBUG] (FabricLoader/Mixin) fabric-mining-level-api-v1.mixins.json:ShearsItemMixin from mod fabric-mining-level-api-v1->@Inject::fabric$onIsSuitableFor(Lnet/minecraft/block/BlockState;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V does use it's CallbackInfoReturnable +[01:12:36] [main/DEBUG] (FabricLoader/Mixin) fabric-mining-level-api-v1.mixins.json:ShearsItemMixin from mod fabric-mining-level-api-v1->@Inject::fabric$onGetMiningSpeedMultiplier(Lnet/minecraft/item/ItemStack;Lnet/minecraft/block/BlockState;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V does use it's CallbackInfoReturnable +[01:12:36] [main/DEBUG] (FabricLoader/Mixin) fabric-mining-level-api-v1.mixins.json:ShearsItemMixin from mod fabric-mining-level-api-v1->@Inject::fabric$onGetMiningSpeedMultiplier(Lnet/minecraft/item/ItemStack;Lnet/minecraft/block/BlockState;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V does use it's CallbackInfoReturnable +[01:12:36] [main/DEBUG] (FabricLoader/Mixin) fabric-mining-level-api-v1.mixins.json:ShearsItemMixin from mod fabric-mining-level-api-v1->@Inject::fabric$onGetMiningSpeedMultiplier(Lnet/minecraft/item/ItemStack;Lnet/minecraft/block/BlockState;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V does use it's CallbackInfoReturnable +[01:12:36] [main/DEBUG] (FabricLoader/Mixin) fabric-mining-level-api-v1.mixins.json:ShearsItemMixin from mod fabric-mining-level-api-v1->@Inject::fabric$onGetMiningSpeedMultiplier(Lnet/minecraft/item/ItemStack;Lnet/minecraft/block/BlockState;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V does use it's CallbackInfoReturnable +[01:12:36] [main/DEBUG] (FabricLoader/Mixin) Mixing HoneycombItemMixin from fabric-content-registries-v0.mixins.json into net.minecraft.item.HoneycombItem +[01:12:36] [main/DEBUG] (FabricLoader/Mixin) fabric-content-registries-v0.mixins.json:HoneycombItemMixin from mod fabric-content-registries-v0: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[01:12:36] [main/DEBUG] (FabricLoader/Mixin) fabric-content-registries-v0.mixins.json:HoneycombItemMixin from mod fabric-content-registries-v0->@Inject::createUnwaxedToWaxedMap(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V does use it's CallbackInfoReturnable +[01:12:36] [main/DEBUG] (FabricLoader/Mixin) Mixing StructuresToConfiguredStructuresFixMixin from fabric-registry-sync-v0.mixins.json into net.minecraft.datafixer.fix.StructuresToConfiguredStructuresFix +[01:12:36] [main/DEBUG] (FabricLoader/Mixin) fabric-registry-sync-v0.mixins.json:StructuresToConfiguredStructuresFixMixin from mod fabric-registry-sync-v0: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[01:12:36] [main/DEBUG] (FabricLoader/Mixin) fabric-registry-sync-v0.mixins.json:StructuresToConfiguredStructuresFixMixin from mod fabric-registry-sync-v0->@Inject::method_41022(Lcom/mojang/datafixers/util/Pair;Lcom/mojang/serialization/Dynamic;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V does use it's CallbackInfoReturnable +[01:12:37] [Datafixer Bootstrap/INFO] (com.mojang.datafixers.DataFixerBuilder) 180 Datafixer optimizations took 135 milliseconds +[01:12:37] [main/DEBUG] (FabricLoader/Mixin) Mixing ServerPlayerEntityMixin from fabric-entity-events-v1.mixins.json into net.minecraft.server.network.ServerPlayerEntity +[01:12:37] [main/DEBUG] (FabricLoader/Mixin) fabric-entity-events-v1.mixins.json:ServerPlayerEntityMixin from mod fabric-entity-events-v1: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[01:12:37] [main/DEBUG] (FabricLoader/Mixin) Mixing ServerPlayerEntityMixin from fabric-screen-handler-api-v1.mixins.json into net.minecraft.server.network.ServerPlayerEntity +[01:12:37] [main/DEBUG] (FabricLoader/Mixin) fabric-screen-handler-api-v1.mixins.json:ServerPlayerEntityMixin from mod fabric-screen-handler-api-v1: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[01:12:37] [main/DEBUG] (FabricLoader/Mixin) Mixing EntityMixin from fabric-dimensions-v1.mixins.json into net.minecraft.server.network.ServerPlayerEntity +[01:12:37] [main/DEBUG] (FabricLoader/Mixin) fabric-dimensions-v1.mixins.json:EntityMixin from mod fabric-dimensions-v1: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[01:12:37] [main/DEBUG] (FabricLoader/Mixin) Mixing ServerPlayerEntityMixin from fabric-events-interaction-v0.mixins.json into net.minecraft.server.network.ServerPlayerEntity +[01:12:37] [main/DEBUG] (FabricLoader/Mixin) fabric-events-interaction-v0.mixins.json:ServerPlayerEntityMixin from mod fabric-events-interaction-v0: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[01:12:37] [main/DEBUG] (FabricLoader/Mixin) Mixing ServerPlayerEntityAccessor from fabric-containers-v0.mixins.json into net.minecraft.server.network.ServerPlayerEntity +[01:12:37] [main/DEBUG] (FabricLoader/Mixin) fabric-containers-v0.mixins.json:ServerPlayerEntityAccessor from mod fabric-containers-v0: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[01:12:37] [main/DEBUG] (FabricLoader/Mixin) Mixing ServerPlayerEntityMixin from fabric-containers-v0.accurate.mixins.json into net.minecraft.server.network.ServerPlayerEntity +[01:12:37] [main/DEBUG] (FabricLoader/Mixin) fabric-containers-v0.accurate.mixins.json:ServerPlayerEntityMixin from mod fabric-containers-v0: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[01:12:37] [main/DEBUG] (FabricLoader/Mixin) fabric-entity-events-v1.mixins.json:ServerPlayerEntityMixin from mod fabric-entity-events-v1->@Inject::callOnKillForPlayer(Lnet/minecraft/entity/damage/DamageSource;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V doesn't use it's CallbackInfo +[01:12:37] [main/DEBUG] (FabricLoader/Mixin) fabric-entity-events-v1.mixins.json:ServerPlayerEntityMixin from mod fabric-entity-events-v1->@Inject::callOnKillForPlayer(Lnet/minecraft/entity/damage/DamageSource;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V has 0 override(s) in child classes +[01:12:37] [main/DEBUG] (FabricLoader/Mixin) fabric-entity-events-v1.mixins.json:ServerPlayerEntityMixin from mod fabric-entity-events-v1->@Inject::callOnKillForPlayer(Lnet/minecraft/entity/damage/DamageSource;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V won't be passed a CallbackInfo as a result +[01:12:37] [main/DEBUG] (FabricLoader/Mixin) fabric-entity-events-v1.mixins.json:ServerPlayerEntityMixin from mod fabric-entity-events-v1->@Inject::notifyDeath(Lnet/minecraft/entity/damage/DamageSource;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V doesn't use it's CallbackInfo +[01:12:37] [main/DEBUG] (FabricLoader/Mixin) fabric-entity-events-v1.mixins.json:ServerPlayerEntityMixin from mod fabric-entity-events-v1->@Inject::notifyDeath(Lnet/minecraft/entity/damage/DamageSource;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V has 0 override(s) in child classes +[01:12:37] [main/DEBUG] (FabricLoader/Mixin) fabric-entity-events-v1.mixins.json:ServerPlayerEntityMixin from mod fabric-entity-events-v1->@Inject::notifyDeath(Lnet/minecraft/entity/damage/DamageSource;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V won't be passed a CallbackInfo as a result +[01:12:37] [main/DEBUG] (FabricLoader/Mixin) fabric-entity-events-v1.mixins.json:ServerPlayerEntityMixin from mod fabric-entity-events-v1->@Inject::afterWorldChanged(Lnet/minecraft/server/world/ServerWorld;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V doesn't use it's CallbackInfo +[01:12:37] [main/DEBUG] (FabricLoader/Mixin) fabric-entity-events-v1.mixins.json:ServerPlayerEntityMixin from mod fabric-entity-events-v1->@Inject::afterWorldChanged(Lnet/minecraft/server/world/ServerWorld;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V has 0 override(s) in child classes +[01:12:37] [main/DEBUG] (FabricLoader/Mixin) fabric-entity-events-v1.mixins.json:ServerPlayerEntityMixin from mod fabric-entity-events-v1->@Inject::afterWorldChanged(Lnet/minecraft/server/world/ServerWorld;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V won't be passed a CallbackInfo as a result +[01:12:37] [main/DEBUG] (FabricLoader/Mixin) fabric-entity-events-v1.mixins.json:ServerPlayerEntityMixin from mod fabric-entity-events-v1->@Inject::onCopyFrom(Lnet/minecraft/server/network/ServerPlayerEntity;ZLorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V doesn't use it's CallbackInfo +[01:12:37] [main/DEBUG] (FabricLoader/Mixin) fabric-entity-events-v1.mixins.json:ServerPlayerEntityMixin from mod fabric-entity-events-v1->@Inject::onCopyFrom(Lnet/minecraft/server/network/ServerPlayerEntity;ZLorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V has 0 override(s) in child classes +[01:12:37] [main/DEBUG] (FabricLoader/Mixin) fabric-entity-events-v1.mixins.json:ServerPlayerEntityMixin from mod fabric-entity-events-v1->@Inject::onCopyFrom(Lnet/minecraft/server/network/ServerPlayerEntity;ZLorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V won't be passed a CallbackInfo as a result +[01:12:37] [main/DEBUG] (FabricLoader/Mixin) fabric-entity-events-v1.mixins.json:ServerPlayerEntityMixin from mod fabric-entity-events-v1->@Inject::onTrySleepDirectionCheck(Lnet/minecraft/util/math/BlockPos;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;Lnet/minecraft/util/math/Direction;)V does use it's CallbackInfoReturnable +[01:12:37] [main/DEBUG] (FabricLoader/Mixin) fabric-screen-handler-api-v1.mixins.json:ServerPlayerEntityMixin from mod fabric-screen-handler-api-v1->@Inject::fabric_storeOpenedScreenHandler(Lnet/minecraft/screen/NamedScreenHandlerFactory;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;Lnet/minecraft/screen/ScreenHandler;)V doesn't use it's CallbackInfoReturnable +[01:12:37] [main/DEBUG] (FabricLoader/Mixin) fabric-screen-handler-api-v1.mixins.json:ServerPlayerEntityMixin from mod fabric-screen-handler-api-v1->@Inject::fabric_storeOpenedScreenHandler(Lnet/minecraft/screen/NamedScreenHandlerFactory;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;Lnet/minecraft/screen/ScreenHandler;)V has 0 override(s) in child classes +[01:12:37] [main/DEBUG] (FabricLoader/Mixin) fabric-screen-handler-api-v1.mixins.json:ServerPlayerEntityMixin from mod fabric-screen-handler-api-v1->@Inject::fabric_storeOpenedScreenHandler(Lnet/minecraft/screen/NamedScreenHandlerFactory;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;Lnet/minecraft/screen/ScreenHandler;)V won't be passed a CallbackInfoReturnable as a result +[01:12:37] [main/DEBUG] (FabricLoader/Mixin) fabric-screen-handler-api-v1.mixins.json:ServerPlayerEntityMixin from mod fabric-screen-handler-api-v1->@Inject::fabric_clearStoredScreenHandler(Lnet/minecraft/screen/NamedScreenHandlerFactory;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V doesn't use it's CallbackInfoReturnable +[01:12:37] [main/DEBUG] (FabricLoader/Mixin) fabric-screen-handler-api-v1.mixins.json:ServerPlayerEntityMixin from mod fabric-screen-handler-api-v1->@Inject::fabric_clearStoredScreenHandler(Lnet/minecraft/screen/NamedScreenHandlerFactory;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V has 0 override(s) in child classes +[01:12:37] [main/DEBUG] (FabricLoader/Mixin) fabric-screen-handler-api-v1.mixins.json:ServerPlayerEntityMixin from mod fabric-screen-handler-api-v1->@Inject::fabric_clearStoredScreenHandler(Lnet/minecraft/screen/NamedScreenHandlerFactory;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V won't be passed a CallbackInfoReturnable as a result +[01:12:37] [main/DEBUG] (FabricLoader/Mixin) fabric-screen-handler-api-v1.mixins.json:ServerPlayerEntityMixin from mod fabric-screen-handler-api-v1->@Inject::fabric_clearStoredScreenHandler(Lnet/minecraft/screen/NamedScreenHandlerFactory;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V doesn't use it's CallbackInfoReturnable +[01:12:37] [main/DEBUG] (FabricLoader/Mixin) fabric-screen-handler-api-v1.mixins.json:ServerPlayerEntityMixin from mod fabric-screen-handler-api-v1->@Inject::fabric_clearStoredScreenHandler(Lnet/minecraft/screen/NamedScreenHandlerFactory;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V has 0 override(s) in child classes +[01:12:37] [main/DEBUG] (FabricLoader/Mixin) fabric-screen-handler-api-v1.mixins.json:ServerPlayerEntityMixin from mod fabric-screen-handler-api-v1->@Inject::fabric_clearStoredScreenHandler(Lnet/minecraft/screen/NamedScreenHandlerFactory;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V won't be passed a CallbackInfoReturnable as a result +[01:12:37] [main/DEBUG] (FabricLoader/Mixin) fabric-screen-handler-api-v1.mixins.json:ServerPlayerEntityMixin from mod fabric-screen-handler-api-v1->@Inject::fabric_clearStoredScreenHandler(Lnet/minecraft/screen/NamedScreenHandlerFactory;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V doesn't use it's CallbackInfoReturnable +[01:12:37] [main/DEBUG] (FabricLoader/Mixin) fabric-screen-handler-api-v1.mixins.json:ServerPlayerEntityMixin from mod fabric-screen-handler-api-v1->@Inject::fabric_clearStoredScreenHandler(Lnet/minecraft/screen/NamedScreenHandlerFactory;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V has 0 override(s) in child classes +[01:12:37] [main/DEBUG] (FabricLoader/Mixin) fabric-screen-handler-api-v1.mixins.json:ServerPlayerEntityMixin from mod fabric-screen-handler-api-v1->@Inject::fabric_clearStoredScreenHandler(Lnet/minecraft/screen/NamedScreenHandlerFactory;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V won't be passed a CallbackInfoReturnable as a result +[01:12:37] [main/DEBUG] (FabricLoader/Mixin) fabric-dimensions-v1.mixins.json:EntityMixin from mod fabric-dimensions-v1->@Inject::getTeleportTarget(Lnet/minecraft/server/world/ServerWorld;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V does use it's CallbackInfoReturnable +[01:12:37] [main/DEBUG] (FabricLoader/Mixin) fabric-events-interaction-v0.mixins.json:ServerPlayerEntityMixin from mod fabric-events-interaction-v0->@Inject::onPlayerInteractEntity(Lnet/minecraft/entity/Entity;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V does use it's CallbackInfo +[01:12:37] [main/DEBUG] (FabricLoader/Mixin) Mixing WorldChunkMixin from fabric-lifecycle-events-v1.client.mixins.json into net.minecraft.world.chunk.WorldChunk +[01:12:37] [main/DEBUG] (FabricLoader/Mixin) fabric-lifecycle-events-v1.client.mixins.json:WorldChunkMixin from mod fabric-lifecycle-events-v1: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[01:12:37] [main/DEBUG] (FabricLoader/Mixin) fabric-lifecycle-events-v1.client.mixins.json:WorldChunkMixin from mod fabric-lifecycle-events-v1->@Inject::onLoadBlockEntity(Lnet/minecraft/block/entity/BlockEntity;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;Lnet/minecraft/util/math/BlockPos;Lnet/minecraft/block/entity/BlockEntity;)V doesn't use it's CallbackInfo +[01:12:37] [main/DEBUG] (FabricLoader/Mixin) fabric-lifecycle-events-v1.client.mixins.json:WorldChunkMixin from mod fabric-lifecycle-events-v1->@Inject::onLoadBlockEntity(Lnet/minecraft/block/entity/BlockEntity;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;Lnet/minecraft/util/math/BlockPos;Lnet/minecraft/block/entity/BlockEntity;)V has 0 override(s) in child classes +[01:12:37] [main/DEBUG] (FabricLoader/Mixin) fabric-lifecycle-events-v1.client.mixins.json:WorldChunkMixin from mod fabric-lifecycle-events-v1->@Inject::onLoadBlockEntity(Lnet/minecraft/block/entity/BlockEntity;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;Lnet/minecraft/util/math/BlockPos;Lnet/minecraft/block/entity/BlockEntity;)V won't be passed a CallbackInfo as a result +[01:12:37] [main/DEBUG] (FabricLoader/Mixin) fabric-lifecycle-events-v1.client.mixins.json:WorldChunkMixin from mod fabric-lifecycle-events-v1->@Inject::onRemoveBlockEntity(Lnet/minecraft/block/entity/BlockEntity;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;Lnet/minecraft/util/math/BlockPos;Lnet/minecraft/block/entity/BlockEntity;)V doesn't use it's CallbackInfo +[01:12:37] [main/DEBUG] (FabricLoader/Mixin) fabric-lifecycle-events-v1.client.mixins.json:WorldChunkMixin from mod fabric-lifecycle-events-v1->@Inject::onRemoveBlockEntity(Lnet/minecraft/block/entity/BlockEntity;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;Lnet/minecraft/util/math/BlockPos;Lnet/minecraft/block/entity/BlockEntity;)V has 0 override(s) in child classes +[01:12:37] [main/DEBUG] (FabricLoader/Mixin) fabric-lifecycle-events-v1.client.mixins.json:WorldChunkMixin from mod fabric-lifecycle-events-v1->@Inject::onRemoveBlockEntity(Lnet/minecraft/block/entity/BlockEntity;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;Lnet/minecraft/util/math/BlockPos;Lnet/minecraft/block/entity/BlockEntity;)V won't be passed a CallbackInfo as a result +[01:12:37] [main/DEBUG] (FabricLoader/Mixin) fabric-lifecycle-events-v1.client.mixins.json:WorldChunkMixin from mod fabric-lifecycle-events-v1->@Inject::onRemoveBlockEntity(Lnet/minecraft/util/math/BlockPos;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;Lnet/minecraft/block/entity/BlockEntity;)V doesn't use it's CallbackInfo +[01:12:37] [main/DEBUG] (FabricLoader/Mixin) fabric-lifecycle-events-v1.client.mixins.json:WorldChunkMixin from mod fabric-lifecycle-events-v1->@Inject::onRemoveBlockEntity(Lnet/minecraft/util/math/BlockPos;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;Lnet/minecraft/block/entity/BlockEntity;)V has 0 override(s) in child classes +[01:12:37] [main/DEBUG] (FabricLoader/Mixin) fabric-lifecycle-events-v1.client.mixins.json:WorldChunkMixin from mod fabric-lifecycle-events-v1->@Inject::onRemoveBlockEntity(Lnet/minecraft/util/math/BlockPos;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;Lnet/minecraft/block/entity/BlockEntity;)V won't be passed a CallbackInfo as a result +[01:12:37] [main/DEBUG] (FabricLoader/Mixin) Mixing VillagerEntityAccessor from fabric-content-registries-v0.mixins.json into net.minecraft.entity.passive.VillagerEntity +[01:12:37] [main/DEBUG] (FabricLoader/Mixin) fabric-content-registries-v0.mixins.json:VillagerEntityAccessor from mod fabric-content-registries-v0: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[01:12:37] [main/DEBUG] (FabricLoader/Mixin) Renaming @Accessor method fabric_setItemFoodValues(Ljava/util/Map;)V to fabric_setItemFoodValues$fabric-content-registries-v0_$md$5f0bfc$0 in fabric-content-registries-v0.mixins.json:VillagerEntityAccessor from mod fabric-content-registries-v0 +[01:12:37] [main/DEBUG] (FabricLoader/Mixin) Renaming @Accessor method fabric_setGatherableItems(Ljava/util/Set;)V to fabric_setGatherableItems$fabric-content-registries-v0_$md$5f0bfc$1 in fabric-content-registries-v0.mixins.json:VillagerEntityAccessor from mod fabric-content-registries-v0 +[01:12:37] [main/DEBUG] (FabricLoader/Mixin) Renaming @Accessor method fabric_getGatherableItems()Ljava/util/Set; to fabric_getGatherableItems$fabric-content-registries-v0_$md$5f0bfc$2 in fabric-content-registries-v0.mixins.json:VillagerEntityAccessor from mod fabric-content-registries-v0 +[01:12:37] [main/DEBUG] (FabricLoader/Mixin) Mixing VillagerEntityMixin from fabric-content-registries-v0.mixins.json into net.minecraft.entity.passive.VillagerEntity +[01:12:37] [main/DEBUG] (FabricLoader/Mixin) fabric-content-registries-v0.mixins.json:VillagerEntityMixin from mod fabric-content-registries-v0: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[01:12:38] [main/DEBUG] (FabricLoader/Mixin) Mixing ingredient.IngredientMixin from fabric-recipe-api-v1.mixins.json into net.minecraft.recipe.Ingredient +[01:12:38] [main/DEBUG] (FabricLoader/Mixin) fabric-recipe-api-v1.mixins.json:ingredient.IngredientMixin from mod fabric-recipe-api-v1->@Inject::injectFromJson(Lcom/google/gson/JsonElement;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V does use it's CallbackInfoReturnable +[01:12:38] [main/DEBUG] (FabricLoader/Mixin) fabric-recipe-api-v1.mixins.json:ingredient.IngredientMixin from mod fabric-recipe-api-v1->@Inject::injectEntryFromJson(Lcom/google/gson/JsonObject;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V doesn't use it's CallbackInfoReturnable +[01:12:38] [main/DEBUG] (FabricLoader/Mixin) fabric-recipe-api-v1.mixins.json:ingredient.IngredientMixin from mod fabric-recipe-api-v1->@Inject::injectFromPacket(Lnet/minecraft/network/PacketByteBuf;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V does use it's CallbackInfoReturnable +[01:12:38] [main/DEBUG] (FabricLoader/Mixin) Mixing EntitySelectorOptionsAccessor from fabric-command-api-v2.mixins.json into net.minecraft.command.EntitySelectorOptions +[01:12:38] [main/DEBUG] (FabricLoader/Mixin) fabric-command-api-v2.mixins.json:EntitySelectorOptionsAccessor from mod fabric-command-api-v2: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[01:12:38] [main/DEBUG] (FabricLoader/Mixin) Renaming @Invoker method callPutOption(Ljava/lang/String;Lnet/minecraft/command/EntitySelectorOptions$SelectorHandler;Ljava/util/function/Predicate;Lnet/minecraft/text/Text;)V to callPutOption$fabric-command-api-v2_$md$5f0bfc$0 in fabric-command-api-v2.mixins.json:EntitySelectorOptionsAccessor from mod fabric-command-api-v2 +[01:12:38] [main/DEBUG] (FabricLoader/Mixin) Mixing EntitySelectorReaderMixin from fabric-command-api-v2.mixins.json into net.minecraft.command.EntitySelectorReader +[01:12:38] [main/DEBUG] (FabricLoader/Mixin) fabric-command-api-v2.mixins.json:EntitySelectorReaderMixin from mod fabric-command-api-v2: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[01:12:38] [main/DEBUG] (FabricLoader/Mixin) Generating mapped inner class net/minecraft/block/entity/ChiseledBookshelfBlockEntity$Anonymous$ba306d2c40794435a60e883df7a004e1 (originally net/fabricmc/fabric/mixin/transfer/ChiseledBookshelfBlockEntityMixin$1) +[01:12:38] [main/DEBUG] (FabricLoader/Mixin) Mixing StructureTemplateManagerMixin from fabric-gametest-api-v1.mixins.json into net.minecraft.structure.StructureTemplateManager +[01:12:38] [main/DEBUG] (FabricLoader/Mixin) fabric-gametest-api-v1.mixins.json:StructureTemplateManagerMixin from mod fabric-gametest-api-v1: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[01:12:38] [main/DEBUG] (FabricLoader/Mixin) fabric-gametest-api-v1.mixins.json:StructureTemplateManagerMixin from mod fabric-gametest-api-v1->@Inject::addFabricTemplateProvider(Lnet/minecraft/resource/ResourceManager;Lnet/minecraft/world/level/storage/LevelStorage$Session;Lcom/mojang/datafixers/DataFixer;Lnet/minecraft/registry/RegistryEntryLookup;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;Lcom/google/common/collect/ImmutableList$Builder;)V doesn't use it's CallbackInfo +[01:12:38] [main/DEBUG] (FabricLoader/Mixin) fabric-gametest-api-v1.mixins.json:StructureTemplateManagerMixin from mod fabric-gametest-api-v1->@Inject::addFabricTemplateProvider(Lnet/minecraft/resource/ResourceManager;Lnet/minecraft/world/level/storage/LevelStorage$Session;Lcom/mojang/datafixers/DataFixer;Lnet/minecraft/registry/RegistryEntryLookup;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;Lcom/google/common/collect/ImmutableList$Builder;)V has 0 override(s) in child classes +[01:12:38] [main/DEBUG] (FabricLoader/Mixin) fabric-gametest-api-v1.mixins.json:StructureTemplateManagerMixin from mod fabric-gametest-api-v1->@Inject::addFabricTemplateProvider(Lnet/minecraft/resource/ResourceManager;Lnet/minecraft/world/level/storage/LevelStorage$Session;Lcom/mojang/datafixers/DataFixer;Lnet/minecraft/registry/RegistryEntryLookup;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;Lcom/google/common/collect/ImmutableList$Builder;)V won't be passed a CallbackInfo as a result +[01:12:38] [main/DEBUG] (FabricLoader/Mixin) Mixing SimpleInventoryMixin from fabric-transfer-api-v1.mixins.json into net.minecraft.inventory.SimpleInventory +[01:12:38] [main/DEBUG] (FabricLoader/Mixin) fabric-transfer-api-v1.mixins.json:SimpleInventoryMixin from mod fabric-transfer-api-v1: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[01:12:38] [main/DEBUG] (FabricLoader/Mixin) Mixing RecipeMixin from fabric-item-api-v1.mixins.json into net.minecraft.recipe.Recipe +[01:12:38] [main/DEBUG] (FabricLoader/Mixin) fabric-item-api-v1.mixins.json:RecipeMixin from mod fabric-item-api-v1: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[01:12:38] [main/DEBUG] (FabricLoader/Mixin) fabric-item-api-v1.mixins.json:RecipeMixin from mod fabric-item-api-v1->@Inject::captureStack(Lnet/minecraft/inventory/Inventory;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;Lnet/minecraft/util/collection/DefaultedList;I)V doesn't use it's CallbackInfoReturnable +[01:12:38] [main/DEBUG] (FabricLoader/Mixin) fabric-item-api-v1.mixins.json:RecipeMixin from mod fabric-item-api-v1->@Inject::captureStack(Lnet/minecraft/inventory/Inventory;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;Lnet/minecraft/util/collection/DefaultedList;I)V has 0 override(s) in child classes +[01:12:38] [main/DEBUG] (FabricLoader/Mixin) fabric-item-api-v1.mixins.json:RecipeMixin from mod fabric-item-api-v1->@Inject::captureStack(Lnet/minecraft/inventory/Inventory;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;Lnet/minecraft/util/collection/DefaultedList;I)V won't be passed a CallbackInfoReturnable as a result +[01:12:38] [main/DEBUG] (FabricLoader/Mixin) Mixing RegistryCodecsMixin from fabric-dimensions-v1.mixins.json into net.minecraft.registry.RegistryCodecs +[01:12:38] [main/DEBUG] (FabricLoader/Mixin) fabric-dimensions-v1.mixins.json:RegistryCodecsMixin from mod fabric-dimensions-v1: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[01:12:39] [main/DEBUG] (FabricLoader/Mixin) Mixing BiomeSourceMixin from fabric-biome-api-v1.mixins.json into net.minecraft.world.biome.source.BiomeSource +[01:12:39] [main/DEBUG] (FabricLoader/Mixin) fabric-biome-api-v1.mixins.json:BiomeSourceMixin from mod fabric-biome-api-v1: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[01:12:39] [main/DEBUG] (FabricLoader/Mixin) Mixing MultiNoiseBiomeSourceMixin from fabric-biome-api-v1.mixins.json into net.minecraft.world.biome.source.MultiNoiseBiomeSource +[01:12:39] [main/DEBUG] (FabricLoader/Mixin) fabric-biome-api-v1.mixins.json:MultiNoiseBiomeSourceMixin from mod fabric-biome-api-v1: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[01:12:39] [main/DEBUG] (FabricLoader/Mixin) Mixing NetherBiomePresetMixin from fabric-biome-api-v1.mixins.json into net.minecraft.world.biome.source.MultiNoiseBiomeSourceParameterList$Preset$1 +[01:12:39] [main/DEBUG] (FabricLoader/Mixin) fabric-biome-api-v1.mixins.json:NetherBiomePresetMixin from mod fabric-biome-api-v1: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[01:12:39] [main/DEBUG] (FabricLoader/Mixin) fabric-biome-api-v1.mixins.json:NetherBiomePresetMixin from mod fabric-biome-api-v1->@Inject::apply(Ljava/util/function/Function;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V does use it's CallbackInfoReturnable +[01:12:39] [main/DEBUG] (FabricLoader/Mixin) Mixing TheEndBiomeSourceMixin from fabric-biome-api-v1.mixins.json into net.minecraft.world.biome.source.TheEndBiomeSource +[01:12:39] [main/DEBUG] (FabricLoader/Mixin) fabric-biome-api-v1.mixins.json:TheEndBiomeSourceMixin from mod fabric-biome-api-v1: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[01:12:39] [main/DEBUG] (FabricLoader/Mixin) Renaming synthetic method lambda$init$1(Lnet/minecraft/registry/RegistryEntryLookup;)Lnet/fabricmc/fabric/impl/biome/TheEndBiomeData$Overrides; to md5f0bfc$fabric-biome-api-v1$lambda$init$1$0 in fabric-biome-api-v1.mixins.json:TheEndBiomeSourceMixin from mod fabric-biome-api-v1 +[01:12:39] [main/DEBUG] (FabricLoader/Mixin) Renaming synthetic method lambda$modifyCodec$0(Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; to md5f0bfc$fabric-biome-api-v1$lambda$modifyCodec$0$1 in fabric-biome-api-v1.mixins.json:TheEndBiomeSourceMixin from mod fabric-biome-api-v1 +[01:12:39] [main/DEBUG] (FabricLoader/Mixin) fabric-biome-api-v1.mixins.json:TheEndBiomeSourceMixin from mod fabric-biome-api-v1->@Inject::modifyCodec(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V doesn't use it's CallbackInfo +[01:12:39] [main/DEBUG] (FabricLoader/Mixin) fabric-biome-api-v1.mixins.json:TheEndBiomeSourceMixin from mod fabric-biome-api-v1->@Inject::rememberLookup(Lnet/minecraft/registry/RegistryEntryLookup;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V doesn't use it's CallbackInfoReturnable +[01:12:39] [main/DEBUG] (FabricLoader/Mixin) fabric-biome-api-v1.mixins.json:TheEndBiomeSourceMixin from mod fabric-biome-api-v1->@Inject::clearLookup(Lnet/minecraft/registry/RegistryEntryLookup;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V doesn't use it's CallbackInfoReturnable +[01:12:39] [main/DEBUG] (FabricLoader/Mixin) fabric-biome-api-v1.mixins.json:TheEndBiomeSourceMixin from mod fabric-biome-api-v1->@Inject::init(Lnet/minecraft/registry/entry/RegistryEntry;Lnet/minecraft/registry/entry/RegistryEntry;Lnet/minecraft/registry/entry/RegistryEntry;Lnet/minecraft/registry/entry/RegistryEntry;Lnet/minecraft/registry/entry/RegistryEntry;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V doesn't use it's CallbackInfo +[01:12:39] [main/DEBUG] (FabricLoader/Mixin) fabric-biome-api-v1.mixins.json:TheEndBiomeSourceMixin from mod fabric-biome-api-v1->@Inject::init(Lnet/minecraft/registry/entry/RegistryEntry;Lnet/minecraft/registry/entry/RegistryEntry;Lnet/minecraft/registry/entry/RegistryEntry;Lnet/minecraft/registry/entry/RegistryEntry;Lnet/minecraft/registry/entry/RegistryEntry;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V has 0 override(s) in child classes +[01:12:39] [main/DEBUG] (FabricLoader/Mixin) fabric-biome-api-v1.mixins.json:TheEndBiomeSourceMixin from mod fabric-biome-api-v1->@Inject::init(Lnet/minecraft/registry/entry/RegistryEntry;Lnet/minecraft/registry/entry/RegistryEntry;Lnet/minecraft/registry/entry/RegistryEntry;Lnet/minecraft/registry/entry/RegistryEntry;Lnet/minecraft/registry/entry/RegistryEntry;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V won't be passed a CallbackInfo as a result +[01:12:39] [main/DEBUG] (FabricLoader/Mixin) fabric-biome-api-v1.mixins.json:TheEndBiomeSourceMixin from mod fabric-biome-api-v1->@Inject::getWeightedEndBiome(IIILnet/minecraft/world/biome/source/util/MultiNoiseUtil$MultiNoiseSampler;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V does use it's CallbackInfoReturnable +[01:12:39] [main/DEBUG] (FabricLoader/Mixin) fabric-biome-api-v1.mixins.json:TheEndBiomeSourceMixin from mod fabric-biome-api-v1->@Inject::getWeightedEndBiome(IIILnet/minecraft/world/biome/source/util/MultiNoiseUtil$MultiNoiseSampler;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V does use it's CallbackInfoReturnable +[01:12:39] [main/DEBUG] (FabricLoader/Mixin) fabric-biome-api-v1.mixins.json:TheEndBiomeSourceMixin from mod fabric-biome-api-v1->@Inject::getWeightedEndBiome(IIILnet/minecraft/world/biome/source/util/MultiNoiseUtil$MultiNoiseSampler;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V does use it's CallbackInfoReturnable +[01:12:39] [main/DEBUG] (FabricLoader/Mixin) fabric-biome-api-v1.mixins.json:TheEndBiomeSourceMixin from mod fabric-biome-api-v1->@Inject::getWeightedEndBiome(IIILnet/minecraft/world/biome/source/util/MultiNoiseUtil$MultiNoiseSampler;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V does use it's CallbackInfoReturnable +[01:12:39] [main/DEBUG] (FabricLoader/Mixin) fabric-biome-api-v1.mixins.json:TheEndBiomeSourceMixin from mod fabric-biome-api-v1->@Inject::getWeightedEndBiome(IIILnet/minecraft/world/biome/source/util/MultiNoiseUtil$MultiNoiseSampler;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V does use it's CallbackInfoReturnable +[01:12:39] [main/DEBUG] (FabricLoader/Mixin) Mixing DebugChunkGeneratorAccessor from fabric-registry-sync-v0.mixins.json into net.minecraft.world.gen.chunk.DebugChunkGenerator +[01:12:39] [main/DEBUG] (FabricLoader/Mixin) fabric-registry-sync-v0.mixins.json:DebugChunkGeneratorAccessor from mod fabric-registry-sync-v0: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[01:12:39] [main/DEBUG] (FabricLoader/Mixin) Renaming @Accessor method setBLOCK_STATES(Ljava/util/List;)V to setBLOCK_STATES$fabric-registry-sync-v0_$md$5f0bfc$0 in fabric-registry-sync-v0.mixins.json:DebugChunkGeneratorAccessor from mod fabric-registry-sync-v0 +[01:12:39] [main/DEBUG] (FabricLoader/Mixin) Renaming @Accessor method setX_SIDE_LENGTH(I)V to setX_SIDE_LENGTH$fabric-registry-sync-v0_$md$5f0bfc$1 in fabric-registry-sync-v0.mixins.json:DebugChunkGeneratorAccessor from mod fabric-registry-sync-v0 +[01:12:39] [main/DEBUG] (FabricLoader/Mixin) Renaming @Accessor method setZ_SIDE_LENGTH(I)V to setZ_SIDE_LENGTH$fabric-registry-sync-v0_$md$5f0bfc$2 in fabric-registry-sync-v0.mixins.json:DebugChunkGeneratorAccessor from mod fabric-registry-sync-v0 +[01:12:39] [main/DEBUG] (FabricLoader/Mixin) Mixing DefaultAttributeRegistryAccessor from fabric-object-builder-v1.mixins.json into net.minecraft.entity.attribute.DefaultAttributeRegistry +[01:12:39] [main/DEBUG] (FabricLoader/Mixin) fabric-object-builder-v1.mixins.json:DefaultAttributeRegistryAccessor from mod fabric-object-builder-api-v1: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[01:12:39] [main/DEBUG] (FabricLoader/Mixin) Renaming @Accessor method getRegistry()Ljava/util/Map; to getRegistry$fabric-object-builder-api-v1_$md$5f0bfc$0 in fabric-object-builder-v1.mixins.json:DefaultAttributeRegistryAccessor from mod fabric-object-builder-api-v1 +[01:12:39] [main/DEBUG] (FabricLoader/Mixin) Mixing DefaultAttributeRegistryMixin from fabric-object-builder-v1.mixins.json into net.minecraft.entity.attribute.DefaultAttributeRegistry +[01:12:39] [main/DEBUG] (FabricLoader/Mixin) fabric-object-builder-v1.mixins.json:DefaultAttributeRegistryMixin from mod fabric-object-builder-api-v1: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[01:12:39] [main/DEBUG] (FabricLoader/Mixin) fabric-object-builder-v1.mixins.json:DefaultAttributeRegistryMixin from mod fabric-object-builder-api-v1->@Inject::injectAttributes(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V doesn't use it's CallbackInfo +[01:12:39] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing MinecraftClientMixin from fabric-lifecycle-events-v1.client.mixins.json into net.minecraft.client.MinecraftClient +[01:12:39] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-lifecycle-events-v1.client.mixins.json:MinecraftClientMixin from mod fabric-lifecycle-events-v1: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[01:12:39] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing MinecraftClientMixin from fabric-screen-api-v1.mixins.json into net.minecraft.client.MinecraftClient +[01:12:39] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-screen-api-v1.mixins.json:MinecraftClientMixin from mod fabric-screen-api-v1: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[01:12:39] [Render thread/DEBUG] (FabricLoader/Mixin) Renaming @Unique field LOGGERLorg/slf4j/Logger; to fd5f0bfc$LOGGER$0 in fabric-screen-api-v1.mixins.json:MinecraftClientMixin from mod fabric-screen-api-v1 +[01:12:39] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing accessor.MinecraftClientAccessor from fabric-networking-api-v1.client.mixins.json into net.minecraft.client.MinecraftClient +[01:12:39] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-networking-api-v1.client.mixins.json:accessor.MinecraftClientAccessor from mod fabric-networking-api-v1: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[01:12:39] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing MixinMinecraftClient from client.mixins.json into net.minecraft.client.MinecraftClient +[01:12:39] [Render thread/DEBUG] (FabricLoader/Mixin) client.mixins.json:MixinMinecraftClient from mod testclient: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_8 supports class version 52) +[01:12:39] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing MinecraftClientMixin from fabric-events-interaction-v0.client.mixins.json into net.minecraft.client.MinecraftClient +[01:12:39] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-events-interaction-v0.client.mixins.json:MinecraftClientMixin from mod fabric-events-interaction-v0: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[01:12:39] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing MinecraftClientMixin from fabric-data-generation-api-v1.client.mixins.json into net.minecraft.client.MinecraftClient +[01:12:39] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-data-generation-api-v1.client.mixins.json:MinecraftClientMixin from mod fabric-data-generation-api-v1: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[01:12:39] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing MinecraftClientMixin from fabric-registry-sync-v0.client.mixins.json into net.minecraft.client.MinecraftClient +[01:12:39] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-registry-sync-v0.client.mixins.json:MinecraftClientMixin from mod fabric-registry-sync-v0: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[01:12:39] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-lifecycle-events-v1.client.mixins.json:MinecraftClientMixin from mod fabric-lifecycle-events-v1->@Inject::onStartTick(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V doesn't use it's CallbackInfo +[01:12:39] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-lifecycle-events-v1.client.mixins.json:MinecraftClientMixin from mod fabric-lifecycle-events-v1->@Inject::onStartTick(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V has 0 override(s) in child classes +[01:12:39] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-lifecycle-events-v1.client.mixins.json:MinecraftClientMixin from mod fabric-lifecycle-events-v1->@Inject::onStartTick(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V won't be passed a CallbackInfo as a result +[01:12:39] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-lifecycle-events-v1.client.mixins.json:MinecraftClientMixin from mod fabric-lifecycle-events-v1->@Inject::onEndTick(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V doesn't use it's CallbackInfo +[01:12:39] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-lifecycle-events-v1.client.mixins.json:MinecraftClientMixin from mod fabric-lifecycle-events-v1->@Inject::onEndTick(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V has 0 override(s) in child classes +[01:12:39] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-lifecycle-events-v1.client.mixins.json:MinecraftClientMixin from mod fabric-lifecycle-events-v1->@Inject::onEndTick(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V won't be passed a CallbackInfo as a result +[01:12:39] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-lifecycle-events-v1.client.mixins.json:MinecraftClientMixin from mod fabric-lifecycle-events-v1->@Inject::onStopping(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V doesn't use it's CallbackInfo +[01:12:39] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-lifecycle-events-v1.client.mixins.json:MinecraftClientMixin from mod fabric-lifecycle-events-v1->@Inject::onStopping(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V has 0 override(s) in child classes +[01:12:39] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-lifecycle-events-v1.client.mixins.json:MinecraftClientMixin from mod fabric-lifecycle-events-v1->@Inject::onStopping(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V won't be passed a CallbackInfo as a result +[01:12:39] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-lifecycle-events-v1.client.mixins.json:MinecraftClientMixin from mod fabric-lifecycle-events-v1->@Inject::onStart(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V doesn't use it's CallbackInfo +[01:12:39] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-lifecycle-events-v1.client.mixins.json:MinecraftClientMixin from mod fabric-lifecycle-events-v1->@Inject::onStart(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V has 0 override(s) in child classes +[01:12:39] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-lifecycle-events-v1.client.mixins.json:MinecraftClientMixin from mod fabric-lifecycle-events-v1->@Inject::onStart(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V won't be passed a CallbackInfo as a result +[01:12:39] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-screen-api-v1.mixins.json:MinecraftClientMixin from mod fabric-screen-api-v1->@Inject::checkThreadOnDev(Lnet/minecraft/client/gui/screen/Screen;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V doesn't use it's CallbackInfo +[01:12:39] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-screen-api-v1.mixins.json:MinecraftClientMixin from mod fabric-screen-api-v1->@Inject::checkThreadOnDev(Lnet/minecraft/client/gui/screen/Screen;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V has 0 override(s) in child classes +[01:12:39] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-screen-api-v1.mixins.json:MinecraftClientMixin from mod fabric-screen-api-v1->@Inject::checkThreadOnDev(Lnet/minecraft/client/gui/screen/Screen;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V won't be passed a CallbackInfo as a result +[01:12:39] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-screen-api-v1.mixins.json:MinecraftClientMixin from mod fabric-screen-api-v1->@Inject::onScreenRemove(Lnet/minecraft/client/gui/screen/Screen;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V doesn't use it's CallbackInfo +[01:12:39] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-screen-api-v1.mixins.json:MinecraftClientMixin from mod fabric-screen-api-v1->@Inject::onScreenRemove(Lnet/minecraft/client/gui/screen/Screen;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V has 0 override(s) in child classes +[01:12:39] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-screen-api-v1.mixins.json:MinecraftClientMixin from mod fabric-screen-api-v1->@Inject::onScreenRemove(Lnet/minecraft/client/gui/screen/Screen;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V won't be passed a CallbackInfo as a result +[01:12:39] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-screen-api-v1.mixins.json:MinecraftClientMixin from mod fabric-screen-api-v1->@Inject::onScreenRemoveBecauseStopping(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V doesn't use it's CallbackInfo +[01:12:39] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-screen-api-v1.mixins.json:MinecraftClientMixin from mod fabric-screen-api-v1->@Inject::onScreenRemoveBecauseStopping(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V has 0 override(s) in child classes +[01:12:39] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-screen-api-v1.mixins.json:MinecraftClientMixin from mod fabric-screen-api-v1->@Inject::onScreenRemoveBecauseStopping(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V won't be passed a CallbackInfo as a result +[01:12:39] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-screen-api-v1.mixins.json:MinecraftClientMixin from mod fabric-screen-api-v1->@Inject::beforeScreenTick(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V doesn't use it's CallbackInfo +[01:12:39] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-screen-api-v1.mixins.json:MinecraftClientMixin from mod fabric-screen-api-v1->@Inject::beforeScreenTick(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V has 0 override(s) in child classes +[01:12:39] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-screen-api-v1.mixins.json:MinecraftClientMixin from mod fabric-screen-api-v1->@Inject::beforeScreenTick(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V won't be passed a CallbackInfo as a result +[01:12:39] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-screen-api-v1.mixins.json:MinecraftClientMixin from mod fabric-screen-api-v1->@Inject::afterScreenTick(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V doesn't use it's CallbackInfo +[01:12:39] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-screen-api-v1.mixins.json:MinecraftClientMixin from mod fabric-screen-api-v1->@Inject::afterScreenTick(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V has 0 override(s) in child classes +[01:12:39] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-screen-api-v1.mixins.json:MinecraftClientMixin from mod fabric-screen-api-v1->@Inject::afterScreenTick(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V won't be passed a CallbackInfo as a result +[01:12:39] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-screen-api-v1.mixins.json:MinecraftClientMixin from mod fabric-screen-api-v1->@Inject::beforeLoadingScreenTick(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V doesn't use it's CallbackInfo +[01:12:39] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-screen-api-v1.mixins.json:MinecraftClientMixin from mod fabric-screen-api-v1->@Inject::beforeLoadingScreenTick(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V has 0 override(s) in child classes +[01:12:39] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-screen-api-v1.mixins.json:MinecraftClientMixin from mod fabric-screen-api-v1->@Inject::beforeLoadingScreenTick(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V won't be passed a CallbackInfo as a result +[01:12:39] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-screen-api-v1.mixins.json:MinecraftClientMixin from mod fabric-screen-api-v1->@Inject::afterLoadingScreenTick(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V doesn't use it's CallbackInfo +[01:12:39] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-screen-api-v1.mixins.json:MinecraftClientMixin from mod fabric-screen-api-v1->@Inject::afterLoadingScreenTick(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V has 0 override(s) in child classes +[01:12:39] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-screen-api-v1.mixins.json:MinecraftClientMixin from mod fabric-screen-api-v1->@Inject::afterLoadingScreenTick(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V won't be passed a CallbackInfo as a result +[01:12:39] [Render thread/DEBUG] (FabricLoader/Mixin) client.mixins.json:MixinMinecraftClient from mod testclient->@Inject::aetherium$init(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V doesn't use it's CallbackInfo +[01:12:39] [Render thread/DEBUG] (FabricLoader/Mixin) client.mixins.json:MixinMinecraftClient from mod testclient->@Inject::aetherium$init(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V has 0 override(s) in child classes +[01:12:39] [Render thread/DEBUG] (FabricLoader/Mixin) client.mixins.json:MixinMinecraftClient from mod testclient->@Inject::aetherium$init(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V won't be passed a CallbackInfo as a result +[01:12:39] [Render thread/DEBUG] (FabricLoader/Mixin) client.mixins.json:MixinMinecraftClient from mod testclient->@Inject::mixin$tick(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V doesn't use it's CallbackInfo +[01:12:39] [Render thread/DEBUG] (FabricLoader/Mixin) client.mixins.json:MixinMinecraftClient from mod testclient->@Inject::mixin$tick(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V has 0 override(s) in child classes +[01:12:39] [Render thread/DEBUG] (FabricLoader/Mixin) client.mixins.json:MixinMinecraftClient from mod testclient->@Inject::mixin$tick(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V won't be passed a CallbackInfo as a result +[01:12:39] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-events-interaction-v0.client.mixins.json:MinecraftClientMixin from mod fabric-events-interaction-v0->@Inject::fabric_doItemPickWrapper(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V does use it's CallbackInfo +[01:12:39] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-events-interaction-v0.client.mixins.json:MinecraftClientMixin from mod fabric-events-interaction-v0->@Inject::cancelItemPick(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V does use it's CallbackInfo +[01:12:39] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-events-interaction-v0.client.mixins.json:MinecraftClientMixin from mod fabric-events-interaction-v0->@Inject::injectUseEntityCallback(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;[Lnet/minecraft/util/Hand;IILnet/minecraft/util/Hand;Lnet/minecraft/item/ItemStack;Lnet/minecraft/util/hit/EntityHitResult;Lnet/minecraft/entity/Entity;)V does use it's CallbackInfo +[01:12:39] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-data-generation-api-v1.client.mixins.json:MinecraftClientMixin from mod fabric-data-generation-api-v1->@Inject::main(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V doesn't use it's CallbackInfo +[01:12:39] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-data-generation-api-v1.client.mixins.json:MinecraftClientMixin from mod fabric-data-generation-api-v1->@Inject::main(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V has 0 override(s) in child classes +[01:12:39] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-data-generation-api-v1.client.mixins.json:MinecraftClientMixin from mod fabric-data-generation-api-v1->@Inject::main(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V won't be passed a CallbackInfo as a result +[01:12:39] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-registry-sync-v0.client.mixins.json:MinecraftClientMixin from mod fabric-registry-sync-v0->@Inject::disconnectAfter(Lnet/minecraft/client/gui/screen/Screen;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V doesn't use it's CallbackInfo +[01:12:39] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-registry-sync-v0.client.mixins.json:MinecraftClientMixin from mod fabric-registry-sync-v0->@Inject::disconnectAfter(Lnet/minecraft/client/gui/screen/Screen;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V has 0 override(s) in child classes +[01:12:39] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-registry-sync-v0.client.mixins.json:MinecraftClientMixin from mod fabric-registry-sync-v0->@Inject::disconnectAfter(Lnet/minecraft/client/gui/screen/Screen;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V won't be passed a CallbackInfo as a result +[01:12:39] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-registry-sync-v0.client.mixins.json:MinecraftClientMixin from mod fabric-registry-sync-v0->@Inject::onStart(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V doesn't use it's CallbackInfo +[01:12:39] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-registry-sync-v0.client.mixins.json:MinecraftClientMixin from mod fabric-registry-sync-v0->@Inject::onStart(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V has 0 override(s) in child classes +[01:12:39] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-registry-sync-v0.client.mixins.json:MinecraftClientMixin from mod fabric-registry-sync-v0->@Inject::onStart(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V won't be passed a CallbackInfo as a result +[01:12:39] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing ScreenAccessor from fabric-screen-api-v1.mixins.json into net.minecraft.client.gui.screen.Screen +[01:12:39] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-screen-api-v1.mixins.json:ScreenAccessor from mod fabric-screen-api-v1: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[01:12:39] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing ScreenMixin from fabric-screen-api-v1.mixins.json into net.minecraft.client.gui.screen.Screen +[01:12:39] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-screen-api-v1.mixins.json:ScreenMixin from mod fabric-screen-api-v1: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[01:12:39] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing ScreenMixin from fabric-rendering-v1.mixins.json into net.minecraft.client.gui.screen.Screen +[01:12:39] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:ScreenMixin from mod fabric-rendering-v1: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[01:12:39] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-screen-api-v1.mixins.json:ScreenMixin from mod fabric-screen-api-v1->@Inject::beforeInitScreen(Lnet/minecraft/client/MinecraftClient;IILorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V doesn't use it's CallbackInfo +[01:12:39] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-screen-api-v1.mixins.json:ScreenMixin from mod fabric-screen-api-v1->@Inject::beforeInitScreen(Lnet/minecraft/client/MinecraftClient;IILorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V has 0 override(s) in child classes +[01:12:39] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-screen-api-v1.mixins.json:ScreenMixin from mod fabric-screen-api-v1->@Inject::beforeInitScreen(Lnet/minecraft/client/MinecraftClient;IILorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V won't be passed a CallbackInfo as a result +[01:12:39] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-screen-api-v1.mixins.json:ScreenMixin from mod fabric-screen-api-v1->@Inject::afterInitScreen(Lnet/minecraft/client/MinecraftClient;IILorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V doesn't use it's CallbackInfo +[01:12:39] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-screen-api-v1.mixins.json:ScreenMixin from mod fabric-screen-api-v1->@Inject::afterInitScreen(Lnet/minecraft/client/MinecraftClient;IILorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V has 0 override(s) in child classes +[01:12:39] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-screen-api-v1.mixins.json:ScreenMixin from mod fabric-screen-api-v1->@Inject::afterInitScreen(Lnet/minecraft/client/MinecraftClient;IILorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V won't be passed a CallbackInfo as a result +[01:12:39] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-screen-api-v1.mixins.json:ScreenMixin from mod fabric-screen-api-v1->@Inject::beforeResizeScreen(Lnet/minecraft/client/MinecraftClient;IILorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V doesn't use it's CallbackInfo +[01:12:39] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-screen-api-v1.mixins.json:ScreenMixin from mod fabric-screen-api-v1->@Inject::beforeResizeScreen(Lnet/minecraft/client/MinecraftClient;IILorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V has 0 override(s) in child classes +[01:12:39] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-screen-api-v1.mixins.json:ScreenMixin from mod fabric-screen-api-v1->@Inject::beforeResizeScreen(Lnet/minecraft/client/MinecraftClient;IILorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V won't be passed a CallbackInfo as a result +[01:12:39] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-screen-api-v1.mixins.json:ScreenMixin from mod fabric-screen-api-v1->@Inject::afterResizeScreen(Lnet/minecraft/client/MinecraftClient;IILorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V doesn't use it's CallbackInfo +[01:12:39] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-screen-api-v1.mixins.json:ScreenMixin from mod fabric-screen-api-v1->@Inject::afterResizeScreen(Lnet/minecraft/client/MinecraftClient;IILorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V has 0 override(s) in child classes +[01:12:39] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-screen-api-v1.mixins.json:ScreenMixin from mod fabric-screen-api-v1->@Inject::afterResizeScreen(Lnet/minecraft/client/MinecraftClient;IILorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V won't be passed a CallbackInfo as a result +[01:12:39] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:ScreenMixin from mod fabric-rendering-v1->@Inject::injectRenderTooltipLambda(Ljava/util/List;Lnet/minecraft/client/item/TooltipData;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V does use it's CallbackInfo +[01:12:39] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing ClientWorldMixin from fabric-lifecycle-events-v1.client.mixins.json into net.minecraft.client.world.ClientWorld +[01:12:39] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-lifecycle-events-v1.client.mixins.json:ClientWorldMixin from mod fabric-lifecycle-events-v1: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[01:12:39] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-lifecycle-events-v1.client.mixins.json:ClientWorldMixin from mod fabric-lifecycle-events-v1->@Inject::tickWorldAfterBlockEntities(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V doesn't use it's CallbackInfo +[01:12:39] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-lifecycle-events-v1.client.mixins.json:ClientWorldMixin from mod fabric-lifecycle-events-v1->@Inject::tickWorldAfterBlockEntities(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V has 0 override(s) in child classes +[01:12:39] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-lifecycle-events-v1.client.mixins.json:ClientWorldMixin from mod fabric-lifecycle-events-v1->@Inject::tickWorldAfterBlockEntities(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V won't be passed a CallbackInfo as a result +[01:12:39] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-lifecycle-events-v1.client.mixins.json:ClientWorldMixin from mod fabric-lifecycle-events-v1->@Inject::startWorldTick(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V doesn't use it's CallbackInfo +[01:12:39] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-lifecycle-events-v1.client.mixins.json:ClientWorldMixin from mod fabric-lifecycle-events-v1->@Inject::startWorldTick(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V has 0 override(s) in child classes +[01:12:39] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-lifecycle-events-v1.client.mixins.json:ClientWorldMixin from mod fabric-lifecycle-events-v1->@Inject::startWorldTick(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V won't be passed a CallbackInfo as a result +[01:12:39] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing elytra.ClientPlayerEntityMixin from fabric-entity-events-v1.client.mixins.json into net.minecraft.client.network.ClientPlayerEntity +[01:12:39] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-entity-events-v1.client.mixins.json:elytra.ClientPlayerEntityMixin from mod fabric-entity-events-v1: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[01:12:39] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-entity-events-v1.client.mixins.json:elytra.ClientPlayerEntityMixin from mod fabric-entity-events-v1->@Inject::injectElytraStart(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V doesn't use it's CallbackInfo +[01:12:39] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-entity-events-v1.client.mixins.json:elytra.ClientPlayerEntityMixin from mod fabric-entity-events-v1->@Inject::injectElytraStart(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V has 0 override(s) in child classes +[01:12:39] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-entity-events-v1.client.mixins.json:elytra.ClientPlayerEntityMixin from mod fabric-entity-events-v1->@Inject::injectElytraStart(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V won't be passed a CallbackInfo as a result +[01:12:39] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing SinglePreparationResourceReloaderMixin from fabric-resource-conditions-api-v1.mixins.json into net.minecraft.resource.SinglePreparationResourceReloader +[01:12:39] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-resource-conditions-api-v1.mixins.json:SinglePreparationResourceReloaderMixin from mod fabric-resource-conditions-api-v1: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[01:12:39] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-resource-conditions-api-v1.mixins.json:SinglePreparationResourceReloaderMixin from mod fabric-resource-conditions-api-v1->@Inject::applyResourceConditions(Lnet/minecraft/resource/ResourceManager;Lnet/minecraft/util/profiler/Profiler;Ljava/lang/Object;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V doesn't use it's CallbackInfo +[01:12:39] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-resource-conditions-api-v1.mixins.json:SinglePreparationResourceReloaderMixin from mod fabric-resource-conditions-api-v1->@Inject::applyResourceConditions(Lnet/minecraft/resource/ResourceManager;Lnet/minecraft/util/profiler/Profiler;Ljava/lang/Object;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V has 0 override(s) in child classes +[01:12:39] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-resource-conditions-api-v1.mixins.json:SinglePreparationResourceReloaderMixin from mod fabric-resource-conditions-api-v1->@Inject::applyResourceConditions(Lnet/minecraft/resource/ResourceManager;Lnet/minecraft/util/profiler/Profiler;Ljava/lang/Object;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V won't be passed a CallbackInfo as a result +[01:12:39] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing DefaultClientResourcePackProviderMixin from fabric-resource-loader-v0.client.mixins.json into net.minecraft.client.resource.DefaultClientResourcePackProvider +[01:12:39] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-resource-loader-v0.client.mixins.json:DefaultClientResourcePackProviderMixin from mod fabric-resource-loader-v0: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[01:12:39] [Render thread/DEBUG] (FabricLoader/Mixin) Renaming synthetic method lambda$onCreateVanillaBuiltinResourcePack$0(Lnet/minecraft/resource/ResourcePackProfile$PackFactory;Ljava/lang/String;Ljava/lang/String;)Lnet/minecraft/resource/ResourcePack; to md5f0bfc$fabric-resource-loader-v0$lambda$onCreateVanillaBuiltinResourcePack$0$0 in fabric-resource-loader-v0.client.mixins.json:DefaultClientResourcePackProviderMixin from mod fabric-resource-loader-v0 +[01:12:39] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing VanillaResourcePackProviderMixin from fabric-resource-loader-v0.client.mixins.json into net.minecraft.resource.VanillaResourcePackProvider +[01:12:39] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-resource-loader-v0.client.mixins.json:VanillaResourcePackProviderMixin from mod fabric-resource-loader-v0: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[01:12:39] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-resource-loader-v0.client.mixins.json:VanillaResourcePackProviderMixin from mod fabric-resource-loader-v0->@Inject::addBuiltinResourcePacks(Ljava/util/function/Consumer;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V doesn't use it's CallbackInfo +[01:12:39] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-resource-loader-v0.client.mixins.json:VanillaResourcePackProviderMixin from mod fabric-resource-loader-v0->@Inject::addBuiltinResourcePacks(Ljava/util/function/Consumer;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V has 0 override(s) in child classes +[01:12:39] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-resource-loader-v0.client.mixins.json:VanillaResourcePackProviderMixin from mod fabric-resource-loader-v0->@Inject::addBuiltinResourcePacks(Ljava/util/function/Consumer;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V won't be passed a CallbackInfo as a result +[01:12:40] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing ResourcePackManagerMixin from fabric-resource-loader-v0.mixins.json into net.minecraft.resource.ResourcePackManager +[01:12:40] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-resource-loader-v0.mixins.json:ResourcePackManagerMixin from mod fabric-resource-loader-v0: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[01:12:40] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-resource-loader-v0.mixins.json:ResourcePackManagerMixin from mod fabric-resource-loader-v0->@Inject::construct([Lnet/minecraft/resource/ResourcePackProvider;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V doesn't use it's CallbackInfo +[01:12:40] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-resource-loader-v0.mixins.json:ResourcePackManagerMixin from mod fabric-resource-loader-v0->@Inject::construct([Lnet/minecraft/resource/ResourcePackProvider;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V has 0 override(s) in child classes +[01:12:40] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-resource-loader-v0.mixins.json:ResourcePackManagerMixin from mod fabric-resource-loader-v0->@Inject::construct([Lnet/minecraft/resource/ResourcePackProvider;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V won't be passed a CallbackInfo as a result +[01:12:40] [Render thread/INFO] (com.mojang.authlib.yggdrasil.YggdrasilAuthenticationService) Environment: authHost='https://authserver.mojang.com', accountsHost='https://api.mojang.com', sessionHost='https://sessionserver.mojang.com', servicesHost='https://api.minecraftservices.com', name='PROD' +[01:12:40] [Render thread/DEBUG] (com.mojang.authlib.minecraft.client.MinecraftClient) Connecting to https://api.minecraftservices.com/player/attributes +[01:12:40] [Render thread/ERROR] (net.minecraft.client.MinecraftClient) Failed to verify authentication +com.mojang.authlib.exceptions.InvalidCredentialsException: Status: 401 + at com.mojang.authlib.exceptions.MinecraftClientHttpException.toAuthenticationException(MinecraftClientHttpException.java:56) ~[authlib-3.18.38.jar:?] + at com.mojang.authlib.yggdrasil.YggdrasilUserApiService.fetchProperties(YggdrasilUserApiService.java:156) ~[authlib-3.18.38.jar:?] + at com.mojang.authlib.yggdrasil.YggdrasilUserApiService.(YggdrasilUserApiService.java:55) ~[authlib-3.18.38.jar:?] + at com.mojang.authlib.yggdrasil.YggdrasilAuthenticationService.createUserApiService(YggdrasilAuthenticationService.java:161) ~[authlib-3.18.38.jar:?] + at net.minecraft.client.MinecraftClient.createUserApiService(MinecraftClient.java:732) ~[minecraft-merged-9d06bd1931-1.19.4-net.fabricmc.yarn.1_19_4.1.19.4+build.2-v2.jar:?] + at net.minecraft.client.MinecraftClient.(MinecraftClient.java:440) ~[minecraft-merged-9d06bd1931-1.19.4-net.fabricmc.yarn.1_19_4.1.19.4+build.2-v2.jar:?] + at net.minecraft.client.main.Main.main(Main.java:198) ~[minecraft-merged-9d06bd1931-1.19.4-net.fabricmc.yarn.1_19_4.1.19.4+build.2-v2.jar:?] + at net.fabricmc.loader.impl.game.minecraft.MinecraftGameProvider.launch(MinecraftGameProvider.java:470) ~[fabric-loader-0.15.2.jar:?] + at net.fabricmc.loader.impl.launch.knot.Knot.launch(Knot.java:74) ~[fabric-loader-0.15.2.jar:?] + at net.fabricmc.loader.impl.launch.knot.KnotClient.main(KnotClient.java:23) ~[fabric-loader-0.15.2.jar:?] + at net.fabricmc.devlaunchinjector.Main.main(Main.java:86) ~[dev-launch-injector-0.2.1+build.8.jar:?] +Caused by: com.mojang.authlib.exceptions.MinecraftClientHttpException: Status: 401 + at com.mojang.authlib.minecraft.client.MinecraftClient.readInputStream(MinecraftClient.java:85) ~[authlib-3.18.38.jar:?] + at com.mojang.authlib.minecraft.client.MinecraftClient.get(MinecraftClient.java:48) ~[authlib-3.18.38.jar:?] + at com.mojang.authlib.yggdrasil.YggdrasilUserApiService.fetchProperties(YggdrasilUserApiService.java:129) ~[authlib-3.18.38.jar:?] + ... 9 more +[01:12:40] [Render thread/INFO] (net.minecraft.client.MinecraftClient) Setting user: Player610 +[01:12:40] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing KeyBindingAccessor from fabric-key-binding-api-v1.mixins.json into net.minecraft.client.option.KeyBinding +[01:12:40] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-key-binding-api-v1.mixins.json:KeyBindingAccessor from mod fabric-key-binding-api-v1: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[01:12:40] [Render thread/DEBUG] (FabricLoader/Mixin) Renaming @Accessor method fabric_getCategoryMap()Ljava/util/Map; to fabric_getCategoryMap$fabric-key-binding-api-v1_$md$5f0bfc$0 in fabric-key-binding-api-v1.mixins.json:KeyBindingAccessor from mod fabric-key-binding-api-v1 +[01:12:40] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing input.MixinKeyBinding from client.mixins.json into net.minecraft.client.option.KeyBinding +[01:12:40] [Render thread/DEBUG] (FabricLoader/Mixin) client.mixins.json:input.MixinKeyBinding from mod testclient: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_8 supports class version 52) +[01:12:40] [Render thread/DEBUG] (FabricLoader/Entrypoint) Iterating over entrypoint 'main' +[01:12:40] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing LootTableBuilderMixin from fabric-loot-api-v2.mixins.json into net.minecraft.loot.LootTable$Builder +[01:12:40] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-loot-api-v2.mixins.json:LootTableBuilderMixin from mod fabric-loot-api-v2: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_8 supports class version 52) +[01:12:40] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing KeyedResourceReloadListenerMixin from fabric-resource-loader-v0.mixins.json into net.minecraft.loot.LootManager +[01:12:40] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-resource-loader-v0.mixins.json:KeyedResourceReloadListenerMixin from mod fabric-resource-loader-v0: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[01:12:40] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing LootManagerMixin from fabric-loot-api-v2.mixins.json into net.minecraft.loot.LootManager +[01:12:40] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-loot-api-v2.mixins.json:LootManagerMixin from mod fabric-loot-api-v2: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_8 supports class version 52) +[01:12:40] [Render thread/DEBUG] (FabricLoader/Mixin) Renaming synthetic method lambda$apply$0(Lnet/minecraft/resource/ResourceManager;Lcom/google/common/collect/ImmutableMap$Builder;Lnet/minecraft/util/Identifier;Lnet/minecraft/loot/LootTable;)V to md5f0bfc$fabric-loot-api-v2$lambda$apply$0$0 in fabric-loot-api-v2.mixins.json:LootManagerMixin from mod fabric-loot-api-v2 +[01:12:40] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-loot-api-v2.mixins.json:LootManagerMixin from mod fabric-loot-api-v2->@Inject::apply(Ljava/util/Map;Lnet/minecraft/resource/ResourceManager;Lnet/minecraft/util/profiler/Profiler;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V doesn't use it's CallbackInfo +[01:12:40] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-loot-api-v2.mixins.json:LootManagerMixin from mod fabric-loot-api-v2->@Inject::apply(Ljava/util/Map;Lnet/minecraft/resource/ResourceManager;Lnet/minecraft/util/profiler/Profiler;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V has 0 override(s) in child classes +[01:12:40] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-loot-api-v2.mixins.json:LootManagerMixin from mod fabric-loot-api-v2->@Inject::apply(Ljava/util/Map;Lnet/minecraft/resource/ResourceManager;Lnet/minecraft/util/profiler/Profiler;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V won't be passed a CallbackInfo as a result +[01:12:40] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing JsonDataLoaderMixin from fabric-resource-conditions-api-v1.mixins.json into net.minecraft.resource.JsonDataLoader +[01:12:40] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-resource-conditions-api-v1.mixins.json:JsonDataLoaderMixin from mod fabric-resource-conditions-api-v1: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[01:12:40] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing LootTableMixin from fabric-loot-tables-v1.mixins.json into net.minecraft.loot.LootTable +[01:12:40] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-loot-tables-v1.mixins.json:LootTableMixin from mod fabric-loot-tables-v1: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[01:12:40] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing LootTableAccessor from fabric-loot-api-v2.mixins.json into net.minecraft.loot.LootTable +[01:12:40] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-loot-api-v2.mixins.json:LootTableAccessor from mod fabric-loot-api-v2: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_8 supports class version 52) +[01:12:40] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing MinecraftServerMixin from fabric-lifecycle-events-v1.mixins.json into net.minecraft.server.MinecraftServer +[01:12:40] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-lifecycle-events-v1.mixins.json:MinecraftServerMixin from mod fabric-lifecycle-events-v1: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[01:12:40] [Render thread/DEBUG] (FabricLoader/Mixin) Renaming synthetic method lambda$endResourceReload$0(Ljava/lang/Void;Ljava/lang/Throwable;)Ljava/lang/Void; to md5f0bfc$fabric-lifecycle-events-v1$lambda$endResourceReload$0$0 in fabric-lifecycle-events-v1.mixins.json:MinecraftServerMixin from mod fabric-lifecycle-events-v1 +[01:12:40] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing MinecraftServerMixin from fabric-resource-loader-v0.mixins.json into net.minecraft.server.MinecraftServer +[01:12:40] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-resource-loader-v0.mixins.json:MinecraftServerMixin from mod fabric-resource-loader-v0: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[01:12:40] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing modification.MinecraftServerMixin from fabric-biome-api-v1.mixins.json into net.minecraft.server.MinecraftServer +[01:12:40] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-biome-api-v1.mixins.json:modification.MinecraftServerMixin from mod fabric-biome-api-v1: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[01:12:40] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing MinecraftServerMixin from fabric-gametest-api-v1.mixins.json into net.minecraft.server.MinecraftServer +[01:12:40] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-gametest-api-v1.mixins.json:MinecraftServerMixin from mod fabric-gametest-api-v1: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[01:12:40] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing MinecraftServerMixin from fabric-registry-sync-v0.mixins.json into net.minecraft.server.MinecraftServer +[01:12:40] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-registry-sync-v0.mixins.json:MinecraftServerMixin from mod fabric-registry-sync-v0: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[01:12:40] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing MinecraftServerMixin from fabric-message-api-v1.mixins.json into net.minecraft.server.MinecraftServer +[01:12:40] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-message-api-v1.mixins.json:MinecraftServerMixin from mod fabric-message-api-v1: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[01:12:40] [Render thread/DEBUG] (FabricLoader/Mixin) Renaming synthetic method lambda$onGetChatDecorator$1(Lnet/minecraft/network/message/MessageDecorator;Lnet/minecraft/server/network/ServerPlayerEntity;Lnet/minecraft/text/Text;)Ljava/util/concurrent/CompletableFuture; to md5f0bfc$fabric-message-api-v1$lambda$onGetChatDecorator$1$1 in fabric-message-api-v1.mixins.json:MinecraftServerMixin from mod fabric-message-api-v1 +[01:12:40] [Render thread/DEBUG] (FabricLoader/Mixin) Renaming synthetic method lambda$onGetChatDecorator$0(Lnet/minecraft/server/network/ServerPlayerEntity;Lnet/minecraft/text/Text;)Ljava/util/concurrent/CompletionStage; to md5f0bfc$fabric-message-api-v1$lambda$onGetChatDecorator$0$2 in fabric-message-api-v1.mixins.json:MinecraftServerMixin from mod fabric-message-api-v1 +[01:12:40] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-lifecycle-events-v1.mixins.json:MinecraftServerMixin from mod fabric-lifecycle-events-v1->@Inject::beforeSetupServer(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V doesn't use it's CallbackInfo +[01:12:40] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-lifecycle-events-v1.mixins.json:MinecraftServerMixin from mod fabric-lifecycle-events-v1->@Inject::beforeSetupServer(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V has 0 override(s) in child classes +[01:12:40] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-lifecycle-events-v1.mixins.json:MinecraftServerMixin from mod fabric-lifecycle-events-v1->@Inject::beforeSetupServer(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V won't be passed a CallbackInfo as a result +[01:12:40] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-lifecycle-events-v1.mixins.json:MinecraftServerMixin from mod fabric-lifecycle-events-v1->@Inject::afterSetupServer(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V doesn't use it's CallbackInfo +[01:12:40] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-lifecycle-events-v1.mixins.json:MinecraftServerMixin from mod fabric-lifecycle-events-v1->@Inject::afterSetupServer(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V has 0 override(s) in child classes +[01:12:40] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-lifecycle-events-v1.mixins.json:MinecraftServerMixin from mod fabric-lifecycle-events-v1->@Inject::afterSetupServer(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V won't be passed a CallbackInfo as a result +[01:12:40] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-lifecycle-events-v1.mixins.json:MinecraftServerMixin from mod fabric-lifecycle-events-v1->@Inject::beforeShutdownServer(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V doesn't use it's CallbackInfo +[01:12:40] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-lifecycle-events-v1.mixins.json:MinecraftServerMixin from mod fabric-lifecycle-events-v1->@Inject::beforeShutdownServer(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V has 0 override(s) in child classes +[01:12:40] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-lifecycle-events-v1.mixins.json:MinecraftServerMixin from mod fabric-lifecycle-events-v1->@Inject::beforeShutdownServer(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V won't be passed a CallbackInfo as a result +[01:12:40] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-lifecycle-events-v1.mixins.json:MinecraftServerMixin from mod fabric-lifecycle-events-v1->@Inject::afterShutdownServer(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V doesn't use it's CallbackInfo +[01:12:40] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-lifecycle-events-v1.mixins.json:MinecraftServerMixin from mod fabric-lifecycle-events-v1->@Inject::afterShutdownServer(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V has 0 override(s) in child classes +[01:12:40] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-lifecycle-events-v1.mixins.json:MinecraftServerMixin from mod fabric-lifecycle-events-v1->@Inject::afterShutdownServer(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V won't be passed a CallbackInfo as a result +[01:12:40] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-lifecycle-events-v1.mixins.json:MinecraftServerMixin from mod fabric-lifecycle-events-v1->@Inject::onStartTick(Ljava/util/function/BooleanSupplier;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V doesn't use it's CallbackInfo +[01:12:40] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-lifecycle-events-v1.mixins.json:MinecraftServerMixin from mod fabric-lifecycle-events-v1->@Inject::onStartTick(Ljava/util/function/BooleanSupplier;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V has 0 override(s) in child classes +[01:12:40] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-lifecycle-events-v1.mixins.json:MinecraftServerMixin from mod fabric-lifecycle-events-v1->@Inject::onStartTick(Ljava/util/function/BooleanSupplier;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V won't be passed a CallbackInfo as a result +[01:12:40] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-lifecycle-events-v1.mixins.json:MinecraftServerMixin from mod fabric-lifecycle-events-v1->@Inject::onEndTick(Ljava/util/function/BooleanSupplier;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V doesn't use it's CallbackInfo +[01:12:40] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-lifecycle-events-v1.mixins.json:MinecraftServerMixin from mod fabric-lifecycle-events-v1->@Inject::onEndTick(Ljava/util/function/BooleanSupplier;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V has 0 override(s) in child classes +[01:12:40] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-lifecycle-events-v1.mixins.json:MinecraftServerMixin from mod fabric-lifecycle-events-v1->@Inject::onEndTick(Ljava/util/function/BooleanSupplier;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V won't be passed a CallbackInfo as a result +[01:12:40] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-lifecycle-events-v1.mixins.json:MinecraftServerMixin from mod fabric-lifecycle-events-v1->@Inject::onUnloadWorldAtShutdown(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;Ljava/util/Iterator;Lnet/minecraft/server/world/ServerWorld;)V doesn't use it's CallbackInfo +[01:12:40] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-lifecycle-events-v1.mixins.json:MinecraftServerMixin from mod fabric-lifecycle-events-v1->@Inject::onUnloadWorldAtShutdown(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;Ljava/util/Iterator;Lnet/minecraft/server/world/ServerWorld;)V has 0 override(s) in child classes +[01:12:40] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-lifecycle-events-v1.mixins.json:MinecraftServerMixin from mod fabric-lifecycle-events-v1->@Inject::onUnloadWorldAtShutdown(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;Ljava/util/Iterator;Lnet/minecraft/server/world/ServerWorld;)V won't be passed a CallbackInfo as a result +[01:12:40] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-lifecycle-events-v1.mixins.json:MinecraftServerMixin from mod fabric-lifecycle-events-v1->@Inject::startResourceReload(Ljava/util/Collection;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V doesn't use it's CallbackInfoReturnable +[01:12:40] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-lifecycle-events-v1.mixins.json:MinecraftServerMixin from mod fabric-lifecycle-events-v1->@Inject::startResourceReload(Ljava/util/Collection;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V has 0 override(s) in child classes +[01:12:40] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-lifecycle-events-v1.mixins.json:MinecraftServerMixin from mod fabric-lifecycle-events-v1->@Inject::startResourceReload(Ljava/util/Collection;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V won't be passed a CallbackInfoReturnable as a result +[01:12:40] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-lifecycle-events-v1.mixins.json:MinecraftServerMixin from mod fabric-lifecycle-events-v1->@Inject::endResourceReload(Ljava/util/Collection;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V does use it's CallbackInfoReturnable +[01:12:40] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-biome-api-v1.mixins.json:modification.MinecraftServerMixin from mod fabric-biome-api-v1->@Inject::finalizeWorldGen(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V doesn't use it's CallbackInfo +[01:12:40] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-biome-api-v1.mixins.json:modification.MinecraftServerMixin from mod fabric-biome-api-v1->@Inject::finalizeWorldGen(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V has 0 override(s) in child classes +[01:12:40] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-biome-api-v1.mixins.json:modification.MinecraftServerMixin from mod fabric-biome-api-v1->@Inject::finalizeWorldGen(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V won't be passed a CallbackInfo as a result +[01:12:40] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-gametest-api-v1.mixins.json:MinecraftServerMixin from mod fabric-gametest-api-v1->@Inject::tickWorlds(Ljava/util/function/BooleanSupplier;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V doesn't use it's CallbackInfo +[01:12:40] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-gametest-api-v1.mixins.json:MinecraftServerMixin from mod fabric-gametest-api-v1->@Inject::tickWorlds(Ljava/util/function/BooleanSupplier;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V has 0 override(s) in child classes +[01:12:40] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-gametest-api-v1.mixins.json:MinecraftServerMixin from mod fabric-gametest-api-v1->@Inject::tickWorlds(Ljava/util/function/BooleanSupplier;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V won't be passed a CallbackInfo as a result +[01:12:40] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-registry-sync-v0.mixins.json:MinecraftServerMixin from mod fabric-registry-sync-v0->@Inject::beforeSetupServer(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V doesn't use it's CallbackInfo +[01:12:40] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-registry-sync-v0.mixins.json:MinecraftServerMixin from mod fabric-registry-sync-v0->@Inject::beforeSetupServer(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V has 0 override(s) in child classes +[01:12:40] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-registry-sync-v0.mixins.json:MinecraftServerMixin from mod fabric-registry-sync-v0->@Inject::beforeSetupServer(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V won't be passed a CallbackInfo as a result +[01:12:40] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-message-api-v1.mixins.json:MinecraftServerMixin from mod fabric-message-api-v1->@Inject::onGetChatDecorator(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V does use it's CallbackInfoReturnable +[01:12:40] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing ServerPlayNetworkHandlerMixin from fabric-networking-api-v1.mixins.json into net.minecraft.server.network.ServerPlayNetworkHandler +[01:12:40] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-networking-api-v1.mixins.json:ServerPlayNetworkHandlerMixin from mod fabric-networking-api-v1: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[01:12:40] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing accessor.ServerPlayNetworkHandlerAccessor from fabric-networking-api-v1.mixins.json into net.minecraft.server.network.ServerPlayNetworkHandler +[01:12:40] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-networking-api-v1.mixins.json:accessor.ServerPlayNetworkHandlerAccessor from mod fabric-networking-api-v1: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[01:12:40] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-networking-api-v1.mixins.json:ServerPlayNetworkHandlerMixin from mod fabric-networking-api-v1->@Inject::initAddon(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V doesn't use it's CallbackInfo +[01:12:40] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-networking-api-v1.mixins.json:ServerPlayNetworkHandlerMixin from mod fabric-networking-api-v1->@Inject::initAddon(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V has 0 override(s) in child classes +[01:12:40] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-networking-api-v1.mixins.json:ServerPlayNetworkHandlerMixin from mod fabric-networking-api-v1->@Inject::initAddon(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V won't be passed a CallbackInfo as a result +[01:12:40] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-networking-api-v1.mixins.json:ServerPlayNetworkHandlerMixin from mod fabric-networking-api-v1->@Inject::handleCustomPayloadReceivedAsync(Lnet/minecraft/network/packet/c2s/play/CustomPayloadC2SPacket;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V does use it's CallbackInfo +[01:12:40] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-networking-api-v1.mixins.json:ServerPlayNetworkHandlerMixin from mod fabric-networking-api-v1->@Inject::handleDisconnection(Lnet/minecraft/text/Text;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V doesn't use it's CallbackInfo +[01:12:40] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-networking-api-v1.mixins.json:ServerPlayNetworkHandlerMixin from mod fabric-networking-api-v1->@Inject::handleDisconnection(Lnet/minecraft/text/Text;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V has 0 override(s) in child classes +[01:12:40] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-networking-api-v1.mixins.json:ServerPlayNetworkHandlerMixin from mod fabric-networking-api-v1->@Inject::handleDisconnection(Lnet/minecraft/text/Text;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V won't be passed a CallbackInfo as a result +[01:12:40] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing ServerLoginNetworkHandlerMixin from fabric-networking-api-v1.mixins.json into net.minecraft.server.network.ServerLoginNetworkHandler +[01:12:40] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-networking-api-v1.mixins.json:ServerLoginNetworkHandlerMixin from mod fabric-networking-api-v1: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[01:12:40] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing accessor.ServerLoginNetworkHandlerAccessor from fabric-networking-api-v1.mixins.json into net.minecraft.server.network.ServerLoginNetworkHandler +[01:12:40] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-networking-api-v1.mixins.json:accessor.ServerLoginNetworkHandlerAccessor from mod fabric-networking-api-v1: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[01:12:40] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-networking-api-v1.mixins.json:ServerLoginNetworkHandlerMixin from mod fabric-networking-api-v1->@Inject::initAddon(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V doesn't use it's CallbackInfo +[01:12:40] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-networking-api-v1.mixins.json:ServerLoginNetworkHandlerMixin from mod fabric-networking-api-v1->@Inject::initAddon(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V has 0 override(s) in child classes +[01:12:40] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-networking-api-v1.mixins.json:ServerLoginNetworkHandlerMixin from mod fabric-networking-api-v1->@Inject::initAddon(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V won't be passed a CallbackInfo as a result +[01:12:40] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-networking-api-v1.mixins.json:ServerLoginNetworkHandlerMixin from mod fabric-networking-api-v1->@Inject::handleCustomPayloadReceivedAsync(Lnet/minecraft/network/packet/c2s/login/LoginQueryResponseC2SPacket;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V does use it's CallbackInfo +[01:12:40] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-networking-api-v1.mixins.json:ServerLoginNetworkHandlerMixin from mod fabric-networking-api-v1->@Inject::handleDisconnection(Lnet/minecraft/text/Text;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V doesn't use it's CallbackInfo +[01:12:40] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-networking-api-v1.mixins.json:ServerLoginNetworkHandlerMixin from mod fabric-networking-api-v1->@Inject::handleDisconnection(Lnet/minecraft/text/Text;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V has 0 override(s) in child classes +[01:12:40] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-networking-api-v1.mixins.json:ServerLoginNetworkHandlerMixin from mod fabric-networking-api-v1->@Inject::handleDisconnection(Lnet/minecraft/text/Text;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V won't be passed a CallbackInfo as a result +[01:12:40] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-networking-api-v1.mixins.json:ServerLoginNetworkHandlerMixin from mod fabric-networking-api-v1->@Inject::handlePlayTransitionNormal(Lnet/minecraft/server/network/ServerPlayerEntity;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V doesn't use it's CallbackInfo +[01:12:40] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-networking-api-v1.mixins.json:ServerLoginNetworkHandlerMixin from mod fabric-networking-api-v1->@Inject::handlePlayTransitionNormal(Lnet/minecraft/server/network/ServerPlayerEntity;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V has 0 override(s) in child classes +[01:12:40] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-networking-api-v1.mixins.json:ServerLoginNetworkHandlerMixin from mod fabric-networking-api-v1->@Inject::handlePlayTransitionNormal(Lnet/minecraft/server/network/ServerPlayerEntity;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V won't be passed a CallbackInfo as a result +[01:12:40] [Render thread/DEBUG] (FabricLoader/Entrypoint) Iterating over entrypoint 'client' +[01:12:40] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing ClientPlayNetworkHandlerMixin from fabric-message-api-v1.client.mixins.json into net.minecraft.client.network.ClientPlayNetworkHandler +[01:12:40] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing ClientPlayNetworkHandlerMixin from fabric-networking-api-v1.client.mixins.json into net.minecraft.client.network.ClientPlayNetworkHandler +[01:12:40] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-networking-api-v1.client.mixins.json:ClientPlayNetworkHandlerMixin from mod fabric-networking-api-v1: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[01:12:40] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing ClientPlayNetworkHandlerMixin from fabric-lifecycle-events-v1.client.mixins.json into net.minecraft.client.network.ClientPlayNetworkHandler +[01:12:40] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-lifecycle-events-v1.client.mixins.json:ClientPlayNetworkHandlerMixin from mod fabric-lifecycle-events-v1: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[01:12:40] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing ClientPlayNetworkHandlerMixin from fabric-command-api-v2.client.mixins.json into net.minecraft.client.network.ClientPlayNetworkHandler +[01:12:40] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-command-api-v2.client.mixins.json:ClientPlayNetworkHandlerMixin from mod fabric-command-api-v2: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[01:12:40] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-message-api-v1.client.mixins.json:ClientPlayNetworkHandlerMixin from mod fabric-message-api-v1->@Inject::fabric_allowSendChatMessage(Ljava/lang/String;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V does use it's CallbackInfo +[01:12:40] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-message-api-v1.client.mixins.json:ClientPlayNetworkHandlerMixin from mod fabric-message-api-v1->@Inject::fabric_allowSendCommandMessage(Ljava/lang/String;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V does use it's CallbackInfo +[01:12:40] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-networking-api-v1.client.mixins.json:ClientPlayNetworkHandlerMixin from mod fabric-networking-api-v1->@Inject::initAddon(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V doesn't use it's CallbackInfo +[01:12:40] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-networking-api-v1.client.mixins.json:ClientPlayNetworkHandlerMixin from mod fabric-networking-api-v1->@Inject::initAddon(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V has 0 override(s) in child classes +[01:12:40] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-networking-api-v1.client.mixins.json:ClientPlayNetworkHandlerMixin from mod fabric-networking-api-v1->@Inject::initAddon(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V won't be passed a CallbackInfo as a result +[01:12:40] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-networking-api-v1.client.mixins.json:ClientPlayNetworkHandlerMixin from mod fabric-networking-api-v1->@Inject::handleServerPlayReady(Lnet/minecraft/network/packet/s2c/play/GameJoinS2CPacket;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V doesn't use it's CallbackInfo +[01:12:40] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-networking-api-v1.client.mixins.json:ClientPlayNetworkHandlerMixin from mod fabric-networking-api-v1->@Inject::handleServerPlayReady(Lnet/minecraft/network/packet/s2c/play/GameJoinS2CPacket;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V has 0 override(s) in child classes +[01:12:40] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-networking-api-v1.client.mixins.json:ClientPlayNetworkHandlerMixin from mod fabric-networking-api-v1->@Inject::handleServerPlayReady(Lnet/minecraft/network/packet/s2c/play/GameJoinS2CPacket;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V won't be passed a CallbackInfo as a result +[01:12:40] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-networking-api-v1.client.mixins.json:ClientPlayNetworkHandlerMixin from mod fabric-networking-api-v1->@Inject::handleCustomPayload(Lnet/minecraft/network/packet/s2c/play/CustomPayloadS2CPacket;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V does use it's CallbackInfo +[01:12:40] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-networking-api-v1.client.mixins.json:ClientPlayNetworkHandlerMixin from mod fabric-networking-api-v1->@Inject::handleDisconnection(Lnet/minecraft/text/Text;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V doesn't use it's CallbackInfo +[01:12:40] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-networking-api-v1.client.mixins.json:ClientPlayNetworkHandlerMixin from mod fabric-networking-api-v1->@Inject::handleDisconnection(Lnet/minecraft/text/Text;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V has 0 override(s) in child classes +[01:12:40] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-networking-api-v1.client.mixins.json:ClientPlayNetworkHandlerMixin from mod fabric-networking-api-v1->@Inject::handleDisconnection(Lnet/minecraft/text/Text;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V won't be passed a CallbackInfo as a result +[01:12:40] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-lifecycle-events-v1.client.mixins.json:ClientPlayNetworkHandlerMixin from mod fabric-lifecycle-events-v1->@Inject::onPlayerRespawn(Lnet/minecraft/network/packet/s2c/play/PlayerRespawnS2CPacket;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V doesn't use it's CallbackInfo +[01:12:40] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-lifecycle-events-v1.client.mixins.json:ClientPlayNetworkHandlerMixin from mod fabric-lifecycle-events-v1->@Inject::onPlayerRespawn(Lnet/minecraft/network/packet/s2c/play/PlayerRespawnS2CPacket;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V has 0 override(s) in child classes +[01:12:40] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-lifecycle-events-v1.client.mixins.json:ClientPlayNetworkHandlerMixin from mod fabric-lifecycle-events-v1->@Inject::onPlayerRespawn(Lnet/minecraft/network/packet/s2c/play/PlayerRespawnS2CPacket;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V won't be passed a CallbackInfo as a result +[01:12:40] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-lifecycle-events-v1.client.mixins.json:ClientPlayNetworkHandlerMixin from mod fabric-lifecycle-events-v1->@Inject::onGameJoin(Lnet/minecraft/network/packet/s2c/play/GameJoinS2CPacket;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V doesn't use it's CallbackInfo +[01:12:40] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-lifecycle-events-v1.client.mixins.json:ClientPlayNetworkHandlerMixin from mod fabric-lifecycle-events-v1->@Inject::onGameJoin(Lnet/minecraft/network/packet/s2c/play/GameJoinS2CPacket;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V has 0 override(s) in child classes +[01:12:40] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-lifecycle-events-v1.client.mixins.json:ClientPlayNetworkHandlerMixin from mod fabric-lifecycle-events-v1->@Inject::onGameJoin(Lnet/minecraft/network/packet/s2c/play/GameJoinS2CPacket;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V won't be passed a CallbackInfo as a result +[01:12:40] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-lifecycle-events-v1.client.mixins.json:ClientPlayNetworkHandlerMixin from mod fabric-lifecycle-events-v1->@Inject::onClearWorld(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V doesn't use it's CallbackInfo +[01:12:40] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-lifecycle-events-v1.client.mixins.json:ClientPlayNetworkHandlerMixin from mod fabric-lifecycle-events-v1->@Inject::onClearWorld(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V has 0 override(s) in child classes +[01:12:40] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-lifecycle-events-v1.client.mixins.json:ClientPlayNetworkHandlerMixin from mod fabric-lifecycle-events-v1->@Inject::onClearWorld(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V won't be passed a CallbackInfo as a result +[01:12:40] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-lifecycle-events-v1.client.mixins.json:ClientPlayNetworkHandlerMixin from mod fabric-lifecycle-events-v1->@Inject::hookOnSynchronizeTags(Lnet/minecraft/network/packet/s2c/play/SynchronizeTagsS2CPacket;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V doesn't use it's CallbackInfo +[01:12:40] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-lifecycle-events-v1.client.mixins.json:ClientPlayNetworkHandlerMixin from mod fabric-lifecycle-events-v1->@Inject::hookOnSynchronizeTags(Lnet/minecraft/network/packet/s2c/play/SynchronizeTagsS2CPacket;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V has 0 override(s) in child classes +[01:12:40] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-lifecycle-events-v1.client.mixins.json:ClientPlayNetworkHandlerMixin from mod fabric-lifecycle-events-v1->@Inject::hookOnSynchronizeTags(Lnet/minecraft/network/packet/s2c/play/SynchronizeTagsS2CPacket;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V won't be passed a CallbackInfo as a result +[01:12:40] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-command-api-v2.client.mixins.json:ClientPlayNetworkHandlerMixin from mod fabric-command-api-v2->@Inject::onGameJoin(Lnet/minecraft/network/packet/s2c/play/GameJoinS2CPacket;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V doesn't use it's CallbackInfo +[01:12:40] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-command-api-v2.client.mixins.json:ClientPlayNetworkHandlerMixin from mod fabric-command-api-v2->@Inject::onGameJoin(Lnet/minecraft/network/packet/s2c/play/GameJoinS2CPacket;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V has 0 override(s) in child classes +[01:12:40] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-command-api-v2.client.mixins.json:ClientPlayNetworkHandlerMixin from mod fabric-command-api-v2->@Inject::onGameJoin(Lnet/minecraft/network/packet/s2c/play/GameJoinS2CPacket;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V won't be passed a CallbackInfo as a result +[01:12:40] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-command-api-v2.client.mixins.json:ClientPlayNetworkHandlerMixin from mod fabric-command-api-v2->@Inject::onOnCommandTree(Lnet/minecraft/network/packet/s2c/play/CommandTreeS2CPacket;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V doesn't use it's CallbackInfo +[01:12:40] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-command-api-v2.client.mixins.json:ClientPlayNetworkHandlerMixin from mod fabric-command-api-v2->@Inject::onOnCommandTree(Lnet/minecraft/network/packet/s2c/play/CommandTreeS2CPacket;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V has 0 override(s) in child classes +[01:12:40] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-command-api-v2.client.mixins.json:ClientPlayNetworkHandlerMixin from mod fabric-command-api-v2->@Inject::onOnCommandTree(Lnet/minecraft/network/packet/s2c/play/CommandTreeS2CPacket;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V won't be passed a CallbackInfo as a result +[01:12:40] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-command-api-v2.client.mixins.json:ClientPlayNetworkHandlerMixin from mod fabric-command-api-v2->@Inject::onSendCommand(Ljava/lang/String;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V does use it's CallbackInfoReturnable +[01:12:40] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-command-api-v2.client.mixins.json:ClientPlayNetworkHandlerMixin from mod fabric-command-api-v2->@Inject::onSendCommand(Ljava/lang/String;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V does use it's CallbackInfo +[01:12:40] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing accessor.ClientLoginNetworkHandlerAccessor from fabric-networking-api-v1.client.mixins.json into net.minecraft.client.network.ClientLoginNetworkHandler +[01:12:40] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-networking-api-v1.client.mixins.json:accessor.ClientLoginNetworkHandlerAccessor from mod fabric-networking-api-v1: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[01:12:40] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing ClientLoginNetworkHandlerMixin from fabric-networking-api-v1.client.mixins.json into net.minecraft.client.network.ClientLoginNetworkHandler +[01:12:40] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-networking-api-v1.client.mixins.json:ClientLoginNetworkHandlerMixin from mod fabric-networking-api-v1: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[01:12:40] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-networking-api-v1.client.mixins.json:ClientLoginNetworkHandlerMixin from mod fabric-networking-api-v1->@Inject::initAddon(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V doesn't use it's CallbackInfo +[01:12:40] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-networking-api-v1.client.mixins.json:ClientLoginNetworkHandlerMixin from mod fabric-networking-api-v1->@Inject::initAddon(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V has 0 override(s) in child classes +[01:12:40] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-networking-api-v1.client.mixins.json:ClientLoginNetworkHandlerMixin from mod fabric-networking-api-v1->@Inject::initAddon(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V won't be passed a CallbackInfo as a result +[01:12:40] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-networking-api-v1.client.mixins.json:ClientLoginNetworkHandlerMixin from mod fabric-networking-api-v1->@Inject::handleQueryRequest(Lnet/minecraft/network/packet/s2c/login/LoginQueryRequestS2CPacket;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V does use it's CallbackInfo +[01:12:40] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-networking-api-v1.client.mixins.json:ClientLoginNetworkHandlerMixin from mod fabric-networking-api-v1->@Inject::invokeLoginDisconnectEvent(Lnet/minecraft/text/Text;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V doesn't use it's CallbackInfo +[01:12:40] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-networking-api-v1.client.mixins.json:ClientLoginNetworkHandlerMixin from mod fabric-networking-api-v1->@Inject::invokeLoginDisconnectEvent(Lnet/minecraft/text/Text;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V has 0 override(s) in child classes +[01:12:40] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-networking-api-v1.client.mixins.json:ClientLoginNetworkHandlerMixin from mod fabric-networking-api-v1->@Inject::invokeLoginDisconnectEvent(Lnet/minecraft/text/Text;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V won't be passed a CallbackInfo as a result +[01:12:40] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-networking-api-v1.client.mixins.json:ClientLoginNetworkHandlerMixin from mod fabric-networking-api-v1->@Inject::handlePlayTransition(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V doesn't use it's CallbackInfo +[01:12:40] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-networking-api-v1.client.mixins.json:ClientLoginNetworkHandlerMixin from mod fabric-networking-api-v1->@Inject::handlePlayTransition(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V has 0 override(s) in child classes +[01:12:40] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-networking-api-v1.client.mixins.json:ClientLoginNetworkHandlerMixin from mod fabric-networking-api-v1->@Inject::handlePlayTransition(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V won't be passed a CallbackInfo as a result +[01:12:40] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing ClientConnectionMixin from fabric-networking-api-v1.mixins.json into net.minecraft.network.ClientConnection +[01:12:40] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-networking-api-v1.mixins.json:ClientConnectionMixin from mod fabric-networking-api-v1: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[01:12:41] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-networking-api-v1.mixins.json:ClientConnectionMixin from mod fabric-networking-api-v1->@Inject::initAddedFields(Lnet/minecraft/network/NetworkSide;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V doesn't use it's CallbackInfo +[01:12:41] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-networking-api-v1.mixins.json:ClientConnectionMixin from mod fabric-networking-api-v1->@Inject::initAddedFields(Lnet/minecraft/network/NetworkSide;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V has 0 override(s) in child classes +[01:12:41] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-networking-api-v1.mixins.json:ClientConnectionMixin from mod fabric-networking-api-v1->@Inject::initAddedFields(Lnet/minecraft/network/NetworkSide;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V won't be passed a CallbackInfo as a result +[01:12:41] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-networking-api-v1.mixins.json:ClientConnectionMixin from mod fabric-networking-api-v1->@Inject::checkPacket(Lnet/minecraft/network/packet/Packet;Lnet/minecraft/network/PacketCallbacks;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V doesn't use it's CallbackInfo +[01:12:41] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-networking-api-v1.mixins.json:ClientConnectionMixin from mod fabric-networking-api-v1->@Inject::checkPacket(Lnet/minecraft/network/packet/Packet;Lnet/minecraft/network/PacketCallbacks;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V has 0 override(s) in child classes +[01:12:41] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-networking-api-v1.mixins.json:ClientConnectionMixin from mod fabric-networking-api-v1->@Inject::checkPacket(Lnet/minecraft/network/packet/Packet;Lnet/minecraft/network/PacketCallbacks;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V won't be passed a CallbackInfo as a result +[01:12:41] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-networking-api-v1.mixins.json:ClientConnectionMixin from mod fabric-networking-api-v1->@Inject::checkPacket(Lnet/minecraft/network/packet/Packet;Lnet/minecraft/network/PacketCallbacks;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V doesn't use it's CallbackInfo +[01:12:41] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-networking-api-v1.mixins.json:ClientConnectionMixin from mod fabric-networking-api-v1->@Inject::checkPacket(Lnet/minecraft/network/packet/Packet;Lnet/minecraft/network/PacketCallbacks;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V has 0 override(s) in child classes +[01:12:41] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-networking-api-v1.mixins.json:ClientConnectionMixin from mod fabric-networking-api-v1->@Inject::checkPacket(Lnet/minecraft/network/packet/Packet;Lnet/minecraft/network/PacketCallbacks;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V won't be passed a CallbackInfo as a result +[01:12:41] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-networking-api-v1.mixins.json:ClientConnectionMixin from mod fabric-networking-api-v1->@Inject::handleDisconnect(Lio/netty/channel/ChannelHandlerContext;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V doesn't use it's CallbackInfo +[01:12:41] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-networking-api-v1.mixins.json:ClientConnectionMixin from mod fabric-networking-api-v1->@Inject::handleDisconnect(Lio/netty/channel/ChannelHandlerContext;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V has 0 override(s) in child classes +[01:12:41] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-networking-api-v1.mixins.json:ClientConnectionMixin from mod fabric-networking-api-v1->@Inject::handleDisconnect(Lio/netty/channel/ChannelHandlerContext;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V won't be passed a CallbackInfo as a result +[01:12:41] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-networking-api-v1.mixins.json:ClientConnectionMixin from mod fabric-networking-api-v1->@Inject::sendInternal(Lnet/minecraft/network/packet/Packet;Lnet/minecraft/network/PacketCallbacks;Lnet/minecraft/network/NetworkState;Lnet/minecraft/network/NetworkState;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;Lio/netty/channel/ChannelFuture;)V does use it's CallbackInfo +[01:12:41] [Render thread/INFO] (net.fabricmc.fabric.impl.client.indigo.Indigo) [Indigo] Registering Indigo renderer! +[01:12:41] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing GameRendererMixin from fabric-screen-api-v1.mixins.json into net.minecraft.client.render.GameRenderer +[01:12:41] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-screen-api-v1.mixins.json:GameRendererMixin from mod fabric-screen-api-v1: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[01:12:41] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing shader.GameRendererMixin from fabric-rendering-v1.mixins.json into net.minecraft.client.render.GameRenderer +[01:12:41] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:shader.GameRendererMixin from mod fabric-rendering-v1: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[01:12:41] [Render thread/DEBUG] (FabricLoader/Mixin) Renaming synthetic method lambda$registerShaders$0(Lnet/minecraft/resource/ResourceFactory;Ljava/util/List;Lnet/minecraft/util/Identifier;Lnet/minecraft/client/render/VertexFormat;Ljava/util/function/Consumer;)V to md5f0bfc$fabric-rendering-v1$lambda$registerShaders$0$0 in fabric-rendering-v1.mixins.json:shader.GameRendererMixin from mod fabric-rendering-v1 +[01:12:41] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-screen-api-v1.mixins.json:GameRendererMixin from mod fabric-screen-api-v1->@Inject::onBeforeRenderScreen(FJZLorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;IILnet/minecraft/client/util/math/MatrixStack;)V doesn't use it's CallbackInfo +[01:12:41] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-screen-api-v1.mixins.json:GameRendererMixin from mod fabric-screen-api-v1->@Inject::onBeforeRenderScreen(FJZLorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;IILnet/minecraft/client/util/math/MatrixStack;)V has 0 override(s) in child classes +[01:12:41] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-screen-api-v1.mixins.json:GameRendererMixin from mod fabric-screen-api-v1->@Inject::onBeforeRenderScreen(FJZLorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;IILnet/minecraft/client/util/math/MatrixStack;)V won't be passed a CallbackInfo as a result +[01:12:41] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-screen-api-v1.mixins.json:GameRendererMixin from mod fabric-screen-api-v1->@Inject::onAfterRenderScreen(FJZLorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;IILnet/minecraft/client/util/math/MatrixStack;)V doesn't use it's CallbackInfo +[01:12:41] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-screen-api-v1.mixins.json:GameRendererMixin from mod fabric-screen-api-v1->@Inject::onAfterRenderScreen(FJZLorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;IILnet/minecraft/client/util/math/MatrixStack;)V has 0 override(s) in child classes +[01:12:41] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-screen-api-v1.mixins.json:GameRendererMixin from mod fabric-screen-api-v1->@Inject::onAfterRenderScreen(FJZLorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;IILnet/minecraft/client/util/math/MatrixStack;)V won't be passed a CallbackInfo as a result +[01:12:41] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:shader.GameRendererMixin from mod fabric-rendering-v1->@Inject::registerShaders(Lnet/minecraft/resource/ResourceFactory;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;Ljava/util/List;Ljava/util/List;)V doesn't use it's CallbackInfo +[01:12:41] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:shader.GameRendererMixin from mod fabric-rendering-v1->@Inject::registerShaders(Lnet/minecraft/resource/ResourceFactory;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;Ljava/util/List;Ljava/util/List;)V has 0 override(s) in child classes +[01:12:41] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:shader.GameRendererMixin from mod fabric-rendering-v1->@Inject::registerShaders(Lnet/minecraft/resource/ResourceFactory;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;Ljava/util/List;Ljava/util/List;)V won't be passed a CallbackInfo as a result +[01:12:41] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:shader.GameRendererMixin from mod fabric-rendering-v1->@Inject::registerShaders(Lnet/minecraft/resource/ResourceFactory;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;Ljava/util/List;Ljava/util/List;)V doesn't use it's CallbackInfo +[01:12:41] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:shader.GameRendererMixin from mod fabric-rendering-v1->@Inject::registerShaders(Lnet/minecraft/resource/ResourceFactory;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;Ljava/util/List;Ljava/util/List;)V has 0 override(s) in child classes +[01:12:41] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:shader.GameRendererMixin from mod fabric-rendering-v1->@Inject::registerShaders(Lnet/minecraft/resource/ResourceFactory;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;Ljava/util/List;Ljava/util/List;)V won't be passed a CallbackInfo as a result +[01:12:41] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:shader.GameRendererMixin from mod fabric-rendering-v1->@Inject::registerShaders(Lnet/minecraft/resource/ResourceFactory;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;Ljava/util/List;Ljava/util/List;)V doesn't use it's CallbackInfo +[01:12:41] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:shader.GameRendererMixin from mod fabric-rendering-v1->@Inject::registerShaders(Lnet/minecraft/resource/ResourceFactory;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;Ljava/util/List;Ljava/util/List;)V has 0 override(s) in child classes +[01:12:41] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:shader.GameRendererMixin from mod fabric-rendering-v1->@Inject::registerShaders(Lnet/minecraft/resource/ResourceFactory;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;Ljava/util/List;Ljava/util/List;)V won't be passed a CallbackInfo as a result +[01:12:41] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:shader.GameRendererMixin from mod fabric-rendering-v1->@Inject::registerShaders(Lnet/minecraft/resource/ResourceFactory;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;Ljava/util/List;Ljava/util/List;)V doesn't use it's CallbackInfo +[01:12:41] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:shader.GameRendererMixin from mod fabric-rendering-v1->@Inject::registerShaders(Lnet/minecraft/resource/ResourceFactory;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;Ljava/util/List;Ljava/util/List;)V has 0 override(s) in child classes +[01:12:41] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:shader.GameRendererMixin from mod fabric-rendering-v1->@Inject::registerShaders(Lnet/minecraft/resource/ResourceFactory;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;Ljava/util/List;Ljava/util/List;)V won't be passed a CallbackInfo as a result +[01:12:41] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:shader.GameRendererMixin from mod fabric-rendering-v1->@Inject::registerShaders(Lnet/minecraft/resource/ResourceFactory;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;Ljava/util/List;Ljava/util/List;)V doesn't use it's CallbackInfo +[01:12:41] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:shader.GameRendererMixin from mod fabric-rendering-v1->@Inject::registerShaders(Lnet/minecraft/resource/ResourceFactory;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;Ljava/util/List;Ljava/util/List;)V has 0 override(s) in child classes +[01:12:41] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:shader.GameRendererMixin from mod fabric-rendering-v1->@Inject::registerShaders(Lnet/minecraft/resource/ResourceFactory;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;Ljava/util/List;Ljava/util/List;)V won't be passed a CallbackInfo as a result +[01:12:41] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:shader.GameRendererMixin from mod fabric-rendering-v1->@Inject::registerShaders(Lnet/minecraft/resource/ResourceFactory;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;Ljava/util/List;Ljava/util/List;)V doesn't use it's CallbackInfo +[01:12:41] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:shader.GameRendererMixin from mod fabric-rendering-v1->@Inject::registerShaders(Lnet/minecraft/resource/ResourceFactory;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;Ljava/util/List;Ljava/util/List;)V has 0 override(s) in child classes +[01:12:41] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:shader.GameRendererMixin from mod fabric-rendering-v1->@Inject::registerShaders(Lnet/minecraft/resource/ResourceFactory;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;Ljava/util/List;Ljava/util/List;)V won't be passed a CallbackInfo as a result +[01:12:41] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:shader.GameRendererMixin from mod fabric-rendering-v1->@Inject::registerShaders(Lnet/minecraft/resource/ResourceFactory;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;Ljava/util/List;Ljava/util/List;)V doesn't use it's CallbackInfo +[01:12:41] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:shader.GameRendererMixin from mod fabric-rendering-v1->@Inject::registerShaders(Lnet/minecraft/resource/ResourceFactory;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;Ljava/util/List;Ljava/util/List;)V has 0 override(s) in child classes +[01:12:41] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:shader.GameRendererMixin from mod fabric-rendering-v1->@Inject::registerShaders(Lnet/minecraft/resource/ResourceFactory;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;Ljava/util/List;Ljava/util/List;)V won't be passed a CallbackInfo as a result +[01:12:41] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:shader.GameRendererMixin from mod fabric-rendering-v1->@Inject::registerShaders(Lnet/minecraft/resource/ResourceFactory;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;Ljava/util/List;Ljava/util/List;)V doesn't use it's CallbackInfo +[01:12:41] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:shader.GameRendererMixin from mod fabric-rendering-v1->@Inject::registerShaders(Lnet/minecraft/resource/ResourceFactory;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;Ljava/util/List;Ljava/util/List;)V has 0 override(s) in child classes +[01:12:41] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:shader.GameRendererMixin from mod fabric-rendering-v1->@Inject::registerShaders(Lnet/minecraft/resource/ResourceFactory;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;Ljava/util/List;Ljava/util/List;)V won't be passed a CallbackInfo as a result +[01:12:41] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:shader.GameRendererMixin from mod fabric-rendering-v1->@Inject::registerShaders(Lnet/minecraft/resource/ResourceFactory;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;Ljava/util/List;Ljava/util/List;)V doesn't use it's CallbackInfo +[01:12:41] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:shader.GameRendererMixin from mod fabric-rendering-v1->@Inject::registerShaders(Lnet/minecraft/resource/ResourceFactory;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;Ljava/util/List;Ljava/util/List;)V has 0 override(s) in child classes +[01:12:41] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:shader.GameRendererMixin from mod fabric-rendering-v1->@Inject::registerShaders(Lnet/minecraft/resource/ResourceFactory;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;Ljava/util/List;Ljava/util/List;)V won't be passed a CallbackInfo as a result +[01:12:41] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:shader.GameRendererMixin from mod fabric-rendering-v1->@Inject::registerShaders(Lnet/minecraft/resource/ResourceFactory;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;Ljava/util/List;Ljava/util/List;)V doesn't use it's CallbackInfo +[01:12:41] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:shader.GameRendererMixin from mod fabric-rendering-v1->@Inject::registerShaders(Lnet/minecraft/resource/ResourceFactory;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;Ljava/util/List;Ljava/util/List;)V has 0 override(s) in child classes +[01:12:41] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:shader.GameRendererMixin from mod fabric-rendering-v1->@Inject::registerShaders(Lnet/minecraft/resource/ResourceFactory;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;Ljava/util/List;Ljava/util/List;)V won't be passed a CallbackInfo as a result +[01:12:41] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:shader.GameRendererMixin from mod fabric-rendering-v1->@Inject::registerShaders(Lnet/minecraft/resource/ResourceFactory;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;Ljava/util/List;Ljava/util/List;)V doesn't use it's CallbackInfo +[01:12:41] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:shader.GameRendererMixin from mod fabric-rendering-v1->@Inject::registerShaders(Lnet/minecraft/resource/ResourceFactory;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;Ljava/util/List;Ljava/util/List;)V has 0 override(s) in child classes +[01:12:41] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:shader.GameRendererMixin from mod fabric-rendering-v1->@Inject::registerShaders(Lnet/minecraft/resource/ResourceFactory;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;Ljava/util/List;Ljava/util/List;)V won't be passed a CallbackInfo as a result +[01:12:41] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:shader.GameRendererMixin from mod fabric-rendering-v1->@Inject::registerShaders(Lnet/minecraft/resource/ResourceFactory;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;Ljava/util/List;Ljava/util/List;)V doesn't use it's CallbackInfo +[01:12:41] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:shader.GameRendererMixin from mod fabric-rendering-v1->@Inject::registerShaders(Lnet/minecraft/resource/ResourceFactory;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;Ljava/util/List;Ljava/util/List;)V has 0 override(s) in child classes +[01:12:41] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:shader.GameRendererMixin from mod fabric-rendering-v1->@Inject::registerShaders(Lnet/minecraft/resource/ResourceFactory;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;Ljava/util/List;Ljava/util/List;)V won't be passed a CallbackInfo as a result +[01:12:41] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:shader.GameRendererMixin from mod fabric-rendering-v1->@Inject::registerShaders(Lnet/minecraft/resource/ResourceFactory;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;Ljava/util/List;Ljava/util/List;)V doesn't use it's CallbackInfo +[01:12:41] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:shader.GameRendererMixin from mod fabric-rendering-v1->@Inject::registerShaders(Lnet/minecraft/resource/ResourceFactory;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;Ljava/util/List;Ljava/util/List;)V has 0 override(s) in child classes +[01:12:41] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:shader.GameRendererMixin from mod fabric-rendering-v1->@Inject::registerShaders(Lnet/minecraft/resource/ResourceFactory;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;Ljava/util/List;Ljava/util/List;)V won't be passed a CallbackInfo as a result +[01:12:41] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:shader.GameRendererMixin from mod fabric-rendering-v1->@Inject::registerShaders(Lnet/minecraft/resource/ResourceFactory;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;Ljava/util/List;Ljava/util/List;)V doesn't use it's CallbackInfo +[01:12:41] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:shader.GameRendererMixin from mod fabric-rendering-v1->@Inject::registerShaders(Lnet/minecraft/resource/ResourceFactory;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;Ljava/util/List;Ljava/util/List;)V has 0 override(s) in child classes +[01:12:41] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:shader.GameRendererMixin from mod fabric-rendering-v1->@Inject::registerShaders(Lnet/minecraft/resource/ResourceFactory;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;Ljava/util/List;Ljava/util/List;)V won't be passed a CallbackInfo as a result +[01:12:41] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:shader.GameRendererMixin from mod fabric-rendering-v1->@Inject::registerShaders(Lnet/minecraft/resource/ResourceFactory;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;Ljava/util/List;Ljava/util/List;)V doesn't use it's CallbackInfo +[01:12:41] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:shader.GameRendererMixin from mod fabric-rendering-v1->@Inject::registerShaders(Lnet/minecraft/resource/ResourceFactory;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;Ljava/util/List;Ljava/util/List;)V has 0 override(s) in child classes +[01:12:41] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:shader.GameRendererMixin from mod fabric-rendering-v1->@Inject::registerShaders(Lnet/minecraft/resource/ResourceFactory;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;Ljava/util/List;Ljava/util/List;)V won't be passed a CallbackInfo as a result +[01:12:41] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:shader.GameRendererMixin from mod fabric-rendering-v1->@Inject::registerShaders(Lnet/minecraft/resource/ResourceFactory;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;Ljava/util/List;Ljava/util/List;)V doesn't use it's CallbackInfo +[01:12:41] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:shader.GameRendererMixin from mod fabric-rendering-v1->@Inject::registerShaders(Lnet/minecraft/resource/ResourceFactory;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;Ljava/util/List;Ljava/util/List;)V has 0 override(s) in child classes +[01:12:41] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:shader.GameRendererMixin from mod fabric-rendering-v1->@Inject::registerShaders(Lnet/minecraft/resource/ResourceFactory;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;Ljava/util/List;Ljava/util/List;)V won't be passed a CallbackInfo as a result +[01:12:41] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:shader.GameRendererMixin from mod fabric-rendering-v1->@Inject::registerShaders(Lnet/minecraft/resource/ResourceFactory;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;Ljava/util/List;Ljava/util/List;)V doesn't use it's CallbackInfo +[01:12:41] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:shader.GameRendererMixin from mod fabric-rendering-v1->@Inject::registerShaders(Lnet/minecraft/resource/ResourceFactory;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;Ljava/util/List;Ljava/util/List;)V has 0 override(s) in child classes +[01:12:41] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:shader.GameRendererMixin from mod fabric-rendering-v1->@Inject::registerShaders(Lnet/minecraft/resource/ResourceFactory;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;Ljava/util/List;Ljava/util/List;)V won't be passed a CallbackInfo as a result +[01:12:41] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:shader.GameRendererMixin from mod fabric-rendering-v1->@Inject::registerShaders(Lnet/minecraft/resource/ResourceFactory;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;Ljava/util/List;Ljava/util/List;)V doesn't use it's CallbackInfo +[01:12:41] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:shader.GameRendererMixin from mod fabric-rendering-v1->@Inject::registerShaders(Lnet/minecraft/resource/ResourceFactory;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;Ljava/util/List;Ljava/util/List;)V has 0 override(s) in child classes +[01:12:41] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:shader.GameRendererMixin from mod fabric-rendering-v1->@Inject::registerShaders(Lnet/minecraft/resource/ResourceFactory;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;Ljava/util/List;Ljava/util/List;)V won't be passed a CallbackInfo as a result +[01:12:41] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:shader.GameRendererMixin from mod fabric-rendering-v1->@Inject::registerShaders(Lnet/minecraft/resource/ResourceFactory;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;Ljava/util/List;Ljava/util/List;)V doesn't use it's CallbackInfo +[01:12:41] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:shader.GameRendererMixin from mod fabric-rendering-v1->@Inject::registerShaders(Lnet/minecraft/resource/ResourceFactory;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;Ljava/util/List;Ljava/util/List;)V has 0 override(s) in child classes +[01:12:41] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:shader.GameRendererMixin from mod fabric-rendering-v1->@Inject::registerShaders(Lnet/minecraft/resource/ResourceFactory;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;Ljava/util/List;Ljava/util/List;)V won't be passed a CallbackInfo as a result +[01:12:41] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:shader.GameRendererMixin from mod fabric-rendering-v1->@Inject::registerShaders(Lnet/minecraft/resource/ResourceFactory;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;Ljava/util/List;Ljava/util/List;)V doesn't use it's CallbackInfo +[01:12:41] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:shader.GameRendererMixin from mod fabric-rendering-v1->@Inject::registerShaders(Lnet/minecraft/resource/ResourceFactory;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;Ljava/util/List;Ljava/util/List;)V has 0 override(s) in child classes +[01:12:41] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:shader.GameRendererMixin from mod fabric-rendering-v1->@Inject::registerShaders(Lnet/minecraft/resource/ResourceFactory;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;Ljava/util/List;Ljava/util/List;)V won't be passed a CallbackInfo as a result +[01:12:41] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:shader.GameRendererMixin from mod fabric-rendering-v1->@Inject::registerShaders(Lnet/minecraft/resource/ResourceFactory;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;Ljava/util/List;Ljava/util/List;)V doesn't use it's CallbackInfo +[01:12:41] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:shader.GameRendererMixin from mod fabric-rendering-v1->@Inject::registerShaders(Lnet/minecraft/resource/ResourceFactory;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;Ljava/util/List;Ljava/util/List;)V has 0 override(s) in child classes +[01:12:41] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:shader.GameRendererMixin from mod fabric-rendering-v1->@Inject::registerShaders(Lnet/minecraft/resource/ResourceFactory;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;Ljava/util/List;Ljava/util/List;)V won't be passed a CallbackInfo as a result +[01:12:41] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:shader.GameRendererMixin from mod fabric-rendering-v1->@Inject::registerShaders(Lnet/minecraft/resource/ResourceFactory;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;Ljava/util/List;Ljava/util/List;)V doesn't use it's CallbackInfo +[01:12:41] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:shader.GameRendererMixin from mod fabric-rendering-v1->@Inject::registerShaders(Lnet/minecraft/resource/ResourceFactory;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;Ljava/util/List;Ljava/util/List;)V has 0 override(s) in child classes +[01:12:41] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:shader.GameRendererMixin from mod fabric-rendering-v1->@Inject::registerShaders(Lnet/minecraft/resource/ResourceFactory;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;Ljava/util/List;Ljava/util/List;)V won't be passed a CallbackInfo as a result +[01:12:41] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:shader.GameRendererMixin from mod fabric-rendering-v1->@Inject::registerShaders(Lnet/minecraft/resource/ResourceFactory;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;Ljava/util/List;Ljava/util/List;)V doesn't use it's CallbackInfo +[01:12:41] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:shader.GameRendererMixin from mod fabric-rendering-v1->@Inject::registerShaders(Lnet/minecraft/resource/ResourceFactory;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;Ljava/util/List;Ljava/util/List;)V has 0 override(s) in child classes +[01:12:41] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:shader.GameRendererMixin from mod fabric-rendering-v1->@Inject::registerShaders(Lnet/minecraft/resource/ResourceFactory;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;Ljava/util/List;Ljava/util/List;)V won't be passed a CallbackInfo as a result +[01:12:41] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:shader.GameRendererMixin from mod fabric-rendering-v1->@Inject::registerShaders(Lnet/minecraft/resource/ResourceFactory;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;Ljava/util/List;Ljava/util/List;)V doesn't use it's CallbackInfo +[01:12:41] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:shader.GameRendererMixin from mod fabric-rendering-v1->@Inject::registerShaders(Lnet/minecraft/resource/ResourceFactory;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;Ljava/util/List;Ljava/util/List;)V has 0 override(s) in child classes +[01:12:41] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:shader.GameRendererMixin from mod fabric-rendering-v1->@Inject::registerShaders(Lnet/minecraft/resource/ResourceFactory;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;Ljava/util/List;Ljava/util/List;)V won't be passed a CallbackInfo as a result +[01:12:41] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:shader.GameRendererMixin from mod fabric-rendering-v1->@Inject::registerShaders(Lnet/minecraft/resource/ResourceFactory;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;Ljava/util/List;Ljava/util/List;)V doesn't use it's CallbackInfo +[01:12:41] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:shader.GameRendererMixin from mod fabric-rendering-v1->@Inject::registerShaders(Lnet/minecraft/resource/ResourceFactory;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;Ljava/util/List;Ljava/util/List;)V has 0 override(s) in child classes +[01:12:41] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:shader.GameRendererMixin from mod fabric-rendering-v1->@Inject::registerShaders(Lnet/minecraft/resource/ResourceFactory;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;Ljava/util/List;Ljava/util/List;)V won't be passed a CallbackInfo as a result +[01:12:41] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:shader.GameRendererMixin from mod fabric-rendering-v1->@Inject::registerShaders(Lnet/minecraft/resource/ResourceFactory;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;Ljava/util/List;Ljava/util/List;)V doesn't use it's CallbackInfo +[01:12:41] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:shader.GameRendererMixin from mod fabric-rendering-v1->@Inject::registerShaders(Lnet/minecraft/resource/ResourceFactory;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;Ljava/util/List;Ljava/util/List;)V has 0 override(s) in child classes +[01:12:41] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:shader.GameRendererMixin from mod fabric-rendering-v1->@Inject::registerShaders(Lnet/minecraft/resource/ResourceFactory;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;Ljava/util/List;Ljava/util/List;)V won't be passed a CallbackInfo as a result +[01:12:41] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:shader.GameRendererMixin from mod fabric-rendering-v1->@Inject::registerShaders(Lnet/minecraft/resource/ResourceFactory;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;Ljava/util/List;Ljava/util/List;)V doesn't use it's CallbackInfo +[01:12:41] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:shader.GameRendererMixin from mod fabric-rendering-v1->@Inject::registerShaders(Lnet/minecraft/resource/ResourceFactory;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;Ljava/util/List;Ljava/util/List;)V has 0 override(s) in child classes +[01:12:41] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:shader.GameRendererMixin from mod fabric-rendering-v1->@Inject::registerShaders(Lnet/minecraft/resource/ResourceFactory;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;Ljava/util/List;Ljava/util/List;)V won't be passed a CallbackInfo as a result +[01:12:41] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:shader.GameRendererMixin from mod fabric-rendering-v1->@Inject::registerShaders(Lnet/minecraft/resource/ResourceFactory;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;Ljava/util/List;Ljava/util/List;)V doesn't use it's CallbackInfo +[01:12:41] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:shader.GameRendererMixin from mod fabric-rendering-v1->@Inject::registerShaders(Lnet/minecraft/resource/ResourceFactory;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;Ljava/util/List;Ljava/util/List;)V has 0 override(s) in child classes +[01:12:41] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:shader.GameRendererMixin from mod fabric-rendering-v1->@Inject::registerShaders(Lnet/minecraft/resource/ResourceFactory;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;Ljava/util/List;Ljava/util/List;)V won't be passed a CallbackInfo as a result +[01:12:41] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:shader.GameRendererMixin from mod fabric-rendering-v1->@Inject::registerShaders(Lnet/minecraft/resource/ResourceFactory;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;Ljava/util/List;Ljava/util/List;)V doesn't use it's CallbackInfo +[01:12:41] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:shader.GameRendererMixin from mod fabric-rendering-v1->@Inject::registerShaders(Lnet/minecraft/resource/ResourceFactory;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;Ljava/util/List;Ljava/util/List;)V has 0 override(s) in child classes +[01:12:41] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:shader.GameRendererMixin from mod fabric-rendering-v1->@Inject::registerShaders(Lnet/minecraft/resource/ResourceFactory;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;Ljava/util/List;Ljava/util/List;)V won't be passed a CallbackInfo as a result +[01:12:41] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:shader.GameRendererMixin from mod fabric-rendering-v1->@Inject::registerShaders(Lnet/minecraft/resource/ResourceFactory;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;Ljava/util/List;Ljava/util/List;)V doesn't use it's CallbackInfo +[01:12:41] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:shader.GameRendererMixin from mod fabric-rendering-v1->@Inject::registerShaders(Lnet/minecraft/resource/ResourceFactory;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;Ljava/util/List;Ljava/util/List;)V has 0 override(s) in child classes +[01:12:41] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:shader.GameRendererMixin from mod fabric-rendering-v1->@Inject::registerShaders(Lnet/minecraft/resource/ResourceFactory;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;Ljava/util/List;Ljava/util/List;)V won't be passed a CallbackInfo as a result +[01:12:41] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:shader.GameRendererMixin from mod fabric-rendering-v1->@Inject::registerShaders(Lnet/minecraft/resource/ResourceFactory;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;Ljava/util/List;Ljava/util/List;)V doesn't use it's CallbackInfo +[01:12:41] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:shader.GameRendererMixin from mod fabric-rendering-v1->@Inject::registerShaders(Lnet/minecraft/resource/ResourceFactory;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;Ljava/util/List;Ljava/util/List;)V has 0 override(s) in child classes +[01:12:41] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:shader.GameRendererMixin from mod fabric-rendering-v1->@Inject::registerShaders(Lnet/minecraft/resource/ResourceFactory;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;Ljava/util/List;Ljava/util/List;)V won't be passed a CallbackInfo as a result +[01:12:41] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:shader.GameRendererMixin from mod fabric-rendering-v1->@Inject::registerShaders(Lnet/minecraft/resource/ResourceFactory;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;Ljava/util/List;Ljava/util/List;)V doesn't use it's CallbackInfo +[01:12:41] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:shader.GameRendererMixin from mod fabric-rendering-v1->@Inject::registerShaders(Lnet/minecraft/resource/ResourceFactory;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;Ljava/util/List;Ljava/util/List;)V has 0 override(s) in child classes +[01:12:41] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:shader.GameRendererMixin from mod fabric-rendering-v1->@Inject::registerShaders(Lnet/minecraft/resource/ResourceFactory;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;Ljava/util/List;Ljava/util/List;)V won't be passed a CallbackInfo as a result +[01:12:41] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:shader.GameRendererMixin from mod fabric-rendering-v1->@Inject::registerShaders(Lnet/minecraft/resource/ResourceFactory;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;Ljava/util/List;Ljava/util/List;)V doesn't use it's CallbackInfo +[01:12:41] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:shader.GameRendererMixin from mod fabric-rendering-v1->@Inject::registerShaders(Lnet/minecraft/resource/ResourceFactory;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;Ljava/util/List;Ljava/util/List;)V has 0 override(s) in child classes +[01:12:41] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:shader.GameRendererMixin from mod fabric-rendering-v1->@Inject::registerShaders(Lnet/minecraft/resource/ResourceFactory;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;Ljava/util/List;Ljava/util/List;)V won't be passed a CallbackInfo as a result +[01:12:41] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:shader.GameRendererMixin from mod fabric-rendering-v1->@Inject::registerShaders(Lnet/minecraft/resource/ResourceFactory;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;Ljava/util/List;Ljava/util/List;)V doesn't use it's CallbackInfo +[01:12:41] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:shader.GameRendererMixin from mod fabric-rendering-v1->@Inject::registerShaders(Lnet/minecraft/resource/ResourceFactory;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;Ljava/util/List;Ljava/util/List;)V has 0 override(s) in child classes +[01:12:41] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:shader.GameRendererMixin from mod fabric-rendering-v1->@Inject::registerShaders(Lnet/minecraft/resource/ResourceFactory;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;Ljava/util/List;Ljava/util/List;)V won't be passed a CallbackInfo as a result +[01:12:41] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:shader.GameRendererMixin from mod fabric-rendering-v1->@Inject::registerShaders(Lnet/minecraft/resource/ResourceFactory;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;Ljava/util/List;Ljava/util/List;)V doesn't use it's CallbackInfo +[01:12:41] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:shader.GameRendererMixin from mod fabric-rendering-v1->@Inject::registerShaders(Lnet/minecraft/resource/ResourceFactory;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;Ljava/util/List;Ljava/util/List;)V has 0 override(s) in child classes +[01:12:41] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:shader.GameRendererMixin from mod fabric-rendering-v1->@Inject::registerShaders(Lnet/minecraft/resource/ResourceFactory;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;Ljava/util/List;Ljava/util/List;)V won't be passed a CallbackInfo as a result +[01:12:41] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:shader.GameRendererMixin from mod fabric-rendering-v1->@Inject::registerShaders(Lnet/minecraft/resource/ResourceFactory;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;Ljava/util/List;Ljava/util/List;)V doesn't use it's CallbackInfo +[01:12:41] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:shader.GameRendererMixin from mod fabric-rendering-v1->@Inject::registerShaders(Lnet/minecraft/resource/ResourceFactory;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;Ljava/util/List;Ljava/util/List;)V has 0 override(s) in child classes +[01:12:41] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:shader.GameRendererMixin from mod fabric-rendering-v1->@Inject::registerShaders(Lnet/minecraft/resource/ResourceFactory;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;Ljava/util/List;Ljava/util/List;)V won't be passed a CallbackInfo as a result +[01:12:41] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:shader.GameRendererMixin from mod fabric-rendering-v1->@Inject::registerShaders(Lnet/minecraft/resource/ResourceFactory;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;Ljava/util/List;Ljava/util/List;)V doesn't use it's CallbackInfo +[01:12:41] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:shader.GameRendererMixin from mod fabric-rendering-v1->@Inject::registerShaders(Lnet/minecraft/resource/ResourceFactory;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;Ljava/util/List;Ljava/util/List;)V has 0 override(s) in child classes +[01:12:41] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:shader.GameRendererMixin from mod fabric-rendering-v1->@Inject::registerShaders(Lnet/minecraft/resource/ResourceFactory;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;Ljava/util/List;Ljava/util/List;)V won't be passed a CallbackInfo as a result +[01:12:41] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:shader.GameRendererMixin from mod fabric-rendering-v1->@Inject::registerShaders(Lnet/minecraft/resource/ResourceFactory;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;Ljava/util/List;Ljava/util/List;)V doesn't use it's CallbackInfo +[01:12:41] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:shader.GameRendererMixin from mod fabric-rendering-v1->@Inject::registerShaders(Lnet/minecraft/resource/ResourceFactory;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;Ljava/util/List;Ljava/util/List;)V has 0 override(s) in child classes +[01:12:41] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:shader.GameRendererMixin from mod fabric-rendering-v1->@Inject::registerShaders(Lnet/minecraft/resource/ResourceFactory;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;Ljava/util/List;Ljava/util/List;)V won't be passed a CallbackInfo as a result +[01:12:41] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:shader.GameRendererMixin from mod fabric-rendering-v1->@Inject::registerShaders(Lnet/minecraft/resource/ResourceFactory;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;Ljava/util/List;Ljava/util/List;)V doesn't use it's CallbackInfo +[01:12:41] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:shader.GameRendererMixin from mod fabric-rendering-v1->@Inject::registerShaders(Lnet/minecraft/resource/ResourceFactory;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;Ljava/util/List;Ljava/util/List;)V has 0 override(s) in child classes +[01:12:41] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:shader.GameRendererMixin from mod fabric-rendering-v1->@Inject::registerShaders(Lnet/minecraft/resource/ResourceFactory;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;Ljava/util/List;Ljava/util/List;)V won't be passed a CallbackInfo as a result +[01:12:41] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:shader.GameRendererMixin from mod fabric-rendering-v1->@Inject::registerShaders(Lnet/minecraft/resource/ResourceFactory;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;Ljava/util/List;Ljava/util/List;)V doesn't use it's CallbackInfo +[01:12:41] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:shader.GameRendererMixin from mod fabric-rendering-v1->@Inject::registerShaders(Lnet/minecraft/resource/ResourceFactory;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;Ljava/util/List;Ljava/util/List;)V has 0 override(s) in child classes +[01:12:41] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:shader.GameRendererMixin from mod fabric-rendering-v1->@Inject::registerShaders(Lnet/minecraft/resource/ResourceFactory;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;Ljava/util/List;Ljava/util/List;)V won't be passed a CallbackInfo as a result +[01:12:41] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:shader.GameRendererMixin from mod fabric-rendering-v1->@Inject::registerShaders(Lnet/minecraft/resource/ResourceFactory;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;Ljava/util/List;Ljava/util/List;)V doesn't use it's CallbackInfo +[01:12:41] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:shader.GameRendererMixin from mod fabric-rendering-v1->@Inject::registerShaders(Lnet/minecraft/resource/ResourceFactory;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;Ljava/util/List;Ljava/util/List;)V has 0 override(s) in child classes +[01:12:41] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:shader.GameRendererMixin from mod fabric-rendering-v1->@Inject::registerShaders(Lnet/minecraft/resource/ResourceFactory;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;Ljava/util/List;Ljava/util/List;)V won't be passed a CallbackInfo as a result +[01:12:41] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:shader.GameRendererMixin from mod fabric-rendering-v1->@Inject::registerShaders(Lnet/minecraft/resource/ResourceFactory;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;Ljava/util/List;Ljava/util/List;)V doesn't use it's CallbackInfo +[01:12:41] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:shader.GameRendererMixin from mod fabric-rendering-v1->@Inject::registerShaders(Lnet/minecraft/resource/ResourceFactory;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;Ljava/util/List;Ljava/util/List;)V has 0 override(s) in child classes +[01:12:41] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:shader.GameRendererMixin from mod fabric-rendering-v1->@Inject::registerShaders(Lnet/minecraft/resource/ResourceFactory;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;Ljava/util/List;Ljava/util/List;)V won't be passed a CallbackInfo as a result +[01:12:41] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:shader.GameRendererMixin from mod fabric-rendering-v1->@Inject::registerShaders(Lnet/minecraft/resource/ResourceFactory;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;Ljava/util/List;Ljava/util/List;)V doesn't use it's CallbackInfo +[01:12:41] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:shader.GameRendererMixin from mod fabric-rendering-v1->@Inject::registerShaders(Lnet/minecraft/resource/ResourceFactory;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;Ljava/util/List;Ljava/util/List;)V has 0 override(s) in child classes +[01:12:41] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:shader.GameRendererMixin from mod fabric-rendering-v1->@Inject::registerShaders(Lnet/minecraft/resource/ResourceFactory;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;Ljava/util/List;Ljava/util/List;)V won't be passed a CallbackInfo as a result +[01:12:41] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:shader.GameRendererMixin from mod fabric-rendering-v1->@Inject::registerShaders(Lnet/minecraft/resource/ResourceFactory;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;Ljava/util/List;Ljava/util/List;)V doesn't use it's CallbackInfo +[01:12:41] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:shader.GameRendererMixin from mod fabric-rendering-v1->@Inject::registerShaders(Lnet/minecraft/resource/ResourceFactory;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;Ljava/util/List;Ljava/util/List;)V has 0 override(s) in child classes +[01:12:41] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:shader.GameRendererMixin from mod fabric-rendering-v1->@Inject::registerShaders(Lnet/minecraft/resource/ResourceFactory;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;Ljava/util/List;Ljava/util/List;)V won't be passed a CallbackInfo as a result +[01:12:41] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:shader.GameRendererMixin from mod fabric-rendering-v1->@Inject::registerShaders(Lnet/minecraft/resource/ResourceFactory;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;Ljava/util/List;Ljava/util/List;)V doesn't use it's CallbackInfo +[01:12:41] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:shader.GameRendererMixin from mod fabric-rendering-v1->@Inject::registerShaders(Lnet/minecraft/resource/ResourceFactory;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;Ljava/util/List;Ljava/util/List;)V has 0 override(s) in child classes +[01:12:41] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:shader.GameRendererMixin from mod fabric-rendering-v1->@Inject::registerShaders(Lnet/minecraft/resource/ResourceFactory;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;Ljava/util/List;Ljava/util/List;)V won't be passed a CallbackInfo as a result +[01:12:41] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:shader.GameRendererMixin from mod fabric-rendering-v1->@Inject::registerShaders(Lnet/minecraft/resource/ResourceFactory;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;Ljava/util/List;Ljava/util/List;)V doesn't use it's CallbackInfo +[01:12:41] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:shader.GameRendererMixin from mod fabric-rendering-v1->@Inject::registerShaders(Lnet/minecraft/resource/ResourceFactory;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;Ljava/util/List;Ljava/util/List;)V has 0 override(s) in child classes +[01:12:41] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:shader.GameRendererMixin from mod fabric-rendering-v1->@Inject::registerShaders(Lnet/minecraft/resource/ResourceFactory;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;Ljava/util/List;Ljava/util/List;)V won't be passed a CallbackInfo as a result +[01:12:41] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:shader.GameRendererMixin from mod fabric-rendering-v1->@Inject::registerShaders(Lnet/minecraft/resource/ResourceFactory;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;Ljava/util/List;Ljava/util/List;)V doesn't use it's CallbackInfo +[01:12:41] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:shader.GameRendererMixin from mod fabric-rendering-v1->@Inject::registerShaders(Lnet/minecraft/resource/ResourceFactory;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;Ljava/util/List;Ljava/util/List;)V has 0 override(s) in child classes +[01:12:41] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:shader.GameRendererMixin from mod fabric-rendering-v1->@Inject::registerShaders(Lnet/minecraft/resource/ResourceFactory;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;Ljava/util/List;Ljava/util/List;)V won't be passed a CallbackInfo as a result +[01:12:41] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:shader.GameRendererMixin from mod fabric-rendering-v1->@Inject::registerShaders(Lnet/minecraft/resource/ResourceFactory;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;Ljava/util/List;Ljava/util/List;)V doesn't use it's CallbackInfo +[01:12:41] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:shader.GameRendererMixin from mod fabric-rendering-v1->@Inject::registerShaders(Lnet/minecraft/resource/ResourceFactory;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;Ljava/util/List;Ljava/util/List;)V has 0 override(s) in child classes +[01:12:41] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:shader.GameRendererMixin from mod fabric-rendering-v1->@Inject::registerShaders(Lnet/minecraft/resource/ResourceFactory;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;Ljava/util/List;Ljava/util/List;)V won't be passed a CallbackInfo as a result +[01:12:41] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:shader.GameRendererMixin from mod fabric-rendering-v1->@Inject::registerShaders(Lnet/minecraft/resource/ResourceFactory;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;Ljava/util/List;Ljava/util/List;)V doesn't use it's CallbackInfo +[01:12:41] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:shader.GameRendererMixin from mod fabric-rendering-v1->@Inject::registerShaders(Lnet/minecraft/resource/ResourceFactory;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;Ljava/util/List;Ljava/util/List;)V has 0 override(s) in child classes +[01:12:41] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:shader.GameRendererMixin from mod fabric-rendering-v1->@Inject::registerShaders(Lnet/minecraft/resource/ResourceFactory;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;Ljava/util/List;Ljava/util/List;)V won't be passed a CallbackInfo as a result +[01:12:41] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:shader.GameRendererMixin from mod fabric-rendering-v1->@Inject::registerShaders(Lnet/minecraft/resource/ResourceFactory;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;Ljava/util/List;Ljava/util/List;)V doesn't use it's CallbackInfo +[01:12:41] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:shader.GameRendererMixin from mod fabric-rendering-v1->@Inject::registerShaders(Lnet/minecraft/resource/ResourceFactory;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;Ljava/util/List;Ljava/util/List;)V has 0 override(s) in child classes +[01:12:41] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:shader.GameRendererMixin from mod fabric-rendering-v1->@Inject::registerShaders(Lnet/minecraft/resource/ResourceFactory;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;Ljava/util/List;Ljava/util/List;)V won't be passed a CallbackInfo as a result +[01:12:41] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:shader.GameRendererMixin from mod fabric-rendering-v1->@Inject::registerShaders(Lnet/minecraft/resource/ResourceFactory;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;Ljava/util/List;Ljava/util/List;)V doesn't use it's CallbackInfo +[01:12:41] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:shader.GameRendererMixin from mod fabric-rendering-v1->@Inject::registerShaders(Lnet/minecraft/resource/ResourceFactory;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;Ljava/util/List;Ljava/util/List;)V has 0 override(s) in child classes +[01:12:41] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:shader.GameRendererMixin from mod fabric-rendering-v1->@Inject::registerShaders(Lnet/minecraft/resource/ResourceFactory;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;Ljava/util/List;Ljava/util/List;)V won't be passed a CallbackInfo as a result +[01:12:41] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:shader.GameRendererMixin from mod fabric-rendering-v1->@Inject::registerShaders(Lnet/minecraft/resource/ResourceFactory;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;Ljava/util/List;Ljava/util/List;)V doesn't use it's CallbackInfo +[01:12:41] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:shader.GameRendererMixin from mod fabric-rendering-v1->@Inject::registerShaders(Lnet/minecraft/resource/ResourceFactory;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;Ljava/util/List;Ljava/util/List;)V has 0 override(s) in child classes +[01:12:41] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:shader.GameRendererMixin from mod fabric-rendering-v1->@Inject::registerShaders(Lnet/minecraft/resource/ResourceFactory;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;Ljava/util/List;Ljava/util/List;)V won't be passed a CallbackInfo as a result +[01:12:41] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:shader.GameRendererMixin from mod fabric-rendering-v1->@Inject::registerShaders(Lnet/minecraft/resource/ResourceFactory;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;Ljava/util/List;Ljava/util/List;)V doesn't use it's CallbackInfo +[01:12:41] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:shader.GameRendererMixin from mod fabric-rendering-v1->@Inject::registerShaders(Lnet/minecraft/resource/ResourceFactory;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;Ljava/util/List;Ljava/util/List;)V has 0 override(s) in child classes +[01:12:41] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:shader.GameRendererMixin from mod fabric-rendering-v1->@Inject::registerShaders(Lnet/minecraft/resource/ResourceFactory;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;Ljava/util/List;Ljava/util/List;)V won't be passed a CallbackInfo as a result +[01:12:41] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:shader.GameRendererMixin from mod fabric-rendering-v1->@Inject::registerShaders(Lnet/minecraft/resource/ResourceFactory;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;Ljava/util/List;Ljava/util/List;)V doesn't use it's CallbackInfo +[01:12:41] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:shader.GameRendererMixin from mod fabric-rendering-v1->@Inject::registerShaders(Lnet/minecraft/resource/ResourceFactory;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;Ljava/util/List;Ljava/util/List;)V has 0 override(s) in child classes +[01:12:41] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:shader.GameRendererMixin from mod fabric-rendering-v1->@Inject::registerShaders(Lnet/minecraft/resource/ResourceFactory;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;Ljava/util/List;Ljava/util/List;)V won't be passed a CallbackInfo as a result +[01:12:41] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:shader.GameRendererMixin from mod fabric-rendering-v1->@Inject::registerShaders(Lnet/minecraft/resource/ResourceFactory;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;Ljava/util/List;Ljava/util/List;)V doesn't use it's CallbackInfo +[01:12:41] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:shader.GameRendererMixin from mod fabric-rendering-v1->@Inject::registerShaders(Lnet/minecraft/resource/ResourceFactory;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;Ljava/util/List;Ljava/util/List;)V has 0 override(s) in child classes +[01:12:41] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:shader.GameRendererMixin from mod fabric-rendering-v1->@Inject::registerShaders(Lnet/minecraft/resource/ResourceFactory;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;Ljava/util/List;Ljava/util/List;)V won't be passed a CallbackInfo as a result +[01:12:41] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:shader.GameRendererMixin from mod fabric-rendering-v1->@Inject::registerShaders(Lnet/minecraft/resource/ResourceFactory;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;Ljava/util/List;Ljava/util/List;)V doesn't use it's CallbackInfo +[01:12:41] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:shader.GameRendererMixin from mod fabric-rendering-v1->@Inject::registerShaders(Lnet/minecraft/resource/ResourceFactory;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;Ljava/util/List;Ljava/util/List;)V has 0 override(s) in child classes +[01:12:41] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:shader.GameRendererMixin from mod fabric-rendering-v1->@Inject::registerShaders(Lnet/minecraft/resource/ResourceFactory;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;Ljava/util/List;Ljava/util/List;)V won't be passed a CallbackInfo as a result +[01:12:41] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:shader.GameRendererMixin from mod fabric-rendering-v1->@Inject::registerShaders(Lnet/minecraft/resource/ResourceFactory;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;Ljava/util/List;Ljava/util/List;)V doesn't use it's CallbackInfo +[01:12:41] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:shader.GameRendererMixin from mod fabric-rendering-v1->@Inject::registerShaders(Lnet/minecraft/resource/ResourceFactory;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;Ljava/util/List;Ljava/util/List;)V has 0 override(s) in child classes +[01:12:41] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:shader.GameRendererMixin from mod fabric-rendering-v1->@Inject::registerShaders(Lnet/minecraft/resource/ResourceFactory;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;Ljava/util/List;Ljava/util/List;)V won't be passed a CallbackInfo as a result +[01:12:41] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing shader.ShaderProgramMixin from fabric-rendering-v1.mixins.json into net.minecraft.client.gl.ShaderProgram +[01:12:41] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:shader.ShaderProgramMixin from mod fabric-rendering-v1: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[01:12:41] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing client.SpriteAtlasTextureMixin from fabric-renderer-api-v1.mixins.json into net.minecraft.client.texture.SpriteAtlasTexture +[01:12:41] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-renderer-api-v1.mixins.json:client.SpriteAtlasTextureMixin from mod fabric-renderer-api-v1: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[01:12:41] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-renderer-api-v1.mixins.json:client.SpriteAtlasTextureMixin from mod fabric-renderer-api-v1->@Inject::uploadHook(Lnet/minecraft/client/texture/SpriteLoader$StitchResult;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V doesn't use it's CallbackInfo +[01:12:41] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-renderer-api-v1.mixins.json:client.SpriteAtlasTextureMixin from mod fabric-renderer-api-v1->@Inject::uploadHook(Lnet/minecraft/client/texture/SpriteLoader$StitchResult;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V has 0 override(s) in child classes +[01:12:41] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-renderer-api-v1.mixins.json:client.SpriteAtlasTextureMixin from mod fabric-renderer-api-v1->@Inject::uploadHook(Lnet/minecraft/client/texture/SpriteLoader$StitchResult;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V won't be passed a CallbackInfo as a result +[01:12:41] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing KeyedResourceReloadListenerClientMixin from fabric-resource-loader-v0.client.mixins.json into net.minecraft.client.render.item.ItemRenderer +[01:12:41] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-resource-loader-v0.client.mixins.json:KeyedResourceReloadListenerClientMixin from mod fabric-resource-loader-v0: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[01:12:41] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing ItemRendererMixin from fabric-renderer-indigo.mixins.json into net.minecraft.client.render.item.ItemRenderer +[01:12:41] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-renderer-indigo.mixins.json:ItemRendererMixin from mod fabric-renderer-indigo: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[01:12:41] [Render thread/DEBUG] (FabricLoader/Mixin) Renaming synthetic method lambda$new$0()Lnet/fabricmc/fabric/impl/client/indigo/renderer/render/ItemRenderContext; to md5f0bfc$fabric-renderer-indigo$lambda$new$0$0 in fabric-renderer-indigo.mixins.json:ItemRendererMixin from mod fabric-renderer-indigo +[01:12:41] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-renderer-indigo.mixins.json:ItemRendererMixin from mod fabric-renderer-indigo->@Inject::hook_renderItem(Lnet/minecraft/item/ItemStack;Lnet/minecraft/client/render/model/json/ModelTransformationMode;ZLnet/minecraft/client/util/math/MatrixStack;Lnet/minecraft/client/render/VertexConsumerProvider;IILnet/minecraft/client/render/model/BakedModel;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V does use it's CallbackInfo +[01:12:41] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing GameOptionsMixin from fabric-resource-loader-v0.client.mixins.json into net.minecraft.client.option.GameOptions +[01:12:41] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-resource-loader-v0.client.mixins.json:GameOptionsMixin from mod fabric-resource-loader-v0: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[01:12:41] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing GameOptionsMixin from fabric-key-binding-api-v1.mixins.json into net.minecraft.client.option.GameOptions +[01:12:41] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-key-binding-api-v1.mixins.json:GameOptionsMixin from mod fabric-key-binding-api-v1: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[01:12:41] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-resource-loader-v0.client.mixins.json:GameOptionsMixin from mod fabric-resource-loader-v0->@Inject::onLoad(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V doesn't use it's CallbackInfo +[01:12:41] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-resource-loader-v0.client.mixins.json:GameOptionsMixin from mod fabric-resource-loader-v0->@Inject::onLoad(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V has 0 override(s) in child classes +[01:12:41] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-resource-loader-v0.client.mixins.json:GameOptionsMixin from mod fabric-resource-loader-v0->@Inject::onLoad(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V won't be passed a CallbackInfo as a result +[01:12:41] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-resource-loader-v0.client.mixins.json:GameOptionsMixin from mod fabric-resource-loader-v0->@Inject::onLoad(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V doesn't use it's CallbackInfo +[01:12:41] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-resource-loader-v0.client.mixins.json:GameOptionsMixin from mod fabric-resource-loader-v0->@Inject::onLoad(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V has 0 override(s) in child classes +[01:12:41] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-resource-loader-v0.client.mixins.json:GameOptionsMixin from mod fabric-resource-loader-v0->@Inject::onLoad(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V won't be passed a CallbackInfo as a result +[01:12:41] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-key-binding-api-v1.mixins.json:GameOptionsMixin from mod fabric-key-binding-api-v1->@Inject::loadHook(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V doesn't use it's CallbackInfo +[01:12:41] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-key-binding-api-v1.mixins.json:GameOptionsMixin from mod fabric-key-binding-api-v1->@Inject::loadHook(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V has 0 override(s) in child classes +[01:12:41] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-key-binding-api-v1.mixins.json:GameOptionsMixin from mod fabric-key-binding-api-v1->@Inject::loadHook(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V won't be passed a CallbackInfo as a result +[01:12:41] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing SoundInstanceMixin from fabric-sound-api-v1.mixins.json into net.minecraft.client.sound.SoundInstance +[01:12:41] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing ResourcePackProfileMixin from fabric-resource-loader-v0.mixins.json into net.minecraft.resource.ResourcePackProfile +[01:12:41] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-resource-loader-v0.mixins.json:ResourcePackProfileMixin from mod fabric-resource-loader-v0: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[01:12:41] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-resource-loader-v0.mixins.json:ResourcePackProfileMixin from mod fabric-resource-loader-v0->@Inject::onCreateResourcePack(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V does use it's CallbackInfoReturnable +[01:12:41] [Render thread/INFO] (net.minecraft.client.MinecraftClient) Backend library: LWJGL version 3.3.2-snapshot +[01:12:41] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing util.MixinWindow from client.mixins.json into net.minecraft.client.util.Window +[01:12:41] [Render thread/DEBUG] (FabricLoader/Mixin) client.mixins.json:util.MixinWindow from mod testclient: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_8 supports class version 52) +[01:12:42] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing MouseMixin from fabric-screen-api-v1.mixins.json into net.minecraft.client.Mouse +[01:12:42] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-screen-api-v1.mixins.json:MouseMixin from mod fabric-screen-api-v1: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[01:12:42] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-screen-api-v1.mixins.json:MouseMixin from mod fabric-screen-api-v1->@Inject::beforeMouseClickedEvent([ZLnet/minecraft/client/gui/screen/Screen;DDILorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V does use it's CallbackInfo +[01:12:42] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-screen-api-v1.mixins.json:MouseMixin from mod fabric-screen-api-v1->@Inject::afterMouseClickedEvent([ZLnet/minecraft/client/gui/screen/Screen;DDILorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V doesn't use it's CallbackInfo +[01:12:42] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-screen-api-v1.mixins.json:MouseMixin from mod fabric-screen-api-v1->@Inject::beforeMouseReleasedEvent([ZLnet/minecraft/client/gui/screen/Screen;DDILorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V does use it's CallbackInfo +[01:12:42] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-screen-api-v1.mixins.json:MouseMixin from mod fabric-screen-api-v1->@Inject::afterMouseReleasedEvent([ZLnet/minecraft/client/gui/screen/Screen;DDILorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V doesn't use it's CallbackInfo +[01:12:42] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-screen-api-v1.mixins.json:MouseMixin from mod fabric-screen-api-v1->@Inject::beforeMouseScrollEvent(JDDLorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;DDD)V does use it's CallbackInfo +[01:12:42] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-screen-api-v1.mixins.json:MouseMixin from mod fabric-screen-api-v1->@Inject::afterMouseScrollEvent(JDDLorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;DDD)V doesn't use it's CallbackInfo +[01:12:42] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-screen-api-v1.mixins.json:MouseMixin from mod fabric-screen-api-v1->@Inject::afterMouseScrollEvent(JDDLorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;DDD)V has 0 override(s) in child classes +[01:12:42] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-screen-api-v1.mixins.json:MouseMixin from mod fabric-screen-api-v1->@Inject::afterMouseScrollEvent(JDDLorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;DDD)V won't be passed a CallbackInfo as a result +[01:12:42] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing KeyboardMixin from fabric-screen-api-v1.mixins.json into net.minecraft.client.Keyboard +[01:12:42] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-screen-api-v1.mixins.json:KeyboardMixin from mod fabric-screen-api-v1: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[01:12:42] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-screen-api-v1.mixins.json:KeyboardMixin from mod fabric-screen-api-v1->@Inject::beforeKeyPressedEvent(ILnet/minecraft/client/gui/screen/Screen;[ZIIILorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V does use it's CallbackInfo +[01:12:42] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-screen-api-v1.mixins.json:KeyboardMixin from mod fabric-screen-api-v1->@Inject::afterKeyPressedEvent(ILnet/minecraft/client/gui/screen/Screen;[ZIIILorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V doesn't use it's CallbackInfo +[01:12:42] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-screen-api-v1.mixins.json:KeyboardMixin from mod fabric-screen-api-v1->@Inject::beforeKeyReleasedEvent(ILnet/minecraft/client/gui/screen/Screen;[ZIIILorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V does use it's CallbackInfo +[01:12:42] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-screen-api-v1.mixins.json:KeyboardMixin from mod fabric-screen-api-v1->@Inject::afterKeyReleasedEvent(ILnet/minecraft/client/gui/screen/Screen;[ZIIILorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V doesn't use it's CallbackInfo +[01:12:42] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing ReloadableResourceManagerImplMixin from fabric-resource-loader-v0.mixins.json into net.minecraft.resource.ReloadableResourceManagerImpl +[01:12:42] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-resource-loader-v0.mixins.json:ReloadableResourceManagerImplMixin from mod fabric-resource-loader-v0: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[01:12:42] [Render thread/DEBUG] (FabricLoader/Mixin) Renaming synthetic method lambda$getResourcePackNames$0(Lnet/minecraft/resource/ResourcePack;)Ljava/lang/String; to md5f0bfc$fabric-resource-loader-v0$lambda$getResourcePackNames$0$0 in fabric-resource-loader-v0.mixins.json:ReloadableResourceManagerImplMixin from mod fabric-resource-loader-v0 +[01:12:42] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-resource-loader-v0.mixins.json:ReloadableResourceManagerImplMixin from mod fabric-resource-loader-v0->@Inject::getResourcePackNames(Ljava/util/List;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V does use it's CallbackInfoReturnable +[01:12:42] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing LifecycledResourceManagerImplMixin from fabric-resource-loader-v0.mixins.json into net.minecraft.resource.LifecycledResourceManagerImpl +[01:12:42] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-resource-loader-v0.mixins.json:LifecycledResourceManagerImplMixin from mod fabric-resource-loader-v0: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[01:12:42] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-resource-loader-v0.mixins.json:LifecycledResourceManagerImplMixin from mod fabric-resource-loader-v0->@Inject::init(Lnet/minecraft/resource/ResourceType;Ljava/util/List;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V doesn't use it's CallbackInfo +[01:12:42] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-resource-loader-v0.mixins.json:LifecycledResourceManagerImplMixin from mod fabric-resource-loader-v0->@Inject::init(Lnet/minecraft/resource/ResourceType;Ljava/util/List;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V has 0 override(s) in child classes +[01:12:42] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-resource-loader-v0.mixins.json:LifecycledResourceManagerImplMixin from mod fabric-resource-loader-v0->@Inject::init(Lnet/minecraft/resource/ResourceType;Ljava/util/List;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V won't be passed a CallbackInfo as a result +[01:12:42] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing KeyedResourceReloadListenerClientMixin from fabric-resource-loader-v0.client.mixins.json into net.minecraft.client.resource.language.LanguageManager +[01:12:42] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-resource-loader-v0.client.mixins.json:KeyedResourceReloadListenerClientMixin from mod fabric-resource-loader-v0: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[01:12:42] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing KeyedResourceReloadListenerClientMixin from fabric-resource-loader-v0.client.mixins.json into net.minecraft.client.texture.TextureManager +[01:12:42] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-resource-loader-v0.client.mixins.json:KeyedResourceReloadListenerClientMixin from mod fabric-resource-loader-v0: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[01:12:42] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing KeyedResourceReloadListenerClientMixin from fabric-resource-loader-v0.client.mixins.json into net.minecraft.client.sound.SoundManager +[01:12:42] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-resource-loader-v0.client.mixins.json:KeyedResourceReloadListenerClientMixin from mod fabric-resource-loader-v0: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[01:12:42] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing SoundSystemMixin from fabric-sound-api-v1.mixins.json into net.minecraft.client.sound.SoundSystem +[01:12:42] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing FontManagerMixin from fabric-resource-loader-v0.client.mixins.json into net.minecraft.client.font.FontManager$1 +[01:12:42] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-resource-loader-v0.client.mixins.json:FontManagerMixin from mod fabric-resource-loader-v0: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[01:12:42] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing BlockColorsMixin from fabric-registry-sync-v0.client.mixins.json into net.minecraft.client.color.block.BlockColors +[01:12:42] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-registry-sync-v0.client.mixins.json:BlockColorsMixin from mod fabric-registry-sync-v0: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[01:12:42] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing BlockColorsMixin from fabric-rendering-v1.mixins.json into net.minecraft.client.color.block.BlockColors +[01:12:42] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:BlockColorsMixin from mod fabric-rendering-v1: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[01:12:42] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-registry-sync-v0.client.mixins.json:BlockColorsMixin from mod fabric-registry-sync-v0->@Inject::create(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V doesn't use it's CallbackInfo +[01:12:42] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-registry-sync-v0.client.mixins.json:BlockColorsMixin from mod fabric-registry-sync-v0->@Inject::create(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V has 0 override(s) in child classes +[01:12:42] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-registry-sync-v0.client.mixins.json:BlockColorsMixin from mod fabric-registry-sync-v0->@Inject::create(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V won't be passed a CallbackInfo as a result +[01:12:42] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:BlockColorsMixin from mod fabric-rendering-v1->@Inject::create(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V does use it's CallbackInfoReturnable +[01:12:42] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing ItemColorsMixin from fabric-registry-sync-v0.client.mixins.json into net.minecraft.client.color.item.ItemColors +[01:12:42] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-registry-sync-v0.client.mixins.json:ItemColorsMixin from mod fabric-registry-sync-v0: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[01:12:42] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing ItemColorsMixin from fabric-rendering-v1.mixins.json into net.minecraft.client.color.item.ItemColors +[01:12:42] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:ItemColorsMixin from mod fabric-rendering-v1: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[01:12:42] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-registry-sync-v0.client.mixins.json:ItemColorsMixin from mod fabric-registry-sync-v0->@Inject::create(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V doesn't use it's CallbackInfo +[01:12:42] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-registry-sync-v0.client.mixins.json:ItemColorsMixin from mod fabric-registry-sync-v0->@Inject::create(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V has 0 override(s) in child classes +[01:12:42] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-registry-sync-v0.client.mixins.json:ItemColorsMixin from mod fabric-registry-sync-v0->@Inject::create(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V won't be passed a CallbackInfo as a result +[01:12:42] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:ItemColorsMixin from mod fabric-rendering-v1->@Inject::create(Lnet/minecraft/client/color/block/BlockColors;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V does use it's CallbackInfoReturnable +[01:12:42] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing KeyedResourceReloadListenerClientMixin from fabric-resource-loader-v0.client.mixins.json into net.minecraft.client.render.model.BakedModelManager +[01:12:42] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-resource-loader-v0.client.mixins.json:KeyedResourceReloadListenerClientMixin from mod fabric-resource-loader-v0: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[01:12:42] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing BakedModelManagerMixin from fabric-models-v0.mixins.json into net.minecraft.client.render.model.BakedModelManager +[01:12:42] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-models-v0.mixins.json:BakedModelManagerMixin from mod fabric-models-v0: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[01:12:42] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing TexturedRenderLayersMixin from fabric-object-builder-v1.client.mixins.json into net.minecraft.client.render.TexturedRenderLayers +[01:12:42] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-object-builder-v1.client.mixins.json:TexturedRenderLayersMixin from mod fabric-object-builder-api-v1: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[01:12:42] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-object-builder-v1.client.mixins.json:TexturedRenderLayersMixin from mod fabric-object-builder-api-v1->@Inject::modifyTextureId(Lnet/minecraft/block/WoodType;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V does use it's CallbackInfoReturnable +[01:12:42] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-object-builder-v1.client.mixins.json:TexturedRenderLayersMixin from mod fabric-object-builder-api-v1->@Inject::modifyHangingTextureId(Lnet/minecraft/block/WoodType;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V does use it's CallbackInfoReturnable +[01:12:42] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing KeyedResourceReloadListenerClientMixin from fabric-resource-loader-v0.client.mixins.json into net.minecraft.client.render.block.BlockRenderManager +[01:12:42] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-resource-loader-v0.client.mixins.json:KeyedResourceReloadListenerClientMixin from mod fabric-resource-loader-v0: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[01:12:42] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing BuiltinModelItemRendererMixin from fabric-rendering-v1.mixins.json into net.minecraft.client.render.item.BuiltinModelItemRenderer +[01:12:42] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:BuiltinModelItemRendererMixin from mod fabric-rendering-v1: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[01:12:42] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:BuiltinModelItemRendererMixin from mod fabric-rendering-v1->@Inject::fabric_onRender(Lnet/minecraft/item/ItemStack;Lnet/minecraft/client/render/model/json/ModelTransformationMode;Lnet/minecraft/client/util/math/MatrixStack;Lnet/minecraft/client/render/VertexConsumerProvider;IILorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V does use it's CallbackInfo +[01:12:42] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing ItemModelsMixin from fabric-registry-sync-v0.client.mixins.json into net.minecraft.client.render.item.ItemModels +[01:12:42] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-registry-sync-v0.client.mixins.json:ItemModelsMixin from mod fabric-registry-sync-v0: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[01:12:42] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-registry-sync-v0.client.mixins.json:ItemModelsMixin from mod fabric-registry-sync-v0->@Inject::onInit(Lnet/minecraft/client/render/model/BakedModelManager;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V doesn't use it's CallbackInfo +[01:12:42] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-registry-sync-v0.client.mixins.json:ItemModelsMixin from mod fabric-registry-sync-v0->@Inject::onInit(Lnet/minecraft/client/render/model/BakedModelManager;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V has 0 override(s) in child classes +[01:12:42] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-registry-sync-v0.client.mixins.json:ItemModelsMixin from mod fabric-registry-sync-v0->@Inject::onInit(Lnet/minecraft/client/render/model/BakedModelManager;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V won't be passed a CallbackInfo as a result +[01:12:42] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing ModelLoaderMixin from fabric-models-v0.mixins.json into net.minecraft.client.render.model.ModelLoader +[01:12:42] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-models-v0.mixins.json:ModelLoaderMixin from mod fabric-models-v0: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[01:12:42] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-models-v0.mixins.json:ModelLoaderMixin from mod fabric-models-v0->@Inject::loadModelHook(Lnet/minecraft/util/Identifier;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V does use it's CallbackInfo +[01:12:42] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-models-v0.mixins.json:ModelLoaderMixin from mod fabric-models-v0->@Inject::addModelHook(Lnet/minecraft/client/util/ModelIdentifier;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V doesn't use it's CallbackInfo +[01:12:42] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-models-v0.mixins.json:ModelLoaderMixin from mod fabric-models-v0->@Inject::addModelHook(Lnet/minecraft/client/util/ModelIdentifier;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V has 0 override(s) in child classes +[01:12:42] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-models-v0.mixins.json:ModelLoaderMixin from mod fabric-models-v0->@Inject::addModelHook(Lnet/minecraft/client/util/ModelIdentifier;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V won't be passed a CallbackInfo as a result +[01:12:42] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-models-v0.mixins.json:ModelLoaderMixin from mod fabric-models-v0->@Inject::initFinishedHook(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V doesn't use it's CallbackInfo +[01:12:42] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-models-v0.mixins.json:ModelLoaderMixin from mod fabric-models-v0->@Inject::initFinishedHook(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V has 0 override(s) in child classes +[01:12:42] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-models-v0.mixins.json:ModelLoaderMixin from mod fabric-models-v0->@Inject::initFinishedHook(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V won't be passed a CallbackInfo as a result +[01:12:42] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing client.BakedModelMixin from fabric-renderer-api-v1.mixins.json into net.minecraft.client.render.model.BakedModel +[01:12:42] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-renderer-api-v1.mixins.json:client.BakedModelMixin from mod fabric-renderer-api-v1: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[01:12:42] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing BlockModelRendererMixin from fabric-renderer-indigo.mixins.json into net.minecraft.client.render.block.BlockModelRenderer +[01:12:42] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-renderer-indigo.mixins.json:BlockModelRendererMixin from mod fabric-renderer-indigo: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[01:12:42] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-renderer-indigo.mixins.json:BlockModelRendererMixin from mod fabric-renderer-indigo->@Inject::hookRender(Lnet/minecraft/world/BlockRenderView;Lnet/minecraft/client/render/model/BakedModel;Lnet/minecraft/block/BlockState;Lnet/minecraft/util/math/BlockPos;Lnet/minecraft/client/util/math/MatrixStack;Lnet/minecraft/client/render/VertexConsumer;ZLnet/minecraft/util/math/random/Random;JILorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V does use it's CallbackInfo +[01:12:42] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-renderer-indigo.mixins.json:BlockModelRendererMixin from mod fabric-renderer-indigo->@Inject::onInit(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V doesn't use it's CallbackInfo +[01:12:42] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-renderer-indigo.mixins.json:BlockModelRendererMixin from mod fabric-renderer-indigo->@Inject::onInit(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V has 0 override(s) in child classes +[01:12:42] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-renderer-indigo.mixins.json:BlockModelRendererMixin from mod fabric-renderer-indigo->@Inject::onInit(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V won't be passed a CallbackInfo as a result +[01:12:42] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing FluidRendererMixin from fabric-rendering-fluids-v1.mixins.json into net.minecraft.client.render.block.FluidRenderer +[01:12:42] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-fluids-v1.mixins.json:FluidRendererMixin from mod fabric-rendering-fluids-v1: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[01:12:42] [Render thread/DEBUG] (FabricLoader/Mixin) Renaming synthetic method lambda$new$0()Ljava/lang/Boolean; to md5f0bfc$fabric-rendering-fluids-v1$lambda$new$0$0 in fabric-rendering-fluids-v1.mixins.json:FluidRendererMixin from mod fabric-rendering-fluids-v1 +[01:12:42] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-fluids-v1.mixins.json:FluidRendererMixin from mod fabric-rendering-fluids-v1->@Inject::onResourceReloadReturn(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V doesn't use it's CallbackInfo +[01:12:42] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-fluids-v1.mixins.json:FluidRendererMixin from mod fabric-rendering-fluids-v1->@Inject::onResourceReloadReturn(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V has 0 override(s) in child classes +[01:12:42] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-fluids-v1.mixins.json:FluidRendererMixin from mod fabric-rendering-fluids-v1->@Inject::onResourceReloadReturn(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V won't be passed a CallbackInfo as a result +[01:12:42] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-fluids-v1.mixins.json:FluidRendererMixin from mod fabric-rendering-fluids-v1->@Inject::tesselate(Lnet/minecraft/world/BlockRenderView;Lnet/minecraft/util/math/BlockPos;Lnet/minecraft/client/render/VertexConsumer;Lnet/minecraft/block/BlockState;Lnet/minecraft/fluid/FluidState;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V does use it's CallbackInfo +[01:12:42] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-fluids-v1.mixins.json:FluidRendererMixin from mod fabric-rendering-fluids-v1->@Inject::tesselateReturn(Lnet/minecraft/world/BlockRenderView;Lnet/minecraft/util/math/BlockPos;Lnet/minecraft/client/render/VertexConsumer;Lnet/minecraft/block/BlockState;Lnet/minecraft/fluid/FluidState;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V doesn't use it's CallbackInfo +[01:12:42] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-fluids-v1.mixins.json:FluidRendererMixin from mod fabric-rendering-fluids-v1->@Inject::tesselateReturn(Lnet/minecraft/world/BlockRenderView;Lnet/minecraft/util/math/BlockPos;Lnet/minecraft/client/render/VertexConsumer;Lnet/minecraft/block/BlockState;Lnet/minecraft/fluid/FluidState;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V has 0 override(s) in child classes +[01:12:42] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-fluids-v1.mixins.json:FluidRendererMixin from mod fabric-rendering-fluids-v1->@Inject::tesselateReturn(Lnet/minecraft/world/BlockRenderView;Lnet/minecraft/util/math/BlockPos;Lnet/minecraft/client/render/VertexConsumer;Lnet/minecraft/block/BlockState;Lnet/minecraft/fluid/FluidState;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V won't be passed a CallbackInfo as a result +[01:12:42] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-fluids-v1.mixins.json:FluidRendererMixin from mod fabric-rendering-fluids-v1->@Inject::tesselateReturn(Lnet/minecraft/world/BlockRenderView;Lnet/minecraft/util/math/BlockPos;Lnet/minecraft/client/render/VertexConsumer;Lnet/minecraft/block/BlockState;Lnet/minecraft/fluid/FluidState;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V doesn't use it's CallbackInfo +[01:12:42] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-fluids-v1.mixins.json:FluidRendererMixin from mod fabric-rendering-fluids-v1->@Inject::tesselateReturn(Lnet/minecraft/world/BlockRenderView;Lnet/minecraft/util/math/BlockPos;Lnet/minecraft/client/render/VertexConsumer;Lnet/minecraft/block/BlockState;Lnet/minecraft/fluid/FluidState;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V has 0 override(s) in child classes +[01:12:42] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-fluids-v1.mixins.json:FluidRendererMixin from mod fabric-rendering-fluids-v1->@Inject::tesselateReturn(Lnet/minecraft/world/BlockRenderView;Lnet/minecraft/util/math/BlockPos;Lnet/minecraft/client/render/VertexConsumer;Lnet/minecraft/block/BlockState;Lnet/minecraft/fluid/FluidState;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V won't be passed a CallbackInfo as a result +[01:12:42] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing HeldItemRendererMixin from fabric-item-api-v1.client.mixins.json into net.minecraft.client.render.item.HeldItemRenderer +[01:12:42] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-item-api-v1.client.mixins.json:HeldItemRendererMixin from mod fabric-item-api-v1: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[01:12:42] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-item-api-v1.client.mixins.json:HeldItemRendererMixin from mod fabric-item-api-v1->@Inject::modifyProgressAnimation(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V doesn't use it's CallbackInfo +[01:12:42] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-item-api-v1.client.mixins.json:HeldItemRendererMixin from mod fabric-item-api-v1->@Inject::modifyProgressAnimation(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V has 0 override(s) in child classes +[01:12:42] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-item-api-v1.client.mixins.json:HeldItemRendererMixin from mod fabric-item-api-v1->@Inject::modifyProgressAnimation(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V won't be passed a CallbackInfo as a result +[01:12:43] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing KeyedResourceReloadListenerClientMixin from fabric-resource-loader-v0.client.mixins.json into net.minecraft.client.render.WorldRenderer +[01:12:43] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-resource-loader-v0.client.mixins.json:KeyedResourceReloadListenerClientMixin from mod fabric-resource-loader-v0: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[01:12:43] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing WorldRendererMixin from fabric-rendering-v1.mixins.json into net.minecraft.client.render.WorldRenderer +[01:12:43] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:WorldRendererMixin from mod fabric-rendering-v1: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[01:12:43] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:WorldRendererMixin from mod fabric-rendering-v1->@Inject::beforeRender(Lnet/minecraft/client/util/math/MatrixStack;FJZLnet/minecraft/client/render/Camera;Lnet/minecraft/client/render/GameRenderer;Lnet/minecraft/client/render/LightmapTextureManager;Lorg/joml/Matrix4f;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V doesn't use it's CallbackInfo +[01:12:43] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:WorldRendererMixin from mod fabric-rendering-v1->@Inject::beforeRender(Lnet/minecraft/client/util/math/MatrixStack;FJZLnet/minecraft/client/render/Camera;Lnet/minecraft/client/render/GameRenderer;Lnet/minecraft/client/render/LightmapTextureManager;Lorg/joml/Matrix4f;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V has 0 override(s) in child classes +[01:12:43] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:WorldRendererMixin from mod fabric-rendering-v1->@Inject::beforeRender(Lnet/minecraft/client/util/math/MatrixStack;FJZLnet/minecraft/client/render/Camera;Lnet/minecraft/client/render/GameRenderer;Lnet/minecraft/client/render/LightmapTextureManager;Lorg/joml/Matrix4f;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V won't be passed a CallbackInfo as a result +[01:12:43] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:WorldRendererMixin from mod fabric-rendering-v1->@Inject::afterTerrainSetup(Lnet/minecraft/client/render/Camera;Lnet/minecraft/client/render/Frustum;ZZLorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V doesn't use it's CallbackInfo +[01:12:43] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:WorldRendererMixin from mod fabric-rendering-v1->@Inject::afterTerrainSetup(Lnet/minecraft/client/render/Camera;Lnet/minecraft/client/render/Frustum;ZZLorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V has 0 override(s) in child classes +[01:12:43] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:WorldRendererMixin from mod fabric-rendering-v1->@Inject::afterTerrainSetup(Lnet/minecraft/client/render/Camera;Lnet/minecraft/client/render/Frustum;ZZLorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V won't be passed a CallbackInfo as a result +[01:12:43] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:WorldRendererMixin from mod fabric-rendering-v1->@Inject::afterTerrainSolid(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V doesn't use it's CallbackInfo +[01:12:43] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:WorldRendererMixin from mod fabric-rendering-v1->@Inject::afterTerrainSolid(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V has 0 override(s) in child classes +[01:12:43] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:WorldRendererMixin from mod fabric-rendering-v1->@Inject::afterTerrainSolid(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V won't be passed a CallbackInfo as a result +[01:12:43] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:WorldRendererMixin from mod fabric-rendering-v1->@Inject::afterEntities(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V doesn't use it's CallbackInfo +[01:12:43] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:WorldRendererMixin from mod fabric-rendering-v1->@Inject::afterEntities(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V has 0 override(s) in child classes +[01:12:43] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:WorldRendererMixin from mod fabric-rendering-v1->@Inject::afterEntities(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V won't be passed a CallbackInfo as a result +[01:12:43] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:WorldRendererMixin from mod fabric-rendering-v1->@Inject::beforeRenderOutline(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V doesn't use it's CallbackInfo +[01:12:43] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:WorldRendererMixin from mod fabric-rendering-v1->@Inject::beforeRenderOutline(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V has 0 override(s) in child classes +[01:12:43] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:WorldRendererMixin from mod fabric-rendering-v1->@Inject::beforeRenderOutline(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V won't be passed a CallbackInfo as a result +[01:12:43] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:WorldRendererMixin from mod fabric-rendering-v1->@Inject::onDrawBlockOutline(Lnet/minecraft/client/util/math/MatrixStack;Lnet/minecraft/client/render/VertexConsumer;Lnet/minecraft/entity/Entity;DDDLnet/minecraft/util/math/BlockPos;Lnet/minecraft/block/BlockState;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V does use it's CallbackInfo +[01:12:43] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:WorldRendererMixin from mod fabric-rendering-v1->@Inject::beforeDebugRender(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V doesn't use it's CallbackInfo +[01:12:43] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:WorldRendererMixin from mod fabric-rendering-v1->@Inject::beforeDebugRender(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V has 0 override(s) in child classes +[01:12:43] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:WorldRendererMixin from mod fabric-rendering-v1->@Inject::beforeDebugRender(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V won't be passed a CallbackInfo as a result +[01:12:43] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:WorldRendererMixin from mod fabric-rendering-v1->@Inject::onRenderParticles(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V doesn't use it's CallbackInfo +[01:12:43] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:WorldRendererMixin from mod fabric-rendering-v1->@Inject::onRenderParticles(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V has 0 override(s) in child classes +[01:12:43] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:WorldRendererMixin from mod fabric-rendering-v1->@Inject::onRenderParticles(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V won't be passed a CallbackInfo as a result +[01:12:43] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:WorldRendererMixin from mod fabric-rendering-v1->@Inject::onRenderParticles(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V doesn't use it's CallbackInfo +[01:12:43] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:WorldRendererMixin from mod fabric-rendering-v1->@Inject::onRenderParticles(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V has 0 override(s) in child classes +[01:12:43] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:WorldRendererMixin from mod fabric-rendering-v1->@Inject::onRenderParticles(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V won't be passed a CallbackInfo as a result +[01:12:43] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:WorldRendererMixin from mod fabric-rendering-v1->@Inject::beforeClouds(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V doesn't use it's CallbackInfo +[01:12:43] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:WorldRendererMixin from mod fabric-rendering-v1->@Inject::beforeClouds(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V has 0 override(s) in child classes +[01:12:43] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:WorldRendererMixin from mod fabric-rendering-v1->@Inject::beforeClouds(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V won't be passed a CallbackInfo as a result +[01:12:43] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:WorldRendererMixin from mod fabric-rendering-v1->@Inject::beforeClouds(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V doesn't use it's CallbackInfo +[01:12:43] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:WorldRendererMixin from mod fabric-rendering-v1->@Inject::beforeClouds(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V has 0 override(s) in child classes +[01:12:43] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:WorldRendererMixin from mod fabric-rendering-v1->@Inject::beforeClouds(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V won't be passed a CallbackInfo as a result +[01:12:43] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:WorldRendererMixin from mod fabric-rendering-v1->@Inject::beforeClouds(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V doesn't use it's CallbackInfo +[01:12:43] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:WorldRendererMixin from mod fabric-rendering-v1->@Inject::beforeClouds(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V has 0 override(s) in child classes +[01:12:43] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:WorldRendererMixin from mod fabric-rendering-v1->@Inject::beforeClouds(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V won't be passed a CallbackInfo as a result +[01:12:43] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:WorldRendererMixin from mod fabric-rendering-v1->@Inject::beforeClouds(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V doesn't use it's CallbackInfo +[01:12:43] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:WorldRendererMixin from mod fabric-rendering-v1->@Inject::beforeClouds(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V has 0 override(s) in child classes +[01:12:43] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:WorldRendererMixin from mod fabric-rendering-v1->@Inject::beforeClouds(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V won't be passed a CallbackInfo as a result +[01:12:43] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:WorldRendererMixin from mod fabric-rendering-v1->@Inject::onChunkDebugRender(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V doesn't use it's CallbackInfo +[01:12:43] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:WorldRendererMixin from mod fabric-rendering-v1->@Inject::onChunkDebugRender(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V has 0 override(s) in child classes +[01:12:43] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:WorldRendererMixin from mod fabric-rendering-v1->@Inject::onChunkDebugRender(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V won't be passed a CallbackInfo as a result +[01:12:43] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:WorldRendererMixin from mod fabric-rendering-v1->@Inject::afterRender(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V doesn't use it's CallbackInfo +[01:12:43] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:WorldRendererMixin from mod fabric-rendering-v1->@Inject::afterRender(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V has 0 override(s) in child classes +[01:12:43] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:WorldRendererMixin from mod fabric-rendering-v1->@Inject::afterRender(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V won't be passed a CallbackInfo as a result +[01:12:43] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:WorldRendererMixin from mod fabric-rendering-v1->@Inject::onReload(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V doesn't use it's CallbackInfo +[01:12:43] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:WorldRendererMixin from mod fabric-rendering-v1->@Inject::onReload(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V has 0 override(s) in child classes +[01:12:43] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:WorldRendererMixin from mod fabric-rendering-v1->@Inject::onReload(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V won't be passed a CallbackInfo as a result +[01:12:43] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:WorldRendererMixin from mod fabric-rendering-v1->@Inject::renderWeather(Lnet/minecraft/client/render/LightmapTextureManager;FDDDLorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V does use it's CallbackInfo +[01:12:43] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:WorldRendererMixin from mod fabric-rendering-v1->@Inject::renderCloud(Lnet/minecraft/client/util/math/MatrixStack;Lorg/joml/Matrix4f;FDDDLorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V does use it's CallbackInfo +[01:12:43] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:WorldRendererMixin from mod fabric-rendering-v1->@Inject::renderSky(Lnet/minecraft/client/util/math/MatrixStack;Lorg/joml/Matrix4f;FLnet/minecraft/client/render/Camera;ZLjava/lang/Runnable;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V does use it's CallbackInfo +[01:12:43] [Render thread/DEBUG] (com.mojang.blaze3d.systems.RenderSystem) Growing IndexBuffer: Old limit 0, new limit 9360. +[01:12:43] [Render thread/DEBUG] (com.mojang.blaze3d.systems.RenderSystem) Growing IndexBuffer: Old limit 0, new limit 20. +[01:12:43] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing ItemGroupsAccessor from fabric-item-group-api-v1.mixins.json into net.minecraft.item.ItemGroups +[01:12:43] [Render thread/DEBUG] (FabricLoader/Mixin) Renaming @Accessor method setGroups(Ljava/util/List;)V to setGroups$fabric-item-group-api-v1_$md$5f0bfc$0 in fabric-item-group-api-v1.mixins.json:ItemGroupsAccessor from mod fabric-item-group-api-v1 +[01:12:43] [Render thread/DEBUG] (FabricLoader/Mixin) Renaming @Invoker method invokeCollect([Lnet/minecraft/item/ItemGroup;)Ljava/util/List; to invokeCollect$fabric-item-group-api-v1_$md$5f0bfc$1 in fabric-item-group-api-v1.mixins.json:ItemGroupsAccessor from mod fabric-item-group-api-v1 +[01:12:43] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing ItemGroupsMixin from fabric-item-group-api-v1.mixins.json into net.minecraft.item.ItemGroups +[01:12:43] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-item-group-api-v1.mixins.json:ItemGroupsMixin from mod fabric-item-group-api-v1->@Inject::collect([Lnet/minecraft/item/ItemGroup;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V does use it's CallbackInfoReturnable +[01:12:43] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing ItemGroupAccessor from fabric-item-group-api-v1.mixins.json into net.minecraft.item.ItemGroup +[01:12:43] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing ItemGroupMixin from fabric-item-group-api-v1.mixins.json into net.minecraft.item.ItemGroup +[01:12:43] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-item-group-api-v1.mixins.json:ItemGroupMixin from mod fabric-item-group-api-v1->@Inject::getStacks(Lnet/minecraft/item/ItemGroup$DisplayContext;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V doesn't use it's CallbackInfo +[01:12:43] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-item-group-api-v1.mixins.json:ItemGroupMixin from mod fabric-item-group-api-v1->@Inject::getStacks(Lnet/minecraft/item/ItemGroup$DisplayContext;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V has 0 override(s) in child classes +[01:12:43] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-item-group-api-v1.mixins.json:ItemGroupMixin from mod fabric-item-group-api-v1->@Inject::getStacks(Lnet/minecraft/item/ItemGroup$DisplayContext;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V won't be passed a CallbackInfo as a result +[01:12:43] [Render thread/DEBUG] (FabricLoader/Mixin) Generating mapped inner class net/minecraft/item/ItemGroups$1ItemGroupPosition$13736f89f50b45babd9f47f8ec9874aa (originally net/fabricmc/fabric/mixin/itemgroup/ItemGroupsMixin$1ItemGroupPosition) +[01:12:43] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing ParticleManagerMixin from fabric-particles-v1.client.mixins.json into net.minecraft.client.particle.ParticleManager +[01:12:43] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-particles-v1.client.mixins.json:ParticleManagerMixin from mod fabric-particles-v1: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[01:12:43] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing ParticleManagerAccessor from fabric-particles-v1.client.mixins.json into net.minecraft.client.particle.ParticleManager +[01:12:43] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-particles-v1.client.mixins.json:ParticleManagerAccessor from mod fabric-particles-v1: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[01:12:43] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing ParticleManagerMixin from fabric-registry-sync-v0.client.mixins.json into net.minecraft.client.particle.ParticleManager +[01:12:43] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-registry-sync-v0.client.mixins.json:ParticleManagerMixin from mod fabric-registry-sync-v0: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[01:12:43] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-particles-v1.client.mixins.json:ParticleManagerMixin from mod fabric-particles-v1->@Inject::onRegisterDefaultFactories(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V doesn't use it's CallbackInfo +[01:12:43] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-particles-v1.client.mixins.json:ParticleManagerMixin from mod fabric-particles-v1->@Inject::onRegisterDefaultFactories(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V has 0 override(s) in child classes +[01:12:43] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-particles-v1.client.mixins.json:ParticleManagerMixin from mod fabric-particles-v1->@Inject::onRegisterDefaultFactories(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V won't be passed a CallbackInfo as a result +[01:12:43] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-registry-sync-v0.client.mixins.json:ParticleManagerMixin from mod fabric-registry-sync-v0->@Inject::onInit(Lnet/minecraft/client/world/ClientWorld;Lnet/minecraft/client/texture/TextureManager;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V doesn't use it's CallbackInfo +[01:12:43] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-registry-sync-v0.client.mixins.json:ParticleManagerMixin from mod fabric-registry-sync-v0->@Inject::onInit(Lnet/minecraft/client/world/ClientWorld;Lnet/minecraft/client/texture/TextureManager;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V has 0 override(s) in child classes +[01:12:43] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-registry-sync-v0.client.mixins.json:ParticleManagerMixin from mod fabric-registry-sync-v0->@Inject::onInit(Lnet/minecraft/client/world/ClientWorld;Lnet/minecraft/client/texture/TextureManager;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V won't be passed a CallbackInfo as a result +[01:12:43] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing ParticleManagerAccessor$SimpleSpriteProviderAccessor from fabric-particles-v1.client.mixins.json into net.minecraft.client.particle.ParticleManager$SimpleSpriteProvider +[01:12:43] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-particles-v1.client.mixins.json:ParticleManagerAccessor$SimpleSpriteProviderAccessor from mod fabric-particles-v1: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[01:12:43] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing InGameHudMixin from fabric-rendering-v1.mixins.json into net.minecraft.client.gui.hud.InGameHud +[01:12:43] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:InGameHudMixin from mod fabric-rendering-v1: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[01:12:43] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:InGameHudMixin from mod fabric-rendering-v1->@Inject::render(Lnet/minecraft/client/util/math/MatrixStack;FLorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V doesn't use it's CallbackInfo +[01:12:43] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:InGameHudMixin from mod fabric-rendering-v1->@Inject::render(Lnet/minecraft/client/util/math/MatrixStack;FLorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V has 0 override(s) in child classes +[01:12:43] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:InGameHudMixin from mod fabric-rendering-v1->@Inject::render(Lnet/minecraft/client/util/math/MatrixStack;FLorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V won't be passed a CallbackInfo as a result +[01:12:43] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing DebugHudMixin from fabric-renderer-api-v1.debughud.mixins.json into net.minecraft.client.gui.hud.DebugHud +[01:12:43] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-renderer-api-v1.debughud.mixins.json:DebugHudMixin from mod fabric-renderer-api-v1: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[01:12:43] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-renderer-api-v1.debughud.mixins.json:DebugHudMixin from mod fabric-renderer-api-v1->@Inject::getLeftText(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V does use it's CallbackInfoReturnable +[01:12:43] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-renderer-api-v1.debughud.mixins.json:DebugHudMixin from mod fabric-renderer-api-v1->@Inject::getLeftText(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V does use it's CallbackInfoReturnable +[01:12:43] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing shader.ShaderProgramImportProcessorMixin from fabric-rendering-v1.mixins.json into net.minecraft.client.gl.ShaderProgram$1 +[01:12:43] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:shader.ShaderProgramImportProcessorMixin from mod fabric-rendering-v1: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[01:12:43] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:shader.ShaderProgramImportProcessorMixin from mod fabric-rendering-v1->@Inject::captureImport(ZLjava/lang/String;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V doesn't use it's CallbackInfoReturnable +[01:12:43] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:shader.ShaderProgramImportProcessorMixin from mod fabric-rendering-v1->@Inject::captureImport(ZLjava/lang/String;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V has 0 override(s) in child classes +[01:12:43] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:shader.ShaderProgramImportProcessorMixin from mod fabric-rendering-v1->@Inject::captureImport(ZLjava/lang/String;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V won't be passed a CallbackInfoReturnable as a result +[01:12:43] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:shader.ShaderProgramImportProcessorMixin from mod fabric-rendering-v1->@Inject::uncaptureImport(ZLjava/lang/String;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V doesn't use it's CallbackInfoReturnable +[01:12:43] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:shader.ShaderProgramImportProcessorMixin from mod fabric-rendering-v1->@Inject::uncaptureImport(ZLjava/lang/String;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V has 0 override(s) in child classes +[01:12:43] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:shader.ShaderProgramImportProcessorMixin from mod fabric-rendering-v1->@Inject::uncaptureImport(ZLjava/lang/String;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V won't be passed a CallbackInfoReturnable as a result +[01:12:43] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:shader.ShaderProgramImportProcessorMixin from mod fabric-rendering-v1->@Inject::uncaptureImport(ZLjava/lang/String;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V doesn't use it's CallbackInfoReturnable +[01:12:43] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:shader.ShaderProgramImportProcessorMixin from mod fabric-rendering-v1->@Inject::uncaptureImport(ZLjava/lang/String;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V has 0 override(s) in child classes +[01:12:43] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:shader.ShaderProgramImportProcessorMixin from mod fabric-rendering-v1->@Inject::uncaptureImport(ZLjava/lang/String;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V won't be passed a CallbackInfoReturnable as a result +[01:12:43] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:shader.ShaderProgramImportProcessorMixin from mod fabric-rendering-v1->@Inject::uncaptureImport(ZLjava/lang/String;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V doesn't use it's CallbackInfoReturnable +[01:12:43] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:shader.ShaderProgramImportProcessorMixin from mod fabric-rendering-v1->@Inject::uncaptureImport(ZLjava/lang/String;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V has 0 override(s) in child classes +[01:12:43] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:shader.ShaderProgramImportProcessorMixin from mod fabric-rendering-v1->@Inject::uncaptureImport(ZLjava/lang/String;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V won't be passed a CallbackInfoReturnable as a result +[01:12:43] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing ResourceMixin from fabric-resource-loader-v0.mixins.json into net.minecraft.resource.Resource +[01:12:43] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-resource-loader-v0.mixins.json:ResourceMixin from mod fabric-resource-loader-v0: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[01:12:43] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing MessageHandlerMixin from fabric-message-api-v1.client.mixins.json into net.minecraft.client.network.message.MessageHandler +[01:12:43] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-message-api-v1.client.mixins.json:MessageHandlerMixin from mod fabric-message-api-v1->@Inject::fabric_onSignedChatMessage(Lnet/minecraft/network/message/MessageType$Parameters;Lnet/minecraft/network/message/SignedMessage;Lnet/minecraft/text/Text;Lcom/mojang/authlib/GameProfile;ZLjava/time/Instant;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V does use it's CallbackInfoReturnable +[01:12:43] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-message-api-v1.client.mixins.json:MessageHandlerMixin from mod fabric-message-api-v1->@Inject::fabric_onFilteredSignedChatMessage(Lnet/minecraft/network/message/MessageType$Parameters;Lnet/minecraft/network/message/SignedMessage;Lnet/minecraft/text/Text;Lcom/mojang/authlib/GameProfile;ZLjava/time/Instant;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V does use it's CallbackInfoReturnable +[01:12:43] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-message-api-v1.client.mixins.json:MessageHandlerMixin from mod fabric-message-api-v1->@Inject::fabric_onProfilelessChatMessage(Lnet/minecraft/network/message/MessageType$Parameters;Lnet/minecraft/text/Text;Ljava/time/Instant;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V does use it's CallbackInfoReturnable +[01:12:43] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-message-api-v1.client.mixins.json:MessageHandlerMixin from mod fabric-message-api-v1->@Inject::fabric_allowGameMessage(Lnet/minecraft/text/Text;ZLorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V does use it's CallbackInfo +[01:12:43] [Render thread/INFO] (net.minecraft.resource.ReloadableResourceManagerImpl) Reloading ResourceManager: vanilla, Fabric Mods (Fabric Entity Events (v1), Fabric Screen Handler API (v1), Fabric Key Bindings (v0), Fabric Loot Tables (v1), Fabric Commands (v0), Fabric Item Group API (v1), Fabric Lifecycle Events (v1), Fabric Renderer Registries (v1), Fabric API Lookup API (v1), Fabric Screen API (v1), Fabric Content Registries (v0), Fabric Resource Loader (v0), Fabric Key Binding API (v1), Fabric Item API (v1), Fabric Biome API (v1), Fabric BlockRenderLayer Registration (v1), Fabric Sound API (v1), Fabric Client Tags, Fabric Networking (v0), Fabric Networking API (v1), Fabric Command API (v2), Fabric Mining Level API (v1), Fabric Rendering Fluids (v1), Fabric Dimensions API (v1), Fabric Game Rule API (v1), Fabric API, Fabric Rendering Data Attachment (v1), Fabric Loader, Fabric Renderer API (v1), Fabric Object Builder API (v1), Fabric Recipe API (v1), Fabric Command API (v1), Fabric Resource Conditions API (v1), Fabric Renderer - Indigo, Fabric Convention Tags, Fabric Loot API (v2), Fabric Events Lifecycle (v0), Fabric Crash Report Info (v1), Fabric Game Test API (v1), Fabric API Base, Fabric Particles (v1), Fabric Events Interaction (v0), Fabric Data Generation API (v1), Fabric Registry Sync (v0), Fabric Block API (v1), Fabric Transitive Access Wideners (v1), Fabric Transfer API (v1), Fabric Rendering (v0), Fabric Rendering (v1), Fabric Containers (v0), Fabric Models (v0), Fabric Message API (v1)) +[01:12:43] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing NamespaceResourceManagerMixin from fabric-resource-loader-v0.mixins.json into net.minecraft.resource.NamespaceResourceManager +[01:12:43] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-resource-loader-v0.mixins.json:NamespaceResourceManagerMixin from mod fabric-resource-loader-v0: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[01:12:43] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-resource-loader-v0.mixins.json:NamespaceResourceManagerMixin from mod fabric-resource-loader-v0->@Inject::onGetAllResources(Lnet/minecraft/util/Identifier;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;Lnet/minecraft/util/Identifier;Ljava/util/List;)V doesn't use it's CallbackInfoReturnable +[01:12:43] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-resource-loader-v0.mixins.json:NamespaceResourceManagerMixin from mod fabric-resource-loader-v0->@Inject::onGetAllResources(Lnet/minecraft/util/Identifier;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;Lnet/minecraft/util/Identifier;Ljava/util/List;)V has 0 override(s) in child classes +[01:12:43] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-resource-loader-v0.mixins.json:NamespaceResourceManagerMixin from mod fabric-resource-loader-v0->@Inject::onGetAllResources(Lnet/minecraft/util/Identifier;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;Lnet/minecraft/util/Identifier;Ljava/util/List;)V won't be passed a CallbackInfoReturnable as a result +[01:12:43] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing SimpleResourceReloadMixin from fabric-resource-loader-v0.mixins.json into net.minecraft.resource.SimpleResourceReload +[01:12:43] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-resource-loader-v0.mixins.json:SimpleResourceReloadMixin from mod fabric-resource-loader-v0: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[01:12:43] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-resource-loader-v0.mixins.json:SimpleResourceReloadMixin from mod fabric-resource-loader-v0->@Inject::method_40087(Lnet/minecraft/resource/ResourceManager;Ljava/util/List;Ljava/util/concurrent/Executor;Ljava/util/concurrent/Executor;Ljava/util/concurrent/CompletableFuture;ZLorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V doesn't use it's CallbackInfoReturnable +[01:12:45] [Worker-Main-1/DEBUG] (FabricLoader/Mixin) Mixing client.MultipartBakedModelMixin from fabric-renderer-api-v1.mixins.json into net.minecraft.client.render.model.MultipartBakedModel +[01:12:45] [Worker-Main-1/DEBUG] (FabricLoader/Mixin) fabric-renderer-api-v1.mixins.json:client.MultipartBakedModelMixin from mod fabric-renderer-api-v1: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[01:12:45] [Worker-Main-1/DEBUG] (FabricLoader/Mixin) fabric-renderer-api-v1.mixins.json:client.MultipartBakedModelMixin from mod fabric-renderer-api-v1->@Inject::onInit(Ljava/util/List;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V doesn't use it's CallbackInfo +[01:12:45] [Worker-Main-1/DEBUG] (FabricLoader/Mixin) fabric-renderer-api-v1.mixins.json:client.MultipartBakedModelMixin from mod fabric-renderer-api-v1->@Inject::onInit(Ljava/util/List;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V has 0 override(s) in child classes +[01:12:45] [Worker-Main-1/DEBUG] (FabricLoader/Mixin) fabric-renderer-api-v1.mixins.json:client.MultipartBakedModelMixin from mod fabric-renderer-api-v1->@Inject::onInit(Ljava/util/List;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V won't be passed a CallbackInfo as a result +[01:12:45] [Worker-Main-1/DEBUG] (FabricLoader/Mixin) Mixing client.WeightedBakedModelMixin from fabric-renderer-api-v1.mixins.json into net.minecraft.client.render.model.WeightedBakedModel +[01:12:45] [Worker-Main-1/DEBUG] (FabricLoader/Mixin) fabric-renderer-api-v1.mixins.json:client.WeightedBakedModelMixin from mod fabric-renderer-api-v1: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[01:12:45] [Worker-Main-1/DEBUG] (FabricLoader/Mixin) fabric-renderer-api-v1.mixins.json:client.WeightedBakedModelMixin from mod fabric-renderer-api-v1->@Inject::onInit(Ljava/util/List;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V doesn't use it's CallbackInfo +[01:12:45] [Worker-Main-1/DEBUG] (FabricLoader/Mixin) fabric-renderer-api-v1.mixins.json:client.WeightedBakedModelMixin from mod fabric-renderer-api-v1->@Inject::onInit(Ljava/util/List;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V has 0 override(s) in child classes +[01:12:45] [Worker-Main-1/DEBUG] (FabricLoader/Mixin) fabric-renderer-api-v1.mixins.json:client.WeightedBakedModelMixin from mod fabric-renderer-api-v1->@Inject::onInit(Ljava/util/List;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V won't be passed a CallbackInfo as a result +[01:12:45] [Render thread/WARN] (net.minecraft.client.sound.SoundSystem) Missing sound for event: minecraft:item.brush.brushing +[01:12:45] [Render thread/WARN] (net.minecraft.client.sound.SoundSystem) Missing sound for event: minecraft:item.brush.brush_sand_completed +[01:12:45] [Render thread/WARN] (net.minecraft.client.sound.SoundSystem) Missing sound for event: minecraft:item.goat_horn.play +[01:12:45] [Render thread/WARN] (net.minecraft.client.sound.SoundSystem) Missing sound for event: minecraft:entity.goat.screaming.horn_break +[01:12:45] [Render thread/WARN] (net.minecraft.client.sound.SoundSystem) Missing sound for event: minecraft:music.overworld.cherry_grove +[01:12:46] [Render thread/INFO] (net.minecraft.client.sound.SoundEngine) OpenAL initialized on device OpenAL Soft on Speakers (Realtek(R) Audio) +[01:12:46] [Render thread/INFO] (net.minecraft.client.sound.SoundSystem) Sound engine started +[01:12:46] [Render thread/INFO] (net.minecraft.client.texture.SpriteAtlasTexture) Created: 1024x512x4 minecraft:textures/atlas/blocks.png-atlas +[01:12:46] [Render thread/INFO] (net.minecraft.client.texture.SpriteAtlasTexture) Created: 256x256x4 minecraft:textures/atlas/signs.png-atlas +[01:12:46] [Render thread/INFO] (net.minecraft.client.texture.SpriteAtlasTexture) Created: 512x512x4 minecraft:textures/atlas/banner_patterns.png-atlas +[01:12:46] [Render thread/INFO] (net.minecraft.client.texture.SpriteAtlasTexture) Created: 512x512x4 minecraft:textures/atlas/shield_patterns.png-atlas +[01:12:46] [Render thread/INFO] (net.minecraft.client.texture.SpriteAtlasTexture) Created: 1024x1024x4 minecraft:textures/atlas/armor_trims.png-atlas +[01:12:46] [Render thread/INFO] (net.minecraft.client.texture.SpriteAtlasTexture) Created: 64x64x4 minecraft:textures/atlas/decorated_pot.png-atlas +[01:12:46] [Render thread/INFO] (net.minecraft.client.texture.SpriteAtlasTexture) Created: 256x256x4 minecraft:textures/atlas/chest.png-atlas +[01:12:46] [Render thread/INFO] (net.minecraft.client.texture.SpriteAtlasTexture) Created: 512x256x4 minecraft:textures/atlas/beds.png-atlas +[01:12:46] [Render thread/INFO] (net.minecraft.client.texture.SpriteAtlasTexture) Created: 512x256x4 minecraft:textures/atlas/shulker_boxes.png-atlas +[01:12:46] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing EntityModelsMixin from fabric-rendering-v1.mixins.json into net.minecraft.client.render.entity.model.EntityModels +[01:12:46] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:EntityModelsMixin from mod fabric-rendering-v1: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[01:12:46] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:EntityModelsMixin from mod fabric-rendering-v1->@Inject::registerExtraModelData(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;Lcom/google/common/collect/ImmutableMap$Builder;)V doesn't use it's CallbackInfoReturnable +[01:12:46] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing EntityModelLayersMixin from fabric-object-builder-v1.client.mixins.json into net.minecraft.client.render.entity.model.EntityModelLayers +[01:12:46] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-object-builder-v1.client.mixins.json:EntityModelLayersMixin from mod fabric-object-builder-api-v1: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[01:12:46] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing EntityModelLayersAccessor from fabric-rendering-v1.mixins.json into net.minecraft.client.render.entity.model.EntityModelLayers +[01:12:46] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:EntityModelLayersAccessor from mod fabric-rendering-v1: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[01:12:46] [Render thread/DEBUG] (FabricLoader/Mixin) Renaming @Accessor method getLayers()Ljava/util/Set; to getLayers$fabric-rendering-v1_$md$5f0bfc$0 in fabric-rendering-v1.mixins.json:EntityModelLayersAccessor from mod fabric-rendering-v1 +[01:12:46] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-object-builder-v1.client.mixins.json:EntityModelLayersMixin from mod fabric-object-builder-api-v1->@Inject::createSign(Lnet/minecraft/block/WoodType;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V does use it's CallbackInfoReturnable +[01:12:46] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-object-builder-v1.client.mixins.json:EntityModelLayersMixin from mod fabric-object-builder-api-v1->@Inject::createHangingSign(Lnet/minecraft/block/WoodType;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V does use it's CallbackInfoReturnable +[01:12:46] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing BlockEntityRendererFactoriesMixin from fabric-rendering-v1.mixins.json into net.minecraft.client.render.block.entity.BlockEntityRendererFactories +[01:12:46] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:BlockEntityRendererFactoriesMixin from mod fabric-rendering-v1: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[01:12:46] [Render thread/DEBUG] (FabricLoader/Mixin) Renaming synthetic method lambda$init$0(Lnet/minecraft/block/entity/BlockEntityType;Lnet/minecraft/client/render/block/entity/BlockEntityRendererFactory;)V to md5f0bfc$fabric-rendering-v1$lambda$init$0$0 in fabric-rendering-v1.mixins.json:BlockEntityRendererFactoriesMixin from mod fabric-rendering-v1 +[01:12:46] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:BlockEntityRendererFactoriesMixin from mod fabric-rendering-v1->@Inject::init(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V doesn't use it's CallbackInfo +[01:12:46] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing EntityRenderersMixin from fabric-rendering-v1.mixins.json into net.minecraft.client.render.entity.EntityRenderers +[01:12:46] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:EntityRenderersMixin from mod fabric-rendering-v1: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[01:12:46] [Render thread/DEBUG] (FabricLoader/Mixin) Renaming synthetic method lambda$onRegisterRenderers$0(Lnet/minecraft/entity/EntityType;Lnet/minecraft/client/render/entity/EntityRendererFactory;)V to md5f0bfc$fabric-rendering-v1$lambda$onRegisterRenderers$0$0 in fabric-rendering-v1.mixins.json:EntityRenderersMixin from mod fabric-rendering-v1 +[01:12:46] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:EntityRenderersMixin from mod fabric-rendering-v1->@Inject::onRegisterRenderers(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V doesn't use it's CallbackInfo +[01:12:46] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing LivingEntityRendererAccessor from fabric-rendering-v1.mixins.json into net.minecraft.client.render.entity.LivingEntityRenderer +[01:12:46] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:LivingEntityRendererAccessor from mod fabric-rendering-v1: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[01:12:46] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing ArmorFeatureRendererMixin from fabric-rendering-v1.mixins.json into net.minecraft.client.render.entity.feature.ArmorFeatureRenderer +[01:12:46] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:ArmorFeatureRendererMixin from mod fabric-rendering-v1: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[01:12:46] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:ArmorFeatureRendererMixin from mod fabric-rendering-v1->@Inject::renderArmor(Lnet/minecraft/client/util/math/MatrixStack;Lnet/minecraft/client/render/VertexConsumerProvider;Lnet/minecraft/entity/LivingEntity;Lnet/minecraft/entity/EquipmentSlot;ILnet/minecraft/client/render/entity/model/BipedEntityModel;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V does use it's CallbackInfo +[01:12:46] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:ArmorFeatureRendererMixin from mod fabric-rendering-v1->@Inject::getArmorTexture(Lnet/minecraft/item/ArmorItem;ZLjava/lang/String;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V does use it's CallbackInfoReturnable +[01:12:46] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing CapeFeatureRendererMixin from fabric-rendering-v1.mixins.json into net.minecraft.client.render.entity.feature.CapeFeatureRenderer +[01:12:46] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:CapeFeatureRendererMixin from mod fabric-rendering-v1: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[01:12:46] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:CapeFeatureRendererMixin from mod fabric-rendering-v1->@Inject::injectCapeRenderCheck(Lnet/minecraft/client/util/math/MatrixStack;Lnet/minecraft/client/render/VertexConsumerProvider;ILnet/minecraft/client/network/AbstractClientPlayerEntity;FFFFFFLorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V does use it's CallbackInfo +[01:12:46] [Render thread/WARN] (net.minecraft.client.gl.ShaderProgram) Shader rendertype_entity_translucent_emissive could not find sampler named Sampler2 in the specified shader program. +[01:12:46] [Render thread/INFO] (net.minecraft.client.texture.SpriteAtlasTexture) Created: 256x256x0 minecraft:textures/atlas/particles.png-atlas +[01:12:46] [Render thread/INFO] (net.minecraft.client.texture.SpriteAtlasTexture) Created: 256x256x0 minecraft:textures/atlas/paintings.png-atlas +[01:12:46] [Render thread/INFO] (net.minecraft.client.texture.SpriteAtlasTexture) Created: 128x128x0 minecraft:textures/atlas/mob_effects.png-atlas +[01:12:51] [Realms Notification Availability checker #1/INFO] (net.minecraft.client.realms.RealmsClient) Could not authorize you against Realms server: Invalid session id +[01:13:01] [Render thread/INFO] (net.minecraft.client.MinecraftClient) Stopping! diff --git a/v1_19_4/run/logs/latest.log b/v1_19_4/run/logs/latest.log new file mode 100644 index 0000000..796bd01 --- /dev/null +++ b/v1_19_4/run/logs/latest.log @@ -0,0 +1,109 @@ +[01:12:29] [main/INFO] (FabricLoader/GameProvider) Loading Minecraft 1.19.4 with Fabric Loader 0.15.2 +[01:12:30] [main/INFO] (FabricLoader) Loading 56 mods: + - fabric-api 0.79.0+1.19.4 + - fabric-api-base 0.4.24+9ff28bcef4 + - fabric-api-lookup-api-v1 1.6.25+49abcf7ef4 + - fabric-biome-api-v1 13.0.7+348a9c64f4 + - fabric-block-api-v1 1.0.6+e022e5d1f4 + - fabric-blockrenderlayer-v1 1.1.34+c2e6f674f4 + - fabric-client-tags-api-v1 1.0.15+1134c5b8f4 + - fabric-command-api-v1 1.2.27+f71b366ff4 + - fabric-command-api-v2 2.2.6+e719b857f4 + - fabric-commands-v0 0.2.44+df3654b3f4 + - fabric-containers-v0 0.1.54+df3654b3f4 + - fabric-content-registries-v0 3.5.9+ae0966baf4 + - fabric-convention-tags-v1 1.4.1+9a7c5daaf4 + - fabric-crash-report-info-v1 0.2.15+aeb40ebef4 + - fabric-data-generation-api-v1 11.4.0+6cebf059f4 + - fabric-dimensions-v1 2.1.45+7f87f8faf4 + - fabric-entity-events-v1 1.5.13+e45f7c65f4 + - fabric-events-interaction-v0 0.4.43+a1ccd7bff4 + - fabric-events-lifecycle-v0 0.2.52+df3654b3f4 + - fabric-game-rule-api-v1 1.0.33+a1ccd7bff4 + - fabric-gametest-api-v1 1.2.4+ae0966baf4 + - fabric-item-api-v1 2.1.17+09a3510cf4 + - fabric-item-group-api-v1 3.0.5+043f9acff4 + - fabric-key-binding-api-v1 1.0.33+c477957ef4 + - fabric-keybindings-v0 0.2.31+df3654b3f4 + - fabric-lifecycle-events-v1 2.2.15+5da15ca1f4 + - fabric-loot-api-v2 1.1.27+75e98211f4 + - fabric-loot-tables-v1 1.1.31+9e7660c6f4 + - fabric-message-api-v1 5.1.1+1ee8be40f4 + - fabric-mining-level-api-v1 2.1.39+49abcf7ef4 + - fabric-models-v0 0.3.30+11ba9c3bf4 + - fabric-networking-api-v1 1.3.1+a6f3ccfaf4 + - fabric-networking-v0 0.3.41+df3654b3f4 + - fabric-object-builder-api-v1 7.0.3+63b515f4f4 + - fabric-particles-v1 1.0.23+f1e4495bf4 + - fabric-recipe-api-v1 1.0.8+a1ccd7bff4 + - fabric-registry-sync-v0 2.2.0+670e8ac6f4 + - fabric-renderer-api-v1 2.2.5+81e8c576f4 + - fabric-renderer-indigo 1.1.1+81e8c576f4 + - fabric-renderer-registries-v1 3.2.38+df3654b3f4 + - fabric-rendering-data-attachment-v1 0.3.28+afca2f3ef4 + - fabric-rendering-fluids-v1 3.0.21+f1e4495bf4 + - fabric-rendering-v0 1.1.41+df3654b3f4 + - fabric-rendering-v1 2.1.1+8f878217f4 + - fabric-resource-conditions-api-v1 2.3.1+e6c7d4eef4 + - fabric-resource-loader-v0 0.11.2+1e1fb126f4 + - fabric-screen-api-v1 1.0.45+8c25edb4f4 + - fabric-screen-handler-api-v1 1.3.20+5da15ca1f4 + - fabric-sound-api-v1 1.0.9+75e98211f4 + - fabric-transfer-api-v1 3.1.1+da9bb835f4 + - fabric-transitive-access-wideners-v1 3.0.3+63b515f4f4 + - fabricloader 0.15.2 + - java 17 + - minecraft 1.19.4 + - mixinextras 0.3.2 + - testclient 1.0.0 +[01:12:30] [main/INFO] (FabricLoader/Mixin) SpongePowered MIXIN Subsystem Version=0.8.5 Source=file:/C:/Users/rohan/.gradle/caches/modules-2/files-2.1/net.fabricmc/sponge-mixin/0.12.5+mixin.0.8.5/8d31fb97c3e0cd7c8dad3441851c523bcfae6d8e/sponge-mixin-0.12.5+mixin.0.8.5.jar Service=Knot/Fabric Env=CLIENT +[01:12:30] [main/INFO] (FabricLoader/Mixin) Loaded Fabric development mappings for mixin remapper! +[01:12:30] [main/INFO] (FabricLoader/Mixin) Compatibility level set to JAVA_16 +[01:12:30] [main/INFO] (FabricLoader/Mixin) Compatibility level set to JAVA_17 +[01:12:32] [main/INFO] (FabricLoader/MixinExtras|Service) Initializing MixinExtras via com.llamalad7.mixinextras.service.MixinExtrasServiceImpl(version=0.3.2). +[01:12:37] [Datafixer Bootstrap/INFO] (Minecraft) 180 Datafixer optimizations took 135 milliseconds +[01:12:40] [Render thread/INFO] (Minecraft) Environment: authHost='https://authserver.mojang.com', accountsHost='https://api.mojang.com', sessionHost='https://sessionserver.mojang.com', servicesHost='https://api.minecraftservices.com', name='PROD' +[01:12:40] [Render thread/ERROR] (Minecraft) Failed to verify authentication +com.mojang.authlib.exceptions.InvalidCredentialsException: Status: 401 + at com.mojang.authlib.exceptions.MinecraftClientHttpException.toAuthenticationException(MinecraftClientHttpException.java:56) ~[authlib-3.18.38.jar:?] + at com.mojang.authlib.yggdrasil.YggdrasilUserApiService.fetchProperties(YggdrasilUserApiService.java:156) ~[authlib-3.18.38.jar:?] + at com.mojang.authlib.yggdrasil.YggdrasilUserApiService.(YggdrasilUserApiService.java:55) ~[authlib-3.18.38.jar:?] + at com.mojang.authlib.yggdrasil.YggdrasilAuthenticationService.createUserApiService(YggdrasilAuthenticationService.java:161) ~[authlib-3.18.38.jar:?] + at net.minecraft.client.MinecraftClient.createUserApiService(MinecraftClient.java:732) ~[minecraft-merged-9d06bd1931-1.19.4-net.fabricmc.yarn.1_19_4.1.19.4+build.2-v2.jar:?] + at net.minecraft.client.MinecraftClient.(MinecraftClient.java:440) ~[minecraft-merged-9d06bd1931-1.19.4-net.fabricmc.yarn.1_19_4.1.19.4+build.2-v2.jar:?] + at net.minecraft.client.main.Main.main(Main.java:198) ~[minecraft-merged-9d06bd1931-1.19.4-net.fabricmc.yarn.1_19_4.1.19.4+build.2-v2.jar:?] + at net.fabricmc.loader.impl.game.minecraft.MinecraftGameProvider.launch(MinecraftGameProvider.java:470) ~[fabric-loader-0.15.2.jar:?] + at net.fabricmc.loader.impl.launch.knot.Knot.launch(Knot.java:74) ~[fabric-loader-0.15.2.jar:?] + at net.fabricmc.loader.impl.launch.knot.KnotClient.main(KnotClient.java:23) ~[fabric-loader-0.15.2.jar:?] + at net.fabricmc.devlaunchinjector.Main.main(Main.java:86) ~[dev-launch-injector-0.2.1+build.8.jar:?] +Caused by: com.mojang.authlib.exceptions.MinecraftClientHttpException: Status: 401 + at com.mojang.authlib.minecraft.client.MinecraftClient.readInputStream(MinecraftClient.java:85) ~[authlib-3.18.38.jar:?] + at com.mojang.authlib.minecraft.client.MinecraftClient.get(MinecraftClient.java:48) ~[authlib-3.18.38.jar:?] + at com.mojang.authlib.yggdrasil.YggdrasilUserApiService.fetchProperties(YggdrasilUserApiService.java:129) ~[authlib-3.18.38.jar:?] + ... 9 more +[01:12:40] [Render thread/INFO] (Minecraft) Setting user: Player610 +[01:12:41] [Render thread/INFO] (Indigo) [Indigo] Registering Indigo renderer! +[01:12:41] [Render thread/INFO] (Minecraft) Backend library: LWJGL version 3.3.2-snapshot +[01:12:43] [Render thread/INFO] (Minecraft) Reloading ResourceManager: vanilla, Fabric Mods (Fabric Entity Events (v1), Fabric Screen Handler API (v1), Fabric Key Bindings (v0), Fabric Loot Tables (v1), Fabric Commands (v0), Fabric Item Group API (v1), Fabric Lifecycle Events (v1), Fabric Renderer Registries (v1), Fabric API Lookup API (v1), Fabric Screen API (v1), Fabric Content Registries (v0), Fabric Resource Loader (v0), Fabric Key Binding API (v1), Fabric Item API (v1), Fabric Biome API (v1), Fabric BlockRenderLayer Registration (v1), Fabric Sound API (v1), Fabric Client Tags, Fabric Networking (v0), Fabric Networking API (v1), Fabric Command API (v2), Fabric Mining Level API (v1), Fabric Rendering Fluids (v1), Fabric Dimensions API (v1), Fabric Game Rule API (v1), Fabric API, Fabric Rendering Data Attachment (v1), Fabric Loader, Fabric Renderer API (v1), Fabric Object Builder API (v1), Fabric Recipe API (v1), Fabric Command API (v1), Fabric Resource Conditions API (v1), Fabric Renderer - Indigo, Fabric Convention Tags, Fabric Loot API (v2), Fabric Events Lifecycle (v0), Fabric Crash Report Info (v1), Fabric Game Test API (v1), Fabric API Base, Fabric Particles (v1), Fabric Events Interaction (v0), Fabric Data Generation API (v1), Fabric Registry Sync (v0), Fabric Block API (v1), Fabric Transitive Access Wideners (v1), Fabric Transfer API (v1), Fabric Rendering (v0), Fabric Rendering (v1), Fabric Containers (v0), Fabric Models (v0), Fabric Message API (v1)) +[01:12:45] [Render thread/WARN] (Minecraft) Missing sound for event: minecraft:item.brush.brushing +[01:12:45] [Render thread/WARN] (Minecraft) Missing sound for event: minecraft:item.brush.brush_sand_completed +[01:12:45] [Render thread/WARN] (Minecraft) Missing sound for event: minecraft:item.goat_horn.play +[01:12:45] [Render thread/WARN] (Minecraft) Missing sound for event: minecraft:entity.goat.screaming.horn_break +[01:12:45] [Render thread/WARN] (Minecraft) Missing sound for event: minecraft:music.overworld.cherry_grove +[01:12:46] [Render thread/INFO] (Minecraft) OpenAL initialized on device OpenAL Soft on Speakers (Realtek(R) Audio) +[01:12:46] [Render thread/INFO] (Minecraft) Sound engine started +[01:12:46] [Render thread/INFO] (Minecraft) Created: 1024x512x4 minecraft:textures/atlas/blocks.png-atlas +[01:12:46] [Render thread/INFO] (Minecraft) Created: 256x256x4 minecraft:textures/atlas/signs.png-atlas +[01:12:46] [Render thread/INFO] (Minecraft) Created: 512x512x4 minecraft:textures/atlas/banner_patterns.png-atlas +[01:12:46] [Render thread/INFO] (Minecraft) Created: 512x512x4 minecraft:textures/atlas/shield_patterns.png-atlas +[01:12:46] [Render thread/INFO] (Minecraft) Created: 1024x1024x4 minecraft:textures/atlas/armor_trims.png-atlas +[01:12:46] [Render thread/INFO] (Minecraft) Created: 64x64x4 minecraft:textures/atlas/decorated_pot.png-atlas +[01:12:46] [Render thread/INFO] (Minecraft) Created: 256x256x4 minecraft:textures/atlas/chest.png-atlas +[01:12:46] [Render thread/INFO] (Minecraft) Created: 512x256x4 minecraft:textures/atlas/beds.png-atlas +[01:12:46] [Render thread/INFO] (Minecraft) Created: 512x256x4 minecraft:textures/atlas/shulker_boxes.png-atlas +[01:12:46] [Render thread/WARN] (Minecraft) Shader rendertype_entity_translucent_emissive could not find sampler named Sampler2 in the specified shader program. +[01:12:46] [Render thread/INFO] (Minecraft) Created: 256x256x0 minecraft:textures/atlas/particles.png-atlas +[01:12:46] [Render thread/INFO] (Minecraft) Created: 256x256x0 minecraft:textures/atlas/paintings.png-atlas +[01:12:46] [Render thread/INFO] (Minecraft) Created: 128x128x0 minecraft:textures/atlas/mob_effects.png-atlas +[01:12:51] [Realms Notification Availability checker #1/INFO] (Minecraft) Could not authorize you against Realms server: Invalid session id +[01:13:01] [Render thread/INFO] (Minecraft) Stopping! diff --git a/v1_19_4/run/options.txt b/v1_19_4/run/options.txt new file mode 100644 index 0000000..e4b41df --- /dev/null +++ b/v1_19_4/run/options.txt @@ -0,0 +1,137 @@ +version:3337 +autoJump:false +operatorItemsTab:false +autoSuggestions:true +chatColors:true +chatLinks:true +chatLinksPrompt:true +enableVsync:true +entityShadows:true +forceUnicodeFont:false +discrete_mouse_scroll:false +invertYMouse:false +realmsNotifications:true +reducedDebugInfo:false +showSubtitles:false +directionalAudio:false +touchscreen:false +fullscreen:false +bobView:true +toggleCrouch:false +toggleSprint:false +darkMojangStudiosBackground:false +hideLightningFlashes:false +mouseSensitivity:0.5 +fov:0.0 +screenEffectScale:1.0 +fovEffectScale:1.0 +darknessEffectScale:1.0 +glintSpeed:0.5 +glintStrength:0.75 +damageTiltStrength:1.0 +highContrast:false +gamma:0.5 +renderDistance:12 +simulationDistance:12 +entityDistanceScaling:1.0 +guiScale:0 +particles:0 +maxFps:120 +graphicsMode:1 +ao:true +prioritizeChunkUpdates:0 +biomeBlendRadius:2 +renderClouds:"true" +resourcePacks:["fabric"] +incompatibleResourcePacks:[] +lastServer: +lang:en_us +soundDevice:"" +chatVisibility:0 +chatOpacity:1.0 +chatLineSpacing:0.0 +textBackgroundOpacity:0.5 +backgroundForChatOnly:true +hideServerAddress:false +advancedItemTooltips:false +pauseOnLostFocus:true +overrideWidth:0 +overrideHeight:0 +chatHeightFocused:1.0 +chatDelay:0.0 +chatHeightUnfocused:0.4375 +chatScale:1.0 +chatWidth:1.0 +notificationDisplayTime:1.0 +mipmapLevels:4 +useNativeTransport:true +mainHand:"right" +attackIndicator:1 +narrator:0 +tutorialStep:movement +mouseWheelSensitivity:1.0 +rawMouseInput:true +glDebugVerbosity:1 +skipMultiplayerWarning:false +skipRealms32bitWarning:false +hideMatchedNames:true +joinedFirstServer:false +hideBundleTutorial:false +syncChunkWrites:true +showAutosaveIndicator:true +allowServerListing:true +onlyShowSecureChat:false +panoramaScrollSpeed:1.0 +telemetryOptInExtra:false +onboardAccessibility:false +key_key.attack:key.mouse.left +key_key.use:key.mouse.right +key_key.forward:key.keyboard.w +key_key.left:key.keyboard.a +key_key.back:key.keyboard.s +key_key.right:key.keyboard.d +key_key.jump:key.keyboard.space +key_key.sneak:key.keyboard.left.shift +key_key.sprint:key.keyboard.left.control +key_key.drop:key.keyboard.q +key_key.inventory:key.keyboard.e +key_key.chat:key.keyboard.t +key_key.playerlist:key.keyboard.tab +key_key.pickItem:key.mouse.middle +key_key.command:key.keyboard.slash +key_key.socialInteractions:key.keyboard.p +key_key.screenshot:key.keyboard.f2 +key_key.togglePerspective:key.keyboard.f5 +key_key.smoothCamera:key.keyboard.unknown +key_key.fullscreen:key.keyboard.f11 +key_key.spectatorOutlines:key.keyboard.unknown +key_key.swapOffhand:key.keyboard.f +key_key.saveToolbarActivator:key.keyboard.c +key_key.loadToolbarActivator:key.keyboard.x +key_key.advancements:key.keyboard.l +key_key.hotbar.1:key.keyboard.1 +key_key.hotbar.2:key.keyboard.2 +key_key.hotbar.3:key.keyboard.3 +key_key.hotbar.4:key.keyboard.4 +key_key.hotbar.5:key.keyboard.5 +key_key.hotbar.6:key.keyboard.6 +key_key.hotbar.7:key.keyboard.7 +key_key.hotbar.8:key.keyboard.8 +key_key.hotbar.9:key.keyboard.9 +soundCategory_master:1.0 +soundCategory_music:1.0 +soundCategory_record:1.0 +soundCategory_weather:1.0 +soundCategory_block:1.0 +soundCategory_hostile:1.0 +soundCategory_neutral:1.0 +soundCategory_player:1.0 +soundCategory_ambient:1.0 +soundCategory_voice:1.0 +modelPart_cape:true +modelPart_jacket:true +modelPart_left_sleeve:true +modelPart_right_sleeve:true +modelPart_left_pants_leg:true +modelPart_right_pants_leg:true +modelPart_hat:true diff --git a/v1_19_4/src/main/java/dev/refactoring/ClientEntrypoint.java b/v1_19_4/src/main/java/dev/refactoring/ClientEntrypoint.java new file mode 100644 index 0000000..39642f9 --- /dev/null +++ b/v1_19_4/src/main/java/dev/refactoring/ClientEntrypoint.java @@ -0,0 +1,18 @@ +package dev.refactoring; + +import dev.refactoring.bridge.BridgeImpl; +import dev.refactoring.bridge.core.BridgeManager; +import dev.refactoring.bridge.core.util.MinecraftVersion; +import net.fabricmc.api.ClientModInitializer; + +/** + * @author refactoring + */ +public class ClientEntrypoint implements ClientModInitializer { + + @Override + public void onInitializeClient() { + BridgeManager.INSTANCE.setVersion(MinecraftVersion.v1_19_4); + BridgeManager.INSTANCE.setBridge(new BridgeImpl()); + } +} diff --git a/v1_19_4/src/main/java/dev/refactoring/bridge/BridgeImpl.java b/v1_19_4/src/main/java/dev/refactoring/bridge/BridgeImpl.java new file mode 100644 index 0000000..1b53eff --- /dev/null +++ b/v1_19_4/src/main/java/dev/refactoring/bridge/BridgeImpl.java @@ -0,0 +1,16 @@ +package dev.refactoring.bridge; + +import dev.refactoring.bridge.client.input.KeyBindingBridge; +import dev.refactoring.bridge.core.Bridge; +import net.fabricmc.fabric.api.client.keybinding.v1.KeyBindingHelper; +import net.minecraft.client.option.KeyBinding; + +/** + * @author refactoring + */ +public class BridgeImpl implements Bridge { + @Override + public KeyBindingBridge initKeyBinding(String name, int keyCode, String cat) { + return (KeyBindingBridge) KeyBindingHelper.registerKeyBinding(new KeyBinding(name, keyCode, cat)); + } +} diff --git a/v1_19_4/src/main/java/dev/refactoring/mixins/MixinMinecraftClient.java b/v1_19_4/src/main/java/dev/refactoring/mixins/MixinMinecraftClient.java new file mode 100644 index 0000000..54eab60 --- /dev/null +++ b/v1_19_4/src/main/java/dev/refactoring/mixins/MixinMinecraftClient.java @@ -0,0 +1,38 @@ +package dev.refactoring.mixins; + +import dev.refactoring.bridge.client.MinecraftClientBridge; +import dev.refactoring.bridge.core.BridgeManager; +import dev.refactoring.testclient.TestClient; +import net.minecraft.client.MinecraftClient; +import org.spongepowered.asm.mixin.Mixin; +import org.spongepowered.asm.mixin.Shadow; +import org.spongepowered.asm.mixin.injection.At; +import org.spongepowered.asm.mixin.injection.Inject; +import org.spongepowered.asm.mixin.injection.callback.CallbackInfo; + +/** + * This is how you implement a bridge. + * + * @author refactoring + */ +@Mixin(MinecraftClient.class) +public class MixinMinecraftClient implements MinecraftClientBridge { + @Shadow private static int currentFps; + + // we initialize differently in modern versions + // respectfully, fuck you mojang studios + @Inject(method = "", at = @At(target = "Lnet/minecraft/client/MinecraftClient;inGameHud:Lnet/minecraft/client/gui/hud/InGameHud;", value = "FIELD", shift = At.Shift.AFTER)) + private void aetherium$init(CallbackInfo ci) { + BridgeManager.INSTANCE.setMinecraftClientBridge(this); // You want to do this for everything except things like keybindings, which are initialized by the user. + } + + @Override + public int bridge$getCurrentFps() { + return currentFps; + } + + @Inject(method = "tick", at = @At("HEAD")) + public void mixin$tick(CallbackInfo ci) { + TestClient.INSTANCE.printFps(); + } +} diff --git a/v1_19_4/src/main/java/dev/refactoring/mixins/input/MixinKeyBinding.java b/v1_19_4/src/main/java/dev/refactoring/mixins/input/MixinKeyBinding.java new file mode 100644 index 0000000..2e74260 --- /dev/null +++ b/v1_19_4/src/main/java/dev/refactoring/mixins/input/MixinKeyBinding.java @@ -0,0 +1,69 @@ +package dev.refactoring.mixins.input; + +import dev.refactoring.bridge.client.input.KeyBindingBridge; +import net.minecraft.client.option.KeyBinding; +import net.minecraft.client.resource.language.I18n; +import net.minecraft.client.util.InputUtil; +import org.spongepowered.asm.mixin.Mixin; +import org.spongepowered.asm.mixin.Shadow; +import org.spongepowered.asm.mixin.Unique; + +import java.util.ArrayList; +import java.util.List; + +/** + * @author refactoring + */ +@Mixin(KeyBinding.class) +public abstract class MixinKeyBinding implements KeyBindingBridge { + @Unique + public final List clashesWith = new ArrayList<>(); + @Shadow public abstract boolean isPressed(); + @Shadow public abstract String getTranslationKey(); + @Shadow public abstract String getCategory(); + + @Shadow private InputUtil.Key boundKey; + + @Shadow public abstract void setBoundKey(InputUtil.Key par1); + + @Override + public int bridge$getKey() { + return this.boundKey.getCode(); + } + + @Override + public void bridge$setKey(Integer var1) { + this.setBoundKey(InputUtil.fromKeyCode(var1, 0)); + } + + @Override + public boolean bridge$isKeyDown() { + return this.isPressed(); + } + + @Override + public String bridge$getKeyName() { + return I18n.translate(this.getTranslationKey()); + } + + @Override + public String bridge$getKeyDescription() { + return I18n.translate(this.getTranslationKey()); + } + + @Override + public void bridge$setKeyBindState(boolean var1) { + KeyBinding.setKeyPressed(this.boundKey, var1); + } + + @Override + public List bridge$getClashesWith() { + return this.clashesWith; + } + + @Override + public String bridge$getCategory() { + return this.getCategory(); + } + // I decided to be nice and include a KeyBinding bridge :) +} diff --git a/v1_19_4/src/main/java/dev/refactoring/mixins/util/MixinWindow.java b/v1_19_4/src/main/java/dev/refactoring/mixins/util/MixinWindow.java new file mode 100644 index 0000000..cb4019b --- /dev/null +++ b/v1_19_4/src/main/java/dev/refactoring/mixins/util/MixinWindow.java @@ -0,0 +1,26 @@ +package dev.refactoring.mixins.util; + +import dev.refactoring.bridge.core.BridgeManager; +import net.minecraft.client.util.Window; +import org.lwjgl.glfw.GLFW; +import org.spongepowered.asm.mixin.Final; +import org.spongepowered.asm.mixin.Mixin; +import org.spongepowered.asm.mixin.Overwrite; +import org.spongepowered.asm.mixin.Shadow; + +/** + * @author refactoring + */ +@Mixin(Window.class) +public class MixinWindow { + @Shadow @Final private long handle; + + /** + * @author Refactoring + * @reason Uses the bridge title system instead of the default one. + */ + @Overwrite + public void setTitle(String title) { + GLFW.glfwSetWindowTitle(this.handle, BridgeManager.INSTANCE.getWindowTitle()); + } +} diff --git a/v1_19_4/src/main/resources/client.mixins.json b/v1_19_4/src/main/resources/client.mixins.json new file mode 100644 index 0000000..34005b4 --- /dev/null +++ b/v1_19_4/src/main/resources/client.mixins.json @@ -0,0 +1,16 @@ +{ + "required": true, + "minVersion": "0.8", + "package": "dev.refactoring.mixins", + "compatibilityLevel": "JAVA_8", + "mixins": [ + ], + "client": [ + "MixinMinecraftClient", + "input.MixinKeyBinding", + "util.MixinWindow" + ], + "injectors": { + "defaultRequire": 1 + } +} \ No newline at end of file diff --git a/v1_19_4/src/main/resources/fabric.mod.json b/v1_19_4/src/main/resources/fabric.mod.json new file mode 100644 index 0000000..ff777cd --- /dev/null +++ b/v1_19_4/src/main/resources/fabric.mod.json @@ -0,0 +1,31 @@ +{ + "schemaVersion": 1, + "id": "testclient", + "version": "${version}", + "name": "Test Client", + "description": "", + "authors": [ + "Refactoring" + ], + "contact": { + "homepage": "https://aetherium.club", + "sources": "https://github.com/Aetherium-Development" + }, + "license": "CC0-1.0", + "icon": "", + "environment": "*", + "entrypoints": { + "client": [ + "dev.refactoring.ClientEntrypoint" + ] + }, + "mixins": [ + "client.mixins.json" + ], + "depends": { + "fabricloader": ">=0.14.19", + "minecraft": "1.19.4" + }, + "suggests": { + } +} \ No newline at end of file diff --git a/v1_8_9/build.gradle b/v1_8_9/build.gradle new file mode 100644 index 0000000..9b27481 --- /dev/null +++ b/v1_8_9/build.gradle @@ -0,0 +1,70 @@ +import org.gradle.internal.os.OperatingSystem + +plugins { + id "fabric-loom" version "1.4-SNAPSHOT" + id "legacy-looming" version "1.4-SNAPSHOT" // Version must be the same as fabric-loom's + id "maven-publish" +} + +base.archivesName = project.archives_base_name +version = project.mod_version +group = project.maven_group + +repositories { +} + +loom { +} + +dependencies { + minecraft "com.mojang:minecraft:${project.minecraft_version}" + mappings(legacy.yarn(project.minecraft_version, project.yarn_build)) + modImplementation "net.fabricmc:fabric-loader:${project.loader_version}" + + modImplementation "net.legacyfabric.legacy-fabric-api:legacy-fabric-api:${project.fabric_version}" + + /* Client Dependencies */ + + implementation project(path: ':Bridge') // You NEED to reference these two! + implementation project(path: ':Client') +} + +processResources { + inputs.property "version", project.version + + filesMatching("fabric.mod.json") { + expand "version": project.version + } +} + +tasks.withType(JavaCompile).configureEach { + it.options.encoding = "UTF-8" + + if (JavaVersion.current().isJava9Compatible()) { + it.options.release = 17 + } +} + +java { + sourceCompatibility = JavaVersion.VERSION_17 + targetCompatibility = JavaVersion.VERSION_17 + + withSourcesJar() +} + +jar { + from("LICENSE") { + rename { "${it}_${base.archivesName.get()}" } + } +} + +publishing { + publications { + mavenJava(MavenPublication) { + from components.java + } + } + + repositories { + } +} diff --git a/v1_8_9/gradle.properties b/v1_8_9/gradle.properties new file mode 100644 index 0000000..c31cd3a --- /dev/null +++ b/v1_8_9/gradle.properties @@ -0,0 +1,11 @@ +org.gradle.jvmargs=-Xmx1G + +minecraft_version = 1.8.9 +yarn_build = 514 +loader_version = 0.15.2 + +fabric_version = 1.9.1+1.8.9 + +mod_version = 1.0.0 +maven_group = dev.refactoring +archives_base_name = TestClient189 \ No newline at end of file diff --git a/v1_8_9/run/logs/2023-12-31-1.log.gz b/v1_8_9/run/logs/2023-12-31-1.log.gz new file mode 100644 index 0000000000000000000000000000000000000000..7f9b3908753cda94acc7ad0074f0b3f04c84bd30 GIT binary patch literal 1197 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 net.minecraft.client.MinecraftClient +[01:07:48] [main/DEBUG] (FabricLoader/GamePatch) Patching game constructor initializeGame()V +[01:07:48] [main/DEBUG] (FabricLoader/GamePatch) Run directory field is thought to be net/minecraft/client/MinecraftClient/runDirectory +[01:07:48] [main/DEBUG] (FabricLoader/GamePatch) Applying brand name hook to net/minecraft/client/ClientBrandRetriever::getClientModName +[01:07:48] [main/DEBUG] (FabricLoader/GamePatch) Applying brand name hook to net/minecraft/server/MinecraftServer::getServerModName +[01:07:48] [main/DEBUG] (FabricLoader/Mappings) Loading mappings took 34 ms +[01:07:48] [main/DEBUG] (FabricLoader/GamePatch) Patched 3 classs +[01:07:48] [main/DEBUG] (FabricLoader/Discovery) Mod discovery time: 28.7 ms +[01:07:48] [main/DEBUG] (FabricLoader/Resolution) Mod resolution time: 49.2 ms +[01:07:48] [main/INFO] (FabricLoader) Loading 30 mods: + - fabricloader 0.15.2 + - java 17 + - legacy-fabric-api 1.9.1+1.8.9 + - legacy-fabric-api-base 1.1.0+1.8.9+f368a06d39 + - legacy-fabric-api-base-common 1.1.0+1dd3cad892 + - legacy-fabric-command-api-v1 1.0.0+ae4aa0d092 + - legacy-fabric-command-api-v2 1.0.0+1.8.9+01f7587839 + - legacy-fabric-crash-report-info-v1 1.0.0+1.8.9+f368a06d39 + - legacy-fabric-entity-events-v1 1.0.0+1.8.9+f368a06d39 + - legacy-fabric-entity-events-v1-common 1.0.0+ae4aa0d092 + - legacy-fabric-gamerule-api-v1 1.0.0+ae4aa0d092 + - legacy-fabric-item-groups-v1 2.0.0+1.8.9+f368a06d39 + - legacy-fabric-item-groups-v1-common 2.0.0+1dd3cad892 + - legacy-fabric-keybinding-api-v1-common 1.0.0+ae4aa0d092 + - legacy-fabric-lifecycle-events-v1 1.0.1+1.8.9+d86bee7939 + - legacy-fabric-lifecycle-events-v1-common 1.0.1+ae4aa0d092 + - legacy-fabric-logger-api-v1 1.0.4+ae4aa0d092 + - legacy-fabric-networking-api-v1 2.0.0+1.8.9+01f7587839 + - legacy-fabric-networking-api-v1-common 2.0.0+022f9a7592 + - legacy-fabric-permissions-api-v1 1.0.0+1.8.9+f368a06d39 + - legacy-fabric-permissions-api-v1-common 1.0.0+ae4aa0d092 + - legacy-fabric-registry-sync-api-v1 2.1.0+1.8.9+508c546039 + - legacy-fabric-registry-sync-api-v1-common 2.1.0+508c546092 + - legacy-fabric-rendering-api-v1 1.0.0+1.8.9+022f9a7539 + - legacy-fabric-rendering-api-v1-common 1.0.0+ae4aa0d092 + - legacy-fabric-resource-loader-v1 2.1.0+1.8.9+022f9a7539 + - legacy-fabric-resource-loader-v1-common 2.1.0+a9c128f492 + - minecraft 1.8.9 + - mixinextras 0.3.2 + - testclient 1.0.0 +[01:07:48] [main/DEBUG] (FabricLoader/Knot) Adding D:\BridgeBase\.gradle\loom-cache\remapped_mods\net_legacyfabric_yarn_1_8_9_1_8_9_build_514_v2\net\legacyfabric\legacy-fabric-api\legacy-fabric-rendering-api-v1-common\1.0.0+ae4aa0d092\legacy-fabric-rendering-api-v1-common-1.0.0+ae4aa0d092.jar to classpath. +[01:07:48] [main/DEBUG] (FabricLoader/Knot) Adding D:\BridgeBase\.gradle\loom-cache\remapped_mods\net_legacyfabric_yarn_1_8_9_1_8_9_build_514_v2\net\legacyfabric\legacy-fabric-api\legacy-fabric-command-api-v2\1.0.0+1.8.9+01f7587839\legacy-fabric-command-api-v2-1.0.0+1.8.9+01f7587839.jar to classpath. +[01:07:48] [main/DEBUG] (FabricLoader/Knot) Adding D:\BridgeBase\.gradle\loom-cache\remapped_mods\net_legacyfabric_yarn_1_8_9_1_8_9_build_514_v2\net\legacyfabric\legacy-fabric-api\legacy-fabric-rendering-api-v1\1.0.0+1.8.9+022f9a7539\legacy-fabric-rendering-api-v1-1.0.0+1.8.9+022f9a7539.jar to classpath. +[01:07:48] [main/DEBUG] (FabricLoader/Knot) Adding D:\BridgeBase\.gradle\loom-cache\remapped_mods\net_legacyfabric_yarn_1_8_9_1_8_9_build_514_v2\net\legacyfabric\legacy-fabric-api\legacy-fabric-entity-events-v1\1.0.0+1.8.9+f368a06d39\legacy-fabric-entity-events-v1-1.0.0+1.8.9+f368a06d39.jar to classpath. +[01:07:48] [main/DEBUG] (FabricLoader/Knot) Adding D:\BridgeBase\.gradle\loom-cache\remapped_mods\net_legacyfabric_yarn_1_8_9_1_8_9_build_514_v2\net\legacyfabric\legacy-fabric-api\legacy-fabric-registry-sync-api-v1\2.1.0+1.8.9+508c546039\legacy-fabric-registry-sync-api-v1-2.1.0+1.8.9+508c546039.jar to classpath. +[01:07:48] [main/DEBUG] (FabricLoader/Knot) Adding D:\BridgeBase\.gradle\loom-cache\remapped_mods\net_legacyfabric_yarn_1_8_9_1_8_9_build_514_v2\net\legacyfabric\legacy-fabric-api\legacy-fabric-permissions-api-v1\1.0.0+1.8.9+f368a06d39\legacy-fabric-permissions-api-v1-1.0.0+1.8.9+f368a06d39.jar to classpath. +[01:07:48] [main/DEBUG] (FabricLoader/Knot) Adding D:\BridgeBase\.gradle\loom-cache\remapped_mods\net_legacyfabric_yarn_1_8_9_1_8_9_build_514_v2\net\legacyfabric\legacy-fabric-api\legacy-fabric-registry-sync-api-v1-common\2.1.0+508c546092\legacy-fabric-registry-sync-api-v1-common-2.1.0+508c546092.jar to classpath. +[01:07:48] [main/DEBUG] (FabricLoader/Knot) Adding D:\BridgeBase\.gradle\loom-cache\remapped_mods\net_legacyfabric_yarn_1_8_9_1_8_9_build_514_v2\net\legacyfabric\legacy-fabric-api\legacy-fabric-command-api-v1\1.0.0+ae4aa0d092\legacy-fabric-command-api-v1-1.0.0+ae4aa0d092.jar to classpath. +[01:07:48] [main/DEBUG] (FabricLoader/Knot) Adding D:\BridgeBase\.gradle\loom-cache\remapped_mods\net_legacyfabric_yarn_1_8_9_1_8_9_build_514_v2\net\legacyfabric\legacy-fabric-api\legacy-fabric-item-groups-v1-common\2.0.0+1dd3cad892\legacy-fabric-item-groups-v1-common-2.0.0+1dd3cad892.jar to classpath. +[01:07:48] [main/DEBUG] (FabricLoader/Knot) Adding D:\BridgeBase\.gradle\loom-cache\remapped_mods\net_legacyfabric_yarn_1_8_9_1_8_9_build_514_v2\net\legacyfabric\legacy-fabric-api\legacy-fabric-lifecycle-events-v1-common\1.0.1+ae4aa0d092\legacy-fabric-lifecycle-events-v1-common-1.0.1+ae4aa0d092.jar to classpath. +[01:07:48] [main/DEBUG] (FabricLoader/Knot) Adding D:\BridgeBase\.gradle\loom-cache\remapped_mods\net_legacyfabric_yarn_1_8_9_1_8_9_build_514_v2\net\legacyfabric\legacy-fabric-api\legacy-fabric-api-base-common\1.1.0+1dd3cad892\legacy-fabric-api-base-common-1.1.0+1dd3cad892.jar to classpath. +[01:07:48] [main/DEBUG] (FabricLoader/Knot) Adding D:\BridgeBase\.gradle\loom-cache\remapped_mods\net_legacyfabric_yarn_1_8_9_1_8_9_build_514_v2\net\legacyfabric\legacy-fabric-api\legacy-fabric-crash-report-info-v1\1.0.0+1.8.9+f368a06d39\legacy-fabric-crash-report-info-v1-1.0.0+1.8.9+f368a06d39.jar to classpath. +[01:07:48] [main/DEBUG] (FabricLoader/Knot) Adding D:\BridgeBase\.gradle\loom-cache\remapped_mods\net_legacyfabric_yarn_1_8_9_1_8_9_build_514_v2\net\legacyfabric\legacy-fabric-api\legacy-fabric-gamerule-api-v1\1.0.0+ae4aa0d092\legacy-fabric-gamerule-api-v1-1.0.0+ae4aa0d092.jar to classpath. +[01:07:48] [main/DEBUG] (FabricLoader/Knot) Adding D:\BridgeBase\.gradle\loom-cache\remapped_mods\net_legacyfabric_yarn_1_8_9_1_8_9_build_514_v2\net\legacyfabric\legacy-fabric-api\legacy-fabric-networking-api-v1\2.0.0+1.8.9+01f7587839\legacy-fabric-networking-api-v1-2.0.0+1.8.9+01f7587839.jar to classpath. +[01:07:48] [main/DEBUG] (FabricLoader/Knot) Adding D:\BridgeBase\v1_8_9\build\resources\main to classpath. +[01:07:48] [main/DEBUG] (FabricLoader/Knot) Adding D:\BridgeBase\.gradle\loom-cache\remapped_mods\net_legacyfabric_yarn_1_8_9_1_8_9_build_514_v2\net\legacyfabric\legacy-fabric-api\legacy-fabric-item-groups-v1\2.0.0+1.8.9+f368a06d39\legacy-fabric-item-groups-v1-2.0.0+1.8.9+f368a06d39.jar to classpath. +[01:07:48] [main/DEBUG] (FabricLoader/Knot) Adding D:\BridgeBase\.gradle\loom-cache\remapped_mods\net_legacyfabric_yarn_1_8_9_1_8_9_build_514_v2\net\legacyfabric\legacy-fabric-api\legacy-fabric-permissions-api-v1-common\1.0.0+ae4aa0d092\legacy-fabric-permissions-api-v1-common-1.0.0+ae4aa0d092.jar to classpath. +[01:07:48] [main/DEBUG] (FabricLoader/Knot) Adding D:\BridgeBase\.gradle\loom-cache\remapped_mods\net_legacyfabric_yarn_1_8_9_1_8_9_build_514_v2\net\legacyfabric\legacy-fabric-api\legacy-fabric-keybindings-api-v1-common\1.0.0+ae4aa0d092\legacy-fabric-keybindings-api-v1-common-1.0.0+ae4aa0d092.jar to classpath. +[01:07:48] [main/DEBUG] (FabricLoader/Knot) Adding D:\BridgeBase\.gradle\loom-cache\remapped_mods\net_legacyfabric_yarn_1_8_9_1_8_9_build_514_v2\net\legacyfabric\legacy-fabric-api\legacy-fabric-api-base\1.1.0+1.8.9+f368a06d39\legacy-fabric-api-base-1.1.0+1.8.9+f368a06d39.jar to classpath. +[01:07:48] [main/DEBUG] (FabricLoader/Knot) Adding C:\Users\rohan\.gradle\caches\modules-2\files-2.1\io.github.llamalad7\mixinextras-fabric\0.3.2\33c53c7014a170a9cdfbc801f7a77a0eefd3bd00\mixinextras-fabric-0.3.2.jar to classpath. +[01:07:48] [main/DEBUG] (FabricLoader/Knot) Adding D:\BridgeBase\.gradle\loom-cache\remapped_mods\net_legacyfabric_yarn_1_8_9_1_8_9_build_514_v2\net\legacyfabric\legacy-fabric-api\legacy-fabric-entity-events-v1-common\1.0.0+ae4aa0d092\legacy-fabric-entity-events-v1-common-1.0.0+ae4aa0d092.jar to classpath. +[01:07:48] [main/DEBUG] (FabricLoader/Knot) Adding D:\BridgeBase\.gradle\loom-cache\remapped_mods\net_legacyfabric_yarn_1_8_9_1_8_9_build_514_v2\net\legacyfabric\legacy-fabric-api\legacy-fabric-logger-api-v1\1.0.4+ae4aa0d092\legacy-fabric-logger-api-v1-1.0.4+ae4aa0d092.jar to classpath. +[01:07:48] [main/DEBUG] (FabricLoader/Knot) Adding D:\BridgeBase\.gradle\loom-cache\remapped_mods\net_legacyfabric_yarn_1_8_9_1_8_9_build_514_v2\net\legacyfabric\legacy-fabric-api\legacy-fabric-api\1.9.1+1.8.9\legacy-fabric-api-1.9.1+1.8.9.jar to classpath. +[01:07:48] [main/DEBUG] (FabricLoader/Knot) Adding D:\BridgeBase\.gradle\loom-cache\remapped_mods\net_legacyfabric_yarn_1_8_9_1_8_9_build_514_v2\net\legacyfabric\legacy-fabric-api\legacy-fabric-resource-loader-v1\2.1.0+1.8.9+022f9a7539\legacy-fabric-resource-loader-v1-2.1.0+1.8.9+022f9a7539.jar to classpath. +[01:07:48] [main/DEBUG] (FabricLoader/Knot) Adding D:\BridgeBase\.gradle\loom-cache\remapped_mods\net_legacyfabric_yarn_1_8_9_1_8_9_build_514_v2\net\legacyfabric\legacy-fabric-api\legacy-fabric-networking-api-v1-common\2.0.0+022f9a7592\legacy-fabric-networking-api-v1-common-2.0.0+022f9a7592.jar to classpath. +[01:07:48] [main/DEBUG] (FabricLoader/Knot) Adding D:\BridgeBase\.gradle\loom-cache\remapped_mods\net_legacyfabric_yarn_1_8_9_1_8_9_build_514_v2\net\legacyfabric\legacy-fabric-api\legacy-fabric-lifecycle-events-v1\1.0.1+1.8.9+d86bee7939\legacy-fabric-lifecycle-events-v1-1.0.1+1.8.9+d86bee7939.jar to classpath. +[01:07:48] [main/DEBUG] (FabricLoader/Knot) Adding D:\BridgeBase\.gradle\loom-cache\remapped_mods\net_legacyfabric_yarn_1_8_9_1_8_9_build_514_v2\net\legacyfabric\legacy-fabric-api\legacy-fabric-resource-loader-v1-common\2.1.0+a9c128f492\legacy-fabric-resource-loader-v1-common-2.1.0+a9c128f492.jar to classpath. +[01:07:48] [main/DEBUG] (FabricLoader/Entrypoint) Registering new-style initializer net.legacyfabric.fabric.impl.command.ImplInit for mod legacy-fabric-command-api-v2 (key server) +[01:07:48] [main/DEBUG] (FabricLoader/Entrypoint) Registering new-style initializer net.legacyfabric.fabric.impl.command.ImplInit for mod legacy-fabric-command-api-v2 (key client) +[01:07:48] [main/DEBUG] (FabricLoader/Entrypoint) Registering new-style initializer net.legacyfabric.fabric.impl.registry.sync.RegistrySyncEarlyInitializer for mod legacy-fabric-registry-sync-api-v1 (key preLaunch) +[01:07:48] [main/DEBUG] (FabricLoader/Entrypoint) Registering new-style initializer net.legacyfabric.fabric.impl.client.registry.sync.ClientRemapInitializer for mod legacy-fabric-registry-sync-api-v1-common (key client) +[01:07:48] [main/DEBUG] (FabricLoader/Entrypoint) Registering new-style initializer net.legacyfabric.fabric.impl.command.CommandInitializer for mod legacy-fabric-command-api-v1 (key main) +[01:07:48] [main/DEBUG] (FabricLoader/Entrypoint) Registering new-style initializer dev.refactoring.ClientEntrypoint for mod testclient (key client) +[01:07:48] [main/INFO] (FabricLoader/Mixin) SpongePowered MIXIN Subsystem Version=0.8.5 Source=file:/C:/Users/rohan/.gradle/caches/modules-2/files-2.1/net.fabricmc/sponge-mixin/0.12.5+mixin.0.8.5/8d31fb97c3e0cd7c8dad3441851c523bcfae6d8e/sponge-mixin-0.12.5+mixin.0.8.5.jar Service=Knot/Fabric Env=CLIENT +[01:07:48] [main/DEBUG] (FabricLoader/Mixin) Error cleaning class output directory: .mixin.out +[01:07:48] [main/DEBUG] (FabricLoader/Mixin) Initialising Mixin Platform Manager +[01:07:48] [main/DEBUG] (FabricLoader/Mixin) Adding mixin platform agents for container ContainerHandleURI(file:///C:/Users/rohan/.gradle/caches/modules-2/files-2.1/net.fabricmc/fabric-loader/0.15.2/c162baeb16a88d36812884f31d7c24f58a223a77/fabric-loader-0.15.2.jar) +[01:07:48] [main/DEBUG] (FabricLoader/Mixin) Instancing new MixinPlatformAgentDefault for ContainerHandleURI(file:///C:/Users/rohan/.gradle/caches/modules-2/files-2.1/net.fabricmc/fabric-loader/0.15.2/c162baeb16a88d36812884f31d7c24f58a223a77/fabric-loader-0.15.2.jar) +[01:07:48] [main/DEBUG] (FabricLoader/Mixin) MixinPlatformAgentDefault accepted container ContainerHandleURI(file:///C:/Users/rohan/.gradle/caches/modules-2/files-2.1/net.fabricmc/fabric-loader/0.15.2/c162baeb16a88d36812884f31d7c24f58a223a77/fabric-loader-0.15.2.jar) +[01:07:48] [main/DEBUG] (FabricLoader/Mixin) Instancing new MixinPlatformAgentDefault for ContainerHandleURI(file:///C:/Users/rohan/.gradle/caches/modules-2/files-2.1/net.fabricmc/fabric-loader/0.15.2/c162baeb16a88d36812884f31d7c24f58a223a77/fabric-loader-0.15.2.jar) +[01:07:48] [main/DEBUG] (FabricLoader/Mixin) MixinPlatformAgentDefault accepted container ContainerHandleURI(file:///C:/Users/rohan/.gradle/caches/modules-2/files-2.1/net.fabricmc/fabric-loader/0.15.2/c162baeb16a88d36812884f31d7c24f58a223a77/fabric-loader-0.15.2.jar) +[01:07:48] [main/DEBUG] (FabricLoader/Mixin) Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:ContainerHandleURI(file:///C:/Users/rohan/.gradle/caches/modules-2/files-2.1/net.fabricmc/fabric-loader/0.15.2/c162baeb16a88d36812884f31d7c24f58a223a77/fabric-loader-0.15.2.jar)] +[01:07:48] [main/DEBUG] (FabricLoader/Mixin) Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:ContainerHandleURI(file:///C:/Users/rohan/.gradle/caches/modules-2/files-2.1/net.fabricmc/fabric-loader/0.15.2/c162baeb16a88d36812884f31d7c24f58a223a77/fabric-loader-0.15.2.jar)] +[01:07:48] [main/INFO] (FabricLoader/Mixin) Loaded Fabric development mappings for mixin remapper! +[01:07:48] [main/DEBUG] (FabricLoader/Mixin) Mixin config legacy-fabric-rendering-api-v1-common.mixins.json does not specify "minVersion" property +[01:07:48] [main/DEBUG] (FabricLoader/Mixin) Mixin config legacy-fabric-sponge-command-api-v2.mixins.json does not specify "minVersion" property +[01:07:48] [main/DEBUG] (FabricLoader/Mixin) Mixin config legacy-fabric-rendering-api-v1.mixins.json does not specify "minVersion" property +[01:07:48] [main/DEBUG] (FabricLoader/Mixin) Mixin config legacy-fabric-entity-events-v1.mixins.json does not specify "minVersion" property +[01:07:48] [main/DEBUG] (FabricLoader/Mixin) Mixin config legacy-fabric-registry-sync-api-v1.mixins.json does not specify "minVersion" property +[01:07:48] [main/DEBUG] (FabricLoader/Mixin) Mixin config legacy-fabric-permissions-api-v1.mixins.json does not specify "minVersion" property +[01:07:48] [main/DEBUG] (FabricLoader/Mixin) Mixin config legacy-fabric-registry-sync-api-v1-common.mixins.json does not specify "minVersion" property +[01:07:48] [main/DEBUG] (FabricLoader/Mixin) Mixin config legacy-fabric-item-groups-v1-common.mixins.json does not specify "minVersion" property +[01:07:48] [main/DEBUG] (FabricLoader/Mixin) Mixin config legacy-fabric-crash-report-info-v1.mixins.json does not specify "minVersion" property +[01:07:48] [main/DEBUG] (FabricLoader/Mixin) Mixin config legacy-fabric-gamerule-api-v1.mixins.json does not specify "minVersion" property +[01:07:48] [main/DEBUG] (FabricLoader/Mixin) Mixin config legacy-fabric-networking-api-v1.mixins.json does not specify "minVersion" property +[01:07:48] [main/DEBUG] (FabricLoader/Mixin) Mixin config legacy-fabric-item-groups-v1.mixins.json does not specify "minVersion" property +[01:07:48] [main/DEBUG] (FabricLoader/Mixin) Mixin config legacy-fabric-keybinding-api-v1.mixins.json does not specify "minVersion" property +[01:07:48] [main/DEBUG] (FabricLoader/Mixin) Mixin config legacy-fabric-resource-loader-v1.mixins.json does not specify "minVersion" property +[01:07:48] [main/DEBUG] (FabricLoader/Mixin) Mixin config legacy-fabric-networking-api-v1-common.mixins.json does not specify "minVersion" property +[01:07:48] [main/DEBUG] (FabricLoader/Mixin) Mixin config legacy-fabric-lifecycle-events-v1.mixins.json does not specify "minVersion" property +[01:07:48] [main/DEBUG] (FabricLoader/Mixin) Mixin config legacy-fabric-resource-loader-v1-common.mixins.json does not specify "minVersion" property +[01:07:48] [main/DEBUG] (FabricLoader/Knot) Adding C:\Users\rohan\.gradle\caches\modules-2\files-2.1\com.mojang\realms\1.7.59\9c6c59b742d8e038a15f64c1aa273a893a658424\realms-1.7.59.jar to classpath. +[01:07:48] [main/DEBUG] (FabricLoader/Knot) Adding D:\BridgeBase\v1_8_9\build\classes\java\main to classpath. +[01:07:48] [main/DEBUG] (FabricLoader/Knot) Adding D:\BridgeBase\v1_8_9\build\resources\main to classpath. +[01:07:48] [main/DEBUG] (FabricLoader/Knot) Adding C:\Users\rohan\.gradle\caches\fabric-loom\1.8.9\net.legacyfabric.yarn.1_8_9.1.8.9+build.514-v2\mappings.jar to classpath. +[01:07:48] [main/DEBUG] (FabricLoader/Knot) Adding D:\BridgeBase\Client\build\libs\Client-1.0-SNAPSHOT.jar to classpath. +[01:07:48] [main/DEBUG] (FabricLoader/Knot) Adding D:\BridgeBase\Bridge\build\libs\Bridge-1.0-SNAPSHOT.jar to classpath. +[01:07:48] [main/DEBUG] (FabricLoader/Knot) Adding C:\Users\rohan\.gradle\caches\modules-2\files-2.1\io.github.llamalad7\mixinextras-fabric\0.3.2\33c53c7014a170a9cdfbc801f7a77a0eefd3bd00\mixinextras-fabric-0.3.2.jar to classpath. +[01:07:48] [main/DEBUG] (FabricLoader/Knot) Adding C:\Users\rohan\.gradle\caches\modules-2\files-2.1\net.fabricmc\dev-launch-injector\0.2.1+build.8\da8bef7e6e2f952da707f282bdb46882a0fce5e3\dev-launch-injector-0.2.1+build.8.jar to classpath. +[01:07:48] [main/DEBUG] (FabricLoader/Knot) Adding C:\Users\rohan\.gradle\caches\modules-2\files-2.1\com.mojang\netty\1.8.8\a796914d1c8a55b4da9f4a8856dd9623375d8bb\netty-1.8.8.jar to classpath. +[01:07:48] [main/DEBUG] (FabricLoader/Knot) Adding C:\Users\rohan\.gradle\caches\modules-2\files-2.1\oshi-project\oshi-core\1.1\9ddf7b048a8d701be231c0f4f95fd986198fd2d8\oshi-core-1.1.jar to classpath. +[01:07:48] [main/DEBUG] (FabricLoader/Knot) Adding C:\Users\rohan\.gradle\caches\modules-2\files-2.1\net.java.dev.jna\jna\3.4.0\803ff252fedbd395baffd43b37341dc4a150a554\jna-3.4.0.jar to classpath. +[01:07:48] [main/DEBUG] (FabricLoader/Knot) Adding C:\Users\rohan\.gradle\caches\modules-2\files-2.1\net.java.dev.jna\platform\3.4.0\e3f70017be8100d3d6923f50b3d2ee17714e9c13\platform-3.4.0.jar to classpath. +[01:07:48] [main/DEBUG] (FabricLoader/Knot) Adding C:\Users\rohan\.gradle\caches\modules-2\files-2.1\com.ibm.icu\icu4j-core-mojang\51.2\63d216a9311cca6be337c1e458e587f99d382b84\icu4j-core-mojang-51.2.jar to classpath. +[01:07:48] [main/DEBUG] (FabricLoader/Knot) Adding C:\Users\rohan\.gradle\caches\modules-2\files-2.1\net.sf.jopt-simple\jopt-simple\4.6\306816fb57cf94f108a43c95731b08934dcae15c\jopt-simple-4.6.jar to classpath. +[01:07:48] [main/DEBUG] (FabricLoader/Knot) Adding C:\Users\rohan\.gradle\caches\modules-2\files-2.1\com.paulscode\codecjorbis\20101023\c73b5636faf089d9f00e8732a829577de25237ee\codecjorbis-20101023.jar to classpath. +[01:07:48] [main/DEBUG] (FabricLoader/Knot) Adding C:\Users\rohan\.gradle\caches\modules-2\files-2.1\com.paulscode\codecwav\20101023\12f031cfe88fef5c1dd36c563c0a3a69bd7261da\codecwav-20101023.jar to classpath. +[01:07:48] [main/DEBUG] (FabricLoader/Knot) Adding C:\Users\rohan\.gradle\caches\modules-2\files-2.1\com.paulscode\libraryjavasound\20101123\5c5e304366f75f9eaa2e8cca546a1fb6109348b3\libraryjavasound-20101123.jar to classpath. +[01:07:48] [main/DEBUG] (FabricLoader/Knot) Adding C:\Users\rohan\.gradle\caches\modules-2\files-2.1\com.paulscode\librarylwjglopenal\20100824\73e80d0794c39665aec3f62eee88ca91676674ef\librarylwjglopenal-20100824.jar to classpath. +[01:07:48] [main/DEBUG] (FabricLoader/Knot) Adding C:\Users\rohan\.gradle\caches\modules-2\files-2.1\com.paulscode\soundsystem\20120107\419c05fe9be71f792b2d76cfc9b67f1ed0fec7f6\soundsystem-20120107.jar to classpath. +[01:07:48] [main/DEBUG] (FabricLoader/Knot) Adding C:\Users\rohan\.gradle\caches\modules-2\files-2.1\io.netty\netty-all\4.0.23.Final\294104aaf1781d6a56a07d561e792c5d0c95f45\netty-all-4.0.23.Final.jar to classpath. +[01:07:48] [main/DEBUG] (FabricLoader/Knot) Adding C:\Users\rohan\.gradle\caches\modules-2\files-2.1\com.google.guava\guava\17.0\9c6ef172e8de35fd8d4d8783e4821e57cdef7445\guava-17.0.jar to classpath. +[01:07:48] [main/DEBUG] (FabricLoader/Knot) Adding C:\Users\rohan\.gradle\caches\modules-2\files-2.1\org.apache.commons\commons-lang3\3.3.2\90a3822c38ec8c996e84c16a3477ef632cbc87a3\commons-lang3-3.3.2.jar to classpath. +[01:07:48] [main/DEBUG] (FabricLoader/Knot) Adding C:\Users\rohan\.gradle\caches\modules-2\files-2.1\commons-io\commons-io\2.4\b1b6ea3b7e4aa4f492509a4952029cd8e48019ad\commons-io-2.4.jar to classpath. +[01:07:48] [main/DEBUG] (FabricLoader/Knot) Adding C:\Users\rohan\.gradle\caches\modules-2\files-2.1\commons-codec\commons-codec\1.9\9ce04e34240f674bc72680f8b843b1457383161a\commons-codec-1.9.jar to classpath. +[01:07:48] [main/DEBUG] (FabricLoader/Knot) Adding C:\Users\rohan\.gradle\caches\modules-2\files-2.1\net.java.jinput\jinput\2.0.5\39c7796b469a600f72380316f6b1f11db6c2c7c4\jinput-2.0.5.jar to classpath. +[01:07:48] [main/DEBUG] (FabricLoader/Knot) Adding C:\Users\rohan\.gradle\caches\modules-2\files-2.1\net.java.jutils\jutils\1.0.0\e12fe1fda814bd348c1579329c86943d2cd3c6a6\jutils-1.0.0.jar to classpath. +[01:07:48] [main/DEBUG] (FabricLoader/Knot) Adding C:\Users\rohan\.gradle\caches\modules-2\files-2.1\org.apache.commons\commons-compress\1.8.1\a698750c16740fd5b3871425f4cb3bbaa87f529d\commons-compress-1.8.1.jar to classpath. +[01:07:48] [main/DEBUG] (FabricLoader/Knot) Adding C:\Users\rohan\.gradle\caches\modules-2\files-2.1\org.apache.httpcomponents\httpclient\4.3.3\18f4247ff4572a074444572cee34647c43e7c9c7\httpclient-4.3.3.jar to classpath. +[01:07:48] [main/DEBUG] (FabricLoader/Knot) Adding C:\Users\rohan\.gradle\caches\modules-2\files-2.1\commons-logging\commons-logging\1.1.3\f6f66e966c70a83ffbdb6f17a0919eaf7c8aca7f\commons-logging-1.1.3.jar to classpath. +[01:07:48] [main/DEBUG] (FabricLoader/Knot) Adding C:\Users\rohan\.gradle\caches\modules-2\files-2.1\org.apache.httpcomponents\httpcore\4.3.2\31fbbff1ddbf98f3aa7377c94d33b0447c646b6e\httpcore-4.3.2.jar to classpath. +[01:07:48] [main/DEBUG] (FabricLoader/Knot) Adding C:\Users\rohan\.gradle\caches\modules-2\files-2.1\org.lwjgl.lwjgl\lwjgl\2.9.4-nightly-20150209\697517568c68e78ae0b4544145af031c81082dfe\lwjgl-2.9.4-nightly-20150209.jar to classpath. +[01:07:48] [main/DEBUG] (FabricLoader/Knot) Adding C:\Users\rohan\.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 to classpath. +[01:07:48] [main/DEBUG] (FabricLoader/Knot) Adding C:\Users\rohan\.gradle\caches\modules-2\files-2.1\org.lwjgl.lwjgl\lwjgl-platform\2.9.4-nightly-20150209\b04f3ee8f5e43fa3b162981b50bb72fe1acabb33\lwjgl-platform-2.9.4-nightly-20150209.jar to classpath. +[01:07:48] [main/DEBUG] (FabricLoader/Knot) Adding C:\Users\rohan\.gradle\caches\modules-2\files-2.1\tv.twitch\twitch\6.5\320a2dfd18513a5f41b4e75729df684488cbd925\twitch-6.5.jar to classpath. +[01:07:48] [main/DEBUG] (FabricLoader/Knot) Adding C:\Users\rohan\.gradle\caches\modules-2\files-2.1\net.legacyfabric.legacy-fabric-api\legacy-fabric-keybindings-api-v1\1.0.0+1.8.9+244aa6c039\324ffa656704361b64f63d5987285dbb5003eb41\legacy-fabric-keybindings-api-v1-1.0.0+1.8.9+244aa6c039.jar to classpath. +[01:07:48] [main/DEBUG] (FabricLoader/Knot) Adding D:\BridgeBase\.gradle\loom-cache\remapped_mods\net_legacyfabric_yarn_1_8_9_1_8_9_build_514_v2\net\legacyfabric\legacy-fabric-api\legacy-fabric-api\1.9.1+1.8.9\legacy-fabric-api-1.9.1+1.8.9.jar to classpath. +[01:07:48] [main/DEBUG] (FabricLoader/Knot) Adding D:\BridgeBase\.gradle\loom-cache\remapped_mods\net_legacyfabric_yarn_1_8_9_1_8_9_build_514_v2\net\legacyfabric\legacy-fabric-api\legacy-fabric-command-api-v2\1.0.0+1.8.9+01f7587839\legacy-fabric-command-api-v2-1.0.0+1.8.9+01f7587839.jar to classpath. +[01:07:48] [main/DEBUG] (FabricLoader/Knot) Adding D:\BridgeBase\.gradle\loom-cache\remapped_mods\net_legacyfabric_yarn_1_8_9_1_8_9_build_514_v2\net\legacyfabric\legacy-fabric-api\legacy-fabric-command-api-v1\1.0.0+ae4aa0d092\legacy-fabric-command-api-v1-1.0.0+ae4aa0d092.jar to classpath. +[01:07:48] [main/DEBUG] (FabricLoader/Knot) Adding D:\BridgeBase\.gradle\loom-cache\remapped_mods\net_legacyfabric_yarn_1_8_9_1_8_9_build_514_v2\net\legacyfabric\legacy-fabric-api\legacy-fabric-entity-events-v1\1.0.0+1.8.9+f368a06d39\legacy-fabric-entity-events-v1-1.0.0+1.8.9+f368a06d39.jar to classpath. +[01:07:48] [main/DEBUG] (FabricLoader/Knot) Adding D:\BridgeBase\.gradle\loom-cache\remapped_mods\net_legacyfabric_yarn_1_8_9_1_8_9_build_514_v2\net\legacyfabric\legacy-fabric-api\legacy-fabric-entity-events-v1-common\1.0.0+ae4aa0d092\legacy-fabric-entity-events-v1-common-1.0.0+ae4aa0d092.jar to classpath. +[01:07:48] [main/DEBUG] (FabricLoader/Knot) Adding D:\BridgeBase\.gradle\loom-cache\remapped_mods\net_legacyfabric_yarn_1_8_9_1_8_9_build_514_v2\net\legacyfabric\legacy-fabric-api\legacy-fabric-gamerule-api-v1\1.0.0+ae4aa0d092\legacy-fabric-gamerule-api-v1-1.0.0+ae4aa0d092.jar to classpath. +[01:07:48] [main/DEBUG] (FabricLoader/Knot) Adding D:\BridgeBase\.gradle\loom-cache\remapped_mods\net_legacyfabric_yarn_1_8_9_1_8_9_build_514_v2\net\legacyfabric\legacy-fabric-api\legacy-fabric-item-groups-v1\2.0.0+1.8.9+f368a06d39\legacy-fabric-item-groups-v1-2.0.0+1.8.9+f368a06d39.jar to classpath. +[01:07:48] [main/DEBUG] (FabricLoader/Knot) Adding D:\BridgeBase\.gradle\loom-cache\remapped_mods\net_legacyfabric_yarn_1_8_9_1_8_9_build_514_v2\net\legacyfabric\legacy-fabric-api\legacy-fabric-item-groups-v1-common\2.0.0+1dd3cad892\legacy-fabric-item-groups-v1-common-2.0.0+1dd3cad892.jar to classpath. +[01:07:48] [main/DEBUG] (FabricLoader/Knot) Adding D:\BridgeBase\.gradle\loom-cache\remapped_mods\net_legacyfabric_yarn_1_8_9_1_8_9_build_514_v2\net\legacyfabric\legacy-fabric-api\legacy-fabric-keybindings-api-v1-common\1.0.0+ae4aa0d092\legacy-fabric-keybindings-api-v1-common-1.0.0+ae4aa0d092.jar to classpath. +[01:07:48] [main/DEBUG] (FabricLoader/Knot) Adding D:\BridgeBase\.gradle\loom-cache\remapped_mods\net_legacyfabric_yarn_1_8_9_1_8_9_build_514_v2\net\legacyfabric\legacy-fabric-api\legacy-fabric-lifecycle-events-v1\1.0.1+1.8.9+d86bee7939\legacy-fabric-lifecycle-events-v1-1.0.1+1.8.9+d86bee7939.jar to classpath. +[01:07:48] [main/DEBUG] (FabricLoader/Knot) Adding D:\BridgeBase\.gradle\loom-cache\remapped_mods\net_legacyfabric_yarn_1_8_9_1_8_9_build_514_v2\net\legacyfabric\legacy-fabric-api\legacy-fabric-lifecycle-events-v1-common\1.0.1+ae4aa0d092\legacy-fabric-lifecycle-events-v1-common-1.0.1+ae4aa0d092.jar to classpath. +[01:07:48] [main/DEBUG] (FabricLoader/Knot) Adding D:\BridgeBase\.gradle\loom-cache\remapped_mods\net_legacyfabric_yarn_1_8_9_1_8_9_build_514_v2\net\legacyfabric\legacy-fabric-api\legacy-fabric-registry-sync-api-v1\2.1.0+1.8.9+508c546039\legacy-fabric-registry-sync-api-v1-2.1.0+1.8.9+508c546039.jar to classpath. +[01:07:48] [main/DEBUG] (FabricLoader/Knot) Adding D:\BridgeBase\.gradle\loom-cache\remapped_mods\net_legacyfabric_yarn_1_8_9_1_8_9_build_514_v2\net\legacyfabric\legacy-fabric-api\legacy-fabric-registry-sync-api-v1-common\2.1.0+508c546092\legacy-fabric-registry-sync-api-v1-common-2.1.0+508c546092.jar to classpath. +[01:07:48] [main/DEBUG] (FabricLoader/Knot) Adding D:\BridgeBase\.gradle\loom-cache\remapped_mods\net_legacyfabric_yarn_1_8_9_1_8_9_build_514_v2\net\legacyfabric\legacy-fabric-api\legacy-fabric-networking-api-v1\2.0.0+1.8.9+01f7587839\legacy-fabric-networking-api-v1-2.0.0+1.8.9+01f7587839.jar to classpath. +[01:07:48] [main/DEBUG] (FabricLoader/Knot) Adding D:\BridgeBase\.gradle\loom-cache\remapped_mods\net_legacyfabric_yarn_1_8_9_1_8_9_build_514_v2\net\legacyfabric\legacy-fabric-api\legacy-fabric-networking-api-v1-common\2.0.0+022f9a7592\legacy-fabric-networking-api-v1-common-2.0.0+022f9a7592.jar to classpath. +[01:07:48] [main/DEBUG] (FabricLoader/Knot) Adding D:\BridgeBase\.gradle\loom-cache\remapped_mods\net_legacyfabric_yarn_1_8_9_1_8_9_build_514_v2\net\legacyfabric\legacy-fabric-api\legacy-fabric-permissions-api-v1\1.0.0+1.8.9+f368a06d39\legacy-fabric-permissions-api-v1-1.0.0+1.8.9+f368a06d39.jar to classpath. +[01:07:48] [main/DEBUG] (FabricLoader/Knot) Adding D:\BridgeBase\.gradle\loom-cache\remapped_mods\net_legacyfabric_yarn_1_8_9_1_8_9_build_514_v2\net\legacyfabric\legacy-fabric-api\legacy-fabric-permissions-api-v1-common\1.0.0+ae4aa0d092\legacy-fabric-permissions-api-v1-common-1.0.0+ae4aa0d092.jar to classpath. +[01:07:48] [main/DEBUG] (FabricLoader/Knot) Adding D:\BridgeBase\.gradle\loom-cache\remapped_mods\net_legacyfabric_yarn_1_8_9_1_8_9_build_514_v2\net\legacyfabric\legacy-fabric-api\legacy-fabric-rendering-api-v1\1.0.0+1.8.9+022f9a7539\legacy-fabric-rendering-api-v1-1.0.0+1.8.9+022f9a7539.jar to classpath. +[01:07:48] [main/DEBUG] (FabricLoader/Knot) Adding D:\BridgeBase\.gradle\loom-cache\remapped_mods\net_legacyfabric_yarn_1_8_9_1_8_9_build_514_v2\net\legacyfabric\legacy-fabric-api\legacy-fabric-rendering-api-v1-common\1.0.0+ae4aa0d092\legacy-fabric-rendering-api-v1-common-1.0.0+ae4aa0d092.jar to classpath. +[01:07:48] [main/DEBUG] (FabricLoader/Knot) Adding D:\BridgeBase\.gradle\loom-cache\remapped_mods\net_legacyfabric_yarn_1_8_9_1_8_9_build_514_v2\net\legacyfabric\legacy-fabric-api\legacy-fabric-resource-loader-v1\2.1.0+1.8.9+022f9a7539\legacy-fabric-resource-loader-v1-2.1.0+1.8.9+022f9a7539.jar to classpath. +[01:07:48] [main/DEBUG] (FabricLoader/Knot) Adding D:\BridgeBase\.gradle\loom-cache\remapped_mods\net_legacyfabric_yarn_1_8_9_1_8_9_build_514_v2\net\legacyfabric\legacy-fabric-api\legacy-fabric-resource-loader-v1-common\2.1.0+a9c128f492\legacy-fabric-resource-loader-v1-common-2.1.0+a9c128f492.jar to classpath. +[01:07:48] [main/DEBUG] (FabricLoader/Knot) Adding D:\BridgeBase\.gradle\loom-cache\remapped_mods\net_legacyfabric_yarn_1_8_9_1_8_9_build_514_v2\net\legacyfabric\legacy-fabric-api\legacy-fabric-api-base\1.1.0+1.8.9+f368a06d39\legacy-fabric-api-base-1.1.0+1.8.9+f368a06d39.jar to classpath. +[01:07:48] [main/DEBUG] (FabricLoader/Knot) Adding D:\BridgeBase\.gradle\loom-cache\remapped_mods\net_legacyfabric_yarn_1_8_9_1_8_9_build_514_v2\net\legacyfabric\legacy-fabric-api\legacy-fabric-api-base-common\1.1.0+1dd3cad892\legacy-fabric-api-base-common-1.1.0+1dd3cad892.jar to classpath. +[01:07:48] [main/DEBUG] (FabricLoader/Knot) Adding D:\BridgeBase\.gradle\loom-cache\remapped_mods\net_legacyfabric_yarn_1_8_9_1_8_9_build_514_v2\net\legacyfabric\legacy-fabric-api\legacy-fabric-logger-api-v1\1.0.4+ae4aa0d092\legacy-fabric-logger-api-v1-1.0.4+ae4aa0d092.jar to classpath. +[01:07:48] [main/DEBUG] (FabricLoader/Knot) Adding D:\BridgeBase\.gradle\loom-cache\remapped_mods\net_legacyfabric_yarn_1_8_9_1_8_9_build_514_v2\net\legacyfabric\legacy-fabric-api\legacy-fabric-crash-report-info-v1\1.0.0+1.8.9+f368a06d39\legacy-fabric-crash-report-info-v1-1.0.0+1.8.9+f368a06d39.jar to classpath. +[01:07:48] [main/DEBUG] (FabricLoader/Knot) Adding C:\Users\rohan\.gradle\caches\modules-2\files-2.1\org.lwjgl\lwjgl-opengl\3.3.2\ee8e95be0b438602038bc1f02dc5e3d011b1b216\lwjgl-opengl-3.3.2.jar to classpath. +[01:07:48] [main/DEBUG] (FabricLoader/Knot) Adding C:\Users\rohan\.gradle\caches\modules-2\files-2.1\org.jline\jline-reader\3.12.1\4382ab1382c7b6f379377ed5f665dc2f6e1218bc\jline-reader-3.12.1.jar to classpath. +[01:07:48] [main/DEBUG] (FabricLoader/Knot) Adding C:\Users\rohan\.gradle\caches\modules-2\files-2.1\org.lwjgl\lwjgl\3.3.2\4421d94af68e35dcaa31737a6fc59136a1e61b94\lwjgl-3.3.2.jar to classpath. +[01:07:48] [main/DEBUG] (FabricLoader/Knot) Adding C:\Users\rohan\.gradle\caches\modules-2\files-2.1\org.jline\jline-terminal\3.12.1\c777448314e050d980a6b697c140f3bfe9eb7416\jline-terminal-3.12.1.jar to classpath. +[01:07:48] [main/DEBUG] (FabricLoader/Entrypoint) Iterating over entrypoint 'preLaunch' +[01:07:48] [main/DEBUG] (FabricLoader/Mixin) Preparing mixins for MixinEnvironment[DEFAULT] +[01:07:48] [main/DEBUG] (FabricLoader/Mixin) Selecting config legacy-fabric-rendering-api-v1-common.mixins.json +[01:07:48] [main/DEBUG] (FabricLoader/Mixin) Remapping refMap legacy-fabric-rendering-api-v1-common-refmap.json using remapper chain +[01:07:48] [main/DEBUG] (FabricLoader/Mixin) Selecting config legacy-fabric-sponge-command-api-v2.mixins.json +[01:07:48] [main/DEBUG] (FabricLoader/Mixin) Remapping refMap legacy-fabric-command-api-v2-refmap.json using remapper chain +[01:07:48] [main/DEBUG] (FabricLoader/Mixin) Selecting config legacy-fabric-rendering-api-v1.mixins.json +[01:07:48] [main/DEBUG] (FabricLoader/Mixin) Remapping refMap legacy-fabric-rendering-api-v1-refmap.json using remapper chain +[01:07:48] [main/DEBUG] (FabricLoader/Mixin) Selecting config legacy-fabric-entity-events-v1.mixins.json +[01:07:48] [main/DEBUG] (FabricLoader/Mixin) Remapping refMap legacy-fabric-entity-events-v1-refmap.json using remapper chain +[01:07:48] [main/DEBUG] (FabricLoader/Mixin) Selecting config legacy-fabric-registry-sync-api-v1.mixins.json +[01:07:48] [main/DEBUG] (FabricLoader/Mixin) Remapping refMap legacy-fabric-registry-sync-api-v1-refmap.json using remapper chain +[01:07:48] [main/DEBUG] (FabricLoader/Mixin) Selecting config legacy-fabric-permissions-api-v1.mixins.json +[01:07:48] [main/DEBUG] (FabricLoader/Mixin) Remapping refMap legacy-fabric-permissions-api-v1-refmap.json using remapper chain +[01:07:48] [main/DEBUG] (FabricLoader/Mixin) Selecting config legacy-fabric-registry-sync-api-v1-common.mixins.json +[01:07:48] [main/DEBUG] (FabricLoader/Mixin) Remapping refMap legacy-fabric-registry-sync-api-v1-common-refmap.json using remapper chain +[01:07:48] [main/DEBUG] (FabricLoader/Mixin) Selecting config legacy-fabric-item-groups-v1-common.mixins.json +[01:07:48] [main/DEBUG] (FabricLoader/Mixin) Remapping refMap legacy-fabric-item-groups-v1-common-refmap.json using remapper chain +[01:07:48] [main/DEBUG] (FabricLoader/Mixin) Selecting config legacy-fabric-crash-report-info-v1.mixins.json +[01:07:48] [main/DEBUG] (FabricLoader/Mixin) Remapping refMap legacy-fabric-crash-report-info-v1-refmap.json using remapper chain +[01:07:48] [main/DEBUG] (FabricLoader/Mixin) Selecting config legacy-fabric-gamerule-api-v1.mixins.json +[01:07:48] [main/DEBUG] (FabricLoader/Mixin) Remapping refMap legacy-fabric-gamerule-api-v1-refmap.json using remapper chain +[01:07:48] [main/DEBUG] (FabricLoader/Mixin) Selecting config legacy-fabric-networking-api-v1.mixins.json +[01:07:48] [main/DEBUG] (FabricLoader/Mixin) Remapping refMap legacy-fabric-networking-api-v1-refmap.json using remapper chain +[01:07:48] [main/DEBUG] (FabricLoader/Mixin) Selecting config client.mixins.json +[01:07:48] [main/DEBUG] (FabricLoader/Mixin) Selecting config legacy-fabric-item-groups-v1.mixins.json +[01:07:48] [main/DEBUG] (FabricLoader/Mixin) Remapping refMap legacy-fabric-item-groups-v1-refmap.json using remapper chain +[01:07:48] [main/DEBUG] (FabricLoader/Mixin) Selecting config legacy-fabric-keybinding-api-v1.mixins.json +[01:07:48] [main/DEBUG] (FabricLoader/Mixin) Remapping refMap legacy-fabric-keybindings-api-v1-common-refmap.json using remapper chain +[01:07:48] [main/DEBUG] (FabricLoader/Mixin) Selecting config mixinextras.init.mixins.json +[01:07:48] [main/DEBUG] (FabricLoader/MixinExtras|Service) com.llamalad7.mixinextras.service.MixinExtrasServiceImpl(version=0.3.2) is taking over from null +[01:07:48] [main/DEBUG] (FabricLoader/Mixin) Registering new injector for @Inject with org.spongepowered.asm.mixin.injection.struct.CallbackInjectionInfo +[01:07:48] [main/DEBUG] (FabricLoader/Mixin) Registering new injector for @ModifyArg with org.spongepowered.asm.mixin.injection.struct.ModifyArgInjectionInfo +[01:07:48] [main/DEBUG] (FabricLoader/Mixin) Registering new injector for @ModifyArgs with org.spongepowered.asm.mixin.injection.struct.ModifyArgsInjectionInfo +[01:07:48] [main/DEBUG] (FabricLoader/Mixin) Registering new injector for @Redirect with org.spongepowered.asm.mixin.injection.struct.RedirectInjectionInfo +[01:07:48] [main/DEBUG] (FabricLoader/Mixin) Registering new injector for @ModifyVariable with org.spongepowered.asm.mixin.injection.struct.ModifyVariableInjectionInfo +[01:07:48] [main/DEBUG] (FabricLoader/Mixin) Registering new injector for @ModifyConstant with org.spongepowered.asm.mixin.injection.struct.ModifyConstantInjectionInfo +[01:07:48] [main/DEBUG] (FabricLoader/Mixin) Selecting config legacy-fabric-resource-loader-v1.mixins.json +[01:07:48] [main/DEBUG] (FabricLoader/Mixin) Remapping refMap legacy-fabric-resource-loader-v1-refmap.json using remapper chain +[01:07:48] [main/DEBUG] (FabricLoader/Mixin) Selecting config legacy-fabric-networking-api-v1-common.mixins.json +[01:07:48] [main/DEBUG] (FabricLoader/Mixin) Remapping refMap legacy-fabric-networking-api-v1-common-refmap.json using remapper chain +[01:07:48] [main/DEBUG] (FabricLoader/Mixin) Selecting config legacy-fabric-lifecycle-events-v1.mixins.json +[01:07:48] [main/DEBUG] (FabricLoader/Mixin) Remapping refMap legacy-fabric-lifecycle-events-v1-refmap.json using remapper chain +[01:07:48] [main/DEBUG] (FabricLoader/Mixin) Selecting config legacy-fabric-resource-loader-v1-common.mixins.json +[01:07:48] [main/DEBUG] (FabricLoader/Mixin) Remapping refMap legacy-fabric-resource-loader-v1-common-refmap.json using remapper chain +[01:07:48] [main/DEBUG] (FabricLoader/Mixin) Preparing legacy-fabric-rendering-api-v1-common.mixins.json (2) +[01:07:48] [main/DEBUG] (FabricLoader/Mixin) Preparing legacy-fabric-sponge-command-api-v2.mixins.json (1) +[01:07:48] [main/DEBUG] (FabricLoader/Mixin) Preparing legacy-fabric-rendering-api-v1.mixins.json (4) +[01:07:48] [main/DEBUG] (FabricLoader/Mixin) Preparing legacy-fabric-entity-events-v1.mixins.json (4) +[01:07:48] [main/DEBUG] (FabricLoader/Mixin) Preparing legacy-fabric-registry-sync-api-v1.mixins.json (15) +[01:07:48] [main/DEBUG] (FabricLoader/Mixin) Preparing legacy-fabric-permissions-api-v1.mixins.json (8) +[01:07:48] [main/DEBUG] (FabricLoader/Mixin) @Mixin target net/minecraft/command/CommandStats$1 is public in legacy-fabric-permissions-api-v1.mixins.json:CommandStats_1Mixin from mod legacy-fabric-permissions-api-v1 and should be specified in value +[01:07:48] [main/DEBUG] (FabricLoader/Mixin) @Mixin target net/minecraft/server/command/ExecuteCommand$1 is public in legacy-fabric-permissions-api-v1.mixins.json:ExecuteCommand_1Mixin from mod legacy-fabric-permissions-api-v1 and should be specified in value +[01:07:48] [main/DEBUG] (FabricLoader/Mixin) @Mixin target net/minecraft/block/entity/SignBlockEntity$1 is public in legacy-fabric-permissions-api-v1.mixins.json:SignBlockEntity_1Mixin from mod legacy-fabric-permissions-api-v1 and should be specified in value +[01:07:48] [main/DEBUG] (FabricLoader/Mixin) @Mixin target net/minecraft/block/entity/SignBlockEntity$2 is public in legacy-fabric-permissions-api-v1.mixins.json:SignBlockEntity_2Mixin from mod legacy-fabric-permissions-api-v1 and should be specified in value +[01:07:48] [main/DEBUG] (FabricLoader/Mixin) Preparing legacy-fabric-registry-sync-api-v1-common.mixins.json (11) +[01:07:48] [main/DEBUG] (FabricLoader/Mixin) Preparing legacy-fabric-item-groups-v1-common.mixins.json (4) +[01:07:48] [main/DEBUG] (FabricLoader/Mixin) Preparing legacy-fabric-crash-report-info-v1.mixins.json (1) +[01:07:48] [main/DEBUG] (FabricLoader/Mixin) Preparing legacy-fabric-gamerule-api-v1.mixins.json (1) +[01:07:48] [main/DEBUG] (FabricLoader/Mixin) Preparing legacy-fabric-networking-api-v1.mixins.json (6) +[01:07:48] [main/DEBUG] (FabricLoader/Mixin) Preparing client.mixins.json (2) +[01:07:48] [main/DEBUG] (FabricLoader/Mixin) Preparing legacy-fabric-item-groups-v1.mixins.json (1) +[01:07:48] [main/DEBUG] (FabricLoader/Mixin) Preparing legacy-fabric-keybinding-api-v1.mixins.json (1) +[01:07:48] [main/DEBUG] (FabricLoader/Mixin) Preparing mixinextras.init.mixins.json (0) +[01:07:48] [main/DEBUG] (FabricLoader/Mixin) Preparing legacy-fabric-resource-loader-v1.mixins.json (5) +[01:07:48] [main/DEBUG] (FabricLoader/Mixin) Preparing legacy-fabric-networking-api-v1-common.mixins.json (8) +[01:07:48] [main/DEBUG] (FabricLoader/Mixin) Preparing legacy-fabric-lifecycle-events-v1.mixins.json (6) +[01:07:48] [main/DEBUG] (FabricLoader/Mixin) Preparing legacy-fabric-resource-loader-v1-common.mixins.json (2) +[01:07:49] [main/DEBUG] (FabricLoader/Mixin) Prepared 82 mixins in 0.342 sec (4.2ms avg) (0ms load, 0ms transform, 0ms plugin) +[01:07:49] [main/INFO] (FabricLoader/MixinExtras|Service) Initializing MixinExtras via com.llamalad7.mixinextras.service.MixinExtrasServiceImpl(version=0.3.2). +[01:07:49] [main/DEBUG] (FabricLoader/Mixin) Registering new injector for @SugarWrapper with com.llamalad7.mixinextras.sugar.impl.SugarWrapperInjectionInfo +[01:07:49] [main/DEBUG] (FabricLoader/Mixin) Registering new injector for @FactoryRedirectWrapper with com.llamalad7.mixinextras.wrapper.factory.FactoryRedirectWrapperInjectionInfo +[01:07:49] [main/DEBUG] (FabricLoader/Mixin) Mixing client.MinecraftClientMixin from legacy-fabric-registry-sync-api-v1-common.mixins.json into net.minecraft.client.MinecraftClient +[01:07:49] [main/DEBUG] (FabricLoader/Mixin) Mixing client.MinecraftClientMixin from legacy-fabric-networking-api-v1.mixins.json into net.minecraft.client.MinecraftClient +[01:07:49] [main/DEBUG] (FabricLoader/Mixin) Mixing MixinMinecraftClient from client.mixins.json into net.minecraft.client.MinecraftClient +[01:07:49] [main/DEBUG] (FabricLoader/Mixin) client.mixins.json:MixinMinecraftClient from mod testclient: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_8 supports class version 52) +[01:07:49] [main/DEBUG] (FabricLoader/Mixin) Mixing client.MinecraftClientMixin from legacy-fabric-resource-loader-v1.mixins.json into net.minecraft.client.MinecraftClient +[01:07:49] [main/DEBUG] (FabricLoader/Mixin) Mixing client.MinecraftClientAccessor from legacy-fabric-networking-api-v1-common.mixins.json into net.minecraft.client.MinecraftClient +[01:07:49] [main/DEBUG] (FabricLoader/Mixin) Mixing client.MinecraftClientMixin from legacy-fabric-lifecycle-events-v1.mixins.json into net.minecraft.client.MinecraftClient +[01:07:49] [main/DEBUG] (FabricLoader/Mixin) legacy-fabric-registry-sync-api-v1-common.mixins.json:client.MinecraftClientMixin from mod legacy-fabric-registry-sync-api-v1-common->@Inject::remapperInit(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V doesn't use it's CallbackInfo +[01:07:49] [main/DEBUG] (FabricLoader/Mixin) client.mixins.json:MixinMinecraftClient from mod testclient->@Inject::mixin$tick(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V doesn't use it's CallbackInfo +[01:07:49] [main/DEBUG] (FabricLoader/Mixin) client.mixins.json:MixinMinecraftClient from mod testclient->@Inject::mixin$tick(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V has 0 override(s) in child classes +[01:07:49] [main/DEBUG] (FabricLoader/Mixin) client.mixins.json:MixinMinecraftClient from mod testclient->@Inject::mixin$tick(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V won't be passed a CallbackInfo as a result +[01:07:49] [main/DEBUG] (FabricLoader/Mixin) client.mixins.json:MixinMinecraftClient from mod testclient->@Inject::mixin$run(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V doesn't use it's CallbackInfo +[01:07:49] [main/DEBUG] (FabricLoader/Mixin) client.mixins.json:MixinMinecraftClient from mod testclient->@Inject::mixin$run(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V has 0 override(s) in child classes +[01:07:49] [main/DEBUG] (FabricLoader/Mixin) client.mixins.json:MixinMinecraftClient from mod testclient->@Inject::mixin$run(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V won't be passed a CallbackInfo as a result +[01:07:49] [main/DEBUG] (FabricLoader/Mixin) legacy-fabric-resource-loader-v1.mixins.json:client.MinecraftClientMixin from mod legacy-fabric-resource-loader-v1->@Inject::reloadResources(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;Ljava/util/List;)V doesn't use it's CallbackInfo +[01:07:49] [main/DEBUG] (FabricLoader/Mixin) legacy-fabric-resource-loader-v1.mixins.json:client.MinecraftClientMixin from mod legacy-fabric-resource-loader-v1->@Inject::reloadResources(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;Ljava/util/List;)V has 0 override(s) in child classes +[01:07:49] [main/DEBUG] (FabricLoader/Mixin) legacy-fabric-resource-loader-v1.mixins.json:client.MinecraftClientMixin from mod legacy-fabric-resource-loader-v1->@Inject::reloadResources(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;Ljava/util/List;)V won't be passed a CallbackInfo as a result +[01:07:49] [main/DEBUG] (FabricLoader/Mixin) legacy-fabric-resource-loader-v1.mixins.json:client.MinecraftClientMixin from mod legacy-fabric-resource-loader-v1->@Inject::addItemModels(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V doesn't use it's CallbackInfo +[01:07:49] [main/DEBUG] (FabricLoader/Mixin) legacy-fabric-resource-loader-v1.mixins.json:client.MinecraftClientMixin from mod legacy-fabric-resource-loader-v1->@Inject::addItemModels(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V has 0 override(s) in child classes +[01:07:49] [main/DEBUG] (FabricLoader/Mixin) legacy-fabric-resource-loader-v1.mixins.json:client.MinecraftClientMixin from mod legacy-fabric-resource-loader-v1->@Inject::addItemModels(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V won't be passed a CallbackInfo as a result +[01:07:49] [main/DEBUG] (FabricLoader/Mixin) legacy-fabric-lifecycle-events-v1.mixins.json:client.MinecraftClientMixin from mod legacy-fabric-lifecycle-events-v1->@Inject::onStartTick(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V doesn't use it's CallbackInfo +[01:07:49] [main/DEBUG] (FabricLoader/Mixin) legacy-fabric-lifecycle-events-v1.mixins.json:client.MinecraftClientMixin from mod legacy-fabric-lifecycle-events-v1->@Inject::onStartTick(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V has 0 override(s) in child classes +[01:07:49] [main/DEBUG] (FabricLoader/Mixin) legacy-fabric-lifecycle-events-v1.mixins.json:client.MinecraftClientMixin from mod legacy-fabric-lifecycle-events-v1->@Inject::onStartTick(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V won't be passed a CallbackInfo as a result +[01:07:49] [main/DEBUG] (FabricLoader/Mixin) legacy-fabric-lifecycle-events-v1.mixins.json:client.MinecraftClientMixin from mod legacy-fabric-lifecycle-events-v1->@Inject::onEndTick(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V doesn't use it's CallbackInfo +[01:07:49] [main/DEBUG] (FabricLoader/Mixin) legacy-fabric-lifecycle-events-v1.mixins.json:client.MinecraftClientMixin from mod legacy-fabric-lifecycle-events-v1->@Inject::onEndTick(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V has 0 override(s) in child classes +[01:07:49] [main/DEBUG] (FabricLoader/Mixin) legacy-fabric-lifecycle-events-v1.mixins.json:client.MinecraftClientMixin from mod legacy-fabric-lifecycle-events-v1->@Inject::onEndTick(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V won't be passed a CallbackInfo as a result +[01:07:49] [main/DEBUG] (FabricLoader/Mixin) legacy-fabric-lifecycle-events-v1.mixins.json:client.MinecraftClientMixin from mod legacy-fabric-lifecycle-events-v1->@Inject::onStopping(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V doesn't use it's CallbackInfo +[01:07:49] [main/DEBUG] (FabricLoader/Mixin) legacy-fabric-lifecycle-events-v1.mixins.json:client.MinecraftClientMixin from mod legacy-fabric-lifecycle-events-v1->@Inject::onStopping(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V has 0 override(s) in child classes +[01:07:49] [main/DEBUG] (FabricLoader/Mixin) legacy-fabric-lifecycle-events-v1.mixins.json:client.MinecraftClientMixin from mod legacy-fabric-lifecycle-events-v1->@Inject::onStopping(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V won't be passed a CallbackInfo as a result +[01:07:49] [main/DEBUG] (FabricLoader/Mixin) legacy-fabric-lifecycle-events-v1.mixins.json:client.MinecraftClientMixin from mod legacy-fabric-lifecycle-events-v1->@Inject::onStart(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V doesn't use it's CallbackInfo +[01:07:49] [main/DEBUG] (FabricLoader/Mixin) legacy-fabric-lifecycle-events-v1.mixins.json:client.MinecraftClientMixin from mod legacy-fabric-lifecycle-events-v1->@Inject::onStart(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V has 0 override(s) in child classes +[01:07:49] [main/DEBUG] (FabricLoader/Mixin) legacy-fabric-lifecycle-events-v1.mixins.json:client.MinecraftClientMixin from mod legacy-fabric-lifecycle-events-v1->@Inject::onStart(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V won't be passed a CallbackInfo as a result +[01:07:49] [main/DEBUG] (FabricLoader/Mixin) Mixing client.MixinScreen from legacy-fabric-item-groups-v1-common.mixins.json into net.minecraft.client.gui.screen.Screen +[01:07:49] [main/DEBUG] (FabricLoader/Mixin) Mixing client.ClientWorldMixin from legacy-fabric-lifecycle-events-v1.mixins.json into net.minecraft.client.world.ClientWorld +[01:07:49] [main/DEBUG] (FabricLoader/Mixin) legacy-fabric-lifecycle-events-v1.mixins.json:client.ClientWorldMixin from mod legacy-fabric-lifecycle-events-v1->@Inject::startWorldTick(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V doesn't use it's CallbackInfo +[01:07:49] [main/DEBUG] (FabricLoader/Mixin) legacy-fabric-lifecycle-events-v1.mixins.json:client.ClientWorldMixin from mod legacy-fabric-lifecycle-events-v1->@Inject::startWorldTick(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V has 0 override(s) in child classes +[01:07:49] [main/DEBUG] (FabricLoader/Mixin) legacy-fabric-lifecycle-events-v1.mixins.json:client.ClientWorldMixin from mod legacy-fabric-lifecycle-events-v1->@Inject::startWorldTick(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V won't be passed a CallbackInfo as a result +[01:07:49] [main/DEBUG] (FabricLoader/Mixin) legacy-fabric-lifecycle-events-v1.mixins.json:client.ClientWorldMixin from mod legacy-fabric-lifecycle-events-v1->@Inject::endWorldTick(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V doesn't use it's CallbackInfo +[01:07:49] [main/DEBUG] (FabricLoader/Mixin) legacy-fabric-lifecycle-events-v1.mixins.json:client.ClientWorldMixin from mod legacy-fabric-lifecycle-events-v1->@Inject::endWorldTick(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V has 0 override(s) in child classes +[01:07:49] [main/DEBUG] (FabricLoader/Mixin) legacy-fabric-lifecycle-events-v1.mixins.json:client.ClientWorldMixin from mod legacy-fabric-lifecycle-events-v1->@Inject::endWorldTick(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V won't be passed a CallbackInfo as a result +[01:07:49] [main/DEBUG] (FabricLoader/Mixin) legacy-fabric-lifecycle-events-v1.mixins.json:client.ClientWorldMixin from mod legacy-fabric-lifecycle-events-v1->@Inject::unloadEntity(Lnet/minecraft/entity/Entity;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V doesn't use it's CallbackInfo +[01:07:49] [main/DEBUG] (FabricLoader/Mixin) legacy-fabric-lifecycle-events-v1.mixins.json:client.ClientWorldMixin from mod legacy-fabric-lifecycle-events-v1->@Inject::unloadEntity(Lnet/minecraft/entity/Entity;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V has 0 override(s) in child classes +[01:07:49] [main/DEBUG] (FabricLoader/Mixin) legacy-fabric-lifecycle-events-v1.mixins.json:client.ClientWorldMixin from mod legacy-fabric-lifecycle-events-v1->@Inject::unloadEntity(Lnet/minecraft/entity/Entity;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V won't be passed a CallbackInfo as a result +[01:07:49] [main/DEBUG] (FabricLoader/Mixin) legacy-fabric-lifecycle-events-v1.mixins.json:client.ClientWorldMixin from mod legacy-fabric-lifecycle-events-v1->@Inject::loadEntity(Lnet/minecraft/entity/Entity;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V doesn't use it's CallbackInfo +[01:07:49] [main/DEBUG] (FabricLoader/Mixin) legacy-fabric-lifecycle-events-v1.mixins.json:client.ClientWorldMixin from mod legacy-fabric-lifecycle-events-v1->@Inject::loadEntity(Lnet/minecraft/entity/Entity;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V has 0 override(s) in child classes +[01:07:49] [main/DEBUG] (FabricLoader/Mixin) legacy-fabric-lifecycle-events-v1.mixins.json:client.ClientWorldMixin from mod legacy-fabric-lifecycle-events-v1->@Inject::loadEntity(Lnet/minecraft/entity/Entity;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V won't be passed a CallbackInfo as a result +[01:07:49] [main/DEBUG] (FabricLoader/Mixin) Mixing LivingEntityMixin from legacy-fabric-entity-events-v1.mixins.json into net.minecraft.entity.LivingEntity +[01:07:49] [main/DEBUG] (FabricLoader/Mixin) legacy-fabric-entity-events-v1.mixins.json:LivingEntityMixin from mod legacy-fabric-entity-events-v1->@Inject::onEntityKilledOther(Lnet/minecraft/entity/damage/DamageSource;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V doesn't use it's CallbackInfo +[01:07:49] [main/DEBUG] (FabricLoader/Mixin) legacy-fabric-entity-events-v1.mixins.json:LivingEntityMixin from mod legacy-fabric-entity-events-v1->@Inject::onEntityKilledOther(Lnet/minecraft/entity/damage/DamageSource;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V has 0 override(s) in child classes +[01:07:49] [main/DEBUG] (FabricLoader/Mixin) legacy-fabric-entity-events-v1.mixins.json:LivingEntityMixin from mod legacy-fabric-entity-events-v1->@Inject::onEntityKilledOther(Lnet/minecraft/entity/damage/DamageSource;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V won't be passed a CallbackInfo as a result +[01:07:49] [main/DEBUG] (FabricLoader/Mixin) Mixing EntityMixin from legacy-fabric-entity-events-v1.mixins.json into net.minecraft.entity.Entity +[01:07:49] [main/DEBUG] (FabricLoader/Mixin) Mixing EntityMixin from legacy-fabric-registry-sync-api-v1.mixins.json into net.minecraft.entity.Entity +[01:07:49] [main/DEBUG] (FabricLoader/Mixin) Mixing EntityMixin from legacy-fabric-permissions-api-v1.mixins.json into net.minecraft.entity.Entity +[01:07:49] [main/DEBUG] (FabricLoader/Mixin) legacy-fabric-entity-events-v1.mixins.json:EntityMixin from mod legacy-fabric-entity-events-v1->@Inject::afterWorldChanged(ILorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;Lnet/minecraft/server/MinecraftServer;ILnet/minecraft/server/world/ServerWorld;Lnet/minecraft/server/world/ServerWorld;Lnet/minecraft/entity/Entity;)V doesn't use it's CallbackInfo +[01:07:49] [main/DEBUG] (FabricLoader/Mixin) legacy-fabric-entity-events-v1.mixins.json:EntityMixin from mod legacy-fabric-entity-events-v1->@Inject::afterWorldChanged(ILorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;Lnet/minecraft/server/MinecraftServer;ILnet/minecraft/server/world/ServerWorld;Lnet/minecraft/server/world/ServerWorld;Lnet/minecraft/entity/Entity;)V has 0 override(s) in child classes +[01:07:49] [main/DEBUG] (FabricLoader/Mixin) legacy-fabric-entity-events-v1.mixins.json:EntityMixin from mod legacy-fabric-entity-events-v1->@Inject::afterWorldChanged(ILorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;Lnet/minecraft/server/MinecraftServer;ILnet/minecraft/server/world/ServerWorld;Lnet/minecraft/server/world/ServerWorld;Lnet/minecraft/entity/Entity;)V won't be passed a CallbackInfo as a result +[01:07:49] [main/DEBUG] (FabricLoader/Mixin) Mixing client.ConnectScreenAccessor from legacy-fabric-networking-api-v1-common.mixins.json into net.minecraft.client.gui.screen.ConnectScreen +[01:07:49] [main/DEBUG] (FabricLoader/Mixin) Mixing ItemMixin from legacy-fabric-registry-sync-api-v1.mixins.json into net.minecraft.item.Item +[01:07:49] [main/DEBUG] (FabricLoader/Mixin) Mixing registry.ItemMixin from legacy-fabric-registry-sync-api-v1-common.mixins.json into net.minecraft.item.Item +[01:07:49] [main/DEBUG] (FabricLoader/Mixin) legacy-fabric-registry-sync-api-v1-common.mixins.json:registry.ItemMixin from mod legacy-fabric-registry-sync-api-v1-common->@Inject::initRegistryRemapper(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V doesn't use it's CallbackInfo +[01:07:49] [main/DEBUG] (FabricLoader/Mixin) Mixing IdListMixin from legacy-fabric-registry-sync-api-v1-common.mixins.json into net.minecraft.util.collection.IdList +[01:07:49] [main/DEBUG] (FabricLoader/Mixin) Mixing MinecraftServerMixin from legacy-fabric-sponge-command-api-v2.mixins.json into net.minecraft.server.MinecraftServer +[01:07:49] [main/DEBUG] (FabricLoader/Mixin) Mixing MinecraftServerMixin from legacy-fabric-registry-sync-api-v1-common.mixins.json into net.minecraft.server.MinecraftServer +[01:07:49] [main/DEBUG] (FabricLoader/Mixin) Mixing MinecraftServerMixin from legacy-fabric-networking-api-v1.mixins.json into net.minecraft.server.MinecraftServer +[01:07:49] [main/DEBUG] (FabricLoader/Mixin) Mixing MinecraftServerMixin from legacy-fabric-lifecycle-events-v1.mixins.json into net.minecraft.server.MinecraftServer +[01:07:49] [main/DEBUG] (FabricLoader/Mixin) legacy-fabric-registry-sync-api-v1-common.mixins.json:MinecraftServerMixin from mod legacy-fabric-registry-sync-api-v1-common->@Inject::remapperInit(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V doesn't use it's CallbackInfo +[01:07:49] [main/DEBUG] (FabricLoader/Mixin) legacy-fabric-lifecycle-events-v1.mixins.json:MinecraftServerMixin from mod legacy-fabric-lifecycle-events-v1->@Inject::startServerTick(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V doesn't use it's CallbackInfo +[01:07:49] [main/DEBUG] (FabricLoader/Mixin) legacy-fabric-lifecycle-events-v1.mixins.json:MinecraftServerMixin from mod legacy-fabric-lifecycle-events-v1->@Inject::startServerTick(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V has 0 override(s) in child classes +[01:07:49] [main/DEBUG] (FabricLoader/Mixin) legacy-fabric-lifecycle-events-v1.mixins.json:MinecraftServerMixin from mod legacy-fabric-lifecycle-events-v1->@Inject::startServerTick(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V won't be passed a CallbackInfo as a result +[01:07:49] [main/DEBUG] (FabricLoader/Mixin) legacy-fabric-lifecycle-events-v1.mixins.json:MinecraftServerMixin from mod legacy-fabric-lifecycle-events-v1->@Inject::endServerTick(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V doesn't use it's CallbackInfo +[01:07:49] [main/DEBUG] (FabricLoader/Mixin) legacy-fabric-lifecycle-events-v1.mixins.json:MinecraftServerMixin from mod legacy-fabric-lifecycle-events-v1->@Inject::endServerTick(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V has 0 override(s) in child classes +[01:07:49] [main/DEBUG] (FabricLoader/Mixin) legacy-fabric-lifecycle-events-v1.mixins.json:MinecraftServerMixin from mod legacy-fabric-lifecycle-events-v1->@Inject::endServerTick(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V won't be passed a CallbackInfo as a result +[01:07:49] [main/DEBUG] (FabricLoader/Mixin) legacy-fabric-lifecycle-events-v1.mixins.json:MinecraftServerMixin from mod legacy-fabric-lifecycle-events-v1->@Inject::beforeServerShutdown(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V doesn't use it's CallbackInfo +[01:07:49] [main/DEBUG] (FabricLoader/Mixin) legacy-fabric-lifecycle-events-v1.mixins.json:MinecraftServerMixin from mod legacy-fabric-lifecycle-events-v1->@Inject::beforeServerShutdown(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V has 0 override(s) in child classes +[01:07:49] [main/DEBUG] (FabricLoader/Mixin) legacy-fabric-lifecycle-events-v1.mixins.json:MinecraftServerMixin from mod legacy-fabric-lifecycle-events-v1->@Inject::beforeServerShutdown(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V won't be passed a CallbackInfo as a result +[01:07:49] [main/DEBUG] (FabricLoader/Mixin) legacy-fabric-lifecycle-events-v1.mixins.json:MinecraftServerMixin from mod legacy-fabric-lifecycle-events-v1->@Inject::beforeServerShutdown(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V doesn't use it's CallbackInfo +[01:07:49] [main/DEBUG] (FabricLoader/Mixin) legacy-fabric-lifecycle-events-v1.mixins.json:MinecraftServerMixin from mod legacy-fabric-lifecycle-events-v1->@Inject::beforeServerShutdown(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V has 0 override(s) in child classes +[01:07:49] [main/DEBUG] (FabricLoader/Mixin) legacy-fabric-lifecycle-events-v1.mixins.json:MinecraftServerMixin from mod legacy-fabric-lifecycle-events-v1->@Inject::beforeServerShutdown(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V won't be passed a CallbackInfo as a result +[01:07:49] [main/DEBUG] (FabricLoader/Mixin) legacy-fabric-lifecycle-events-v1.mixins.json:MinecraftServerMixin from mod legacy-fabric-lifecycle-events-v1->@Inject::beforeServerShutdown(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V doesn't use it's CallbackInfo +[01:07:49] [main/DEBUG] (FabricLoader/Mixin) legacy-fabric-lifecycle-events-v1.mixins.json:MinecraftServerMixin from mod legacy-fabric-lifecycle-events-v1->@Inject::beforeServerShutdown(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V has 0 override(s) in child classes +[01:07:49] [main/DEBUG] (FabricLoader/Mixin) legacy-fabric-lifecycle-events-v1.mixins.json:MinecraftServerMixin from mod legacy-fabric-lifecycle-events-v1->@Inject::beforeServerShutdown(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V won't be passed a CallbackInfo as a result +[01:07:49] [main/DEBUG] (FabricLoader/Mixin) legacy-fabric-lifecycle-events-v1.mixins.json:MinecraftServerMixin from mod legacy-fabric-lifecycle-events-v1->@Inject::afterServerShutDown(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V doesn't use it's CallbackInfo +[01:07:49] [main/DEBUG] (FabricLoader/Mixin) legacy-fabric-lifecycle-events-v1.mixins.json:MinecraftServerMixin from mod legacy-fabric-lifecycle-events-v1->@Inject::afterServerShutDown(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V has 0 override(s) in child classes +[01:07:49] [main/DEBUG] (FabricLoader/Mixin) legacy-fabric-lifecycle-events-v1.mixins.json:MinecraftServerMixin from mod legacy-fabric-lifecycle-events-v1->@Inject::afterServerShutDown(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V won't be passed a CallbackInfo as a result +[01:07:49] [main/DEBUG] (FabricLoader/Mixin) legacy-fabric-lifecycle-events-v1.mixins.json:MinecraftServerMixin from mod legacy-fabric-lifecycle-events-v1->@Inject::beforeServerStart(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V doesn't use it's CallbackInfo +[01:07:49] [main/DEBUG] (FabricLoader/Mixin) legacy-fabric-lifecycle-events-v1.mixins.json:MinecraftServerMixin from mod legacy-fabric-lifecycle-events-v1->@Inject::beforeServerStart(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V has 0 override(s) in child classes +[01:07:49] [main/DEBUG] (FabricLoader/Mixin) legacy-fabric-lifecycle-events-v1.mixins.json:MinecraftServerMixin from mod legacy-fabric-lifecycle-events-v1->@Inject::beforeServerStart(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V won't be passed a CallbackInfo as a result +[01:07:49] [main/DEBUG] (FabricLoader/Mixin) legacy-fabric-lifecycle-events-v1.mixins.json:MinecraftServerMixin from mod legacy-fabric-lifecycle-events-v1->@Inject::afterServerStart(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V doesn't use it's CallbackInfo +[01:07:49] [main/DEBUG] (FabricLoader/Mixin) legacy-fabric-lifecycle-events-v1.mixins.json:MinecraftServerMixin from mod legacy-fabric-lifecycle-events-v1->@Inject::afterServerStart(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V has 0 override(s) in child classes +[01:07:49] [main/DEBUG] (FabricLoader/Mixin) legacy-fabric-lifecycle-events-v1.mixins.json:MinecraftServerMixin from mod legacy-fabric-lifecycle-events-v1->@Inject::afterServerStart(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V won't be passed a CallbackInfo as a result +[01:07:49] [main/DEBUG] (FabricLoader/Mixin) legacy-fabric-lifecycle-events-v1.mixins.json:MinecraftServerMixin from mod legacy-fabric-lifecycle-events-v1->@Inject::serverWorldUnload(ZLorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V doesn't use it's CallbackInfo +[01:07:49] [main/DEBUG] (FabricLoader/Mixin) legacy-fabric-lifecycle-events-v1.mixins.json:MinecraftServerMixin from mod legacy-fabric-lifecycle-events-v1->@Inject::serverWorldUnload(ZLorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V has 0 override(s) in child classes +[01:07:49] [main/DEBUG] (FabricLoader/Mixin) legacy-fabric-lifecycle-events-v1.mixins.json:MinecraftServerMixin from mod legacy-fabric-lifecycle-events-v1->@Inject::serverWorldUnload(ZLorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V won't be passed a CallbackInfo as a result +[01:07:49] [main/DEBUG] (FabricLoader/Mixin) legacy-fabric-lifecycle-events-v1.mixins.json:MinecraftServerMixin from mod legacy-fabric-lifecycle-events-v1->@Inject::serverWorldLoad(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V doesn't use it's CallbackInfo +[01:07:49] [main/DEBUG] (FabricLoader/Mixin) legacy-fabric-lifecycle-events-v1.mixins.json:MinecraftServerMixin from mod legacy-fabric-lifecycle-events-v1->@Inject::serverWorldLoad(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V has 0 override(s) in child classes +[01:07:49] [main/DEBUG] (FabricLoader/Mixin) legacy-fabric-lifecycle-events-v1.mixins.json:MinecraftServerMixin from mod legacy-fabric-lifecycle-events-v1->@Inject::serverWorldLoad(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V won't be passed a CallbackInfo as a result +[01:07:49] [main/DEBUG] (FabricLoader/Mixin) Mixing ServerWorldMixin from legacy-fabric-lifecycle-events-v1.mixins.json into net.minecraft.server.world.ServerWorld +[01:07:49] [main/DEBUG] (FabricLoader/Mixin) legacy-fabric-lifecycle-events-v1.mixins.json:ServerWorldMixin from mod legacy-fabric-lifecycle-events-v1->@Inject::startWorldTick(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V doesn't use it's CallbackInfo +[01:07:49] [main/DEBUG] (FabricLoader/Mixin) legacy-fabric-lifecycle-events-v1.mixins.json:ServerWorldMixin from mod legacy-fabric-lifecycle-events-v1->@Inject::startWorldTick(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V has 0 override(s) in child classes +[01:07:49] [main/DEBUG] (FabricLoader/Mixin) legacy-fabric-lifecycle-events-v1.mixins.json:ServerWorldMixin from mod legacy-fabric-lifecycle-events-v1->@Inject::startWorldTick(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V won't be passed a CallbackInfo as a result +[01:07:49] [main/DEBUG] (FabricLoader/Mixin) legacy-fabric-lifecycle-events-v1.mixins.json:ServerWorldMixin from mod legacy-fabric-lifecycle-events-v1->@Inject::endWorldTick(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V doesn't use it's CallbackInfo +[01:07:49] [main/DEBUG] (FabricLoader/Mixin) legacy-fabric-lifecycle-events-v1.mixins.json:ServerWorldMixin from mod legacy-fabric-lifecycle-events-v1->@Inject::endWorldTick(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V has 0 override(s) in child classes +[01:07:49] [main/DEBUG] (FabricLoader/Mixin) legacy-fabric-lifecycle-events-v1.mixins.json:ServerWorldMixin from mod legacy-fabric-lifecycle-events-v1->@Inject::endWorldTick(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V won't be passed a CallbackInfo as a result +[01:07:49] [main/DEBUG] (FabricLoader/Mixin) legacy-fabric-lifecycle-events-v1.mixins.json:ServerWorldMixin from mod legacy-fabric-lifecycle-events-v1->@Inject::loadEntity(Lnet/minecraft/entity/Entity;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V doesn't use it's CallbackInfo +[01:07:49] [main/DEBUG] (FabricLoader/Mixin) legacy-fabric-lifecycle-events-v1.mixins.json:ServerWorldMixin from mod legacy-fabric-lifecycle-events-v1->@Inject::loadEntity(Lnet/minecraft/entity/Entity;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V has 0 override(s) in child classes +[01:07:49] [main/DEBUG] (FabricLoader/Mixin) legacy-fabric-lifecycle-events-v1.mixins.json:ServerWorldMixin from mod legacy-fabric-lifecycle-events-v1->@Inject::loadEntity(Lnet/minecraft/entity/Entity;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V won't be passed a CallbackInfo as a result +[01:07:49] [main/DEBUG] (FabricLoader/Mixin) legacy-fabric-lifecycle-events-v1.mixins.json:ServerWorldMixin from mod legacy-fabric-lifecycle-events-v1->@Inject::unloadEntity(Lnet/minecraft/entity/Entity;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V doesn't use it's CallbackInfo +[01:07:49] [main/DEBUG] (FabricLoader/Mixin) legacy-fabric-lifecycle-events-v1.mixins.json:ServerWorldMixin from mod legacy-fabric-lifecycle-events-v1->@Inject::unloadEntity(Lnet/minecraft/entity/Entity;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V has 0 override(s) in child classes +[01:07:49] [main/DEBUG] (FabricLoader/Mixin) legacy-fabric-lifecycle-events-v1.mixins.json:ServerWorldMixin from mod legacy-fabric-lifecycle-events-v1->@Inject::unloadEntity(Lnet/minecraft/entity/Entity;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V won't be passed a CallbackInfo as a result +[01:07:49] [main/DEBUG] (FabricLoader/Mixin) Mixing MutableRegistryMixin from legacy-fabric-registry-sync-api-v1.mixins.json into net.minecraft.util.registry.MutableRegistry +[01:07:49] [main/DEBUG] (FabricLoader/Mixin) Mixing client.DefaultResourcePackMixin from legacy-fabric-resource-loader-v1.mixins.json into net.minecraft.resource.DefaultResourcePack +[01:07:49] [main/DEBUG] (FabricLoader/Mixin) legacy-fabric-resource-loader-v1.mixins.json:client.DefaultResourcePackMixin from mod legacy-fabric-resource-loader-v1->@Inject::onFindInputStream(Lnet/minecraft/util/Identifier;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V does use it's CallbackInfoReturnable +[01:07:49] [main/INFO] (net.minecraft.client.MinecraftClient) Setting user: Player56 +[01:07:49] [main/INFO] (net.minecraft.client.MinecraftClient) (Session ID is token:FabricMC:Player56) +[01:07:49] [main/DEBUG] (FabricLoader/Mixin) Mixing PlayerManagerMixin from legacy-fabric-entity-events-v1.mixins.json into net.minecraft.server.PlayerManager +[01:07:49] [main/DEBUG] (FabricLoader/Mixin) Mixing PlayerManagerMixin from legacy-fabric-registry-sync-api-v1.mixins.json into net.minecraft.server.PlayerManager +[01:07:49] [main/DEBUG] (FabricLoader/Mixin) Mixing PlayerManagerMixin from legacy-fabric-networking-api-v1.mixins.json into net.minecraft.server.PlayerManager +[01:07:49] [main/DEBUG] (FabricLoader/Mixin) legacy-fabric-entity-events-v1.mixins.json:PlayerManagerMixin from mod legacy-fabric-entity-events-v1->@Inject::afterRespawn(Lnet/minecraft/entity/player/ServerPlayerEntity;IZLorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V does use it's CallbackInfoReturnable +[01:07:49] [main/DEBUG] (FabricLoader/Mixin) legacy-fabric-entity-events-v1.mixins.json:PlayerManagerMixin from mod legacy-fabric-entity-events-v1->@Inject::afterWorldChanged(Lnet/minecraft/entity/player/ServerPlayerEntity;ILorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;ILnet/minecraft/server/world/ServerWorld;Lnet/minecraft/server/world/ServerWorld;Ljava/util/Iterator;)V doesn't use it's CallbackInfo +[01:07:49] [main/DEBUG] (FabricLoader/Mixin) legacy-fabric-entity-events-v1.mixins.json:PlayerManagerMixin from mod legacy-fabric-entity-events-v1->@Inject::afterWorldChanged(Lnet/minecraft/entity/player/ServerPlayerEntity;ILorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;ILnet/minecraft/server/world/ServerWorld;Lnet/minecraft/server/world/ServerWorld;Ljava/util/Iterator;)V has 0 override(s) in child classes +[01:07:49] [main/DEBUG] (FabricLoader/Mixin) legacy-fabric-entity-events-v1.mixins.json:PlayerManagerMixin from mod legacy-fabric-entity-events-v1->@Inject::afterWorldChanged(Lnet/minecraft/entity/player/ServerPlayerEntity;ILorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;ILnet/minecraft/server/world/ServerWorld;Lnet/minecraft/server/world/ServerWorld;Ljava/util/Iterator;)V won't be passed a CallbackInfo as a result +[01:07:49] [main/DEBUG] (FabricLoader/Mixin) legacy-fabric-registry-sync-api-v1.mixins.json:PlayerManagerMixin from mod legacy-fabric-registry-sync-api-v1->@Inject::playerConnect(Lnet/minecraft/network/ClientConnection;Lnet/minecraft/entity/player/ServerPlayerEntity;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V doesn't use it's CallbackInfo +[01:07:49] [main/DEBUG] (FabricLoader/Mixin) legacy-fabric-registry-sync-api-v1.mixins.json:PlayerManagerMixin from mod legacy-fabric-registry-sync-api-v1->@Inject::playerConnect(Lnet/minecraft/network/ClientConnection;Lnet/minecraft/entity/player/ServerPlayerEntity;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V has 0 override(s) in child classes +[01:07:49] [main/DEBUG] (FabricLoader/Mixin) legacy-fabric-registry-sync-api-v1.mixins.json:PlayerManagerMixin from mod legacy-fabric-registry-sync-api-v1->@Inject::playerConnect(Lnet/minecraft/network/ClientConnection;Lnet/minecraft/entity/player/ServerPlayerEntity;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V won't be passed a CallbackInfo as a result +[01:07:49] [main/DEBUG] (FabricLoader/Mixin) legacy-fabric-networking-api-v1.mixins.json:PlayerManagerMixin from mod legacy-fabric-networking-api-v1->@Inject::handlePlayerConnection(Lnet/minecraft/network/ClientConnection;Lnet/minecraft/entity/player/ServerPlayerEntity;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V doesn't use it's CallbackInfo +[01:07:49] [main/DEBUG] (FabricLoader/Mixin) legacy-fabric-networking-api-v1.mixins.json:PlayerManagerMixin from mod legacy-fabric-networking-api-v1->@Inject::handlePlayerConnection(Lnet/minecraft/network/ClientConnection;Lnet/minecraft/entity/player/ServerPlayerEntity;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V has 0 override(s) in child classes +[01:07:49] [main/DEBUG] (FabricLoader/Mixin) legacy-fabric-networking-api-v1.mixins.json:PlayerManagerMixin from mod legacy-fabric-networking-api-v1->@Inject::handlePlayerConnection(Lnet/minecraft/network/ClientConnection;Lnet/minecraft/entity/player/ServerPlayerEntity;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V won't be passed a CallbackInfo as a result +[01:07:49] [main/DEBUG] (FabricLoader/Mixin) Mixing BlockMixin from legacy-fabric-registry-sync-api-v1.mixins.json into net.minecraft.block.Block +[01:07:49] [main/DEBUG] (FabricLoader/Mixin) Mixing registry.BlockMixin from legacy-fabric-registry-sync-api-v1-common.mixins.json into net.minecraft.block.Block +[01:07:49] [main/DEBUG] (FabricLoader/Mixin) legacy-fabric-registry-sync-api-v1-common.mixins.json:registry.BlockMixin from mod legacy-fabric-registry-sync-api-v1-common->@Inject::initRegistryRemapper(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V doesn't use it's CallbackInfo +[01:07:49] [main/DEBUG] (FabricLoader/Mixin) Mixing SimpleRegistryMixin from legacy-fabric-registry-sync-api-v1.mixins.json into net.minecraft.util.registry.SimpleRegistry +[01:07:49] [main/DEBUG] (FabricLoader/Mixin) Mixing MixinItemGroup from legacy-fabric-item-groups-v1-common.mixins.json into net.minecraft.item.itemgroup.ItemGroup +[01:07:49] [main/DEBUG] (FabricLoader/Mixin) Mixing client.MixinItemGroup from legacy-fabric-item-groups-v1-common.mixins.json into net.minecraft.item.itemgroup.ItemGroup +[01:07:49] [main/DEBUG] (FabricLoader/Mixin) Mixing ItemGroupMixin from legacy-fabric-item-groups-v1.mixins.json into net.minecraft.item.itemgroup.ItemGroup +[01:07:49] [main/DEBUG] (FabricLoader/Mixin) legacy-fabric-item-groups-v1-common.mixins.json:client.MixinItemGroup from mod legacy-fabric-item-groups-v1-common->@Inject::isTopRow(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V does use it's CallbackInfoReturnable +[01:07:49] [main/DEBUG] (FabricLoader/Mixin) legacy-fabric-item-groups-v1-common.mixins.json:client.MixinItemGroup from mod legacy-fabric-item-groups-v1-common->@Inject::getColumn(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V does use it's CallbackInfoReturnable +[01:07:49] [main/DEBUG] (FabricLoader/Mixin) legacy-fabric-item-groups-v1.mixins.json:ItemGroupMixin from mod legacy-fabric-item-groups-v1->@Inject::classInit(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V doesn't use it's CallbackInfo +[01:07:50] [main/DEBUG] (FabricLoader/Mixin) Mixing BlockEntityAccessor from legacy-fabric-registry-sync-api-v1.mixins.json into net.minecraft.block.entity.BlockEntity +[01:07:50] [main/DEBUG] (FabricLoader/Mixin) Renaming @Accessor method getStringClassMap()Ljava/util/Map; to getStringClassMap$legacy-fabric-registry-sync-api-v1_$md$c129c1$0 in legacy-fabric-registry-sync-api-v1.mixins.json:BlockEntityAccessor from mod legacy-fabric-registry-sync-api-v1 +[01:07:50] [main/DEBUG] (FabricLoader/Mixin) Renaming @Accessor method getClassStringMap()Ljava/util/Map; to getClassStringMap$legacy-fabric-registry-sync-api-v1_$md$c129c1$1 in legacy-fabric-registry-sync-api-v1.mixins.json:BlockEntityAccessor from mod legacy-fabric-registry-sync-api-v1 +[01:07:50] [main/DEBUG] (FabricLoader/Mixin) Mixing BlockEntityMixin from legacy-fabric-registry-sync-api-v1.mixins.json into net.minecraft.block.entity.BlockEntity +[01:07:50] [main/DEBUG] (FabricLoader/Mixin) Mixing registry.BlockEntityMixin from legacy-fabric-registry-sync-api-v1-common.mixins.json into net.minecraft.block.entity.BlockEntity +[01:07:50] [main/DEBUG] (FabricLoader/Mixin) legacy-fabric-registry-sync-api-v1-common.mixins.json:registry.BlockEntityMixin from mod legacy-fabric-registry-sync-api-v1-common->@Inject::initRegistryRemapper(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V doesn't use it's CallbackInfo +[01:07:50] [main/DEBUG] (FabricLoader/Mixin) Mixing StatusEffectAccessor from legacy-fabric-registry-sync-api-v1.mixins.json into net.minecraft.entity.effect.StatusEffect +[01:07:50] [main/DEBUG] (FabricLoader/Mixin) Renaming @Accessor method setSTATUS_EFFECTS([Lnet/minecraft/entity/effect/StatusEffect;)V to setSTATUS_EFFECTS$legacy-fabric-registry-sync-api-v1_$md$c129c1$0 in legacy-fabric-registry-sync-api-v1.mixins.json:StatusEffectAccessor from mod legacy-fabric-registry-sync-api-v1 +[01:07:50] [main/DEBUG] (FabricLoader/Mixin) Renaming @Accessor method getSTATUS_EFFECTS_BY_ID()Ljava/util/Map; to getSTATUS_EFFECTS_BY_ID$legacy-fabric-registry-sync-api-v1_$md$c129c1$1 in legacy-fabric-registry-sync-api-v1.mixins.json:StatusEffectAccessor from mod legacy-fabric-registry-sync-api-v1 +[01:07:50] [main/DEBUG] (FabricLoader/Mixin) Renaming @Accessor method setSTATUS_EFFECTS_BY_ID(Ljava/util/Map;)V to setSTATUS_EFFECTS_BY_ID$legacy-fabric-registry-sync-api-v1_$md$c129c1$2 in legacy-fabric-registry-sync-api-v1.mixins.json:StatusEffectAccessor from mod legacy-fabric-registry-sync-api-v1 +[01:07:50] [main/DEBUG] (FabricLoader/Mixin) Mixing registry.StatusEffectMixin from legacy-fabric-registry-sync-api-v1-common.mixins.json into net.minecraft.entity.effect.StatusEffect +[01:07:50] [main/DEBUG] (FabricLoader/Mixin) legacy-fabric-registry-sync-api-v1-common.mixins.json:registry.StatusEffectMixin from mod legacy-fabric-registry-sync-api-v1-common->@Inject::initRegistryRemapper(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V doesn't use it's CallbackInfo +[01:07:50] [main/DEBUG] (FabricLoader/Mixin) Mixing EnchantmentAccessor from legacy-fabric-registry-sync-api-v1.mixins.json into net.minecraft.enchantment.Enchantment +[01:07:50] [main/DEBUG] (FabricLoader/Mixin) Renaming @Accessor method setALL_ENCHANTMENTS([Lnet/minecraft/enchantment/Enchantment;)V to setALL_ENCHANTMENTS$legacy-fabric-registry-sync-api-v1_$md$c129c1$0 in legacy-fabric-registry-sync-api-v1.mixins.json:EnchantmentAccessor from mod legacy-fabric-registry-sync-api-v1 +[01:07:50] [main/DEBUG] (FabricLoader/Mixin) Renaming @Accessor method setENCHANTMENTS([Lnet/minecraft/enchantment/Enchantment;)V to setENCHANTMENTS$legacy-fabric-registry-sync-api-v1_$md$c129c1$1 in legacy-fabric-registry-sync-api-v1.mixins.json:EnchantmentAccessor from mod legacy-fabric-registry-sync-api-v1 +[01:07:50] [main/DEBUG] (FabricLoader/Mixin) Renaming @Accessor method getENCHANTMENTS()[Lnet/minecraft/enchantment/Enchantment; to getENCHANTMENTS$legacy-fabric-registry-sync-api-v1_$md$c129c1$2 in legacy-fabric-registry-sync-api-v1.mixins.json:EnchantmentAccessor from mod legacy-fabric-registry-sync-api-v1 +[01:07:50] [main/DEBUG] (FabricLoader/Mixin) Renaming @Accessor method getENCHANTMENT_MAP()Ljava/util/Map; to getENCHANTMENT_MAP$legacy-fabric-registry-sync-api-v1_$md$c129c1$3 in legacy-fabric-registry-sync-api-v1.mixins.json:EnchantmentAccessor from mod legacy-fabric-registry-sync-api-v1 +[01:07:50] [main/DEBUG] (FabricLoader/Mixin) Renaming @Accessor method setENCHANTMENT_MAP(Ljava/util/Map;)V to setENCHANTMENT_MAP$legacy-fabric-registry-sync-api-v1_$md$c129c1$4 in legacy-fabric-registry-sync-api-v1.mixins.json:EnchantmentAccessor from mod legacy-fabric-registry-sync-api-v1 +[01:07:50] [main/DEBUG] (FabricLoader/Mixin) Mixing registry.EnchantmentMixin from legacy-fabric-registry-sync-api-v1-common.mixins.json into net.minecraft.enchantment.Enchantment +[01:07:50] [main/DEBUG] (FabricLoader/Mixin) legacy-fabric-registry-sync-api-v1-common.mixins.json:registry.EnchantmentMixin from mod legacy-fabric-registry-sync-api-v1-common->@Inject::initRegistryRemapper(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V doesn't use it's CallbackInfo +[01:07:50] [main/DEBUG] (FabricLoader/Mixin) Mixing SpawnEggItemMixin from legacy-fabric-registry-sync-api-v1.mixins.json into net.minecraft.item.SpawnEggItem +[01:07:50] [main/DEBUG] (FabricLoader/Mixin) Mixing BiomeAccessor from legacy-fabric-registry-sync-api-v1.mixins.json into net.minecraft.world.biome.Biome +[01:07:50] [main/DEBUG] (FabricLoader/Mixin) Renaming @Accessor method getBIOMES()[Lnet/minecraft/world/biome/Biome; to getBIOMES$legacy-fabric-registry-sync-api-v1_$md$c129c1$0 in legacy-fabric-registry-sync-api-v1.mixins.json:BiomeAccessor from mod legacy-fabric-registry-sync-api-v1 +[01:07:50] [main/DEBUG] (FabricLoader/Mixin) Renaming @Accessor method setBIOMES([Lnet/minecraft/world/biome/Biome;)V to setBIOMES$legacy-fabric-registry-sync-api-v1_$md$c129c1$1 in legacy-fabric-registry-sync-api-v1.mixins.json:BiomeAccessor from mod legacy-fabric-registry-sync-api-v1 +[01:07:50] [main/DEBUG] (FabricLoader/Mixin) Renaming @Accessor method setMUTATED_BIOMES(Ljava/util/Map;)V to setMUTATED_BIOMES$legacy-fabric-registry-sync-api-v1_$md$c129c1$2 in legacy-fabric-registry-sync-api-v1.mixins.json:BiomeAccessor from mod legacy-fabric-registry-sync-api-v1 +[01:07:50] [main/DEBUG] (FabricLoader/Mixin) Mixing registry.BiomeMixin from legacy-fabric-registry-sync-api-v1-common.mixins.json into net.minecraft.world.biome.Biome +[01:07:50] [main/DEBUG] (FabricLoader/Mixin) legacy-fabric-registry-sync-api-v1-common.mixins.json:registry.BiomeMixin from mod legacy-fabric-registry-sync-api-v1-common->@Inject::initRegistryRemapper(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V doesn't use it's CallbackInfo +[01:07:51] [main/DEBUG] (FabricLoader/Mixin) Mixing EntityTypeAccessor from legacy-fabric-registry-sync-api-v1.mixins.json into net.minecraft.entity.EntityType +[01:07:51] [main/DEBUG] (FabricLoader/Mixin) Renaming @Accessor method getNAME_CLASS_MAP()Ljava/util/Map; to getNAME_CLASS_MAP$legacy-fabric-registry-sync-api-v1_$md$c129c1$0 in legacy-fabric-registry-sync-api-v1.mixins.json:EntityTypeAccessor from mod legacy-fabric-registry-sync-api-v1 +[01:07:51] [main/DEBUG] (FabricLoader/Mixin) Renaming @Accessor method setNAME_CLASS_MAP(Ljava/util/Map;)V to setNAME_CLASS_MAP$legacy-fabric-registry-sync-api-v1_$md$c129c1$1 in legacy-fabric-registry-sync-api-v1.mixins.json:EntityTypeAccessor from mod legacy-fabric-registry-sync-api-v1 +[01:07:51] [main/DEBUG] (FabricLoader/Mixin) Renaming @Accessor method setCLASS_NAME_MAP(Ljava/util/Map;)V to setCLASS_NAME_MAP$legacy-fabric-registry-sync-api-v1_$md$c129c1$2 in legacy-fabric-registry-sync-api-v1.mixins.json:EntityTypeAccessor from mod legacy-fabric-registry-sync-api-v1 +[01:07:51] [main/DEBUG] (FabricLoader/Mixin) Renaming @Accessor method getID_CLASS_MAP()Ljava/util/Map; to getID_CLASS_MAP$legacy-fabric-registry-sync-api-v1_$md$c129c1$3 in legacy-fabric-registry-sync-api-v1.mixins.json:EntityTypeAccessor from mod legacy-fabric-registry-sync-api-v1 +[01:07:51] [main/DEBUG] (FabricLoader/Mixin) Renaming @Accessor method setID_CLASS_MAP(Ljava/util/Map;)V to setID_CLASS_MAP$legacy-fabric-registry-sync-api-v1_$md$c129c1$4 in legacy-fabric-registry-sync-api-v1.mixins.json:EntityTypeAccessor from mod legacy-fabric-registry-sync-api-v1 +[01:07:51] [main/DEBUG] (FabricLoader/Mixin) Renaming @Accessor method setCLASS_ID_MAP(Ljava/util/Map;)V to setCLASS_ID_MAP$legacy-fabric-registry-sync-api-v1_$md$c129c1$5 in legacy-fabric-registry-sync-api-v1.mixins.json:EntityTypeAccessor from mod legacy-fabric-registry-sync-api-v1 +[01:07:51] [main/DEBUG] (FabricLoader/Mixin) Renaming @Accessor method getNAME_ID_MAP()Ljava/util/Map; to getNAME_ID_MAP$legacy-fabric-registry-sync-api-v1_$md$c129c1$6 in legacy-fabric-registry-sync-api-v1.mixins.json:EntityTypeAccessor from mod legacy-fabric-registry-sync-api-v1 +[01:07:51] [main/DEBUG] (FabricLoader/Mixin) Renaming @Accessor method setNAME_ID_MAP(Ljava/util/Map;)V to setNAME_ID_MAP$legacy-fabric-registry-sync-api-v1_$md$c129c1$7 in legacy-fabric-registry-sync-api-v1.mixins.json:EntityTypeAccessor from mod legacy-fabric-registry-sync-api-v1 +[01:07:51] [main/DEBUG] (FabricLoader/Mixin) Mixing EntityTypeMixin from legacy-fabric-registry-sync-api-v1.mixins.json into net.minecraft.entity.EntityType +[01:07:51] [main/DEBUG] (FabricLoader/Mixin) Mixing registry.EntityTypeMixin from legacy-fabric-registry-sync-api-v1-common.mixins.json into net.minecraft.entity.EntityType +[01:07:51] [main/DEBUG] (FabricLoader/Mixin) legacy-fabric-registry-sync-api-v1.mixins.json:EntityTypeMixin from mod legacy-fabric-registry-sync-api-v1->@Inject::remap$getEntityNames(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V does use it's CallbackInfoReturnable +[01:07:51] [main/DEBUG] (FabricLoader/Mixin) legacy-fabric-registry-sync-api-v1.mixins.json:EntityTypeMixin from mod legacy-fabric-registry-sync-api-v1->@Inject::remap$equals(Lnet/minecraft/entity/Entity;Ljava/lang/String;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V does use it's CallbackInfoReturnable +[01:07:51] [main/DEBUG] (FabricLoader/Mixin) legacy-fabric-registry-sync-api-v1.mixins.json:EntityTypeMixin from mod legacy-fabric-registry-sync-api-v1->@Inject::remap$isEntityRegistered(Ljava/lang/String;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V does use it's CallbackInfoReturnable +[01:07:51] [main/DEBUG] (FabricLoader/Mixin) legacy-fabric-registry-sync-api-v1-common.mixins.json:registry.EntityTypeMixin from mod legacy-fabric-registry-sync-api-v1-common->@Inject::initRegistry(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V doesn't use it's CallbackInfo +[01:07:51] [main/DEBUG] (FabricLoader/Mixin) Mixing GameOptionsMixin from legacy-fabric-keybinding-api-v1.mixins.json into net.minecraft.client.option.GameOptions +[01:07:51] [main/DEBUG] (FabricLoader/Mixin) legacy-fabric-keybinding-api-v1.mixins.json:GameOptionsMixin from mod legacy-fabric-keybinding-api-v1-common->@Inject::api$loadHook(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V doesn't use it's CallbackInfo +[01:07:51] [main/DEBUG] (FabricLoader/Mixin) legacy-fabric-keybinding-api-v1.mixins.json:GameOptionsMixin from mod legacy-fabric-keybinding-api-v1-common->@Inject::api$loadHook(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V has 0 override(s) in child classes +[01:07:51] [main/DEBUG] (FabricLoader/Mixin) legacy-fabric-keybinding-api-v1.mixins.json:GameOptionsMixin from mod legacy-fabric-keybinding-api-v1-common->@Inject::api$loadHook(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V won't be passed a CallbackInfo as a result +[01:07:51] [main/DEBUG] (FabricLoader/Entrypoint) Iterating over entrypoint 'main' +[01:07:51] [main/DEBUG] (FabricLoader/Entrypoint) Iterating over entrypoint 'client' +[01:07:51] [main/DEBUG] (FabricLoader/Mixin) Mixing client.ClientPlayNetworkHandlerMixin from legacy-fabric-networking-api-v1-common.mixins.json into net.minecraft.client.network.ClientPlayNetworkHandler +[01:07:51] [main/DEBUG] (FabricLoader/Mixin) legacy-fabric-networking-api-v1-common.mixins.json:client.ClientPlayNetworkHandlerMixin from mod legacy-fabric-networking-api-v1-common->@Inject::initAddon(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V doesn't use it's CallbackInfo +[01:07:51] [main/DEBUG] (FabricLoader/Mixin) legacy-fabric-networking-api-v1-common.mixins.json:client.ClientPlayNetworkHandlerMixin from mod legacy-fabric-networking-api-v1-common->@Inject::initAddon(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V has 0 override(s) in child classes +[01:07:51] [main/DEBUG] (FabricLoader/Mixin) legacy-fabric-networking-api-v1-common.mixins.json:client.ClientPlayNetworkHandlerMixin from mod legacy-fabric-networking-api-v1-common->@Inject::initAddon(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V won't be passed a CallbackInfo as a result +[01:07:51] [main/DEBUG] (FabricLoader/Mixin) legacy-fabric-networking-api-v1-common.mixins.json:client.ClientPlayNetworkHandlerMixin from mod legacy-fabric-networking-api-v1-common->@Inject::handleServerPlayReady(Lnet/minecraft/network/packet/s2c/play/GameJoinS2CPacket;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V doesn't use it's CallbackInfo +[01:07:51] [main/DEBUG] (FabricLoader/Mixin) legacy-fabric-networking-api-v1-common.mixins.json:client.ClientPlayNetworkHandlerMixin from mod legacy-fabric-networking-api-v1-common->@Inject::handleServerPlayReady(Lnet/minecraft/network/packet/s2c/play/GameJoinS2CPacket;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V has 0 override(s) in child classes +[01:07:51] [main/DEBUG] (FabricLoader/Mixin) legacy-fabric-networking-api-v1-common.mixins.json:client.ClientPlayNetworkHandlerMixin from mod legacy-fabric-networking-api-v1-common->@Inject::handleServerPlayReady(Lnet/minecraft/network/packet/s2c/play/GameJoinS2CPacket;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V won't be passed a CallbackInfo as a result +[01:07:51] [main/DEBUG] (FabricLoader/Mixin) legacy-fabric-networking-api-v1-common.mixins.json:client.ClientPlayNetworkHandlerMixin from mod legacy-fabric-networking-api-v1-common->@Inject::handleCustomPayload(Lnet/minecraft/network/packet/s2c/play/CustomPayloadS2CPacket;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V does use it's CallbackInfo +[01:07:51] [main/DEBUG] (FabricLoader/Mixin) legacy-fabric-networking-api-v1-common.mixins.json:client.ClientPlayNetworkHandlerMixin from mod legacy-fabric-networking-api-v1-common->@Inject::handleDisconnection(Lnet/minecraft/text/Text;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V doesn't use it's CallbackInfo +[01:07:51] [main/DEBUG] (FabricLoader/Mixin) legacy-fabric-networking-api-v1-common.mixins.json:client.ClientPlayNetworkHandlerMixin from mod legacy-fabric-networking-api-v1-common->@Inject::handleDisconnection(Lnet/minecraft/text/Text;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V has 0 override(s) in child classes +[01:07:51] [main/DEBUG] (FabricLoader/Mixin) legacy-fabric-networking-api-v1-common.mixins.json:client.ClientPlayNetworkHandlerMixin from mod legacy-fabric-networking-api-v1-common->@Inject::handleDisconnection(Lnet/minecraft/text/Text;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V won't be passed a CallbackInfo as a result +[01:07:51] [main/DEBUG] (FabricLoader/Mixin) Mixing PacketByteBufMixin from legacy-fabric-registry-sync-api-v1.mixins.json into net.minecraft.util.PacketByteBuf +[01:07:51] [main/DEBUG] (FabricLoader/Mixin) Mixing input.MixinKeyBinding from client.mixins.json into net.minecraft.client.option.KeyBinding +[01:07:51] [main/DEBUG] (FabricLoader/Mixin) client.mixins.json:input.MixinKeyBinding from mod testclient: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_8 supports class version 52) +[01:07:51] [main/INFO] (net.minecraft.client.MinecraftClient) LWJGL Version: 2.9.4 +[01:07:52] [main/DEBUG] (FabricLoader/Mixin) Mixing client.ReloadableResourceManagerImplMixin from legacy-fabric-resource-loader-v1.mixins.json into net.minecraft.resource.ReloadableResourceManagerImpl +[01:07:52] [main/DEBUG] (FabricLoader/Mixin) legacy-fabric-resource-loader-v1.mixins.json:client.ReloadableResourceManagerImplMixin from mod legacy-fabric-resource-loader-v1->@Inject::onReload(Ljava/util/List;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V doesn't use it's CallbackInfo +[01:07:52] [main/DEBUG] (FabricLoader/Mixin) legacy-fabric-resource-loader-v1.mixins.json:client.ReloadableResourceManagerImplMixin from mod legacy-fabric-resource-loader-v1->@Inject::onReload(Ljava/util/List;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V has 0 override(s) in child classes +[01:07:52] [main/DEBUG] (FabricLoader/Mixin) legacy-fabric-resource-loader-v1.mixins.json:client.ReloadableResourceManagerImplMixin from mod legacy-fabric-resource-loader-v1->@Inject::onReload(Ljava/util/List;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V won't be passed a CallbackInfo as a result +[01:07:52] [main/DEBUG] (FabricLoader/Mixin) Mixing client.ClientResourceReloadListenerMixins from legacy-fabric-resource-loader-v1.mixins.json into net.minecraft.client.resource.language.LanguageManager +[01:07:52] [main/DEBUG] (FabricLoader/Mixin) Mixing client.TranslationStorageMixin from legacy-fabric-resource-loader-v1-common.mixins.json into net.minecraft.client.resource.language.TranslationStorage +[01:07:52] [main/DEBUG] (FabricLoader/Mixin) legacy-fabric-resource-loader-v1-common.mixins.json:client.TranslationStorageMixin from mod legacy-fabric-resource-loader-v1-common->@Inject::loadLangFileFromOtherVersion(Lnet/minecraft/resource/ResourceManager;Ljava/util/List;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V doesn't use it's CallbackInfo +[01:07:52] [main/DEBUG] (FabricLoader/Mixin) legacy-fabric-resource-loader-v1-common.mixins.json:client.TranslationStorageMixin from mod legacy-fabric-resource-loader-v1-common->@Inject::loadLangFileFromOtherVersion(Lnet/minecraft/resource/ResourceManager;Ljava/util/List;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V has 0 override(s) in child classes +[01:07:52] [main/DEBUG] (FabricLoader/Mixin) legacy-fabric-resource-loader-v1-common.mixins.json:client.TranslationStorageMixin from mod legacy-fabric-resource-loader-v1-common->@Inject::loadLangFileFromOtherVersion(Lnet/minecraft/resource/ResourceManager;Ljava/util/List;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V won't be passed a CallbackInfo as a result +[01:07:52] [main/DEBUG] (FabricLoader/Mixin) Mixing client.ClientResourceReloadListenerMixins from legacy-fabric-resource-loader-v1.mixins.json into net.minecraft.client.sound.SoundManager +[01:07:52] [main/DEBUG] (FabricLoader/Mixin) Mixing client.ClientResourceReloadListenerMixins from legacy-fabric-resource-loader-v1.mixins.json into net.minecraft.client.font.TextRenderer +[01:07:52] [main/DEBUG] (FabricLoader/Mixin) Mixing client.ClientResourceReloadListenerMixins from legacy-fabric-resource-loader-v1.mixins.json into net.minecraft.client.render.model.BakedModelManager +[01:07:52] [main/INFO] (net.minecraft.resource.ReloadableResourceManagerImpl) Reloading ResourceManager: Default, Legacy Fabric Rendering API (V1), Legacy Fabric Command API (v2), Legacy Fabric Rendering API (V1), Fabric Loader, Legacy Fabric Entity Events (V1), Legacy Fabric Registry Sync API (V1), Legacy Fabric Permissions API (v2), Legacy Fabric Registry Sync API (V1), Legacy Fabric Command API (V1), Legacy Fabric Item Groups (V1), Legacy Fabric Lifecycle Events (V1), Legacy Fabric API Base Common, Legacy Fabric Crash Report Info (v1), Fabric Gamerule API (v1), Legacy Fabric Networking API (v1), Legacy Fabric Item Groups (V1), Legacy Fabric Permissions API (v1), Legacy Fabric Keybinding API (V1), Legacy Fabric API Base, Legacy Fabric Entity Events (V1), Legacy Fabric Logger API (v1), Legacy Fabric API, Legacy Fabric Resource Loader (V1), Legacy Fabric Networking API (v1), Legacy Fabric Lifecycle Events (V1), Legacy Fabric Resource Loader (V1) Common +[01:07:52] [main/DEBUG] (FabricLoader/Mixin) Mixing client.ClientResourceReloadListenerMixins from legacy-fabric-resource-loader-v1.mixins.json into net.minecraft.client.texture.TextureManager +[01:07:53] [main/ERROR] (net.minecraft.client.MinecraftClient) Couldn't initialize twitch stream +[01:07:53] [Sound Library Loader/INFO] (net.minecraft.client.sound.SoundSystem) Starting up SoundSystem... +[01:07:53] [Thread-6/INFO] (net.minecraft.client.sound.SoundSystem) Initializing LWJGL OpenAL +[01:07:53] [Thread-6/INFO] (net.minecraft.client.sound.SoundSystem) (The LWJGL binding of OpenAL. For more information, see http://www.lwjgl.org) +[01:07:53] [main/DEBUG] (FabricLoader/Mixin) Mixing client.ClientResourceReloadListenerMixins from legacy-fabric-resource-loader-v1.mixins.json into net.minecraft.resource.GrassColorResourceReloadListener +[01:07:53] [main/DEBUG] (FabricLoader/Mixin) Mixing client.ClientResourceReloadListenerMixins from legacy-fabric-resource-loader-v1.mixins.json into net.minecraft.resource.FoliageColorResourceReloadListener +[01:07:53] [Thread-6/INFO] (net.minecraft.client.sound.SoundSystem) OpenAL initialized. +[01:07:53] [main/DEBUG] (FabricLoader/Mixin) Mixing client.ModelIdentifierMixin from legacy-fabric-resource-loader-v1-common.mixins.json into net.minecraft.client.util.ModelIdentifier +[01:07:53] [main/DEBUG] (FabricLoader/Mixin) legacy-fabric-resource-loader-v1-common.mixins.json:client.ModelIdentifierMixin from mod legacy-fabric-resource-loader-v1-common->@Inject::modifyArray(Ljava/lang/String;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;[Ljava/lang/String;)V doesn't use it's CallbackInfoReturnable +[01:07:53] [Sound Library Loader/INFO] (net.minecraft.client.sound.SoundSystem) Sound engine started +[01:07:54] [main/INFO] (net.minecraft.client.texture.SpriteAtlasTexture) Created: 512x512 textures-atlas +[01:07:54] [main/DEBUG] (FabricLoader/Mixin) Mixing ItemRendererMixin from legacy-fabric-rendering-api-v1.mixins.json into net.minecraft.client.render.item.ItemRenderer +[01:07:54] [main/DEBUG] (FabricLoader/Mixin) Mixing client.ClientResourceReloadListenerMixins from legacy-fabric-resource-loader-v1.mixins.json into net.minecraft.client.render.item.ItemRenderer +[01:07:54] [main/DEBUG] (FabricLoader/Mixin) Mixing client.ItemRendererMixin from legacy-fabric-resource-loader-v1.mixins.json into net.minecraft.client.render.item.ItemRenderer +[01:07:54] [main/DEBUG] (FabricLoader/Mixin) Renaming synthetic method lambda$fabric_register$3(Lnet/legacyfabric/fabric/impl/resource/loader/ItemModelRegistryImpl$ModelTriad;)V to mdc129c1$legacy-fabric-resource-loader-v1$lambda$fabric_register$3$0 in legacy-fabric-resource-loader-v1.mixins.json:client.ItemRendererMixin from mod legacy-fabric-resource-loader-v1 +[01:07:54] [main/DEBUG] (FabricLoader/Mixin) Renaming synthetic method lambda$fabric_register$2(Lnet/legacyfabric/fabric/impl/resource/loader/ItemModelRegistryImpl$ModelTriad;)V to mdc129c1$legacy-fabric-resource-loader-v1$lambda$fabric_register$2$1 in legacy-fabric-resource-loader-v1.mixins.json:client.ItemRendererMixin from mod legacy-fabric-resource-loader-v1 +[01:07:54] [main/DEBUG] (FabricLoader/Mixin) Renaming synthetic method lambda$fabric_register$1(Lnet/legacyfabric/fabric/impl/resource/loader/ItemModelRegistryImpl$ModelPair;)V to mdc129c1$legacy-fabric-resource-loader-v1$lambda$fabric_register$1$2 in legacy-fabric-resource-loader-v1.mixins.json:client.ItemRendererMixin from mod legacy-fabric-resource-loader-v1 +[01:07:54] [main/DEBUG] (FabricLoader/Mixin) Renaming synthetic method lambda$fabric_register$0(Lnet/legacyfabric/fabric/impl/resource/loader/ItemModelRegistryImpl$ModelPair;)V to mdc129c1$legacy-fabric-resource-loader-v1$lambda$fabric_register$0$3 in legacy-fabric-resource-loader-v1.mixins.json:client.ItemRendererMixin from mod legacy-fabric-resource-loader-v1 +[01:07:54] [main/DEBUG] (FabricLoader/Mixin) Mixing EntityRenderDispatcherMixin from legacy-fabric-rendering-api-v1.mixins.json into net.minecraft.client.render.entity.EntityRenderDispatcher +[01:07:54] [main/DEBUG] (FabricLoader/Mixin) legacy-fabric-rendering-api-v1.mixins.json:EntityRenderDispatcherMixin from mod legacy-fabric-rendering-api-v1->@Inject::afterRegisterRenderers(Lnet/minecraft/client/texture/TextureManager;Lnet/minecraft/client/render/item/ItemRenderer;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V doesn't use it's CallbackInfo +[01:07:54] [main/DEBUG] (FabricLoader/Mixin) legacy-fabric-rendering-api-v1.mixins.json:EntityRenderDispatcherMixin from mod legacy-fabric-rendering-api-v1->@Inject::afterRegisterRenderers(Lnet/minecraft/client/texture/TextureManager;Lnet/minecraft/client/render/item/ItemRenderer;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V has 0 override(s) in child classes +[01:07:54] [main/DEBUG] (FabricLoader/Mixin) legacy-fabric-rendering-api-v1.mixins.json:EntityRenderDispatcherMixin from mod legacy-fabric-rendering-api-v1->@Inject::afterRegisterRenderers(Lnet/minecraft/client/texture/TextureManager;Lnet/minecraft/client/render/item/ItemRenderer;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V won't be passed a CallbackInfo as a result +[01:07:54] [main/DEBUG] (FabricLoader/Mixin) Mixing LivingEntityRendererAccessor from legacy-fabric-rendering-api-v1.mixins.json into net.minecraft.client.render.entity.LivingEntityRenderer +[01:07:54] [main/DEBUG] (FabricLoader/Mixin) Mixing client.ClientResourceReloadListenerMixins from legacy-fabric-resource-loader-v1.mixins.json into net.minecraft.client.render.GameRenderer +[01:07:54] [main/DEBUG] (FabricLoader/Mixin) Mixing client.ClientResourceReloadListenerMixins from legacy-fabric-resource-loader-v1.mixins.json into net.minecraft.client.render.block.BlockRenderManager +[01:07:54] [main/DEBUG] (FabricLoader/Mixin) Mixing WorldRendererMixin from legacy-fabric-rendering-api-v1-common.mixins.json into net.minecraft.client.render.WorldRenderer +[01:07:54] [main/DEBUG] (FabricLoader/Mixin) Mixing client.ClientResourceReloadListenerMixins from legacy-fabric-resource-loader-v1.mixins.json into net.minecraft.client.render.WorldRenderer +[01:07:54] [main/DEBUG] (FabricLoader/Mixin) legacy-fabric-rendering-api-v1-common.mixins.json:WorldRendererMixin from mod legacy-fabric-rendering-api-v1-common->@Inject::onReload(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V doesn't use it's CallbackInfo +[01:07:54] [main/DEBUG] (FabricLoader/Mixin) legacy-fabric-rendering-api-v1-common.mixins.json:WorldRendererMixin from mod legacy-fabric-rendering-api-v1-common->@Inject::onReload(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V has 0 override(s) in child classes +[01:07:54] [main/DEBUG] (FabricLoader/Mixin) legacy-fabric-rendering-api-v1-common.mixins.json:WorldRendererMixin from mod legacy-fabric-rendering-api-v1-common->@Inject::onReload(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V won't be passed a CallbackInfo as a result +[01:07:55] [main/DEBUG] (FabricLoader/Mixin) Mixing InGameHudMixin from legacy-fabric-rendering-api-v1.mixins.json into net.minecraft.client.gui.hud.InGameHud +[01:07:55] [main/DEBUG] (FabricLoader/Mixin) legacy-fabric-rendering-api-v1.mixins.json:InGameHudMixin from mod legacy-fabric-rendering-api-v1->@Inject::render(FLorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V doesn't use it's CallbackInfo +[01:07:55] [main/DEBUG] (FabricLoader/Mixin) legacy-fabric-rendering-api-v1.mixins.json:InGameHudMixin from mod legacy-fabric-rendering-api-v1->@Inject::render(FLorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V has 0 override(s) in child classes +[01:07:55] [main/DEBUG] (FabricLoader/Mixin) legacy-fabric-rendering-api-v1.mixins.json:InGameHudMixin from mod legacy-fabric-rendering-api-v1->@Inject::render(FLorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V won't be passed a CallbackInfo as a result +[01:07:55] [main/DEBUG] (FabricLoader/Mixin) Mixing ServerPlayerEntityMixin from legacy-fabric-entity-events-v1.mixins.json into net.minecraft.entity.player.ServerPlayerEntity +[01:07:55] [main/DEBUG] (FabricLoader/Mixin) Mixing ServerPlayerEntityMixin from legacy-fabric-permissions-api-v1.mixins.json into net.minecraft.entity.player.ServerPlayerEntity +[01:07:55] [main/DEBUG] (FabricLoader/Mixin) legacy-fabric-entity-events-v1.mixins.json:ServerPlayerEntityMixin from mod legacy-fabric-entity-events-v1->@Inject::callOnKillForPlayer(Lnet/minecraft/entity/damage/DamageSource;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V doesn't use it's CallbackInfo +[01:07:55] [main/DEBUG] (FabricLoader/Mixin) legacy-fabric-entity-events-v1.mixins.json:ServerPlayerEntityMixin from mod legacy-fabric-entity-events-v1->@Inject::callOnKillForPlayer(Lnet/minecraft/entity/damage/DamageSource;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V has 0 override(s) in child classes +[01:07:55] [main/DEBUG] (FabricLoader/Mixin) legacy-fabric-entity-events-v1.mixins.json:ServerPlayerEntityMixin from mod legacy-fabric-entity-events-v1->@Inject::callOnKillForPlayer(Lnet/minecraft/entity/damage/DamageSource;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V won't be passed a CallbackInfo as a result +[01:07:55] [main/DEBUG] (FabricLoader/Mixin) legacy-fabric-entity-events-v1.mixins.json:ServerPlayerEntityMixin from mod legacy-fabric-entity-events-v1->@Inject::onCopyFrom(Lnet/minecraft/entity/player/PlayerEntity;ZLorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V doesn't use it's CallbackInfo +[01:07:55] [main/DEBUG] (FabricLoader/Mixin) legacy-fabric-entity-events-v1.mixins.json:ServerPlayerEntityMixin from mod legacy-fabric-entity-events-v1->@Inject::onCopyFrom(Lnet/minecraft/entity/player/PlayerEntity;ZLorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V has 0 override(s) in child classes +[01:07:55] [main/DEBUG] (FabricLoader/Mixin) legacy-fabric-entity-events-v1.mixins.json:ServerPlayerEntityMixin from mod legacy-fabric-entity-events-v1->@Inject::onCopyFrom(Lnet/minecraft/entity/player/PlayerEntity;ZLorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V won't be passed a CallbackInfo as a result +[01:07:59] [main/INFO] (net.minecraft.client.MinecraftClient) Stopping! +[01:07:59] [main/INFO] (net.minecraft.client.sound.SoundSystem) SoundSystem shutting down... +[01:07:59] [main/WARN] (net.minecraft.client.sound.SoundSystem) Author: Paul Lamb, www.paulscode.com diff --git a/v1_8_9/run/logs/latest.log b/v1_8_9/run/logs/latest.log new file mode 100644 index 0000000..1f65427 --- /dev/null +++ b/v1_8_9/run/logs/latest.log @@ -0,0 +1,49 @@ +[01:07:48] [main/INFO] (FabricLoader/GameProvider) Loading Minecraft 1.8.9 with Fabric Loader 0.15.2 +[01:07:48] [main/INFO] (FabricLoader) Loading 30 mods: + - fabricloader 0.15.2 + - java 17 + - legacy-fabric-api 1.9.1+1.8.9 + - legacy-fabric-api-base 1.1.0+1.8.9+f368a06d39 + - legacy-fabric-api-base-common 1.1.0+1dd3cad892 + - legacy-fabric-command-api-v1 1.0.0+ae4aa0d092 + - legacy-fabric-command-api-v2 1.0.0+1.8.9+01f7587839 + - legacy-fabric-crash-report-info-v1 1.0.0+1.8.9+f368a06d39 + - legacy-fabric-entity-events-v1 1.0.0+1.8.9+f368a06d39 + - legacy-fabric-entity-events-v1-common 1.0.0+ae4aa0d092 + - legacy-fabric-gamerule-api-v1 1.0.0+ae4aa0d092 + - legacy-fabric-item-groups-v1 2.0.0+1.8.9+f368a06d39 + - legacy-fabric-item-groups-v1-common 2.0.0+1dd3cad892 + - legacy-fabric-keybinding-api-v1-common 1.0.0+ae4aa0d092 + - legacy-fabric-lifecycle-events-v1 1.0.1+1.8.9+d86bee7939 + - legacy-fabric-lifecycle-events-v1-common 1.0.1+ae4aa0d092 + - legacy-fabric-logger-api-v1 1.0.4+ae4aa0d092 + - legacy-fabric-networking-api-v1 2.0.0+1.8.9+01f7587839 + - legacy-fabric-networking-api-v1-common 2.0.0+022f9a7592 + - legacy-fabric-permissions-api-v1 1.0.0+1.8.9+f368a06d39 + - legacy-fabric-permissions-api-v1-common 1.0.0+ae4aa0d092 + - legacy-fabric-registry-sync-api-v1 2.1.0+1.8.9+508c546039 + - legacy-fabric-registry-sync-api-v1-common 2.1.0+508c546092 + - legacy-fabric-rendering-api-v1 1.0.0+1.8.9+022f9a7539 + - legacy-fabric-rendering-api-v1-common 1.0.0+ae4aa0d092 + - legacy-fabric-resource-loader-v1 2.1.0+1.8.9+022f9a7539 + - legacy-fabric-resource-loader-v1-common 2.1.0+a9c128f492 + - minecraft 1.8.9 + - mixinextras 0.3.2 + - testclient 1.0.0 +[01:07:48] [main/INFO] (FabricLoader/Mixin) SpongePowered MIXIN Subsystem Version=0.8.5 Source=file:/C:/Users/rohan/.gradle/caches/modules-2/files-2.1/net.fabricmc/sponge-mixin/0.12.5+mixin.0.8.5/8d31fb97c3e0cd7c8dad3441851c523bcfae6d8e/sponge-mixin-0.12.5+mixin.0.8.5.jar Service=Knot/Fabric Env=CLIENT +[01:07:48] [main/INFO] (FabricLoader/Mixin) Loaded Fabric development mappings for mixin remapper! +[01:07:49] [main/INFO] (FabricLoader/MixinExtras|Service) Initializing MixinExtras via com.llamalad7.mixinextras.service.MixinExtrasServiceImpl(version=0.3.2). +[01:07:49] [main/INFO] (Minecraft) Setting user: Player56 +[01:07:49] [main/INFO] (Minecraft) (Session ID is token:FabricMC:Player56) +[01:07:51] [main/INFO] (Minecraft) LWJGL Version: 2.9.4 +[01:07:52] [main/INFO] (Minecraft) Reloading ResourceManager: Default, Legacy Fabric Rendering API (V1), Legacy Fabric Command API (v2), Legacy Fabric Rendering API (V1), Fabric Loader, Legacy Fabric Entity Events (V1), Legacy Fabric Registry Sync API (V1), Legacy Fabric Permissions API (v2), Legacy Fabric Registry Sync API (V1), Legacy Fabric Command API (V1), Legacy Fabric Item Groups (V1), Legacy Fabric Lifecycle Events (V1), Legacy Fabric API Base Common, Legacy Fabric Crash Report Info (v1), Fabric Gamerule API (v1), Legacy Fabric Networking API (v1), Legacy Fabric Item Groups (V1), Legacy Fabric Permissions API (v1), Legacy Fabric Keybinding API (V1), Legacy Fabric API Base, Legacy Fabric Entity Events (V1), Legacy Fabric Logger API (v1), Legacy Fabric API, Legacy Fabric Resource Loader (V1), Legacy Fabric Networking API (v1), Legacy Fabric Lifecycle Events (V1), Legacy Fabric Resource Loader (V1) Common +[01:07:53] [main/ERROR] (Minecraft) Couldn't initialize twitch stream +[01:07:53] [Sound Library Loader/INFO] (Minecraft) Starting up SoundSystem... +[01:07:53] [Thread-6/INFO] (Minecraft) Initializing LWJGL OpenAL +[01:07:53] [Thread-6/INFO] (Minecraft) (The LWJGL binding of OpenAL. For more information, see http://www.lwjgl.org) +[01:07:53] [Thread-6/INFO] (Minecraft) OpenAL initialized. +[01:07:53] [Sound Library Loader/INFO] (Minecraft) Sound engine started +[01:07:54] [main/INFO] (Minecraft) Created: 512x512 textures-atlas +[01:07:59] [main/INFO] (Minecraft) Stopping! +[01:07:59] [main/INFO] (Minecraft) SoundSystem shutting down... +[01:07:59] [main/WARN] (Minecraft) Author: Paul Lamb, www.paulscode.com diff --git a/v1_8_9/src/main/java/dev/refactoring/ClientEntrypoint.java b/v1_8_9/src/main/java/dev/refactoring/ClientEntrypoint.java new file mode 100644 index 0000000..554b531 --- /dev/null +++ b/v1_8_9/src/main/java/dev/refactoring/ClientEntrypoint.java @@ -0,0 +1,18 @@ +package dev.refactoring; + +import dev.refactoring.bridge.BridgeImpl; +import dev.refactoring.bridge.core.BridgeManager; +import dev.refactoring.bridge.core.util.MinecraftVersion; +import net.fabricmc.api.ClientModInitializer; + +/** + * @author refactoring + */ +public class ClientEntrypoint implements ClientModInitializer { + + @Override + public void onInitializeClient() { + BridgeManager.INSTANCE.setVersion(MinecraftVersion.v1_8_9); + BridgeManager.INSTANCE.setBridge(new BridgeImpl()); + } +} diff --git a/v1_8_9/src/main/java/dev/refactoring/bridge/BridgeImpl.java b/v1_8_9/src/main/java/dev/refactoring/bridge/BridgeImpl.java new file mode 100644 index 0000000..acb4938 --- /dev/null +++ b/v1_8_9/src/main/java/dev/refactoring/bridge/BridgeImpl.java @@ -0,0 +1,16 @@ +package dev.refactoring.bridge; + +import dev.refactoring.bridge.client.input.KeyBindingBridge; +import dev.refactoring.bridge.core.Bridge; +import net.legacyfabric.fabric.api.client.keybinding.v1.KeyBindingHelper; +import net.minecraft.client.option.KeyBinding; + +/** + * @author refactoring + */ +public class BridgeImpl implements Bridge { + @Override + public KeyBindingBridge initKeyBinding(String name, int keyCode, String cat) { + return (KeyBindingBridge) KeyBindingHelper.registerKeyBinding(new KeyBinding(name, keyCode, cat)); + } +} diff --git a/v1_8_9/src/main/java/dev/refactoring/mixins/MixinMinecraftClient.java b/v1_8_9/src/main/java/dev/refactoring/mixins/MixinMinecraftClient.java new file mode 100644 index 0000000..2a60dcf --- /dev/null +++ b/v1_8_9/src/main/java/dev/refactoring/mixins/MixinMinecraftClient.java @@ -0,0 +1,38 @@ +package dev.refactoring.mixins; + +import dev.refactoring.bridge.client.MinecraftClientBridge; +import dev.refactoring.bridge.core.BridgeManager; +import dev.refactoring.testclient.TestClient; +import net.minecraft.client.MinecraftClient; +import org.lwjgl.opengl.Display; +import org.spongepowered.asm.mixin.Mixin; +import org.spongepowered.asm.mixin.Shadow; +import org.spongepowered.asm.mixin.injection.At; +import org.spongepowered.asm.mixin.injection.Inject; +import org.spongepowered.asm.mixin.injection.callback.CallbackInfo; + +/** + * This is how you implement a bridge. + * + * @author refactoring + */ +@Mixin(MinecraftClient.class) +public class MixinMinecraftClient implements MinecraftClientBridge { + @Shadow private static int currentFps; + + @Override + public int bridge$getCurrentFps() { + return currentFps; + } + + @Inject(method = "tick", at = @At("HEAD")) + public void mixin$tick(CallbackInfo ci) { + Display.setTitle(BridgeManager.INSTANCE.getWindowTitle()); // TODO Make an actual bridge for this + TestClient.INSTANCE.printFps(); + } + + @Inject(method = "run", at = @At("HEAD")) + public void mixin$run(CallbackInfo ci) { + BridgeManager.INSTANCE.setMinecraftClientBridge(this); // You want to do this for everything except things like keybindings, which are initialized by the user. + } +} diff --git a/v1_8_9/src/main/java/dev/refactoring/mixins/input/MixinKeyBinding.java b/v1_8_9/src/main/java/dev/refactoring/mixins/input/MixinKeyBinding.java new file mode 100644 index 0000000..05c42e5 --- /dev/null +++ b/v1_8_9/src/main/java/dev/refactoring/mixins/input/MixinKeyBinding.java @@ -0,0 +1,69 @@ +package dev.refactoring.mixins.input; + +import dev.refactoring.bridge.client.input.KeyBindingBridge; +import net.minecraft.client.option.KeyBinding; +import net.minecraft.client.resource.language.I18n; +import org.spongepowered.asm.mixin.Mixin; +import org.spongepowered.asm.mixin.Shadow; +import org.spongepowered.asm.mixin.Unique; + +import java.util.ArrayList; +import java.util.List; + +/** + * @author refactoring + */ +@Mixin(KeyBinding.class) +public abstract class MixinKeyBinding implements KeyBindingBridge { + @Shadow public abstract int getCode(); + @Unique + public final List clashesWith = new ArrayList<>(); + @Shadow public abstract void setCode(int code); + + @Shadow public abstract boolean isPressed(); + + @Shadow public abstract String getTranslationKey(); + + @Shadow public abstract String getCategory(); + + @Override + public int bridge$getKey() { + return this.getCode(); + } + + @Override + public void bridge$setKey(Integer var1) { + this.setCode(var1); + } + + @Override + public boolean bridge$isKeyDown() { + return this.isPressed(); + } + + @Override + public String bridge$getKeyName() { + return I18n.translate(this.getTranslationKey()); + } + + @Override + public String bridge$getKeyDescription() { + return I18n.translate(this.getTranslationKey()); + } + + @Override + public void bridge$setKeyBindState(boolean var1) { + KeyBinding.setKeyPressed(this.getCode(), var1); + } + + @Override + public List bridge$getClashesWith() { + return this.clashesWith; + } + + @Override + public String bridge$getCategory() { + return this.getCategory(); + } + // I decided to be nice and include a KeyBinding bridge :) +} diff --git a/v1_8_9/src/main/resources/client.mixins.json b/v1_8_9/src/main/resources/client.mixins.json new file mode 100644 index 0000000..b7a8c8f --- /dev/null +++ b/v1_8_9/src/main/resources/client.mixins.json @@ -0,0 +1,15 @@ +{ + "required": true, + "minVersion": "0.8", + "package": "dev.refactoring.mixins", + "compatibilityLevel": "JAVA_8", + "mixins": [ + ], + "client": [ + "MixinMinecraftClient", + "input.MixinKeyBinding" + ], + "injectors": { + "defaultRequire": 1 + } +} \ No newline at end of file diff --git a/v1_8_9/src/main/resources/fabric.mod.json b/v1_8_9/src/main/resources/fabric.mod.json new file mode 100644 index 0000000..c09abe8 --- /dev/null +++ b/v1_8_9/src/main/resources/fabric.mod.json @@ -0,0 +1,31 @@ +{ + "schemaVersion": 1, + "id": "testclient", + "version": "${version}", + "name": "Test Client", + "description": "", + "authors": [ + "Refactoring" + ], + "contact": { + "homepage": "https://aetherium.club", + "sources": "https://github.com/Aetherium-Development" + }, + "license": "CC0-1.0", + "icon": "", + "environment": "*", + "entrypoints": { + "client": [ + "dev.refactoring.ClientEntrypoint" + ] + }, + "mixins": [ + "client.mixins.json" + ], + "depends": { + "fabricloader": ">=0.14.19", + "minecraft": "1.8.9" + }, + "suggests": { + } +} \ No newline at end of file