Initial commit
@@ -0,0 +1,12 @@
|
||||
[*]
|
||||
charset = utf-8
|
||||
indent_style = space
|
||||
insert_final_newline = true
|
||||
trim_trailing_whitespace = true
|
||||
indent_size = 4
|
||||
|
||||
[*.{json, yml}]
|
||||
indent_size = 2
|
||||
|
||||
[*.md]
|
||||
trim_trailing_whitespace = false
|
||||
@@ -0,0 +1,2 @@
|
||||
# Auto detect text files and perform LF normalization
|
||||
* text=auto
|
||||
@@ -0,0 +1,24 @@
|
||||
# Compiled class file
|
||||
*.class
|
||||
|
||||
# Log file
|
||||
*.log
|
||||
|
||||
# BlueJ files
|
||||
*.ctxt
|
||||
|
||||
# Mobile Tools for Java (J2ME)
|
||||
.mtj.tmp/
|
||||
|
||||
# Package Files #
|
||||
*.jar
|
||||
*.war
|
||||
*.nar
|
||||
*.ear
|
||||
*.zip
|
||||
*.tar.gz
|
||||
*.rar
|
||||
|
||||
# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
|
||||
hs_err_pid*
|
||||
replay_pid*
|
||||
@@ -0,0 +1,2 @@
|
||||
#Wed Jul 10 21:11:03 MDT 2024
|
||||
gradle.version=8.8
|
||||
@@ -0,0 +1,11 @@
|
||||
commonProperties
|
||||
fabric.development=true
|
||||
fabric.remapClasspathFile=/home/astatin3/GitHub/no-more-render/.gradle/loom-cache/remapClasspath.txt
|
||||
log4j.configurationFile=/home/astatin3/GitHub/no-more-render/.gradle/loom-cache/log4j.xml
|
||||
log4j2.formatMsgNoLookups=true
|
||||
fabric.log.disableAnsi=false
|
||||
clientArgs
|
||||
--assetIndex
|
||||
1.21-17
|
||||
--assetsDir
|
||||
/home/astatin3/.gradle/caches/fabric-loom/assets
|
||||
@@ -0,0 +1,68 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<Configuration status="WARN">
|
||||
<Appenders>
|
||||
|
||||
<!-- System out -->
|
||||
<Console name="SysOut" target="SYSTEM_OUT">
|
||||
<!-- Filter out the authentication errors when starting in development -->
|
||||
<Filters>
|
||||
<RegexFilter regex="^Failed to verify authentication$" onMatch="DENY" onMismatch="NEUTRAL"/>
|
||||
<RegexFilter regex="^Failed to fetch user properties$" onMatch="DENY" onMismatch="NEUTRAL"/>
|
||||
<RegexFilter regex="^Couldn't connect to realms$" onMatch="DENY" onMismatch="NEUTRAL"/>
|
||||
</Filters>
|
||||
<PatternLayout>
|
||||
<LoggerNamePatternSelector defaultPattern="%style{[%d{HH:mm:ss}]}{blue} %highlight{[%t/%level]}{FATAL=red, ERROR=red, WARN=yellow, INFO=green, DEBUG=green, TRACE=blue} %style{(%logger{1})}{cyan} %highlight{%msg%n}{FATAL=red, ERROR=red, WARN=normal, INFO=normal, DEBUG=normal, TRACE=normal}" disableAnsi="${sys:fabric.log.disableAnsi:-true}">
|
||||
<!-- Dont show the logger name for minecraft classes-->
|
||||
<PatternMatch key="net.minecraft.,com.mojang." pattern="%style{[%d{HH:mm:ss}]}{blue} %highlight{[%t/%level]}{FATAL=red, ERROR=red, WARN=yellow, INFO=green, DEBUG=green, TRACE=blue} %style{(Minecraft)}{cyan} %highlight{%msg{nolookups}%n}{FATAL=red, ERROR=red, WARN=normal, INFO=normal, DEBUG=normal, TRACE=normal}"/>
|
||||
</LoggerNamePatternSelector>
|
||||
</PatternLayout>
|
||||
</Console>
|
||||
|
||||
<!-- Vanilla server gui -->
|
||||
<Queue name="ServerGuiConsole" ignoreExceptions="true">
|
||||
<PatternLayout>
|
||||
<LoggerNamePatternSelector defaultPattern="[%d{HH:mm:ss} %level] (%logger{1}) %msg{nolookups}%n">
|
||||
<!-- Dont show the logger name for minecraft classes-->
|
||||
<PatternMatch key="net.minecraft.,com.mojang." pattern="[%d{HH:mm:ss} %level] %msg{nolookups}%n"/>
|
||||
</LoggerNamePatternSelector>
|
||||
</PatternLayout>
|
||||
</Queue>
|
||||
|
||||
<!-- latest.log same as vanilla -->
|
||||
<RollingRandomAccessFile name="LatestFile" fileName="logs/latest.log" filePattern="logs/%d{yyyy-MM-dd}-%i.log.gz">
|
||||
<PatternLayout>
|
||||
<LoggerNamePatternSelector defaultPattern="[%d{HH:mm:ss}] [%t/%level] (%logger{1}) %msg{nolookups}%n">
|
||||
<!-- Dont show the logger name for minecraft classes-->
|
||||
<PatternMatch key="net.minecraft.,com.mojang." pattern="[%d{HH:mm:ss}] [%t/%level] (Minecraft) %msg{nolookups}%n"/>
|
||||
</LoggerNamePatternSelector>
|
||||
</PatternLayout>
|
||||
<Policies>
|
||||
<TimeBasedTriggeringPolicy />
|
||||
<OnStartupTriggeringPolicy />
|
||||
</Policies>
|
||||
</RollingRandomAccessFile>
|
||||
|
||||
<!-- Debug log file -->
|
||||
<RollingRandomAccessFile name="DebugFile" fileName="logs/debug.log" filePattern="logs/debug-%i.log.gz">
|
||||
<PatternLayout pattern="[%d{HH:mm:ss}] [%t/%level] (%logger) %msg{nolookups}%n" />
|
||||
|
||||
<!-- Keep 5 files max -->
|
||||
<DefaultRolloverStrategy max="5" fileIndex="min"/>
|
||||
|
||||
<Policies>
|
||||
<SizeBasedTriggeringPolicy size="200MB"/>
|
||||
<OnStartupTriggeringPolicy />
|
||||
</Policies>
|
||||
|
||||
</RollingRandomAccessFile>
|
||||
</Appenders>
|
||||
<Loggers>
|
||||
<Logger level="${sys:fabric.log.level:-info}" name="net.minecraft"/>
|
||||
<Root level="all">
|
||||
<AppenderRef ref="DebugFile" level="${sys:fabric.log.debug.level:-debug}"/>
|
||||
<AppenderRef ref="SysOut" level="${sys:fabric.log.level:-info}"/>
|
||||
<AppenderRef ref="LatestFile" level="${sys:fabric.log.level:-info}"/>
|
||||
<AppenderRef ref="ServerGuiConsole" level="${sys:fabric.log.level:-info}"/>
|
||||
</Root>
|
||||
</Loggers>
|
||||
</Configuration>
|
||||
@@ -0,0 +1,8 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
|
||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
<groupId>net.minecraft</groupId>
|
||||
<artifactId>minecraft-merged-3848b19350</artifactId>
|
||||
<version>1.21-net.fabricmc.yarn.1_21.1.21+build.8-v2</version>
|
||||
</project>
|
||||
@@ -0,0 +1,8 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
|
||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
<groupId>net_fabricmc_yarn_1_21_1_21_build_8_v2.meteordevelopment</groupId>
|
||||
<artifactId>meteor-client</artifactId>
|
||||
<version>0.5.8-SNAPSHOT</version>
|
||||
</project>
|
||||
@@ -0,0 +1,8 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
|
||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
<groupId>net_fabricmc_yarn_1_21_1_21_build_8_v2.net.fabricmc.fabric-api</groupId>
|
||||
<artifactId>fabric-resource-loader-v0</artifactId>
|
||||
<version>1.1.4+cb5ced13d1</version>
|
||||
</project>
|
||||
@@ -0,0 +1 @@
|
||||
unpick.level=WARNING
|
||||
@@ -0,0 +1,8 @@
|
||||
# Default ignored files
|
||||
/shelf/
|
||||
/workspace.xml
|
||||
# Editor-based HTTP Client requests
|
||||
/httpRequests/
|
||||
# Datasource local storage ignored files
|
||||
/dataSources/
|
||||
/dataSources.local.xml
|
||||
@@ -0,0 +1,6 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project version="4">
|
||||
<component name="CompilerConfiguration">
|
||||
<bytecodeTargetLevel target="21" />
|
||||
</component>
|
||||
</project>
|
||||
@@ -0,0 +1,16 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project version="4">
|
||||
<component name="GradleMigrationSettings" migrationVersion="1" />
|
||||
<component name="GradleSettings">
|
||||
<option name="linkedExternalProjectsSettings">
|
||||
<GradleProjectSettings>
|
||||
<option name="externalProjectPath" value="$PROJECT_DIR$" />
|
||||
<option name="modules">
|
||||
<set>
|
||||
<option value="$PROJECT_DIR$" />
|
||||
</set>
|
||||
</option>
|
||||
</GradleProjectSettings>
|
||||
</option>
|
||||
</component>
|
||||
</project>
|
||||
@@ -0,0 +1,6 @@
|
||||
<component name="InspectionProjectProfileManager">
|
||||
<profile version="1.0">
|
||||
<option name="myName" value="Project Default" />
|
||||
<inspection_tool class="UnreachableCode" enabled="false" level="WARNING" enabled_by_default="false" />
|
||||
</profile>
|
||||
</component>
|
||||
@@ -0,0 +1,55 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project version="4">
|
||||
<component name="RemoteRepositoriesConfiguration">
|
||||
<remote-repository>
|
||||
<option name="id" value="central" />
|
||||
<option name="name" value="Maven Central repository" />
|
||||
<option name="url" value="https://repo1.maven.org/maven2" />
|
||||
</remote-repository>
|
||||
<remote-repository>
|
||||
<option name="id" value="jboss.community" />
|
||||
<option name="name" value="JBoss Community repository" />
|
||||
<option name="url" value="https://repository.jboss.org/nexus/content/repositories/public/" />
|
||||
</remote-repository>
|
||||
<remote-repository>
|
||||
<option name="id" value="Meteor Dev Releases" />
|
||||
<option name="name" value="Meteor Dev Releases" />
|
||||
<option name="url" value="https://maven.meteordev.org/releases" />
|
||||
</remote-repository>
|
||||
<remote-repository>
|
||||
<option name="id" value="MavenRepo" />
|
||||
<option name="name" value="MavenRepo" />
|
||||
<option name="url" value="https://repo.maven.apache.org/maven2/" />
|
||||
</remote-repository>
|
||||
<remote-repository>
|
||||
<option name="id" value="Meteor Dev Snapshots" />
|
||||
<option name="name" value="Meteor Dev Snapshots" />
|
||||
<option name="url" value="https://maven.meteordev.org/snapshots" />
|
||||
</remote-repository>
|
||||
<remote-repository>
|
||||
<option name="id" value="Fabric" />
|
||||
<option name="name" value="Fabric" />
|
||||
<option name="url" value="https://maven.fabricmc.net/" />
|
||||
</remote-repository>
|
||||
<remote-repository>
|
||||
<option name="id" value="LoomLocalMinecraft" />
|
||||
<option name="name" value="LoomLocalMinecraft" />
|
||||
<option name="url" value="file:$PROJECT_DIR$/.gradle/loom-cache/minecraftMaven/" />
|
||||
</remote-repository>
|
||||
<remote-repository>
|
||||
<option name="id" value="Mojang" />
|
||||
<option name="name" value="Mojang" />
|
||||
<option name="url" value="https://libraries.minecraft.net/" />
|
||||
</remote-repository>
|
||||
<remote-repository>
|
||||
<option name="id" value="LoomLocalRemappedMods" />
|
||||
<option name="name" value="LoomLocalRemappedMods" />
|
||||
<option name="url" value="file:$PROJECT_DIR$/.gradle/loom-cache/remapped_mods/" />
|
||||
</remote-repository>
|
||||
<remote-repository>
|
||||
<option name="id" value="LoomGlobalMinecraft" />
|
||||
<option name="name" value="LoomGlobalMinecraft" />
|
||||
<option name="url" value="file:$USER_HOME$/.gradle/caches/fabric-loom/minecraftMaven/" />
|
||||
</remote-repository>
|
||||
</component>
|
||||
</project>
|
||||
@@ -0,0 +1,8 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project version="4">
|
||||
<component name="ExternalStorageConfigurationManager" enabled="true" />
|
||||
<component name="FrameworkDetectionExcludesConfiguration">
|
||||
<file type="web" url="file://$PROJECT_DIR$" />
|
||||
</component>
|
||||
<component name="ProjectRootManager" version="2" languageLevel="JDK_21" project-jdk-name="22" project-jdk-type="JavaSDK" />
|
||||
</project>
|
||||
@@ -0,0 +1,9 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project version="4">
|
||||
<component name="ProjectModuleManager">
|
||||
<modules>
|
||||
<module fileurl="file://$PROJECT_DIR$/.idea/modules/no-more-render.main.iml" filepath="$PROJECT_DIR$/.idea/modules/no-more-render.main.iml" />
|
||||
<module fileurl="file://$PROJECT_DIR$/.idea/modules/no-more-render.test.iml" filepath="$PROJECT_DIR$/.idea/modules/no-more-render.test.iml" />
|
||||
</modules>
|
||||
</component>
|
||||
</project>
|
||||
@@ -0,0 +1,18 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<module version="4">
|
||||
<component name="FacetManager">
|
||||
<facet type="minecraft" name="Minecraft">
|
||||
<configuration>
|
||||
<autoDetectTypes>
|
||||
<platformType>MIXIN</platformType>
|
||||
<platformType>MCP</platformType>
|
||||
<platformType>FABRIC</platformType>
|
||||
</autoDetectTypes>
|
||||
<projectReimportVersion>1</projectReimportVersion>
|
||||
</configuration>
|
||||
</facet>
|
||||
</component>
|
||||
<component name="McpModuleSettings">
|
||||
<option name="srgType" value="SRG" />
|
||||
</component>
|
||||
</module>
|
||||
@@ -0,0 +1,18 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<module version="4">
|
||||
<component name="FacetManager">
|
||||
<facet type="minecraft" name="Minecraft">
|
||||
<configuration>
|
||||
<autoDetectTypes>
|
||||
<platformType>MIXIN</platformType>
|
||||
<platformType>MCP</platformType>
|
||||
<platformType>FABRIC</platformType>
|
||||
</autoDetectTypes>
|
||||
<projectReimportVersion>1</projectReimportVersion>
|
||||
</configuration>
|
||||
</facet>
|
||||
</component>
|
||||
<component name="McpModuleSettings">
|
||||
<option name="srgType" value="SRG" />
|
||||
</component>
|
||||
</module>
|
||||
@@ -0,0 +1,16 @@
|
||||
<component name="ProjectRunConfigurationManager">
|
||||
<configuration default="false" factoryName="Application" name="Minecraft Client" type="Application">
|
||||
<option name="MAIN_CLASS_NAME" value="net.fabricmc.devlaunchinjector.Main"/>
|
||||
<module name="no-more-render.main"/>
|
||||
<option name="PROGRAM_PARAMETERS" value=""/>
|
||||
<option name="VM_PARAMETERS" value="-Dfabric.dli.config=/home/astatin3/GitHub/no-more-render/.gradle/loom-cache/launch.cfg -Dfabric.dli.env=client -Dfabric.dli.main=net.fabricmc.loader.impl.launch.knot.KnotClient"/>
|
||||
<option name="WORKING_DIRECTORY" value="$PROJECT_DIR$/run/"/>
|
||||
<method v="2">
|
||||
<option enabled="true" name="Make"/>
|
||||
</method>
|
||||
<envs>
|
||||
|
||||
</envs>
|
||||
<shortenClasspath name="ARGS_FILE"/>
|
||||
<classpathModifications/></configuration>
|
||||
</component>
|
||||
@@ -0,0 +1,16 @@
|
||||
<component name="ProjectRunConfigurationManager">
|
||||
<configuration default="false" factoryName="Application" name="Minecraft Server" type="Application">
|
||||
<option name="MAIN_CLASS_NAME" value="net.fabricmc.devlaunchinjector.Main"/>
|
||||
<module name="no-more-render.main"/>
|
||||
<option name="PROGRAM_PARAMETERS" value="nogui"/>
|
||||
<option name="VM_PARAMETERS" value="-Dfabric.dli.config=/home/astatin3/GitHub/no-more-render/.gradle/loom-cache/launch.cfg -Dfabric.dli.env=server -Dfabric.dli.main=net.fabricmc.loader.impl.launch.knot.KnotServer"/>
|
||||
<option name="WORKING_DIRECTORY" value="$PROJECT_DIR$/run/"/>
|
||||
<method v="2">
|
||||
<option enabled="true" name="Make"/>
|
||||
</method>
|
||||
<envs>
|
||||
|
||||
</envs>
|
||||
<shortenClasspath name="ARGS_FILE"/>
|
||||
<classpathModifications><entry exclude="true" path="/home/astatin3/.gradle/caches/modules-2/files-2.1/com.mojang/text2speech/1.17.9/3cad216e3a7f0c19b4b394388bc9ffc446f13b14/text2speech-1.17.9.jar"/><entry exclude="true" path="/home/astatin3/.gradle/caches/modules-2/files-2.1/com.ibm.icu/icu4j/73.2/61ad4ef7f9131fcf6d25c34b817f90d6da06c9e9/icu4j-73.2.jar"/><entry exclude="true" path="/home/astatin3/.gradle/caches/modules-2/files-2.1/org.apache.httpcomponents/httpclient/4.5.13/e5f6cae5ca7ecaac1ec2827a9e2d65ae2869cada/httpclient-4.5.13.jar"/><entry exclude="true" path="/home/astatin3/.gradle/caches/modules-2/files-2.1/org.lwjgl/lwjgl-openal/3.3.3/daada81ceb5fc0c291fbfdd4433cb8d9423577f2/lwjgl-openal-3.3.3.jar"/><entry exclude="true" path="/home/astatin3/.gradle/caches/modules-2/files-2.1/com.mojang/blocklist/1.0.10/5c685c5ffa94c4cd39496c7184c1d122e515ecef/blocklist-1.0.10.jar"/><entry exclude="true" path="/home/astatin3/.gradle/caches/modules-2/files-2.1/org.lwjgl/lwjgl-stb/3.3.3/25dd6161988d7e65f71d5065c99902402ee32746/lwjgl-stb-3.3.3.jar"/><entry exclude="true" path="/home/astatin3/.gradle/caches/modules-2/files-2.1/org.lwjgl/lwjgl-jemalloc/3.3.3/b543467b7ff3c6920539a88ee602d34098628be5/lwjgl-jemalloc-3.3.3.jar"/><entry exclude="true" path="/home/astatin3/.gradle/caches/modules-2/files-2.1/commons-codec/commons-codec/1.16.0/4e3eb3d79888d76b54e28b350915b5dc3919c9de/commons-codec-1.16.0.jar"/><entry exclude="true" path="/home/astatin3/.gradle/caches/modules-2/files-2.1/org.lwjgl/lwjgl/3.3.3/29589b5f87ed335a6c7e7ee6a5775f81f97ecb84/lwjgl-3.3.3.jar"/><entry exclude="true" path="/home/astatin3/.gradle/caches/modules-2/files-2.1/org.lwjgl/lwjgl-opengl/3.3.3/2f6b0147078396a58979125a4c947664e98293a/lwjgl-opengl-3.3.3.jar"/><entry exclude="true" path="/home/astatin3/.gradle/caches/modules-2/files-2.1/org.lwjgl/lwjgl-freetype/3.3.3/a0db6c84a8becc8ca05f9dbfa985edc348a824c7/lwjgl-freetype-3.3.3.jar"/><entry exclude="true" path="/home/astatin3/.gradle/caches/modules-2/files-2.1/org.lwjgl/lwjgl-glfw/3.3.3/efa1eb78c5ccd840e9f329717109b5e892d72f8e/lwjgl-glfw-3.3.3.jar"/><entry exclude="true" path="/home/astatin3/.gradle/caches/modules-2/files-2.1/org.apache.httpcomponents/httpcore/4.4.16/51cf043c87253c9f58b539c9f7e44c8894223850/httpcore-4.4.16.jar"/><entry exclude="true" path="/home/astatin3/.gradle/caches/modules-2/files-2.1/commons-logging/commons-logging/1.2/4bfc12adfe4842bf07b657f0369c4cb522955686/commons-logging-1.2.jar"/><entry exclude="true" path="/home/astatin3/.gradle/caches/modules-2/files-2.1/org.apache.commons/commons-compress/1.26.0/659feffdd12280201c8aacb8f7be94f9a883c824/commons-compress-1.26.0.jar"/><entry exclude="true" path="/home/astatin3/.gradle/caches/modules-2/files-2.1/org.lwjgl/lwjgl-tinyfd/3.3.3/82d755ca94b102e9ca77283b9e2dc46d1b15fbe5/lwjgl-tinyfd-3.3.3.jar"/><entry exclude="true" path="/home/astatin3/.gradle/caches/modules-2/files-2.1/com.mojang/patchy/2.2.10/da05971b07cbb379d002cf7eaec6a2048211fefc/patchy-2.2.10.jar"/><entry exclude="true" path="/home/astatin3/.gradle/caches/modules-2/files-2.1/org.jcraft/jorbis/0.0.17/8872d22b293e8f5d7d56ff92be966e6dc28ebdc6/jorbis-0.0.17.jar"/></classpathModifications></configuration>
|
||||
</component>
|
||||
@@ -0,0 +1,6 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project version="4">
|
||||
<component name="VcsDirectoryMappings">
|
||||
<mapping directory="" vcs="Git" />
|
||||
</component>
|
||||
</project>
|
||||
@@ -0,0 +1,21 @@
|
||||
MIT License
|
||||
|
||||
Copyright (c) 2024 astatin3
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
of this software and associated documentation files (the "Software"), to deal
|
||||
in the Software without restriction, including without limitation the rights
|
||||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
copies of the Software, and to permit persons to whom the Software is
|
||||
furnished to do so, subject to the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be included in all
|
||||
copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
||||
SOFTWARE.
|
||||
@@ -0,0 +1,81 @@
|
||||
# Meteor Addon Template
|
||||
|
||||
A template to allow easy usage of the Meteor Addon API.
|
||||
|
||||
### How to use
|
||||
|
||||
- Clone this project
|
||||
- Use this template to create new modules/commands
|
||||
- Build the executable using the gradle `build` task.
|
||||
- Run the mod with Meteor.
|
||||
|
||||
### Project structure
|
||||
|
||||
```text
|
||||
.
|
||||
│── .github
|
||||
│ ╰── workflows
|
||||
│ │── dev_build.yml
|
||||
│ ╰── pull_request.yml
|
||||
│── gradle
|
||||
│ ╰── wrapper
|
||||
│ │── gradle-wrapper.jar
|
||||
│ ╰── gradle-wrapper.properties
|
||||
│── src
|
||||
│ ╰── main
|
||||
│ │── java
|
||||
│ │ ╰── com
|
||||
│ │ ╰── example
|
||||
│ │ ╰── addon
|
||||
│ │ │── commands
|
||||
│ │ │ ╰── CommandExample
|
||||
│ │ │── hud
|
||||
│ │ │ ╰── HudExample
|
||||
│ │ │── modules
|
||||
│ │ │ ╰── ModuleExample
|
||||
│ │ ╰── AddonTemplate
|
||||
│ ╰── resources
|
||||
│ │── assets
|
||||
│ │ ╰── template
|
||||
│ │ ╰── icon.png
|
||||
│ │── addon-template.mixins.json
|
||||
│ ╰── fabric.mod.json
|
||||
│── .editorconfig
|
||||
│── .gitignore
|
||||
│── build.gradle
|
||||
│── gradle.properties
|
||||
│── gradlew
|
||||
│── gradlew.bat
|
||||
│── LICENSE
|
||||
│── README.md
|
||||
╰── settings.gradle
|
||||
```
|
||||
|
||||
This is the default project structure. Each folder/file has a specific purpose.
|
||||
Here is a brief explanation of the ones you might need to modify:
|
||||
|
||||
- `.github/workflows`: Contains the GitHub Actions configuration files.
|
||||
- `gradle`: Contains the Gradle wrapper files.
|
||||
Edit the `gradle.properties` file to change the version of the Gradle wrapper.
|
||||
- `src/main/java/com/example/addon`: Contains the main class of the addon.
|
||||
Here you can register your custom commands, modules, and HUDs.
|
||||
Edit the `getPackage` method to reflect the package of your addon.
|
||||
- `src/main/resources`: Contains the resources of the addon.
|
||||
- `assets`: Contains the assets of the addon.
|
||||
You can add your own assets here, separated in subfolders.
|
||||
- `template`: Contains the assets of the template.
|
||||
You can replace the `icon.png` file with your own addon icon.
|
||||
Also, rename this folder to reflect the name of your addon.
|
||||
- `addon-template.mixins.json`: Contains the Mixin configuration for the addon.
|
||||
You can add your own mixins in the `client` array.
|
||||
- `fabric.mod.json`: Contains the metadata of the addon.
|
||||
Edit the various fields to reflect the metadata of your addon.
|
||||
- `build.gradle`: Contains the Gradle build script.
|
||||
You can manage the dependencies of the addon here.
|
||||
Remember to keep the `fabric-loom` version up-to-date.
|
||||
- `gradle.properties`: Contains the properties of the Gradle build.
|
||||
These will be used by the build script.
|
||||
- `LICENSE`: Contains the license of the addon.
|
||||
You can edit this file to change the license of your addon.
|
||||
- `README.md`: Contains the documentation of the addon.
|
||||
You can edit this file to reflect the documentation of your addon, and showcase its features.
|
||||
@@ -0,0 +1,59 @@
|
||||
plugins {
|
||||
id "fabric-loom" version "1.7-SNAPSHOT"
|
||||
}
|
||||
|
||||
base {
|
||||
archivesBaseName = project.archives_base_name
|
||||
version = project.mod_version
|
||||
group = project.maven_group
|
||||
}
|
||||
|
||||
repositories {
|
||||
maven {
|
||||
name = "Meteor Dev Releases"
|
||||
url = "https://maven.meteordev.org/releases"
|
||||
}
|
||||
maven {
|
||||
name = "Meteor Dev Snapshots"
|
||||
url = "https://maven.meteordev.org/snapshots"
|
||||
}
|
||||
}
|
||||
|
||||
dependencies {
|
||||
// Fabric
|
||||
minecraft "com.mojang:minecraft:${project.minecraft_version}"
|
||||
mappings "net.fabricmc:yarn:${project.yarn_mappings}:v2"
|
||||
modImplementation "net.fabricmc:fabric-loader:${project.loader_version}"
|
||||
|
||||
// Meteor
|
||||
modImplementation "meteordevelopment:meteor-client:${project.meteor_version}"
|
||||
}
|
||||
|
||||
tasks {
|
||||
processResources {
|
||||
def propertyMap = [
|
||||
"version" : project.version,
|
||||
"mc_version": project.minecraft_version,
|
||||
]
|
||||
|
||||
filesMatching("fabric.mod.json") {
|
||||
expand(propertyMap)
|
||||
}
|
||||
}
|
||||
|
||||
jar {
|
||||
from("LICENSE") {
|
||||
rename { "${it}_${project.base.archivesBaseName}" }
|
||||
}
|
||||
}
|
||||
|
||||
java {
|
||||
sourceCompatibility = JavaVersion.VERSION_21
|
||||
targetCompatibility = JavaVersion.VERSION_21
|
||||
}
|
||||
|
||||
tasks.withType(JavaCompile).configureEach {
|
||||
it.options.encoding = "UTF-8"
|
||||
it.options.release = 21
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,14 @@
|
||||
{
|
||||
"mappings": {
|
||||
"com/example/addon/mixin/MixinGameRenderer": {
|
||||
"addSelectableChild": "Lnet/minecraft/class_437;method_25429(Lnet/minecraft/class_364;)Lnet/minecraft/class_364;"
|
||||
}
|
||||
},
|
||||
"data": {
|
||||
"named:intermediary": {
|
||||
"com/example/addon/mixin/MixinGameRenderer": {
|
||||
"addSelectableChild": "Lnet/minecraft/class_437;method_25429(Lnet/minecraft/class_364;)Lnet/minecraft/class_364;"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1 @@
|
||||
v1 named intermediary
|
||||
@@ -0,0 +1,11 @@
|
||||
{
|
||||
"required": true,
|
||||
"package": "com.example.addon.mixin",
|
||||
"compatibilityLevel": "JAVA_21",
|
||||
"client": [
|
||||
"MixinGameRenderer"
|
||||
],
|
||||
"injectors": {
|
||||
"defaultRequire": 1
|
||||
}
|
||||
}
|
||||
|
After Width: | Height: | Size: 2.1 KiB |
@@ -0,0 +1,31 @@
|
||||
{
|
||||
"schemaVersion": 1,
|
||||
"id": "addon-template",
|
||||
"version": "0.1.0",
|
||||
"name": "Addon Template",
|
||||
"description": "An addon template for Meteor Client addons.",
|
||||
"authors": [
|
||||
"seasnail"
|
||||
],
|
||||
"contact": {
|
||||
"repo": "https://github.com/MeteorDevelopment/meteor-addon-template"
|
||||
},
|
||||
"icon": "assets/template/icon.png",
|
||||
"environment": "client",
|
||||
"entrypoints": {
|
||||
"meteor": [
|
||||
"com.example.addon.AddonTemplate"
|
||||
]
|
||||
},
|
||||
"mixins": [
|
||||
"addon-template.mixins.json"
|
||||
],
|
||||
"custom": {
|
||||
"meteor-client:color": "225,25,25"
|
||||
},
|
||||
"depends": {
|
||||
"java": ">=21",
|
||||
"minecraft": ["1.21"],
|
||||
"meteor-client": "*"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,2 @@
|
||||
Manifest-Version: 1.0
|
||||
|
||||
@@ -0,0 +1,2 @@
|
||||
Manifest-Version: 1.0
|
||||
|
||||
@@ -0,0 +1,16 @@
|
||||
org.gradle.jvmargs=-Xmx2G
|
||||
|
||||
# Fabric Properties (https://fabricmc.net/develop)
|
||||
minecraft_version=1.21
|
||||
yarn_mappings=1.21+build.8
|
||||
loader_version=0.15.11
|
||||
|
||||
# Mod Properties
|
||||
mod_version=0.1.0
|
||||
maven_group=com.example
|
||||
archives_base_name=addon-template
|
||||
|
||||
# Dependencies
|
||||
|
||||
# Meteor (https://maven.meteordev.org)
|
||||
meteor_version=0.5.8-SNAPSHOT
|
||||
@@ -0,0 +1,7 @@
|
||||
distributionBase=GRADLE_USER_HOME
|
||||
distributionPath=wrapper/dists
|
||||
distributionUrl=https\://services.gradle.org/distributions/gradle-8.8-bin.zip
|
||||
networkTimeout=10000
|
||||
validateDistributionUrl=true
|
||||
zipStoreBase=GRADLE_USER_HOME
|
||||
zipStorePath=wrapper/dists
|
||||
@@ -0,0 +1,244 @@
|
||||
#!/bin/sh
|
||||
|
||||
#
|
||||
# Copyright © 2015-2021 the original authors.
|
||||
#
|
||||
# Licensed under the Apache License, Version 2.0 (the "License");
|
||||
# you may not use this file except in compliance with the License.
|
||||
# You may obtain a copy of the License at
|
||||
#
|
||||
# https://www.apache.org/licenses/LICENSE-2.0
|
||||
#
|
||||
# Unless required by applicable law or agreed to in writing, software
|
||||
# distributed under the License is distributed on an "AS IS" BASIS,
|
||||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
# See the License for the specific language governing permissions and
|
||||
# limitations under the License.
|
||||
#
|
||||
|
||||
##############################################################################
|
||||
#
|
||||
# Gradle start up script for POSIX generated by Gradle.
|
||||
#
|
||||
# Important for running:
|
||||
#
|
||||
# (1) You need a POSIX-compliant shell to run this script. If your /bin/sh is
|
||||
# noncompliant, but you have some other compliant shell such as ksh or
|
||||
# bash, then to run this script, type that shell name before the whole
|
||||
# command line, like:
|
||||
#
|
||||
# ksh Gradle
|
||||
#
|
||||
# Busybox and similar reduced shells will NOT work, because this script
|
||||
# requires all of these POSIX shell features:
|
||||
# * functions;
|
||||
# * expansions «$var», «${var}», «${var:-default}», «${var+SET}»,
|
||||
# «${var#prefix}», «${var%suffix}», and «$( cmd )»;
|
||||
# * compound commands having a testable exit status, especially «case»;
|
||||
# * various built-in commands including «command», «set», and «ulimit».
|
||||
#
|
||||
# Important for patching:
|
||||
#
|
||||
# (2) This script targets any POSIX shell, so it avoids extensions provided
|
||||
# by Bash, Ksh, etc; in particular arrays are avoided.
|
||||
#
|
||||
# The "traditional" practice of packing multiple parameters into a
|
||||
# space-separated string is a well documented source of bugs and security
|
||||
# problems, so this is (mostly) avoided, by progressively accumulating
|
||||
# options in "$@", and eventually passing that to Java.
|
||||
#
|
||||
# Where the inherited environment variables (DEFAULT_JVM_OPTS, JAVA_OPTS,
|
||||
# and GRADLE_OPTS) rely on word-splitting, this is performed explicitly;
|
||||
# see the in-line comments for details.
|
||||
#
|
||||
# There are tweaks for specific operating systems such as AIX, CygWin,
|
||||
# Darwin, MinGW, and NonStop.
|
||||
#
|
||||
# (3) This script is generated from the Groovy template
|
||||
# https://github.com/gradle/gradle/blob/HEAD/subprojects/plugins/src/main/resources/org/gradle/api/internal/plugins/unixStartScript.txt
|
||||
# within the Gradle project.
|
||||
#
|
||||
# You can find Gradle at https://github.com/gradle/gradle/.
|
||||
#
|
||||
##############################################################################
|
||||
|
||||
# Attempt to set APP_HOME
|
||||
|
||||
# Resolve links: $0 may be a link
|
||||
app_path=$0
|
||||
|
||||
# Need this for daisy-chained symlinks.
|
||||
while
|
||||
APP_HOME=${app_path%"${app_path##*/}"} # leaves a trailing /; empty if no leading path
|
||||
[ -h "$app_path" ]
|
||||
do
|
||||
ls=$( ls -ld "$app_path" )
|
||||
link=${ls#*' -> '}
|
||||
case $link in #(
|
||||
/*) app_path=$link ;; #(
|
||||
*) app_path=$APP_HOME$link ;;
|
||||
esac
|
||||
done
|
||||
|
||||
# This is normally unused
|
||||
# shellcheck disable=SC2034
|
||||
APP_BASE_NAME=${0##*/}
|
||||
APP_HOME=$( cd "${APP_HOME:-./}" && pwd -P ) || exit
|
||||
|
||||
# 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*)
|
||||
# In POSIX sh, ulimit -H is undefined. That's why the result is checked to see if it worked.
|
||||
# shellcheck disable=SC3045
|
||||
MAX_FD=$( ulimit -H -n ) ||
|
||||
warn "Could not query maximum file descriptor limit"
|
||||
esac
|
||||
case $MAX_FD in #(
|
||||
'' | soft) :;; #(
|
||||
*)
|
||||
# In POSIX sh, ulimit -n is undefined. That's why the result is checked to see if it worked.
|
||||
# shellcheck disable=SC3045
|
||||
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 \
|
||||
"$@"
|
||||
|
||||
# Stop when "xargs" is not available.
|
||||
if ! command -v xargs >/dev/null 2>&1
|
||||
then
|
||||
die "xargs is not available"
|
||||
fi
|
||||
|
||||
# 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" "$@"
|
||||
@@ -0,0 +1,92 @@
|
||||
@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=.
|
||||
@rem This is normally unused
|
||||
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% equ 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% equ 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!
|
||||
set EXIT_CODE=%ERRORLEVEL%
|
||||
if %EXIT_CODE% equ 0 set EXIT_CODE=1
|
||||
if not ""=="%GRADLE_EXIT_CONSOLE%" exit %EXIT_CODE%
|
||||
exit /b %EXIT_CODE%
|
||||
|
||||
:mainEnd
|
||||
if "%OS%"=="Windows_NT" endlocal
|
||||
|
||||
:omega
|
||||
@@ -0,0 +1,143 @@
|
||||
---- Minecraft Crash Report ----
|
||||
// But it works on my machine.
|
||||
|
||||
Time: 2024-07-10 21:23:25
|
||||
Description: Initializing game
|
||||
|
||||
java.lang.BootstrapMethodError: java.lang.RuntimeException: Mixin transformation of net.minecraft.client.render.GameRenderer failed
|
||||
at net.minecraft.client.render.RenderPhase.<clinit>(RenderPhase.java:126)
|
||||
at net.minecraft.client.font.TextRenderLayerSet.of(TextRenderLayerSet.java:22)
|
||||
at net.minecraft.client.font.FontStorage.getGlyphRenderer(FontStorage.java:176)
|
||||
at net.minecraft.client.font.BuiltinEmptyGlyph.bake(BuiltinEmptyGlyph.java:53)
|
||||
at net.minecraft.client.font.FontStorage.clear(FontStorage.java:65)
|
||||
at net.minecraft.client.font.FontStorage.setActiveFilters(FontStorage.java:54)
|
||||
at net.minecraft.client.font.FontStorage.setFonts(FontStorage.java:49)
|
||||
at net.minecraft.client.font.FontManager.method_27540(FontManager.java:66)
|
||||
at net.minecraft.util.Util.make(Util.java:537)
|
||||
at net.minecraft.client.font.FontManager.<init>(FontManager.java:66)
|
||||
at net.minecraft.client.MinecraftClient.<init>(MinecraftClient.java:558)
|
||||
at net.minecraft.client.main.Main.main(Main.java:239)
|
||||
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)
|
||||
Caused by: java.lang.RuntimeException: Mixin transformation of net.minecraft.client.render.GameRenderer failed
|
||||
at net.fabricmc.loader.impl.launch.knot.KnotClassDelegate.getPostMixinClassByteArray(KnotClassDelegate.java:427)
|
||||
at net.fabricmc.loader.impl.launch.knot.KnotClassDelegate.tryLoadClass(KnotClassDelegate.java:323)
|
||||
at net.fabricmc.loader.impl.launch.knot.KnotClassDelegate.loadClass(KnotClassDelegate.java:218)
|
||||
at net.fabricmc.loader.impl.launch.knot.KnotClassLoader.loadClass(KnotClassLoader.java:119)
|
||||
at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:525)
|
||||
... 16 more
|
||||
Caused by: org.spongepowered.asm.mixin.transformer.throwables.MixinTransformerError: An unexpected critical error was encountered
|
||||
at org.spongepowered.asm.mixin.transformer.MixinProcessor.applyMixins(MixinProcessor.java:392)
|
||||
at org.spongepowered.asm.mixin.transformer.MixinTransformer.transformClass(MixinTransformer.java:234)
|
||||
at org.spongepowered.asm.mixin.transformer.MixinTransformer.transformClassBytes(MixinTransformer.java:202)
|
||||
at meteordevelopment.meteorclient.asm.Asm$Transformer.transformClassBytes(Asm.java:104)
|
||||
at net.fabricmc.loader.impl.launch.knot.KnotClassDelegate.getPostMixinClassByteArray(KnotClassDelegate.java:422)
|
||||
... 20 more
|
||||
Caused by: org.spongepowered.asm.mixin.throwables.MixinApplyError: Mixin [addon-template.mixins.json:ExampleMixin from mod addon-template] from phase [DEFAULT] in config [addon-template.mixins.json] FAILED during APPLY
|
||||
at org.spongepowered.asm.mixin.transformer.MixinProcessor.handleMixinError(MixinProcessor.java:638)
|
||||
at org.spongepowered.asm.mixin.transformer.MixinProcessor.handleMixinApplyError(MixinProcessor.java:589)
|
||||
at org.spongepowered.asm.mixin.transformer.MixinProcessor.applyMixins(MixinProcessor.java:379)
|
||||
... 24 more
|
||||
Caused by: org.spongepowered.asm.mixin.injection.throwables.InvalidInjectionException: Critical injection failure: @Inject annotation on shouldRender could not find any targets matching 'renderLevel' or 'renderItemActivationAnimation' in net.minecraft.client.render.GameRenderer. No refMap loaded. [PREINJECT Applicator Phase -> addon-template.mixins.json:ExampleMixin from mod addon-template -> Prepare Injections -> -> handler$zhp000$addon-template$shouldRender(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V -> Parse]
|
||||
at org.spongepowered.asm.mixin.injection.struct.InjectionInfo.validateTargets(InjectionInfo.java:658)
|
||||
at org.spongepowered.asm.mixin.injection.struct.InjectionInfo.findTargets(InjectionInfo.java:589)
|
||||
at org.spongepowered.asm.mixin.injection.struct.InjectionInfo.readAnnotation(InjectionInfo.java:330)
|
||||
at org.spongepowered.asm.mixin.injection.struct.InjectionInfo.<init>(InjectionInfo.java:316)
|
||||
at org.spongepowered.asm.mixin.injection.struct.InjectionInfo.<init>(InjectionInfo.java:308)
|
||||
at org.spongepowered.asm.mixin.injection.struct.CallbackInjectionInfo.<init>(CallbackInjectionInfo.java:46)
|
||||
at java.base/jdk.internal.reflect.DirectConstructorHandleAccessor.newInstance(DirectConstructorHandleAccessor.java:62)
|
||||
at java.base/java.lang.reflect.Constructor.newInstanceWithCaller(Constructor.java:502)
|
||||
at java.base/java.lang.reflect.Constructor.newInstance(Constructor.java:486)
|
||||
at org.spongepowered.asm.mixin.injection.struct.InjectionInfo$InjectorEntry.create(InjectionInfo.java:149)
|
||||
at org.spongepowered.asm.mixin.injection.struct.InjectionInfo.parse(InjectionInfo.java:710)
|
||||
at org.spongepowered.asm.mixin.transformer.MixinTargetContext.prepareInjections(MixinTargetContext.java:1329)
|
||||
at org.spongepowered.asm.mixin.transformer.MixinApplicatorStandard.prepareInjections(MixinApplicatorStandard.java:1053)
|
||||
at org.spongepowered.asm.mixin.transformer.MixinApplicatorStandard.applyMixin(MixinApplicatorStandard.java:395)
|
||||
at org.spongepowered.asm.mixin.transformer.MixinApplicatorStandard.apply(MixinApplicatorStandard.java:327)
|
||||
at org.spongepowered.asm.mixin.transformer.TargetClassContext.apply(TargetClassContext.java:422)
|
||||
at org.spongepowered.asm.mixin.transformer.TargetClassContext.applyMixins(TargetClassContext.java:403)
|
||||
at org.spongepowered.asm.mixin.transformer.MixinProcessor.applyMixins(MixinProcessor.java:363)
|
||||
... 24 more
|
||||
|
||||
|
||||
A detailed walkthrough of the error, its code path and all known details is as follows:
|
||||
---------------------------------------------------------------------------------------
|
||||
|
||||
-- Head --
|
||||
Thread: Render thread
|
||||
Stacktrace:
|
||||
at net.minecraft.client.render.RenderPhase.<clinit>(RenderPhase.java:126)
|
||||
at net.minecraft.client.font.TextRenderLayerSet.of(TextRenderLayerSet.java:22)
|
||||
at net.minecraft.client.font.FontStorage.getGlyphRenderer(FontStorage.java:176)
|
||||
at net.minecraft.client.font.BuiltinEmptyGlyph.bake(BuiltinEmptyGlyph.java:53)
|
||||
at net.minecraft.client.font.FontStorage.clear(FontStorage.java:65)
|
||||
at net.minecraft.client.font.FontStorage.setActiveFilters(FontStorage.java:54)
|
||||
at net.minecraft.client.font.FontStorage.setFonts(FontStorage.java:49)
|
||||
at net.minecraft.client.font.FontManager.method_27540(FontManager.java:66)
|
||||
at net.minecraft.util.Util.make(Util.java:537)
|
||||
at net.minecraft.client.font.FontManager.<init>(FontManager.java:66)
|
||||
at net.minecraft.client.MinecraftClient.<init>(MinecraftClient.java:558)
|
||||
|
||||
-- Initialization --
|
||||
Details:
|
||||
Modules:
|
||||
Stacktrace:
|
||||
at net.minecraft.client.main.Main.main(Main.java:239)
|
||||
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.21
|
||||
Minecraft Version ID: 1.21
|
||||
Operating System: Linux (amd64) version 6.8.9-arch1-2
|
||||
Java Version: 22, N/A
|
||||
Java VM Version: OpenJDK 64-Bit Server VM (mixed mode, sharing), Oracle Corporation
|
||||
Memory: 53430040 bytes (50 MiB) / 505413632 bytes (482 MiB) up to 4173332480 bytes (3980 MiB)
|
||||
CPUs: 12
|
||||
Processor Vendor: GenuineIntel
|
||||
Processor Name: Intel(R) Core(TM) i5-10600K CPU @ 4.10GHz
|
||||
Identifier: Intel64 Family 6 Model 165 Stepping 5
|
||||
Microarchitecture: Comet Lake
|
||||
Frequency (GHz): 4.10
|
||||
Number of physical packages: 1
|
||||
Number of physical CPUs: 6
|
||||
Number of logical CPUs: 12
|
||||
Graphics card #0 name: GA104 [GeForce RTX 3070]
|
||||
Graphics card #0 vendor: NVIDIA Corporation (0x10de)
|
||||
Graphics card #0 VRAM (MiB): 288.00
|
||||
Graphics card #0 deviceId: 0x2484
|
||||
Graphics card #0 versionInfo: unknown
|
||||
Virtual memory max (MiB): 12052.49
|
||||
Virtual memory used (MiB): 13403.04
|
||||
Swap memory total (MiB): 4096.00
|
||||
Swap memory used (MiB): 3322.68
|
||||
Space in storage for jna.tmpdir (MiB): <path not set>
|
||||
Space in storage for org.lwjgl.system.SharedLibraryExtractPath (MiB): <path not set>
|
||||
Space in storage for io.netty.native.workdir (MiB): <path not set>
|
||||
Space in storage for java.io.tmpdir (MiB): available: 7873.58, total: 7956.49
|
||||
Space in storage for workdir (MiB): available: 333780.72, total: 467346.75
|
||||
JVM Flags: 0 total;
|
||||
Launched Version: Fabric
|
||||
Backend library: LWJGL version 3.3.3-snapshot
|
||||
Backend API: NV174 GL version 4.3 (Core Profile) Mesa 24.0.7-arch1.3, Mesa
|
||||
Window size: <not initialized>
|
||||
GFLW Platform: x11
|
||||
GL Caps: Using framebuffer using OpenGL 3.2
|
||||
GL debug messages:
|
||||
Is Modded: Definitely; Client brand changed to 'fabric'
|
||||
Universe: 404
|
||||
Type: Client (map_client.txt)
|
||||
Locale: en_US
|
||||
System encoding: UTF-8
|
||||
File encoding: UTF-8
|
||||
CPU: 12x Intel(R) Core(TM) i5-10600K CPU @ 4.10GHz
|
||||
|
||||
-- Meteor Client --
|
||||
|
||||
Version: 0.5.8
|
||||
Dev Build: 2125
|
||||
@@ -0,0 +1,143 @@
|
||||
---- Minecraft Crash Report ----
|
||||
// Don't be sad. I'll do better next time, I promise!
|
||||
|
||||
Time: 2024-07-10 21:24:01
|
||||
Description: Initializing game
|
||||
|
||||
java.lang.BootstrapMethodError: java.lang.RuntimeException: Mixin transformation of net.minecraft.client.render.GameRenderer failed
|
||||
at net.minecraft.client.render.RenderPhase.<clinit>(RenderPhase.java:126)
|
||||
at net.minecraft.client.font.TextRenderLayerSet.of(TextRenderLayerSet.java:22)
|
||||
at net.minecraft.client.font.FontStorage.getGlyphRenderer(FontStorage.java:176)
|
||||
at net.minecraft.client.font.BuiltinEmptyGlyph.bake(BuiltinEmptyGlyph.java:53)
|
||||
at net.minecraft.client.font.FontStorage.clear(FontStorage.java:65)
|
||||
at net.minecraft.client.font.FontStorage.setActiveFilters(FontStorage.java:54)
|
||||
at net.minecraft.client.font.FontStorage.setFonts(FontStorage.java:49)
|
||||
at net.minecraft.client.font.FontManager.method_27540(FontManager.java:66)
|
||||
at net.minecraft.util.Util.make(Util.java:537)
|
||||
at net.minecraft.client.font.FontManager.<init>(FontManager.java:66)
|
||||
at net.minecraft.client.MinecraftClient.<init>(MinecraftClient.java:558)
|
||||
at net.minecraft.client.main.Main.main(Main.java:239)
|
||||
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)
|
||||
Caused by: java.lang.RuntimeException: Mixin transformation of net.minecraft.client.render.GameRenderer failed
|
||||
at net.fabricmc.loader.impl.launch.knot.KnotClassDelegate.getPostMixinClassByteArray(KnotClassDelegate.java:427)
|
||||
at net.fabricmc.loader.impl.launch.knot.KnotClassDelegate.tryLoadClass(KnotClassDelegate.java:323)
|
||||
at net.fabricmc.loader.impl.launch.knot.KnotClassDelegate.loadClass(KnotClassDelegate.java:218)
|
||||
at net.fabricmc.loader.impl.launch.knot.KnotClassLoader.loadClass(KnotClassLoader.java:119)
|
||||
at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:525)
|
||||
... 16 more
|
||||
Caused by: org.spongepowered.asm.mixin.transformer.throwables.MixinTransformerError: An unexpected critical error was encountered
|
||||
at org.spongepowered.asm.mixin.transformer.MixinProcessor.applyMixins(MixinProcessor.java:392)
|
||||
at org.spongepowered.asm.mixin.transformer.MixinTransformer.transformClass(MixinTransformer.java:234)
|
||||
at org.spongepowered.asm.mixin.transformer.MixinTransformer.transformClassBytes(MixinTransformer.java:202)
|
||||
at meteordevelopment.meteorclient.asm.Asm$Transformer.transformClassBytes(Asm.java:104)
|
||||
at net.fabricmc.loader.impl.launch.knot.KnotClassDelegate.getPostMixinClassByteArray(KnotClassDelegate.java:422)
|
||||
... 20 more
|
||||
Caused by: org.spongepowered.asm.mixin.throwables.MixinApplyError: Mixin [addon-template.mixins.json:ExampleMixin from mod addon-template] from phase [DEFAULT] in config [addon-template.mixins.json] FAILED during APPLY
|
||||
at org.spongepowered.asm.mixin.transformer.MixinProcessor.handleMixinError(MixinProcessor.java:638)
|
||||
at org.spongepowered.asm.mixin.transformer.MixinProcessor.handleMixinApplyError(MixinProcessor.java:589)
|
||||
at org.spongepowered.asm.mixin.transformer.MixinProcessor.applyMixins(MixinProcessor.java:379)
|
||||
... 24 more
|
||||
Caused by: org.spongepowered.asm.mixin.injection.throwables.InvalidInjectionException: Critical injection failure: @Inject annotation on shouldRender could not find any targets matching 'renderLevel' or 'renderItemActivationAnimation' in net.minecraft.client.render.GameRenderer. No refMap loaded. [PREINJECT Applicator Phase -> addon-template.mixins.json:ExampleMixin from mod addon-template -> Prepare Injections -> -> handler$zbb000$addon-template$shouldRender(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V -> Parse]
|
||||
at org.spongepowered.asm.mixin.injection.struct.InjectionInfo.validateTargets(InjectionInfo.java:658)
|
||||
at org.spongepowered.asm.mixin.injection.struct.InjectionInfo.findTargets(InjectionInfo.java:589)
|
||||
at org.spongepowered.asm.mixin.injection.struct.InjectionInfo.readAnnotation(InjectionInfo.java:330)
|
||||
at org.spongepowered.asm.mixin.injection.struct.InjectionInfo.<init>(InjectionInfo.java:316)
|
||||
at org.spongepowered.asm.mixin.injection.struct.InjectionInfo.<init>(InjectionInfo.java:308)
|
||||
at org.spongepowered.asm.mixin.injection.struct.CallbackInjectionInfo.<init>(CallbackInjectionInfo.java:46)
|
||||
at java.base/jdk.internal.reflect.DirectConstructorHandleAccessor.newInstance(DirectConstructorHandleAccessor.java:62)
|
||||
at java.base/java.lang.reflect.Constructor.newInstanceWithCaller(Constructor.java:502)
|
||||
at java.base/java.lang.reflect.Constructor.newInstance(Constructor.java:486)
|
||||
at org.spongepowered.asm.mixin.injection.struct.InjectionInfo$InjectorEntry.create(InjectionInfo.java:149)
|
||||
at org.spongepowered.asm.mixin.injection.struct.InjectionInfo.parse(InjectionInfo.java:710)
|
||||
at org.spongepowered.asm.mixin.transformer.MixinTargetContext.prepareInjections(MixinTargetContext.java:1329)
|
||||
at org.spongepowered.asm.mixin.transformer.MixinApplicatorStandard.prepareInjections(MixinApplicatorStandard.java:1053)
|
||||
at org.spongepowered.asm.mixin.transformer.MixinApplicatorStandard.applyMixin(MixinApplicatorStandard.java:395)
|
||||
at org.spongepowered.asm.mixin.transformer.MixinApplicatorStandard.apply(MixinApplicatorStandard.java:327)
|
||||
at org.spongepowered.asm.mixin.transformer.TargetClassContext.apply(TargetClassContext.java:422)
|
||||
at org.spongepowered.asm.mixin.transformer.TargetClassContext.applyMixins(TargetClassContext.java:403)
|
||||
at org.spongepowered.asm.mixin.transformer.MixinProcessor.applyMixins(MixinProcessor.java:363)
|
||||
... 24 more
|
||||
|
||||
|
||||
A detailed walkthrough of the error, its code path and all known details is as follows:
|
||||
---------------------------------------------------------------------------------------
|
||||
|
||||
-- Head --
|
||||
Thread: Render thread
|
||||
Stacktrace:
|
||||
at net.minecraft.client.render.RenderPhase.<clinit>(RenderPhase.java:126)
|
||||
at net.minecraft.client.font.TextRenderLayerSet.of(TextRenderLayerSet.java:22)
|
||||
at net.minecraft.client.font.FontStorage.getGlyphRenderer(FontStorage.java:176)
|
||||
at net.minecraft.client.font.BuiltinEmptyGlyph.bake(BuiltinEmptyGlyph.java:53)
|
||||
at net.minecraft.client.font.FontStorage.clear(FontStorage.java:65)
|
||||
at net.minecraft.client.font.FontStorage.setActiveFilters(FontStorage.java:54)
|
||||
at net.minecraft.client.font.FontStorage.setFonts(FontStorage.java:49)
|
||||
at net.minecraft.client.font.FontManager.method_27540(FontManager.java:66)
|
||||
at net.minecraft.util.Util.make(Util.java:537)
|
||||
at net.minecraft.client.font.FontManager.<init>(FontManager.java:66)
|
||||
at net.minecraft.client.MinecraftClient.<init>(MinecraftClient.java:558)
|
||||
|
||||
-- Initialization --
|
||||
Details:
|
||||
Modules:
|
||||
Stacktrace:
|
||||
at net.minecraft.client.main.Main.main(Main.java:239)
|
||||
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.21
|
||||
Minecraft Version ID: 1.21
|
||||
Operating System: Linux (amd64) version 6.8.9-arch1-2
|
||||
Java Version: 22, N/A
|
||||
Java VM Version: OpenJDK 64-Bit Server VM (mixed mode, sharing), Oracle Corporation
|
||||
Memory: 141236456 bytes (134 MiB) / 478150656 bytes (456 MiB) up to 4173332480 bytes (3980 MiB)
|
||||
CPUs: 12
|
||||
Processor Vendor: GenuineIntel
|
||||
Processor Name: Intel(R) Core(TM) i5-10600K CPU @ 4.10GHz
|
||||
Identifier: Intel64 Family 6 Model 165 Stepping 5
|
||||
Microarchitecture: Comet Lake
|
||||
Frequency (GHz): 4.10
|
||||
Number of physical packages: 1
|
||||
Number of physical CPUs: 6
|
||||
Number of logical CPUs: 12
|
||||
Graphics card #0 name: GA104 [GeForce RTX 3070]
|
||||
Graphics card #0 vendor: NVIDIA Corporation (0x10de)
|
||||
Graphics card #0 VRAM (MiB): 288.00
|
||||
Graphics card #0 deviceId: 0x2484
|
||||
Graphics card #0 versionInfo: unknown
|
||||
Virtual memory max (MiB): 12052.49
|
||||
Virtual memory used (MiB): 13386.53
|
||||
Swap memory total (MiB): 4096.00
|
||||
Swap memory used (MiB): 3316.18
|
||||
Space in storage for jna.tmpdir (MiB): <path not set>
|
||||
Space in storage for org.lwjgl.system.SharedLibraryExtractPath (MiB): <path not set>
|
||||
Space in storage for io.netty.native.workdir (MiB): <path not set>
|
||||
Space in storage for java.io.tmpdir (MiB): available: 7873.54, total: 7956.49
|
||||
Space in storage for workdir (MiB): available: 333780.56, total: 467346.75
|
||||
JVM Flags: 0 total;
|
||||
Launched Version: Fabric
|
||||
Backend library: LWJGL version 3.3.3-snapshot
|
||||
Backend API: NV174 GL version 4.3 (Core Profile) Mesa 24.0.7-arch1.3, Mesa
|
||||
Window size: <not initialized>
|
||||
GFLW Platform: x11
|
||||
GL Caps: Using framebuffer using OpenGL 3.2
|
||||
GL debug messages:
|
||||
Is Modded: Definitely; Client brand changed to 'fabric'
|
||||
Universe: 404
|
||||
Type: Client (map_client.txt)
|
||||
Locale: en_US
|
||||
System encoding: UTF-8
|
||||
File encoding: UTF-8
|
||||
CPU: 12x Intel(R) Core(TM) i5-10600K CPU @ 4.10GHz
|
||||
|
||||
-- Meteor Client --
|
||||
|
||||
Version: 0.5.8
|
||||
Dev Build: 2125
|
||||
@@ -0,0 +1,128 @@
|
||||
---- Minecraft Crash Report ----
|
||||
// This is a token for 1 free hug. Redeem at your nearest Mojangsta: [~~HUG~~]
|
||||
|
||||
Time: 2024-07-10 21:25:14
|
||||
Description: Initializing game
|
||||
|
||||
java.lang.BootstrapMethodError: java.lang.RuntimeException: Mixin transformation of net.minecraft.client.render.GameRenderer failed
|
||||
at net.minecraft.client.render.RenderPhase.<clinit>(RenderPhase.java:126)
|
||||
at net.minecraft.client.font.TextRenderLayerSet.of(TextRenderLayerSet.java:22)
|
||||
at net.minecraft.client.font.FontStorage.getGlyphRenderer(FontStorage.java:176)
|
||||
at net.minecraft.client.font.BuiltinEmptyGlyph.bake(BuiltinEmptyGlyph.java:53)
|
||||
at net.minecraft.client.font.FontStorage.clear(FontStorage.java:65)
|
||||
at net.minecraft.client.font.FontStorage.setActiveFilters(FontStorage.java:54)
|
||||
at net.minecraft.client.font.FontStorage.setFonts(FontStorage.java:49)
|
||||
at net.minecraft.client.font.FontManager.method_27540(FontManager.java:66)
|
||||
at net.minecraft.util.Util.make(Util.java:537)
|
||||
at net.minecraft.client.font.FontManager.<init>(FontManager.java:66)
|
||||
at net.minecraft.client.MinecraftClient.<init>(MinecraftClient.java:558)
|
||||
at net.minecraft.client.main.Main.main(Main.java:239)
|
||||
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)
|
||||
Caused by: java.lang.RuntimeException: Mixin transformation of net.minecraft.client.render.GameRenderer failed
|
||||
at net.fabricmc.loader.impl.launch.knot.KnotClassDelegate.getPostMixinClassByteArray(KnotClassDelegate.java:427)
|
||||
at net.fabricmc.loader.impl.launch.knot.KnotClassDelegate.tryLoadClass(KnotClassDelegate.java:323)
|
||||
at net.fabricmc.loader.impl.launch.knot.KnotClassDelegate.loadClass(KnotClassDelegate.java:218)
|
||||
at net.fabricmc.loader.impl.launch.knot.KnotClassLoader.loadClass(KnotClassLoader.java:119)
|
||||
at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:525)
|
||||
... 16 more
|
||||
Caused by: org.spongepowered.asm.mixin.transformer.throwables.MixinTransformerError: An unexpected critical error was encountered
|
||||
at org.spongepowered.asm.mixin.transformer.MixinProcessor.applyMixins(MixinProcessor.java:392)
|
||||
at org.spongepowered.asm.mixin.transformer.MixinTransformer.transformClass(MixinTransformer.java:234)
|
||||
at org.spongepowered.asm.mixin.transformer.MixinTransformer.transformClassBytes(MixinTransformer.java:202)
|
||||
at meteordevelopment.meteorclient.asm.Asm$Transformer.transformClassBytes(Asm.java:104)
|
||||
at net.fabricmc.loader.impl.launch.knot.KnotClassDelegate.getPostMixinClassByteArray(KnotClassDelegate.java:422)
|
||||
... 20 more
|
||||
Caused by: org.spongepowered.asm.mixin.injection.throwables.InjectionError: Critical injection failure: Callback method skipRendering(Z)Z in addon-template.mixins.json:ExampleMixin from mod addon-template failed injection check, (0/1) succeeded. Scanned 1 target(s). No refMap loaded.
|
||||
at org.spongepowered.asm.mixin.injection.struct.InjectionInfo.postInject(InjectionInfo.java:468)
|
||||
at org.spongepowered.asm.mixin.transformer.MixinTargetContext.applyInjections(MixinTargetContext.java:1384)
|
||||
at org.spongepowered.asm.mixin.transformer.MixinApplicatorStandard.applyInjections(MixinApplicatorStandard.java:1062)
|
||||
at org.spongepowered.asm.mixin.transformer.MixinApplicatorStandard.applyMixin(MixinApplicatorStandard.java:402)
|
||||
at org.spongepowered.asm.mixin.transformer.MixinApplicatorStandard.apply(MixinApplicatorStandard.java:327)
|
||||
at org.spongepowered.asm.mixin.transformer.TargetClassContext.apply(TargetClassContext.java:422)
|
||||
at org.spongepowered.asm.mixin.transformer.TargetClassContext.applyMixins(TargetClassContext.java:403)
|
||||
at org.spongepowered.asm.mixin.transformer.MixinProcessor.applyMixins(MixinProcessor.java:363)
|
||||
... 24 more
|
||||
|
||||
|
||||
A detailed walkthrough of the error, its code path and all known details is as follows:
|
||||
---------------------------------------------------------------------------------------
|
||||
|
||||
-- Head --
|
||||
Thread: Render thread
|
||||
Stacktrace:
|
||||
at net.minecraft.client.render.RenderPhase.<clinit>(RenderPhase.java:126)
|
||||
at net.minecraft.client.font.TextRenderLayerSet.of(TextRenderLayerSet.java:22)
|
||||
at net.minecraft.client.font.FontStorage.getGlyphRenderer(FontStorage.java:176)
|
||||
at net.minecraft.client.font.BuiltinEmptyGlyph.bake(BuiltinEmptyGlyph.java:53)
|
||||
at net.minecraft.client.font.FontStorage.clear(FontStorage.java:65)
|
||||
at net.minecraft.client.font.FontStorage.setActiveFilters(FontStorage.java:54)
|
||||
at net.minecraft.client.font.FontStorage.setFonts(FontStorage.java:49)
|
||||
at net.minecraft.client.font.FontManager.method_27540(FontManager.java:66)
|
||||
at net.minecraft.util.Util.make(Util.java:537)
|
||||
at net.minecraft.client.font.FontManager.<init>(FontManager.java:66)
|
||||
at net.minecraft.client.MinecraftClient.<init>(MinecraftClient.java:558)
|
||||
|
||||
-- Initialization --
|
||||
Details:
|
||||
Modules:
|
||||
Stacktrace:
|
||||
at net.minecraft.client.main.Main.main(Main.java:239)
|
||||
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.21
|
||||
Minecraft Version ID: 1.21
|
||||
Operating System: Linux (amd64) version 6.8.9-arch1-2
|
||||
Java Version: 22, N/A
|
||||
Java VM Version: OpenJDK 64-Bit Server VM (mixed mode, sharing), Oracle Corporation
|
||||
Memory: 162152120 bytes (154 MiB) / 484442112 bytes (462 MiB) up to 4173332480 bytes (3980 MiB)
|
||||
CPUs: 12
|
||||
Processor Vendor: GenuineIntel
|
||||
Processor Name: Intel(R) Core(TM) i5-10600K CPU @ 4.10GHz
|
||||
Identifier: Intel64 Family 6 Model 165 Stepping 5
|
||||
Microarchitecture: Comet Lake
|
||||
Frequency (GHz): 4.10
|
||||
Number of physical packages: 1
|
||||
Number of physical CPUs: 6
|
||||
Number of logical CPUs: 12
|
||||
Graphics card #0 name: GA104 [GeForce RTX 3070]
|
||||
Graphics card #0 vendor: NVIDIA Corporation (0x10de)
|
||||
Graphics card #0 VRAM (MiB): 288.00
|
||||
Graphics card #0 deviceId: 0x2484
|
||||
Graphics card #0 versionInfo: unknown
|
||||
Virtual memory max (MiB): 12052.49
|
||||
Virtual memory used (MiB): 13540.28
|
||||
Swap memory total (MiB): 4096.00
|
||||
Swap memory used (MiB): 3297.18
|
||||
Space in storage for jna.tmpdir (MiB): <path not set>
|
||||
Space in storage for org.lwjgl.system.SharedLibraryExtractPath (MiB): <path not set>
|
||||
Space in storage for io.netty.native.workdir (MiB): <path not set>
|
||||
Space in storage for java.io.tmpdir (MiB): available: 7873.51, total: 7956.49
|
||||
Space in storage for workdir (MiB): available: 333778.75, total: 467346.75
|
||||
JVM Flags: 0 total;
|
||||
Launched Version: Fabric
|
||||
Backend library: LWJGL version 3.3.3-snapshot
|
||||
Backend API: NV174 GL version 4.3 (Core Profile) Mesa 24.0.7-arch1.3, Mesa
|
||||
Window size: <not initialized>
|
||||
GFLW Platform: x11
|
||||
GL Caps: Using framebuffer using OpenGL 3.2
|
||||
GL debug messages:
|
||||
Is Modded: Definitely; Client brand changed to 'fabric'
|
||||
Universe: 404
|
||||
Type: Client (map_client.txt)
|
||||
Locale: en_US
|
||||
System encoding: UTF-8
|
||||
File encoding: UTF-8
|
||||
CPU: 12x Intel(R) Core(TM) i5-10600K CPU @ 4.10GHz
|
||||
|
||||
-- Meteor Client --
|
||||
|
||||
Version: 0.5.8
|
||||
Dev Build: 2125
|
||||
@@ -0,0 +1,128 @@
|
||||
---- Minecraft Crash Report ----
|
||||
// Would you like a cupcake?
|
||||
|
||||
Time: 2024-07-10 21:38:00
|
||||
Description: Initializing game
|
||||
|
||||
java.lang.BootstrapMethodError: java.lang.RuntimeException: Mixin transformation of net.minecraft.client.render.GameRenderer failed
|
||||
at net.minecraft.client.render.RenderPhase.<clinit>(RenderPhase.java:126)
|
||||
at net.minecraft.client.font.TextRenderLayerSet.of(TextRenderLayerSet.java:22)
|
||||
at net.minecraft.client.font.FontStorage.getGlyphRenderer(FontStorage.java:176)
|
||||
at net.minecraft.client.font.BuiltinEmptyGlyph.bake(BuiltinEmptyGlyph.java:53)
|
||||
at net.minecraft.client.font.FontStorage.clear(FontStorage.java:65)
|
||||
at net.minecraft.client.font.FontStorage.setActiveFilters(FontStorage.java:54)
|
||||
at net.minecraft.client.font.FontStorage.setFonts(FontStorage.java:49)
|
||||
at net.minecraft.client.font.FontManager.method_27540(FontManager.java:66)
|
||||
at net.minecraft.util.Util.make(Util.java:537)
|
||||
at net.minecraft.client.font.FontManager.<init>(FontManager.java:66)
|
||||
at net.minecraft.client.MinecraftClient.<init>(MinecraftClient.java:558)
|
||||
at net.minecraft.client.main.Main.main(Main.java:239)
|
||||
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)
|
||||
Caused by: java.lang.RuntimeException: Mixin transformation of net.minecraft.client.render.GameRenderer failed
|
||||
at net.fabricmc.loader.impl.launch.knot.KnotClassDelegate.getPostMixinClassByteArray(KnotClassDelegate.java:427)
|
||||
at net.fabricmc.loader.impl.launch.knot.KnotClassDelegate.tryLoadClass(KnotClassDelegate.java:323)
|
||||
at net.fabricmc.loader.impl.launch.knot.KnotClassDelegate.loadClass(KnotClassDelegate.java:218)
|
||||
at net.fabricmc.loader.impl.launch.knot.KnotClassLoader.loadClass(KnotClassLoader.java:119)
|
||||
at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:525)
|
||||
... 16 more
|
||||
Caused by: org.spongepowered.asm.mixin.transformer.throwables.MixinTransformerError: An unexpected critical error was encountered
|
||||
at org.spongepowered.asm.mixin.transformer.MixinProcessor.applyMixins(MixinProcessor.java:392)
|
||||
at org.spongepowered.asm.mixin.transformer.MixinTransformer.transformClass(MixinTransformer.java:234)
|
||||
at org.spongepowered.asm.mixin.transformer.MixinTransformer.transformClassBytes(MixinTransformer.java:202)
|
||||
at meteordevelopment.meteorclient.asm.Asm$Transformer.transformClassBytes(Asm.java:104)
|
||||
at net.fabricmc.loader.impl.launch.knot.KnotClassDelegate.getPostMixinClassByteArray(KnotClassDelegate.java:422)
|
||||
... 20 more
|
||||
Caused by: org.spongepowered.asm.mixin.injection.throwables.InjectionError: Critical injection failure: Callback method skipRendering(Z)Z in addon-template.mixins.json:ExampleMixin from mod addon-template failed injection check, (0/1) succeeded. Scanned 1 target(s). No refMap loaded.
|
||||
at org.spongepowered.asm.mixin.injection.struct.InjectionInfo.postInject(InjectionInfo.java:468)
|
||||
at org.spongepowered.asm.mixin.transformer.MixinTargetContext.applyInjections(MixinTargetContext.java:1384)
|
||||
at org.spongepowered.asm.mixin.transformer.MixinApplicatorStandard.applyInjections(MixinApplicatorStandard.java:1062)
|
||||
at org.spongepowered.asm.mixin.transformer.MixinApplicatorStandard.applyMixin(MixinApplicatorStandard.java:402)
|
||||
at org.spongepowered.asm.mixin.transformer.MixinApplicatorStandard.apply(MixinApplicatorStandard.java:327)
|
||||
at org.spongepowered.asm.mixin.transformer.TargetClassContext.apply(TargetClassContext.java:422)
|
||||
at org.spongepowered.asm.mixin.transformer.TargetClassContext.applyMixins(TargetClassContext.java:403)
|
||||
at org.spongepowered.asm.mixin.transformer.MixinProcessor.applyMixins(MixinProcessor.java:363)
|
||||
... 24 more
|
||||
|
||||
|
||||
A detailed walkthrough of the error, its code path and all known details is as follows:
|
||||
---------------------------------------------------------------------------------------
|
||||
|
||||
-- Head --
|
||||
Thread: Render thread
|
||||
Stacktrace:
|
||||
at net.minecraft.client.render.RenderPhase.<clinit>(RenderPhase.java:126)
|
||||
at net.minecraft.client.font.TextRenderLayerSet.of(TextRenderLayerSet.java:22)
|
||||
at net.minecraft.client.font.FontStorage.getGlyphRenderer(FontStorage.java:176)
|
||||
at net.minecraft.client.font.BuiltinEmptyGlyph.bake(BuiltinEmptyGlyph.java:53)
|
||||
at net.minecraft.client.font.FontStorage.clear(FontStorage.java:65)
|
||||
at net.minecraft.client.font.FontStorage.setActiveFilters(FontStorage.java:54)
|
||||
at net.minecraft.client.font.FontStorage.setFonts(FontStorage.java:49)
|
||||
at net.minecraft.client.font.FontManager.method_27540(FontManager.java:66)
|
||||
at net.minecraft.util.Util.make(Util.java:537)
|
||||
at net.minecraft.client.font.FontManager.<init>(FontManager.java:66)
|
||||
at net.minecraft.client.MinecraftClient.<init>(MinecraftClient.java:558)
|
||||
|
||||
-- Initialization --
|
||||
Details:
|
||||
Modules:
|
||||
Stacktrace:
|
||||
at net.minecraft.client.main.Main.main(Main.java:239)
|
||||
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.21
|
||||
Minecraft Version ID: 1.21
|
||||
Operating System: Linux (amd64) version 6.8.9-arch1-2
|
||||
Java Version: 22, N/A
|
||||
Java VM Version: OpenJDK 64-Bit Server VM (mixed mode, sharing), Oracle Corporation
|
||||
Memory: 77174320 bytes (73 MiB) / 452984832 bytes (432 MiB) up to 4173332480 bytes (3980 MiB)
|
||||
CPUs: 12
|
||||
Processor Vendor: GenuineIntel
|
||||
Processor Name: Intel(R) Core(TM) i5-10600K CPU @ 4.10GHz
|
||||
Identifier: Intel64 Family 6 Model 165 Stepping 5
|
||||
Microarchitecture: Comet Lake
|
||||
Frequency (GHz): 4.10
|
||||
Number of physical packages: 1
|
||||
Number of physical CPUs: 6
|
||||
Number of logical CPUs: 12
|
||||
Graphics card #0 name: GA104 [GeForce RTX 3070]
|
||||
Graphics card #0 vendor: NVIDIA Corporation (0x10de)
|
||||
Graphics card #0 VRAM (MiB): 288.00
|
||||
Graphics card #0 deviceId: 0x2484
|
||||
Graphics card #0 versionInfo: unknown
|
||||
Virtual memory max (MiB): 12052.49
|
||||
Virtual memory used (MiB): 13516.15
|
||||
Swap memory total (MiB): 4096.00
|
||||
Swap memory used (MiB): 2799.43
|
||||
Space in storage for jna.tmpdir (MiB): <path not set>
|
||||
Space in storage for org.lwjgl.system.SharedLibraryExtractPath (MiB): <path not set>
|
||||
Space in storage for io.netty.native.workdir (MiB): <path not set>
|
||||
Space in storage for java.io.tmpdir (MiB): available: 7873.47, total: 7956.49
|
||||
Space in storage for workdir (MiB): available: 333768.22, total: 467346.75
|
||||
JVM Flags: 0 total;
|
||||
Launched Version: Fabric
|
||||
Backend library: LWJGL version 3.3.3-snapshot
|
||||
Backend API: NV174 GL version 4.3 (Core Profile) Mesa 24.0.7-arch1.3, Mesa
|
||||
Window size: <not initialized>
|
||||
GFLW Platform: x11
|
||||
GL Caps: Using framebuffer using OpenGL 3.2
|
||||
GL debug messages:
|
||||
Is Modded: Definitely; Client brand changed to 'fabric'
|
||||
Universe: 404
|
||||
Type: Client (map_client.txt)
|
||||
Locale: en_US
|
||||
System encoding: UTF-8
|
||||
File encoding: UTF-8
|
||||
CPU: 12x Intel(R) Core(TM) i5-10600K CPU @ 4.10GHz
|
||||
|
||||
-- Meteor Client --
|
||||
|
||||
Version: 0.5.8
|
||||
Dev Build: 2125
|
||||
@@ -0,0 +1,128 @@
|
||||
---- Minecraft Crash Report ----
|
||||
// My bad.
|
||||
|
||||
Time: 2024-07-10 21:38:59
|
||||
Description: Initializing game
|
||||
|
||||
java.lang.BootstrapMethodError: java.lang.RuntimeException: Mixin transformation of net.minecraft.client.render.GameRenderer failed
|
||||
at net.minecraft.client.render.RenderPhase.<clinit>(RenderPhase.java:126)
|
||||
at net.minecraft.client.font.TextRenderLayerSet.of(TextRenderLayerSet.java:22)
|
||||
at net.minecraft.client.font.FontStorage.getGlyphRenderer(FontStorage.java:176)
|
||||
at net.minecraft.client.font.BuiltinEmptyGlyph.bake(BuiltinEmptyGlyph.java:53)
|
||||
at net.minecraft.client.font.FontStorage.clear(FontStorage.java:65)
|
||||
at net.minecraft.client.font.FontStorage.setActiveFilters(FontStorage.java:54)
|
||||
at net.minecraft.client.font.FontStorage.setFonts(FontStorage.java:49)
|
||||
at net.minecraft.client.font.FontManager.method_27540(FontManager.java:66)
|
||||
at net.minecraft.util.Util.make(Util.java:537)
|
||||
at net.minecraft.client.font.FontManager.<init>(FontManager.java:66)
|
||||
at net.minecraft.client.MinecraftClient.<init>(MinecraftClient.java:558)
|
||||
at net.minecraft.client.main.Main.main(Main.java:239)
|
||||
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)
|
||||
Caused by: java.lang.RuntimeException: Mixin transformation of net.minecraft.client.render.GameRenderer failed
|
||||
at net.fabricmc.loader.impl.launch.knot.KnotClassDelegate.getPostMixinClassByteArray(KnotClassDelegate.java:427)
|
||||
at net.fabricmc.loader.impl.launch.knot.KnotClassDelegate.tryLoadClass(KnotClassDelegate.java:323)
|
||||
at net.fabricmc.loader.impl.launch.knot.KnotClassDelegate.loadClass(KnotClassDelegate.java:218)
|
||||
at net.fabricmc.loader.impl.launch.knot.KnotClassLoader.loadClass(KnotClassLoader.java:119)
|
||||
at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:525)
|
||||
... 16 more
|
||||
Caused by: org.spongepowered.asm.mixin.transformer.throwables.MixinTransformerError: An unexpected critical error was encountered
|
||||
at org.spongepowered.asm.mixin.transformer.MixinProcessor.applyMixins(MixinProcessor.java:392)
|
||||
at org.spongepowered.asm.mixin.transformer.MixinTransformer.transformClass(MixinTransformer.java:234)
|
||||
at org.spongepowered.asm.mixin.transformer.MixinTransformer.transformClassBytes(MixinTransformer.java:202)
|
||||
at meteordevelopment.meteorclient.asm.Asm$Transformer.transformClassBytes(Asm.java:104)
|
||||
at net.fabricmc.loader.impl.launch.knot.KnotClassDelegate.getPostMixinClassByteArray(KnotClassDelegate.java:422)
|
||||
... 20 more
|
||||
Caused by: org.spongepowered.asm.mixin.injection.throwables.InjectionError: Critical injection failure: Callback method renderWithZoom(FFF)V in addon-template.mixins.json:ExampleMixin from mod addon-template failed injection check, (0/1) succeeded. Scanned 1 target(s). No refMap loaded.
|
||||
at org.spongepowered.asm.mixin.injection.struct.InjectionInfo.postInject(InjectionInfo.java:468)
|
||||
at org.spongepowered.asm.mixin.transformer.MixinTargetContext.applyInjections(MixinTargetContext.java:1384)
|
||||
at org.spongepowered.asm.mixin.transformer.MixinApplicatorStandard.applyInjections(MixinApplicatorStandard.java:1062)
|
||||
at org.spongepowered.asm.mixin.transformer.MixinApplicatorStandard.applyMixin(MixinApplicatorStandard.java:402)
|
||||
at org.spongepowered.asm.mixin.transformer.MixinApplicatorStandard.apply(MixinApplicatorStandard.java:327)
|
||||
at org.spongepowered.asm.mixin.transformer.TargetClassContext.apply(TargetClassContext.java:422)
|
||||
at org.spongepowered.asm.mixin.transformer.TargetClassContext.applyMixins(TargetClassContext.java:403)
|
||||
at org.spongepowered.asm.mixin.transformer.MixinProcessor.applyMixins(MixinProcessor.java:363)
|
||||
... 24 more
|
||||
|
||||
|
||||
A detailed walkthrough of the error, its code path and all known details is as follows:
|
||||
---------------------------------------------------------------------------------------
|
||||
|
||||
-- Head --
|
||||
Thread: Render thread
|
||||
Stacktrace:
|
||||
at net.minecraft.client.render.RenderPhase.<clinit>(RenderPhase.java:126)
|
||||
at net.minecraft.client.font.TextRenderLayerSet.of(TextRenderLayerSet.java:22)
|
||||
at net.minecraft.client.font.FontStorage.getGlyphRenderer(FontStorage.java:176)
|
||||
at net.minecraft.client.font.BuiltinEmptyGlyph.bake(BuiltinEmptyGlyph.java:53)
|
||||
at net.minecraft.client.font.FontStorage.clear(FontStorage.java:65)
|
||||
at net.minecraft.client.font.FontStorage.setActiveFilters(FontStorage.java:54)
|
||||
at net.minecraft.client.font.FontStorage.setFonts(FontStorage.java:49)
|
||||
at net.minecraft.client.font.FontManager.method_27540(FontManager.java:66)
|
||||
at net.minecraft.util.Util.make(Util.java:537)
|
||||
at net.minecraft.client.font.FontManager.<init>(FontManager.java:66)
|
||||
at net.minecraft.client.MinecraftClient.<init>(MinecraftClient.java:558)
|
||||
|
||||
-- Initialization --
|
||||
Details:
|
||||
Modules:
|
||||
Stacktrace:
|
||||
at net.minecraft.client.main.Main.main(Main.java:239)
|
||||
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.21
|
||||
Minecraft Version ID: 1.21
|
||||
Operating System: Linux (amd64) version 6.8.9-arch1-2
|
||||
Java Version: 22, N/A
|
||||
Java VM Version: OpenJDK 64-Bit Server VM (mixed mode, sharing), Oracle Corporation
|
||||
Memory: 81405184 bytes (77 MiB) / 444596224 bytes (424 MiB) up to 4173332480 bytes (3980 MiB)
|
||||
CPUs: 12
|
||||
Processor Vendor: GenuineIntel
|
||||
Processor Name: Intel(R) Core(TM) i5-10600K CPU @ 4.10GHz
|
||||
Identifier: Intel64 Family 6 Model 165 Stepping 5
|
||||
Microarchitecture: Comet Lake
|
||||
Frequency (GHz): 4.10
|
||||
Number of physical packages: 1
|
||||
Number of physical CPUs: 6
|
||||
Number of logical CPUs: 12
|
||||
Graphics card #0 name: GA104 [GeForce RTX 3070]
|
||||
Graphics card #0 vendor: NVIDIA Corporation (0x10de)
|
||||
Graphics card #0 VRAM (MiB): 288.00
|
||||
Graphics card #0 deviceId: 0x2484
|
||||
Graphics card #0 versionInfo: unknown
|
||||
Virtual memory max (MiB): 12052.49
|
||||
Virtual memory used (MiB): 13522.98
|
||||
Swap memory total (MiB): 4096.00
|
||||
Swap memory used (MiB): 2788.93
|
||||
Space in storage for jna.tmpdir (MiB): <path not set>
|
||||
Space in storage for org.lwjgl.system.SharedLibraryExtractPath (MiB): <path not set>
|
||||
Space in storage for io.netty.native.workdir (MiB): <path not set>
|
||||
Space in storage for java.io.tmpdir (MiB): available: 7873.44, total: 7956.49
|
||||
Space in storage for workdir (MiB): available: 333768.09, total: 467346.75
|
||||
JVM Flags: 0 total;
|
||||
Launched Version: Fabric
|
||||
Backend library: LWJGL version 3.3.3-snapshot
|
||||
Backend API: NV174 GL version 4.3 (Core Profile) Mesa 24.0.7-arch1.3, Mesa
|
||||
Window size: <not initialized>
|
||||
GFLW Platform: x11
|
||||
GL Caps: Using framebuffer using OpenGL 3.2
|
||||
GL debug messages:
|
||||
Is Modded: Definitely; Client brand changed to 'fabric'
|
||||
Universe: 404
|
||||
Type: Client (map_client.txt)
|
||||
Locale: en_US
|
||||
System encoding: UTF-8
|
||||
File encoding: UTF-8
|
||||
CPU: 12x Intel(R) Core(TM) i5-10600K CPU @ 4.10GHz
|
||||
|
||||
-- Meteor Client --
|
||||
|
||||
Version: 0.5.8
|
||||
Dev Build: 2125
|
||||
@@ -0,0 +1,143 @@
|
||||
---- Minecraft Crash Report ----
|
||||
// Sorry :(
|
||||
|
||||
Time: 2024-07-10 21:40:58
|
||||
Description: Initializing game
|
||||
|
||||
java.lang.BootstrapMethodError: java.lang.RuntimeException: Mixin transformation of net.minecraft.client.render.GameRenderer failed
|
||||
at net.minecraft.client.render.RenderPhase.<clinit>(RenderPhase.java:126)
|
||||
at net.minecraft.client.font.TextRenderLayerSet.of(TextRenderLayerSet.java:22)
|
||||
at net.minecraft.client.font.FontStorage.getGlyphRenderer(FontStorage.java:176)
|
||||
at net.minecraft.client.font.BuiltinEmptyGlyph.bake(BuiltinEmptyGlyph.java:53)
|
||||
at net.minecraft.client.font.FontStorage.clear(FontStorage.java:65)
|
||||
at net.minecraft.client.font.FontStorage.setActiveFilters(FontStorage.java:54)
|
||||
at net.minecraft.client.font.FontStorage.setFonts(FontStorage.java:49)
|
||||
at net.minecraft.client.font.FontManager.method_27540(FontManager.java:66)
|
||||
at net.minecraft.util.Util.make(Util.java:537)
|
||||
at net.minecraft.client.font.FontManager.<init>(FontManager.java:66)
|
||||
at net.minecraft.client.MinecraftClient.<init>(MinecraftClient.java:558)
|
||||
at net.minecraft.client.main.Main.main(Main.java:239)
|
||||
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)
|
||||
Caused by: java.lang.RuntimeException: Mixin transformation of net.minecraft.client.render.GameRenderer failed
|
||||
at net.fabricmc.loader.impl.launch.knot.KnotClassDelegate.getPostMixinClassByteArray(KnotClassDelegate.java:427)
|
||||
at net.fabricmc.loader.impl.launch.knot.KnotClassDelegate.tryLoadClass(KnotClassDelegate.java:323)
|
||||
at net.fabricmc.loader.impl.launch.knot.KnotClassDelegate.loadClass(KnotClassDelegate.java:218)
|
||||
at net.fabricmc.loader.impl.launch.knot.KnotClassLoader.loadClass(KnotClassLoader.java:119)
|
||||
at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:525)
|
||||
... 16 more
|
||||
Caused by: org.spongepowered.asm.mixin.transformer.throwables.MixinTransformerError: An unexpected critical error was encountered
|
||||
at org.spongepowered.asm.mixin.transformer.MixinProcessor.applyMixins(MixinProcessor.java:392)
|
||||
at org.spongepowered.asm.mixin.transformer.MixinTransformer.transformClass(MixinTransformer.java:234)
|
||||
at org.spongepowered.asm.mixin.transformer.MixinTransformer.transformClassBytes(MixinTransformer.java:202)
|
||||
at meteordevelopment.meteorclient.asm.Asm$Transformer.transformClassBytes(Asm.java:104)
|
||||
at net.fabricmc.loader.impl.launch.knot.KnotClassDelegate.getPostMixinClassByteArray(KnotClassDelegate.java:422)
|
||||
... 20 more
|
||||
Caused by: org.spongepowered.asm.mixin.throwables.MixinApplyError: Mixin [addon-template.mixins.json:ExampleMixin from mod addon-template] from phase [DEFAULT] in config [addon-template.mixins.json] FAILED during APPLY
|
||||
at org.spongepowered.asm.mixin.transformer.MixinProcessor.handleMixinError(MixinProcessor.java:638)
|
||||
at org.spongepowered.asm.mixin.transformer.MixinProcessor.handleMixinApplyError(MixinProcessor.java:589)
|
||||
at org.spongepowered.asm.mixin.transformer.MixinProcessor.applyMixins(MixinProcessor.java:379)
|
||||
... 24 more
|
||||
Caused by: org.spongepowered.asm.mixin.injection.throwables.InvalidInjectionException: Critical injection failure: @Inject annotation on renderHand could not find any targets matching 'foo()V' in net.minecraft.client.render.GameRenderer. No refMap loaded. [PREINJECT Applicator Phase -> addon-template.mixins.json:ExampleMixin from mod addon-template -> Prepare Injections -> -> handler$zhp000$addon-template$renderHand(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V -> Parse]
|
||||
at org.spongepowered.asm.mixin.injection.struct.InjectionInfo.validateTargets(InjectionInfo.java:658)
|
||||
at org.spongepowered.asm.mixin.injection.struct.InjectionInfo.findTargets(InjectionInfo.java:589)
|
||||
at org.spongepowered.asm.mixin.injection.struct.InjectionInfo.readAnnotation(InjectionInfo.java:330)
|
||||
at org.spongepowered.asm.mixin.injection.struct.InjectionInfo.<init>(InjectionInfo.java:316)
|
||||
at org.spongepowered.asm.mixin.injection.struct.InjectionInfo.<init>(InjectionInfo.java:308)
|
||||
at org.spongepowered.asm.mixin.injection.struct.CallbackInjectionInfo.<init>(CallbackInjectionInfo.java:46)
|
||||
at java.base/jdk.internal.reflect.DirectConstructorHandleAccessor.newInstance(DirectConstructorHandleAccessor.java:62)
|
||||
at java.base/java.lang.reflect.Constructor.newInstanceWithCaller(Constructor.java:502)
|
||||
at java.base/java.lang.reflect.Constructor.newInstance(Constructor.java:486)
|
||||
at org.spongepowered.asm.mixin.injection.struct.InjectionInfo$InjectorEntry.create(InjectionInfo.java:149)
|
||||
at org.spongepowered.asm.mixin.injection.struct.InjectionInfo.parse(InjectionInfo.java:710)
|
||||
at org.spongepowered.asm.mixin.transformer.MixinTargetContext.prepareInjections(MixinTargetContext.java:1329)
|
||||
at org.spongepowered.asm.mixin.transformer.MixinApplicatorStandard.prepareInjections(MixinApplicatorStandard.java:1053)
|
||||
at org.spongepowered.asm.mixin.transformer.MixinApplicatorStandard.applyMixin(MixinApplicatorStandard.java:395)
|
||||
at org.spongepowered.asm.mixin.transformer.MixinApplicatorStandard.apply(MixinApplicatorStandard.java:327)
|
||||
at org.spongepowered.asm.mixin.transformer.TargetClassContext.apply(TargetClassContext.java:422)
|
||||
at org.spongepowered.asm.mixin.transformer.TargetClassContext.applyMixins(TargetClassContext.java:403)
|
||||
at org.spongepowered.asm.mixin.transformer.MixinProcessor.applyMixins(MixinProcessor.java:363)
|
||||
... 24 more
|
||||
|
||||
|
||||
A detailed walkthrough of the error, its code path and all known details is as follows:
|
||||
---------------------------------------------------------------------------------------
|
||||
|
||||
-- Head --
|
||||
Thread: Render thread
|
||||
Stacktrace:
|
||||
at net.minecraft.client.render.RenderPhase.<clinit>(RenderPhase.java:126)
|
||||
at net.minecraft.client.font.TextRenderLayerSet.of(TextRenderLayerSet.java:22)
|
||||
at net.minecraft.client.font.FontStorage.getGlyphRenderer(FontStorage.java:176)
|
||||
at net.minecraft.client.font.BuiltinEmptyGlyph.bake(BuiltinEmptyGlyph.java:53)
|
||||
at net.minecraft.client.font.FontStorage.clear(FontStorage.java:65)
|
||||
at net.minecraft.client.font.FontStorage.setActiveFilters(FontStorage.java:54)
|
||||
at net.minecraft.client.font.FontStorage.setFonts(FontStorage.java:49)
|
||||
at net.minecraft.client.font.FontManager.method_27540(FontManager.java:66)
|
||||
at net.minecraft.util.Util.make(Util.java:537)
|
||||
at net.minecraft.client.font.FontManager.<init>(FontManager.java:66)
|
||||
at net.minecraft.client.MinecraftClient.<init>(MinecraftClient.java:558)
|
||||
|
||||
-- Initialization --
|
||||
Details:
|
||||
Modules:
|
||||
Stacktrace:
|
||||
at net.minecraft.client.main.Main.main(Main.java:239)
|
||||
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.21
|
||||
Minecraft Version ID: 1.21
|
||||
Operating System: Linux (amd64) version 6.8.9-arch1-2
|
||||
Java Version: 22, N/A
|
||||
Java VM Version: OpenJDK 64-Bit Server VM (mixed mode, sharing), Oracle Corporation
|
||||
Memory: 184501944 bytes (175 MiB) / 503316480 bytes (480 MiB) up to 4173332480 bytes (3980 MiB)
|
||||
CPUs: 12
|
||||
Processor Vendor: GenuineIntel
|
||||
Processor Name: Intel(R) Core(TM) i5-10600K CPU @ 4.10GHz
|
||||
Identifier: Intel64 Family 6 Model 165 Stepping 5
|
||||
Microarchitecture: Comet Lake
|
||||
Frequency (GHz): 4.10
|
||||
Number of physical packages: 1
|
||||
Number of physical CPUs: 6
|
||||
Number of logical CPUs: 12
|
||||
Graphics card #0 name: GA104 [GeForce RTX 3070]
|
||||
Graphics card #0 vendor: NVIDIA Corporation (0x10de)
|
||||
Graphics card #0 VRAM (MiB): 288.00
|
||||
Graphics card #0 deviceId: 0x2484
|
||||
Graphics card #0 versionInfo: unknown
|
||||
Virtual memory max (MiB): 12052.49
|
||||
Virtual memory used (MiB): 13718.63
|
||||
Swap memory total (MiB): 4096.00
|
||||
Swap memory used (MiB): 2743.43
|
||||
Space in storage for jna.tmpdir (MiB): <path not set>
|
||||
Space in storage for org.lwjgl.system.SharedLibraryExtractPath (MiB): <path not set>
|
||||
Space in storage for io.netty.native.workdir (MiB): <path not set>
|
||||
Space in storage for java.io.tmpdir (MiB): available: 7882.93, total: 7956.49
|
||||
Space in storage for workdir (MiB): available: 333764.81, total: 467346.75
|
||||
JVM Flags: 0 total;
|
||||
Launched Version: Fabric
|
||||
Backend library: LWJGL version 3.3.3-snapshot
|
||||
Backend API: NV174 GL version 4.3 (Core Profile) Mesa 24.0.7-arch1.3, Mesa
|
||||
Window size: <not initialized>
|
||||
GFLW Platform: x11
|
||||
GL Caps: Using framebuffer using OpenGL 3.2
|
||||
GL debug messages:
|
||||
Is Modded: Definitely; Client brand changed to 'fabric'
|
||||
Universe: 404
|
||||
Type: Client (map_client.txt)
|
||||
Locale: en_US
|
||||
System encoding: UTF-8
|
||||
File encoding: UTF-8
|
||||
CPU: 12x Intel(R) Core(TM) i5-10600K CPU @ 4.10GHz
|
||||
|
||||
-- Meteor Client --
|
||||
|
||||
Version: 0.5.8
|
||||
Dev Build: 2125
|
||||
@@ -0,0 +1,131 @@
|
||||
---- Minecraft Crash Report ----
|
||||
// Oops.
|
||||
|
||||
Time: 2024-07-10 23:02:49
|
||||
Description: Initializing game
|
||||
|
||||
java.lang.BootstrapMethodError: java.lang.RuntimeException: Mixin transformation of net.minecraft.client.render.GameRenderer failed
|
||||
at net.minecraft.client.render.RenderPhase.<clinit>(RenderPhase.java:126)
|
||||
at net.minecraft.client.font.TextRenderLayerSet.of(TextRenderLayerSet.java:22)
|
||||
at net.minecraft.client.font.FontStorage.getGlyphRenderer(FontStorage.java:176)
|
||||
at net.minecraft.client.font.BuiltinEmptyGlyph.bake(BuiltinEmptyGlyph.java:53)
|
||||
at net.minecraft.client.font.FontStorage.clear(FontStorage.java:65)
|
||||
at net.minecraft.client.font.FontStorage.setActiveFilters(FontStorage.java:54)
|
||||
at net.minecraft.client.font.FontStorage.setFonts(FontStorage.java:49)
|
||||
at net.minecraft.client.font.FontManager.method_27540(FontManager.java:66)
|
||||
at net.minecraft.util.Util.make(Util.java:537)
|
||||
at net.minecraft.client.font.FontManager.<init>(FontManager.java:66)
|
||||
at net.minecraft.client.MinecraftClient.<init>(MinecraftClient.java:558)
|
||||
at net.minecraft.client.main.Main.main(Main.java:239)
|
||||
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)
|
||||
Caused by: java.lang.RuntimeException: Mixin transformation of net.minecraft.client.render.GameRenderer failed
|
||||
at net.fabricmc.loader.impl.launch.knot.KnotClassDelegate.getPostMixinClassByteArray(KnotClassDelegate.java:427)
|
||||
at net.fabricmc.loader.impl.launch.knot.KnotClassDelegate.tryLoadClass(KnotClassDelegate.java:323)
|
||||
at net.fabricmc.loader.impl.launch.knot.KnotClassDelegate.loadClass(KnotClassDelegate.java:218)
|
||||
at net.fabricmc.loader.impl.launch.knot.KnotClassLoader.loadClass(KnotClassLoader.java:119)
|
||||
at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:525)
|
||||
... 16 more
|
||||
Caused by: org.spongepowered.asm.mixin.transformer.throwables.MixinTransformerError: An unexpected critical error was encountered
|
||||
at org.spongepowered.asm.mixin.transformer.MixinProcessor.applyMixins(MixinProcessor.java:392)
|
||||
at org.spongepowered.asm.mixin.transformer.MixinTransformer.transformClass(MixinTransformer.java:234)
|
||||
at org.spongepowered.asm.mixin.transformer.MixinTransformer.transformClassBytes(MixinTransformer.java:202)
|
||||
at meteordevelopment.meteorclient.asm.Asm$Transformer.transformClassBytes(Asm.java:104)
|
||||
at net.fabricmc.loader.impl.launch.knot.KnotClassDelegate.getPostMixinClassByteArray(KnotClassDelegate.java:422)
|
||||
... 20 more
|
||||
Caused by: org.spongepowered.asm.mixin.injection.throwables.InjectionError: Invalid descriptor on addon-template.mixins.json:ExampleMixin from mod addon-template->@Inject::render(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;Lnet/minecraft/client/MinecraftClient;)V! Expected (Lnet/minecraft/client/render/RenderTickCounter;ZLorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V but found (Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;Lnet/minecraft/client/MinecraftClient;)V
|
||||
at org.spongepowered.asm.mixin.injection.callback.CallbackInjector.inject(CallbackInjector.java:544)
|
||||
at org.spongepowered.asm.mixin.injection.callback.CallbackInjector.inject(CallbackInjector.java:494)
|
||||
at org.spongepowered.asm.mixin.injection.code.Injector.inject(Injector.java:277)
|
||||
at org.spongepowered.asm.mixin.injection.struct.InjectionInfo.inject(InjectionInfo.java:445)
|
||||
at org.spongepowered.asm.mixin.transformer.MixinTargetContext.applyInjections(MixinTargetContext.java:1377)
|
||||
at org.spongepowered.asm.mixin.transformer.MixinApplicatorStandard.applyInjections(MixinApplicatorStandard.java:1062)
|
||||
at org.spongepowered.asm.mixin.transformer.MixinApplicatorStandard.applyMixin(MixinApplicatorStandard.java:402)
|
||||
at org.spongepowered.asm.mixin.transformer.MixinApplicatorStandard.apply(MixinApplicatorStandard.java:327)
|
||||
at org.spongepowered.asm.mixin.transformer.TargetClassContext.apply(TargetClassContext.java:422)
|
||||
at org.spongepowered.asm.mixin.transformer.TargetClassContext.applyMixins(TargetClassContext.java:403)
|
||||
at org.spongepowered.asm.mixin.transformer.MixinProcessor.applyMixins(MixinProcessor.java:363)
|
||||
... 24 more
|
||||
|
||||
|
||||
A detailed walkthrough of the error, its code path and all known details is as follows:
|
||||
---------------------------------------------------------------------------------------
|
||||
|
||||
-- Head --
|
||||
Thread: Render thread
|
||||
Stacktrace:
|
||||
at net.minecraft.client.render.RenderPhase.<clinit>(RenderPhase.java:126)
|
||||
at net.minecraft.client.font.TextRenderLayerSet.of(TextRenderLayerSet.java:22)
|
||||
at net.minecraft.client.font.FontStorage.getGlyphRenderer(FontStorage.java:176)
|
||||
at net.minecraft.client.font.BuiltinEmptyGlyph.bake(BuiltinEmptyGlyph.java:53)
|
||||
at net.minecraft.client.font.FontStorage.clear(FontStorage.java:65)
|
||||
at net.minecraft.client.font.FontStorage.setActiveFilters(FontStorage.java:54)
|
||||
at net.minecraft.client.font.FontStorage.setFonts(FontStorage.java:49)
|
||||
at net.minecraft.client.font.FontManager.method_27540(FontManager.java:66)
|
||||
at net.minecraft.util.Util.make(Util.java:537)
|
||||
at net.minecraft.client.font.FontManager.<init>(FontManager.java:66)
|
||||
at net.minecraft.client.MinecraftClient.<init>(MinecraftClient.java:558)
|
||||
|
||||
-- Initialization --
|
||||
Details:
|
||||
Modules:
|
||||
Stacktrace:
|
||||
at net.minecraft.client.main.Main.main(Main.java:239)
|
||||
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.21
|
||||
Minecraft Version ID: 1.21
|
||||
Operating System: Linux (amd64) version 6.8.9-arch1-2
|
||||
Java Version: 22, N/A
|
||||
Java VM Version: OpenJDK 64-Bit Server VM (mixed mode, sharing), Oracle Corporation
|
||||
Memory: 89838224 bytes (85 MiB) / 499122176 bytes (476 MiB) up to 4173332480 bytes (3980 MiB)
|
||||
CPUs: 12
|
||||
Processor Vendor: GenuineIntel
|
||||
Processor Name: Intel(R) Core(TM) i5-10600K CPU @ 4.10GHz
|
||||
Identifier: Intel64 Family 6 Model 165 Stepping 5
|
||||
Microarchitecture: Comet Lake
|
||||
Frequency (GHz): 4.10
|
||||
Number of physical packages: 1
|
||||
Number of physical CPUs: 6
|
||||
Number of logical CPUs: 12
|
||||
Graphics card #0 name: GA104 [GeForce RTX 3070]
|
||||
Graphics card #0 vendor: NVIDIA Corporation (0x10de)
|
||||
Graphics card #0 VRAM (MiB): 288.00
|
||||
Graphics card #0 deviceId: 0x2484
|
||||
Graphics card #0 versionInfo: unknown
|
||||
Virtual memory max (MiB): 12052.49
|
||||
Virtual memory used (MiB): 12788.00
|
||||
Swap memory total (MiB): 4096.00
|
||||
Swap memory used (MiB): 2879.32
|
||||
Space in storage for jna.tmpdir (MiB): <path not set>
|
||||
Space in storage for org.lwjgl.system.SharedLibraryExtractPath (MiB): <path not set>
|
||||
Space in storage for io.netty.native.workdir (MiB): <path not set>
|
||||
Space in storage for java.io.tmpdir (MiB): available: 7884.50, total: 7956.49
|
||||
Space in storage for workdir (MiB): available: 333753.44, total: 467346.75
|
||||
JVM Flags: 0 total;
|
||||
Launched Version: Fabric
|
||||
Backend library: LWJGL version 3.3.3-snapshot
|
||||
Backend API: NV174 GL version 4.3 (Core Profile) Mesa 24.0.7-arch1.3, Mesa
|
||||
Window size: <not initialized>
|
||||
GFLW Platform: x11
|
||||
GL Caps: Using framebuffer using OpenGL 3.2
|
||||
GL debug messages:
|
||||
Is Modded: Definitely; Client brand changed to 'fabric'
|
||||
Universe: 404
|
||||
Type: Client (map_client.txt)
|
||||
Locale: en_US
|
||||
System encoding: UTF-8
|
||||
File encoding: UTF-8
|
||||
CPU: 12x Intel(R) Core(TM) i5-10600K CPU @ 4.10GHz
|
||||
|
||||
-- Meteor Client --
|
||||
|
||||
Version: 0.5.8
|
||||
Dev Build: 2125
|
||||
@@ -0,0 +1,131 @@
|
||||
---- Minecraft Crash Report ----
|
||||
// Why did you do that?
|
||||
|
||||
Time: 2024-07-10 23:04:47
|
||||
Description: Initializing game
|
||||
|
||||
java.lang.BootstrapMethodError: java.lang.RuntimeException: Mixin transformation of net.minecraft.client.render.GameRenderer failed
|
||||
at net.minecraft.client.render.RenderPhase.<clinit>(RenderPhase.java:126)
|
||||
at net.minecraft.client.font.TextRenderLayerSet.of(TextRenderLayerSet.java:22)
|
||||
at net.minecraft.client.font.FontStorage.getGlyphRenderer(FontStorage.java:176)
|
||||
at net.minecraft.client.font.BuiltinEmptyGlyph.bake(BuiltinEmptyGlyph.java:53)
|
||||
at net.minecraft.client.font.FontStorage.clear(FontStorage.java:65)
|
||||
at net.minecraft.client.font.FontStorage.setActiveFilters(FontStorage.java:54)
|
||||
at net.minecraft.client.font.FontStorage.setFonts(FontStorage.java:49)
|
||||
at net.minecraft.client.font.FontManager.method_27540(FontManager.java:66)
|
||||
at net.minecraft.util.Util.make(Util.java:537)
|
||||
at net.minecraft.client.font.FontManager.<init>(FontManager.java:66)
|
||||
at net.minecraft.client.MinecraftClient.<init>(MinecraftClient.java:558)
|
||||
at net.minecraft.client.main.Main.main(Main.java:239)
|
||||
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)
|
||||
Caused by: java.lang.RuntimeException: Mixin transformation of net.minecraft.client.render.GameRenderer failed
|
||||
at net.fabricmc.loader.impl.launch.knot.KnotClassDelegate.getPostMixinClassByteArray(KnotClassDelegate.java:427)
|
||||
at net.fabricmc.loader.impl.launch.knot.KnotClassDelegate.tryLoadClass(KnotClassDelegate.java:323)
|
||||
at net.fabricmc.loader.impl.launch.knot.KnotClassDelegate.loadClass(KnotClassDelegate.java:218)
|
||||
at net.fabricmc.loader.impl.launch.knot.KnotClassLoader.loadClass(KnotClassLoader.java:119)
|
||||
at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:525)
|
||||
... 16 more
|
||||
Caused by: org.spongepowered.asm.mixin.transformer.throwables.MixinTransformerError: An unexpected critical error was encountered
|
||||
at org.spongepowered.asm.mixin.transformer.MixinProcessor.applyMixins(MixinProcessor.java:392)
|
||||
at org.spongepowered.asm.mixin.transformer.MixinTransformer.transformClass(MixinTransformer.java:234)
|
||||
at org.spongepowered.asm.mixin.transformer.MixinTransformer.transformClassBytes(MixinTransformer.java:202)
|
||||
at meteordevelopment.meteorclient.asm.Asm$Transformer.transformClassBytes(Asm.java:104)
|
||||
at net.fabricmc.loader.impl.launch.knot.KnotClassDelegate.getPostMixinClassByteArray(KnotClassDelegate.java:422)
|
||||
... 20 more
|
||||
Caused by: org.spongepowered.asm.mixin.injection.throwables.InjectionError: Invalid descriptor on addon-template.mixins.json:ExampleMixin from mod addon-template->@Inject::render(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;Lnet/minecraft/client/render/RenderTickCounter;Z)V! Expected (Lnet/minecraft/client/render/RenderTickCounter;ZLorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V but found (Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;Lnet/minecraft/client/render/RenderTickCounter;Z)V
|
||||
at org.spongepowered.asm.mixin.injection.callback.CallbackInjector.inject(CallbackInjector.java:544)
|
||||
at org.spongepowered.asm.mixin.injection.callback.CallbackInjector.inject(CallbackInjector.java:494)
|
||||
at org.spongepowered.asm.mixin.injection.code.Injector.inject(Injector.java:277)
|
||||
at org.spongepowered.asm.mixin.injection.struct.InjectionInfo.inject(InjectionInfo.java:445)
|
||||
at org.spongepowered.asm.mixin.transformer.MixinTargetContext.applyInjections(MixinTargetContext.java:1377)
|
||||
at org.spongepowered.asm.mixin.transformer.MixinApplicatorStandard.applyInjections(MixinApplicatorStandard.java:1062)
|
||||
at org.spongepowered.asm.mixin.transformer.MixinApplicatorStandard.applyMixin(MixinApplicatorStandard.java:402)
|
||||
at org.spongepowered.asm.mixin.transformer.MixinApplicatorStandard.apply(MixinApplicatorStandard.java:327)
|
||||
at org.spongepowered.asm.mixin.transformer.TargetClassContext.apply(TargetClassContext.java:422)
|
||||
at org.spongepowered.asm.mixin.transformer.TargetClassContext.applyMixins(TargetClassContext.java:403)
|
||||
at org.spongepowered.asm.mixin.transformer.MixinProcessor.applyMixins(MixinProcessor.java:363)
|
||||
... 24 more
|
||||
|
||||
|
||||
A detailed walkthrough of the error, its code path and all known details is as follows:
|
||||
---------------------------------------------------------------------------------------
|
||||
|
||||
-- Head --
|
||||
Thread: Render thread
|
||||
Stacktrace:
|
||||
at net.minecraft.client.render.RenderPhase.<clinit>(RenderPhase.java:126)
|
||||
at net.minecraft.client.font.TextRenderLayerSet.of(TextRenderLayerSet.java:22)
|
||||
at net.minecraft.client.font.FontStorage.getGlyphRenderer(FontStorage.java:176)
|
||||
at net.minecraft.client.font.BuiltinEmptyGlyph.bake(BuiltinEmptyGlyph.java:53)
|
||||
at net.minecraft.client.font.FontStorage.clear(FontStorage.java:65)
|
||||
at net.minecraft.client.font.FontStorage.setActiveFilters(FontStorage.java:54)
|
||||
at net.minecraft.client.font.FontStorage.setFonts(FontStorage.java:49)
|
||||
at net.minecraft.client.font.FontManager.method_27540(FontManager.java:66)
|
||||
at net.minecraft.util.Util.make(Util.java:537)
|
||||
at net.minecraft.client.font.FontManager.<init>(FontManager.java:66)
|
||||
at net.minecraft.client.MinecraftClient.<init>(MinecraftClient.java:558)
|
||||
|
||||
-- Initialization --
|
||||
Details:
|
||||
Modules:
|
||||
Stacktrace:
|
||||
at net.minecraft.client.main.Main.main(Main.java:239)
|
||||
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.21
|
||||
Minecraft Version ID: 1.21
|
||||
Operating System: Linux (amd64) version 6.8.9-arch1-2
|
||||
Java Version: 22, N/A
|
||||
Java VM Version: OpenJDK 64-Bit Server VM (mixed mode, sharing), Oracle Corporation
|
||||
Memory: 171717168 bytes (163 MiB) / 492830720 bytes (470 MiB) up to 4173332480 bytes (3980 MiB)
|
||||
CPUs: 12
|
||||
Processor Vendor: GenuineIntel
|
||||
Processor Name: Intel(R) Core(TM) i5-10600K CPU @ 4.10GHz
|
||||
Identifier: Intel64 Family 6 Model 165 Stepping 5
|
||||
Microarchitecture: Comet Lake
|
||||
Frequency (GHz): 4.10
|
||||
Number of physical packages: 1
|
||||
Number of physical CPUs: 6
|
||||
Number of logical CPUs: 12
|
||||
Graphics card #0 name: GA104 [GeForce RTX 3070]
|
||||
Graphics card #0 vendor: NVIDIA Corporation (0x10de)
|
||||
Graphics card #0 VRAM (MiB): 288.00
|
||||
Graphics card #0 deviceId: 0x2484
|
||||
Graphics card #0 versionInfo: unknown
|
||||
Virtual memory max (MiB): 12052.49
|
||||
Virtual memory used (MiB): 12807.84
|
||||
Swap memory total (MiB): 4096.00
|
||||
Swap memory used (MiB): 2876.07
|
||||
Space in storage for jna.tmpdir (MiB): <path not set>
|
||||
Space in storage for org.lwjgl.system.SharedLibraryExtractPath (MiB): <path not set>
|
||||
Space in storage for io.netty.native.workdir (MiB): <path not set>
|
||||
Space in storage for java.io.tmpdir (MiB): available: 7884.46, total: 7956.49
|
||||
Space in storage for workdir (MiB): available: 333753.31, total: 467346.75
|
||||
JVM Flags: 0 total;
|
||||
Launched Version: Fabric
|
||||
Backend library: LWJGL version 3.3.3-snapshot
|
||||
Backend API: NV174 GL version 4.3 (Core Profile) Mesa 24.0.7-arch1.3, Mesa
|
||||
Window size: <not initialized>
|
||||
GFLW Platform: x11
|
||||
GL Caps: Using framebuffer using OpenGL 3.2
|
||||
GL debug messages:
|
||||
Is Modded: Definitely; Client brand changed to 'fabric'
|
||||
Universe: 404
|
||||
Type: Client (map_client.txt)
|
||||
Locale: en_US
|
||||
System encoding: UTF-8
|
||||
File encoding: UTF-8
|
||||
CPU: 12x Intel(R) Core(TM) i5-10600K CPU @ 4.10GHz
|
||||
|
||||
-- Meteor Client --
|
||||
|
||||
Version: 0.5.8
|
||||
Dev Build: 2125
|
||||
@@ -0,0 +1,131 @@
|
||||
---- Minecraft Crash Report ----
|
||||
// This doesn't make any sense!
|
||||
|
||||
Time: 2024-07-10 23:07:35
|
||||
Description: Initializing game
|
||||
|
||||
java.lang.BootstrapMethodError: java.lang.RuntimeException: Mixin transformation of net.minecraft.client.render.GameRenderer failed
|
||||
at net.minecraft.client.render.RenderPhase.<clinit>(RenderPhase.java:126)
|
||||
at net.minecraft.client.font.TextRenderLayerSet.of(TextRenderLayerSet.java:22)
|
||||
at net.minecraft.client.font.FontStorage.getGlyphRenderer(FontStorage.java:176)
|
||||
at net.minecraft.client.font.BuiltinEmptyGlyph.bake(BuiltinEmptyGlyph.java:53)
|
||||
at net.minecraft.client.font.FontStorage.clear(FontStorage.java:65)
|
||||
at net.minecraft.client.font.FontStorage.setActiveFilters(FontStorage.java:54)
|
||||
at net.minecraft.client.font.FontStorage.setFonts(FontStorage.java:49)
|
||||
at net.minecraft.client.font.FontManager.method_27540(FontManager.java:66)
|
||||
at net.minecraft.util.Util.make(Util.java:537)
|
||||
at net.minecraft.client.font.FontManager.<init>(FontManager.java:66)
|
||||
at net.minecraft.client.MinecraftClient.<init>(MinecraftClient.java:558)
|
||||
at net.minecraft.client.main.Main.main(Main.java:239)
|
||||
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)
|
||||
Caused by: java.lang.RuntimeException: Mixin transformation of net.minecraft.client.render.GameRenderer failed
|
||||
at net.fabricmc.loader.impl.launch.knot.KnotClassDelegate.getPostMixinClassByteArray(KnotClassDelegate.java:427)
|
||||
at net.fabricmc.loader.impl.launch.knot.KnotClassDelegate.tryLoadClass(KnotClassDelegate.java:323)
|
||||
at net.fabricmc.loader.impl.launch.knot.KnotClassDelegate.loadClass(KnotClassDelegate.java:218)
|
||||
at net.fabricmc.loader.impl.launch.knot.KnotClassLoader.loadClass(KnotClassLoader.java:119)
|
||||
at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:525)
|
||||
... 16 more
|
||||
Caused by: org.spongepowered.asm.mixin.transformer.throwables.MixinTransformerError: An unexpected critical error was encountered
|
||||
at org.spongepowered.asm.mixin.transformer.MixinProcessor.applyMixins(MixinProcessor.java:392)
|
||||
at org.spongepowered.asm.mixin.transformer.MixinTransformer.transformClass(MixinTransformer.java:234)
|
||||
at org.spongepowered.asm.mixin.transformer.MixinTransformer.transformClassBytes(MixinTransformer.java:202)
|
||||
at meteordevelopment.meteorclient.asm.Asm$Transformer.transformClassBytes(Asm.java:104)
|
||||
at net.fabricmc.loader.impl.launch.knot.KnotClassDelegate.getPostMixinClassByteArray(KnotClassDelegate.java:422)
|
||||
... 20 more
|
||||
Caused by: org.spongepowered.asm.mixin.injection.throwables.InjectionError: Invalid descriptor on addon-template.mixins.json:ExampleMixin from mod addon-template->@Inject::render(Lnet/minecraft/client/MinecraftClient;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V! Expected (Lnet/minecraft/client/render/RenderTickCounter;ZLorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V but found (Lnet/minecraft/client/MinecraftClient;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V
|
||||
at org.spongepowered.asm.mixin.injection.callback.CallbackInjector.inject(CallbackInjector.java:544)
|
||||
at org.spongepowered.asm.mixin.injection.callback.CallbackInjector.inject(CallbackInjector.java:494)
|
||||
at org.spongepowered.asm.mixin.injection.code.Injector.inject(Injector.java:277)
|
||||
at org.spongepowered.asm.mixin.injection.struct.InjectionInfo.inject(InjectionInfo.java:445)
|
||||
at org.spongepowered.asm.mixin.transformer.MixinTargetContext.applyInjections(MixinTargetContext.java:1377)
|
||||
at org.spongepowered.asm.mixin.transformer.MixinApplicatorStandard.applyInjections(MixinApplicatorStandard.java:1062)
|
||||
at org.spongepowered.asm.mixin.transformer.MixinApplicatorStandard.applyMixin(MixinApplicatorStandard.java:402)
|
||||
at org.spongepowered.asm.mixin.transformer.MixinApplicatorStandard.apply(MixinApplicatorStandard.java:327)
|
||||
at org.spongepowered.asm.mixin.transformer.TargetClassContext.apply(TargetClassContext.java:422)
|
||||
at org.spongepowered.asm.mixin.transformer.TargetClassContext.applyMixins(TargetClassContext.java:403)
|
||||
at org.spongepowered.asm.mixin.transformer.MixinProcessor.applyMixins(MixinProcessor.java:363)
|
||||
... 24 more
|
||||
|
||||
|
||||
A detailed walkthrough of the error, its code path and all known details is as follows:
|
||||
---------------------------------------------------------------------------------------
|
||||
|
||||
-- Head --
|
||||
Thread: Render thread
|
||||
Stacktrace:
|
||||
at net.minecraft.client.render.RenderPhase.<clinit>(RenderPhase.java:126)
|
||||
at net.minecraft.client.font.TextRenderLayerSet.of(TextRenderLayerSet.java:22)
|
||||
at net.minecraft.client.font.FontStorage.getGlyphRenderer(FontStorage.java:176)
|
||||
at net.minecraft.client.font.BuiltinEmptyGlyph.bake(BuiltinEmptyGlyph.java:53)
|
||||
at net.minecraft.client.font.FontStorage.clear(FontStorage.java:65)
|
||||
at net.minecraft.client.font.FontStorage.setActiveFilters(FontStorage.java:54)
|
||||
at net.minecraft.client.font.FontStorage.setFonts(FontStorage.java:49)
|
||||
at net.minecraft.client.font.FontManager.method_27540(FontManager.java:66)
|
||||
at net.minecraft.util.Util.make(Util.java:537)
|
||||
at net.minecraft.client.font.FontManager.<init>(FontManager.java:66)
|
||||
at net.minecraft.client.MinecraftClient.<init>(MinecraftClient.java:558)
|
||||
|
||||
-- Initialization --
|
||||
Details:
|
||||
Modules:
|
||||
Stacktrace:
|
||||
at net.minecraft.client.main.Main.main(Main.java:239)
|
||||
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.21
|
||||
Minecraft Version ID: 1.21
|
||||
Operating System: Linux (amd64) version 6.8.9-arch1-2
|
||||
Java Version: 22, N/A
|
||||
Java VM Version: OpenJDK 64-Bit Server VM (mixed mode, sharing), Oracle Corporation
|
||||
Memory: 170451688 bytes (162 MiB) / 486539264 bytes (464 MiB) up to 4173332480 bytes (3980 MiB)
|
||||
CPUs: 12
|
||||
Processor Vendor: GenuineIntel
|
||||
Processor Name: Intel(R) Core(TM) i5-10600K CPU @ 4.10GHz
|
||||
Identifier: Intel64 Family 6 Model 165 Stepping 5
|
||||
Microarchitecture: Comet Lake
|
||||
Frequency (GHz): 4.10
|
||||
Number of physical packages: 1
|
||||
Number of physical CPUs: 6
|
||||
Number of logical CPUs: 12
|
||||
Graphics card #0 name: GA104 [GeForce RTX 3070]
|
||||
Graphics card #0 vendor: NVIDIA Corporation (0x10de)
|
||||
Graphics card #0 VRAM (MiB): 288.00
|
||||
Graphics card #0 deviceId: 0x2484
|
||||
Graphics card #0 versionInfo: unknown
|
||||
Virtual memory max (MiB): 12052.49
|
||||
Virtual memory used (MiB): 12839.79
|
||||
Swap memory total (MiB): 4096.00
|
||||
Swap memory used (MiB): 2852.32
|
||||
Space in storage for jna.tmpdir (MiB): <path not set>
|
||||
Space in storage for org.lwjgl.system.SharedLibraryExtractPath (MiB): <path not set>
|
||||
Space in storage for io.netty.native.workdir (MiB): <path not set>
|
||||
Space in storage for java.io.tmpdir (MiB): available: 7884.36, total: 7956.49
|
||||
Space in storage for workdir (MiB): available: 333753.53, total: 467346.75
|
||||
JVM Flags: 0 total;
|
||||
Launched Version: Fabric
|
||||
Backend library: LWJGL version 3.3.3-snapshot
|
||||
Backend API: NV174 GL version 4.3 (Core Profile) Mesa 24.0.7-arch1.3, Mesa
|
||||
Window size: <not initialized>
|
||||
GFLW Platform: x11
|
||||
GL Caps: Using framebuffer using OpenGL 3.2
|
||||
GL debug messages:
|
||||
Is Modded: Definitely; Client brand changed to 'fabric'
|
||||
Universe: 404
|
||||
Type: Client (map_client.txt)
|
||||
Locale: en_US
|
||||
System encoding: UTF-8
|
||||
File encoding: UTF-8
|
||||
CPU: 12x Intel(R) Core(TM) i5-10600K CPU @ 4.10GHz
|
||||
|
||||
-- Meteor Client --
|
||||
|
||||
Version: 0.5.8
|
||||
Dev Build: 2125
|
||||
@@ -0,0 +1,134 @@
|
||||
---- Minecraft Crash Report ----
|
||||
// Surprise! Haha. Well, this is awkward.
|
||||
|
||||
Time: 2024-07-10 23:09:00
|
||||
Description: Initializing game
|
||||
|
||||
java.lang.BootstrapMethodError: java.lang.RuntimeException: Mixin transformation of net.minecraft.client.render.GameRenderer failed
|
||||
at net.minecraft.client.render.RenderPhase.<clinit>(RenderPhase.java:126)
|
||||
at net.minecraft.client.font.TextRenderLayerSet.of(TextRenderLayerSet.java:22)
|
||||
at net.minecraft.client.font.FontStorage.getGlyphRenderer(FontStorage.java:176)
|
||||
at net.minecraft.client.font.BuiltinEmptyGlyph.bake(BuiltinEmptyGlyph.java:53)
|
||||
at net.minecraft.client.font.FontStorage.clear(FontStorage.java:65)
|
||||
at net.minecraft.client.font.FontStorage.setActiveFilters(FontStorage.java:54)
|
||||
at net.minecraft.client.font.FontStorage.setFonts(FontStorage.java:49)
|
||||
at net.minecraft.client.font.FontManager.method_27540(FontManager.java:66)
|
||||
at net.minecraft.util.Util.make(Util.java:537)
|
||||
at net.minecraft.client.font.FontManager.<init>(FontManager.java:66)
|
||||
at net.minecraft.client.MinecraftClient.<init>(MinecraftClient.java:558)
|
||||
at net.minecraft.client.main.Main.main(Main.java:239)
|
||||
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)
|
||||
Caused by: java.lang.RuntimeException: Mixin transformation of net.minecraft.client.render.GameRenderer failed
|
||||
at net.fabricmc.loader.impl.launch.knot.KnotClassDelegate.getPostMixinClassByteArray(KnotClassDelegate.java:427)
|
||||
at net.fabricmc.loader.impl.launch.knot.KnotClassDelegate.tryLoadClass(KnotClassDelegate.java:323)
|
||||
at net.fabricmc.loader.impl.launch.knot.KnotClassDelegate.loadClass(KnotClassDelegate.java:218)
|
||||
at net.fabricmc.loader.impl.launch.knot.KnotClassLoader.loadClass(KnotClassLoader.java:119)
|
||||
at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:525)
|
||||
... 16 more
|
||||
Caused by: org.spongepowered.asm.mixin.transformer.throwables.MixinTransformerError: An unexpected critical error was encountered
|
||||
at org.spongepowered.asm.mixin.transformer.MixinProcessor.applyMixins(MixinProcessor.java:392)
|
||||
at org.spongepowered.asm.mixin.transformer.MixinTransformer.transformClass(MixinTransformer.java:234)
|
||||
at org.spongepowered.asm.mixin.transformer.MixinTransformer.transformClassBytes(MixinTransformer.java:202)
|
||||
at meteordevelopment.meteorclient.asm.Asm$Transformer.transformClassBytes(Asm.java:104)
|
||||
at net.fabricmc.loader.impl.launch.knot.KnotClassDelegate.getPostMixinClassByteArray(KnotClassDelegate.java:422)
|
||||
... 20 more
|
||||
Caused by: org.spongepowered.asm.mixin.injection.throwables.InjectionError: LVT in net/minecraft/client/render/GameRenderer::render(Lnet/minecraft/client/render/RenderTickCounter;Z)V has incompatible changes at opcode 0 in callback addon-template.mixins.json:ExampleMixin from mod addon-template->@Inject::render(Lnet/minecraft/client/MinecraftClient;ZLorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;Lnet/minecraft/client/MinecraftClient;)V.
|
||||
Expected: [Lnet/minecraft/client/MinecraftClient;]
|
||||
Found: []
|
||||
Available: []
|
||||
at org.spongepowered.asm.mixin.injection.callback.CallbackInjector.inject(CallbackInjector.java:544)
|
||||
at org.spongepowered.asm.mixin.injection.callback.CallbackInjector.inject(CallbackInjector.java:494)
|
||||
at org.spongepowered.asm.mixin.injection.code.Injector.inject(Injector.java:277)
|
||||
at org.spongepowered.asm.mixin.injection.struct.InjectionInfo.inject(InjectionInfo.java:445)
|
||||
at org.spongepowered.asm.mixin.transformer.MixinTargetContext.applyInjections(MixinTargetContext.java:1377)
|
||||
at org.spongepowered.asm.mixin.transformer.MixinApplicatorStandard.applyInjections(MixinApplicatorStandard.java:1062)
|
||||
at org.spongepowered.asm.mixin.transformer.MixinApplicatorStandard.applyMixin(MixinApplicatorStandard.java:402)
|
||||
at org.spongepowered.asm.mixin.transformer.MixinApplicatorStandard.apply(MixinApplicatorStandard.java:327)
|
||||
at org.spongepowered.asm.mixin.transformer.TargetClassContext.apply(TargetClassContext.java:422)
|
||||
at org.spongepowered.asm.mixin.transformer.TargetClassContext.applyMixins(TargetClassContext.java:403)
|
||||
at org.spongepowered.asm.mixin.transformer.MixinProcessor.applyMixins(MixinProcessor.java:363)
|
||||
... 24 more
|
||||
|
||||
|
||||
A detailed walkthrough of the error, its code path and all known details is as follows:
|
||||
---------------------------------------------------------------------------------------
|
||||
|
||||
-- Head --
|
||||
Thread: Render thread
|
||||
Stacktrace:
|
||||
at net.minecraft.client.render.RenderPhase.<clinit>(RenderPhase.java:126)
|
||||
at net.minecraft.client.font.TextRenderLayerSet.of(TextRenderLayerSet.java:22)
|
||||
at net.minecraft.client.font.FontStorage.getGlyphRenderer(FontStorage.java:176)
|
||||
at net.minecraft.client.font.BuiltinEmptyGlyph.bake(BuiltinEmptyGlyph.java:53)
|
||||
at net.minecraft.client.font.FontStorage.clear(FontStorage.java:65)
|
||||
at net.minecraft.client.font.FontStorage.setActiveFilters(FontStorage.java:54)
|
||||
at net.minecraft.client.font.FontStorage.setFonts(FontStorage.java:49)
|
||||
at net.minecraft.client.font.FontManager.method_27540(FontManager.java:66)
|
||||
at net.minecraft.util.Util.make(Util.java:537)
|
||||
at net.minecraft.client.font.FontManager.<init>(FontManager.java:66)
|
||||
at net.minecraft.client.MinecraftClient.<init>(MinecraftClient.java:558)
|
||||
|
||||
-- Initialization --
|
||||
Details:
|
||||
Modules:
|
||||
Stacktrace:
|
||||
at net.minecraft.client.main.Main.main(Main.java:239)
|
||||
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.21
|
||||
Minecraft Version ID: 1.21
|
||||
Operating System: Linux (amd64) version 6.8.9-arch1-2
|
||||
Java Version: 22, N/A
|
||||
Java VM Version: OpenJDK 64-Bit Server VM (mixed mode, sharing), Oracle Corporation
|
||||
Memory: 134156360 bytes (127 MiB) / 467664896 bytes (446 MiB) up to 4173332480 bytes (3980 MiB)
|
||||
CPUs: 12
|
||||
Processor Vendor: GenuineIntel
|
||||
Processor Name: Intel(R) Core(TM) i5-10600K CPU @ 4.10GHz
|
||||
Identifier: Intel64 Family 6 Model 165 Stepping 5
|
||||
Microarchitecture: Comet Lake
|
||||
Frequency (GHz): 4.10
|
||||
Number of physical packages: 1
|
||||
Number of physical CPUs: 6
|
||||
Number of logical CPUs: 12
|
||||
Graphics card #0 name: GA104 [GeForce RTX 3070]
|
||||
Graphics card #0 vendor: NVIDIA Corporation (0x10de)
|
||||
Graphics card #0 VRAM (MiB): 288.00
|
||||
Graphics card #0 deviceId: 0x2484
|
||||
Graphics card #0 versionInfo: unknown
|
||||
Virtual memory max (MiB): 12052.49
|
||||
Virtual memory used (MiB): 12854.67
|
||||
Swap memory total (MiB): 4096.00
|
||||
Swap memory used (MiB): 2851.57
|
||||
Space in storage for jna.tmpdir (MiB): <path not set>
|
||||
Space in storage for org.lwjgl.system.SharedLibraryExtractPath (MiB): <path not set>
|
||||
Space in storage for io.netty.native.workdir (MiB): <path not set>
|
||||
Space in storage for java.io.tmpdir (MiB): available: 7884.32, total: 7956.49
|
||||
Space in storage for workdir (MiB): available: 333753.44, total: 467346.75
|
||||
JVM Flags: 0 total;
|
||||
Launched Version: Fabric
|
||||
Backend library: LWJGL version 3.3.3-snapshot
|
||||
Backend API: NV174 GL version 4.3 (Core Profile) Mesa 24.0.7-arch1.3, Mesa
|
||||
Window size: <not initialized>
|
||||
GFLW Platform: x11
|
||||
GL Caps: Using framebuffer using OpenGL 3.2
|
||||
GL debug messages:
|
||||
Is Modded: Definitely; Client brand changed to 'fabric'
|
||||
Universe: 404
|
||||
Type: Client (map_client.txt)
|
||||
Locale: en_US
|
||||
System encoding: UTF-8
|
||||
File encoding: UTF-8
|
||||
CPU: 12x Intel(R) Core(TM) i5-10600K CPU @ 4.10GHz
|
||||
|
||||
-- Meteor Client --
|
||||
|
||||
Version: 0.5.8
|
||||
Dev Build: 2125
|
||||
@@ -0,0 +1,131 @@
|
||||
---- Minecraft Crash Report ----
|
||||
// This doesn't make any sense!
|
||||
|
||||
Time: 2024-07-10 23:52:09
|
||||
Description: Initializing game
|
||||
|
||||
java.lang.BootstrapMethodError: java.lang.RuntimeException: Mixin transformation of net.minecraft.client.render.GameRenderer failed
|
||||
at net.minecraft.client.render.RenderPhase.<clinit>(RenderPhase.java:478)
|
||||
at net.minecraft.client.font.TextRenderLayerSet.of(TextRenderLayerSet.java:17)
|
||||
at net.minecraft.client.font.FontStorage.getGlyphRenderer(FontStorage.java:173)
|
||||
at net.minecraft.client.font.BuiltinEmptyGlyph.bake(BuiltinEmptyGlyph.java:47)
|
||||
at net.minecraft.client.font.FontStorage.clear(FontStorage.java:58)
|
||||
at net.minecraft.client.font.FontStorage.setActiveFilters(FontStorage.java:49)
|
||||
at net.minecraft.client.font.FontStorage.setFonts(FontStorage.java:44)
|
||||
at net.minecraft.client.font.FontManager.method_27540(FontManager.java:64)
|
||||
at net.minecraft.util.Util.make(Util.java:575)
|
||||
at net.minecraft.client.font.FontManager.<init>(FontManager.java:64)
|
||||
at net.minecraft.client.MinecraftClient.<init>(MinecraftClient.java:593)
|
||||
at net.minecraft.client.main.Main.main(Main.java:212)
|
||||
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)
|
||||
Caused by: java.lang.RuntimeException: Mixin transformation of net.minecraft.client.render.GameRenderer failed
|
||||
at net.fabricmc.loader.impl.launch.knot.KnotClassDelegate.getPostMixinClassByteArray(KnotClassDelegate.java:427)
|
||||
at net.fabricmc.loader.impl.launch.knot.KnotClassDelegate.tryLoadClass(KnotClassDelegate.java:323)
|
||||
at net.fabricmc.loader.impl.launch.knot.KnotClassDelegate.loadClass(KnotClassDelegate.java:218)
|
||||
at net.fabricmc.loader.impl.launch.knot.KnotClassLoader.loadClass(KnotClassLoader.java:119)
|
||||
at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:525)
|
||||
... 16 more
|
||||
Caused by: org.spongepowered.asm.mixin.transformer.throwables.MixinTransformerError: An unexpected critical error was encountered
|
||||
at org.spongepowered.asm.mixin.transformer.MixinProcessor.applyMixins(MixinProcessor.java:392)
|
||||
at org.spongepowered.asm.mixin.transformer.MixinTransformer.transformClass(MixinTransformer.java:234)
|
||||
at org.spongepowered.asm.mixin.transformer.MixinTransformer.transformClassBytes(MixinTransformer.java:202)
|
||||
at meteordevelopment.meteorclient.asm.Asm$Transformer.transformClassBytes(Asm.java:104)
|
||||
at net.fabricmc.loader.impl.launch.knot.KnotClassDelegate.getPostMixinClassByteArray(KnotClassDelegate.java:422)
|
||||
... 20 more
|
||||
Caused by: org.spongepowered.asm.mixin.injection.throwables.InjectionError: Invalid descriptor on addon-template.mixins.json:MixinGameRenderer from mod addon-template->@Inject::render(Lnet/minecraft/client/render/RenderTickCounter;Z)V! Expected (Lnet/minecraft/client/render/RenderTickCounter;ZLorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V but found (Lnet/minecraft/client/render/RenderTickCounter;Z)V
|
||||
at org.spongepowered.asm.mixin.injection.callback.CallbackInjector.inject(CallbackInjector.java:544)
|
||||
at org.spongepowered.asm.mixin.injection.callback.CallbackInjector.inject(CallbackInjector.java:494)
|
||||
at org.spongepowered.asm.mixin.injection.code.Injector.inject(Injector.java:277)
|
||||
at org.spongepowered.asm.mixin.injection.struct.InjectionInfo.inject(InjectionInfo.java:445)
|
||||
at org.spongepowered.asm.mixin.transformer.MixinTargetContext.applyInjections(MixinTargetContext.java:1377)
|
||||
at org.spongepowered.asm.mixin.transformer.MixinApplicatorStandard.applyInjections(MixinApplicatorStandard.java:1062)
|
||||
at org.spongepowered.asm.mixin.transformer.MixinApplicatorStandard.applyMixin(MixinApplicatorStandard.java:402)
|
||||
at org.spongepowered.asm.mixin.transformer.MixinApplicatorStandard.apply(MixinApplicatorStandard.java:327)
|
||||
at org.spongepowered.asm.mixin.transformer.TargetClassContext.apply(TargetClassContext.java:422)
|
||||
at org.spongepowered.asm.mixin.transformer.TargetClassContext.applyMixins(TargetClassContext.java:403)
|
||||
at org.spongepowered.asm.mixin.transformer.MixinProcessor.applyMixins(MixinProcessor.java:363)
|
||||
... 24 more
|
||||
|
||||
|
||||
A detailed walkthrough of the error, its code path and all known details is as follows:
|
||||
---------------------------------------------------------------------------------------
|
||||
|
||||
-- Head --
|
||||
Thread: Render thread
|
||||
Stacktrace:
|
||||
at net.minecraft.client.render.RenderPhase.<clinit>(RenderPhase.java:478)
|
||||
at net.minecraft.client.font.TextRenderLayerSet.of(TextRenderLayerSet.java:17)
|
||||
at net.minecraft.client.font.FontStorage.getGlyphRenderer(FontStorage.java:173)
|
||||
at net.minecraft.client.font.BuiltinEmptyGlyph.bake(BuiltinEmptyGlyph.java:47)
|
||||
at net.minecraft.client.font.FontStorage.clear(FontStorage.java:58)
|
||||
at net.minecraft.client.font.FontStorage.setActiveFilters(FontStorage.java:49)
|
||||
at net.minecraft.client.font.FontStorage.setFonts(FontStorage.java:44)
|
||||
at net.minecraft.client.font.FontManager.method_27540(FontManager.java:64)
|
||||
at net.minecraft.util.Util.make(Util.java:575)
|
||||
at net.minecraft.client.font.FontManager.<init>(FontManager.java:64)
|
||||
at net.minecraft.client.MinecraftClient.<init>(MinecraftClient.java:593)
|
||||
|
||||
-- Initialization --
|
||||
Details:
|
||||
Modules:
|
||||
Stacktrace:
|
||||
at net.minecraft.client.main.Main.main(Main.java:212)
|
||||
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.21
|
||||
Minecraft Version ID: 1.21
|
||||
Operating System: Linux (amd64) version 6.8.9-arch1-2
|
||||
Java Version: 22, N/A
|
||||
Java VM Version: OpenJDK 64-Bit Server VM (mixed mode, sharing), Oracle Corporation
|
||||
Memory: 203502272 bytes (194 MiB) / 513802240 bytes (490 MiB) up to 4173332480 bytes (3980 MiB)
|
||||
CPUs: 12
|
||||
Processor Vendor: GenuineIntel
|
||||
Processor Name: Intel(R) Core(TM) i5-10600K CPU @ 4.10GHz
|
||||
Identifier: Intel64 Family 6 Model 165 Stepping 5
|
||||
Microarchitecture: Comet Lake
|
||||
Frequency (GHz): 4.10
|
||||
Number of physical packages: 1
|
||||
Number of physical CPUs: 6
|
||||
Number of logical CPUs: 12
|
||||
Graphics card #0 name: GA104 [GeForce RTX 3070]
|
||||
Graphics card #0 vendor: NVIDIA Corporation (0x10de)
|
||||
Graphics card #0 VRAM (MiB): 288.00
|
||||
Graphics card #0 deviceId: 0x2484
|
||||
Graphics card #0 versionInfo: unknown
|
||||
Virtual memory max (MiB): 12052.49
|
||||
Virtual memory used (MiB): 13174.52
|
||||
Swap memory total (MiB): 4096.00
|
||||
Swap memory used (MiB): 3168.00
|
||||
Space in storage for jna.tmpdir (MiB): <path not set>
|
||||
Space in storage for org.lwjgl.system.SharedLibraryExtractPath (MiB): <path not set>
|
||||
Space in storage for io.netty.native.workdir (MiB): <path not set>
|
||||
Space in storage for java.io.tmpdir (MiB): available: 7867.13, total: 7956.49
|
||||
Space in storage for workdir (MiB): available: 333738.03, total: 467346.75
|
||||
JVM Flags: 0 total;
|
||||
Launched Version: Fabric
|
||||
Backend library: LWJGL version 3.3.3-snapshot
|
||||
Backend API: NV174 GL version 4.3 (Core Profile) Mesa 24.0.7-arch1.3, Mesa
|
||||
Window size: <not initialized>
|
||||
GFLW Platform: x11
|
||||
GL Caps: Using framebuffer using OpenGL 3.2
|
||||
GL debug messages:
|
||||
Is Modded: Definitely; Client brand changed to 'fabric'
|
||||
Universe: 404
|
||||
Type: Client (map_client.txt)
|
||||
Locale: en_US
|
||||
System encoding: UTF-8
|
||||
File encoding: UTF-8
|
||||
CPU: 12x Intel(R) Core(TM) i5-10600K CPU @ 4.10GHz
|
||||
|
||||
-- Meteor Client --
|
||||
|
||||
Version: 0.5.8
|
||||
Dev Build: 2125
|
||||
@@ -0,0 +1,136 @@
|
||||
---- Minecraft Crash Report ----
|
||||
// My bad.
|
||||
|
||||
Time: 2024-07-10 23:52:28
|
||||
Description: Initializing game
|
||||
|
||||
java.lang.BootstrapMethodError: java.lang.RuntimeException: Mixin transformation of net.minecraft.client.render.GameRenderer failed
|
||||
at net.minecraft.client.render.RenderPhase.<clinit>(RenderPhase.java:478)
|
||||
at net.minecraft.client.font.TextRenderLayerSet.of(TextRenderLayerSet.java:17)
|
||||
at net.minecraft.client.font.FontStorage.getGlyphRenderer(FontStorage.java:173)
|
||||
at net.minecraft.client.font.BuiltinEmptyGlyph.bake(BuiltinEmptyGlyph.java:47)
|
||||
at net.minecraft.client.font.FontStorage.clear(FontStorage.java:58)
|
||||
at net.minecraft.client.font.FontStorage.setActiveFilters(FontStorage.java:49)
|
||||
at net.minecraft.client.font.FontStorage.setFonts(FontStorage.java:44)
|
||||
at net.minecraft.client.font.FontManager.method_27540(FontManager.java:64)
|
||||
at net.minecraft.util.Util.make(Util.java:575)
|
||||
at net.minecraft.client.font.FontManager.<init>(FontManager.java:64)
|
||||
at net.minecraft.client.MinecraftClient.<init>(MinecraftClient.java:593)
|
||||
at net.minecraft.client.main.Main.main(Main.java:212)
|
||||
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)
|
||||
Caused by: java.lang.RuntimeException: Mixin transformation of net.minecraft.client.render.GameRenderer failed
|
||||
at net.fabricmc.loader.impl.launch.knot.KnotClassDelegate.getPostMixinClassByteArray(KnotClassDelegate.java:427)
|
||||
at net.fabricmc.loader.impl.launch.knot.KnotClassDelegate.tryLoadClass(KnotClassDelegate.java:323)
|
||||
at net.fabricmc.loader.impl.launch.knot.KnotClassDelegate.loadClass(KnotClassDelegate.java:218)
|
||||
at net.fabricmc.loader.impl.launch.knot.KnotClassLoader.loadClass(KnotClassLoader.java:119)
|
||||
at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:525)
|
||||
... 16 more
|
||||
Caused by: org.spongepowered.asm.mixin.transformer.throwables.MixinTransformerError: An unexpected critical error was encountered
|
||||
at org.spongepowered.asm.mixin.transformer.MixinProcessor.applyMixins(MixinProcessor.java:392)
|
||||
at org.spongepowered.asm.mixin.transformer.MixinTransformer.transformClass(MixinTransformer.java:234)
|
||||
at org.spongepowered.asm.mixin.transformer.MixinTransformer.transformClassBytes(MixinTransformer.java:202)
|
||||
at meteordevelopment.meteorclient.asm.Asm$Transformer.transformClassBytes(Asm.java:104)
|
||||
at net.fabricmc.loader.impl.launch.knot.KnotClassDelegate.getPostMixinClassByteArray(KnotClassDelegate.java:422)
|
||||
... 20 more
|
||||
Caused by: org.spongepowered.asm.mixin.throwables.MixinApplyError: Mixin [addon-template.mixins.json:MixinGameRenderer from mod addon-template] from phase [DEFAULT] in config [addon-template.mixins.json] FAILED during APPLY
|
||||
at org.spongepowered.asm.mixin.transformer.MixinProcessor.handleMixinError(MixinProcessor.java:638)
|
||||
at org.spongepowered.asm.mixin.transformer.MixinProcessor.handleMixinApplyError(MixinProcessor.java:589)
|
||||
at org.spongepowered.asm.mixin.transformer.MixinProcessor.applyMixins(MixinProcessor.java:379)
|
||||
... 24 more
|
||||
Caused by: org.spongepowered.asm.mixin.injection.throwables.InvalidInjectionException: Invalid descriptor on addon-template.mixins.json:MixinGameRenderer from mod addon-template->@Inject::render(Lnet/minecraft/client/render/RenderTickCounter;Z)V! Expected (Lnet/minecraft/client/render/RenderTickCounter;ZLorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V but found (Lnet/minecraft/client/render/RenderTickCounter;Z)V [INJECT Applicator Phase -> addon-template.mixins.json:MixinGameRenderer from mod addon-template -> Apply Injections -> -> Inject -> addon-template.mixins.json:MixinGameRenderer from mod addon-template->@Inject::render(Lnet/minecraft/client/render/RenderTickCounter;Z)V]
|
||||
at org.spongepowered.asm.mixin.injection.callback.CallbackInjector.inject(CallbackInjector.java:564)
|
||||
at org.spongepowered.asm.mixin.injection.callback.CallbackInjector.inject(CallbackInjector.java:494)
|
||||
at org.spongepowered.asm.mixin.injection.code.Injector.inject(Injector.java:277)
|
||||
at org.spongepowered.asm.mixin.injection.struct.InjectionInfo.inject(InjectionInfo.java:445)
|
||||
at org.spongepowered.asm.mixin.transformer.MixinTargetContext.applyInjections(MixinTargetContext.java:1377)
|
||||
at org.spongepowered.asm.mixin.transformer.MixinApplicatorStandard.applyInjections(MixinApplicatorStandard.java:1062)
|
||||
at org.spongepowered.asm.mixin.transformer.MixinApplicatorStandard.applyMixin(MixinApplicatorStandard.java:402)
|
||||
at org.spongepowered.asm.mixin.transformer.MixinApplicatorStandard.apply(MixinApplicatorStandard.java:327)
|
||||
at org.spongepowered.asm.mixin.transformer.TargetClassContext.apply(TargetClassContext.java:422)
|
||||
at org.spongepowered.asm.mixin.transformer.TargetClassContext.applyMixins(TargetClassContext.java:403)
|
||||
at org.spongepowered.asm.mixin.transformer.MixinProcessor.applyMixins(MixinProcessor.java:363)
|
||||
... 24 more
|
||||
|
||||
|
||||
A detailed walkthrough of the error, its code path and all known details is as follows:
|
||||
---------------------------------------------------------------------------------------
|
||||
|
||||
-- Head --
|
||||
Thread: Render thread
|
||||
Stacktrace:
|
||||
at net.minecraft.client.render.RenderPhase.<clinit>(RenderPhase.java:478)
|
||||
at net.minecraft.client.font.TextRenderLayerSet.of(TextRenderLayerSet.java:17)
|
||||
at net.minecraft.client.font.FontStorage.getGlyphRenderer(FontStorage.java:173)
|
||||
at net.minecraft.client.font.BuiltinEmptyGlyph.bake(BuiltinEmptyGlyph.java:47)
|
||||
at net.minecraft.client.font.FontStorage.clear(FontStorage.java:58)
|
||||
at net.minecraft.client.font.FontStorage.setActiveFilters(FontStorage.java:49)
|
||||
at net.minecraft.client.font.FontStorage.setFonts(FontStorage.java:44)
|
||||
at net.minecraft.client.font.FontManager.method_27540(FontManager.java:64)
|
||||
at net.minecraft.util.Util.make(Util.java:575)
|
||||
at net.minecraft.client.font.FontManager.<init>(FontManager.java:64)
|
||||
at net.minecraft.client.MinecraftClient.<init>(MinecraftClient.java:593)
|
||||
|
||||
-- Initialization --
|
||||
Details:
|
||||
Modules:
|
||||
Stacktrace:
|
||||
at net.minecraft.client.main.Main.main(Main.java:212)
|
||||
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.21
|
||||
Minecraft Version ID: 1.21
|
||||
Operating System: Linux (amd64) version 6.8.9-arch1-2
|
||||
Java Version: 22, N/A
|
||||
Java VM Version: OpenJDK 64-Bit Server VM (mixed mode, sharing), Oracle Corporation
|
||||
Memory: 134204864 bytes (127 MiB) / 473956352 bytes (452 MiB) up to 4173332480 bytes (3980 MiB)
|
||||
CPUs: 12
|
||||
Processor Vendor: GenuineIntel
|
||||
Processor Name: Intel(R) Core(TM) i5-10600K CPU @ 4.10GHz
|
||||
Identifier: Intel64 Family 6 Model 165 Stepping 5
|
||||
Microarchitecture: Comet Lake
|
||||
Frequency (GHz): 4.10
|
||||
Number of physical packages: 1
|
||||
Number of physical CPUs: 6
|
||||
Number of logical CPUs: 12
|
||||
Graphics card #0 name: GA104 [GeForce RTX 3070]
|
||||
Graphics card #0 vendor: NVIDIA Corporation (0x10de)
|
||||
Graphics card #0 VRAM (MiB): 288.00
|
||||
Graphics card #0 deviceId: 0x2484
|
||||
Graphics card #0 versionInfo: unknown
|
||||
Virtual memory max (MiB): 12052.49
|
||||
Virtual memory used (MiB): 13152.64
|
||||
Swap memory total (MiB): 4096.00
|
||||
Swap memory used (MiB): 3167.00
|
||||
Space in storage for jna.tmpdir (MiB): <path not set>
|
||||
Space in storage for org.lwjgl.system.SharedLibraryExtractPath (MiB): <path not set>
|
||||
Space in storage for io.netty.native.workdir (MiB): <path not set>
|
||||
Space in storage for java.io.tmpdir (MiB): available: 7867.09, total: 7956.49
|
||||
Space in storage for workdir (MiB): available: 333737.91, total: 467346.75
|
||||
JVM Flags: 0 total;
|
||||
Launched Version: Fabric
|
||||
Backend library: LWJGL version 3.3.3-snapshot
|
||||
Backend API: NV174 GL version 4.3 (Core Profile) Mesa 24.0.7-arch1.3, Mesa
|
||||
Window size: <not initialized>
|
||||
GFLW Platform: x11
|
||||
GL Caps: Using framebuffer using OpenGL 3.2
|
||||
GL debug messages:
|
||||
Is Modded: Definitely; Client brand changed to 'fabric'
|
||||
Universe: 404
|
||||
Type: Client (map_client.txt)
|
||||
Locale: en_US
|
||||
System encoding: UTF-8
|
||||
File encoding: UTF-8
|
||||
CPU: 12x Intel(R) Core(TM) i5-10600K CPU @ 4.10GHz
|
||||
|
||||
-- Meteor Client --
|
||||
|
||||
Version: 0.5.8
|
||||
Dev Build: 2125
|
||||
@@ -0,0 +1,136 @@
|
||||
---- Minecraft Crash Report ----
|
||||
// I'm sorry, Dave.
|
||||
|
||||
Time: 2024-07-10 23:53:12
|
||||
Description: Initializing game
|
||||
|
||||
java.lang.BootstrapMethodError: java.lang.RuntimeException: Mixin transformation of net.minecraft.client.render.GameRenderer failed
|
||||
at net.minecraft.client.render.RenderPhase.<clinit>(RenderPhase.java:478)
|
||||
at net.minecraft.client.font.TextRenderLayerSet.of(TextRenderLayerSet.java:17)
|
||||
at net.minecraft.client.font.FontStorage.getGlyphRenderer(FontStorage.java:173)
|
||||
at net.minecraft.client.font.BuiltinEmptyGlyph.bake(BuiltinEmptyGlyph.java:47)
|
||||
at net.minecraft.client.font.FontStorage.clear(FontStorage.java:58)
|
||||
at net.minecraft.client.font.FontStorage.setActiveFilters(FontStorage.java:49)
|
||||
at net.minecraft.client.font.FontStorage.setFonts(FontStorage.java:44)
|
||||
at net.minecraft.client.font.FontManager.method_27540(FontManager.java:64)
|
||||
at net.minecraft.util.Util.make(Util.java:575)
|
||||
at net.minecraft.client.font.FontManager.<init>(FontManager.java:64)
|
||||
at net.minecraft.client.MinecraftClient.<init>(MinecraftClient.java:593)
|
||||
at net.minecraft.client.main.Main.main(Main.java:212)
|
||||
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)
|
||||
Caused by: java.lang.RuntimeException: Mixin transformation of net.minecraft.client.render.GameRenderer failed
|
||||
at net.fabricmc.loader.impl.launch.knot.KnotClassDelegate.getPostMixinClassByteArray(KnotClassDelegate.java:427)
|
||||
at net.fabricmc.loader.impl.launch.knot.KnotClassDelegate.tryLoadClass(KnotClassDelegate.java:323)
|
||||
at net.fabricmc.loader.impl.launch.knot.KnotClassDelegate.loadClass(KnotClassDelegate.java:218)
|
||||
at net.fabricmc.loader.impl.launch.knot.KnotClassLoader.loadClass(KnotClassLoader.java:119)
|
||||
at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:525)
|
||||
... 16 more
|
||||
Caused by: org.spongepowered.asm.mixin.transformer.throwables.MixinTransformerError: An unexpected critical error was encountered
|
||||
at org.spongepowered.asm.mixin.transformer.MixinProcessor.applyMixins(MixinProcessor.java:392)
|
||||
at org.spongepowered.asm.mixin.transformer.MixinTransformer.transformClass(MixinTransformer.java:234)
|
||||
at org.spongepowered.asm.mixin.transformer.MixinTransformer.transformClassBytes(MixinTransformer.java:202)
|
||||
at meteordevelopment.meteorclient.asm.Asm$Transformer.transformClassBytes(Asm.java:104)
|
||||
at net.fabricmc.loader.impl.launch.knot.KnotClassDelegate.getPostMixinClassByteArray(KnotClassDelegate.java:422)
|
||||
... 20 more
|
||||
Caused by: org.spongepowered.asm.mixin.throwables.MixinApplyError: Mixin [addon-template.mixins.json:MixinGameRenderer from mod addon-template] from phase [DEFAULT] in config [addon-template.mixins.json] FAILED during APPLY
|
||||
at org.spongepowered.asm.mixin.transformer.MixinProcessor.handleMixinError(MixinProcessor.java:638)
|
||||
at org.spongepowered.asm.mixin.transformer.MixinProcessor.handleMixinApplyError(MixinProcessor.java:589)
|
||||
at org.spongepowered.asm.mixin.transformer.MixinProcessor.applyMixins(MixinProcessor.java:379)
|
||||
... 24 more
|
||||
Caused by: org.spongepowered.asm.mixin.injection.throwables.InvalidInjectionException: Invalid descriptor on addon-template.mixins.json:MixinGameRenderer from mod addon-template->@Inject::render(Lnet/minecraft/client/render/RenderTickCounter;Z)V! Expected (Lnet/minecraft/client/render/RenderTickCounter;ZLorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V but found (Lnet/minecraft/client/render/RenderTickCounter;Z)V [INJECT Applicator Phase -> addon-template.mixins.json:MixinGameRenderer from mod addon-template -> Apply Injections -> -> Inject -> addon-template.mixins.json:MixinGameRenderer from mod addon-template->@Inject::render(Lnet/minecraft/client/render/RenderTickCounter;Z)V]
|
||||
at org.spongepowered.asm.mixin.injection.callback.CallbackInjector.inject(CallbackInjector.java:564)
|
||||
at org.spongepowered.asm.mixin.injection.callback.CallbackInjector.inject(CallbackInjector.java:494)
|
||||
at org.spongepowered.asm.mixin.injection.code.Injector.inject(Injector.java:277)
|
||||
at org.spongepowered.asm.mixin.injection.struct.InjectionInfo.inject(InjectionInfo.java:445)
|
||||
at org.spongepowered.asm.mixin.transformer.MixinTargetContext.applyInjections(MixinTargetContext.java:1377)
|
||||
at org.spongepowered.asm.mixin.transformer.MixinApplicatorStandard.applyInjections(MixinApplicatorStandard.java:1062)
|
||||
at org.spongepowered.asm.mixin.transformer.MixinApplicatorStandard.applyMixin(MixinApplicatorStandard.java:402)
|
||||
at org.spongepowered.asm.mixin.transformer.MixinApplicatorStandard.apply(MixinApplicatorStandard.java:327)
|
||||
at org.spongepowered.asm.mixin.transformer.TargetClassContext.apply(TargetClassContext.java:422)
|
||||
at org.spongepowered.asm.mixin.transformer.TargetClassContext.applyMixins(TargetClassContext.java:403)
|
||||
at org.spongepowered.asm.mixin.transformer.MixinProcessor.applyMixins(MixinProcessor.java:363)
|
||||
... 24 more
|
||||
|
||||
|
||||
A detailed walkthrough of the error, its code path and all known details is as follows:
|
||||
---------------------------------------------------------------------------------------
|
||||
|
||||
-- Head --
|
||||
Thread: Render thread
|
||||
Stacktrace:
|
||||
at net.minecraft.client.render.RenderPhase.<clinit>(RenderPhase.java:478)
|
||||
at net.minecraft.client.font.TextRenderLayerSet.of(TextRenderLayerSet.java:17)
|
||||
at net.minecraft.client.font.FontStorage.getGlyphRenderer(FontStorage.java:173)
|
||||
at net.minecraft.client.font.BuiltinEmptyGlyph.bake(BuiltinEmptyGlyph.java:47)
|
||||
at net.minecraft.client.font.FontStorage.clear(FontStorage.java:58)
|
||||
at net.minecraft.client.font.FontStorage.setActiveFilters(FontStorage.java:49)
|
||||
at net.minecraft.client.font.FontStorage.setFonts(FontStorage.java:44)
|
||||
at net.minecraft.client.font.FontManager.method_27540(FontManager.java:64)
|
||||
at net.minecraft.util.Util.make(Util.java:575)
|
||||
at net.minecraft.client.font.FontManager.<init>(FontManager.java:64)
|
||||
at net.minecraft.client.MinecraftClient.<init>(MinecraftClient.java:593)
|
||||
|
||||
-- Initialization --
|
||||
Details:
|
||||
Modules:
|
||||
Stacktrace:
|
||||
at net.minecraft.client.main.Main.main(Main.java:212)
|
||||
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.21
|
||||
Minecraft Version ID: 1.21
|
||||
Operating System: Linux (amd64) version 6.8.9-arch1-2
|
||||
Java Version: 22, N/A
|
||||
Java VM Version: OpenJDK 64-Bit Server VM (mixed mode, sharing), Oracle Corporation
|
||||
Memory: 138760440 bytes (132 MiB) / 482344960 bytes (460 MiB) up to 4173332480 bytes (3980 MiB)
|
||||
CPUs: 12
|
||||
Processor Vendor: GenuineIntel
|
||||
Processor Name: Intel(R) Core(TM) i5-10600K CPU @ 4.10GHz
|
||||
Identifier: Intel64 Family 6 Model 165 Stepping 5
|
||||
Microarchitecture: Comet Lake
|
||||
Frequency (GHz): 4.10
|
||||
Number of physical packages: 1
|
||||
Number of physical CPUs: 6
|
||||
Number of logical CPUs: 12
|
||||
Graphics card #0 name: GA104 [GeForce RTX 3070]
|
||||
Graphics card #0 vendor: NVIDIA Corporation (0x10de)
|
||||
Graphics card #0 VRAM (MiB): 288.00
|
||||
Graphics card #0 deviceId: 0x2484
|
||||
Graphics card #0 versionInfo: unknown
|
||||
Virtual memory max (MiB): 12052.49
|
||||
Virtual memory used (MiB): 13178.89
|
||||
Swap memory total (MiB): 4096.00
|
||||
Swap memory used (MiB): 3166.50
|
||||
Space in storage for jna.tmpdir (MiB): <path not set>
|
||||
Space in storage for org.lwjgl.system.SharedLibraryExtractPath (MiB): <path not set>
|
||||
Space in storage for io.netty.native.workdir (MiB): <path not set>
|
||||
Space in storage for java.io.tmpdir (MiB): available: 7867.05, total: 7956.49
|
||||
Space in storage for workdir (MiB): available: 333737.81, total: 467346.75
|
||||
JVM Flags: 0 total;
|
||||
Launched Version: Fabric
|
||||
Backend library: LWJGL version 3.3.3-snapshot
|
||||
Backend API: NV174 GL version 4.3 (Core Profile) Mesa 24.0.7-arch1.3, Mesa
|
||||
Window size: <not initialized>
|
||||
GFLW Platform: x11
|
||||
GL Caps: Using framebuffer using OpenGL 3.2
|
||||
GL debug messages:
|
||||
Is Modded: Definitely; Client brand changed to 'fabric'
|
||||
Universe: 404
|
||||
Type: Client (map_client.txt)
|
||||
Locale: en_US
|
||||
System encoding: UTF-8
|
||||
File encoding: UTF-8
|
||||
CPU: 12x Intel(R) Core(TM) i5-10600K CPU @ 4.10GHz
|
||||
|
||||
-- Meteor Client --
|
||||
|
||||
Version: 0.5.8
|
||||
Dev Build: 2125
|
||||
|
After Width: | Height: | Size: 689 B |
|
After Width: | Height: | Size: 661 B |
|
After Width: | Height: | Size: 1.6 KiB |
|
After Width: | Height: | Size: 255 B |
|
After Width: | Height: | Size: 1.7 KiB |
|
After Width: | Height: | Size: 1.3 KiB |
@@ -0,0 +1,142 @@
|
||||
version:3953
|
||||
ao:true
|
||||
biomeBlendRadius:2
|
||||
enableVsync:true
|
||||
entityDistanceScaling:1.0
|
||||
entityShadows:true
|
||||
forceUnicodeFont:false
|
||||
japaneseGlyphVariants:false
|
||||
fov:0.0
|
||||
fovEffectScale:1.0
|
||||
darknessEffectScale:1.0
|
||||
glintSpeed:0.5
|
||||
glintStrength:0.75
|
||||
prioritizeChunkUpdates:0
|
||||
fullscreen:false
|
||||
gamma:0.5
|
||||
graphicsMode:1
|
||||
guiScale:0
|
||||
maxFps:120
|
||||
mipmapLevels:4
|
||||
narrator:0
|
||||
particles:0
|
||||
reducedDebugInfo:false
|
||||
renderClouds:"true"
|
||||
renderDistance:12
|
||||
simulationDistance:12
|
||||
screenEffectScale:1.0
|
||||
soundDevice:""
|
||||
autoJump:false
|
||||
operatorItemsTab:false
|
||||
autoSuggestions:true
|
||||
chatColors:true
|
||||
chatLinks:true
|
||||
chatLinksPrompt:true
|
||||
discrete_mouse_scroll:false
|
||||
invertYMouse:false
|
||||
realmsNotifications:true
|
||||
showSubtitles:false
|
||||
directionalAudio:false
|
||||
touchscreen:false
|
||||
bobView:true
|
||||
toggleCrouch:false
|
||||
toggleSprint:false
|
||||
darkMojangStudiosBackground:false
|
||||
hideLightningFlashes:false
|
||||
hideSplashTexts:false
|
||||
mouseSensitivity:0.5
|
||||
damageTiltStrength:1.0
|
||||
highContrast:false
|
||||
narratorHotkey:true
|
||||
resourcePacks:["fabric"]
|
||||
incompatibleResourcePacks:[]
|
||||
lastServer:
|
||||
lang:en_us
|
||||
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
|
||||
useNativeTransport:true
|
||||
mainHand:"right"
|
||||
attackIndicator:1
|
||||
tutorialStep:none
|
||||
mouseWheelSensitivity:1.0
|
||||
rawMouseInput:true
|
||||
glDebugVerbosity:1
|
||||
skipMultiplayerWarning:true
|
||||
hideMatchedNames:true
|
||||
joinedFirstServer:false
|
||||
hideBundleTutorial:false
|
||||
syncChunkWrites:false
|
||||
showAutosaveIndicator:true
|
||||
allowServerListing:true
|
||||
onlyShowSecureChat:false
|
||||
panoramaScrollSpeed:1.0
|
||||
telemetryOptInExtra:false
|
||||
onboardAccessibility:false
|
||||
menuBackgroundBlurriness:5
|
||||
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
|
||||
key_key.meteor-client.open-gui:key.keyboard.right.shift
|
||||
key_key.meteor-client.open-commands:key.keyboard.period
|
||||
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
|
||||