优化日志分析器 (#2038)
* 更新 CrashReportAnalyzer.java * Edit * Fix * add * 删除 CrashReportAnalyzerTest.java 试试删掉的话能不能构建成功 * Fix * Fix * Revert "删除 CrashReportAnalyzerTest.java" This reverts commit 4fe873cfcbf5fc8fb01be538dade637f12b917c0. * 换回 LibericaJDK * Fix 尴尬( * 更新 GameCrashWindow.java 修改大小以显示更多内容(防止左下角按钮被吞掉) * 更新 I18N_zh_CN.properties - 修改链接,可以跳转至特定地方 - 统一叫法 "全局(特定)游戏设置" - 将升级显卡的相关教程文章更换 * Fix * Update CrashReportAnalyzer.java * Fix - 删除重复检查项 * 添加日志检查 https://paste.ee/p/vv7DD * fix * add 怎么tm还来一个 * 更新 CrashReportAnalyzerTest.java * 调整 * fix * 更新 I18N_zh_CN.properties * 更新 I18N_zh_CN.properties * 添加重复安装 Optifine检查 https://github.com/huanghongxun/HMCL/discussions/1904#discussioncomment-4340734 * 添加重复安装 Forge 的检查 test 更新 CrashReportAnalyzer.java fix * 完善 OPTIFINE_IS_NOT_COMPATIBLE_WITH_FORGE 完善 OPTIFINE_IS_NOT_COMPATIBLE_WITH_FORGE https://github.com/huanghongxun/HMCL/discussions/1904#discussioncomment-4332485 https://github.com/huanghongxun/HMCL/discussions/1904#discussioncomment-4332522 * fix * 调整 FABRIC_WARNINGS https://paste.ee/p/KOTyX
This commit is contained in:
@@ -37,7 +37,7 @@ public final class CrashReportAnalyzer {
|
||||
|
||||
OPENJ9(Pattern.compile("(Open J9 is not supported|OpenJ9 is incompatible|\\.J9VMInternals\\.)")),
|
||||
TOO_OLD_JAVA(Pattern.compile("java\\.lang\\.UnsupportedClassVersionError: (.*?) version (?<expected>\\d+)\\.0"), "expected"),
|
||||
JVM_32BIT(Pattern.compile("(Could not reserve enough space for (.*?) object heap|The specified size exceeds the maximum representable size)")),
|
||||
JVM_32BIT(Pattern.compile("(Could not reserve enough space for (.*?)KB object heap|The specified size exceeds the maximum representable size)")),
|
||||
|
||||
// Some mods/shader packs do incorrect GL operations.
|
||||
GL_OPERATION_FAILURE(Pattern.compile("(1282: Invalid operation|Maybe try a lower resolution resourcepack\\?)")),
|
||||
@@ -46,7 +46,7 @@ public final class CrashReportAnalyzer {
|
||||
OPENGL_NOT_SUPPORTED(Pattern.compile("The driver does not appear to support OpenGL")),
|
||||
GRAPHICS_DRIVER(Pattern.compile("(Pixel format not accelerated|GLX: Failed to create context: GLXBadFBConfig|Couldn't set pixel format|net\\.minecraftforge\\.fml.client\\.SplashProgress|org\\.lwjgl\\.LWJGLException|EXCEPTION_ACCESS_VIOLATION(.|\\n|\\r)+# C {2}\\[(ig|atio|nvoglv))")),
|
||||
// Out of memory
|
||||
OUT_OF_MEMORY(Pattern.compile("(java\\.lang\\.OutOfMemoryError|The system is out of physical RAM or swap space)")),
|
||||
OUT_OF_MEMORY(Pattern.compile("(java\\.lang\\.OutOfMemoryError|The system is out of physical RAM or swap space|Out of Memory Error)")),
|
||||
// Memory exceeded
|
||||
MEMORY_EXCEEDED(Pattern.compile("There is insufficient memory for the Java Runtime Environment to continue")),
|
||||
// Too high resolution
|
||||
@@ -58,7 +58,7 @@ public final class CrashReportAnalyzer {
|
||||
// https://github.com/MinecraftForge/MinecraftForge/issues/7546
|
||||
MAC_JDK_8U261(Pattern.compile("Terminating app due to uncaught exception 'NSInternalInconsistencyException', reason: 'NSWindow drag regions should only be invalidated on the Main Thread!'")),
|
||||
// user modifies minecraft primary jar without changing hash file
|
||||
FILE_CHANGED(Pattern.compile("java\\.lang\\.SecurityException: SHA1 digest error for (?<file>.*)"), "file"),
|
||||
FILE_CHANGED(Pattern.compile("java\\.lang\\.SecurityException: SHA1 digest error for (?<file>.*)|signer information does not match signer information of other classes in the same package"), "file"),
|
||||
// mod loader/coremod injection fault, prompt user to reinstall game.
|
||||
NO_SUCH_METHOD_ERROR(Pattern.compile("java\\.lang\\.NoSuchMethodError: (?<class>.*?)"), "class"),
|
||||
// mod loader/coremod injection fault, prompt user to reinstall game.
|
||||
@@ -77,7 +77,7 @@ public final class CrashReportAnalyzer {
|
||||
FILE_ALREADY_EXISTS(Pattern.compile("java\\.nio\\.file\\.FileAlreadyExistsException: (?<file>.*)"), "file"),
|
||||
// Forge found some mod crashed in game loading
|
||||
LOADING_CRASHED_FORGE(Pattern.compile("LoaderExceptionModCrash: Caught exception from (?<name>.*?) \\((?<id>.*)\\)"), "name", "id"),
|
||||
BOOTSTRAP_FAILED(Pattern.compile("Failed to create mod instance. ModID: (?<id>.*?),"), "id"),
|
||||
BOOTSTRAP_FAILED(Pattern.compile("Failed to create mod instance\\. ModID: (?<id>.*?),"), "id"),
|
||||
// Fabric found some mod crashed in game loading
|
||||
LOADING_CRASHED_FABRIC(Pattern.compile("Could not execute entrypoint stage '(.*?)' due to errors, provided by '(?<id>.*)'!"), "id"),
|
||||
// Fabric may have breaking changes.
|
||||
@@ -88,25 +88,33 @@ public final class CrashReportAnalyzer {
|
||||
MODLAUNCHER_8(Pattern.compile("java\\.lang\\.NoSuchMethodError: ('void sun\\.security\\.util\\.ManifestEntryVerifier\\.<init>\\(java\\.util\\.jar\\.Manifest\\)'|sun\\.security\\.util\\.ManifestEntryVerifier\\.<init>\\(Ljava/util/jar/Manifest;\\)V)")),
|
||||
// Manually triggerd debug crash
|
||||
DEBUG_CRASH(Pattern.compile("Manually triggered debug crash")),
|
||||
//https://github.com/huanghongxun/HMCL/issues/1780
|
||||
PROCESSING_OF_JAVAAGENT_FAILED(Pattern.compile("processing of -javaagent failed")),
|
||||
CONFIG(Pattern.compile("Failed loading config file (?<file>.*?) of type SERVER for modid (?<id>.*)"), "id", "file"),
|
||||
// Fabric gives some warnings
|
||||
FABRIC_WARNINGS(Pattern.compile("Warnings were found!(.*?)[\\n\\r]+(?<reason>[^\\[]+)\\["), "reason"),
|
||||
FABRIC_WARNINGS(Pattern.compile("(Warnings were found!|Incompatible mod set!)(.*?)[\\n\\r]+(?<reason>[^\\[]+)\\["), "reason"),
|
||||
// Game crashed when ticking entity
|
||||
ENTITY(Pattern.compile("Entity Type: (?<type>.*)[\\w\\W\\n\\r]*?Entity's Exact location: (?<location>.*)"), "type", "location"),
|
||||
// Game crashed when tesselating block model
|
||||
BLOCK(Pattern.compile("Block: (?<type>.*)[\\w\\W\\n\\r]*?Block location: (?<location>.*)"), "type", "location"),
|
||||
// Cannot find native libraries
|
||||
UNSATISFIED_LINK_ERROR(Pattern.compile("java.lang.UnsatisfiedLinkError: Failed to locate library: (?<name>.*)"), "name"),
|
||||
|
||||
//https://github.com/huanghongxun/HMCL/pull/1813
|
||||
//OPTIFINE_IS_NOT_COMPATIBLE_WITH_FORGE(Pattern.compile("(Cannot read field \"ofTelemetry\" because \"net\\.optifine\\.Config\\.gameSettings\" is null|TRANSFORMER/net\\.optifine/net\\.optifine\\.reflect\\.Reflector\\.<clinit>\\(Reflector\\.java \\)")),
|
||||
OPTIFINE_IS_NOT_COMPATIBLE_WITH_FORGE(Pattern.compile("(java\\.lang\\.NoSuchMethodError: 'void net\\.minecraft\\.server\\.level\\.DistanceManager\\.addRegionTicket\\(net\\.minecraft\\.server\\.level\\.TicketType, net\\.minecraft\\.world\\.level\\.ChunkPos, int, java\\.lang\\.Object, boolean\\)'|java\\.lang\\.NoSuchMethodError: 'void net\\.minecraft\\.client\\.renderer\\.block\\.model\\.BakedQuad\\.<init>\\(int\\[\\], int, net\\.minecraft\\.core\\.Direction, net\\.minecraft\\.client\\.renderer\\.texture\\.TextureAtlasSprite, boolean, boolean\\)'|TRANSFORMER/net\\.optifine/net\\.optifine\\.reflect\\.Reflector\\.<clinit>\\(Reflector\\.java)")),
|
||||
MOD_FILES_ARE_DECOMPRESSED(Pattern.compile("(The directories below appear to be extracted jar files\\. Fix this before you continue|Extracted mod jars found, loading will NOT continue)")),//Mod文件被解压
|
||||
OPTIFINE_CAUSES_THE_WORLD_TO_FAIL_TO_LOAD(Pattern.compile("java\\.lang\\.NoSuchMethodError: net\\.minecraft\\.world\\.server\\.ChunkManager$ProxyTicketManager\\.shouldForceTicks\\(J\\)Z\\+OptiFine")),//OptiFine导致无法加载世界 https://www.minecraftforum.net/forums/support/java-edition-support/3051132-exception-ticking-world
|
||||
OPTIFINE_CAUSES_THE_WORLD_TO_FAIL_TO_LOAD(Pattern.compile("java\\.lang\\.NoSuchMethodError: net\\.minecraft\\.world\\.server\\.ChunkManager$ProxyTicketManager\\.shouldForceTicks\\(J\\)Z")),//OptiFine导致无法加载世界 https://www.minecraftforum.net/forums/support/java-edition-support/3051132-exception-ticking-world
|
||||
TOO_MANY_MODS_LEAD_TO_EXCEEDING_THE_ID_LIMIT(Pattern.compile("maximum id range exceeded")),//Mod过多导致超出ID限制
|
||||
|
||||
// Mod issues
|
||||
// TwilightForest is not compatible with OptiFine on Minecraft 1.16.
|
||||
//https://github.com/huanghongxun/HMCL/pull/2038
|
||||
MODMIXIN_FAILURE(Pattern.compile("(Mixin prepare failed |Mixin apply failed |mixin\\.injection\\.throwables\\.|\\.mixins\\.json\\] FAILED during \\))")),//ModMixin失败
|
||||
MOD_REPEAT_INSTALLATION(Pattern.compile("(DuplicateModsFoundException|ModResolutionException: Duplicate)")),//Mod重复安装
|
||||
FORGE_ERROR(Pattern.compile("An exception was thrown, the game will display an error screen and halt.")),//Forge报错,Forge可能已经提供了错误信息
|
||||
MOD_RESOLUTION0(Pattern.compile("(Multiple entries with same key: |Failure message: MISSING)")),//可能是Mod问题
|
||||
FORGE_REPEAT_INSTALLATION(Pattern.compile("--launchTarget, fmlclient, --fml.forgeVersion,[\\w\\W]*?--launchTarget, fmlclient, --fml.forgeVersion,[\\w\\W\\n\\r]*?MultipleArgumentsForOptionException: Found multiple arguments for option gameDir, but you asked for only one")),//https://github.com/huanghongxun/HMCL/issues/1880
|
||||
OPTIFINE_REPEAT_INSTALLATION(Pattern.compile("ResolutionException: Module optifine reads another module named optifine")),//Optifine 重复安装(及Mod文件夹有,自动安装也有)
|
||||
JAVA_VERSION_IS_TOO_HIGH(Pattern.compile("(Unable to make protected final java\\.lang\\.Class java\\.lang\\.ClassLoader\\.defineClass|java\\.lang\\.NoSuchFieldException: ucp|Unsupported class file major version|because module java\\.base does not export|java\\.lang\\.ClassNotFoundException: jdk\\.nashorn\\.api\\.scripting\\.NashornScriptEngineFactory|java\\.lang\\.ClassNotFoundException: java\\.lang\\.invoke\\.LambdaMetafactory)")),//Java版本过高
|
||||
|
||||
// TwilightForest is not compatible with OptiFine on Minecraft 1.16
|
||||
TWILIGHT_FOREST_OPTIFINE(Pattern.compile("java.lang.IllegalArgumentException: (.*) outside of image bounds (.*)"));
|
||||
|
||||
private final Pattern pattern;
|
||||
|
||||
@@ -58,6 +58,13 @@ public class CrashReportAnalyzerTest {
|
||||
CrashReportAnalyzer.Rule.JVM_32BIT);
|
||||
}
|
||||
|
||||
@Test
|
||||
public void jvm321() throws IOException {
|
||||
CrashReportAnalyzer.Result result = findResultByRule(
|
||||
CrashReportAnalyzer.anaylze(loadLog("/logs/jvm_32bit2.txt")),
|
||||
CrashReportAnalyzer.Rule.JVM_32BIT);
|
||||
}
|
||||
|
||||
@Test
|
||||
public void modResolution() throws IOException {
|
||||
CrashReportAnalyzer.Result result = findResultByRule(
|
||||
@@ -278,6 +285,20 @@ public class CrashReportAnalyzerTest {
|
||||
result.getMatcher().group("reason").replaceAll("\\s+", ""));
|
||||
}
|
||||
|
||||
@Test
|
||||
public void fabricWarnings1() throws IOException {
|
||||
CrashReportAnalyzer.Result result = findResultByRule(
|
||||
CrashReportAnalyzer.anaylze(loadLog("/logs/fabric_warnings2.txt")),
|
||||
CrashReportAnalyzer.Rule.FABRIC_WARNINGS);
|
||||
assertEquals(("net.fabricmc.loader.impl.FormattedException: Mod resolution encountered an incompatible mod set!\n" +
|
||||
"A potential solution has been determined:\n" +
|
||||
"\t - Install roughlyenoughitems, version 6.0.2 or later.\n" +
|
||||
"Unmet dependency listing:\n" +
|
||||
"\t - Mod 'Roughly Searchable' (roughlysearchable) 2.2.1+1.17.1 requires version 6.0.2 or later of roughlyenoughitems, which is missing!\n" +
|
||||
"\tat net.fabricmc.loader.impl.FabricLoaderImpl.load(FabricLoaderImpl.java:190) ~").replaceAll("\\s+", ""),
|
||||
result.getMatcher().group("reason").replaceAll("\\s+", ""));
|
||||
}
|
||||
|
||||
@Test
|
||||
public void fabricConflicts() throws IOException {
|
||||
CrashReportAnalyzer.Result result = findResultByRule(
|
||||
@@ -319,6 +340,34 @@ public class CrashReportAnalyzerTest {
|
||||
assertEquals("[~1.16.2-alpha.20.28.a]", result.getMatcher().group("version"));
|
||||
}
|
||||
|
||||
@Test
|
||||
public void optifineRepeatInstallation() throws IOException {
|
||||
CrashReportAnalyzer.Result result = findResultByRule(
|
||||
CrashReportAnalyzer.anaylze(loadLog("/logs/optifine_repeat_installation.txt")),
|
||||
CrashReportAnalyzer.Rule.OPTIFINE_REPEAT_INSTALLATION);
|
||||
}
|
||||
|
||||
@Test
|
||||
public void forgeRepeatInstallation() throws IOException {
|
||||
CrashReportAnalyzer.Result result = findResultByRule(
|
||||
CrashReportAnalyzer.anaylze(loadLog("/logs/forge_repeat_installation.txt")),
|
||||
CrashReportAnalyzer.Rule.FORGE_REPEAT_INSTALLATION);
|
||||
}
|
||||
|
||||
@Test
|
||||
public void optifineIsNotCompatibleWithForge() throws IOException {
|
||||
CrashReportAnalyzer.Result result = findResultByRule(
|
||||
CrashReportAnalyzer.anaylze(loadLog("/logs/optifine_is_not_compatible_with_forge.txt")),
|
||||
CrashReportAnalyzer.Rule.OPTIFINE_IS_NOT_COMPATIBLE_WITH_FORGE);
|
||||
}
|
||||
|
||||
@Test
|
||||
public void optifineIsNotCompatibleWithForge1() throws IOException {
|
||||
CrashReportAnalyzer.Result result = findResultByRule(
|
||||
CrashReportAnalyzer.anaylze(loadLog("/logs/optifine_is_not_compatible_with_forge2.txt")),
|
||||
CrashReportAnalyzer.Rule.OPTIFINE_IS_NOT_COMPATIBLE_WITH_FORGE);
|
||||
}
|
||||
|
||||
@Test
|
||||
public void customNpc() throws IOException {
|
||||
CrashReportAnalyzer.Result result = findResultByRule(
|
||||
|
||||
135
HMCLCore/src/test/resources/logs/duplicated_mod.txt
Normal file
135
HMCLCore/src/test/resources/logs/duplicated_mod.txt
Normal file
@@ -0,0 +1,135 @@
|
||||
[14:54:54] [main/INFO]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLTweaker
|
||||
[14:54:54] [main/INFO]: Using primary tweak class name net.minecraftforge.fml.common.launcher.FMLTweaker
|
||||
[14:54:54] [main/INFO]: Loading tweak class name optifine.OptiFineForgeTweaker
|
||||
[14:54:54] [main/INFO]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLTweaker
|
||||
[14:54:54] [main/INFO]: Forge Mod Loader version 14.23.5.2860 for Minecraft 1.12.2 loading
|
||||
[14:54:54] [main/INFO]: Java is Java HotSpot(TM) 64-Bit Server VM, version 1.8.0_51, running on Windows 8.1:amd64:6.3, installed at C:\Users\FIREBAT\AppData\Roaming\.minecraft\cache\java\jre-legacy\windows-x64\jre-legacy
|
||||
[14:54:54] [main/INFO]: Searching A:\MC启动器\..\MC\versions\1.12.2\mods for mods
|
||||
[14:54:54] [main/WARN]: Found FMLCorePluginContainsFMLMod marker in 4633763120329575466@3@16.jar. This is not recommended, @Mods should be in a separate jar from the coremod.
|
||||
[14:54:54] [main/WARN]: The coremod atomicstryker.dynamiclights.common.DLFMLCorePlugin does not have a MCVersion annotation, it may cause issues with this version of Minecraft
|
||||
[14:54:54] [main/WARN]: The coremod DLFMLCorePlugin (atomicstryker.dynamiclights.common.DLFMLCorePlugin) is not signed!
|
||||
[14:54:54] [main/WARN]: Found FMLCorePluginContainsFMLMod marker in Bloodmoon-MC1.12.2-1.5.3.jar. This is not recommended, @Mods should be in a separate jar from the coremod.
|
||||
[14:54:54] [main/WARN]: The coremod lumien.bloodmoon.asm.LoadingPlugin does not have a MCVersion annotation, it may cause issues with this version of Minecraft
|
||||
[14:54:54] [main/WARN]: Found FMLCorePluginContainsFMLMod marker in ftb-ultimine-1202.3.5.jar. This is not recommended, @Mods should be in a separate jar from the coremod.
|
||||
[14:54:54] [main/WARN]: The coremod FTBUltimineASM (com.feed_the_beast.mods.ftbultimine.FTBUltimineLoadingPlugin) is not signed!
|
||||
[14:54:54] [main/WARN]: Found FMLCorePluginContainsFMLMod marker in InventoryTweaks-1.64+dev.146.jar. This is not recommended, @Mods should be in a separate jar from the coremod.
|
||||
[14:54:54] [main/WARN]: The coremod invtweaks.forge.asm.FMLPlugin does not have a MCVersion annotation, it may cause issues with this version of Minecraft
|
||||
[14:54:54] [main/INFO]: Calling tweak class optifine.OptiFineForgeTweaker
|
||||
[14:54:54] [main/INFO]: [optifine.OptiFineForgeTweaker:dbg:56]: OptiFineForgeTweaker: acceptOptions
|
||||
[14:54:54] [main/INFO]: [optifine.OptiFineForgeTweaker:dbg:56]: OptiFineForgeTweaker: injectIntoClassLoader
|
||||
[14:54:54] [main/INFO]: [optifine.OptiFineClassTransformer:dbg:242]: OptiFine ClassTransformer
|
||||
[14:54:54] [main/INFO]: [optifine.OptiFineClassTransformer:dbg:242]: OptiFine ZIP file: A:\MC\libraries\optifine\OptiFine\1.12.2_HD_U_G6_pre1\OptiFine-1.12.2_HD_U_G6_pre1-installer.jar
|
||||
[14:54:54] [main/INFO]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLInjectionAndSortingTweaker
|
||||
[14:54:54] [main/INFO]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLDeobfTweaker
|
||||
[14:54:54] [main/INFO]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLInjectionAndSortingTweaker
|
||||
[14:54:54] [main/INFO]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLInjectionAndSortingTweaker
|
||||
[14:54:54] [main/INFO]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper
|
||||
[14:54:55] [main/INFO]: Found valid fingerprint for Minecraft Forge. Certificate fingerprint e3c3d50c7c986df74c645c0ac54639741c90a557
|
||||
[14:54:55] [main/INFO]: Found valid fingerprint for Minecraft. Certificate fingerprint cd99959656f753dc28d863b46769f7f8fbaefcfc
|
||||
[14:54:55] [main/INFO]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper
|
||||
[14:54:55] [main/INFO]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper
|
||||
[14:54:55] [main/INFO]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper
|
||||
[14:54:55] [main/INFO]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLDeobfTweaker
|
||||
[14:54:56] [main/INFO]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper
|
||||
[14:54:56] [main/INFO]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper
|
||||
[14:54:56] [main/INFO]: Loading tweak class name net.minecraftforge.fml.common.launcher.TerminalTweaker
|
||||
[14:54:56] [main/INFO]: Calling tweak class net.minecraftforge.fml.common.launcher.TerminalTweaker
|
||||
[14:54:56] [main/INFO]: [optifine.OptiFineForgeTweaker:dbg:56]: OptiFineForgeTweaker: getLaunchArguments
|
||||
[14:54:56] [main/INFO]: Launching wrapped minecraft {net.minecraft.client.main.Main}
|
||||
[14:54:56] [main/INFO]: [atomicstryker.dynamiclights.common.DLTransformer:handleWorldTransform:80]: **************** Dynamic Lights transform running on World, obf: true ***********************
|
||||
[14:54:56] [main/INFO]: [atomicstryker.dynamiclights.common.DLTransformer:handleWorldTransform:91]: In target method a:(Let;Lana;)I, Patching!
|
||||
[14:54:56] [main/INFO]: [atomicstryker.dynamiclights.common.DLTransformer:handleWorldTransform:148]: Found ASTORE Node at index 19, is writing variable number: 3
|
||||
[14:54:56] [Client thread/INFO]: Setting user: liangg
|
||||
[14:54:58] [Client thread/INFO]: [OptiFine] *** Reflector Forge ***
|
||||
[14:54:58] [Client thread/INFO]: [OptiFine] *** Reflector Vanilla ***
|
||||
[14:54:58] [Client thread/WARN]: Skipping bad option: lastServer:
|
||||
[14:54:58] [Client thread/INFO]: LWJGL Version: 2.9.4
|
||||
[14:54:59] [Client thread/INFO]: [OptiFine]
|
||||
[14:54:59] [Client thread/INFO]: [OptiFine] OptiFine_1.12.2_HD_U_G6_pre1
|
||||
[14:54:59] [Client thread/INFO]: [OptiFine] Build: 20210323-161358
|
||||
[14:54:59] [Client thread/INFO]: [OptiFine] OS: Windows 8.1 (amd64) version 6.3
|
||||
[14:54:59] [Client thread/INFO]: [OptiFine] Java: 1.8.0_51, Oracle Corporation
|
||||
[14:54:59] [Client thread/INFO]: [OptiFine] VM: Java HotSpot(TM) 64-Bit Server VM (mixed mode), Oracle Corporation
|
||||
[14:54:59] [Client thread/INFO]: [OptiFine] LWJGL: 2.9.4
|
||||
[14:54:59] [Client thread/INFO]: [OptiFine] OpenGL: NVIDIA GeForce RTX 3060 Laptop GPU/PCIe/SSE2, version 4.6.0 NVIDIA 522.25, NVIDIA Corporation
|
||||
[14:54:59] [Client thread/INFO]: [OptiFine] OpenGL Version: 4.6.0
|
||||
[14:54:59] [Client thread/INFO]: [OptiFine] Maximum texture size: 32768x32768
|
||||
[14:54:59] [VersionCheck/INFO]: [OptiFine] Checking for new version
|
||||
[14:54:59] [Client thread/INFO]: [Shaders] OpenGL Version: 4.6.0 NVIDIA 522.25
|
||||
[14:54:59] [Client thread/INFO]: [Shaders] Vendor: NVIDIA Corporation
|
||||
[14:54:59] [Client thread/INFO]: [Shaders] Renderer: NVIDIA GeForce RTX 3060 Laptop GPU/PCIe/SSE2
|
||||
[14:54:59] [Client thread/INFO]: [Shaders] Capabilities: 2.0 2.1 3.0 3.2 4.0
|
||||
[14:54:59] [Client thread/INFO]: [Shaders] GL_MAX_DRAW_BUFFERS: 8
|
||||
[14:54:59] [Client thread/INFO]: [Shaders] GL_MAX_COLOR_ATTACHMENTS_EXT: 8
|
||||
[14:54:59] [Client thread/INFO]: [Shaders] GL_MAX_TEXTURE_IMAGE_UNITS: 32
|
||||
[14:54:59] [Client thread/INFO]: [Shaders] Load shaders configuration.
|
||||
[14:54:59] [Client thread/INFO]: [Shaders] Loaded shaderpack: Dramatic+Skys+Demo+1.5.3.3.zip
|
||||
[14:54:59] [Client thread/INFO]: [OptiFine] [Shaders] Delayed loading of block mappings after resources are loaded
|
||||
[14:54:59] [Client thread/INFO]: [OptiFine] [Shaders] Delayed loading of item mappings after resources are loaded
|
||||
[14:54:59] [Client thread/INFO]: [OptiFine] [Shaders] Delayed loading of entity mappings after resources are loaded
|
||||
[14:54:59] [Client thread/INFO]: Forge Mod Loader has detected optifine OptiFine_1.12.2_HD_U_G6_pre1, enabling compatibility features
|
||||
[14:54:59] [Client thread/INFO]: -- System Details --
|
||||
Details:
|
||||
Minecraft Version: 1.12.2
|
||||
Operating System: Windows 8.1 (amd64) version 6.3
|
||||
Java Version: 1.8.0_51, Oracle Corporation
|
||||
Java VM Version: Java HotSpot(TM) 64-Bit Server VM (mixed mode), Oracle Corporation
|
||||
Memory: 723938528 bytes (690 MB) / 1073741824 bytes (1024 MB) up to 8489271296 bytes (8096 MB)
|
||||
JVM Flags: 11 total; -Xmx8096m -XX:+UnlockExperimentalVMOptions -XX:+UseG1GC -XX:G1NewSizePercent=20 -XX:G1ReservePercent=20 -XX:MaxGCPauseMillis=50 -XX:G1HeapRegionSize=32m -XX:-UseAdaptiveSizePolicy -XX:-OmitStackTraceInFastThrow -XX:-DontCompileHugeMethods -XX:HeapDumpPath=MojangTricksIntelDriversForPerformance_javaw.exe_minecraft.exe.heapdump
|
||||
IntCache: cache: 0, tcache: 0, allocated: 0, tallocated: 0
|
||||
FML:
|
||||
Loaded coremods (and transformers):
|
||||
FTBUltimineASM (ftb-ultimine-1202.3.5.jar)
|
||||
|
||||
DLFMLCorePlugin (4633763120329575466@3@16.jar)
|
||||
atomicstryker.dynamiclights.common.DLTransformer
|
||||
Inventory Tweaks Coremod (InventoryTweaks-1.64+dev.146.jar)
|
||||
invtweaks.forge.asm.ContainerTransformer
|
||||
LoadingPlugin (Bloodmoon-MC1.12.2-1.5.3.jar)
|
||||
lumien.bloodmoon.asm.ClassTransformer
|
||||
GL info: ' Vendor: 'NVIDIA Corporation' Version: '4.6.0 NVIDIA 522.25' Renderer: 'NVIDIA GeForce RTX 3060 Laptop GPU/PCIe/SSE2'
|
||||
[14:54:59] [Client thread/INFO]: MinecraftForge v14.23.5.2860 Initialized
|
||||
[14:54:59] [Client thread/INFO]: Starts to replace vanilla recipe ingredients with ore ingredients.
|
||||
[14:54:59] [Client thread/INFO]: Invalid recipe found with multiple oredict ingredients in the same ingredient...
|
||||
[14:54:59] [Client thread/INFO]: Replaced 1227 ore ingredients
|
||||
[14:54:59] [Client thread/INFO]: Searching A:\MC启动器\..\MC\versions\1.12.2\mods for mods
|
||||
[14:55:00] [Client thread/WARN]: Mod betterbuilderswands is missing the required element 'version' and a version.properties file could not be found. Falling back to metadata version 0.11.1
|
||||
[14:55:00] [VersionCheck/INFO]: [OptiFine] Version found: G5
|
||||
[14:55:00] [Client thread/WARN]: Mod codechickenlib is missing the required element 'version' and a version.properties file could not be found. Falling back to metadata version 3.2.3.358
|
||||
[14:55:00] [Client thread/WARN]: Mod ironchest is missing the required element 'version' and a version.properties file could not be found. Falling back to metadata version 1.12.2-7.0.67.844
|
||||
[14:55:01] [Client thread/FATAL]: Found a duplicate mod durabilityviewer at [A:\MC启动器\..\MC\versions\1.12.2\mods\DurabilityViewer-1.12-forge14.21.1.2387-1.6.jar, A:\MC启动器\..\MC\versions\1.12.2\mods\4659524562224055466@3@38.jar]
|
||||
[14:55:01] [Client thread/ERROR]: An exception was thrown, the game will display an error screen and halt.
|
||||
net.minecraftforge.fml.common.DuplicateModsFoundException:
|
||||
Duplicate Mods:
|
||||
durabilityviewer : A:\MC启动器\..\MC\versions\1.12.2\mods\DurabilityViewer-1.12-forge14.21.1.2387-1.6.jar
|
||||
durabilityviewer : A:\MC启动器\..\MC\versions\1.12.2\mods\4659524562224055466@3@38.jar
|
||||
|
||||
|
||||
at net.minecraftforge.fml.common.Loader.identifyDuplicates(Loader.java:466) ~[Loader.class:?]
|
||||
at net.minecraftforge.fml.common.Loader.identifyMods(Loader.java:428) ~[Loader.class:?]
|
||||
at net.minecraftforge.fml.common.Loader.loadMods(Loader.java:568) ~[Loader.class:?]
|
||||
at net.minecraftforge.fml.client.FMLClientHandler.beginMinecraftLoading(FMLClientHandler.java:232) [FMLClientHandler.class:?]
|
||||
at net.minecraft.client.Minecraft.func_71384_a(Minecraft.java:467) [bib.class:?]
|
||||
at net.minecraft.client.Minecraft.func_99999_d(Minecraft.java:378) [bib.class:?]
|
||||
at net.minecraft.client.main.Main.main(SourceFile:123) [Main.class:?]
|
||||
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_51]
|
||||
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[?:1.8.0_51]
|
||||
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.8.0_51]
|
||||
at java.lang.reflect.Method.invoke(Method.java:497) ~[?:1.8.0_51]
|
||||
at net.minecraft.launchwrapper.Launch.launch(Launch.java:135) [launchwrapper-1.12.jar:?]
|
||||
at net.minecraft.launchwrapper.Launch.main(Launch.java:28) [launchwrapper-1.12.jar:?]
|
||||
[14:55:01] [Client thread/WARN]: EventBus 0 shutting down - future events will not be posted.
|
||||
[14:55:01] [Client thread/INFO]: Reloading ResourceManager: Default, 4621521193099187385@4@19.zip, 4638669915187065296@4@19.zip
|
||||
[14:55:01] [Client thread/WARN]: There were errors previously. Not beginning mod initialization phase
|
||||
[14:55:01] [Client thread/INFO]: [OptiFine] *** Reloading textures ***
|
||||
[14:55:01] [Client thread/INFO]: [OptiFine] Resource packs: 4621521193099187385@4@19.zip, 4638669915187065296@4@19.zip
|
||||
[14:55:01] [Thread-4/INFO]: Using sync timing. 200 frames of Display.update took 20405300 nanos
|
||||
[14:55:02] [Sound Library Loader/INFO]: Starting up SoundSystem...
|
||||
[14:55:02] [Thread-6/INFO]: Initializing LWJGL OpenAL
|
||||
[14:55:02] [Thread-6/INFO]: (The LWJGL binding of OpenAL. For more information, see http://www.lwjgl.org)
|
||||
[14:55:02] [Thread-6/INFO]: OpenAL initialized.
|
||||
[14:55:02] [Client thread/INFO]: Narrator library for x64 successfully loaded
|
||||
[14:55:02] [Sound Library Loader/INFO]: Sound engine started
|
||||
[14:55:03] [Client thread/INFO]: [OptiFine] (Reflector) Class not present: mods.betterfoliage.client.BetterFoliageClient
|
||||
[14:55:03] [Client thread/INFO]: [OptiFine] *** Reloading custom textures ***
|
||||
[14:55:04] [Realms Notification Availability checker #1/INFO]: Could not authorize you against Realms server: Invalid session id
|
||||
22
HMCLCore/src/test/resources/logs/fabric_warnings2.txt
Normal file
22
HMCLCore/src/test/resources/logs/fabric_warnings2.txt
Normal file
@@ -0,0 +1,22 @@
|
||||
[authlib-injector] [INFO] Logging file: C:\Users\Administrator\AppData\Roaming\.minecraft\versions\1.17.1 PxUni\authlib-injector.log
|
||||
[authlib-injector] [INFO] Version: 1.2.1
|
||||
[authlib-injector] [INFO] Authentication server: http://localhost:52773
|
||||
[authlib-injector] [WARNING] You are using HTTP protocol, which is INSECURE! Please switch to HTTPS if possible.
|
||||
2023-02-03 07:43:03,385 main WARN JNDI lookup class is not available because this JRE does not support JNDI. JNDI string lookups will not be available, continuing configuration. Ignoring java.lang.ClassCastException: class org.apache.logging.log4j.core.lookup.JndiLookup
|
||||
[07:43:03] [main/INFO]: Loading Minecraft 1.17.1 with Fabric Loader 0.14.12
|
||||
[07:43:03] [main/WARN]: Can't remove Log4J2 JNDI substitution Lookup: java.lang.RuntimeException: couldn't find JNDI lookup entry
|
||||
[07:43:04] [ForkJoinPool-1-worker-3/WARN]: Mod com_github_wearblackallday_javautils uses the version 1b369d41cd which isn't compatible with Loader's extended semantic version format (Could not parse version number component '1b369d41cd'!), SemVer is recommended for reliably evaluating dependencies and prioritizing newer version
|
||||
[07:43:04] [main/WARN]: Mod resolution failed
|
||||
[07:43:04] [main/INFO]: Immediate reason: [HARD_DEP_NO_CANDIDATE roughlysearchable 2.2.1+1.17.1 {depends roughlyenoughitems @ [>=6.0.2]}, ROOT_FORCELOAD_SINGLE roughlysearchable 2.2.1+1.17.1]
|
||||
[07:43:04] [main/INFO]: Reason: [HARD_DEP roughlysearchable 2.2.1+1.17.1 {depends roughlyenoughitems @ [>=6.0.2]}]
|
||||
[07:43:04] [main/INFO]: Fix: add [add:roughlyenoughitems 6.0.2 ([[6.0.2,?)])], remove [], replace []
|
||||
[07:43:04] [main/ERROR]: Incompatible mod set!
|
||||
net.fabricmc.loader.impl.FormattedException: Mod resolution encountered an incompatible mod set!
|
||||
A potential solution has been determined:
|
||||
- Install roughlyenoughitems, version 6.0.2 or later.
|
||||
Unmet dependency listing:
|
||||
- Mod 'Roughly Searchable' (roughlysearchable) 2.2.1+1.17.1 requires version 6.0.2 or later of roughlyenoughitems, which is missing!
|
||||
at net.fabricmc.loader.impl.FabricLoaderImpl.load(FabricLoaderImpl.java:190) ~[fabric-loader-0.14.12.jar:?]
|
||||
at net.fabricmc.loader.impl.launch.knot.Knot.init(Knot.java:148) ~[fabric-loader-0.14.12.jar:?]
|
||||
at net.fabricmc.loader.impl.launch.knot.Knot.launch(Knot.java:68) [fabric-loader-0.14.12.jar:?]
|
||||
at net.fabricmc.loader.impl.launch.knot.KnotClient.main(KnotClient.java:23) [fabric-loader-0.14.12.jar:?]
|
||||
@@ -0,0 +1,9 @@
|
||||
2022-11-15 09:59:44,353 main ERROR Error processing element Queue ([Appenders: null]): CLASS_NOT_FOUND
|
||||
2022-11-15 09:59:44,369 main WARN JNDI lookup class is not available because this JRE does not support JNDI. JNDI string lookups will not be available, continuing configuration. Ignoring java.lang.ClassCastException: class org.apache.logging.log4j.core.lookup.JndiLookup
|
||||
[09:59:44] [main/INFO]: ModLauncher running: args [--username, 98878/, --version, 1.16.5-Forge_36.2.20-OptiFine_G8, --gameDir, C:\Users\Administrator\Desktop\自然之旅Nature's Journey-1.0\.minecraft, --assetsDir, C:\Users\Administrator\Desktop\自然之旅Nature's Journey-1.0\.minecraft\assets, --assetIndex, 1.16, --uuid, 84091fa67dc23d5cb3a4562696d239a4, --accessToken, ????????, --userType, legacy, --versionType, HMCL 3.5.3.227, --width, 854, --height, 480, --launchTarget, fmlclient, --fml.forgeVersion, 36.2.20, --fml.mcVersion, 1.16.5, --fml.forgeGroup, net.minecraftforge, --fml.mcpVersion, 20210115.111550, --username, 98878/, --version, 1.16.5-Forge_36.2.20-OptiFine_G8, --gameDir, C:\Users\Administrator\Desktop\自然之旅Nature's Journey-1.0\.minecraft, --assetsDir, C:\Users\Administrator\Desktop\自然之旅Nature's Journey-1.0\.minecraft\assets, --assetIndex, 1.16, --uuid, 84091fa67dc23d5cb3a4562696d239a4, --accessToken, ????????, --userType, legacy, --versionType, HMCL 3.5.3.227, --width, 854, --height, 480, --tweakClass, optifine.OptiFineTweaker, --launchTarget, fmlclient, --fml.forgeVersion, 36.2.39, --fml.mcVersion, 1.16.5, --fml.forgeGroup, net.minecraftforge, --fml.mcpVersion, 20210115.111550]
|
||||
[09:59:44] [main/INFO]: ModLauncher 8.1.3+8.1.3+main-8.1.x.c94d18ec starting: java version 17.0.3 by Microsoft
|
||||
Exception in thread "main" joptsimple.MultipleArgumentsForOptionException: Found multiple arguments for option gameDir, but you asked for only one
|
||||
at joptsimple.OptionSet.valueOf(OptionSet.java:179)
|
||||
at cpw.mods.modlauncher.ArgumentHandler.setArgs(ArgumentHandler.java:47)
|
||||
at cpw.mods.modlauncher.Launcher.run(Launcher.java:74)
|
||||
at cpw.mods.modlauncher.Launcher.main(Launcher.java:66)
|
||||
2
HMCLCore/src/test/resources/logs/jvm_32bit2.txt
Normal file
2
HMCLCore/src/test/resources/logs/jvm_32bit2.txt
Normal file
@@ -0,0 +1,2 @@
|
||||
Error occurred during initialization of VM
|
||||
Could not reserve enough space for 3571712KB object heap
|
||||
@@ -0,0 +1,587 @@
|
||||
[17:39:15] [main/INFO]: ModLauncher running: args [--username, xjy, --version, 1.18.2(2), --gameDir, D:\hmcl启动器\.minecraft, --assetsDir, D:\hmcl启动器\.minecraft\assets, --assetIndex, 1.18, --uuid, f879573aee333778962e2a175ad0c481, --accessToken, <20>7<EFBFBD>6<EFBFBD>7<EFBFBD>6<EFBFBD>7<EFBFBD>6<EFBFBD>7<EFBFBD>6<EFBFBD>7<EFBFBD>6<EFBFBD>7<EFBFBD>6<EFBFBD>7<EFBFBD>6<EFBFBD>7<EFBFBD>6, --clientId, ${clientid}, --xuid, ${auth_xuid}, --userType, legacy, --versionType, HMCL 3.5.dev-1ec9e41, --width, 854, --height, 480, --tweakClass, optifine.OptiFineTweaker, --launchTarget, forgeclient, --fml.forgeVersion, 40.1.59, --fml.mcVersion, 1.18.2, --fml.forgeGroup, net.minecraftforge, --fml.mcpVersion, 20220404.173914]
|
||||
[17:39:15] [main/INFO]: ModLauncher 9.1.3+9.1.3+main.9b69c82a starting: java version 17.0.2 by BellSoft
|
||||
[17:39:15] [main/INFO]: OptiFineTransformationService.onLoad
|
||||
[17:39:15] [main/INFO]: OptiFine ZIP file URL: union:/D:/hmcl启动器/.minecraft/libraries/optifine/OptiFine/1.18.2_HD_U_H7/OptiFine-1.18.2_HD_U_H7.jar%2317!/
|
||||
[17:39:15] [main/INFO]: OptiFine ZIP file: D:\hmcl启动器\.minecraft\libraries\optifine\OptiFine\1.18.2_HD_U_H7\OptiFine-1.18.2_HD_U_H7.jar
|
||||
[17:39:15] [main/INFO]: Target.PRE_CLASS is available
|
||||
[17:39:15] [main/INFO]: SpongePowered MIXIN Subsystem Version=0.8.5 Source=union:/D:/hmcl启动器/.minecraft/libraries/org/spongepowered/mixin/0.8.5/mixin-0.8.5.jar%2314!/ Service=ModLauncher Env=CLIENT
|
||||
[17:39:15] [main/INFO]: OptiFineTransformationService.initialize
|
||||
[17:39:15] [main/INFO]: Found mod file balm-3.2.0+0.jar of type MOD with locator {mods folder locator at D:\hmcl启动器\.minecraft\mods}
|
||||
[17:39:15] [main/INFO]: Found mod file buildinggadgets-3.13.1-build.18+mc1.18.2.jar of type MOD with locator {mods folder locator at D:\hmcl启动器\.minecraft\mods}
|
||||
[17:39:15] [main/INFO]: Found mod file cgm-1.2.7-1.18.2.jar of type MOD with locator {mods folder locator at D:\hmcl启动器\.minecraft\mods}
|
||||
[17:39:15] [main/INFO]: Found mod file framework-0.2.4-1.18.2.jar of type MOD with locator {mods folder locator at D:\hmcl启动器\.minecraft\mods}
|
||||
[17:39:15] [main/INFO]: Found mod file ironchest-1.18.2-13.2.11.jar of type MOD with locator {mods folder locator at D:\hmcl启动器\.minecraft\mods}
|
||||
[17:39:15] [main/INFO]: Found mod file jei-1.18.2-forge-10.2.1.283.jar of type MOD with locator {mods folder locator at D:\hmcl启动器\.minecraft\mods}
|
||||
[17:39:15] [main/INFO]: Found mod file waystones-forge-1.18.2-10.1.0.jar of type MOD with locator {mods folder locator at D:\hmcl启动器\.minecraft\mods}
|
||||
[17:39:15] [main/INFO]: Found mod file fmlcore-1.18.2-40.1.59.jar of type LIBRARY with locator net.minecraftforge.fml.loading.moddiscovery.MinecraftLocator@235f4c10
|
||||
[17:39:15] [main/INFO]: Found mod file javafmllanguage-1.18.2-40.1.59.jar of type LANGPROVIDER with locator net.minecraftforge.fml.loading.moddiscovery.MinecraftLocator@235f4c10
|
||||
[17:39:15] [main/INFO]: Found mod file lowcodelanguage-1.18.2-40.1.59.jar of type LANGPROVIDER with locator net.minecraftforge.fml.loading.moddiscovery.MinecraftLocator@235f4c10
|
||||
[17:39:15] [main/INFO]: Found mod file mclanguage-1.18.2-40.1.59.jar of type LANGPROVIDER with locator net.minecraftforge.fml.loading.moddiscovery.MinecraftLocator@235f4c10
|
||||
[17:39:15] [main/INFO]: Found mod file client-1.18.2-20220404.173914-srg.jar of type MOD with locator net.minecraftforge.fml.loading.moddiscovery.MinecraftLocator@235f4c10
|
||||
[17:39:15] [main/INFO]: Found mod file forge-1.18.2-40.1.59-universal.jar of type MOD with locator net.minecraftforge.fml.loading.moddiscovery.MinecraftLocator@235f4c10
|
||||
[17:39:15] [main/INFO]: OptiFineTransformationService.transformers
|
||||
[17:39:15] [main/INFO]: Targets: 350
|
||||
[17:39:16] [main/INFO]: additionalClassesLocator: [optifine., net.optifine.]
|
||||
[17:39:16] [main/INFO]: Compatibility level set to JAVA_17
|
||||
[17:39:16] [main/INFO]: Launching target 'forgeclient' with arguments [--version, 1.18.2(2), --gameDir, D:\hmcl启动器\.minecraft, --assetsDir, D:\hmcl启动器\.minecraft\assets, --uuid, f879573aee333778962e2a175ad0c481, --username, xjy, --assetIndex, 1.18, --accessToken, <20>7<EFBFBD>6<EFBFBD>7<EFBFBD>6<EFBFBD>7<EFBFBD>6<EFBFBD>7<EFBFBD>6<EFBFBD>7<EFBFBD>6<EFBFBD>7<EFBFBD>6<EFBFBD>7<EFBFBD>6<EFBFBD>7<EFBFBD>6, --clientId, ${clientid}, --xuid, ${auth_xuid}, --userType, legacy, --versionType, HMCL 3.5.dev-1ec9e41, --width, 854, --height, 480, --tweakClass, optifine.OptiFineTweaker]
|
||||
[17:39:21] [Render thread/WARN]: Assets URL 'union:/D:/hmcl启动器/.minecraft/libraries/net/minecraft/client/1.18.2-20220404.173914/client-1.18.2-20220404.173914-srg.jar%2363!/assets/.mcassetsroot' uses unexpected schema
|
||||
[17:39:21] [Render thread/WARN]: Assets URL 'union:/D:/hmcl启动器/.minecraft/libraries/net/minecraft/client/1.18.2-20220404.173914/client-1.18.2-20220404.173914-srg.jar%2363!/data/.mcassetsroot' uses unexpected schema
|
||||
[17:39:21] [Render thread/INFO]: Environment: authHost='https://authserver.mojang.com', accountsHost='https://api.mojang.com', sessionHost='https://sessionserver.mojang.com', servicesHost='https://api.minecraftservices.com', name='PROD'
|
||||
[17:39:23] [Render thread/ERROR]: Failed to verify authentication
|
||||
com.mojang.authlib.exceptions.InvalidCredentialsException: Status: 401
|
||||
at com.mojang.authlib.exceptions.MinecraftClientHttpException.toAuthenticationException(MinecraftClientHttpException.java:56) ~[authlib-3.3.39.jar%2337!/:?]
|
||||
at com.mojang.authlib.yggdrasil.YggdrasilUserApiService.fetchProperties(YggdrasilUserApiService.java:132) ~[authlib-3.3.39.jar%2337!/:?]
|
||||
at com.mojang.authlib.yggdrasil.YggdrasilUserApiService.<init>(YggdrasilUserApiService.java:44) ~[authlib-3.3.39.jar%2337!/:?]
|
||||
at com.mojang.authlib.yggdrasil.YggdrasilAuthenticationService.createUserApiService(YggdrasilAuthenticationService.java:153) ~[authlib-3.3.39.jar%2337!/:?]
|
||||
at net.minecraft.client.Minecraft.m_193585_(Minecraft.java:609) ~[client-1.18.2-20220404.173914-srg.jar%2363!/:?]
|
||||
at net.minecraft.client.Minecraft.<init>(Minecraft.java:401) ~[client-1.18.2-20220404.173914-srg.jar%2363!/:?]
|
||||
at net.minecraft.client.main.Main.main(Main.java:169) ~[client-1.18.2-20220404.173914-srg.jar%2363!/:?]
|
||||
at jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:?]
|
||||
at jdk.internal.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:?]
|
||||
at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:?]
|
||||
at java.lang.reflect.Method.invoke(Unknown Source) ~[?:?]
|
||||
at net.minecraftforge.fml.loading.targets.CommonClientLaunchHandler.lambda$launchService$0(CommonClientLaunchHandler.java:31) ~[fmlloader-1.18.2-40.1.59.jar%2316!/:?]
|
||||
at cpw.mods.modlauncher.LaunchServiceHandlerDecorator.launch(LaunchServiceHandlerDecorator.java:37) [modlauncher-9.1.3.jar%235!/:?]
|
||||
at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:53) [modlauncher-9.1.3.jar%235!/:?]
|
||||
at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:71) [modlauncher-9.1.3.jar%235!/:?]
|
||||
at cpw.mods.modlauncher.Launcher.run(Launcher.java:106) [modlauncher-9.1.3.jar%235!/:?]
|
||||
at cpw.mods.modlauncher.Launcher.main(Launcher.java:77) [modlauncher-9.1.3.jar%235!/:?]
|
||||
at cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:26) [modlauncher-9.1.3.jar%235!/:?]
|
||||
at cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:23) [modlauncher-9.1.3.jar%235!/:?]
|
||||
at cpw.mods.bootstraplauncher.BootstrapLauncher.main(BootstrapLauncher.java:149) [bootstraplauncher-1.0.0.jar:?]
|
||||
Caused by: com.mojang.authlib.exceptions.MinecraftClientHttpException: Status: 401
|
||||
at com.mojang.authlib.minecraft.client.MinecraftClient.readInputStream(MinecraftClient.java:78) ~[authlib-3.3.39.jar%2337!/:?]
|
||||
at com.mojang.authlib.minecraft.client.MinecraftClient.get(MinecraftClient.java:48) ~[authlib-3.3.39.jar%2337!/:?]
|
||||
at com.mojang.authlib.yggdrasil.YggdrasilUserApiService.fetchProperties(YggdrasilUserApiService.java:113) ~[authlib-3.3.39.jar%2337!/:?]
|
||||
... 18 more
|
||||
[17:39:23] [Render thread/INFO]: Setting user: xjy
|
||||
[17:39:23] [Render thread/INFO]: Backend library: LWJGL version 3.2.2 SNAPSHOT
|
||||
[17:39:24] [Render thread/INFO]: [OptiFine]
|
||||
[17:39:24] [Render thread/INFO]: [OptiFine] OptiFine_1.18.2_HD_U_H7
|
||||
[17:39:24] [Render thread/INFO]: [OptiFine] Build: 20220410-185216
|
||||
[17:39:24] [Render thread/INFO]: [OptiFine] OS: Windows 10 (amd64) version 10.0
|
||||
[17:39:24] [Render thread/INFO]: [OptiFine] Java: 17.0.2, BellSoft
|
||||
[17:39:24] [Render thread/INFO]: [OptiFine] VM: OpenJDK 64-Bit Server VM (mixed mode, sharing), BellSoft
|
||||
[17:39:24] [Render thread/INFO]: [OptiFine] LWJGL: 3.3.0 Win32 WGL EGL OSMesa VisualC DLL
|
||||
[17:39:24] [Render thread/INFO]: [OptiFine] OpenGL: GeForce GTX 1660 Ti/PCIe/SSE2, version 3.2.0 NVIDIA 457.69, NVIDIA Corporation
|
||||
[17:39:24] [Render thread/INFO]: [OptiFine] OpenGL Version: 3.2.0
|
||||
[17:39:24] [Render thread/INFO]: [OptiFine] Maximum texture size: 32768x32768
|
||||
[17:39:24] [VersionCheck/INFO]: [OptiFine] Checking for new version
|
||||
[17:39:24] [Render thread/INFO]: [Shaders] OpenGL Version: 3.2.0 NVIDIA 457.69
|
||||
[17:39:24] [Render thread/INFO]: [Shaders] Vendor: NVIDIA Corporation
|
||||
[17:39:24] [Render thread/INFO]: [Shaders] Renderer: GeForce GTX 1660 Ti/PCIe/SSE2
|
||||
[17:39:24] [Render thread/INFO]: [Shaders] Capabilities: 2.0 2.1 3.0 3.2 -
|
||||
[17:39:24] [Render thread/INFO]: [Shaders] GL_MAX_DRAW_BUFFERS: 8
|
||||
[17:39:24] [Render thread/INFO]: [Shaders] GL_MAX_COLOR_ATTACHMENTS: 8
|
||||
[17:39:24] [Render thread/INFO]: [Shaders] GL_MAX_TEXTURE_IMAGE_UNITS: 32
|
||||
[17:39:24] [Render thread/INFO]: [Shaders] Load shaders configuration.
|
||||
[17:39:24] [Render thread/INFO]: [Shaders] Loaded shaderpack: BSL_Edit_Pasquale (2).zip
|
||||
[17:39:24] [Render thread/INFO]: [OptiFine] [Shaders] Worlds: -1, 1
|
||||
[17:39:24] [Render thread/WARN]: [OptiFine] Ambiguous shader option: POMQuality
|
||||
[17:39:24] [Render thread/WARN]: [OptiFine] - in gbuffers_terrain.fsh, gbuffers_hand.fsh: 32
|
||||
[17:39:24] [Render thread/WARN]: [OptiFine] - in gbuffers_water.fsh: 64
|
||||
[17:39:24] [Render thread/WARN]: [OptiFine] Ambiguous shader option: POMDepth
|
||||
[17:39:24] [Render thread/WARN]: [OptiFine] - in gbuffers_terrain.fsh, gbuffers_hand.fsh: 1.00
|
||||
[17:39:24] [Render thread/WARN]: [OptiFine] - in gbuffers_water.fsh: 0.80
|
||||
[17:39:24] [Render thread/WARN]: [OptiFine] Ambiguous shader option: POMDistance
|
||||
[17:39:24] [Render thread/WARN]: [OptiFine] - in gbuffers_terrain.fsh: 64.0
|
||||
[17:39:24] [Render thread/WARN]: [OptiFine] - in gbuffers_water.fsh: 32.0
|
||||
[17:39:24] [Render thread/INFO]: [OptiFine] java.io.IOException: Included file not found: /shaders/world-1/gbuffers_skytextured.fsh
|
||||
[17:39:24] [Render thread/WARN]: [OptiFine] Ambiguous shader option: ColS1
|
||||
[17:39:24] [Render thread/WARN]: [OptiFine] - in composite5.fsh, world-1/composite5.fsh: 1.05
|
||||
[17:39:24] [Render thread/WARN]: [OptiFine] - in world-1/composite5.fsh: 1.10
|
||||
[17:39:24] [Render thread/WARN]: [OptiFine] Ambiguous shader option: noiseTextureResolution
|
||||
[17:39:24] [Render thread/WARN]: [OptiFine] - in final.fsh: 256
|
||||
[17:39:24] [Render thread/WARN]: [OptiFine] - in world-1/final.fsh: 512
|
||||
[17:39:24] [Render thread/INFO]: [OptiFine] [Shaders] Delayed loading of block mappings after resources are loaded
|
||||
[17:39:24] [Render thread/INFO]: [OptiFine] [Shaders] Delayed loading of item mappings after resources are loaded
|
||||
[17:39:24] [Render thread/INFO]: [OptiFine] [Shaders] Delayed loading of entity mappings after resources are loaded
|
||||
[17:39:24] [Render thread/WARN]: [OptiFine] (Reflector) java.lang.ClassNotFoundException: sun.misc.SharedSecrets
|
||||
[17:39:24] [Render thread/WARN]: [OptiFine] (Reflector) java.lang.ClassNotFoundException: jdk.internal.misc.SharedSecrets
|
||||
[17:39:24] [Render thread/WARN]: [OptiFine] (Reflector) java.lang.ClassNotFoundException: sun.misc.VM
|
||||
[17:39:24] [Render thread/WARN]: [OptiFine] (Reflector) java.lang.reflect.InaccessibleObjectException: Unable to make public static long jdk.internal.misc.VM.maxDirectMemory() accessible: module java.base does not "exports jdk.internal.misc" to module net.optifine
|
||||
[17:39:24] [Render thread/INFO]: [Shaders] Custom texture: texture.composite.depthtex2 = tex/dirt.png
|
||||
[17:39:24] [Render thread/INFO]: [Shaders] Custom variable: tAmin
|
||||
[17:39:24] [Render thread/INFO]: [Shaders] Custom variable: tAlin
|
||||
[17:39:24] [Render thread/INFO]: [Shaders] Custom variable: hA
|
||||
[17:39:24] [Render thread/INFO]: [Shaders] Custom variable: tAfrc
|
||||
[17:39:24] [Render thread/INFO]: [Shaders] Custom variable: tAfrs
|
||||
[17:39:24] [Render thread/INFO]: [Shaders] Custom variable: tAmix
|
||||
[17:39:24] [Render thread/INFO]: [Shaders] Custom uniform: timeAngle
|
||||
[17:39:24] [Render thread/INFO]: [Shaders] Custom uniform: timeBrightness
|
||||
[17:39:24] [Render thread/INFO]: [Shaders] Custom uniform: shadowFade
|
||||
[17:39:24] [Render thread/INFO]: [Shaders] Custom uniform: isCold
|
||||
[17:39:24] [Render thread/INFO]: [Shaders] Custom uniform: isDesert
|
||||
[17:39:24] [Render thread/INFO]: [Shaders] Custom uniform: isMesa
|
||||
[17:39:24] [Render thread/INFO]: [Shaders] Custom uniform: isSwamp
|
||||
[17:39:24] [Render thread/INFO]: [Shaders] Custom uniform: isMushroom
|
||||
[17:39:24] [VersionCheck/INFO]: [OptiFine] Version found: H6
|
||||
[17:39:24] [modloading-worker-0/INFO]: Forge mod loading, version 40.1.59, for MC 1.18.2 with MCP 20220404.173914
|
||||
[17:39:24] [modloading-worker-0/INFO]: MinecraftForge v40.1.59 Initialized
|
||||
[17:39:26] [Render thread/INFO]: Narrator library for x64 successfully loaded
|
||||
[17:39:26] [Render thread/INFO]: Saving config file: D:\hmcl启动器\.minecraft\config\jei\jei-client.ini
|
||||
[17:39:26] [Render thread/INFO]: Reloading ResourceManager: Mod Resources, Default
|
||||
[17:39:26] [Render thread/INFO]: [OptiFine] *** Reloading textures ***
|
||||
[17:39:26] [Render thread/INFO]: [OptiFine] Resource packs: Mod Resources
|
||||
[17:39:26] [modloading-worker-0/WARN]: Configuration file D:\hmcl启动器\.minecraft\config\buildinggadgets-client.toml is not correct. Correcting
|
||||
[17:39:26] [modloading-worker-0/WARN]: Incorrect key general was corrected from null to its default, SimpleCommentedConfig:{}.
|
||||
[17:39:26] [modloading-worker-0/WARN]: Incorrect key general.Default to absolute Coord-Mode was corrected from null to its default, false.
|
||||
[17:39:26] [modloading-worker-0/WARN]: Configuration file D:\hmcl启动器\.minecraft\config\cgm-client.toml is not correct. Correcting
|
||||
[17:39:26] [modloading-worker-0/WARN]: Incorrect key client was corrected from null to its default, SimpleCommentedConfig:{}.
|
||||
[17:39:26] [modloading-worker-0/WARN]: Incorrect key client.sounds was corrected from null to its default, SimpleCommentedConfig:{}.
|
||||
[17:39:26] [modloading-worker-0/WARN]: Incorrect key client.sounds.playSoundWhenHeadshot was corrected from null to its default, true.
|
||||
[17:39:26] [modloading-worker-0/WARN]: Incorrect key client.sounds.headshotSound was corrected from null to its default, minecraft:entity.player.attack.knockback.
|
||||
[17:39:26] [modloading-worker-0/WARN]: Incorrect key client.sounds.playSoundWhenCritical was corrected from null to its default, true.
|
||||
[17:39:26] [modloading-worker-0/WARN]: Incorrect key client.sounds.criticalSound was corrected from null to its default, minecraft:entity.player.attack.crit.
|
||||
[17:39:26] [modloading-worker-0/WARN]: Incorrect key client.sounds.impactSoundDistance was corrected from null to its default, 32.0.
|
||||
[17:39:26] [modloading-worker-0/WARN]: Incorrect key client.display was corrected from null to its default, SimpleCommentedConfig:{}.
|
||||
[17:39:26] [modloading-worker-0/WARN]: Incorrect key client.display.oldAnimations was corrected from null to its default, false.
|
||||
[17:39:26] [modloading-worker-0/WARN]: Incorrect key client.display.crosshair was corrected from null to its default, minecraft:default.
|
||||
[17:39:26] [modloading-worker-0/WARN]: Incorrect key client.display.cooldownIndicator was corrected from null to its default, true.
|
||||
[17:39:26] [modloading-worker-0/WARN]: Incorrect key client.display.weaponSway was corrected from null to its default, true.
|
||||
[17:39:26] [modloading-worker-0/WARN]: Incorrect key client.display.swaySensitivity was corrected from null to its default, 0.3.
|
||||
[17:39:26] [modloading-worker-0/WARN]: Incorrect key client.display.swayType was corrected from null to its default, DRAG.
|
||||
[17:39:26] [modloading-worker-0/WARN]: Incorrect key client.display.cameraRollEffect was corrected from null to its default, true.
|
||||
[17:39:26] [modloading-worker-0/WARN]: Incorrect key client.display.cameraRollAngle was corrected from null to its default, 1.5.
|
||||
[17:39:26] [modloading-worker-0/WARN]: Incorrect key client.display.sprintingAnimation was corrected from null to its default, true.
|
||||
[17:39:26] [modloading-worker-0/WARN]: Incorrect key client.display.bobbingIntensity was corrected from null to its default, 1.0.
|
||||
[17:39:26] [modloading-worker-0/WARN]: Incorrect key client.particle was corrected from null to its default, SimpleCommentedConfig:{}.
|
||||
[17:39:26] [modloading-worker-0/WARN]: Incorrect key client.particle.bulletHoleLifeMin was corrected from null to its default, 150.
|
||||
[17:39:26] [modloading-worker-0/WARN]: Incorrect key client.particle.bulletHoleLifeMax was corrected from null to its default, 200.
|
||||
[17:39:26] [modloading-worker-0/WARN]: Incorrect key client.particle.bulletHoleFadeThreshold was corrected from null to its default, 0.98.
|
||||
[17:39:26] [modloading-worker-0/WARN]: Incorrect key client.particle.enableBlood was corrected from null to its default, false.
|
||||
[17:39:26] [modloading-worker-0/WARN]: Incorrect key client.particle.impactParticleDistance was corrected from null to its default, 32.0.
|
||||
[17:39:26] [modloading-worker-0/WARN]: Incorrect key client.controls was corrected from null to its default, SimpleCommentedConfig:{}.
|
||||
[17:39:26] [modloading-worker-0/WARN]: Incorrect key client.controls.aimDownSightSensitivity was corrected from null to its default, 0.75.
|
||||
[17:39:26] [modloading-worker-0/WARN]: Configuration file D:\hmcl启动器\.minecraft\config\cgm-common.toml is not correct. Correcting
|
||||
[17:39:26] [modloading-worker-0/WARN]: Incorrect key common was corrected from null to its default, SimpleCommentedConfig:{}.
|
||||
[17:39:26] [modloading-worker-0/WARN]: Incorrect key common.gameplay was corrected from null to its default, SimpleCommentedConfig:{}.
|
||||
[17:39:26] [modloading-worker-0/WARN]: Incorrect key common.gameplay.griefing was corrected from null to its default, SimpleCommentedConfig:{}.
|
||||
[17:39:26] [modloading-worker-0/WARN]: Incorrect key common.gameplay.griefing.enableBlockRemovalOnExplosions was corrected from null to its default, true.
|
||||
[17:39:26] [modloading-worker-0/WARN]: Incorrect key common.gameplay.griefing.enableGlassBreaking was corrected from null to its default, true.
|
||||
[17:39:26] [modloading-worker-0/WARN]: Incorrect key common.gameplay.griefing.setFireToBlocks was corrected from null to its default, true.
|
||||
[17:39:26] [modloading-worker-0/WARN]: Incorrect key common.gameplay.growBoundingBoxAmount was corrected from null to its default, 0.3.
|
||||
[17:39:26] [modloading-worker-0/WARN]: Incorrect key common.gameplay.enableHeadShots was corrected from null to its default, true.
|
||||
[17:39:26] [modloading-worker-0/WARN]: Incorrect key common.gameplay.headShotDamageMultiplier was corrected from null to its default, 1.25.
|
||||
[17:39:26] [modloading-worker-0/WARN]: Incorrect key common.gameplay.criticalDamageMultiplier was corrected from null to its default, 1.5.
|
||||
[17:39:26] [modloading-worker-0/WARN]: Incorrect key common.gameplay.ignoreLeaves was corrected from null to its default, true.
|
||||
[17:39:26] [modloading-worker-0/WARN]: Incorrect key common.gameplay.enableKnockback was corrected from null to its default, true.
|
||||
[17:39:26] [modloading-worker-0/WARN]: Incorrect key common.gameplay.knockbackStrength was corrected from null to its default, 0.15.
|
||||
[17:39:26] [modloading-worker-0/WARN]: Incorrect key common.gameplay.improvedHitboxes was corrected from null to its default, false.
|
||||
[17:39:26] [modloading-worker-0/WARN]: Incorrect key common.network was corrected from null to its default, SimpleCommentedConfig:{}.
|
||||
[17:39:26] [modloading-worker-0/WARN]: Incorrect key common.network.projectileTrackingRange was corrected from null to its default, 200.0.
|
||||
[17:39:26] [modloading-worker-0/WARN]: Incorrect key common.aggro_mobs was corrected from null to its default, SimpleCommentedConfig:{}.
|
||||
[17:39:26] [modloading-worker-0/WARN]: Incorrect key common.aggro_mobs.enabled was corrected from null to its default, true.
|
||||
[17:39:26] [modloading-worker-0/WARN]: Incorrect key common.aggro_mobs.angerHostileMobs was corrected from null to its default, true.
|
||||
[17:39:26] [modloading-worker-0/WARN]: Incorrect key common.aggro_mobs.unsilencedRange was corrected from null to its default, 20.0.
|
||||
[17:39:26] [modloading-worker-0/WARN]: Incorrect key common.aggro_mobs.exemptMobs was corrected from null to its default, [].
|
||||
[17:39:26] [modloading-worker-0/WARN]: Incorrect key common.missiles was corrected from null to its default, SimpleCommentedConfig:{}.
|
||||
[17:39:26] [modloading-worker-0/WARN]: Incorrect key common.missiles.explosionRadius was corrected from null to its default, 5.0.
|
||||
[17:39:26] [modloading-worker-0/WARN]: Incorrect key common.grenades was corrected from null to its default, SimpleCommentedConfig:{}.
|
||||
[17:39:26] [modloading-worker-0/WARN]: Incorrect key common.grenades.explosionRadius was corrected from null to its default, 5.0.
|
||||
[17:39:26] [modloading-worker-0/WARN]: Incorrect key common.stun_grenades was corrected from null to its default, SimpleCommentedConfig:{}.
|
||||
[17:39:26] [modloading-worker-0/WARN]: Incorrect key common.stun_grenades.blind was corrected from null to its default, SimpleCommentedConfig:{}.
|
||||
[17:39:26] [modloading-worker-0/WARN]: Incorrect key common.stun_grenades.blind.effect_criteria was corrected from null to its default, SimpleCommentedConfig:{}.
|
||||
[17:39:26] [modloading-worker-0/WARN]: Incorrect key common.stun_grenades.blind.effect_criteria.radius was corrected from null to its default, 15.0.
|
||||
[17:39:26] [modloading-worker-0/WARN]: Incorrect key common.stun_grenades.blind.effect_criteria.durationMax was corrected from null to its default, 220.
|
||||
[17:39:26] [modloading-worker-0/WARN]: Incorrect key common.stun_grenades.blind.effect_criteria.durationMin was corrected from null to its default, 10.
|
||||
[17:39:26] [modloading-worker-0/WARN]: Incorrect key common.stun_grenades.blind.effect_criteria.angleEffect was corrected from null to its default, 170.0.
|
||||
[17:39:26] [modloading-worker-0/WARN]: Incorrect key common.stun_grenades.blind.effect_criteria.angleAttenuationMax was corrected from null to its default, 0.75.
|
||||
[17:39:26] [modloading-worker-0/WARN]: Incorrect key common.stun_grenades.blind.effect_criteria.raytraceOpaqueBlocks was corrected from null to its default, true.
|
||||
[17:39:26] [modloading-worker-0/WARN]: Incorrect key common.stun_grenades.blind.blindMobs was corrected from null to its default, true.
|
||||
[17:39:26] [modloading-worker-0/WARN]: Incorrect key common.stun_grenades.deafen was corrected from null to its default, SimpleCommentedConfig:{}.
|
||||
[17:39:26] [modloading-worker-0/WARN]: Incorrect key common.stun_grenades.deafen.effect_criteria was corrected from null to its default, SimpleCommentedConfig:{}.
|
||||
[17:39:26] [modloading-worker-0/WARN]: Incorrect key common.stun_grenades.deafen.effect_criteria.radius was corrected from null to its default, 15.0.
|
||||
[17:39:26] [modloading-worker-0/WARN]: Incorrect key common.stun_grenades.deafen.effect_criteria.durationMax was corrected from null to its default, 280.
|
||||
[17:39:26] [modloading-worker-0/WARN]: Incorrect key common.stun_grenades.deafen.effect_criteria.durationMin was corrected from null to its default, 100.
|
||||
[17:39:26] [modloading-worker-0/WARN]: Incorrect key common.stun_grenades.deafen.effect_criteria.angleEffect was corrected from null to its default, 360.0.
|
||||
[17:39:26] [modloading-worker-0/WARN]: Incorrect key common.stun_grenades.deafen.effect_criteria.angleAttenuationMax was corrected from null to its default, 0.75.
|
||||
[17:39:26] [modloading-worker-0/WARN]: Incorrect key common.stun_grenades.deafen.effect_criteria.raytraceOpaqueBlocks was corrected from null to its default, false.
|
||||
[17:39:26] [modloading-worker-0/WARN]: Incorrect key common.stun_grenades.deafen.panicMobs was corrected from null to its default, true.
|
||||
[17:39:26] [modloading-worker-0/WARN]: Incorrect key common.projectile_spread was corrected from null to its default, SimpleCommentedConfig:{}.
|
||||
[17:39:26] [modloading-worker-0/WARN]: Incorrect key common.projectile_spread.spreadThreshold was corrected from null to its default, 300.
|
||||
[17:39:26] [modloading-worker-0/WARN]: Incorrect key common.projectile_spread.maxCount was corrected from null to its default, 10.
|
||||
[17:39:26] [modloading-worker-0/WARN]: Configuration file D:\hmcl启动器\.minecraft\config\waystones-common.toml is not correct. Correcting
|
||||
[17:39:26] [modloading-worker-0/WARN]: Incorrect key xpCost was corrected from null to its default, SimpleCommentedConfig:{}.
|
||||
[17:39:26] [modloading-worker-0/WARN]: Incorrect key xpCost.inverseXpCost was corrected from null to its default, false.
|
||||
[17:39:26] [modloading-worker-0/WARN]: Incorrect key xpCost.blocksPerXpLevel was corrected from null to its default, 1000.
|
||||
[17:39:26] [modloading-worker-0/WARN]: Incorrect key xpCost.minimumBaseXpCost was corrected from null to its default, 0.0.
|
||||
[17:39:26] [modloading-worker-0/WARN]: Incorrect key xpCost.maximumBaseXpCost was corrected from null to its default, 3.0.
|
||||
[17:39:26] [modloading-worker-0/WARN]: Incorrect key xpCost.xpCostPerLeashed was corrected from null to its default, 1.
|
||||
[17:39:26] [modloading-worker-0/WARN]: Incorrect key xpCost.dimensionalWarpXpCost was corrected from null to its default, 3.
|
||||
[17:39:26] [modloading-worker-0/WARN]: Incorrect key xpCost.globalWaystoneXpCostMultiplier was corrected from null to its default, 1.0.
|
||||
[17:39:26] [modloading-worker-0/WARN]: Incorrect key xpCost.warpStoneXpCostMultiplier was corrected from null to its default, 0.0.
|
||||
[17:39:26] [modloading-worker-0/WARN]: Incorrect key xpCost.waystoneXpCostMultiplier was corrected from null to its default, 1.0.
|
||||
[17:39:26] [modloading-worker-0/WARN]: Incorrect key xpCost.sharestoneXpCostMultiplier was corrected from null to its default, 1.0.
|
||||
[17:39:26] [modloading-worker-0/WARN]: Incorrect key xpCost.portstoneXpCostMultiplier was corrected from null to its default, 0.0.
|
||||
[17:39:26] [modloading-worker-0/WARN]: Incorrect key xpCost.warpPlateXpCostMultiplier was corrected from null to its default, 0.0.
|
||||
[17:39:26] [modloading-worker-0/WARN]: Incorrect key xpCost.inventoryButtonXpCostMultiplier was corrected from null to its default, 0.0.
|
||||
[17:39:26] [modloading-worker-0/WARN]: Incorrect key restrictions was corrected from null to its default, SimpleCommentedConfig:{}.
|
||||
[17:39:26] [modloading-worker-0/WARN]: Incorrect key restrictions.restrictToCreative was corrected from null to its default, false.
|
||||
[17:39:26] [modloading-worker-0/WARN]: Incorrect key restrictions.restrictRenameToOwner was corrected from null to its default, false.
|
||||
[17:39:26] [modloading-worker-0/WARN]: Incorrect key restrictions.generatedWaystonesUnbreakable was corrected from null to its default, false.
|
||||
[17:39:26] [modloading-worker-0/WARN]: Incorrect key restrictions.transportLeashed was corrected from null to its default, true.
|
||||
[17:39:26] [modloading-worker-0/WARN]: Incorrect key restrictions.transportLeashedDimensional was corrected from null to its default, true.
|
||||
[17:39:26] [modloading-worker-0/WARN]: Incorrect key restrictions.leashedDenyList was corrected from null to its default, [minecraft:wither].
|
||||
[17:39:26] [modloading-worker-0/WARN]: Incorrect key restrictions.dimensionalWarp was corrected from null to its default, ALLOW.
|
||||
[17:39:26] [modloading-worker-0/WARN]: Incorrect key restrictions.dimensionalWarpAllowList was corrected from null to its default, [].
|
||||
[17:39:26] [modloading-worker-0/WARN]: Incorrect key restrictions.dimensionalWarpDenyList was corrected from null to its default, [].
|
||||
[17:39:26] [modloading-worker-0/WARN]: Incorrect key restrictions.allowWaystoneToWaystoneTeleport was corrected from null to its default, true.
|
||||
[17:39:26] [modloading-worker-0/WARN]: Incorrect key restrictions.globalWaystoneSetupRequiresCreativeMode was corrected from null to its default, true.
|
||||
[17:39:26] [modloading-worker-0/WARN]: Incorrect key cooldowns was corrected from null to its default, SimpleCommentedConfig:{}.
|
||||
[17:39:26] [Render thread/INFO]: [OptiFine] *** Reflector Forge ***
|
||||
[17:39:26] [modloading-worker-0/WARN]: Incorrect key cooldowns.globalWaystoneCooldownMultiplier was corrected from null to its default, 1.0.
|
||||
[17:39:26] [modloading-worker-0/WARN]: Incorrect key cooldowns.warpStoneCooldown was corrected from null to its default, 300.
|
||||
[17:39:26] [modloading-worker-0/WARN]: Incorrect key cooldowns.warpStoneUseTime was corrected from null to its default, 32.
|
||||
[17:39:26] [modloading-worker-0/WARN]: Incorrect key cooldowns.warpPlateUseTime was corrected from null to its default, 20.
|
||||
[17:39:26] [modloading-worker-0/WARN]: Incorrect key cooldowns.scrollUseTime was corrected from null to its default, 32.
|
||||
[17:39:26] [modloading-worker-0/WARN]: Incorrect key cooldowns.inventoryButtonCooldown was corrected from null to its default, 300.
|
||||
[17:39:26] [Render thread/INFO]: [OptiFine] (Reflector) Class not present: mods.betterfoliage.client.BetterFoliageClient
|
||||
[17:39:26] [modloading-worker-0/WARN]: Incorrect key inventoryButton was corrected from null to its default, SimpleCommentedConfig:{}.
|
||||
[17:39:26] [modloading-worker-0/WARN]: Incorrect key inventoryButton.inventoryButton was corrected from null to its default, .
|
||||
[17:39:26] [modloading-worker-0/WARN]: Incorrect key inventoryButton.warpButtonX was corrected from null to its default, 58.
|
||||
[17:39:26] [modloading-worker-0/WARN]: Incorrect key inventoryButton.warpButtonY was corrected from null to its default, 60.
|
||||
[17:39:26] [modloading-worker-0/WARN]: Incorrect key inventoryButton.creativeWarpButtonX was corrected from null to its default, 88.
|
||||
[17:39:26] [modloading-worker-0/WARN]: Incorrect key inventoryButton.creativeWarpButtonY was corrected from null to its default, 33.
|
||||
[17:39:26] [modloading-worker-0/WARN]: Incorrect key worldGen was corrected from null to its default, SimpleCommentedConfig:{}.
|
||||
[17:39:26] [modloading-worker-0/WARN]: Incorrect key worldGen.worldGenStyle was corrected from null to its default, BIOME.
|
||||
[17:39:26] [modloading-worker-0/WARN]: Incorrect key worldGen.frequency was corrected from null to its default, 25.
|
||||
[17:39:26] [modloading-worker-0/WARN]: Incorrect key worldGen.dimensionAllowList was corrected from null to its default, [minecraft:overworld, minecraft:the_nether, minecraft:the_end].
|
||||
[17:39:26] [modloading-worker-0/WARN]: Incorrect key worldGen.dimensionDenyList was corrected from null to its default, [].
|
||||
[17:39:26] [modloading-worker-0/WARN]: Incorrect key worldGen.nameGenerationMode was corrected from null to its default, PRESET_FIRST.
|
||||
[17:39:26] [modloading-worker-0/WARN]: Incorrect key worldGen.customWaystoneNames was corrected from null to its default, [].
|
||||
[17:39:26] [modloading-worker-0/WARN]: Incorrect key worldGen.spawnInVillages was corrected from null to its default, true.
|
||||
[17:39:26] [modloading-worker-0/WARN]: Incorrect key worldGen.forceSpawnInVillages was corrected from null to its default, false.
|
||||
[17:39:26] [modloading-worker-0/WARN]: Incorrect key client was corrected from null to its default, SimpleCommentedConfig:{}.
|
||||
[17:39:26] [modloading-worker-0/WARN]: Incorrect key client.disableTextGlow was corrected from null to its default, false.
|
||||
[17:39:26] [modloading-worker-0/WARN]: Incorrect key client.disableParticles was corrected from null to its default, false.
|
||||
[17:39:26] [modloading-worker-0/WARN]: Incorrect key compatibility was corrected from null to its default, SimpleCommentedConfig:{}.
|
||||
[17:39:26] [modloading-worker-0/WARN]: Incorrect key compatibility.displayWaystonesOnJourneyMap was corrected from null to its default, true.
|
||||
[17:39:26] [Render thread/WARN]: [OptiFine] (Reflector) More than one method found: net.minecraftforge.client.ForgeHooksClient.onFogRender
|
||||
[17:39:26] [Render thread/WARN]: [OptiFine] (Reflector) - public static void net.minecraftforge.client.ForgeHooksClient.onFogRender(net.minecraft.client.renderer.FogRenderer$FogMode,net.minecraft.client.Camera,float,float,float,com.mojang.blaze3d.shaders.FogShape)
|
||||
[17:39:26] [Render thread/WARN]: [OptiFine] (Reflector) - public static void net.minecraftforge.client.ForgeHooksClient.onFogRender(net.minecraft.client.renderer.FogRenderer$FogMode,net.minecraft.client.Camera,float,float)
|
||||
[17:39:26] [Render thread/INFO]: [OptiFine] *** Reflector Vanilla ***
|
||||
[17:39:26] [Worker-Main-11/INFO]: [OptiFine] Multitexture: false
|
||||
[17:39:26] [Worker-Main-6/INFO]: [OptiFine] Multitexture: false
|
||||
[17:39:26] [Worker-Main-8/INFO]: [OptiFine] Multitexture: false
|
||||
[17:39:26] [Forge Version Check/INFO]: [framework] Starting version check at https://mrcrayfish.com/modupdatejson?id=framework
|
||||
[17:39:28] [Worker-Main-9/INFO]: [OptiFine] Multitexture: false
|
||||
[17:39:30] [Worker-Main-10/WARN]: [OptiFine] Unknown resource pack file: mod_resources
|
||||
[17:39:30] [Worker-Main-10/WARN]: [OptiFine] Unknown resource pack file: mod_resources
|
||||
[17:39:30] [Worker-Main-10/WARN]: [OptiFine] Unknown resource pack file: mod_resources
|
||||
[17:39:30] [Worker-Main-10/WARN]: [OptiFine] Unknown resource pack file: mod_resources
|
||||
[17:39:30] [Worker-Main-10/INFO]: [OptiFine] Multitexture: false
|
||||
[17:39:30] [Worker-Main-10/WARN]: [OptiFine] Unknown resource pack file: mod_resources
|
||||
[17:39:30] [Worker-Main-10/INFO]: [OptiFine] Multipass connected textures: false
|
||||
[17:39:30] [Worker-Main-10/INFO]: [OptiFine] ConnectedTextures: optifine/ctm/default/00_glass_white/glass_pane_white.properties
|
||||
[17:39:31] [Worker-Main-10/INFO]: [OptiFine] ConnectedTextures: optifine/ctm/default/00_glass_white/glass_white.properties
|
||||
[17:39:31] [Worker-Main-10/INFO]: [OptiFine] ConnectedTextures: optifine/ctm/default/01_glass_orange/glass_orange.properties
|
||||
[17:39:31] [Worker-Main-10/INFO]: [OptiFine] ConnectedTextures: optifine/ctm/default/01_glass_orange/glass_pane_orange.properties
|
||||
[17:39:31] [Worker-Main-10/INFO]: [OptiFine] ConnectedTextures: optifine/ctm/default/02_glass_magenta/glass_magenta.properties
|
||||
[17:39:31] [Worker-Main-10/INFO]: [OptiFine] ConnectedTextures: optifine/ctm/default/02_glass_magenta/glass_pane_magenta.properties
|
||||
[17:39:31] [Worker-Main-10/INFO]: [OptiFine] ConnectedTextures: optifine/ctm/default/03_glass_light_blue/glass_light_blue.properties
|
||||
[17:39:31] [Worker-Main-10/INFO]: [OptiFine] ConnectedTextures: optifine/ctm/default/03_glass_light_blue/glass_pane_light_blue.properties
|
||||
[17:39:31] [Worker-Main-10/INFO]: [OptiFine] ConnectedTextures: optifine/ctm/default/04_glass_yellow/glass_pane_yellow.properties
|
||||
[17:39:31] [Worker-Main-10/INFO]: [OptiFine] ConnectedTextures: optifine/ctm/default/04_glass_yellow/glass_yellow.properties
|
||||
[17:39:31] [Worker-Main-10/INFO]: [OptiFine] ConnectedTextures: optifine/ctm/default/05_glass_lime/glass_lime.properties
|
||||
[17:39:31] [Worker-Main-10/INFO]: [OptiFine] ConnectedTextures: optifine/ctm/default/05_glass_lime/glass_pane_lime.properties
|
||||
[17:39:31] [Worker-Main-10/INFO]: [OptiFine] ConnectedTextures: optifine/ctm/default/06_glass_pink/glass_pane_pink.properties
|
||||
[17:39:31] [Worker-Main-10/INFO]: [OptiFine] ConnectedTextures: optifine/ctm/default/06_glass_pink/glass_pink.properties
|
||||
[17:39:31] [Worker-Main-10/INFO]: [OptiFine] ConnectedTextures: optifine/ctm/default/07_glass_gray/glass_gray.properties
|
||||
[17:39:31] [Worker-Main-10/INFO]: [OptiFine] ConnectedTextures: optifine/ctm/default/07_glass_gray/glass_pane_gray.properties
|
||||
[17:39:31] [Worker-Main-10/INFO]: [OptiFine] ConnectedTextures: optifine/ctm/default/08_glass_light_gray/glass_light_gray.properties
|
||||
[17:39:31] [Worker-Main-10/INFO]: [OptiFine] ConnectedTextures: optifine/ctm/default/08_glass_light_gray/glass_pane_light_gray.properties
|
||||
[17:39:31] [Worker-Main-10/INFO]: [OptiFine] ConnectedTextures: optifine/ctm/default/09_glass_cyan/glass_cyan.properties
|
||||
[17:39:31] [Worker-Main-10/INFO]: [OptiFine] ConnectedTextures: optifine/ctm/default/09_glass_cyan/glass_pane_cyan.properties
|
||||
[17:39:31] [Worker-Main-10/INFO]: [OptiFine] ConnectedTextures: optifine/ctm/default/10_glass_purple/glass_pane_purple.properties
|
||||
[17:39:31] [Worker-Main-10/INFO]: [OptiFine] ConnectedTextures: optifine/ctm/default/10_glass_purple/glass_purple.properties
|
||||
[17:39:31] [Worker-Main-10/INFO]: [OptiFine] ConnectedTextures: optifine/ctm/default/11_glass_blue/glass_blue.properties
|
||||
[17:39:31] [Worker-Main-10/INFO]: [OptiFine] ConnectedTextures: optifine/ctm/default/11_glass_blue/glass_pane_blue.properties
|
||||
[17:39:31] [Worker-Main-10/INFO]: [OptiFine] ConnectedTextures: optifine/ctm/default/12_glass_brown/glass_brown.properties
|
||||
[17:39:31] [Worker-Main-10/INFO]: [OptiFine] ConnectedTextures: optifine/ctm/default/12_glass_brown/glass_pane_brown.properties
|
||||
[17:39:31] [Worker-Main-10/INFO]: [OptiFine] ConnectedTextures: optifine/ctm/default/13_glass_green/glass_green.properties
|
||||
[17:39:31] [Worker-Main-10/INFO]: [OptiFine] ConnectedTextures: optifine/ctm/default/13_glass_green/glass_pane_green.properties
|
||||
[17:39:31] [Worker-Main-10/INFO]: [OptiFine] ConnectedTextures: optifine/ctm/default/14_glass_red/glass_pane_red.properties
|
||||
[17:39:31] [Worker-Main-10/INFO]: [OptiFine] ConnectedTextures: optifine/ctm/default/14_glass_red/glass_red.properties
|
||||
[17:39:31] [Worker-Main-10/INFO]: [OptiFine] ConnectedTextures: optifine/ctm/default/15_glass_black/glass_black.properties
|
||||
[17:39:31] [Worker-Main-10/INFO]: [OptiFine] ConnectedTextures: optifine/ctm/default/15_glass_black/glass_pane_black.properties
|
||||
[17:39:31] [Worker-Main-10/INFO]: [OptiFine] ConnectedTextures: optifine/ctm/default/20_glass/glass.properties
|
||||
[17:39:31] [Worker-Main-10/INFO]: [OptiFine] ConnectedTextures: optifine/ctm/default/20_glass/glass_pane.properties
|
||||
[17:39:31] [Worker-Main-10/INFO]: [OptiFine] ConnectedTextures: optifine/ctm/default/21_tinted_glass/tinted_glass.properties
|
||||
[17:39:31] [Worker-Main-10/INFO]: [OptiFine] ConnectedTextures: optifine/ctm/default/30_bookshelf/bookshelf.properties
|
||||
[17:39:31] [Worker-Main-10/INFO]: [OptiFine] ConnectedTextures: optifine/ctm/default/40_sandstone/sandstone.properties
|
||||
[17:39:31] [Worker-Main-10/INFO]: [OptiFine] ConnectedTextures: optifine/ctm/default/41_red_sandstone/red_sandstone.properties
|
||||
[17:39:31] [Worker-Main-10/INFO]: [OptiFine] Multipass connected textures: false
|
||||
[17:39:31] [Worker-Main-10/INFO]: [OptiFine] BetterGrass: Parsing default configuration optifine/bettergrass.properties
|
||||
[17:39:31] [Forge Version Check/INFO]: [framework] Found status: BETA Current: 0.2.4 Target: 0.2.4
|
||||
[17:39:31] [Forge Version Check/INFO]: [cgm] Starting version check at https://raw.githubusercontent.com/MrCrayfish/ModUpdates/master/cgm/update.json
|
||||
[17:39:31] [Forge Version Check/WARN]: Failed to process update information
|
||||
java.net.ConnectException: null
|
||||
at jdk.internal.net.http.HttpClientImpl.send(Unknown Source) ~[java.net.http:?]
|
||||
at jdk.internal.net.http.HttpClientFacade.send(Unknown Source) ~[java.net.http:?]
|
||||
at net.minecraftforge.fml.VersionChecker$1.openUrlString(VersionChecker.java:131) ~[fmlcore-1.18.2-40.1.59.jar%2364!/:?]
|
||||
at net.minecraftforge.fml.VersionChecker$1.process(VersionChecker.java:169) ~[fmlcore-1.18.2-40.1.59.jar%2364!/:?]
|
||||
at java.lang.Iterable.forEach(Unknown Source) [?:?]
|
||||
at net.minecraftforge.fml.VersionChecker$1.run(VersionChecker.java:114) [fmlcore-1.18.2-40.1.59.jar%2364!/:?]
|
||||
Caused by: java.net.ConnectException
|
||||
at jdk.internal.net.http.common.Utils.toConnectException(Unknown Source) ~[java.net.http:?]
|
||||
at jdk.internal.net.http.PlainHttpConnection.connectAsync(Unknown Source) ~[java.net.http:?]
|
||||
at jdk.internal.net.http.AsyncSSLConnection.connectAsync(Unknown Source) ~[java.net.http:?]
|
||||
at jdk.internal.net.http.Http2Connection.createAsync(Unknown Source) ~[java.net.http:?]
|
||||
at jdk.internal.net.http.Http2ClientImpl.getConnectionFor(Unknown Source) ~[java.net.http:?]
|
||||
at jdk.internal.net.http.ExchangeImpl.get(Unknown Source) ~[java.net.http:?]
|
||||
at jdk.internal.net.http.Exchange.establishExchange(Unknown Source) ~[java.net.http:?]
|
||||
at jdk.internal.net.http.Exchange.responseAsyncImpl0(Unknown Source) ~[java.net.http:?]
|
||||
at jdk.internal.net.http.Exchange.responseAsyncImpl(Unknown Source) ~[java.net.http:?]
|
||||
at jdk.internal.net.http.Exchange.responseAsync(Unknown Source) ~[java.net.http:?]
|
||||
at jdk.internal.net.http.MultiExchange.responseAsyncImpl(Unknown Source) ~[java.net.http:?]
|
||||
at jdk.internal.net.http.MultiExchange.lambda$responseAsyncImpl$7(Unknown Source) ~[java.net.http:?]
|
||||
at java.util.concurrent.CompletableFuture.uniHandle(Unknown Source) ~[?:?]
|
||||
at java.util.concurrent.CompletableFuture.uniHandleStage(Unknown Source) ~[?:?]
|
||||
at java.util.concurrent.CompletableFuture.handle(Unknown Source) ~[?:?]
|
||||
at jdk.internal.net.http.MultiExchange.responseAsyncImpl(Unknown Source) ~[java.net.http:?]
|
||||
at jdk.internal.net.http.MultiExchange.lambda$responseAsync0$2(Unknown Source) ~[java.net.http:?]
|
||||
at java.util.concurrent.CompletableFuture$UniCompose.tryFire(Unknown Source) ~[?:?]
|
||||
at java.util.concurrent.CompletableFuture.postComplete(Unknown Source) ~[?:?]
|
||||
at java.util.concurrent.CompletableFuture$AsyncSupply.run(Unknown Source) ~[?:?]
|
||||
at jdk.internal.net.http.HttpClientImpl$DelegatingExecutor.execute(Unknown Source) ~[java.net.http:?]
|
||||
at java.util.concurrent.CompletableFuture.completeAsync(Unknown Source) ~[?:?]
|
||||
at jdk.internal.net.http.MultiExchange.responseAsync(Unknown Source) ~[java.net.http:?]
|
||||
at jdk.internal.net.http.HttpClientImpl.sendAsync(Unknown Source) ~[java.net.http:?]
|
||||
... 6 more
|
||||
Caused by: java.nio.channels.UnresolvedAddressException
|
||||
at sun.nio.ch.Net.checkAddress(Unknown Source) ~[?:?]
|
||||
at sun.nio.ch.Net.checkAddress(Unknown Source) ~[?:?]
|
||||
at sun.nio.ch.SocketChannelImpl.checkRemote(Unknown Source) ~[?:?]
|
||||
at sun.nio.ch.SocketChannelImpl.connect(Unknown Source) ~[?:?]
|
||||
at jdk.internal.net.http.PlainHttpConnection.lambda$connectAsync$0(Unknown Source) ~[java.net.http:?]
|
||||
at java.security.AccessController.doPrivileged(Unknown Source) ~[?:?]
|
||||
at jdk.internal.net.http.PlainHttpConnection.connectAsync(Unknown Source) ~[java.net.http:?]
|
||||
at jdk.internal.net.http.AsyncSSLConnection.connectAsync(Unknown Source) ~[java.net.http:?]
|
||||
at jdk.internal.net.http.Http2Connection.createAsync(Unknown Source) ~[java.net.http:?]
|
||||
at jdk.internal.net.http.Http2ClientImpl.getConnectionFor(Unknown Source) ~[java.net.http:?]
|
||||
at jdk.internal.net.http.ExchangeImpl.get(Unknown Source) ~[java.net.http:?]
|
||||
at jdk.internal.net.http.Exchange.establishExchange(Unknown Source) ~[java.net.http:?]
|
||||
at jdk.internal.net.http.Exchange.responseAsyncImpl0(Unknown Source) ~[java.net.http:?]
|
||||
at jdk.internal.net.http.Exchange.responseAsyncImpl(Unknown Source) ~[java.net.http:?]
|
||||
at jdk.internal.net.http.Exchange.responseAsync(Unknown Source) ~[java.net.http:?]
|
||||
at jdk.internal.net.http.MultiExchange.responseAsyncImpl(Unknown Source) ~[java.net.http:?]
|
||||
at jdk.internal.net.http.MultiExchange.lambda$responseAsyncImpl$7(Unknown Source) ~[java.net.http:?]
|
||||
at java.util.concurrent.CompletableFuture.uniHandle(Unknown Source) ~[?:?]
|
||||
at java.util.concurrent.CompletableFuture.uniHandleStage(Unknown Source) ~[?:?]
|
||||
at java.util.concurrent.CompletableFuture.handle(Unknown Source) ~[?:?]
|
||||
at jdk.internal.net.http.MultiExchange.responseAsyncImpl(Unknown Source) ~[java.net.http:?]
|
||||
at jdk.internal.net.http.MultiExchange.lambda$responseAsync0$2(Unknown Source) ~[java.net.http:?]
|
||||
at java.util.concurrent.CompletableFuture$UniCompose.tryFire(Unknown Source) ~[?:?]
|
||||
at java.util.concurrent.CompletableFuture.postComplete(Unknown Source) ~[?:?]
|
||||
at java.util.concurrent.CompletableFuture$AsyncSupply.run(Unknown Source) ~[?:?]
|
||||
at jdk.internal.net.http.HttpClientImpl$DelegatingExecutor.execute(Unknown Source) ~[java.net.http:?]
|
||||
at java.util.concurrent.CompletableFuture.completeAsync(Unknown Source) ~[?:?]
|
||||
at jdk.internal.net.http.MultiExchange.responseAsync(Unknown Source) ~[java.net.http:?]
|
||||
at jdk.internal.net.http.HttpClientImpl.sendAsync(Unknown Source) ~[java.net.http:?]
|
||||
... 6 more
|
||||
[17:39:31] [Forge Version Check/INFO]: [forge] Starting version check at https://files.minecraftforge.net/net/minecraftforge/forge/promotions_slim.json
|
||||
[17:39:32] [Forge Version Check/INFO]: [forge] Found status: OUTDATED Current: 40.1.59 Target: 40.1.86
|
||||
[17:39:34] [Worker-Main-10/INFO]: [OptiFine] Mipmap levels: 4
|
||||
[17:39:34] [Worker-Main-9/INFO]: [OptiFine] Scaled non power of 2: jei:gui/icons/recipe_transfer, 7 -> 14
|
||||
[17:39:34] [Render thread/INFO]: Registered synced data key cgm:aiming for minecraft:player
|
||||
[17:39:34] [Render thread/INFO]: Registered synced data key cgm:shooting for minecraft:player
|
||||
[17:39:34] [Render thread/INFO]: Registered synced data key cgm:reloading for minecraft:player
|
||||
[17:39:35] [Worker-Main-10/INFO]: [OptiFine] Multitexture: false
|
||||
[17:39:35] [Worker-Main-10/INFO]: [OptiFine] Sprite size: 64
|
||||
[17:39:35] [Worker-Main-10/INFO]: [OptiFine] Mipmap levels: 6
|
||||
[17:39:35] [Worker-Main-10/INFO]: [OptiFine] Scaled too small texture: buildinggadgets:gui/slot_copy_paste_gadget, 16 -> 64
|
||||
[17:39:35] [Worker-Main-10/INFO]: [OptiFine] Scaled too small texture: buildinggadgets:gui/slot_template, 16 -> 64
|
||||
[17:39:35] [Worker-Main-10/INFO]: [OptiFine] Scaled too small texture: minecraft:optifine/ctm/default/empty, 16 -> 64
|
||||
[17:39:35] [Worker-Main-10/WARN]: Unused frames in sprite minecraft:missingno: [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15]
|
||||
[17:39:35] [Worker-Main-10/INFO]: [OptiFine] Multitexture: false
|
||||
[17:39:35] [Worker-Main-10/INFO]: [OptiFine] Sprite size: 64
|
||||
[17:39:35] [Worker-Main-10/INFO]: [OptiFine] Mipmap levels: 6
|
||||
[17:39:35] [Worker-Main-10/INFO]: [OptiFine] Scaled too small texture: buildinggadgets:gui/slot_template, 16 -> 64
|
||||
[17:39:35] [Worker-Main-10/INFO]: [OptiFine] Scaled too small texture: buildinggadgets:gui/slot_copy_paste_gadget, 16 -> 64
|
||||
[17:39:35] [Worker-Main-10/INFO]: [OptiFine] Scaled too small texture: minecraft:optifine/ctm/default/empty, 16 -> 64
|
||||
[17:39:35] [Worker-Main-10/WARN]: Unused frames in sprite minecraft:missingno: [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15]
|
||||
[17:39:35] [Worker-Main-10/INFO]: [OptiFine] Multitexture: false
|
||||
[17:39:35] [Worker-Main-10/INFO]: [OptiFine] Sprite size: 64
|
||||
[17:39:35] [Worker-Main-10/INFO]: [OptiFine] Mipmap levels: 6
|
||||
[17:39:35] [Worker-Main-10/INFO]: [OptiFine] Scaled too small texture: buildinggadgets:gui/slot_template, 16 -> 64
|
||||
[17:39:35] [Worker-Main-10/INFO]: [OptiFine] Scaled too small texture: buildinggadgets:gui/slot_copy_paste_gadget, 16 -> 64
|
||||
[17:39:35] [Worker-Main-10/INFO]: [OptiFine] Scaled too small texture: minecraft:optifine/ctm/default/empty, 16 -> 64
|
||||
[17:39:35] [Worker-Main-10/WARN]: Unused frames in sprite minecraft:missingno: [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15]
|
||||
[17:39:35] [Worker-Main-10/INFO]: [OptiFine] Multitexture: false
|
||||
[17:39:35] [Worker-Main-10/INFO]: [OptiFine] Sprite size: 64
|
||||
[17:39:35] [Worker-Main-10/INFO]: [OptiFine] Mipmap levels: 6
|
||||
[17:39:35] [Worker-Main-10/INFO]: [OptiFine] Scaled too small texture: buildinggadgets:gui/slot_template, 16 -> 64
|
||||
[17:39:35] [Worker-Main-10/INFO]: [OptiFine] Scaled too small texture: buildinggadgets:gui/slot_copy_paste_gadget, 16 -> 64
|
||||
[17:39:35] [Worker-Main-10/INFO]: [OptiFine] Scaled too small texture: minecraft:optifine/ctm/default/empty, 16 -> 64
|
||||
[17:39:35] [Worker-Main-10/WARN]: Unused frames in sprite minecraft:missingno: [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15]
|
||||
[17:39:35] [Worker-Main-10/INFO]: [OptiFine] Multitexture: false
|
||||
[17:39:35] [Worker-Main-10/INFO]: [OptiFine] Sprite size: 64
|
||||
[17:39:35] [Worker-Main-10/INFO]: [OptiFine] Mipmap levels: 6
|
||||
[17:39:35] [Worker-Main-10/INFO]: [OptiFine] Scaled too small texture: buildinggadgets:gui/slot_template, 16 -> 64
|
||||
[17:39:35] [Worker-Main-10/INFO]: [OptiFine] Scaled too small texture: buildinggadgets:gui/slot_copy_paste_gadget, 16 -> 64
|
||||
[17:39:35] [Worker-Main-10/INFO]: [OptiFine] Scaled too small texture: minecraft:optifine/ctm/default/empty, 16 -> 64
|
||||
[17:39:35] [Worker-Main-10/WARN]: Unused frames in sprite minecraft:missingno: [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15]
|
||||
[17:39:35] [Worker-Main-10/INFO]: [OptiFine] Multitexture: false
|
||||
[17:39:36] [Worker-Main-10/INFO]: [OptiFine] Sprite size: 64
|
||||
[17:39:36] [Worker-Main-10/INFO]: [OptiFine] Mipmap levels: 6
|
||||
[17:39:36] [Worker-Main-10/INFO]: [OptiFine] Scaled too small texture: buildinggadgets:gui/slot_template, 16 -> 64
|
||||
[17:39:36] [Worker-Main-10/INFO]: [OptiFine] Scaled too small texture: buildinggadgets:gui/slot_copy_paste_gadget, 16 -> 64
|
||||
[17:39:36] [Worker-Main-10/INFO]: [OptiFine] Scaled too small texture: minecraft:optifine/ctm/default/empty, 16 -> 64
|
||||
[17:39:36] [Worker-Main-10/WARN]: Unused frames in sprite minecraft:missingno: [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15]
|
||||
[17:39:37] [Render thread/INFO]: OpenAL initialized on device OpenAL Soft on 扬声器 (3- Realtek(R) Audio)
|
||||
[17:39:37] [Render thread/INFO]: Sound engine started
|
||||
[17:39:37] [Render thread/INFO]: Created: 1024x1024x4 minecraft:textures/atlas/blocks.png-atlas
|
||||
[17:39:37] [Render thread/INFO]: [Shaders] Allocate texture map normal: 1024x1024, mipmaps: 4
|
||||
[17:39:37] [Render thread/INFO]: [Shaders] Allocate texture map specular: 1024x1024, mipmaps: 4
|
||||
[17:39:37] [Render thread/INFO]: [OptiFine] Animated sprites: 45
|
||||
[17:39:37] [Render thread/INFO]: Created: 512x512x4 minecraft:textures/atlas/signs.png-atlas
|
||||
[17:39:37] [Render thread/INFO]: [Shaders] Allocate texture map normal: 512x512, mipmaps: 4
|
||||
[17:39:37] [Render thread/INFO]: [Shaders] Allocate texture map specular: 512x512, mipmaps: 4
|
||||
[17:39:37] [Render thread/INFO]: [OptiFine] Animated sprites: 0
|
||||
[17:39:37] [Render thread/INFO]: Created: 512x512x4 minecraft:textures/atlas/banner_patterns.png-atlas
|
||||
[17:39:37] [Render thread/INFO]: [Shaders] Allocate texture map normal: 512x512, mipmaps: 4
|
||||
[17:39:37] [Render thread/INFO]: [Shaders] Allocate texture map specular: 512x512, mipmaps: 4
|
||||
[17:39:37] [Render thread/INFO]: [OptiFine] Animated sprites: 0
|
||||
[17:39:37] [Render thread/INFO]: Created: 512x512x4 minecraft:textures/atlas/shield_patterns.png-atlas
|
||||
[17:39:37] [Render thread/INFO]: [Shaders] Allocate texture map normal: 512x512, mipmaps: 4
|
||||
[17:39:37] [Render thread/INFO]: [Shaders] Allocate texture map specular: 512x512, mipmaps: 4
|
||||
[17:39:37] [Render thread/INFO]: [OptiFine] Animated sprites: 0
|
||||
[17:39:37] [Render thread/INFO]: Created: 512x256x4 minecraft:textures/atlas/chest.png-atlas
|
||||
[17:39:37] [Render thread/INFO]: [Shaders] Allocate texture map normal: 512x256, mipmaps: 4
|
||||
[17:39:37] [Render thread/INFO]: [Shaders] Allocate texture map specular: 512x256, mipmaps: 4
|
||||
[17:39:37] [Render thread/INFO]: [OptiFine] Animated sprites: 0
|
||||
[17:39:37] [Render thread/INFO]: Created: 512x256x4 minecraft:textures/atlas/beds.png-atlas
|
||||
[17:39:37] [Render thread/INFO]: [Shaders] Allocate texture map normal: 512x256, mipmaps: 4
|
||||
[17:39:37] [Render thread/INFO]: [Shaders] Allocate texture map specular: 512x256, mipmaps: 4
|
||||
[17:39:37] [Render thread/INFO]: [OptiFine] Animated sprites: 0
|
||||
[17:39:37] [Render thread/INFO]: Created: 512x256x4 minecraft:textures/atlas/shulker_boxes.png-atlas
|
||||
[17:39:37] [Render thread/INFO]: [Shaders] Allocate texture map normal: 512x256, mipmaps: 4
|
||||
[17:39:37] [Render thread/INFO]: [Shaders] Allocate texture map specular: 512x256, mipmaps: 4
|
||||
[17:39:37] [Render thread/INFO]: [OptiFine] Animated sprites: 0
|
||||
[17:39:38] [Render thread/INFO]: Created: 256x256x0 minecraft:textures/atlas/particles.png-atlas
|
||||
[17:39:38] [Render thread/INFO]: [Shaders] Allocate texture map normal: 256x256, mipmaps: 0
|
||||
[17:39:38] [Render thread/INFO]: [Shaders] Allocate texture map specular: 256x256, mipmaps: 0
|
||||
[17:39:38] [Render thread/INFO]: [OptiFine] Animated sprites: 1
|
||||
[17:39:38] [Render thread/INFO]: Created: 256x256x0 minecraft:textures/atlas/paintings.png-atlas
|
||||
[17:39:38] [Render thread/INFO]: [Shaders] Allocate texture map normal: 256x256, mipmaps: 0
|
||||
[17:39:38] [Render thread/INFO]: [Shaders] Allocate texture map specular: 256x256, mipmaps: 0
|
||||
[17:39:38] [Render thread/INFO]: [OptiFine] Animated sprites: 0
|
||||
[17:39:38] [Render thread/INFO]: Created: 128x128x0 minecraft:textures/atlas/mob_effects.png-atlas
|
||||
[17:39:38] [Render thread/INFO]: [Shaders] Allocate texture map normal: 128x128, mipmaps: 0
|
||||
[17:39:38] [Render thread/INFO]: [Shaders] Allocate texture map specular: 128x128, mipmaps: 0
|
||||
[17:39:38] [Render thread/INFO]: [OptiFine] Animated sprites: 0
|
||||
[17:39:38] [Render thread/INFO]: Created: 256x128x0 jei:textures/atlas/gui.png-atlas
|
||||
[17:39:38] [Render thread/INFO]: [Shaders] Allocate texture map normal: 256x128, mipmaps: 0
|
||||
[17:39:38] [Render thread/INFO]: [Shaders] Allocate texture map specular: 256x128, mipmaps: 0
|
||||
[17:39:38] [Render thread/INFO]: [OptiFine] Animated sprites: 0
|
||||
[17:39:38] [Render thread/INFO]: [OptiFine] *** Reloading custom textures ***
|
||||
[17:39:38] [Render thread/WARN]: [OptiFine] Unknown resource pack file: mod_resources
|
||||
[17:39:38] [Render thread/WARN]: [OptiFine] Unknown resource pack file: mod_resources
|
||||
[17:39:38] [Render thread/WARN]: [OptiFine] Unknown resource pack file: mod_resources
|
||||
[17:39:43] [Render thread/WARN]: [OptiFine] Unknown resource pack file: mod_resources
|
||||
[17:39:43] [Render thread/INFO]: [OptiFine] [Shaders] Parsing block mappings: /shaders/block.properties
|
||||
[17:39:43] [Render thread/WARN]: [OptiFine] Shaders: Block not found for name: minecraft:azure_blue
|
||||
[17:39:43] [Render thread/WARN]: [OptiFine] Shaders: Block not found for name: minecraft:flowing_lava
|
||||
[17:39:43] [Render thread/WARN]: [OptiFine] Shaders: Block not found for name: minecraft:flowing_water
|
||||
[17:39:43] [Render thread/INFO]: [OptiFine] [Shaders] Parsing item mappings: /shaders/item.properties
|
||||
[17:39:43] [Render thread/WARN]: [OptiFine] Unknown resource pack file: mod_resources
|
||||
[17:39:43] [Render thread/WARN]: [OptiFine] Unknown resource pack file: mod_resources
|
||||
[17:39:43] [Render thread/INFO]: [OptiFine] Disable Forge light pipeline
|
||||
[17:39:43] [Render thread/INFO]: [OptiFine] Set ForgeConfig.CLIENT.experimentalForgeLightPipelineEnabled=false
|
||||
[17:39:44] [Realms Notification Availability checker #1/INFO]: Could not authorize you against Realms server: Invalid session id
|
||||
[17:39:51] [Render thread/WARN]: Ambiguity between arguments [teleport, location] and [teleport, destination] with inputs: [0.1 -0.5 .9, 0 0 0]
|
||||
[17:39:51] [Render thread/WARN]: Ambiguity between arguments [teleport, location] and [teleport, targets] with inputs: [0.1 -0.5 .9, 0 0 0]
|
||||
[17:39:51] [Render thread/WARN]: Ambiguity between arguments [teleport, destination] and [teleport, targets] with inputs: [Player, 0123, @e, dd12be42-52a9-4a91-a8a1-11c01849e498]
|
||||
[17:39:51] [Render thread/WARN]: Ambiguity between arguments [teleport, targets] and [teleport, destination] with inputs: [Player, 0123, dd12be42-52a9-4a91-a8a1-11c01849e498]
|
||||
[17:39:51] [Render thread/WARN]: Ambiguity between arguments [teleport, targets, location] and [teleport, targets, destination] with inputs: [0.1 -0.5 .9, 0 0 0]
|
||||
[17:39:52] [Render thread/INFO]: Loaded 8 recipes
|
||||
[17:39:53] [Render thread/INFO]: Loaded 1188 advancements
|
||||
[17:39:54] [Render thread/INFO]: Environment: authHost='https://authserver.mojang.com', accountsHost='https://api.mojang.com', sessionHost='https://sessionserver.mojang.com', servicesHost='https://api.minecraftservices.com', name='PROD'
|
||||
[17:39:54] [Server thread/INFO]: Starting integrated minecraft server version 1.18.2
|
||||
[17:39:54] [Server thread/INFO]: Generating keypair
|
||||
[17:39:54] [Server thread/WARN]: Configuration file D:\hmcl启动器\.minecraft\saves\新的世界\serverconfig\buildinggadgets-server.toml is not correct. Correcting
|
||||
[17:39:54] [Server thread/WARN]: Incorrect key general was corrected from null to its default, SimpleCommentedConfig:{}.
|
||||
[17:39:54] [Server thread/WARN]: Incorrect key general.Allow Absolute Coords was corrected from null to its default, true.
|
||||
[17:39:54] [Server thread/WARN]: Incorrect key general.MaxBuildDistance was corrected from null to its default, 32.0.
|
||||
[17:39:54] [Server thread/WARN]: Incorrect key general.Allow non-Air-Block-Overwrite was corrected from null to its default, true.
|
||||
[17:39:54] [Server thread/WARN]: Incorrect key Gadgets was corrected from null to its default, SimpleCommentedConfig:{}.
|
||||
[17:39:54] [Server thread/WARN]: Incorrect key Gadgets.Maximum allowed Range was corrected from null to its default, 15.
|
||||
[17:39:54] [Server thread/WARN]: Incorrect key Gadgets.Max Placement/Tick was corrected from null to its default, 1024.
|
||||
[17:39:54] [Server thread/WARN]: Incorrect key Gadgets.Building Gadget was corrected from null to its default, SimpleCommentedConfig:{}.
|
||||
[17:39:54] [Server thread/WARN]: Incorrect key Gadgets.Building Gadget.Maximum Energy was corrected from null to its default, 500000.
|
||||
[17:39:54] [Server thread/WARN]: Incorrect key Gadgets.Building Gadget.Energy Cost was corrected from null to its default, 50.
|
||||
[17:39:54] [Server thread/WARN]: Incorrect key Gadgets.Building Gadget.Max Undo History Size was corrected from null to its default, 10.
|
||||
[17:39:54] [Server thread/WARN]: Incorrect key Gadgets.Exchanging Gadget was corrected from null to its default, SimpleCommentedConfig:{}.
|
||||
[17:39:54] [Server thread/WARN]: Incorrect key Gadgets.Exchanging Gadget.Maximum Energy was corrected from null to its default, 500000.
|
||||
[17:39:54] [Server thread/WARN]: Incorrect key Gadgets.Exchanging Gadget.Energy Cost was corrected from null to its default, 100.
|
||||
[17:39:54] [Server thread/WARN]: Incorrect key Gadgets.Exchanging Gadget.Max Undo History Size was corrected from null to its default, 10.
|
||||
[17:39:54] [Server thread/WARN]: Incorrect key Gadgets.Destruction Gadget was corrected from null to its default, SimpleCommentedConfig:{}.
|
||||
[17:39:54] [Server thread/WARN]: Incorrect key Gadgets.Destruction Gadget.Maximum Energy was corrected from null to its default, 1000000.
|
||||
[17:39:54] [Server thread/WARN]: Incorrect key Gadgets.Destruction Gadget.Energy Cost was corrected from null to its default, 200.
|
||||
[17:39:54] [Server thread/WARN]: Incorrect key Gadgets.Destruction Gadget.Max Undo History Size was corrected from null to its default, 1.
|
||||
[17:39:54] [Server thread/WARN]: Incorrect key Gadgets.Destruction Gadget.Destroy Dimensions was corrected from null to its default, 16.
|
||||
[17:39:54] [Server thread/WARN]: Incorrect key Gadgets.Destruction Gadget.Non-Fuzzy Mode Multiplier was corrected from null to its default, 2.0.
|
||||
[17:39:54] [Server thread/WARN]: Incorrect key Gadgets.Destruction Gadget.Non-Fuzzy Mode Enabled was corrected from null to its default, false.
|
||||
[17:39:54] [Server thread/WARN]: Incorrect key Gadgets.Copy-Paste Gadget was corrected from null to its default, SimpleCommentedConfig:{}.
|
||||
[17:39:54] [Server thread/WARN]: Incorrect key Gadgets.Copy-Paste Gadget.Maximum Energy was corrected from null to its default, 500000.
|
||||
[17:39:54] [Server thread/WARN]: Incorrect key Gadgets.Copy-Paste Gadget.Energy Cost was corrected from null to its default, 50.
|
||||
[17:39:54] [Server thread/WARN]: Incorrect key Gadgets.Copy-Paste Gadget.Max Undo History Size was corrected from null to its default, 1.
|
||||
[17:39:54] [Server thread/WARN]: Incorrect key Gadgets.Copy-Paste Gadget.Max Copy/Tick was corrected from null to its default, 32768.
|
||||
[17:39:54] [Server thread/WARN]: Incorrect key Gadgets.Copy-Paste Gadget.Max Copy Dimensions was corrected from null to its default, 256.
|
||||
[17:39:54] [Server thread/WARN]: Incorrect key Gadgets.Copy-Paste Gadget.Max Build Dimensions was corrected from null to its default, 256.
|
||||
[17:39:54] [Server thread/WARN]: Incorrect key Paste Containers was corrected from null to its default, SimpleCommentedConfig:{}.
|
||||
[17:39:54] [Server thread/WARN]: Incorrect key Paste Containers.T1 Container Capacity was corrected from null to its default, 512.
|
||||
[17:39:54] [Server thread/WARN]: Incorrect key Paste Containers.T2 Container Capacity was corrected from null to its default, 2048.
|
||||
[17:39:54] [Server thread/WARN]: Incorrect key Paste Containers.T3 Container Capacity was corrected from null to its default, 8192.
|
||||
[17:39:54] [Server thread/WARN]: Configuration file D:\hmcl启动器\.minecraft\saves\新的世界\serverconfig\cgm-server.toml is not correct. Correcting
|
||||
[17:39:54] [Server thread/WARN]: Incorrect key server was corrected from null to its default, SimpleCommentedConfig:{}.
|
||||
[17:39:54] [Server thread/WARN]: Incorrect key server.grenade was corrected from null to its default, SimpleCommentedConfig:{}.
|
||||
[17:39:54] [Server thread/WARN]: Incorrect key server.grenade.alphaOverlay was corrected from null to its default, 255.
|
||||
[17:39:54] [Server thread/WARN]: Incorrect key server.grenade.alphaFadeThreshold was corrected from null to its default, 40.
|
||||
[17:39:54] [Server thread/WARN]: Incorrect key server.grenade.soundPercentage was corrected from null to its default, 0.05.
|
||||
[17:39:54] [Server thread/WARN]: Incorrect key server.grenade.soundFadeThreshold was corrected from null to its default, 90.
|
||||
[17:39:54] [Server thread/WARN]: Incorrect key server.grenade.ringVolume was corrected from null to its default, 1.0.
|
||||
[17:39:54] [Server thread/WARN]: Incorrect key server.audio was corrected from null to its default, SimpleCommentedConfig:{}.
|
||||
[17:39:54] [Server thread/WARN]: Incorrect key server.audio.gunShotMaxDistance was corrected from null to its default, 100.0.
|
||||
[17:39:54] [Server thread/WARN]: Incorrect key server.audio.reloadMaxDistance was corrected from null to its default, 24.0.
|
||||
[17:39:54] [Server thread/WARN]: Incorrect key server.enableCameraRecoil was corrected from null to its default, true.
|
||||
[17:39:54] [Server thread/WARN]: Incorrect key server.cooldownThreshold was corrected from null to its default, 0.
|
||||
[17:39:54] [Server thread/WARN]: Incorrect key server.experimental was corrected from null to its default, SimpleCommentedConfig:{}.
|
||||
[17:39:54] [Server thread/WARN]: Incorrect key server.experimental.forceDyeableAttachments was corrected from null to its default, false.
|
||||
[17:39:54] [Server thread/WARN]: Configuration file D:\hmcl启动器\.minecraft\saves\新的世界\serverconfig\jei-server.toml is not correct. Correcting
|
||||
[17:39:54] [Server thread/WARN]: Incorrect key cheat mode was corrected from null to its default, SimpleCommentedConfig:{}.
|
||||
[17:39:54] [Server thread/WARN]: Incorrect key cheat mode.enableCheatModeForOp was corrected from null to its default, true.
|
||||
[17:39:54] [Server thread/WARN]: Incorrect key cheat mode.enableCheatModeForCreative was corrected from null to its default, true.
|
||||
[17:39:54] [Server thread/WARN]: Incorrect key cheat mode.enableCheatModeForGive was corrected from null to its default, false.
|
||||
[17:39:54] [Server thread/WARN]: Configuration file D:\hmcl启动器\.minecraft\saves\新的世界\serverconfig\forge-server.toml is not correct. Correcting
|
||||
[17:39:54] [Server thread/WARN]: Incorrect key server was corrected from null to its default, SimpleCommentedConfig:{}.
|
||||
[17:39:54] [Server thread/WARN]: Incorrect key server.removeErroringBlockEntities was corrected from null to its default, false.
|
||||
[17:39:54] [Server thread/WARN]: Incorrect key server.removeErroringEntities was corrected from null to its default, false.
|
||||
[17:39:54] [Server thread/WARN]: Incorrect key server.fullBoundingBoxLadders was corrected from null to its default, false.
|
||||
[17:39:54] [Server thread/WARN]: Incorrect key server.zombieBaseSummonChance was corrected from null to its default, 0.1.
|
||||
[17:39:54] [Server thread/WARN]: Incorrect key server.zombieBabyChance was corrected from null to its default, 0.05.
|
||||
[17:39:54] [Server thread/WARN]: Incorrect key server.treatEmptyTagsAsAir was corrected from null to its default, false.
|
||||
[17:39:54] [Server thread/WARN]: Incorrect key server.skipEmptyShapelessCheck was corrected from null to its default, true.
|
||||
[17:39:54] [Server thread/WARN]: Incorrect key server.fixAdvancementLoading was corrected from null to its default, true.
|
||||
[17:39:54] [Server thread/WARN]: Incorrect key server.permissionHandler was corrected from null to its default, forge:default_handler.
|
||||
[17:39:54] [Server thread/INFO]: Preparing start region for dimension minecraft:overworld
|
||||
[17:39:54] [Server thread/ERROR]: Encountered an unexpected exception
|
||||
java.lang.NoSuchMethodError: 'void net.minecraft.server.level.DistanceManager.addRegionTicket(net.minecraft.server.level.TicketType, net.minecraft.world.level.ChunkPos, int, java.lang.Object, boolean)'
|
||||
at net.minecraft.server.level.ServerChunkCache.addRegionTicket(ServerChunkCache.java:429) ~[client-1.18.2-20220404.173914-srg.jar%2363!/:?]
|
||||
at net.minecraft.server.level.ServerChunkCache.m_8387_(ServerChunkCache.java:425) ~[client-1.18.2-20220404.173914-srg.jar%2363!/:?]
|
||||
at net.minecraft.server.MinecraftServer.m_129940_(MinecraftServer.java:471) ~[client-1.18.2-20220404.173914-srg.jar%2363!/:?]
|
||||
at net.minecraft.server.MinecraftServer.m_130006_(MinecraftServer.java:318) ~[client-1.18.2-20220404.173914-srg.jar%2363!/:?]
|
||||
at net.minecraft.client.server.IntegratedServer.m_7038_(IntegratedServer.java:84) ~[client-1.18.2-20220404.173914-srg.jar%2363!/:?]
|
||||
at net.minecraft.server.MinecraftServer.m_130011_(MinecraftServer.java:661) ~[client-1.18.2-20220404.173914-srg.jar%2363!/:?]
|
||||
at net.minecraft.server.MinecraftServer.m_177918_(MinecraftServer.java:261) ~[client-1.18.2-20220404.173914-srg.jar%2363!/:?]
|
||||
at java.lang.Thread.run(Unknown Source) [?:?]
|
||||
[17:39:54] [Server thread/FATAL]: Preparing crash report with UUID 498c0444-95f8-4efc-8096-527b083f1739
|
||||
[17:39:55] [Server thread/FATAL]: Preparing crash report with UUID 442dec9f-c942-443e-83e5-f93583cb0c12
|
||||
[17:39:55] [Server thread/ERROR]: This crash report has been saved to: D:\hmcl启动器\.minecraft\crash-reports\crash-2022-12-06_17.39.54-server.txt
|
||||
[17:39:55] [Server thread/INFO]: Stopping server
|
||||
[17:39:55] [Server thread/INFO]: Saving players
|
||||
[17:39:55] [Server thread/INFO]: Saving worlds
|
||||
[17:39:55] [Server thread/INFO]: Saving chunks for level 'ServerLevel[新的世界]'/minecraft:overworld
|
||||
[17:39:55] [Render thread/FATAL]: Preparing crash report with UUID afc41ea2-ffb3-473d-8438-83a132ab9734
|
||||
[17:39:55] [Server thread/INFO]: Saving chunks for level 'ServerLevel[新的世界]'/minecraft:the_nether
|
||||
File diff suppressed because it is too large
Load Diff
File diff suppressed because one or more lines are too long
Reference in New Issue
Block a user