Jump to content

Search the Community

Showing results for 'deprecated'.

  • Search By Tags

    Type tags separated by commas.
  • Search By Author

Content Type


Forums

  • Minecraft Forge
    • Releases
    • Support & Bug Reports
    • Suggestions
    • General Discussion
  • Mod Developer Central
    • Modder Support
    • User Submitted Tutorials
  • Non-Forge
    • Site News (non-forge)
    • Minecraft General
    • Off-topic
  • Forge Mods
    • Mods

Find results in...

Find results that contain...


Date Created

  • Start

    End


Last Updated

  • Start

    End


Filter by number of...

Joined

  • Start

    End


Group


Discord username


XMPP/GTalk


Gender


URL


Location


ICQ


Personal Text

  1. emm.It seems the download was successful. Starting Gradle Daemon... Gradle Daemon started in 1 s 248 ms > Configure project : Java: 17.0.16, JVM: 17.0.16+12-LTS-247 (Oracle Corporation), Arch: amd64 Download https://maven.parchmentmc.org/org/parchmentmc/data/parchment-1.20.1/2023.09.03/parchment-1.20.1-2023.09.03.zip, took 1 s 960 ms > Task :prepareKotlinBuildScriptModel UP-TO-DATE Setting up MCP environment Initializing steps Executing steps > Running 'downloadManifest' > Running 'downloadJson' > Running 'downloadClient' > Running 'downloadServer' > Running 'extractServer' > Running 'downloadClientMappings' > Running 'mergeMappings' > Running 'stripClient' > Running 'stripServer' > Running 'merge' > Running 'listLibraries' > Running 'rename' Stopping at requested step: C:\Users\qhxg\.gradle\caches\forge_gradle\mcp_repo\de\oceanlabs\mcp\mcp_config\1.20.1-20230612.114412\joined\rename\output.jar [10:45:24] [main/INFO]: Writing debug log file accesstransform.log [10:45:24] [main/INFO]: Access Transformer processor running version 8.2.1 [10:45:24] [main/INFO]: Command line arguments [--inJar, C:\Users\qhxg\.gradle\caches\forge_gradle\minecraft_user_repo\net\minecraftforge\forge\1.20.1-47.4.0\forge-1.20.1-47.4.0-injected.jar, --outJar, C:\Users\qhxg\.gradle\caches\forge_gradle\minecraft_user_repo\net\minecraftforge\forge\1.20.1-47.4.0_mapped_parchment_2023.09.03-1.20.1\forge-1.20.1-47.4.0_mapped_parchment_2023.09.03-1.20.1.jar, --logFile, accesstransform.log, --atFile, E:\MC_mod_forge\records\build\_atJar_4\parent_at.cfg] [10:45:24] [main/INFO]: Reading from C:\Users\qhxg\.gradle\caches\forge_gradle\minecraft_user_repo\net\minecraftforge\forge\1.20.1-47.4.0\forge-1.20.1-47.4.0-injected.jar [10:45:24] [main/INFO]: Writing to C:\Users\qhxg\.gradle\caches\forge_gradle\minecraft_user_repo\net\minecraftforge\forge\1.20.1-47.4.0_mapped_parchment_2023.09.03-1.20.1\forge-1.20.1-47.4.0_mapped_parchment_2023.09.03-1.20.1.jar [10:45:24] [main/INFO]: Transformer file E:\MC_mod_forge\records\build\_atJar_4\parent_at.cfg [10:45:24] [main/WARN]: Found existing output jar C:\Users\qhxg\.gradle\caches\forge_gradle\minecraft_user_repo\net\minecraftforge\forge\1.20.1-47.4.0_mapped_parchment_2023.09.03-1.20.1\forge-1.20.1-47.4.0_mapped_parchment_2023.09.03-1.20.1.jar, overwriting [10:45:26] [main/INFO]: JAR transformation complete C:\Users\qhxg\.gradle\caches\forge_gradle\minecraft_user_repo\net\minecraftforge\forge\1.20.1-47.4.0_mapped_parchment_2023.09.03-1.20.1\forge-1.20.1-47.4.0_mapped_parchment_2023.09.03-1.20.1.jar Creating SRG -> MCP TSRG Download https://maven.minecraftforge.net/net/minecraftforge/mergetool/1.1.5/mergetool-1.1.5.module, took 798 ms Download https://maven.minecraftforge.net/net/minecraftforge/mergetool/1.1.5/mergetool-1.1.5-api.jar, took 244 ms Download https://maven.minecraftforge.net/net/minecraftforge/srgutils/0.4.11/srgutils-0.4.11.pom, took 281 ms Download https://maven.minecraftforge.net/net/minecraftforge/srgutils/0.4.11/srgutils-0.4.11.jar, took 395 ms Deprecated Gradle features were used in this build, making it incompatible with Gradle 9.0. You can use '--warning-mode all' to show the individual deprecation warnings and determine if they come from your own scripts or plugins. For more on this, please refer to https://docs.gradle.org/8.8/userguide/command_line_interface.html#sec:command_line_warnings in the Gradle documentation. BUILD SUCCESSFUL in 4m 37s
  2. It appears that the setNoRepair() method has been removed in 1.21.x versions of the Item Class, along with canRepair or other support from the IForgeItem class extension. I searched these forums and and looked at many other repositories, but I don't see how to handle this anymore in Forge. There is no mention of it being deprecated or how to handle. Did I miss something somewhere? How do you prevent an item from being marked as repairable now in Anvil or Grindstone. It's no longer part of Item.Properties. Any advice appreciated. PC
  3. Hi everyone, I'm currently developing a Forge 1.21 mod for Minecraft and I want to display a custom HUD overlay for a minigame. My goal: When the game starts, all players should see an item/block icon (from the base game, not a custom texture) plus its name/text in the HUD – similar to how the bossbar overlay works. The HUD should appear centered above the hotbar (or at a similar prominent spot), and update dynamically (icon and name change as the target item changes). What I've tried: I looked at many online tutorials and several GitHub repos (e.g. SeasonHUD, MiniHUD), but most of them use NeoForge or Forge versions <1.20 that provide the IGuiOverlay API (e.g. implements IGuiOverlay, RegisterGuiOverlaysEvent). In Forge 1.21, it seems that neither IGuiOverlay nor RegisterGuiOverlaysEvent exist anymore – at least, I can't import them and they are missing from the docs and code completion. I tried using RenderLevelStageEvent as a workaround but it is probably not intended for custom HUDs. I am not using NeoForge, and switching the project to NeoForge is currently not an option for me. I tried to look at the original minecraft source code to see how elements like hearts, hotbar etc are drawn on the screen but I am too new to Minecraft modding to understand. What I'm looking for: What is the correct way to add a custom HUD element (icon + text) in Forge 1.21, given that the previous overlay API is missing? Is there a new recommended event, callback, or method in Forge 1.21 for custom HUD overlays, or is everyone just using a workaround? Is there a minimal open-source example repo for Forge 1.21 that demonstrates a working HUD overlay without relying on NeoForge or deprecated Forge APIs? My ideal solution: Centered HUD element with an in-game item/block icon (from the base game's assets, e.g. a diamond or any ItemStack / Item) and its name as text, with a transparent background rectangle. It should be visible to the players when the mini game is running. Easy to update the item (e.g. static variable or other method), so it can change dynamically during the game. Any help, code snippets, or up-to-date references would be really appreciated! If this is simply not possible right now in Forge 1.21, it would also help to know that for sure. Thank you very much in advance!
  4. okay so i have this project (im new btw first ever project) and i keep getting this error inside my build.gradle file and if its fixed a new error appears then if thats fixed it loops! 1:29:26 PM: Executing 'runClient --scan --info'… The client will now receive all logging from the daemon (pid: 22264). The daemon log file: C:\Users\2010r\.gradle\daemon\8.8\daemon-22264.out.log Starting 23rd build in daemon [uptime: 39 mins 57.553 secs, performance: 100%, GC rate: 0.00/s, heap usage: 0% of 4 GiB] Using 28 worker leases. Now considering [C:\Users\2010r\OneDrive\Desktop\stuffiesss] as hierarchies to watch Watching the file system is configured to be enabled if available File system watching is active Transforming external-system-rt.jar with InstrumentationAnalysisTransform Transforming external-system-rt.jar with InstrumentationAnalysisTransform Transforming external-system-rt.jar with MergeInstrumentationAnalysisTransform Transforming external-system-rt.jar with ExternalDependencyInstrumentingArtifactTransform Starting Build Transforming develocity-gradle-plugin-3.17.4.jar (com.gradle:develocity-gradle-plugin:3.17.4) with InstrumentationAnalysisTransform Transforming foojay-resolver-0.7.0.jar (org.gradle.toolchains:foojay-resolver:0.7.0) with InstrumentationAnalysisTransform Transforming gson-2.9.1.jar (com.google.code.gson:gson:2.9.1) with InstrumentationAnalysisTransform Transforming develocity-gradle-plugin-3.17.4.jar (com.gradle:develocity-gradle-plugin:3.17.4) with InstrumentationAnalysisTransform Transforming develocity-gradle-plugin-3.17.4.jar (com.gradle:develocity-gradle-plugin:3.17.4) with MergeInstrumentationAnalysisTransform Transforming foojay-resolver-0.7.0.jar (org.gradle.toolchains:foojay-resolver:0.7.0) with InstrumentationAnalysisTransform Transforming foojay-resolver-0.7.0.jar (org.gradle.toolchains:foojay-resolver:0.7.0) with MergeInstrumentationAnalysisTransform Transforming gson-2.9.1.jar (com.google.code.gson:gson:2.9.1) with InstrumentationAnalysisTransform Transforming gson-2.9.1.jar (com.google.code.gson:gson:2.9.1) with MergeInstrumentationAnalysisTransform Transforming develocity-gradle-plugin-3.17.4.jar (com.gradle:develocity-gradle-plugin:3.17.4) with ExternalDependencyInstrumentingArtifactTransform Transforming foojay-resolver-0.7.0.jar (org.gradle.toolchains:foojay-resolver:0.7.0) with ExternalDependencyInstrumentingArtifactTransform Transforming gson-2.9.1.jar (com.google.code.gson:gson:2.9.1) with ExternalDependencyInstrumentingArtifactTransform Settings evaluated using settings file 'C:\Users\2010r\OneDrive\Desktop\stuffiesss\settings.gradle'. Projects loaded. Root project using build file 'C:\Users\2010r\OneDrive\Desktop\stuffiesss\build.gradle'. Included projects: [root project 'stuffiesss'] > Configure project : Evaluating root project 'stuffiesss' using build file 'C:\Users\2010r\OneDrive\Desktop\stuffiesss\build.gradle'. Transforming ForgeGradle-6.0.36.jar (net.minecraftforge.gradle:ForgeGradle:6.0.36) with InstrumentationAnalysisTransform Transforming commons-io-2.11.0.jar (commons-io:commons-io:2.11.0) with InstrumentationAnalysisTransform Transforming JarJarSelector-0.3.19.jar (net.minecraftforge:JarJarSelector:0.3.19) with InstrumentationAnalysisTransform Transforming JarJarMetadata-0.3.19.jar (net.minecraftforge:JarJarMetadata:0.3.19) with InstrumentationAnalysisTransform Transforming gson-2.10.1.jar (com.google.code.gson:gson:2.10.1) with InstrumentationAnalysisTransform Transforming guava-31.1-jre.jar (com.google.guava:guava:31.1-jre) with InstrumentationAnalysisTransform Transforming fastcsv-2.2.1.jar (de.siegmar:fastcsv:2.2.1) with InstrumentationAnalysisTransform Transforming artifactural-3.0.20.jar (net.minecraftforge:artifactural:3.0.20) with InstrumentationAnalysisTransform Transforming unsafe-0.2.0.jar (net.minecraftforge:unsafe:0.2.0) with InstrumentationAnalysisTransform Transforming maven-artifact-3.9.1.jar (org.apache.maven:maven-artifact:3.9.1) with InstrumentationAnalysisTransform Transforming httpclient-4.5.14.jar (org.apache.httpcomponents:httpclient:4.5.14) with InstrumentationAnalysisTransform Transforming srgutils-0.5.10.jar (net.minecraftforge:srgutils:0.5.10) with InstrumentationAnalysisTransform Transforming DiffPatch-2.0.12-all.jar (net.minecraftforge:DiffPatch:2.0.12) with InstrumentationAnalysisTransform Transforming failureaccess-1.0.1.jar (com.google.guava:failureaccess:1.0.1) with InstrumentationAnalysisTransform Transforming listenablefuture-9999.0-empty-to-avoid-conflict-with-guava.jar (com.google.guava:listenablefuture:9999.0-empty-to-avoid-conflict-with-guava) with InstrumentationAnalysisTransform Transforming jsr305-3.0.2.jar (com.google.code.findbugs:jsr305:3.0.2) with InstrumentationAnalysisTransform Transforming checker-qual-3.12.0.jar (org.checkerframework:checker-qual:3.12.0) with InstrumentationAnalysisTransform Transforming error_prone_annotations-2.11.0.jar (com.google.errorprone:error_prone_annotations:2.11.0) with InstrumentationAnalysisTransform Transforming j2objc-annotations-1.3.jar (com.google.j2objc:j2objc-annotations:1.3) with InstrumentationAnalysisTransform Transforming plexus-utils-3.5.1.jar (org.codehaus.plexus:plexus-utils:3.5.1) with InstrumentationAnalysisTransform Transforming commons-lang3-3.9.jar (org.apache.commons:commons-lang3:3.9) with InstrumentationAnalysisTransform Transforming httpcore-4.4.16.jar (org.apache.httpcomponents:httpcore:4.4.16) with InstrumentationAnalysisTransform Transforming commons-logging-1.2.jar (commons-logging:commons-logging:1.2) with InstrumentationAnalysisTransform Transforming commons-codec-1.11.jar (commons-codec:commons-codec:1.11) with InstrumentationAnalysisTransform Transforming fastutil-8.3.1.jar (it.unimi.dsi:fastutil:8.3.1) with InstrumentationAnalysisTransform Transforming commons-compress-1.18.jar (org.apache.commons:commons-compress:1.18) with InstrumentationAnalysisTransform Transforming xz-1.8.jar (org.tukaani:xz:1.8) with InstrumentationAnalysisTransform Transforming jopt-simple-5.0.4.jar (net.sf.jopt-simple:jopt-simple:5.0.4) with InstrumentationAnalysisTransform Transforming noexception-1.7.1.jar (com.machinezoo.noexception:noexception:1.7.1) with InstrumentationAnalysisTransform Transforming slf4j-simple-1.7.30.jar (org.slf4j:slf4j-simple:1.7.30) with InstrumentationAnalysisTransform Transforming slf4j-api-1.7.30.jar (org.slf4j:slf4j-api:1.7.30) with InstrumentationAnalysisTransform Transforming ForgeGradle-6.0.36.jar (net.minecraftforge.gradle:ForgeGradle:6.0.36) with InstrumentationAnalysisTransform Transforming ForgeGradle-6.0.36.jar (net.minecraftforge.gradle:ForgeGradle:6.0.36) with MergeInstrumentationAnalysisTransform Transforming commons-io-2.11.0.jar (commons-io:commons-io:2.11.0) with InstrumentationAnalysisTransform Transforming commons-io-2.11.0.jar (commons-io:commons-io:2.11.0) with MergeInstrumentationAnalysisTransform Transforming JarJarSelector-0.3.19.jar (net.minecraftforge:JarJarSelector:0.3.19) with InstrumentationAnalysisTransform Transforming JarJarSelector-0.3.19.jar (net.minecraftforge:JarJarSelector:0.3.19) with MergeInstrumentationAnalysisTransform Transforming ForgeGradle-6.0.36.jar (net.minecraftforge.gradle:ForgeGradle:6.0.36) with ExternalDependencyInstrumentingArtifactTransform Transforming JarJarMetadata-0.3.19.jar (net.minecraftforge:JarJarMetadata:0.3.19) with InstrumentationAnalysisTransform Transforming JarJarMetadata-0.3.19.jar (net.minecraftforge:JarJarMetadata:0.3.19) with MergeInstrumentationAnalysisTransform Transforming commons-io-2.11.0.jar (commons-io:commons-io:2.11.0) with ExternalDependencyInstrumentingArtifactTransform Transforming JarJarSelector-0.3.19.jar (net.minecraftforge:JarJarSelector:0.3.19) with ExternalDependencyInstrumentingArtifactTransform Transforming gson-2.10.1.jar (com.google.code.gson:gson:2.10.1) with InstrumentationAnalysisTransform Transforming gson-2.10.1.jar (com.google.code.gson:gson:2.10.1) with MergeInstrumentationAnalysisTransform Transforming JarJarMetadata-0.3.19.jar (net.minecraftforge:JarJarMetadata:0.3.19) with ExternalDependencyInstrumentingArtifactTransform Transforming guava-31.1-jre.jar (com.google.guava:guava:31.1-jre) with InstrumentationAnalysisTransform Transforming guava-31.1-jre.jar (com.google.guava:guava:31.1-jre) with MergeInstrumentationAnalysisTransform Transforming gson-2.10.1.jar (com.google.code.gson:gson:2.10.1) with ExternalDependencyInstrumentingArtifactTransform Transforming fastcsv-2.2.1.jar (de.siegmar:fastcsv:2.2.1) with InstrumentationAnalysisTransform Transforming fastcsv-2.2.1.jar (de.siegmar:fastcsv:2.2.1) with MergeInstrumentationAnalysisTransform Transforming guava-31.1-jre.jar (com.google.guava:guava:31.1-jre) with ExternalDependencyInstrumentingArtifactTransform Transforming artifactural-3.0.20.jar (net.minecraftforge:artifactural:3.0.20) with InstrumentationAnalysisTransform Transforming fastcsv-2.2.1.jar (de.siegmar:fastcsv:2.2.1) with ExternalDependencyInstrumentingArtifactTransform Transforming artifactural-3.0.20.jar (net.minecraftforge:artifactural:3.0.20) with MergeInstrumentationAnalysisTransform Transforming unsafe-0.2.0.jar (net.minecraftforge:unsafe:0.2.0) with InstrumentationAnalysisTransform Transforming unsafe-0.2.0.jar (net.minecraftforge:unsafe:0.2.0) with MergeInstrumentationAnalysisTransform Transforming artifactural-3.0.20.jar (net.minecraftforge:artifactural:3.0.20) with ExternalDependencyInstrumentingArtifactTransform Transforming maven-artifact-3.9.1.jar (org.apache.maven:maven-artifact:3.9.1) with InstrumentationAnalysisTransform Transforming maven-artifact-3.9.1.jar (org.apache.maven:maven-artifact:3.9.1) with MergeInstrumentationAnalysisTransform Transforming unsafe-0.2.0.jar (net.minecraftforge:unsafe:0.2.0) with ExternalDependencyInstrumentingArtifactTransform Transforming httpclient-4.5.14.jar (org.apache.httpcomponents:httpclient:4.5.14) with InstrumentationAnalysisTransform Transforming httpclient-4.5.14.jar (org.apache.httpcomponents:httpclient:4.5.14) with MergeInstrumentationAnalysisTransform Transforming maven-artifact-3.9.1.jar (org.apache.maven:maven-artifact:3.9.1) with ExternalDependencyInstrumentingArtifactTransform Transforming srgutils-0.5.10.jar (net.minecraftforge:srgutils:0.5.10) with InstrumentationAnalysisTransform Transforming httpclient-4.5.14.jar (org.apache.httpcomponents:httpclient:4.5.14) with ExternalDependencyInstrumentingArtifactTransform Transforming srgutils-0.5.10.jar (net.minecraftforge:srgutils:0.5.10) with MergeInstrumentationAnalysisTransform Transforming DiffPatch-2.0.12-all.jar (net.minecraftforge:DiffPatch:2.0.12) with InstrumentationAnalysisTransform Transforming srgutils-0.5.10.jar (net.minecraftforge:srgutils:0.5.10) with ExternalDependencyInstrumentingArtifactTransform Transforming DiffPatch-2.0.12-all.jar (net.minecraftforge:DiffPatch:2.0.12) with MergeInstrumentationAnalysisTransform Transforming failureaccess-1.0.1.jar (com.google.guava:failureaccess:1.0.1) with InstrumentationAnalysisTransform Transforming failureaccess-1.0.1.jar (com.google.guava:failureaccess:1.0.1) with MergeInstrumentationAnalysisTransform Transforming DiffPatch-2.0.12-all.jar (net.minecraftforge:DiffPatch:2.0.12) with ExternalDependencyInstrumentingArtifactTransform Transforming listenablefuture-9999.0-empty-to-avoid-conflict-with-guava.jar (com.google.guava:listenablefuture:9999.0-empty-to-avoid-conflict-with-guava) with InstrumentationAnalysisTransform Transforming listenablefuture-9999.0-empty-to-avoid-conflict-with-guava.jar (com.google.guava:listenablefuture:9999.0-empty-to-avoid-conflict-with-guava) with MergeInstrumentationAnalysisTransform Transforming failureaccess-1.0.1.jar (com.google.guava:failureaccess:1.0.1) with ExternalDependencyInstrumentingArtifactTransform Transforming jsr305-3.0.2.jar (com.google.code.findbugs:jsr305:3.0.2) with InstrumentationAnalysisTransform Transforming jsr305-3.0.2.jar (com.google.code.findbugs:jsr305:3.0.2) with MergeInstrumentationAnalysisTransform Transforming listenablefuture-9999.0-empty-to-avoid-conflict-with-guava.jar (com.google.guava:listenablefuture:9999.0-empty-to-avoid-conflict-with-guava) with ExternalDependencyInstrumentingArtifactTransform Transforming checker-qual-3.12.0.jar (org.checkerframework:checker-qual:3.12.0) with InstrumentationAnalysisTransform Transforming checker-qual-3.12.0.jar (org.checkerframework:checker-qual:3.12.0) with MergeInstrumentationAnalysisTransform Transforming jsr305-3.0.2.jar (com.google.code.findbugs:jsr305:3.0.2) with ExternalDependencyInstrumentingArtifactTransform Transforming error_prone_annotations-2.11.0.jar (com.google.errorprone:error_prone_annotations:2.11.0) with InstrumentationAnalysisTransform Transforming error_prone_annotations-2.11.0.jar (com.google.errorprone:error_prone_annotations:2.11.0) with MergeInstrumentationAnalysisTransform Transforming j2objc-annotations-1.3.jar (com.google.j2objc:j2objc-annotations:1.3) with InstrumentationAnalysisTransform Transforming j2objc-annotations-1.3.jar (com.google.j2objc:j2objc-annotations:1.3) with MergeInstrumentationAnalysisTransform Transforming error_prone_annotations-2.11.0.jar (com.google.errorprone:error_prone_annotations:2.11.0) with ExternalDependencyInstrumentingArtifactTransform Transforming plexus-utils-3.5.1.jar (org.codehaus.plexus:plexus-utils:3.5.1) with InstrumentationAnalysisTransform Transforming checker-qual-3.12.0.jar (org.checkerframework:checker-qual:3.12.0) with ExternalDependencyInstrumentingArtifactTransform Transforming j2objc-annotations-1.3.jar (com.google.j2objc:j2objc-annotations:1.3) with ExternalDependencyInstrumentingArtifactTransform Transforming plexus-utils-3.5.1.jar (org.codehaus.plexus:plexus-utils:3.5.1) with MergeInstrumentationAnalysisTransform Transforming commons-lang3-3.9.jar (org.apache.commons:commons-lang3:3.9) with InstrumentationAnalysisTransform Transforming commons-lang3-3.9.jar (org.apache.commons:commons-lang3:3.9) with MergeInstrumentationAnalysisTransform Transforming plexus-utils-3.5.1.jar (org.codehaus.plexus:plexus-utils:3.5.1) with ExternalDependencyInstrumentingArtifactTransform Transforming httpcore-4.4.16.jar (org.apache.httpcomponents:httpcore:4.4.16) with InstrumentationAnalysisTransform Transforming httpcore-4.4.16.jar (org.apache.httpcomponents:httpcore:4.4.16) with MergeInstrumentationAnalysisTransform Transforming commons-lang3-3.9.jar (org.apache.commons:commons-lang3:3.9) with ExternalDependencyInstrumentingArtifactTransform Transforming commons-logging-1.2.jar (commons-logging:commons-logging:1.2) with InstrumentationAnalysisTransform Transforming commons-logging-1.2.jar (commons-logging:commons-logging:1.2) with MergeInstrumentationAnalysisTransform Transforming httpcore-4.4.16.jar (org.apache.httpcomponents:httpcore:4.4.16) with ExternalDependencyInstrumentingArtifactTransform Transforming commons-codec-1.11.jar (commons-codec:commons-codec:1.11) with InstrumentationAnalysisTransform Transforming commons-codec-1.11.jar (commons-codec:commons-codec:1.11) with MergeInstrumentationAnalysisTransform Transforming commons-logging-1.2.jar (commons-logging:commons-logging:1.2) with ExternalDependencyInstrumentingArtifactTransform Transforming fastutil-8.3.1.jar (it.unimi.dsi:fastutil:8.3.1) with InstrumentationAnalysisTransform Transforming fastutil-8.3.1.jar (it.unimi.dsi:fastutil:8.3.1) with MergeInstrumentationAnalysisTransform Transforming commons-codec-1.11.jar (commons-codec:commons-codec:1.11) with ExternalDependencyInstrumentingArtifactTransform Transforming commons-compress-1.18.jar (org.apache.commons:commons-compress:1.18) with InstrumentationAnalysisTransform Transforming commons-compress-1.18.jar (org.apache.commons:commons-compress:1.18) with MergeInstrumentationAnalysisTransform Transforming fastutil-8.3.1.jar (it.unimi.dsi:fastutil:8.3.1) with ExternalDependencyInstrumentingArtifactTransform Transforming xz-1.8.jar (org.tukaani:xz:1.8) with InstrumentationAnalysisTransform Transforming xz-1.8.jar (org.tukaani:xz:1.8) with MergeInstrumentationAnalysisTransform Transforming commons-compress-1.18.jar (org.apache.commons:commons-compress:1.18) with ExternalDependencyInstrumentingArtifactTransform Transforming jopt-simple-5.0.4.jar (net.sf.jopt-simple:jopt-simple:5.0.4) with InstrumentationAnalysisTransform Transforming xz-1.8.jar (org.tukaani:xz:1.8) with ExternalDependencyInstrumentingArtifactTransform Transforming jopt-simple-5.0.4.jar (net.sf.jopt-simple:jopt-simple:5.0.4) with MergeInstrumentationAnalysisTransform Transforming noexception-1.7.1.jar (com.machinezoo.noexception:noexception:1.7.1) with InstrumentationAnalysisTransform Transforming noexception-1.7.1.jar (com.machinezoo.noexception:noexception:1.7.1) with MergeInstrumentationAnalysisTransform Transforming slf4j-simple-1.7.30.jar (org.slf4j:slf4j-simple:1.7.30) with InstrumentationAnalysisTransform Transforming jopt-simple-5.0.4.jar (net.sf.jopt-simple:jopt-simple:5.0.4) with ExternalDependencyInstrumentingArtifactTransform Transforming slf4j-simple-1.7.30.jar (org.slf4j:slf4j-simple:1.7.30) with MergeInstrumentationAnalysisTransform Transforming slf4j-api-1.7.30.jar (org.slf4j:slf4j-api:1.7.30) with InstrumentationAnalysisTransform Transforming noexception-1.7.1.jar (com.machinezoo.noexception:noexception:1.7.1) with ExternalDependencyInstrumentingArtifactTransform Transforming slf4j-api-1.7.30.jar (org.slf4j:slf4j-api:1.7.30) with MergeInstrumentationAnalysisTransform Transforming slf4j-simple-1.7.30.jar (org.slf4j:slf4j-simple:1.7.30) with ExternalDependencyInstrumentingArtifactTransform Transforming slf4j-api-1.7.30.jar (org.slf4j:slf4j-api:1.7.30) with ExternalDependencyInstrumentingArtifactTransform Deprecated Gradle features were used in this build, making it incompatible with Gradle 9.0. You can use '--warning-mode all' to show the individual deprecation warnings and determine if they come from your own scripts or plugins. For more on this, please refer to https://docs.gradle.org/8.8/userguide/command_line_interface.html#sec:command_line_warnings in the Gradle documentation. Watched directory hierarchies: [] Publishing a build scan to scans.gradle.com requires accepting the Gradle Terms of Use defined at https://gradle.com/help/legal-terms-of-use. Do you accept these terms? [yes, no] FAILURE: Build failed with an exception. * Where: Build file 'C:\Users\2010r\OneDrive\Desktop\stuffiesss\build.gradle' line: 35 * What went wrong: A problem occurred evaluating root project 'stuffiesss'. > Cannot get property 'mappingsChannel' on extra properties extension as it does not exist * Try: > Run with --stacktrace option to get the stack trace. > Run with --debug option to get more log output. > Get more help at https://help.gradle.org. BUILD FAILED in 691ms then here is the code buildscript { repositories { maven { url = 'https://maven.minecraftforge.net/' } mavenCentral() } dependencies { classpath 'net.minecraftforge.gradle:ForgeGradle:6.0.36' } } apply plugin: 'net.minecraftforge.gradle' apply plugin: 'eclipse' apply plugin: 'idea' group = 'com.temmiemanz.backroommod' archivesBaseName = 'backroommod' version = '1.0.0' java.toolchain.languageVersion = JavaLanguageVersion.of(17) //Proper naming convention for the Properties: These were fixed to adhere to the casing convention ext { minecraft_version = "1.19.2" forge_version = "43.2.0" forgeVer = "${minecraft_version}-${forge_version}" mappingsChannel = "official" mappingsVersion = minecraft_version } sourceSets.main.resources { srcDir 'src/main/resources' } minecraft { // Use the ext object *explicitly using ext.* mappings channel: ext.mappingsChannel, version: ext.mappingsVersion // Use ext to make sure every call is made to the external properties and not the property itself version = "${ext.minecraft_version}-${ext.forge_version}" runs { client { workingDirectory project.file('run') args '--username', 'Dev' property 'forge.logging.console.level', 'info' } server { workingDirectory project.file('run') property 'forge.logging.console.level', 'info' args '--nogui' } } } processResources { inputs.property "version", project.version inputs.property "mcversion", ext.minecraft_version from(sourceSets.main.resources.srcDirs) { include 'mcmod.info' expand 'version': project.version, 'mcversion': project.ext.minecraft_version } from(sourceSets.main.resources.srcDirs) { exclude 'mcmod.info' } } dependencies { minecraft "net.minecraftforge:forge:${ext.minecraft_version}-${ext.forge_version}" } jar { manifest { attributes([ "Specification-Title": "backroommod", "Specification-Vendor": "temmiemanz", "Specification-Version": "1", "Implementation-Title": project.name, "Implementation-Version": "${version}", "Implementation-Vendor": "temmiemanz", "Implementation-Timestamp": new Date().format("yyyy-MM-dd'T'HH:mm:ssZ") ]) } } (sorry about the weird formating)
  5. The official documentation says next to nothing and I have had no success finding reference snippets (e.g. minimap mods and other stuff that involves directly drawing to the screen). Google searches and GPT outputs reference deprecated and/or removed content from older versions. Legends speak of a layered rendering system that also has next to no documentation. Any help is appreciated. Even drawing just a single pixel is enough.
  6. I'm trying to make a block that sends me to a new dimension, but when I try right clicking it, nothing happens.I've put a few debug messages to send a message to the chat or to show up in the logs when right clicked. Right now I am using: ``` public ActionResultType onBlockActivated(BlockState state, World worldIn, BlockPos pos, PlayerEntity player, Hand handIn, BlockRayTraceResult hit) // Client-side: Only show a status message if (worldIn.isRemote()) { player.sendStatusMessage(new StringTextComponent("Client: Block activated!"), true); return ActionResultType.SUCCESS; } // Server-side logic below player.sendMessage(new StringTextComponent("blockActivated"), player.getUniqueID()); } I am getting a warning _"Overrides deprecated method in 'net.minecraft.block.AbstractBlock'"_ is deprecated, but I'm not sure what to use instead.
  7. Currently using Ubuntu 24.04 LTS. Downloaded the Forge MDK 1.21.5 and modified nothing. ./gradlew build works but not ./gradlew runClient. Attached is the error log. Is there any way to fix this or am I cooked? > Task :runClient 2025-04-22T20:51:40.853879197Z main WARN Advanced terminal features are not available in this environment [15:51:40] [main/INFO] [cp.mo.mo.Launcher/MODLAUNCHER]: ModLauncher running: args [--launchTarget, forge_userdev_client, --version, MOD_DEV, --assetIndex, 24, --assetsDir, /home/normalexisting/.gradle/caches/forge_gradle/assets, --gameDir, .] [15:51:40] [main/INFO] [cp.mo.mo.Launcher/MODLAUNCHER]: JVM identified as Ubuntu OpenJDK 64-Bit Server VM 21.0.6+7-Ubuntu-124.04.1 [15:51:40] [main/INFO] [cp.mo.mo.Launcher/MODLAUNCHER]: ModLauncher 10.2.4 starting: java version 21.0.6 by Ubuntu; OS Linux arch amd64 version 6.11.0-21-generic [15:51:40] [main/DEBUG] [cp.mo.mo.LaunchServiceHandler/MODLAUNCHER]: Found launch services [minecraft,forge_userdev_server_gametest,forge_dev_client,forge_userdev_data,forge_dev_server_gametest,forge_dev_client_data,forge_userdev_server,forge_client,forge_server,forge_userdev_client_data,forge_userdev_client,forge_dev_data,forge_dev,testharness,forge_userdev,forge_dev_server] [15:51:40] [main/DEBUG] [cp.mo.mo.NameMappingServiceHandler/MODLAUNCHER]: Found naming services : [srgtomcp] [15:51:40] [main/DEBUG] [cp.mo.mo.LaunchPluginHandler/MODLAUNCHER]: Found launch plugins: [mixin,eventbus,slf4jfixer,object_holder_definalize,runtime_enum_extender,capability_token_subclass,accesstransformer,runtimedistcleaner] [15:51:40] [main/DEBUG] [cp.mo.mo.TransformationServicesHandler/MODLAUNCHER]: Discovering transformation services [15:51:40] [main/DEBUG] [ne.mi.fm.lo.FMLPaths/CORE]: Path GAMEDIR is /home/normalexisting/Documents/MCMODS/DDSHARDING_XXI/run [15:51:40] [main/DEBUG] [ne.mi.fm.lo.FMLPaths/CORE]: Path MODSDIR is /home/normalexisting/Documents/MCMODS/DDSHARDING_XXI/run/mods [15:51:40] [main/DEBUG] [ne.mi.fm.lo.FMLPaths/CORE]: Path CONFIGDIR is /home/normalexisting/Documents/MCMODS/DDSHARDING_XXI/run/config [15:51:40] [main/DEBUG] [ne.mi.fm.lo.FMLPaths/CORE]: Path FMLCONFIG is /home/normalexisting/Documents/MCMODS/DDSHARDING_XXI/run/config/fml.toml [15:51:40] [main/INFO] [ne.mi.fm.lo.ImmediateWindowHandler/]: Loading ImmediateWindowProvider fmlearlywindow [15:51:41] [main/INFO] [EARLYDISPLAY/]: Trying GL version 4.6 [15:51:41] [main/INFO] [EARLYDISPLAY/]: Requested GL version 4.6 got version 4.6 [15:51:41] [main/DEBUG] [cp.mo.mo.TransformationServicesHandler/MODLAUNCHER]: Found transformer service: fml: / [15:51:41] [main/DEBUG] [cp.mo.mo.TransformationServicesHandler/MODLAUNCHER]: Found transformer service: mixin: / [15:51:41] [main/DEBUG] [cp.mo.mo.TransformationServicesHandler/MODLAUNCHER]: Transformation services loading [15:51:41] [main/DEBUG] [cp.mo.mo.TransformationServiceDecorator/MODLAUNCHER]: Loading service mixin [15:51:41] [main/DEBUG] [cp.mo.mo.TransformationServiceDecorator/MODLAUNCHER]: Loaded service mixin [15:51:41] [main/DEBUG] [cp.mo.mo.TransformationServiceDecorator/MODLAUNCHER]: Loading service fml [15:51:41] [main/DEBUG] [ne.mi.fm.lo.FMLLoader/CORE]: Detected version data : VersionInfo[forgeVersion=55.0.4, mcVersion=1.21.5, mcpVersion=20250325.155543, forgeGroup=net.minecraftforge] [15:51:41] [main/DEBUG] [ne.mi.fm.lo.LauncherVersion/CORE]: Found FMLLauncher version 55.0.4 [15:51:41] [main/DEBUG] [ne.mi.fm.lo.FMLLoader/CORE]: FML 55.0.4 loading [15:51:41] [main/DEBUG] [ne.mi.fm.lo.FMLLoader/CORE]: Found ModLauncher version: 10.2.4 [15:51:41] [main/DEBUG] [ne.mi.fm.lo.FMLLoader/CORE]: Found AccessTransformer version: 8.2.2 [15:51:41] [main/DEBUG] [ne.mi.fm.lo.FMLLoader/CORE]: Found EventBus version: 6.2.27 [15:51:41] [main/DEBUG] [ne.mi.fm.lo.FMLLoader/CORE]: Found RuntimeDistCleaner version: 55.0.4 [15:51:41] [main/DEBUG] [ne.mi.fm.lo.FMLLoader/CORE]: FML found CoreMod version : 5.2.6 [15:51:41] [main/DEBUG] [ne.mi.fm.lo.FMLLoader/CORE]: Found ForgeSPI version: 7.1.5 [15:51:41] [main/DEBUG] [cp.mo.mo.TransformationServiceDecorator/MODLAUNCHER]: Loaded service fml [15:51:41] [main/DEBUG] [cp.mo.mo.TransformationServicesHandler/MODLAUNCHER]: Configuring option handling for services [15:51:41] [main/DEBUG] [cp.mo.mo.TransformationServicesHandler/MODLAUNCHER]: Transformation services initializing [15:51:41] [main/DEBUG] [cp.mo.mo.TransformationServiceDecorator/MODLAUNCHER]: Initializing transformation service mixin [15:51:41] [main/DEBUG] [mixin/]: MixinService [ModLauncher] was successfully booted in SecureModuleClassLoader[SECURE-BOOTSTRAP]@360062456 [15:51:41] [main/INFO] [mixin/]: SpongePowered MIXIN Subsystem Version=0.8.7 Source=jar:file:///home/normalexisting/.gradle/caches/modules-2/files-2.1/org.spongepowered/mixin/0.8.7/8ab114ac385e6dbdad5efafe28aba4df8120915f/mixin-0.8.7.jar!/ Service=ModLauncher Env=CLIENT [15:51:41] [main/DEBUG] [mixin/]: Initialising Mixin Platform Manager [15:51:41] [main/DEBUG] [mixin/]: Adding mixin platform agents for container ModLauncher Root Container(ModLauncher:4f56a0a2) [15:51:41] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for ModLauncher Root Container(ModLauncher:4f56a0a2) [15:51:41] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container ModLauncher Root Container(ModLauncher:4f56a0a2) [15:51:41] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for ModLauncher Root Container(ModLauncher:4f56a0a2) [15:51:41] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container ModLauncher Root Container(ModLauncher:4f56a0a2) [15:51:41] [main/DEBUG] [cp.mo.mo.TransformationServiceDecorator/MODLAUNCHER]: Initialized transformation service mixin [15:51:41] [main/DEBUG] [cp.mo.mo.TransformationServiceDecorator/MODLAUNCHER]: Initializing transformation service fml [15:51:41] [main/DEBUG] [ne.mi.fm.lo.FMLServiceProvider/CORE]: Setting up basic FML game directories [15:51:41] [main/DEBUG] [ne.mi.fm.lo.FMLPaths/CORE]: Path GAMEDIR is /home/normalexisting/Documents/MCMODS/DDSHARDING_XXI/run [15:51:41] [main/DEBUG] [ne.mi.fm.lo.FMLPaths/CORE]: Path MODSDIR is /home/normalexisting/Documents/MCMODS/DDSHARDING_XXI/run/mods [15:51:41] [main/DEBUG] [ne.mi.fm.lo.FMLPaths/CORE]: Path CONFIGDIR is /home/normalexisting/Documents/MCMODS/DDSHARDING_XXI/run/config [15:51:41] [main/DEBUG] [ne.mi.fm.lo.FMLPaths/CORE]: Path FMLCONFIG is /home/normalexisting/Documents/MCMODS/DDSHARDING_XXI/run/config/fml.toml [15:51:41] [main/DEBUG] [ne.mi.fm.lo.FMLServiceProvider/CORE]: Loading configuration [15:51:41] [main/DEBUG] [ne.mi.fm.lo.FMLServiceProvider/CORE]: Preparing ModFile [15:51:41] [main/DEBUG] [ne.mi.fm.lo.FMLServiceProvider/CORE]: Preparing launch handler [15:51:41] [main/DEBUG] [ne.mi.fm.lo.FMLLoader/CORE]: Using forge_userdev_client as launch service [15:51:41] [main/DEBUG] [cp.mo.mo.TransformationServiceDecorator/MODLAUNCHER]: Initialized transformation service fml [15:51:41] [main/DEBUG] [cp.mo.mo.NameMappingServiceHandler/MODLAUNCHER]: Current naming domain is 'mcp' [15:51:41] [main/DEBUG] [cp.mo.mo.NameMappingServiceHandler/MODLAUNCHER]: Identified name mapping providers {srg=net.minecraftforge.fml.loading.MCPNamingService@e044b4a} [15:51:41] [main/DEBUG] [cp.mo.mo.TransformationServicesHandler/MODLAUNCHER]: Transformation services begin scanning [15:51:41] [main/DEBUG] [cp.mo.mo.TransformationServiceDecorator/MODLAUNCHER]: Beginning scan trigger - transformation service mixin [15:51:41] [main/DEBUG] [cp.mo.mo.TransformationServiceDecorator/MODLAUNCHER]: End scan trigger - transformation service mixin [15:51:41] [main/DEBUG] [cp.mo.mo.TransformationServiceDecorator/MODLAUNCHER]: Beginning scan trigger - transformation service fml [15:51:41] [main/DEBUG] [ne.mi.fm.lo.FMLServiceProvider/CORE]: Initiating mod scan [15:51:41] [main/DEBUG] [ne.mi.fm.lo.mo.ModDiscoverer/CORE]: Found Mod Locators : (mods folder:null),(minecraft:null),(classpath:null),(forge_dev_locator:null),(forge_userdev_locator:null) [15:51:41] [main/DEBUG] [ne.mi.fm.lo.mo.ModDiscoverer/CORE]: Found Dependency Locators : (JarInJar:null) [15:51:41] [EarlyDisplay/INFO] [EARLYDISPLAY/]: GL info: Mesa Intel(R) Graphics (RPL-P) GL version 4.6 (Core Profile) Mesa 24.2.8-1ubuntu1~24.04.1, Intel [15:51:41] [main/DEBUG] [ne.mi.fm.lo.mo.ModFileInfo/LOADING]: Found valid mod file with {minecraft} mods - versions {1.21.5} [15:51:41] [main/DEBUG] [ne.mi.fm.lo.mo.ModFileParser/LOADING]: Considering mod file candidate /home/normalexisting/Documents/MCMODS/DDSHARDING_XXI/build/sourcesSets/main [15:51:41] [main/DEBUG] [ne.mi.fm.lo.mo.ModFileInfo/LOADING]: Found valid mod file main with {examplemod} mods - versions {1.0.0} [15:51:41] [main/DEBUG] [ne.mi.fm.lo.mo.ModFileParser/LOADING]: Considering mod file candidate / [15:51:41] [main/DEBUG] [ne.mi.fm.lo.mo.ModFileInfo/LOADING]: Found valid mod file with {forge} mods - versions {55.0.4} [15:51:41] [main/DEBUG] [ne.mi.fm.lo.mo.JarInJarDependencyLocator/]: Failed to load resource META-INF/jarjar/metadata.json from , it does not contain dependency information. [15:51:41] [main/DEBUG] [ne.mi.fm.lo.mo.JarInJarDependencyLocator/]: Failed to load resource META-INF/jarjar/metadata.json from , it does not contain dependency information. [15:51:41] [main/DEBUG] [ne.mi.fm.lo.mo.JarInJarDependencyLocator/]: Failed to load resource META-INF/jarjar/metadata.json from javafmllanguage-1.21.5-55.0.4.jar, it does not contain dependency information. [15:51:41] [main/DEBUG] [ne.mi.fm.lo.mo.JarInJarDependencyLocator/]: Failed to load resource META-INF/jarjar/metadata.json from mclanguage-1.21.5-55.0.4.jar, it does not contain dependency information. [15:51:41] [main/DEBUG] [ne.mi.fm.lo.mo.JarInJarDependencyLocator/]: Failed to load resource META-INF/jarjar/metadata.json from lowcodelanguage-1.21.5-55.0.4.jar, it does not contain dependency information. [15:51:41] [main/DEBUG] [ne.mi.fm.lo.mo.JarInJarDependencyLocator/]: Failed to load resource META-INF/jarjar/metadata.json from fmlcore-1.21.5-55.0.4.jar, it does not contain dependency information. [15:51:41] [main/DEBUG] [ne.mi.fm.lo.mo.JarInJarDependencyLocator/]: Failed to load resource META-INF/jarjar/metadata.json from main, it does not contain dependency information. [15:51:41] [main/INFO] [ne.mi.fm.lo.mo.JarInJarDependencyLocator/]: No dependencies to load found. Skipping! [15:51:41] [main/DEBUG] [ne.mi.fm.lo.mo.ModFileInfo/LOADING]: Found valid mod file with {minecraft} mods - versions {1.21.5} [15:51:41] [main/DEBUG] [ne.mi.fm.lo.mo.ModFile/LOADING]: Loading mod file / with languages [LanguageSpec[languageName=minecraft, acceptedVersions=1]] [15:51:41] [main/DEBUG] [ne.mi.fm.lo.mo.ModFileParser/LOADING]: Considering mod file candidate / [15:51:41] [main/DEBUG] [ne.mi.fm.lo.mo.ModFileInfo/LOADING]: Found valid mod file with {forge} mods - versions {55.0.4} [15:51:41] [main/DEBUG] [ne.mi.fm.lo.mo.ModFile/LOADING]: Loading mod file / with languages [LanguageSpec[languageName=javafml, acceptedVersions=[24,]]] [15:51:41] [main/DEBUG] [ne.mi.fm.lo.mo.ModFileParser/LOADING]: Found coremod field_to_method with Javascript path coremods/field_to_method.js [15:51:41] [main/DEBUG] [ne.mi.fm.lo.mo.ModFileParser/LOADING]: Found coremod method_redirector with Javascript path coremods/method_redirector.js [15:51:41] [main/DEBUG] [ne.mi.fm.lo.mo.ModFile/LOADING]: Found coremod /coremods/field_to_method.js [15:51:41] [main/DEBUG] [ne.mi.fm.lo.mo.ModFile/LOADING]: Found coremod /coremods/method_redirector.js [15:51:41] [main/DEBUG] [ne.mi.fm.lo.mo.ModFileParser/LOADING]: Considering mod file candidate /home/normalexisting/Documents/MCMODS/DDSHARDING_XXI/build/sourcesSets/main [15:51:41] [main/DEBUG] [ne.mi.fm.lo.mo.ModFileInfo/LOADING]: Found valid mod file main with {examplemod} mods - versions {1.0.0} [15:51:41] [main/DEBUG] [ne.mi.fm.lo.mo.ModFile/LOADING]: Loading mod file /home/normalexisting/Documents/MCMODS/DDSHARDING_XXI/build/sourcesSets/main with languages [LanguageSpec[languageName=javafml, acceptedVersions=[0,)]] [15:51:41] [main/DEBUG] [cp.mo.mo.TransformationServiceDecorator/MODLAUNCHER]: End scan trigger - transformation service fml [15:51:41] [main/DEBUG] [ne.mi.fm.lo.LanguageLoadingProvider/CORE]: Found 3 language providers [15:51:41] [main/DEBUG] [ne.mi.fm.lo.LanguageLoadingProvider/CORE]: Found language provider minecraft, version 1.0 [15:51:41] [main/DEBUG] [ne.mi.fm.lo.LanguageLoadingProvider/CORE]: Found language provider lowcodefml, version 55 [15:51:41] [main/DEBUG] [ne.mi.fm.lo.LanguageLoadingProvider/CORE]: Found language provider javafml, version 55.0.4 [15:51:41] [main/DEBUG] [ne.mi.fm.lo.ModSorter/]: Configured system mods: [minecraft, forge] [15:51:41] [main/DEBUG] [ne.mi.fm.lo.ModSorter/]: Found system mod: minecraft [15:51:41] [main/DEBUG] [ne.mi.fm.lo.ModSorter/]: Found system mod: forge [15:51:41] [main/DEBUG] [ne.mi.fm.lo.ModSorter/LOADING]: Found 2 mod requirements (2 mandatory, 0 optional) [15:51:41] [main/DEBUG] [ne.mi.fm.lo.ModSorter/LOADING]: Found 0 mod requirements missing (0 mandatory, 0 optional) [15:51:42] [main/DEBUG] [ne.mi.fm.lo.MCPNamingService/CORE]: Loaded 40598 method mappings from methods.csv [15:51:42] [main/DEBUG] [ne.mi.fm.lo.MCPNamingService/CORE]: Loaded 38968 field mappings from fields.csv [15:51:42] [main/DEBUG] [cp.mo.mo.TransformationServicesHandler/MODLAUNCHER]: Transformation services loading transformers [15:51:42] [main/DEBUG] [cp.mo.mo.TransformationServiceDecorator/MODLAUNCHER]: Initializing transformers for transformation service mixin [15:51:42] [main/DEBUG] [cp.mo.mo.TransformationServiceDecorator/MODLAUNCHER]: Initialized transformers for transformation service mixin [15:51:42] [main/DEBUG] [cp.mo.mo.TransformationServiceDecorator/MODLAUNCHER]: Initializing transformers for transformation service fml [15:51:42] [main/DEBUG] [ne.mi.fm.lo.FMLServiceProvider/CORE]: Loading coremod transformers [15:51:42] [main/DEBUG] [ne.mi.co.CoreModEngine/COREMOD]: Loading CoreMod from /coremods/field_to_method.js [15:51:42] [main/DEBUG] [ne.mi.co.CoreModEngine/COREMOD]: CoreMod loaded successfully [15:51:42] [main/DEBUG] [ne.mi.co.CoreModEngine/COREMOD]: Loading CoreMod from /coremods/method_redirector.js [15:51:42] [main/DEBUG] [ne.mi.co.Co.forge/COREMODLOG]: Gathering Forge method redirector replacements [15:51:42] [main/DEBUG] [ne.mi.co.CoreModEngine/COREMOD]: CoreMod loaded successfully [15:51:42] [main/DEBUG] [cp.mo.mo.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@3ebe4ccc to Target : CLASS {Lnet/minecraft/world/level/biome/Biome;} {} {V} [15:51:42] [main/DEBUG] [cp.mo.mo.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@3d19d85 to Target : CLASS {Lnet/minecraft/world/effect/MobEffectInstance;} {} {V} [15:51:42] [main/DEBUG] [cp.mo.mo.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@2ae62bb6 to Target : CLASS {Lnet/minecraft/world/level/block/LiquidBlock;} {} {V} [15:51:42] [main/DEBUG] [cp.mo.mo.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@68ed3f30 to Target : CLASS {Lnet/minecraft/world/item/BucketItem;} {} {V} [15:51:42] [main/DEBUG] [cp.mo.mo.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@56b859a6 to Target : CLASS {Lnet/minecraft/world/level/block/FlowerPotBlock;} {} {V} [15:51:42] [main/DEBUG] [cp.mo.mo.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@590adb41 to Target : CLASS {Lnet/minecraft/world/entity/EntityType;} {} {V} [15:51:42] [main/DEBUG] [cp.mo.mo.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@590adb41 to Target : CLASS {Lnet/minecraft/world/entity/monster/Strider;} {} {V} [15:51:42] [main/DEBUG] [cp.mo.mo.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@590adb41 to Target : CLASS {Lnet/minecraft/world/entity/animal/horse/SkeletonTrapGoal;} {} {V} [15:51:42] [main/DEBUG] [cp.mo.mo.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@590adb41 to Target : CLASS {Lnet/minecraft/world/level/levelgen/structure/structures/OceanRuinPieces$OceanRuinPiece;} {} {V} [15:51:42] [main/DEBUG] [cp.mo.mo.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@590adb41 to Target : CLASS {Lnet/minecraft/world/entity/monster/Zombie;} {} {V} [15:51:42] [main/DEBUG] [cp.mo.mo.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@590adb41 to Target : CLASS {Lnet/minecraft/world/entity/raid/Raid;} {} {V} [15:51:42] [main/DEBUG] [cp.mo.mo.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@590adb41 to Target : CLASS {Lnet/minecraft/world/entity/monster/Spider;} {} {V} [15:51:42] [main/DEBUG] [cp.mo.mo.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@590adb41 to Target : CLASS {Lnet/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentPiece;} {} {V} [15:51:42] [main/DEBUG] [cp.mo.mo.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@590adb41 to Target : CLASS {Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate;} {} {V} [15:51:42] [main/DEBUG] [cp.mo.mo.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@590adb41 to Target : CLASS {Lnet/minecraft/world/level/levelgen/structure/structures/SwampHutPiece;} {} {V} [15:51:42] [main/DEBUG] [cp.mo.mo.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@590adb41 to Target : CLASS {Lnet/minecraft/world/entity/npc/Villager;} {} {V} [15:51:42] [main/DEBUG] [cp.mo.mo.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@590adb41 to Target : CLASS {Lnet/minecraft/world/entity/animal/frog/Tadpole;} {} {V} [15:51:42] [main/DEBUG] [cp.mo.mo.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@590adb41 to Target : CLASS {Lnet/minecraft/world/level/levelgen/PhantomSpawner;} {} {V} [15:51:42] [main/DEBUG] [cp.mo.mo.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@590adb41 to Target : CLASS {Lnet/minecraft/world/level/block/entity/trialspawner/TrialSpawner;} {} {V} [15:51:42] [main/DEBUG] [cp.mo.mo.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@590adb41 to Target : CLASS {Lnet/minecraft/world/level/NaturalSpawner;} {} {V} [15:51:42] [main/DEBUG] [cp.mo.mo.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@590adb41 to Target : CLASS {Lnet/minecraft/world/entity/monster/ZombieVillager;} {} {V} [15:51:42] [main/DEBUG] [cp.mo.mo.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@590adb41 to Target : CLASS {Lnet/minecraft/world/level/levelgen/PatrolSpawner;} {} {V} [15:51:42] [main/DEBUG] [cp.mo.mo.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@590adb41 to Target : CLASS {Lnet/minecraft/world/entity/ai/village/VillageSiege;} {} {V} [15:51:42] [main/DEBUG] [cp.mo.mo.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@590adb41 to Target : CLASS {Lnet/minecraft/server/commands/SummonCommand;} {} {V} [15:51:42] [main/DEBUG] [cp.mo.mo.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@590adb41 to Target : CLASS {Lnet/minecraft/world/entity/monster/Evoker$EvokerSummonSpellGoal;} {} {V} [15:51:42] [main/DEBUG] [cp.mo.mo.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@590adb41 to Target : CLASS {Lnet/minecraft/world/entity/npc/CatSpawner;} {} {V} [15:51:42] [main/DEBUG] [cp.mo.mo.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@590adb41 to Target : CLASS {Lnet/minecraft/server/commands/RaidCommand;} {} {V} [15:51:42] [main/DEBUG] [cp.mo.mo.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@590adb41 to Target : CLASS {Lnet/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$WoodlandMansionPiece;} {} {V} [15:51:42] [main/DEBUG] [cp.mo.mo.TransformationServiceDecorator/MODLAUNCHER]: Initialized transformers for transformation service fml [15:51:42] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:ModLauncher Root Container(ModLauncher:4f56a0a2)] [15:51:42] [main/DEBUG] [mixin/]: Processing launch tasks for PlatformAgent[MixinPlatformAgentDefault:ModLauncher Root Container(ModLauncher:4f56a0a2)] [15:51:42] [main/DEBUG] [mixin/]: Adding mixin platform agents for container SecureJarResource(mixin.synthetic) [15:51:42] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(mixin.synthetic) [15:51:42] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(mixin.synthetic) [15:51:42] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(mixin.synthetic) [15:51:42] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container SecureJarResource(mixin.synthetic) [15:51:42] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(mixin.synthetic)] [15:51:42] [main/DEBUG] [mixin/]: Adding mixin platform agents for container SecureJarResource(minecraft) [15:51:42] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(minecraft) [15:51:42] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(minecraft) [15:51:42] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(minecraft) [15:51:42] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container SecureJarResource(minecraft) [15:51:42] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(minecraft)] [15:51:42] [main/DEBUG] [mixin/]: Adding mixin platform agents for container SecureJarResource(net.minecraftforge.forge) [15:51:42] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(net.minecraftforge.forge) [15:51:42] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(net.minecraftforge.forge) [15:51:42] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(net.minecraftforge.forge) [15:51:42] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container SecureJarResource(net.minecraftforge.forge) [15:51:42] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(net.minecraftforge.forge)] [15:51:42] [main/DEBUG] [mixin/]: Adding mixin platform agents for container SecureJarResource(examplemod) [15:51:42] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(examplemod) [15:51:42] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(examplemod) [15:51:42] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(examplemod) [15:51:42] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container SecureJarResource(examplemod) [15:51:42] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(examplemod)] [15:51:42] [main/DEBUG] [mixin/]: inject() running with 5 agents [15:51:42] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:ModLauncher Root Container(ModLauncher:4f56a0a2)] [15:51:42] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(mixin.synthetic)] [15:51:42] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(minecraft)] [15:51:42] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(net.minecraftforge.forge)] [15:51:42] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(examplemod)] [15:51:42] [main/INFO] [cp.mo.mo.LaunchServiceHandler/MODLAUNCHER]: Launching target 'forge_userdev_client' with arguments [--version, MOD_DEV, --gameDir, ., --assetsDir, /home/normalexisting/.gradle/caches/forge_gradle/assets, --assetIndex, 24] [15:51:42] [main/DEBUG] [mixin/]: Preparing mixins for MixinEnvironment[DEFAULT] [15:51:42] [main/DEBUG] [io.ne.ut.in.lo.InternalLoggerFactory/]: Using SLF4J as the default logging framework [15:51:42] [main/DEBUG] [io.ne.ut.ResourceLeakDetector/]: -Dio.netty.leakDetection.level: simple [15:51:42] [main/DEBUG] [io.ne.ut.ResourceLeakDetector/]: -Dio.netty.leakDetection.targetRecords: 4 [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /proc/self/auxv [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /proc/self/auxv [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /proc/stat [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu0/topology/core_id [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu0/topology/core_id [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu0/topology/physical_package_id [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu0/topology/physical_package_id [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu0/cpu_capacity [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu0/cache/index2/level [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu0/cache/index2/level [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu0/cache/index2/type [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu0/cache/index2/type [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu0/cache/index2/ways_of_associativity [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu0/cache/index2/ways_of_associativity [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu0/cache/index2/coherency_line_size [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu0/cache/index2/coherency_line_size [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu0/cache/index2/size [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu0/cache/index2/size [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu0/cache/index0/level [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu0/cache/index0/level [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu0/cache/index0/type [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu0/cache/index0/type [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu0/cache/index0/ways_of_associativity [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu0/cache/index0/ways_of_associativity [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu0/cache/index0/coherency_line_size [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu0/cache/index0/coherency_line_size [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu0/cache/index0/size [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu0/cache/index0/size [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu0/cache/index3/level [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu0/cache/index3/level [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu0/cache/index3/type [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu0/cache/index3/type [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu0/cache/index3/ways_of_associativity [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu0/cache/index3/ways_of_associativity [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu0/cache/index3/coherency_line_size [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu0/cache/index3/coherency_line_size [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu0/cache/index3/size [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu0/cache/index3/size [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu0/cache/index1/level [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu0/cache/index1/level [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu0/cache/index1/type [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu0/cache/index1/type [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu0/cache/index1/ways_of_associativity [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu0/cache/index1/ways_of_associativity [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu0/cache/index1/coherency_line_size [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu0/cache/index1/coherency_line_size [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu0/cache/index1/size [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu0/cache/index1/size [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu1/topology/core_id [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu1/topology/core_id [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu1/topology/physical_package_id [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu1/topology/physical_package_id [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu1/cpu_capacity [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu1/cache/index2/level [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu1/cache/index2/level [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu1/cache/index2/type [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu1/cache/index2/type [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu1/cache/index2/ways_of_associativity [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu1/cache/index2/ways_of_associativity [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu1/cache/index2/coherency_line_size [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu1/cache/index2/coherency_line_size [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu1/cache/index2/size [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu1/cache/index2/size [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu1/cache/index0/level [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu1/cache/index0/level [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu1/cache/index0/type [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu1/cache/index0/type [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu1/cache/index0/ways_of_associativity [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu1/cache/index0/ways_of_associativity [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu1/cache/index0/coherency_line_size [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu1/cache/index0/coherency_line_size [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu1/cache/index0/size [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu1/cache/index0/size [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu1/cache/index3/level [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu1/cache/index3/level [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu1/cache/index3/type [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu1/cache/index3/type [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu1/cache/index3/ways_of_associativity [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu1/cache/index3/ways_of_associativity [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu1/cache/index3/coherency_line_size [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu1/cache/index3/coherency_line_size [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu1/cache/index3/size [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu1/cache/index3/size [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu1/cache/index1/level [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu1/cache/index1/level [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu1/cache/index1/type [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu1/cache/index1/type [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu1/cache/index1/ways_of_associativity [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu1/cache/index1/ways_of_associativity [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu1/cache/index1/coherency_line_size [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu1/cache/index1/coherency_line_size [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu1/cache/index1/size [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu1/cache/index1/size [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu10/topology/core_id [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu10/topology/core_id [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu10/topology/physical_package_id [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu10/topology/physical_package_id [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu10/cpu_capacity [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu10/cache/index2/level [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu10/cache/index2/level [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu10/cache/index2/type [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu10/cache/index2/type [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu10/cache/index2/ways_of_associativity [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu10/cache/index2/ways_of_associativity [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu10/cache/index2/coherency_line_size [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu10/cache/index2/coherency_line_size [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu10/cache/index2/size [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu10/cache/index2/size [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu10/cache/index0/level [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu10/cache/index0/level [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu10/cache/index0/type [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu10/cache/index0/type [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu10/cache/index0/ways_of_associativity [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu10/cache/index0/ways_of_associativity [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu10/cache/index0/coherency_line_size [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu10/cache/index0/coherency_line_size [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu10/cache/index0/size [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu10/cache/index0/size [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu10/cache/index3/level [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu10/cache/index3/level [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu10/cache/index3/type [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu10/cache/index3/type [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu10/cache/index3/ways_of_associativity [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu10/cache/index3/ways_of_associativity [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu10/cache/index3/coherency_line_size [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu10/cache/index3/coherency_line_size [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu10/cache/index3/size [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu10/cache/index3/size [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu10/cache/index1/level [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu10/cache/index1/level [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu10/cache/index1/type [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu10/cache/index1/type [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu10/cache/index1/ways_of_associativity [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu10/cache/index1/ways_of_associativity [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu10/cache/index1/coherency_line_size [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu10/cache/index1/coherency_line_size [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu10/cache/index1/size [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu10/cache/index1/size [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu11/topology/core_id [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu11/topology/core_id [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu11/topology/physical_package_id [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu11/topology/physical_package_id [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu11/cpu_capacity [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu11/cache/index2/level [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu11/cache/index2/level [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu11/cache/index2/type [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu11/cache/index2/type [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu11/cache/index2/ways_of_associativity [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu11/cache/index2/ways_of_associativity [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu11/cache/index2/coherency_line_size [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu11/cache/index2/coherency_line_size [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu11/cache/index2/size [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu11/cache/index2/size [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu11/cache/index0/level [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu11/cache/index0/level [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu11/cache/index0/type [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu11/cache/index0/type [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu11/cache/index0/ways_of_associativity [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu11/cache/index0/ways_of_associativity [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu11/cache/index0/coherency_line_size [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu11/cache/index0/coherency_line_size [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu11/cache/index0/size [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu11/cache/index0/size [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu11/cache/index3/level [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu11/cache/index3/level [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu11/cache/index3/type [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu11/cache/index3/type [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu11/cache/index3/ways_of_associativity [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu11/cache/index3/ways_of_associativity [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu11/cache/index3/coherency_line_size [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu11/cache/index3/coherency_line_size [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu11/cache/index3/size [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu11/cache/index3/size [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu11/cache/index1/level [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu11/cache/index1/level [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu11/cache/index1/type [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu11/cache/index1/type [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu11/cache/index1/ways_of_associativity [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu11/cache/index1/ways_of_associativity [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu11/cache/index1/coherency_line_size [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu11/cache/index1/coherency_line_size [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu11/cache/index1/size [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu11/cache/index1/size [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu12/topology/core_id [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu12/topology/core_id [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu12/topology/physical_package_id [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu12/topology/physical_package_id [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu12/cpu_capacity [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu12/cache/index2/level [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu12/cache/index2/level [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu12/cache/index2/type [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu12/cache/index2/type [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu12/cache/index2/ways_of_associativity [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu12/cache/index2/ways_of_associativity [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu12/cache/index2/coherency_line_size [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu12/cache/index2/coherency_line_size [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu12/cache/index2/size [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu12/cache/index2/size [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu12/cache/index0/level [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu12/cache/index0/level [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu12/cache/index0/type [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu12/cache/index0/type [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu12/cache/index0/ways_of_associativity [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu12/cache/index0/ways_of_associativity [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu12/cache/index0/coherency_line_size [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu12/cache/index0/coherency_line_size [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu12/cache/index0/size [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu12/cache/index0/size [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu12/cache/index3/level [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu12/cache/index3/level [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu12/cache/index3/type [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu12/cache/index3/type [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu12/cache/index3/ways_of_associativity [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu12/cache/index3/ways_of_associativity [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu12/cache/index3/coherency_line_size [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu12/cache/index3/coherency_line_size [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu12/cache/index3/size [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu12/cache/index3/size [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu12/cache/index1/level [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu12/cache/index1/level [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu12/cache/index1/type [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu12/cache/index1/type [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu12/cache/index1/ways_of_associativity [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu12/cache/index1/ways_of_associativity [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu12/cache/index1/coherency_line_size [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu12/cache/index1/coherency_line_size [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu12/cache/index1/size [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu12/cache/index1/size [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu13/topology/core_id [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu13/topology/core_id [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu13/topology/physical_package_id [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu13/topology/physical_package_id [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu13/cpu_capacity [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu13/cache/index2/level [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu13/cache/index2/level [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu13/cache/index2/type [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu13/cache/index2/type [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu13/cache/index2/ways_of_associativity [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu13/cache/index2/ways_of_associativity [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu13/cache/index2/coherency_line_size [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu13/cache/index2/coherency_line_size [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu13/cache/index2/size [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu13/cache/index2/size [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu13/cache/index0/level [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu13/cache/index0/level [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu13/cache/index0/type [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu13/cache/index0/type [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu13/cache/index0/ways_of_associativity [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu13/cache/index0/ways_of_associativity [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu13/cache/index0/coherency_line_size [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu13/cache/index0/coherency_line_size [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu13/cache/index0/size [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu13/cache/index0/size [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu13/cache/index3/level [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu13/cache/index3/level [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu13/cache/index3/type [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu13/cache/index3/type [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu13/cache/index3/ways_of_associativity [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu13/cache/index3/ways_of_associativity [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu13/cache/index3/coherency_line_size [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu13/cache/index3/coherency_line_size [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu13/cache/index3/size [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu13/cache/index3/size [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu13/cache/index1/level [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu13/cache/index1/level [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu13/cache/index1/type [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu13/cache/index1/type [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu13/cache/index1/ways_of_associativity [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu13/cache/index1/ways_of_associativity [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu13/cache/index1/coherency_line_size [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu13/cache/index1/coherency_line_size [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu13/cache/index1/size [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu13/cache/index1/size [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu14/topology/core_id [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu14/topology/core_id [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu14/topology/physical_package_id [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu14/topology/physical_package_id [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu14/cpu_capacity [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu14/cache/index2/level [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu14/cache/index2/level [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu14/cache/index2/type [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu14/cache/index2/type [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu14/cache/index2/ways_of_associativity [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu14/cache/index2/ways_of_associativity [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu14/cache/index2/coherency_line_size [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu14/cache/index2/coherency_line_size [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu14/cache/index2/size [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu14/cache/index2/size [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu14/cache/index0/level [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu14/cache/index0/level [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu14/cache/index0/type [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu14/cache/index0/type [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu14/cache/index0/ways_of_associativity [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu14/cache/index0/ways_of_associativity [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu14/cache/index0/coherency_line_size [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu14/cache/index0/coherency_line_size [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu14/cache/index0/size [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu14/cache/index0/size [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu14/cache/index3/level [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu14/cache/index3/level [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu14/cache/index3/type [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu14/cache/index3/type [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu14/cache/index3/ways_of_associativity [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu14/cache/index3/ways_of_associativity [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu14/cache/index3/coherency_line_size [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu14/cache/index3/coherency_line_size [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu14/cache/index3/size [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu14/cache/index3/size [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu14/cache/index1/level [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu14/cache/index1/level [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu14/cache/index1/type [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu14/cache/index1/type [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu14/cache/index1/ways_of_associativity [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu14/cache/index1/ways_of_associativity [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu14/cache/index1/coherency_line_size [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu14/cache/index1/coherency_line_size [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu14/cache/index1/size [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu14/cache/index1/size [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu15/topology/core_id [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu15/topology/core_id [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu15/topology/physical_package_id [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu15/topology/physical_package_id [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu15/cpu_capacity [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu15/cache/index2/level [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu15/cache/index2/level [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu15/cache/index2/type [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu15/cache/index2/type [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu15/cache/index2/ways_of_associativity [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu15/cache/index2/ways_of_associativity [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu15/cache/index2/coherency_line_size [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu15/cache/index2/coherency_line_size [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu15/cache/index2/size [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu15/cache/index2/size [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu15/cache/index0/level [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu15/cache/index0/level [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu15/cache/index0/type [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu15/cache/index0/type [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu15/cache/index0/ways_of_associativity [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu15/cache/index0/ways_of_associativity [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu15/cache/index0/coherency_line_size [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu15/cache/index0/coherency_line_size [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu15/cache/index0/size [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu15/cache/index0/size [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu15/cache/index3/level [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu15/cache/index3/level [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu15/cache/index3/type [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu15/cache/index3/type [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu15/cache/index3/ways_of_associativity [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu15/cache/index3/ways_of_associativity [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu15/cache/index3/coherency_line_size [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu15/cache/index3/coherency_line_size [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu15/cache/index3/size [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu15/cache/index3/size [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu15/cache/index1/level [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu15/cache/index1/level [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu15/cache/index1/type [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu15/cache/index1/type [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu15/cache/index1/ways_of_associativity [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu15/cache/index1/ways_of_associativity [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu15/cache/index1/coherency_line_size [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu15/cache/index1/coherency_line_size [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu15/cache/index1/size [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu15/cache/index1/size [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu2/topology/core_id [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu2/topology/core_id [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu2/topology/physical_package_id [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu2/topology/physical_package_id [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu2/cpu_capacity [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu2/cache/index2/level [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu2/cache/index2/level [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu2/cache/index2/type [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu2/cache/index2/type [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu2/cache/index2/ways_of_associativity [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu2/cache/index2/ways_of_associativity [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu2/cache/index2/coherency_line_size [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu2/cache/index2/coherency_line_size [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu2/cache/index2/size [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu2/cache/index2/size [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu2/cache/index0/level [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu2/cache/index0/level [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu2/cache/index0/type [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu2/cache/index0/type [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu2/cache/index0/ways_of_associativity [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu2/cache/index0/ways_of_associativity [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu2/cache/index0/coherency_line_size [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu2/cache/index0/coherency_line_size [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu2/cache/index0/size [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu2/cache/index0/size [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu2/cache/index3/level [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu2/cache/index3/level [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu2/cache/index3/type [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu2/cache/index3/type [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu2/cache/index3/ways_of_associativity [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu2/cache/index3/ways_of_associativity [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu2/cache/index3/coherency_line_size [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu2/cache/index3/coherency_line_size [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu2/cache/index3/size [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu2/cache/index3/size [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu2/cache/index1/level [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu2/cache/index1/level [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu2/cache/index1/type [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu2/cache/index1/type [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu2/cache/index1/ways_of_associativity [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu2/cache/index1/ways_of_associativity [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu2/cache/index1/coherency_line_size [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu2/cache/index1/coherency_line_size [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu2/cache/index1/size [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu2/cache/index1/size [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu3/topology/core_id [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu3/topology/core_id [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu3/topology/physical_package_id [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu3/topology/physical_package_id [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu3/cpu_capacity [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu3/cache/index2/level [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu3/cache/index2/level [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu3/cache/index2/type [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu3/cache/index2/type [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu3/cache/index2/ways_of_associativity [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu3/cache/index2/ways_of_associativity [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu3/cache/index2/coherency_line_size [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu3/cache/index2/coherency_line_size [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu3/cache/index2/size [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu3/cache/index2/size [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu3/cache/index0/level [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu3/cache/index0/level [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu3/cache/index0/type [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu3/cache/index0/type [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu3/cache/index0/ways_of_associativity [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu3/cache/index0/ways_of_associativity [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu3/cache/index0/coherency_line_size [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu3/cache/index0/coherency_line_size [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu3/cache/index0/size [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu3/cache/index0/size [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu3/cache/index3/level [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu3/cache/index3/level [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu3/cache/index3/type [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu3/cache/index3/type [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu3/cache/index3/ways_of_associativity [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu3/cache/index3/ways_of_associativity [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu3/cache/index3/coherency_line_size [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu3/cache/index3/coherency_line_size [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu3/cache/index3/size [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu3/cache/index3/size [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu3/cache/index1/level [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu3/cache/index1/level [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu3/cache/index1/type [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu3/cache/index1/type [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu3/cache/index1/ways_of_associativity [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu3/cache/index1/ways_of_associativity [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu3/cache/index1/coherency_line_size [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu3/cache/index1/coherency_line_size [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu3/cache/index1/size [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu3/cache/index1/size [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu4/topology/core_id [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu4/topology/core_id [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu4/topology/physical_package_id [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu4/topology/physical_package_id [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu4/cpu_capacity [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu4/cache/index2/level [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu4/cache/index2/level [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu4/cache/index2/type [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu4/cache/index2/type [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu4/cache/index2/ways_of_associativity [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu4/cache/index2/ways_of_associativity [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu4/cache/index2/coherency_line_size [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu4/cache/index2/coherency_line_size [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu4/cache/index2/size [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu4/cache/index2/size [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu4/cache/index0/level [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu4/cache/index0/level [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu4/cache/index0/type [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu4/cache/index0/type [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu4/cache/index0/ways_of_associativity [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu4/cache/index0/ways_of_associativity [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu4/cache/index0/coherency_line_size [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu4/cache/index0/coherency_line_size [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu4/cache/index0/size [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu4/cache/index0/size [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu4/cache/index3/level [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu4/cache/index3/level [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu4/cache/index3/type [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu4/cache/index3/type [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu4/cache/index3/ways_of_associativity [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu4/cache/index3/ways_of_associativity [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu4/cache/index3/coherency_line_size [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu4/cache/index3/coherency_line_size [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu4/cache/index3/size [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu4/cache/index3/size [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu4/cache/index1/level [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu4/cache/index1/level [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu4/cache/index1/type [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu4/cache/index1/type [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu4/cache/index1/ways_of_associativity [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu4/cache/index1/ways_of_associativity [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu4/cache/index1/coherency_line_size [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu4/cache/index1/coherency_line_size [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu4/cache/index1/size [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu4/cache/index1/size [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu5/topology/core_id [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu5/topology/core_id [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu5/topology/physical_package_id [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu5/topology/physical_package_id [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu5/cpu_capacity [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu5/cache/index2/level [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu5/cache/index2/level [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu5/cache/index2/type [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu5/cache/index2/type [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu5/cache/index2/ways_of_associativity [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu5/cache/index2/ways_of_associativity [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu5/cache/index2/coherency_line_size [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu5/cache/index2/coherency_line_size [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu5/cache/index2/size [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu5/cache/index2/size [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu5/cache/index0/level [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu5/cache/index0/level [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu5/cache/index0/type [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu5/cache/index0/type [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu5/cache/index0/ways_of_associativity [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu5/cache/index0/ways_of_associativity [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu5/cache/index0/coherency_line_size [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu5/cache/index0/coherency_line_size [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu5/cache/index0/size [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu5/cache/index0/size [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu5/cache/index3/level [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu5/cache/index3/level [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu5/cache/index3/type [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu5/cache/index3/type [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu5/cache/index3/ways_of_associativity [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu5/cache/index3/ways_of_associativity [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu5/cache/index3/coherency_line_size [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu5/cache/index3/coherency_line_size [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu5/cache/index3/size [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu5/cache/index3/size [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu5/cache/index1/level [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu5/cache/index1/level [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu5/cache/index1/type [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu5/cache/index1/type [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu5/cache/index1/ways_of_associativity [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu5/cache/index1/ways_of_associativity [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu5/cache/index1/coherency_line_size [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu5/cache/index1/coherency_line_size [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu5/cache/index1/size [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu5/cache/index1/size [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu6/topology/core_id [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu6/topology/core_id [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu6/topology/physical_package_id [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu6/topology/physical_package_id [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu6/cpu_capacity [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu6/cache/index2/level [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu6/cache/index2/level [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu6/cache/index2/type [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu6/cache/index2/type [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu6/cache/index2/ways_of_associativity [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu6/cache/index2/ways_of_associativity [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu6/cache/index2/coherency_line_size [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu6/cache/index2/coherency_line_size [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu6/cache/index2/size [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu6/cache/index2/size [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu6/cache/index0/level [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu6/cache/index0/level [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu6/cache/index0/type [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu6/cache/index0/type [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu6/cache/index0/ways_of_associativity [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu6/cache/index0/ways_of_associativity [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu6/cache/index0/coherency_line_size [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu6/cache/index0/coherency_line_size [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu6/cache/index0/size [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu6/cache/index0/size [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu6/cache/index3/level [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu6/cache/index3/level [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu6/cache/index3/type [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu6/cache/index3/type [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu6/cache/index3/ways_of_associativity [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu6/cache/index3/ways_of_associativity [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu6/cache/index3/coherency_line_size [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu6/cache/index3/coherency_line_size [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu6/cache/index3/size [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu6/cache/index3/size [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu6/cache/index1/level [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu6/cache/index1/level [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu6/cache/index1/type [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu6/cache/index1/type [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu6/cache/index1/ways_of_associativity [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu6/cache/index1/ways_of_associativity [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu6/cache/index1/coherency_line_size [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu6/cache/index1/coherency_line_size [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu6/cache/index1/size [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu6/cache/index1/size [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu7/topology/core_id [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu7/topology/core_id [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu7/topology/physical_package_id [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu7/topology/physical_package_id [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu7/cpu_capacity [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu7/cache/index2/level [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu7/cache/index2/level [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu7/cache/index2/type [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu7/cache/index2/type [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu7/cache/index2/ways_of_associativity [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu7/cache/index2/ways_of_associativity [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu7/cache/index2/coherency_line_size [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu7/cache/index2/coherency_line_size [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu7/cache/index2/size [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu7/cache/index2/size [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu7/cache/index0/level [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu7/cache/index0/level [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu7/cache/index0/type [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu7/cache/index0/type [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu7/cache/index0/ways_of_associativity [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu7/cache/index0/ways_of_associativity [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu7/cache/index0/coherency_line_size [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu7/cache/index0/coherency_line_size [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu7/cache/index0/size [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu7/cache/index0/size [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu7/cache/index3/level [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu7/cache/index3/level [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu7/cache/index3/type [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu7/cache/index3/type [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu7/cache/index3/ways_of_associativity [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu7/cache/index3/ways_of_associativity [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu7/cache/index3/coherency_line_size [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu7/cache/index3/coherency_line_size [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu7/cache/index3/size [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu7/cache/index3/size [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu7/cache/index1/level [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu7/cache/index1/level [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu7/cache/index1/type [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu7/cache/index1/type [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu7/cache/index1/ways_of_associativity [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu7/cache/index1/ways_of_associativity [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu7/cache/index1/coherency_line_size [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu7/cache/index1/coherency_line_size [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu7/cache/index1/size [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu7/cache/index1/size [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu8/topology/core_id [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu8/topology/core_id [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu8/topology/physical_package_id [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu8/topology/physical_package_id [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu8/cpu_capacity [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu8/cache/index2/level [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu8/cache/index2/level [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu8/cache/index2/type [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu8/cache/index2/type [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu8/cache/index2/ways_of_associativity [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu8/cache/index2/ways_of_associativity [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu8/cache/index2/coherency_line_size [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu8/cache/index2/coherency_line_size [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu8/cache/index2/size [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu8/cache/index2/size [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu8/cache/index0/level [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu8/cache/index0/level [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu8/cache/index0/type [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu8/cache/index0/type [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu8/cache/index0/ways_of_associativity [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu8/cache/index0/ways_of_associativity [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu8/cache/index0/coherency_line_size [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu8/cache/index0/coherency_line_size [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu8/cache/index0/size [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu8/cache/index0/size [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu8/cache/index3/level [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu8/cache/index3/level [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu8/cache/index3/type [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu8/cache/index3/type [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu8/cache/index3/ways_of_associativity [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu8/cache/index3/ways_of_associativity [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu8/cache/index3/coherency_line_size [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu8/cache/index3/coherency_line_size [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu8/cache/index3/size [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu8/cache/index3/size [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu8/cache/index1/level [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu8/cache/index1/level [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu8/cache/index1/type [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu8/cache/index1/type [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu8/cache/index1/ways_of_associativity [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu8/cache/index1/ways_of_associativity [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu8/cache/index1/coherency_line_size [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu8/cache/index1/coherency_line_size [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu8/cache/index1/size [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu8/cache/index1/size [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu9/topology/core_id [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu9/topology/core_id [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu9/topology/physical_package_id [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu9/topology/physical_package_id [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu9/cpu_capacity [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu9/cache/index2/level [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu9/cache/index2/level [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu9/cache/index2/type [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu9/cache/index2/type [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu9/cache/index2/ways_of_associativity [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu9/cache/index2/ways_of_associativity [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu9/cache/index2/coherency_line_size [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu9/cache/index2/coherency_line_size [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu9/cache/index2/size [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu9/cache/index2/size [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu9/cache/index0/level [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu9/cache/index0/level [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu9/cache/index0/type [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu9/cache/index0/type [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu9/cache/index0/ways_of_associativity [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu9/cache/index0/ways_of_associativity [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu9/cache/index0/coherency_line_size [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu9/cache/index0/coherency_line_size [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu9/cache/index0/size [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu9/cache/index0/size [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu9/cache/index3/level [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu9/cache/index3/level [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu9/cache/index3/type [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu9/cache/index3/type [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu9/cache/index3/ways_of_associativity [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu9/cache/index3/ways_of_associativity [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu9/cache/index3/coherency_line_size [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu9/cache/index3/coherency_line_size [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu9/cache/index3/size [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu9/cache/index3/size [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu9/cache/index1/level [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu9/cache/index1/level [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu9/cache/index1/type [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu9/cache/index1/type [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu9/cache/index1/ways_of_associativity [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu9/cache/index1/ways_of_associativity [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu9/cache/index1/coherency_line_size [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu9/cache/index1/coherency_line_size [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu9/cache/index1/size [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu9/cache/index1/size [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /proc/cpuinfo [15:51:42] [main/DEBUG] [os.ut.FileUtil/]: Reading file /proc/cpuinfo [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /proc/self/auxv [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /proc/meminfo [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /proc/meminfo [15:51:43] [pool-5-thread-1/DEBUG] [ne.mi.co.tr.CoreModBaseTransformer/COREMOD]: Transforming net/minecraft/world/entity/EntityType [15:51:43] [pool-5-thread-1/DEBUG] [ne.mi.co.Co.forge/COREMODLOG]: Redirecting method call finalizeSpawn(Lnet/minecraft/world/level/ServerLevelAccessor;Lnet/minecraft/world/DifficultyInstance;Lnet/minecraft/world/entity/EntitySpawnReason;Lnet/minecraft/world/entity/SpawnGroupData;)Lnet/minecraft/world/entity/SpawnGroupData; to onFinalizeSpawn(Lnet/minecraft/world/entity/Mob;Lnet/minecraft/world/level/ServerLevelAccessor;Lnet/minecraft/world/DifficultyInstance;Lnet/minecraft/world/entity/EntitySpawnReason;Lnet/minecraft/world/entity/SpawnGroupData;)Lnet/minecraft/world/entity/SpawnGroupData; inside of net/minecraft/world/entity/EntityType.create [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu0/topology/core_id [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu0/topology/core_id [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu0/topology/physical_package_id [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu0/topology/physical_package_id [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu0/cpu_capacity [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu0/cache/index2/level [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu0/cache/index2/level [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu0/cache/index2/type [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu0/cache/index2/type [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu0/cache/index2/ways_of_associativity [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu0/cache/index2/ways_of_associativity [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu0/cache/index2/coherency_line_size [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu0/cache/index2/coherency_line_size [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu0/cache/index2/size [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu0/cache/index2/size [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu0/cache/index0/level [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu0/cache/index0/level [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu0/cache/index0/type [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu0/cache/index0/type [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu0/cache/index0/ways_of_associativity [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu0/cache/index0/ways_of_associativity [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu0/cache/index0/coherency_line_size [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu0/cache/index0/coherency_line_size [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu0/cache/index0/size [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu0/cache/index0/size [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu0/cache/index3/level [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu0/cache/index3/level [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu0/cache/index3/type [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu0/cache/index3/type [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu0/cache/index3/ways_of_associativity [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu0/cache/index3/ways_of_associativity [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu0/cache/index3/coherency_line_size [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu0/cache/index3/coherency_line_size [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu0/cache/index3/size [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu0/cache/index3/size [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu0/cache/index1/level [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu0/cache/index1/level [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu0/cache/index1/type [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu0/cache/index1/type [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu0/cache/index1/ways_of_associativity [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu0/cache/index1/ways_of_associativity [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu0/cache/index1/coherency_line_size [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu0/cache/index1/coherency_line_size [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu0/cache/index1/size [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu0/cache/index1/size [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu1/topology/core_id [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu1/topology/core_id [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu1/topology/physical_package_id [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu1/topology/physical_package_id [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu1/cpu_capacity [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu1/cache/index2/level [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu1/cache/index2/level [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu1/cache/index2/type [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu1/cache/index2/type [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu1/cache/index2/ways_of_associativity [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu1/cache/index2/ways_of_associativity [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu1/cache/index2/coherency_line_size [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu1/cache/index2/coherency_line_size [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu1/cache/index2/size [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu1/cache/index2/size [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu1/cache/index0/level [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu1/cache/index0/level [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu1/cache/index0/type [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu1/cache/index0/type [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu1/cache/index0/ways_of_associativity [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu1/cache/index0/ways_of_associativity [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu1/cache/index0/coherency_line_size [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu1/cache/index0/coherency_line_size [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu1/cache/index0/size [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu1/cache/index0/size [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu1/cache/index3/level [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu1/cache/index3/level [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu1/cache/index3/type [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu1/cache/index3/type [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu1/cache/index3/ways_of_associativity [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu1/cache/index3/ways_of_associativity [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu1/cache/index3/coherency_line_size [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu1/cache/index3/coherency_line_size [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu1/cache/index3/size [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu1/cache/index3/size [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu1/cache/index1/level [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu1/cache/index1/level [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu1/cache/index1/type [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu1/cache/index1/type [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu1/cache/index1/ways_of_associativity [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu1/cache/index1/ways_of_associativity [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu1/cache/index1/coherency_line_size [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu1/cache/index1/coherency_line_size [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu1/cache/index1/size [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu1/cache/index1/size [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu10/topology/core_id [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu10/topology/core_id [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu10/topology/physical_package_id [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu10/topology/physical_package_id [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu10/cpu_capacity [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu10/cache/index2/level [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu10/cache/index2/level [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu10/cache/index2/type [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu10/cache/index2/type [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu10/cache/index2/ways_of_associativity [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu10/cache/index2/ways_of_associativity [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu10/cache/index2/coherency_line_size [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu10/cache/index2/coherency_line_size [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu10/cache/index2/size [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu10/cache/index2/size [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu10/cache/index0/level [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu10/cache/index0/level [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu10/cache/index0/type [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu10/cache/index0/type [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu10/cache/index0/ways_of_associativity [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu10/cache/index0/ways_of_associativity [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu10/cache/index0/coherency_line_size [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu10/cache/index0/coherency_line_size [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu10/cache/index0/size [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu10/cache/index0/size [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu10/cache/index3/level [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu10/cache/index3/level [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu10/cache/index3/type [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu10/cache/index3/type [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu10/cache/index3/ways_of_associativity [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu10/cache/index3/ways_of_associativity [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu10/cache/index3/coherency_line_size [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu10/cache/index3/coherency_line_size [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu10/cache/index3/size [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu10/cache/index3/size [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu10/cache/index1/level [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu10/cache/index1/level [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu10/cache/index1/type [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu10/cache/index1/type [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu10/cache/index1/ways_of_associativity [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu10/cache/index1/ways_of_associativity [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu10/cache/index1/coherency_line_size [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu10/cache/index1/coherency_line_size [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu10/cache/index1/size [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu10/cache/index1/size [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu11/topology/core_id [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu11/topology/core_id [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu11/topology/physical_package_id [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu11/topology/physical_package_id [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu11/cpu_capacity [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu11/cache/index2/level [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu11/cache/index2/level [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu11/cache/index2/type [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu11/cache/index2/type [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu11/cache/index2/ways_of_associativity [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu11/cache/index2/ways_of_associativity [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu11/cache/index2/coherency_line_size [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu11/cache/index2/coherency_line_size [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu11/cache/index2/size [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu11/cache/index2/size [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu11/cache/index0/level [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu11/cache/index0/level [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu11/cache/index0/type [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu11/cache/index0/type [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu11/cache/index0/ways_of_associativity [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu11/cache/index0/ways_of_associativity [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu11/cache/index0/coherency_line_size [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu11/cache/index0/coherency_line_size [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu11/cache/index0/size [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu11/cache/index0/size [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu11/cache/index3/level [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu11/cache/index3/level [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu11/cache/index3/type [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu11/cache/index3/type [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu11/cache/index3/ways_of_associativity [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu11/cache/index3/ways_of_associativity [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu11/cache/index3/coherency_line_size [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu11/cache/index3/coherency_line_size [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu11/cache/index3/size [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu11/cache/index3/size [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu11/cache/index1/level [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu11/cache/index1/level [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu11/cache/index1/type [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu11/cache/index1/type [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu11/cache/index1/ways_of_associativity [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu11/cache/index1/ways_of_associativity [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu11/cache/index1/coherency_line_size [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu11/cache/index1/coherency_line_size [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu11/cache/index1/size [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu11/cache/index1/size [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu12/topology/core_id [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu12/topology/core_id [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu12/topology/physical_package_id [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu12/topology/physical_package_id [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu12/cpu_capacity [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu12/cache/index2/level [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu12/cache/index2/level [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu12/cache/index2/type [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu12/cache/index2/type [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu12/cache/index2/ways_of_associativity [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu12/cache/index2/ways_of_associativity [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu12/cache/index2/coherency_line_size [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu12/cache/index2/coherency_line_size [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu12/cache/index2/size [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu12/cache/index2/size [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu12/cache/index0/level [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu12/cache/index0/level [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu12/cache/index0/type [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu12/cache/index0/type [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu12/cache/index0/ways_of_associativity [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu12/cache/index0/ways_of_associativity [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu12/cache/index0/coherency_line_size [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu12/cache/index0/coherency_line_size [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu12/cache/index0/size [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu12/cache/index0/size [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu12/cache/index3/level [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu12/cache/index3/level [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu12/cache/index3/type [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu12/cache/index3/type [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu12/cache/index3/ways_of_associativity [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu12/cache/index3/ways_of_associativity [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu12/cache/index3/coherency_line_size [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu12/cache/index3/coherency_line_size [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu12/cache/index3/size [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu12/cache/index3/size [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu12/cache/index1/level [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu12/cache/index1/level [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu12/cache/index1/type [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu12/cache/index1/type [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu12/cache/index1/ways_of_associativity [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu12/cache/index1/ways_of_associativity [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu12/cache/index1/coherency_line_size [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu12/cache/index1/coherency_line_size [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu12/cache/index1/size [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu12/cache/index1/size [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu13/topology/core_id [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu13/topology/core_id [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu13/topology/physical_package_id [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu13/topology/physical_package_id [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu13/cpu_capacity [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu13/cache/index2/level [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu13/cache/index2/level [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu13/cache/index2/type [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu13/cache/index2/type [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu13/cache/index2/ways_of_associativity [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu13/cache/index2/ways_of_associativity [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu13/cache/index2/coherency_line_size [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu13/cache/index2/coherency_line_size [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu13/cache/index2/size [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu13/cache/index2/size [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu13/cache/index0/level [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu13/cache/index0/level [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu13/cache/index0/type [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu13/cache/index0/type [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu13/cache/index0/ways_of_associativity [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu13/cache/index0/ways_of_associativity [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu13/cache/index0/coherency_line_size [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu13/cache/index0/coherency_line_size [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu13/cache/index0/size [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu13/cache/index0/size [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu13/cache/index3/level [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu13/cache/index3/level [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu13/cache/index3/type [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu13/cache/index3/type [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu13/cache/index3/ways_of_associativity [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu13/cache/index3/ways_of_associativity [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu13/cache/index3/coherency_line_size [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu13/cache/index3/coherency_line_size [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu13/cache/index3/size [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu13/cache/index3/size [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu13/cache/index1/level [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu13/cache/index1/level [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu13/cache/index1/type [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu13/cache/index1/type [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu13/cache/index1/ways_of_associativity [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu13/cache/index1/ways_of_associativity [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu13/cache/index1/coherency_line_size [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu13/cache/index1/coherency_line_size [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu13/cache/index1/size [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu13/cache/index1/size [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu14/topology/core_id [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu14/topology/core_id [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu14/topology/physical_package_id [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu14/topology/physical_package_id [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu14/cpu_capacity [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu14/cache/index2/level [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu14/cache/index2/level [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu14/cache/index2/type [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu14/cache/index2/type [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu14/cache/index2/ways_of_associativity [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu14/cache/index2/ways_of_associativity [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu14/cache/index2/coherency_line_size [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu14/cache/index2/coherency_line_size [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu14/cache/index2/size [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu14/cache/index2/size [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu14/cache/index0/level [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu14/cache/index0/level [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu14/cache/index0/type [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu14/cache/index0/type [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu14/cache/index0/ways_of_associativity [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu14/cache/index0/ways_of_associativity [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu14/cache/index0/coherency_line_size [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu14/cache/index0/coherency_line_size [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu14/cache/index0/size [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu14/cache/index0/size [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu14/cache/index3/level [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu14/cache/index3/level [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu14/cache/index3/type [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu14/cache/index3/type [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu14/cache/index3/ways_of_associativity [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu14/cache/index3/ways_of_associativity [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu14/cache/index3/coherency_line_size [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu14/cache/index3/coherency_line_size [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu14/cache/index3/size [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu14/cache/index3/size [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu14/cache/index1/level [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu14/cache/index1/level [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu14/cache/index1/type [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu14/cache/index1/type [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu14/cache/index1/ways_of_associativity [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu14/cache/index1/ways_of_associativity [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu14/cache/index1/coherency_line_size [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu14/cache/index1/coherency_line_size [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu14/cache/index1/size [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu14/cache/index1/size [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu15/topology/core_id [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu15/topology/core_id [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu15/topology/physical_package_id [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu15/topology/physical_package_id [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu15/cpu_capacity [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu15/cache/index2/level [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu15/cache/index2/level [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu15/cache/index2/type [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu15/cache/index2/type [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu15/cache/index2/ways_of_associativity [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu15/cache/index2/ways_of_associativity [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu15/cache/index2/coherency_line_size [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu15/cache/index2/coherency_line_size [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu15/cache/index2/size [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu15/cache/index2/size [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu15/cache/index0/level [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu15/cache/index0/level [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu15/cache/index0/type [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu15/cache/index0/type [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu15/cache/index0/ways_of_associativity [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu15/cache/index0/ways_of_associativity [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu15/cache/index0/coherency_line_size [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu15/cache/index0/coherency_line_size [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu15/cache/index0/size [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu15/cache/index0/size [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu15/cache/index3/level [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu15/cache/index3/level [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu15/cache/index3/type [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu15/cache/index3/type [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu15/cache/index3/ways_of_associativity [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu15/cache/index3/ways_of_associativity [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu15/cache/index3/coherency_line_size [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu15/cache/index3/coherency_line_size [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu15/cache/index3/size [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu15/cache/index3/size [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu15/cache/index1/level [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu15/cache/index1/level [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu15/cache/index1/type [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu15/cache/index1/type [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu15/cache/index1/ways_of_associativity [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu15/cache/index1/ways_of_associativity [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu15/cache/index1/coherency_line_size [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu15/cache/index1/coherency_line_size [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu15/cache/index1/size [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu15/cache/index1/size [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu2/topology/core_id [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu2/topology/core_id [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu2/topology/physical_package_id [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu2/topology/physical_package_id [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu2/cpu_capacity [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu2/cache/index2/level [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu2/cache/index2/level [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu2/cache/index2/type [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu2/cache/index2/type [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu2/cache/index2/ways_of_associativity [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu2/cache/index2/ways_of_associativity [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu2/cache/index2/coherency_line_size [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu2/cache/index2/coherency_line_size [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu2/cache/index2/size [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu2/cache/index2/size [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu2/cache/index0/level [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu2/cache/index0/level [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu2/cache/index0/type [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu2/cache/index0/type [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu2/cache/index0/ways_of_associativity [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu2/cache/index0/ways_of_associativity [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu2/cache/index0/coherency_line_size [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu2/cache/index0/coherency_line_size [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu2/cache/index0/size [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu2/cache/index0/size [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu2/cache/index3/level [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu2/cache/index3/level [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu2/cache/index3/type [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu2/cache/index3/type [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu2/cache/index3/ways_of_associativity [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu2/cache/index3/ways_of_associativity [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu2/cache/index3/coherency_line_size [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu2/cache/index3/coherency_line_size [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu2/cache/index3/size [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu2/cache/index3/size [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu2/cache/index1/level [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu2/cache/index1/level [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu2/cache/index1/type [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu2/cache/index1/type [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu2/cache/index1/ways_of_associativity [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu2/cache/index1/ways_of_associativity [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu2/cache/index1/coherency_line_size [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu2/cache/index1/coherency_line_size [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu2/cache/index1/size [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu2/cache/index1/size [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu3/topology/core_id [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu3/topology/core_id [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu3/topology/physical_package_id [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu3/topology/physical_package_id [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu3/cpu_capacity [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu3/cache/index2/level [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu3/cache/index2/level [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu3/cache/index2/type [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu3/cache/index2/type [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu3/cache/index2/ways_of_associativity [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu3/cache/index2/ways_of_associativity [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu3/cache/index2/coherency_line_size [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu3/cache/index2/coherency_line_size [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu3/cache/index2/size [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu3/cache/index2/size [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu3/cache/index0/level [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu3/cache/index0/level [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu3/cache/index0/type [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu3/cache/index0/type [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu3/cache/index0/ways_of_associativity [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu3/cache/index0/ways_of_associativity [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu3/cache/index0/coherency_line_size [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu3/cache/index0/coherency_line_size [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu3/cache/index0/size [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu3/cache/index0/size [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu3/cache/index3/level [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu3/cache/index3/level [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu3/cache/index3/type [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu3/cache/index3/type [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu3/cache/index3/ways_of_associativity [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu3/cache/index3/ways_of_associativity [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu3/cache/index3/coherency_line_size [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu3/cache/index3/coherency_line_size [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu3/cache/index3/size [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu3/cache/index3/size [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu3/cache/index1/level [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu3/cache/index1/level [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu3/cache/index1/type [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu3/cache/index1/type [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu3/cache/index1/ways_of_associativity [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu3/cache/index1/ways_of_associativity [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu3/cache/index1/coherency_line_size [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu3/cache/index1/coherency_line_size [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu3/cache/index1/size [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu3/cache/index1/size [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu4/topology/core_id [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu4/topology/core_id [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu4/topology/physical_package_id [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu4/topology/physical_package_id [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu4/cpu_capacity [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu4/cache/index2/level [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu4/cache/index2/level [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu4/cache/index2/type [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu4/cache/index2/type [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu4/cache/index2/ways_of_associativity [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu4/cache/index2/ways_of_associativity [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu4/cache/index2/coherency_line_size [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu4/cache/index2/coherency_line_size [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu4/cache/index2/size [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu4/cache/index2/size [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu4/cache/index0/level [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu4/cache/index0/level [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu4/cache/index0/type [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu4/cache/index0/type [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu4/cache/index0/ways_of_associativity [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu4/cache/index0/ways_of_associativity [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu4/cache/index0/coherency_line_size [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu4/cache/index0/coherency_line_size [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu4/cache/index0/size [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu4/cache/index0/size [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu4/cache/index3/level [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu4/cache/index3/level [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu4/cache/index3/type [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu4/cache/index3/type [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu4/cache/index3/ways_of_associativity [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu4/cache/index3/ways_of_associativity [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu4/cache/index3/coherency_line_size [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu4/cache/index3/coherency_line_size [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu4/cache/index3/size [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu4/cache/index3/size [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu4/cache/index1/level [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu4/cache/index1/level [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu4/cache/index1/type [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu4/cache/index1/type [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu4/cache/index1/ways_of_associativity [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu4/cache/index1/ways_of_associativity [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu4/cache/index1/coherency_line_size [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu4/cache/index1/coherency_line_size [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu4/cache/index1/size [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu4/cache/index1/size [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu5/topology/core_id [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu5/topology/core_id [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu5/topology/physical_package_id [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu5/topology/physical_package_id [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu5/cpu_capacity [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu5/cache/index2/level [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu5/cache/index2/level [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu5/cache/index2/type [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu5/cache/index2/type [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu5/cache/index2/ways_of_associativity [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu5/cache/index2/ways_of_associativity [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu5/cache/index2/coherency_line_size [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu5/cache/index2/coherency_line_size [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu5/cache/index2/size [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu5/cache/index2/size [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu5/cache/index0/level [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu5/cache/index0/level [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu5/cache/index0/type [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu5/cache/index0/type [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu5/cache/index0/ways_of_associativity [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu5/cache/index0/ways_of_associativity [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu5/cache/index0/coherency_line_size [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu5/cache/index0/coherency_line_size [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu5/cache/index0/size [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu5/cache/index0/size [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu5/cache/index3/level [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu5/cache/index3/level [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu5/cache/index3/type [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu5/cache/index3/type [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu5/cache/index3/ways_of_associativity [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu5/cache/index3/ways_of_associativity [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu5/cache/index3/coherency_line_size [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu5/cache/index3/coherency_line_size [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu5/cache/index3/size [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu5/cache/index3/size [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu5/cache/index1/level [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu5/cache/index1/level [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu5/cache/index1/type [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu5/cache/index1/type [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu5/cache/index1/ways_of_associativity [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu5/cache/index1/ways_of_associativity [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu5/cache/index1/coherency_line_size [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu5/cache/index1/coherency_line_size [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu5/cache/index1/size [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu5/cache/index1/size [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu6/topology/core_id [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu6/topology/core_id [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu6/topology/physical_package_id [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu6/topology/physical_package_id [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu6/cpu_capacity [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu6/cache/index2/level [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu6/cache/index2/level [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu6/cache/index2/type [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu6/cache/index2/type [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu6/cache/index2/ways_of_associativity [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu6/cache/index2/ways_of_associativity [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu6/cache/index2/coherency_line_size [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu6/cache/index2/coherency_line_size [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu6/cache/index2/size [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu6/cache/index2/size [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu6/cache/index0/level [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu6/cache/index0/level [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu6/cache/index0/type [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu6/cache/index0/type [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu6/cache/index0/ways_of_associativity [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu6/cache/index0/ways_of_associativity [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu6/cache/index0/coherency_line_size [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu6/cache/index0/coherency_line_size [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu6/cache/index0/size [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu6/cache/index0/size [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu6/cache/index3/level [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu6/cache/index3/level [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu6/cache/index3/type [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu6/cache/index3/type [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu6/cache/index3/ways_of_associativity [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu6/cache/index3/ways_of_associativity [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu6/cache/index3/coherency_line_size [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu6/cache/index3/coherency_line_size [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu6/cache/index3/size [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu6/cache/index3/size [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu6/cache/index1/level [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu6/cache/index1/level [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu6/cache/index1/type [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu6/cache/index1/type [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu6/cache/index1/ways_of_associativity [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu6/cache/index1/ways_of_associativity [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu6/cache/index1/coherency_line_size [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu6/cache/index1/coherency_line_size [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu6/cache/index1/size [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu6/cache/index1/size [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu7/topology/core_id [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu7/topology/core_id [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu7/topology/physical_package_id [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu7/topology/physical_package_id [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu7/cpu_capacity [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu7/cache/index2/level [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu7/cache/index2/level [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu7/cache/index2/type [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu7/cache/index2/type [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu7/cache/index2/ways_of_associativity [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu7/cache/index2/ways_of_associativity [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu7/cache/index2/coherency_line_size [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu7/cache/index2/coherency_line_size [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu7/cache/index2/size [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu7/cache/index2/size [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu7/cache/index0/level [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu7/cache/index0/level [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu7/cache/index0/type [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu7/cache/index0/type [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu7/cache/index0/ways_of_associativity [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu7/cache/index0/ways_of_associativity [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu7/cache/index0/coherency_line_size [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu7/cache/index0/coherency_line_size [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu7/cache/index0/size [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu7/cache/index0/size [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu7/cache/index3/level [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu7/cache/index3/level [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu7/cache/index3/type [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu7/cache/index3/type [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu7/cache/index3/ways_of_associativity [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu7/cache/index3/ways_of_associativity [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu7/cache/index3/coherency_line_size [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu7/cache/index3/coherency_line_size [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu7/cache/index3/size [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu7/cache/index3/size [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu7/cache/index1/level [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu7/cache/index1/level [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu7/cache/index1/type [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu7/cache/index1/type [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu7/cache/index1/ways_of_associativity [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu7/cache/index1/ways_of_associativity [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu7/cache/index1/coherency_line_size [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu7/cache/index1/coherency_line_size [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu7/cache/index1/size [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu7/cache/index1/size [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu8/topology/core_id [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu8/topology/core_id [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu8/topology/physical_package_id [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu8/topology/physical_package_id [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu8/cpu_capacity [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu8/cache/index2/level [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu8/cache/index2/level [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu8/cache/index2/type [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu8/cache/index2/type [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu8/cache/index2/ways_of_associativity [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu8/cache/index2/ways_of_associativity [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu8/cache/index2/coherency_line_size [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu8/cache/index2/coherency_line_size [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu8/cache/index2/size [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu8/cache/index2/size [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu8/cache/index0/level [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu8/cache/index0/level [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu8/cache/index0/type [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu8/cache/index0/type [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu8/cache/index0/ways_of_associativity [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu8/cache/index0/ways_of_associativity [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu8/cache/index0/coherency_line_size [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu8/cache/index0/coherency_line_size [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu8/cache/index0/size [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu8/cache/index0/size [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu8/cache/index3/level [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu8/cache/index3/level [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu8/cache/index3/type [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu8/cache/index3/type [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu8/cache/index3/ways_of_associativity [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu8/cache/index3/ways_of_associativity [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu8/cache/index3/coherency_line_size [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu8/cache/index3/coherency_line_size [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu8/cache/index3/size [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu8/cache/index3/size [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu8/cache/index1/level [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu8/cache/index1/level [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu8/cache/index1/type [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu8/cache/index1/type [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu8/cache/index1/ways_of_associativity [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu8/cache/index1/ways_of_associativity [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu8/cache/index1/coherency_line_size [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu8/cache/index1/coherency_line_size [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu8/cache/index1/size [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu8/cache/index1/size [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu9/topology/core_id [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu9/topology/core_id [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu9/topology/physical_package_id [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu9/topology/physical_package_id [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu9/cpu_capacity [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu9/cache/index2/level [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu9/cache/index2/level [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu9/cache/index2/type [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu9/cache/index2/type [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu9/cache/index2/ways_of_associativity [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu9/cache/index2/ways_of_associativity [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu9/cache/index2/coherency_line_size [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu9/cache/index2/coherency_line_size [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu9/cache/index2/size [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu9/cache/index2/size [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu9/cache/index0/level [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu9/cache/index0/level [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu9/cache/index0/type [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu9/cache/index0/type [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu9/cache/index0/ways_of_associativity [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu9/cache/index0/ways_of_associativity [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu9/cache/index0/coherency_line_size [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu9/cache/index0/coherency_line_size [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu9/cache/index0/size [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu9/cache/index0/size [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu9/cache/index3/level [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu9/cache/index3/level [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu9/cache/index3/type [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu9/cache/index3/type [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu9/cache/index3/ways_of_associativity [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu9/cache/index3/ways_of_associativity [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu9/cache/index3/coherency_line_size [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu9/cache/index3/coherency_line_size [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu9/cache/index3/size [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu9/cache/index3/size [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu9/cache/index1/level [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu9/cache/index1/level [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu9/cache/index1/type [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu9/cache/index1/type [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu9/cache/index1/ways_of_associativity [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu9/cache/index1/ways_of_associativity [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu9/cache/index1/coherency_line_size [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu9/cache/index1/coherency_line_size [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu9/cache/index1/size [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /sys/devices/system/cpu/cpu9/cache/index1/size [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /proc/cpuinfo [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /proc/cpuinfo [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /proc/self/auxv [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /proc/meminfo [15:51:43] [main/DEBUG] [os.ut.FileUtil/]: Reading file /proc/meminfo Exception in thread "main" java.lang.reflect.InvocationTargetException at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:118) at java.base/java.lang.reflect.Method.invoke(Method.java:580) at net.minecraftforge.bootstrap.Bootstrap.bootstrapMain(Bootstrap.java:133) at net.minecraftforge.bootstrap.Bootstrap.start(Bootstrap.java:53) at net.minecraftforge.bootstrap.ForgeBootstrap.main(ForgeBootstrap.java:19) Caused by: java.lang.reflect.InvocationTargetException at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:118) at java.base/java.lang.reflect.Method.invoke(Method.java:580) at SECURE-BOOTSTRAP/[email protected]/net.minecraftforge.fml.loading.targets.CommonLaunchHandler.runTarget(CommonLaunchHandler.java:96) at SECURE-BOOTSTRAP/[email protected]/net.minecraftforge.fml.loading.targets.CommonLaunchHandler.lambda$makeService$0(CommonLaunchHandler.java:79) at SECURE-BOOTSTRAP/[email protected]/cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:77) at SECURE-BOOTSTRAP/[email protected]/cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:97) at SECURE-BOOTSTRAP/[email protected]/cpw.mods.modlauncher.Launcher.run(Launcher.java:116) at SECURE-BOOTSTRAP/[email protected]/cpw.mods.modlauncher.Launcher.main(Launcher.java:75) at SECURE-BOOTSTRAP/[email protected]/cpw.mods.modlauncher.BootstrapEntry.main(BootstrapEntry.java:17) at [email protected]/net.minecraftforge.bootstrap.Bootstrap.moduleMain(Bootstrap.java:188) at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103) ... 4 more Caused by: java.lang.NoClassDefFoundError: net/minecraft/client/gui/screens/ReceivingLevelScreen at TRANSFORMER/[email protected]/net.minecraft.client.main.Main.main(Main.java:200) at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103) ... 14 more Caused by: java.lang.ClassNotFoundException: net.minecraft.client.gui.screens.ReceivingLevelScreen at cpw.mods.securejarhandler/net.minecraftforge.securemodules.SecureModuleClassLoader.loadClass(SecureModuleClassLoader.java:454) at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:526) ... 16 more > Task :runClient FAILED [Incubating] Problems report is available at: file:///home/normalexisting/Documents/MCMODS/DDSHARDING_XXI/build/reports/problems/problems-report.html FAILURE: Build failed with an exception. * What went wrong: Execution failed for task ':runClient'. > Process 'command '/usr/lib/jvm/java-21-openjdk-amd64/bin/java'' finished with non-zero exit value 1 * Try: > Run with --stacktrace option to get the stack trace. > Run with --info or --debug option to get more log output. > Run with --scan to get full insights. > Get more help at https://help.gradle.org. Deprecated Gradle features were used in this build, making it incompatible with Gradle 9.0. You can use '--warning-mode all' to show the individual deprecation warnings and determine if they come from your own scripts or plugins. For more on this, please refer to https://docs.gradle.org/8.12.1/userguide/command_line_interface.html#sec:command_line_warnings in the Gradle documentation. BUILD FAILED in 10s 10 actionable tasks: 3 executed, 7 up-to-date
  8. Forge version: 55.0.0 Minecraft version: 1.21.5 Downloads: As this is the start of a new version, it is recommended that you check the downloads page and use the latest version to receive any bug fixes. Downloads page Intro: Good evening! Today, we have released our initial build of Forge 55.0 for Minecraft 1.21.5. 1.21.5 is the newest member of the 1.21 family of versions, which was released yesterday on March 25, 2025. As a reminder, the first minor (X.0) of a Forge version is a beta. Forge betas are marked as such on the bottom left of the title screen and are candidates for any breaking changes. Additionally, there are a couple of important things to note about this update, which I've made sure to mention in this post as well. Feel free to chat with us about bugs or these implementation changes on GitHub and in our Discord server. As always, we will continue to keep all versions of 1.21 and 1.20 in active support as covered by our tiered support policy. Cheers, happy modding, and good luck porting! Rendering Refactor For those who tuned in to Minecraft Live on March 22, 2025, you may already know that Mojang have announced their intention to bring their new Vibrant Visuals overhaul to Java in the future. They've taken the first steps toward this by refactoring how rendering pipelines and render types are handled internally. This has, in turn, made many of Forge's rendering APIs that have existed for years obsolete, as they (for the most part) can be done directly in vanilla. If there was a rendering API that was provided by Forge which you believe should be re-implemented, we're happy to discuss on GitHub through an issue or a pull request. Deprecation of weapon-like ToolActions In 1.21.5, Minecraft added new data components for defining the characteristics of weapons in data. This includes attack speed, block tags which define efficient blocks, and more. As such, we will begin marking our ToolActions solution for this as deprecated. ToolActions were originally added to address the problem of creating modded tools that needed to perform the same actions as vanilla tools. There are still a few tool actions that will continue to be used, such as the shears tool action for example. There are some existing Forge tool actions that are currently obsolete and have no effect given the way the new data components are implemented. We will continue to work on these deprecations and invite you to chat with us on GitHub or Discord if you have any questions.
  9. I suddenly getting error message that says 'Deprecated Gradle features were used in this build, making it incompatible with Gradle 8.0.' or 'Found Gradle version Gradle 8.0. Versions Gradle 8.0 and newer are not supported.'. I tried following articles from java/minecraft community and even asked AI to help but I got no right answer. I checked git changelog to fix but all I did was adding some Items , editing documents like readme, changelog and changing version number and group in build.gradle file. what is causing this error and how can I fix it? Thanks. This is the full log of runClient with stacktrace.
  10. I have a 1.16.5 Forge server. It crashes everytime shrotly after starting or while joining. Could somebody help me please I dont know what to do here. I keep getting this one error heres the logs and the crash report. Crash Report: ---- Minecraft Crash Report ---- // Shall we play a game? Time: 18.02.25 16:24 Description: Exception in server tick loop org.spongepowered.asm.mixin.transformer.throwables.MixinTransformerError: An unexpected critical error was encountered at org.spongepowered.asm.mixin.transformer.MixinProcessor.applyMixins(MixinProcessor.java:392) ~[mixin-0.8.4.jar:0.8.4+Jenkins-b308.git-2accda5000f7602229606b39437565542cc6fba4] {} at org.spongepowered.asm.mixin.transformer.MixinTransformer.transformClass(MixinTransformer.java:250) ~[mixin-0.8.4.jar:0.8.4+Jenkins-b308.git-2accda5000f7602229606b39437565542cc6fba4] {} at org.spongepowered.asm.service.modlauncher.MixinTransformationHandler.processClass(MixinTransformationHandler.java:131) ~[mixin-0.8.4.jar:0.8.4+Jenkins-b308.git-2accda5000f7602229606b39437565542cc6fba4] {} at org.spongepowered.asm.launch.MixinLaunchPluginLegacy.processClass(MixinLaunchPluginLegacy.java:131) ~[mixin-0.8.4.jar:0.8.4+Jenkins-b308.git-2accda5000f7602229606b39437565542cc6fba4] {} at cpw.mods.modlauncher.serviceapi.ILaunchPluginService.processClassWithFlags(ILaunchPluginService.java:154) ~[modlauncher-8.1.3.jar:8.1.3+8.1.3+main-8.1.x.c94d18ec] {} at cpw.mods.modlauncher.LaunchPluginHandler.offerClassNodeToPlugins(LaunchPluginHandler.java:85) ~[modlauncher-8.1.3.jar:?] {} at cpw.mods.modlauncher.ClassTransformer.transform(ClassTransformer.java:120) ~[modlauncher-8.1.3.jar:?] {} at cpw.mods.modlauncher.TransformingClassLoader$DelegatedClassLoader.findClass(TransformingClassLoader.java:265) ~[modlauncher-8.1.3.jar:?] {} at cpw.mods.modlauncher.TransformingClassLoader.loadClass(TransformingClassLoader.java:136) ~[modlauncher-8.1.3.jar:?] {re:classloading} at cpw.mods.modlauncher.TransformingClassLoader.loadClass(TransformingClassLoader.java:98) ~[modlauncher-8.1.3.jar:?] {re:classloading} at java.lang.ClassLoader.loadClass(ClassLoader.java:351) ~[?:1.8.0_442] {} at net.minecraft.network.NetworkManager.func_74428_b(NetworkManager.java:225) ~[?:?] {re:mixin,pl:runtimedistcleaner:A,re:computing_frames,pl:runtimedistcleaner:A,re:classloading,pl:mixin:APP:kryptonreforged.mixins.json:network.shared.flushconsolidation.ClientConnectionMixin,pl:mixin:APP:kryptonreforged.mixins.json:network.shared.pipeline.compression.ClientConnectionMixin,pl:mixin:APP:kryptonreforged.mixins.json:network.shared.pipeline.encryption.ClientConnectionMixin,pl:mixin:A,pl:runtimedistcleaner:A} at net.minecraft.network.NetworkSystem.func_151269_c(NetworkSystem.java:134) ~[?:?] {re:classloading,pl:runtimedistcleaner:A} at net.minecraft.server.MinecraftServer.func_71190_q(MinecraftServer.java:865) ~[?:?] {re:mixin,pl:accesstransformer:B,pl:runtimedistcleaner:A,re:classloading,pl:accesstransformer:B,pl:mixin:APP:betterendforge.mixins.json:MinecraftServerMixin,pl:mixin:APP:structure_gel.mixins.json:MinecraftServerMixin,pl:mixin:APP:paxi.mixins.json:MixinMinecraftServer,pl:mixin:APP:roadrunner.mixins.json:world.light_batching.MinecraftServerMixin,pl:mixin:APP:byg.mixins.json:server.MixinMinecraftServer,pl:mixin:A,pl:runtimedistcleaner:A} at net.minecraft.server.dedicated.DedicatedServer.func_71190_q(DedicatedServer.java:291) ~[?:?] {re:classloading,pl:accesstransformer:B} at net.minecraft.server.MinecraftServer.func_71217_p(MinecraftServer.java:787) ~[?:?] {re:mixin,pl:accesstransformer:B,pl:runtimedistcleaner:A,re:classloading,pl:accesstransformer:B,pl:mixin:APP:betterendforge.mixins.json:MinecraftServerMixin,pl:mixin:APP:structure_gel.mixins.json:MinecraftServerMixin,pl:mixin:APP:paxi.mixins.json:MixinMinecraftServer,pl:mixin:APP:roadrunner.mixins.json:world.light_batching.MinecraftServerMixin,pl:mixin:APP:byg.mixins.json:server.MixinMinecraftServer,pl:mixin:A,pl:runtimedistcleaner:A} at net.minecraft.server.MinecraftServer.func_240802_v_(MinecraftServer.java:642) ~[?:?] {re:mixin,pl:accesstransformer:B,pl:runtimedistcleaner:A,re:classloading,pl:accesstransformer:B,pl:mixin:APP:betterendforge.mixins.json:MinecraftServerMixin,pl:mixin:APP:structure_gel.mixins.json:MinecraftServerMixin,pl:mixin:APP:paxi.mixins.json:MixinMinecraftServer,pl:mixin:APP:roadrunner.mixins.json:world.light_batching.MinecraftServerMixin,pl:mixin:APP:byg.mixins.json:server.MixinMinecraftServer,pl:mixin:A,pl:runtimedistcleaner:A} at net.minecraft.server.MinecraftServer.func_240783_a_(MinecraftServer.java:232) ~[?:?] {re:mixin,pl:accesstransformer:B,pl:runtimedistcleaner:A,re:classloading,pl:accesstransformer:B,pl:mixin:APP:betterendforge.mixins.json:MinecraftServerMixin,pl:mixin:APP:structure_gel.mixins.json:MinecraftServerMixin,pl:mixin:APP:paxi.mixins.json:MixinMinecraftServer,pl:mixin:APP:roadrunner.mixins.json:world.light_batching.MinecraftServerMixin,pl:mixin:APP:byg.mixins.json:server.MixinMinecraftServer,pl:mixin:A,pl:runtimedistcleaner:A} at java.lang.Thread.run(Thread.java:750) [?:1.8.0_442] {} Caused by: org.spongepowered.asm.mixin.injection.throwables.InjectionError: Critical injection failure: Constant modifier method getKeepAlivePacketInterval(J)J in randompatches.mixins.json:timeouts.ServerPlayNetHandlerKeepAliveMixin failed injection check, (0/1) succeeded. Scanned 1 target(s). Using refmap randompatches.refmap.json at org.spongepowered.asm.mixin.injection.struct.InjectionInfo.postInject(InjectionInfo.java:468) ~[mixin-0.8.4.jar:0.8.4+Jenkins-b308.git-2accda5000f7602229606b39437565542cc6fba4] {} at org.spongepowered.asm.mixin.transformer.MixinTargetContext.applyInjections(MixinTargetContext.java:1362) ~[mixin-0.8.4.jar:0.8.4+Jenkins-b308.git-2accda5000f7602229606b39437565542cc6fba4] {} at org.spongepowered.asm.mixin.transformer.MixinApplicatorStandard.applyInjections(MixinApplicatorStandard.java:1051) ~[mixin-0.8.4.jar:0.8.4+Jenkins-b308.git-2accda5000f7602229606b39437565542cc6fba4] {} at org.spongepowered.asm.mixin.transformer.MixinApplicatorStandard.applyMixin(MixinApplicatorStandard.java:400) ~[mixin-0.8.4.jar:0.8.4+Jenkins-b308.git-2accda5000f7602229606b39437565542cc6fba4] {} at org.spongepowered.asm.mixin.transformer.MixinApplicatorStandard.apply(MixinApplicatorStandard.java:325) ~[mixin-0.8.4.jar:0.8.4+Jenkins-b308.git-2accda5000f7602229606b39437565542cc6fba4] {} at org.spongepowered.asm.mixin.transformer.TargetClassContext.apply(TargetClassContext.java:383) ~[mixin-0.8.4.jar:0.8.4+Jenkins-b308.git-2accda5000f7602229606b39437565542cc6fba4] {} at org.spongepowered.asm.mixin.transformer.TargetClassContext.applyMixins(TargetClassContext.java:365) ~[mixin-0.8.4.jar:0.8.4+Jenkins-b308.git-2accda5000f7602229606b39437565542cc6fba4] {} at org.spongepowered.asm.mixin.transformer.MixinProcessor.applyMixins(MixinProcessor.java:363) ~[mixin-0.8.4.jar:0.8.4+Jenkins-b308.git-2accda5000f7602229606b39437565542cc6fba4] {} ... 18 more A detailed walkthrough of the error, its code path and all known details is as follows: --------------------------------------------------------------------------------------- -- System Details -- Details: Minecraft Version: 1.16.5 Minecraft Version ID: 1.16.5 Operating System: Windows 11 (amd64) version 10.0 Java Version: 1.8.0_442, Temurin Java VM Version: OpenJDK 64-Bit Server VM (mixed mode), Temurin Memory: 9388557456 bytes (8953 MB) / 12566659072 bytes (11984 MB) up to 12566659072 bytes (11984 MB) CPUs: 20 JVM Flags: 2 total; -Xms8G -Xmx12G ModLauncher: 8.1.3+8.1.3+main-8.1.x.c94d18ec ModLauncher launch target: fmlserver ModLauncher naming: srg ModLauncher services: /mixin-0.8.4.jar mixin PLUGINSERVICE /eventbus-4.0.0.jar eventbus PLUGINSERVICE /forge-1.16.5-36.2.42.jar object_holder_definalize PLUGINSERVICE /forge-1.16.5-36.2.42.jar runtime_enum_extender PLUGINSERVICE /accesstransformers-3.0.1.jar accesstransformer PLUGINSERVICE /forge-1.16.5-36.2.42.jar capability_inject_definalize PLUGINSERVICE /forge-1.16.5-36.2.42.jar runtimedistcleaner PLUGINSERVICE /mixin-0.8.4.jar mixin TRANSFORMATIONSERVICE /forge-1.16.5-36.2.42.jar fml TRANSFORMATIONSERVICE FML: 36.2 Forge: net.minecraftforge:36.2.42 FML Language Providers: [email protected] minecraft@1 [email protected] Mod List: saturn-mc1.16.5-0.0.3.jar |Saturn |saturn |0.0.3 |DONE |Manifest: NOSIGNATURE dynamiclightsreforged-mc1.16.5_v1.0.1.jar |Dynamic Lights Reforged |dynamiclightsreforged |mc1.16.5_v1.0.1 |DONE |Manifest: NOSIGNATURE glasscutter-1.1.1-1.16.5.jar |Glasscutter |glasscutter |1.1.1 |DONE |Manifest: NOSIGNATURE BetterDungeons-1.16.4-1.2.1.jar |YUNG's Better Dungeons |betterdungeons |1.16.4-1.2.1 |DONE |Manifest: NOSIGNATURE immersivecooking-1.2.0.jar |Immersive Cooking |immersivecooking |1.2.0 |DONE |Manifest: NOSIGNATURE blue_skies-1.16.5-1.1.3.jar |Blue Skies |blue_skies |1.1.3 |DONE |Manifest: NOSIGNATURE NetherPortalFix_1.16.3-7.2.1.jar |NetherPortalFix |netherportalfix |7.2.1 |DONE |Manifest: NOSIGNATURE PGA-1.16.4-1.1.2.1.jar |Public GUI Announcement |publicguiannouncement |1.1.0.1 |DONE |Manifest: NOSIGNATURE connectivity-2.4-1.16.5.jar |Connectivity Mod |connectivity |2.4-1.16.5 |DONE |Manifest: NOSIGNATURE stalwart-dungeons-1.16.5-1.1.7.jar |Stalwart Dungeons |stalwart_dungeons |1.1.7 |DONE |Manifest: NOSIGNATURE strawgolem-1.16-1.9.jar |Straw Golem |strawgolem |1.16-1.9 |DONE |Manifest: NOSIGNATURE KleeSlabs_1.16.5-9.2.1.jar |KleeSlabs |kleeslabs |9.2.1 |DONE |Manifest: NOSIGNATURE BetterCaves-Forge-1.16.4-1.1.2.jar |YUNG's Better Caves |bettercaves |1.16.4-1.1.2 |DONE |Manifest: NOSIGNATURE villagernames_1.16.5-4.3.jar |Villager Names |villagernames |4.3 |DONE |Manifest: NOSIGNATURE XaerosWorldMap_1.28.9_Forge_1.16.5.jar |Xaero's World Map |xaeroworldmap |1.28.9 |DONE |Manifest: NOSIGNATURE modernfix-mc1.16.5-1.9.1.jar |ModernFix |modernfix |1.9.1 |DONE |Manifest: NOSIGNATURE citadel-1.8.1-1.16.5.jar |Citadel |citadel |1.8.1 |DONE |Manifest: NOSIGNATURE lootintegrations-1.2.jar |Lootintegrations mod |lootintegrations |1.2 |DONE |Manifest: NOSIGNATURE farmersdelightintegrations-1.16.5-1.2.jar |Farmer's Delight Compats |farmersdelightintegrations |1.16.5-1.2 |DONE |Manifest: NOSIGNATURE YungsApi-1.16.4-Forge-13.jar |YUNG's API |yungsapi |1.16.4-Forge-13 |DONE |Manifest: NOSIGNATURE does_potato_tick-1.16.5-3.3.jar |Does Potato Tick |does_potato_tick |1.16.5-3.3 |DONE |Manifest: NOSIGNATURE upgradednetherite_items-1.16.5-1.1.0.2-release.jar|Upgraded Netherite : Items |upgradednetherite_items |1.16.5-1.1.0.2-relea|DONE |Manifest: NOSIGNATURE Bookshelf-Forge-1.16.5-10.4.33.jar |Bookshelf |bookshelf |10.4.33 |DONE |Manifest: eb:c4:b1:67:8b:f9:0c:db:dc:4f:01:b1:8e:61:64:39:4c:10:85:0b:a6:c4:c7:48:f0:fa:95:f2:cb:08:3a:e5 ResourcePackOverrides-v1.0.0-1.16.5-Forge.jar |Resource Pack Overrides |resourcepackoverrides |1.0.0 |DONE |Manifest: 9a:09:85:98:65:c4:8c:11:c5:49:f6:d6:33:23:39:df:8d:b4:ff:92:84:b8:bd:a5:83:9f:ac:7f:2a:d1:4b:6a guardvillagers-1.16.5.1.2.6.jar |Guard Villagers |guardvillagers |1.2.6 |DONE |Manifest: NOSIGNATURE randompatches-2.4.4-forge.jar |RandomPatches |randompatches |2.4.4-forge |DONE |Manifest: 92:f6:29:d4:09:89:f5:f5:98:5e:20:34:31:d0:7b:58:22:06:bd:a5:d1:6a:92:6e:ac:3d:8d:18:c5:b2:5b:d7 takesapillage-1.0.3-1.16.5.jar |It Takes A Pillage |takesapillage |1.0.3 |DONE |Manifest: NOSIGNATURE bygonenether-1.2.2-1.16.5.jar |Bygone Nether |bygonenether |1.2.2 |DONE |Manifest: NOSIGNATURE snowrealmagic-1.16.5-2.10.0-1.16.5.jar |Snow Real Magic Potato Edition|snowrealmagic |1.16.5-2.10.0-1.16.5|DONE |Manifest: NOSIGNATURE what_did_you_vote_for-1.16.5-1.0.5.jar |What Did You Vote For? |whatareyouvotingfor |1.0 |DONE |Manifest: NOSIGNATURE carryon-1.16.5-1.15.5.22.jar |Carry On |carryon |1.15.5.22 |DONE |Manifest: NOSIGNATURE JustEnoughResources-1.16.5-0.12.1.133.jar |Just Enough Resources |jeresources |0.12.1.133 |DONE |Manifest: NOSIGNATURE shieldexp-1.16.5-alpha-0.1.jar |Shield Expansion |shieldexp |alpha-0.1 |DONE |Manifest: NOSIGNATURE RevampedWolf-1.16.4-0.7.1.jar |RevampedWolf |revampedwolf |1.16.4-0.7.1 |DONE |Manifest: NOSIGNATURE twilightforest-1.16.5-4.0.870-universal.jar |The Twilight Forest |twilightforest |NONE |DONE |Manifest: NOSIGNATURE supplementaries-1.16.5-0.18.5.jar |Supplementaries |supplementaries |0.18.2 |DONE |Manifest: NOSIGNATURE betterendforge-1.16.5-2.8.jar |Better End Potato Edition |betterendforge |1.16.5-2.8 |DONE |Manifest: NOSIGNATURE upgradednetherite-1.16.5-2.1.0.1-release.jar |Upgraded Netherite |upgradednetherite |1.16.5-2.1.0.1-relea|DONE |Manifest: NOSIGNATURE cuneiform-1.16.3-1.2.5.jar |Cuneiform |cuneiform |1.16.3-1.2.5 |DONE |Manifest: NOSIGNATURE structure_gel-1.16.5-1.7.8.jar |Structure Gel API |structure_gel |1.7.8 |DONE |Manifest: NOSIGNATURE corpse-1.16.5-1.0.7.jar |Corpse |corpse |1.16.5-1.0.7 |DONE |Manifest: NOSIGNATURE chipped-1.16.5-1.2.1-forge.jar |Chipped |chipped |1.16.5-1.2.1-forge |DONE |Manifest: NOSIGNATURE chocolate-1.3.0-1.16.4.jar |Chocolate |chocolate |1.3.0-1.16.4 |DONE |Manifest: NOSIGNATURE FarmersDelight-1.16.5-0.6.0.jar |Farmer's Delight |farmersdelight |1.16.5-0.6.0 |DONE |Manifest: NOSIGNATURE cleancut-mc1.16-2.2-forge.jar |Clean Cut |cleancut |2.2 |DONE |Manifest: NOSIGNATURE torchmaster-2.3.8.jar |Torchmaster |torchmaster |2.3.8 |DONE |Manifest: NOSIGNATURE repurposed_structures_forge-3.4.7+1.16.5.jar |Repurposed Structures |repurposed_structures |3.4.7+1.16.5 |DONE |Manifest: NOSIGNATURE morevillagers-FORGE-1.16.5-1.5.5.jar |More Villagers |morevillagers |1.5.5 |DONE |Manifest: NOSIGNATURE BetterCompatibilityChecker-1.0.7-build.22+mc1.16.5|Better Compatibility Checker |bcc |1.0.7-build.22+mc1.1|DONE |Manifest: NOSIGNATURE MorePaths-1.16.1-1.3.2.jar |MorePaths |morepaths |1.16-1.3.2 |DONE |Manifest: NOSIGNATURE simpleshops-1.1.3.jar |Simple Shops |simpleshops |1.1.3 |DONE |Manifest: NOSIGNATURE Talpm 1.0.0 1.16.5.jar |TheAbyss LPM Integration |talpm |1.0.0 |DONE |Manifest: NOSIGNATURE dungeons_plus-1.16.5-1.1.5.jar |Dungeons Plus |dungeons_plus |1.1.5 |DONE |Manifest: NOSIGNATURE YungsBridges-Forge-1.16.4-1.0.1.jar |YUNG's Bridges |yungsbridges |1.16.4-1.0.1 |DONE |Manifest: NOSIGNATURE cavesandcliffs-1.16.5-7.2.0.jar |Caves and Cliffs Backport |cavesandcliffs |1.16.5-7.2.0 |DONE |Manifest: NOSIGNATURE darkerdepths-1.16.5-1.1.4.jar |Darker Depths |darkerdepths |1.1.4 |DONE |Manifest: NOSIGNATURE Highlighter-1.16.5-1.1.1.jar |Highlighter |highlighter |1.1.1 |DONE |Manifest: NOSIGNATURE TextruesRubidiumOptions-1.0.4-mc1.16.5.jar |TexTrue's Rubidium Options |reeses_sodium_options |1.0.4-mc1.16.5 |DONE |Manifest: NOSIGNATURE spark-1.9.1-forge.jar |spark |spark |1.9.1 |DONE |Manifest: NOSIGNATURE CNB-1.16.3_5-1.2.11.jar |Creatures and Beasts |cnb |1.2.11 |DONE |Manifest: NOSIGNATURE L_Enders Cataclysm-0.48 Changed Theme -1.16.5.jar |Cataclysm Mod |cataclysm |1.0 |DONE |Manifest: NOSIGNATURE curios-forge-1.16.5-4.1.0.0.jar |Curios API |curios |1.16.5-4.1.0.0 |DONE |Manifest: NOSIGNATURE omnis-1.16.5-1.2.3.jar |Omnis |omnis |1.16.5-1.0 |DONE |Manifest: NOSIGNATURE Patchouli-1.16.4-53.3.jar |Patchouli |patchouli |1.16.4-53.3 |DONE |Manifest: NOSIGNATURE extendedmushrooms-1.16.5-1.7.0.5.jar |Extended Mushrooms |extendedmushrooms |1.16.5-1.7.0.5 |DONE |Manifest: NOSIGNATURE collective-1.16.5-5.49.jar |Collective |collective |5.49 |DONE |Manifest: NOSIGNATURE YungsExtras-Forge-1.16.4-1.0.jar |YUNG's Extras |yungsextras |Forge-1.16.4-1.0 |DONE |Manifest: NOSIGNATURE villagertools-1.16.5-1.0.2.jar |villagertools |villagertools |1.16.5-1.0.2 |DONE |Manifest: 1f:47:ac:b1:61:82:96:b8:47:19:16:d2:61:81:11:60:3a:06:4b:61:31:56:7d:44:31:1e:0c:6f:22:5b:4c:ed elevatorid-1.16.5-1.7.13.jar |Elevator Mod |elevatorid |1.16.5-1.7.13 |DONE |Manifest: NOSIGNATURE NightConfigFixes-v1.0.1-1.16.5-Forge.jar |Night Config Fixes |nightconfigfixes |1.0.1 |DONE |Manifest: 9a:09:85:98:65:c4:8c:11:c5:49:f6:d6:33:23:39:df:8d:b4:ff:92:84:b8:bd:a5:83:9f:ac:7f:2a:d1:4b:6a obfuscate-0.6.3-1.16.5.jar |Obfuscate |obfuscate |0.6.3 |DONE |Manifest: NOSIGNATURE BetterStrongholds-1.16.4-1.2.1.jar |YUNG's Better Strongholds |betterstrongholds |1.16.4-1.2.1 |DONE |Manifest: NOSIGNATURE travelers_index-1.16.4-1.0.2.jar |Traveler's Index |travelers_index |1.16.4-1.0.2 |DONE |Manifest: NOSIGNATURE TheAbyss2 2.2.3-4 1.16.5.jar |TheAbyss |theabyss |2.2.3-4 |DONE |Manifest: NOSIGNATURE starterkit_1.16.5-4.1.jar |Starter Kit |starterkit |4.1 |DONE |Manifest: NOSIGNATURE cavebiomeapi-1.16.5-1.4.2.jar |CaveBiomeAPI |cavebiomeapi |1.16.5-1.4.2 |DONE |Manifest: NOSIGNATURE architectury-1.32.66.jar |Architectury |architectury |1.32.66 |DONE |Manifest: NOSIGNATURE curiouselytra-forge-1.16.5-4.0.2.4.jar |Curious Elytra |curiouselytra |1.16.5-4.0.2.4 |DONE |Manifest: NOSIGNATURE cloth-config-4.16.91-forge.jar |Cloth Config v4 API |cloth-config |4.16.91 |DONE |Manifest: NOSIGNATURE FallingTree-1.16.5-2.11.6.jar |FallingTree |fallingtree |2.11.5 |DONE |Manifest: 3c:8e:df:6c:df:a6:2a:9f:af:64:ea:04:9a:cf:65:92:3b:54:93:0e:96:50:b4:52:e1:13:42:18:2b:ae:40:29 letmedespawn-forge-1.16-1.0.2a.jar |Let Me Despawn |letmedespawn |1.16.5-forge-1.16-1.|DONE |Manifest: NOSIGNATURE FastLeafDecay-v25.2.jar |FastLeafDecay |fastleafdecay |v25.2 |DONE |Manifest: NOSIGNATURE Babel-1.0.5.jar |Babel |babel |1.0.5 |DONE |Manifest: NOSIGNATURE JEPB-1.0.0.jar |Just Enough Piglin Bartering |jepb |1.0.0 |DONE |Manifest: NOSIGNATURE BetterMineshafts-Forge-1.16.4-2.0.4.jar |YUNG's Better Mineshafts |bettermineshafts |1.16.4-2.0.4 |DONE |Manifest: NOSIGNATURE voidtotem-1.16.5-1.4.0.jar |Void Totem |voidtotem |1.16.5-1.4.0 |DONE |Manifest: NOSIGNATURE veinmining-forge-1.16.5-0.18.jar |Vein Mining |veinmining |1.16.5-0.18 |DONE |Manifest: NOSIGNATURE BetterModsButton-v1.0.5-1.16.5-Forge.jar |Better Mods Button |bettermodsbutton |1.0.5 |DONE |Manifest: 9a:09:85:98:65:c4:8c:11:c5:49:f6:d6:33:23:39:df:8d:b4:ff:92:84:b8:bd:a5:83:9f:ac:7f:2a:d1:4b:6a DarkPaintings-1.16.5-6.0.11.jar |DarkPaintings |darkpaintings |6.0.11 |DONE |Manifest: eb:c4:b1:67:8b:f9:0c:db:dc:4f:01:b1:8e:61:64:39:4c:10:85:0b:a6:c4:c7:48:f0:fa:95:f2:cb:08:3a:e5 TradingPost-v1.0.2-1.16.5.jar |Trading Post |tradingpost |1.0.2 |DONE |Manifest: 9a:09:85:98:65:c4:8c:11:c5:49:f6:d6:33:23:39:df:8d:b4:ff:92:84:b8:bd:a5:83:9f:ac:7f:2a:d1:4b:6a Kiwi-1.16.5-3.6.1.jar |Kiwi |kiwi |3.6.1 |DONE |Manifest: NOSIGNATURE mowziesmobs-1.5.27.jar |Mowzie's Mobs |mowziesmobs |1.5.27 |DONE |Manifest: NOSIGNATURE geckolib-forge-1.16.5-3.0.106.jar |GeckoLib |geckolib3 |3.0.106 |DONE |Manifest: NOSIGNATURE ftb-library-forge-1605.3.4-build.90.jar |FTB Library |ftblibrary |1605.3.4-build.90 |DONE |Manifest: NOSIGNATURE ftb-teams-forge-1605.2.3-build.40.jar |FTB Teams |ftbteams |1605.2.3-build.40 |DONE |Manifest: NOSIGNATURE woodcuttercompats-1.16-1.2.jar |Woodcutter Compats |woodcuttercompats |1.16-1.2 |DONE |Manifest: NOSIGNATURE ConfigMenusForge-v1.2.0-1.16.5-Forge.jar |Config Menus for Forge |configmenusforge |1.2.0 |DONE |Manifest: 9a:09:85:98:65:c4:8c:11:c5:49:f6:d6:33:23:39:df:8d:b4:ff:92:84:b8:bd:a5:83:9f:ac:7f:2a:d1:4b:6a EasyMagic-v1.0.4-1.16.5.jar |Easy Magic |easymagic |1.0.4 |DONE |Manifest: 9a:09:85:98:65:c4:8c:11:c5:49:f6:d6:33:23:39:df:8d:b4:ff:92:84:b8:bd:a5:83:9f:ac:7f:2a:d1:4b:6a xlpackets-1.16.4-1.2.jar |XL Packets |xlpackets |1.16.4-1.2 |DONE |Manifest: NOSIGNATURE jei-1.16.5-7.8.0.1009.jar |Just Enough Items |jei |7.8.0.1009 |DONE |Manifest: NOSIGNATURE item-filters-forge-1605.2.5-build.9.jar |Item Filters |itemfilters |1605.2.5-build.9 |DONE |Manifest: NOSIGNATURE VisualWorkbench-v1.1.0-1.16.5.jar |Visual Workbench |visualworkbench |1.1.0 |DONE |Manifest: 9a:09:85:98:65:c4:8c:11:c5:49:f6:d6:33:23:39:df:8d:b4:ff:92:84:b8:bd:a5:83:9f:ac:7f:2a:d1:4b:6a AttributeFix-1.16.5-10.1.4.jar |AttributeFix |attributefix |10.1.4 |DONE |Manifest: eb:c4:b1:67:8b:f9:0c:db:dc:4f:01:b1:8e:61:64:39:4c:10:85:0b:a6:c4:c7:48:f0:fa:95:f2:cb:08:3a:e5 the-conjurer-1.16.4-1.0.13.jar |The Conjurer |conjurer_illager |1.0.13 |DONE |Manifest: NOSIGNATURE abnormals_core-1.16.5-3.3.1.jar |Abnormals Core |abnormals_core |3.3.1 |DONE |Manifest: NOSIGNATURE environmental-1.16.5-1.1.1.jar |Environmental |environmental |1.1.1 |DONE |Manifest: NOSIGNATURE bamboo_blocks-1.16.5-3.0.1.jar |Bamboo Blocks |bamboo_blocks |3.0.1 |DONE |Manifest: NOSIGNATURE copperpot-1.16.5-1.2.0.jar |Copper Pot |copperpot |1.16.5-1.2.0 |DONE |Manifest: NOSIGNATURE buzzier_bees-1.16.5-3.0.3.jar |Buzzier Bees |buzzier_bees |3.0.3 |DONE |Manifest: NOSIGNATURE Enhanced-Mushrooms-1.16.5-3.0.9.jar |Enhanced Mushrooms |enhanced_mushrooms |1.16.5-3.0.9 |DONE |Manifest: NOSIGNATURE Bayou-Blues-1.16.5-1.0.5.jar |Bayou Blues |bayou_blues |1.16.5-1.0.5 |DONE |Manifest: NOSIGNATURE differentiate-1.16.5-0.5.3.jar |Differentiate |differentiate |0.5.3 |DONE |Manifest: NOSIGNATURE goblintraders-1.7.3-1.16.5.jar |Goblin Traders |goblintraders |1.7.3 |DONE |Manifest: NOSIGNATURE caelus-forge-1.16.5-2.1.3.2.jar |Caelus API |caelus |1.16.5-2.1.3.2 |DONE |Manifest: NOSIGNATURE Paxi-Forge-1.16.4-1.0.jar |Paxi |paxi |1.16.4-1.0 |DONE |Manifest: NOSIGNATURE Better-Badlands-1.16.5-2.0.3.jar |Better Badlands |better_badlands |1.16.5-2.0.3 |DONE |Manifest: NOSIGNATURE extraboats-1.16.5-2.1.1.jar |Extra Boats |extraboats |2.1.1 |DONE |Manifest: NOSIGNATURE Waystones_1.16.5-7.6.4.jar |Waystones |waystones |7.6.4 |DONE |Manifest: NOSIGNATURE Clumps-6.0.0.28.jar |Clumps |clumps |6.0.0.28 |DONE |Manifest: NOSIGNATURE RoadRunner-mc1.16.5-1.4.1.jar |Meep Meep! (Road Runner) |roadrunner |1.4.1 |DONE |Manifest: NOSIGNATURE comforts-forge-1.16.5-4.0.1.5.jar |Comforts |comforts |1.16.5-4.0.1.5 |DONE |Manifest: NOSIGNATURE NaturesCompass-1.16.5-1.9.1-forge.jar |Nature's Compass |naturescompass |1.16.5-1.9.1-forge |DONE |Manifest: NOSIGNATURE smarterfarmers-1.16.5-1.2.1.jar |Smarter Farmers |smarterfarmers |1.16.5-1.2 |DONE |Manifest: NOSIGNATURE SimpleStorageNetwork-1.16.5-1.5.3.jar |Simple Storage Network |storagenetwork |1.16.5-1.5.3 |DONE |Manifest: 1f:47:ac:b1:61:82:96:b8:47:19:16:d2:61:81:11:60:3a:06:4b:61:31:56:7d:44:31:1e:0c:6f:22:5b:4c:ed SereneSeasons-1.16.5-4.0.1.127-universal.jar |Serene Seasons |sereneseasons |1.16.5-4.0.1.127 |DONE |Manifest: NOSIGNATURE irregularchef-1.16.5-1.0.1.jar |The Irregular Chef |irregularchef |1.16.5-1.0.1 |DONE |Manifest: NOSIGNATURE OuterEnd-0.2.14.jar |The Outer End |outer_end |0.2.9 |DONE |Manifest: NOSIGNATURE decorative_blocks-1.16.4-1.7.2.jar |Decorative Blocks |decorative_blocks |1.7.2 |DONE |Manifest: NOSIGNATURE decorative_blocks_abnormals-1.2.jar |Decorative Blocks Abnormals |decorative_blocks_abnormals |1.2 |DONE |Manifest: NOSIGNATURE curioofundying-forge-1.16.5-5.2.0.0.jar |Curio of Undying |curioofundying |1.16.5-5.2.0.0 |DONE |Manifest: NOSIGNATURE BadMobs-1.16.5-9.1.9.jar |BadMobs |badmobs |9.1.9 |DONE |Manifest: eb:c4:b1:67:8b:f9:0c:db:dc:4f:01:b1:8e:61:64:39:4c:10:85:0b:a6:c4:c7:48:f0:fa:95:f2:cb:08:3a:e5 snowundertrees-1.16.5-v1.3.jar |Snow Under Trees |snowundertrees |v1.3 |DONE |Manifest: NOSIGNATURE deepdark_4.2.jar |Dead Guy's Untitled Deep Dark |dead_guys_untitled_deep_dark_ |Frist Version! |DONE |Manifest: NOSIGNATURE starlight-1.2.jar |Starlight |starlight |1.0.0-RC2 |DONE |Manifest: NOSIGNATURE farsight-1.7.jar |Farsight mod |farsight_view |1.7 |DONE |Manifest: NOSIGNATURE ftb-chunks-forge-1605.3.4-build.220.jar |FTB Chunks |ftbchunks |1605.3.4-build.220 |DONE |Manifest: NOSIGNATURE frozenup-1.0.1.jar |Frozen Up |frozenup |1.0.1 |DONE |Manifest: NOSIGNATURE crumbs-forge-1.0.7.jar |Crumbs |crumbs |1.0.7 |DONE |Manifest: NOSIGNATURE forge-1.16.5-36.2.42-universal.jar |Forge |forge |36.2.42 |DONE |Manifest: 22:af:21:d8:19:82:7f:93:94:fe:2b:ac:b7:e4:41:57:68:39:87:b1:a7:5c:c6:44:f9:25:74:21:14:f5:0d:90 Bountiful-1.16.4-3.3.1.jar |Bountiful |bountiful |1.16.4-3.3.1 |DONE |Manifest: NOSIGNATURE culturaldelights-1.16.5-0.9.2.jar |Cultural Delights |culturaldelights |0.9.2 |DONE |Manifest: NOSIGNATURE endergetic-1.16.5-3.0.2.jar |The Endergetic Expansion |endergetic |3.0.2 |DONE |Manifest: NOSIGNATURE neapolitan-1.16.5-2.2.1.jar |Neapolitan |neapolitan |2.2.1 |DONE |Manifest: NOSIGNATURE selene-1.16.5-1.9.0.jar |Selene |selene |1.16.5-1.0 |DONE |Manifest: NOSIGNATURE DungeonsArise-1.16.5-2.1.49-beta.jar |When Dungeons Arise |dungeons_arise |2.1.49 |DONE |Manifest: NOSIGNATURE forge-1.16.5-36.2.42-server.jar |Minecraft |minecraft |1.16.5 |DONE |Manifest: NOSIGNATURE upgrade_aquatic-1.16.5-3.1.2.jar |Upgrade Aquatic |upgrade_aquatic |3.1.2 |DONE |Manifest: NOSIGNATURE ftb-quests-forge-1605.3.7-build.165.jar |FTB Quests |ftbquests |1605.3.7-build.165 |DONE |Manifest: NOSIGNATURE Jade-1.16.4-2.8.3.jar |Jade |jade |2.8.3 |DONE |Manifest: NOSIGNATURE chunksavingfix-0.1.0.jar |Chunk Saving Fix |chunksavingfix |0.1.0 |DONE |Manifest: NOSIGNATURE personality-1.16.5-1.0.3.jar |Personality |personality |1.0.3 |DONE |Manifest: NOSIGNATURE CavesCliffsBackportAdditions-3.4.1jar.jar |CavesandCliffsbackportaddition|cavesandcliffsbackportaddition|3.4 |DONE |Manifest: NOSIGNATURE atmospheric-1.16.5-3.1.1.jar |Atmospheric |atmospheric |3.1.1 |DONE |Manifest: NOSIGNATURE paintings-1.16.4-7.0.0.1.jar |Paintings ++ |paintings |1.16.4-6.0.1.5 |DONE |Manifest: NOSIGNATURE Iceberg-1.16.5-1.0.45.jar |Iceberg |iceberg |1.0.45 |DONE |Manifest: NOSIGNATURE savageandravage-1.16.5-3.2.0.jar |Savage & Ravage |savageandravage |3.2.0 |DONE |Manifest: NOSIGNATURE Xaeros_Minimap_23.1.0_Forge_1.16.5.jar |Xaero's Minimap |xaerominimap |23.1.0 |DONE |Manifest: NOSIGNATURE seasonhud-1.16.5-1.4.6.jar |SeasonHUD |seasonhud |1.4.6 |DONE |Manifest: NOSIGNATURE ftb-backups-2.1.2.2.jar |FTB Backups |ftbbackups |2.1.2.2 |DONE |Manifest: NOSIGNATURE autumnity-1.16.5-2.1.2.jar |Autumnity |autumnity |2.1.2 |DONE |Manifest: NOSIGNATURE polymorph-forge-1.16.5-0.41.jar |Polymorph |polymorph |1.16.5-0.41 |DONE |Manifest: NOSIGNATURE kryptonreforged-mc1.16.5_v1.0.0.jar |Krypton Reforged |kryptonreforged |mc1.16.5_v1.0.0 |DONE |Manifest: NOSIGNATURE AutoRegLib-1.6-49.jar |AutoRegLib |autoreglib |1.6-49 |DONE |Manifest: NOSIGNATURE Quark-r2.4-322.jar |Quark |quark |r2.4-322 |DONE |Manifest: NOSIGNATURE DiagonalFences-v1.1.1-1.16.5.jar |Diagonal Fences |diagonalfences |1.1.1 |DONE |Manifest: 9a:09:85:98:65:c4:8c:11:c5:49:f6:d6:33:23:39:df:8d:b4:ff:92:84:b8:bd:a5:83:9f:ac:7f:2a:d1:4b:6a backpacked-2.1.8-1.16.5.jar |Backpacked |backpacked |2.1.8 |DONE |Manifest: NOSIGNATURE combustivefishing-forge-1.16.3-4.0.0.1.jar |Combustive Fishing |combustivefishing |1.16.3-4.0.0.1 |DONE |Manifest: NOSIGNATURE upgradedcore-1.16.5-1.1.0.3-release.jar |Upgraded Core |upgradedcore |1.16.5-1.1.0.3-relea|DONE |Manifest: NOSIGNATURE HunterIllager-1.16.5-1.4.0.jar |Hunter Illager |hunterillager |1.16.5-1.4.0 |DONE |Manifest: NOSIGNATURE illagersweararmor-1.0.5.jar |Illagers Wear Armor |illagersweararmor |1.0.5 |DONE |Manifest: NOSIGNATURE nethers_delight-2.1.jar |Nethers Delight |nethers_delight |2.1 |DONE |Manifest: NOSIGNATURE ferritecore-2.1.1-forge.jar |Ferrite Core |ferritecore |2.1.1 |DONE |Manifest: 41:ce:50:66:d1:a0:05:ce:a1:0e:02:85:9b:46:64:e0:bf:2e:cf:60:30:9a:fe:0c:27:e0:63:66:9a:84:ce:8a upgradednetherite_ultimate-1.16.5-1.1.0.3-release.|Upgraded Netherite : Ultimerit|upgradednetherite_ultimate |1.16.5-1.1.0.3-relea|DONE |Manifest: NOSIGNATURE PuzzlesLib-v1.0.15-1.16.5-Forge.jar |Puzzles Lib |puzzleslib |1.0.15 |DONE |Manifest: 9a:09:85:98:65:c4:8c:11:c5:49:f6:d6:33:23:39:df:8d:b4:ff:92:84:b8:bd:a5:83:9f:ac:7f:2a:d1:4b:6a byg-1.3.6.jar |Oh The Biomes You'll Go |byg |1.3.4 |DONE |Manifest: NOSIGNATURE deuf-1.16.5-1.1.jar |DEUF - Duplicate Entity UUID F|deuf |1.16.5-1.1 |DONE |Manifest: NOSIGNATURE xptome-1.16.5-v2.1.5.jar |XP Tome |xpbook |v2.1.5 |DONE |Manifest: NOSIGNATURE RoadRunner != Lithium: This instance was launched using RoadRunner, which is an *unofficial* Lithium fork! Please **do not** report bugs to them! Crash Report UUID: b98ea77a-bd35-4eed-8141-7c7de92060cb Kiwi Modules: Player Count: 0 / 20; [] Data Packs: vanilla, mod:saturn (incompatible), mod:dynamiclightsreforged, mod:betterdungeons, mod:immersivecooking, mod:publicguiannouncement (incompatible), mod:stalwart_dungeons, mod:strawgolem, mod:bettercaves (incompatible), mod:modernfix, mod:farmersdelightintegrations, mod:yungsapi, mod:does_potato_tick, mod:upgradednetherite_items, mod:resourcepackoverrides, mod:guardvillagers, mod:randompatches, mod:snowrealmagic, mod:whatareyouvotingfor, mod:jeresources, mod:revampedwolf, mod:supplementaries, mod:betterendforge, mod:upgradednetherite, mod:structure_gel, mod:corpse, mod:cleancut (incompatible), mod:torchmaster (incompatible), mod:repurposed_structures, mod:morevillagers, mod:bcc (incompatible), mod:morepaths (incompatible), mod:dungeons_plus, mod:yungsbridges, mod:cavesandcliffs, mod:darkerdepths, mod:highlighter, mod:reeses_sodium_options (incompatible), mod:spark, mod:curios, mod:extendedmushrooms, mod:yungsextras, mod:obfuscate, mod:theabyss, mod:cloth-config (incompatible), mod:fallingtree, mod:fastleafdecay, mod:babel, mod:jepb, mod:bettermineshafts, mod:veinmining, mod:bettermodsbutton, mod:darkpaintings, mod:kiwi, mod:mowziesmobs, mod:configmenusforge, mod:jei, mod:visualworkbench, mod:attributefix, mod:differentiate, mod:goblintraders, mod:caelus, mod:paxi, mod:naturescompass (incompatible), mod:smarterfarmers, mod:sereneseasons, mod:curioofundying, mod:snowundertrees, mod:starlight (incompatible), mod:crumbs, mod:forge, mod:dungeons_arise, mod:chunksavingfix, mod:cavesandcliffsbackportadditions, mod:paintings (incompatible), mod:xaerominimap, mod:ftbbackups (incompatible), mod:polymorph, mod:autoreglib (incompatible), mod:backpacked (incompatible), mod:upgradednetherite_ultimate, mod:puzzleslib, mod:byg, mod:deuf, mod:xpbook, mod:glasscutter, mod:blue_skies (incompatible), mod:netherportalfix (incompatible), mod:connectivity, mod:kleeslabs (incompatible), mod:villagernames, mod:xaeroworldmap, mod:citadel (incompatible), mod:lootintegrations, mod:bookshelf, mod:takesapillage (incompatible), mod:bygonenether (incompatible), mod:carryon, mod:shieldexp, mod:omnis, mod:twilightforest, mod:cuneiform, mod:chipped, mod:chocolate, mod:farmersdelight, mod:culturaldelights, mod:simpleshops, mod:talpm, mod:bountiful (incompatible), mod:cnb, mod:geckolib3 (incompatible), mod:cataclysm (incompatible), mod:patchouli (incompatible), mod:collective, mod:villagertools, mod:elevatorid, mod:nightconfigfixes, mod:betterstrongholds, mod:travelers_index (incompatible), mod:starterkit, mod:cavebiomeapi, mod:seasonhud, mod:architectury, mod:ftblibrary, mod:ftbteams, mod:curiouselytra, mod:letmedespawn, mod:voidtotem, mod:tradingpost, mod:woodcuttercompats, mod:itemfilters, mod:ftbquests, mod:easymagic, mod:xlpackets, mod:conjurer_illager (incompatible), mod:abnormals_core, mod:environmental, mod:bamboo_blocks, mod:copperpot, mod:bayou_blues, mod:upgrade_aquatic, mod:better_badlands, mod:irregularchef, mod:endergetic, mod:neapolitan, mod:personality, mod:savageandravage, mod:autumnity, mod:nethers_delight, mod:buzzier_bees, mod:enhanced_mushrooms, mod:extraboats, mod:waystones (incompatible), mod:clumps, mod:roadrunner (incompatible), mod:comforts, mod:storagenetwork, mod:outer_end, mod:decorative_blocks, mod:decorative_blocks_abnormals, mod:badmobs (incompatible), mod:dead_guys_untitled_deep_dark_, mod:farsight_view, mod:ftbchunks, mod:frozenup, mod:selene, mod:jade, mod:atmospheric, mod:iceberg, mod:quark (incompatible), mod:kryptonreforged (incompatible), mod:diagonalfences, mod:combustivefishing (incompatible), mod:upgradedcore, mod:hunterillager, mod:illagersweararmor (incompatible), mod:ferritecore (incompatible) Is Modded: Definitely; Server brand changed to 'forge' Type: Dedicated Server (map_server.txt) Logs: [18Feb2025 16:23:39.248] [main/INFO] [cpw.mods.modlauncher.Launcher/MODLAUNCHER]: ModLauncher running: args [--gameDir, ., --launchTarget, fmlserver, --fml.forgeVersion, 36.2.42, --fml.mcpVersion, 20210115.111550, --fml.mcVersion, 1.16.5, --fml.forgeGroup, net.minecraftforge, nogui] [18Feb2025 16:23:39.252] [main/INFO] [cpw.mods.modlauncher.Launcher/MODLAUNCHER]: ModLauncher 8.1.3+8.1.3+main-8.1.x.c94d18ec starting: java version 1.8.0_442 by Temurin [18Feb2025 16:23:39.686] [main/INFO] [net.minecraftforge.fml.loading.FixSSL/CORE]: Added Lets Encrypt root certificates as additional trust [18Feb2025 16:23:39.716] [main/INFO] [mixin/]: SpongePowered MIXIN Subsystem Version=0.8.4 Source=file:/C:/Gaming-Programme/MC-Server/Server%20mit%20Matteo%20und%20Oskar/MO%20Server/MO%20Server/libraries/org/spongepowered/mixin/0.8.4/mixin-0.8.4.jar Service=ModLauncher Env=SERVER [18Feb2025 16:23:40.703] [main/INFO] [STDERR/]: [org.antlr.v4.runtime.ConsoleErrorListener:syntaxError:38]: line 1:0 token recognition error at: '~' [18Feb2025 16:23:41.326] [main/INFO] [mixin/]: Successfully loaded Mixin Connector [vazkii.patchouli.common.MixinConnector] [18Feb2025 16:23:41.328] [main/INFO] [mixin/]: Successfully loaded Mixin Connector [com.fuzs.easymagic.mixin.MixinConnector] [18Feb2025 16:23:41.330] [main/INFO] [mixin/]: Successfully loaded Mixin Connector [ca.spottedleaf.starlight.mixin.MixinConnector] [18Feb2025 16:23:41.334] [main/INFO] [cpw.mods.modlauncher.LaunchServiceHandler/MODLAUNCHER]: Launching target 'fmlserver' with arguments [--gameDir, ., nogui] [18Feb2025 16:23:41.344] [main/WARN] [mixin/]: Reference map 'immersivecooking.refmap.json' for immersivecooking.mixins.json could not be read. If this is a development environment you can ignore this message [18Feb2025 16:23:41.360] [main/INFO] [ModernFix/]: Loaded configuration file for ModernFix: 43 options available, 1 override(s) found [18Feb2025 16:23:41.366] [main/INFO] [ModernFixResourceFinder/]: Start building list of class locations... [18Feb2025 16:23:41.679] [main/INFO] [ModernFixResourceFinder/]: Finish building [18Feb2025 16:23:41.724] [main/WARN] [mixin/]: Reference map 'yungsbridges.refmap.json' for yungsbridges.mixins.json could not be read. If this is a development environment you can ignore this message [18Feb2025 16:23:41.726] [main/WARN] [mixin/]: Reference map 'cataclysm.refmap.json' for cataclysm.mixins.json could not be read. If this is a development environment you can ignore this message [18Feb2025 16:23:41.740] [main/WARN] [mixin/]: Reference map 'nightconfigfixes.refmap.json' for nightconfigfixes.forge.mixins.json could not be read. If this is a development environment you can ignore this message [18Feb2025 16:23:41.754] [main/INFO] [RoadRunner Early Loading/]: Loaded rule configuration file for RoadRunner: 81 options available, 0 override(s) found [18Feb2025 16:23:41.761] [main/WARN] [mixin/]: Reference map 'otg.refmap.json' for chunksavingfix.mixins.json could not be read. If this is a development environment you can ignore this message [18Feb2025 16:23:41.786] [main/WARN] [mixin/]: Reference map 'nethers_delight.refmap.json' for nethers_delight.mixins.json could not be read. If this is a development environment you can ignore this message [18Feb2025 16:23:42.257] [main/WARN] [ModernFix/]: Force-disabling mixin 'perf.compress_biome_container.MixinBiomeContainer' as rule 'mixin.perf.compress_biome_container' (added by mods [chocolate]) disables it and children [18Feb2025 16:23:42.312] [main/WARN] [mixin/]: Error loading class: com/refinedmods/refinedstorage/block/shape/ShapeCache (java.lang.ClassNotFoundException: null) [18Feb2025 16:23:42.313] [main/WARN] [mixin/]: @Mixin target com.refinedmods.refinedstorage.block.shape.ShapeCache was not found modernfix.mixins.json:perf.reduce_blockstate_cache_rebuilds.ShapeCacheMixin [18Feb2025 16:23:42.349] [main/WARN] [mixin/]: Error loading class: dev/latvian/kubejs/item/ingredient/TagIngredientJS (java.lang.ClassNotFoundException: null) [18Feb2025 16:23:42.350] [main/WARN] [mixin/]: @Mixin target dev.latvian.kubejs.item.ingredient.TagIngredientJS was not found modernfix.mixins.json:perf.kubejs.TagIngredientJSMixin [18Feb2025 16:23:42.350] [main/WARN] [mixin/]: Error loading class: dev/latvian/kubejs/server/TagEventJS$TagWrapper (java.lang.ClassNotFoundException: null) [18Feb2025 16:23:42.350] [main/WARN] [mixin/]: @Mixin target dev.latvian.kubejs.server.TagEventJS$TagWrapper was not found modernfix.mixins.json:perf.kubejs.TagWrapperMixin [18Feb2025 16:23:42.351] [main/WARN] [mixin/]: Error loading class: dev/latvian/kubejs/recipe/RecipeEventJS (java.lang.ClassNotFoundException: null) [18Feb2025 16:23:42.351] [main/WARN] [mixin/]: @Mixin target dev.latvian.kubejs.recipe.RecipeEventJS was not found modernfix.mixins.json:perf.kubejs.RecipeEventJSMixin [18Feb2025 16:23:42.351] [main/WARN] [mixin/]: Error loading class: dev/latvian/kubejs/recipe/RecipeJS (java.lang.ClassNotFoundException: null) [18Feb2025 16:23:42.351] [main/WARN] [mixin/]: @Mixin target dev.latvian.kubejs.recipe.RecipeJS was not found modernfix.mixins.json:perf.kubejs.RecipeJSMixin [18Feb2025 16:23:42.351] [main/WARN] [mixin/]: Error loading class: dev/latvian/kubejs/recipe/filter/IDFilter (java.lang.ClassNotFoundException: null) [18Feb2025 16:23:42.352] [main/WARN] [mixin/]: @Mixin target dev.latvian.kubejs.recipe.filter.IDFilter was not found modernfix.mixins.json:perf.kubejs.IDFilterMixin [18Feb2025 16:23:42.352] [main/WARN] [mixin/]: Error loading class: dev/latvian/kubejs/item/ingredient/CustomIngredient (java.lang.ClassNotFoundException: null) [18Feb2025 16:23:42.352] [main/WARN] [mixin/]: @Mixin target dev.latvian.kubejs.item.ingredient.CustomIngredient was not found modernfix.mixins.json:perf.kubejs.CustomIngredientMixin [18Feb2025 16:23:42.555] [main/WARN] [mixin/]: Error loading class: com/terraforged/mod/feature/feature/FreezeLayer (java.lang.ClassNotFoundException: null) [18Feb2025 16:23:42.555] [main/WARN] [mixin/]: @Mixin target com.terraforged.mod.feature.feature.FreezeLayer was not found snowrealmagic.mixins.json:terraforged.MixinFreezeLayer [18Feb2025 16:23:42.555] [main/WARN] [mixin/]: Error loading class: com/terraforged/mod/chunk/column/post/LayerDecorator (java.lang.ClassNotFoundException: null) [18Feb2025 16:23:42.556] [main/WARN] [mixin/]: @Mixin target com.terraforged.mod.chunk.column.post.LayerDecorator was not found snowrealmagic.mixins.json:terraforged.MixinLayerDecorator [18Feb2025 16:23:42.739] [main/WARN] [mixin/]: Error loading class: biomesoplenty/common/world/BOPBiomeProvider (java.lang.ClassNotFoundException: null) [18Feb2025 16:23:42.739] [main/WARN] [mixin/]: Error loading class: com/ferreusveritas/dynamictrees/worldgen/BiomeRadiusCoordinator (java.lang.ClassNotFoundException: null) [18Feb2025 16:23:42.740] [main/WARN] [mixin/]: Error loading class: com/ferreusveritas/dynamictrees/worldgen/TreeGenerator (java.lang.ClassNotFoundException: null) [18Feb2025 16:23:42.974] [main/FATAL] [net.minecraftforge.fml.loading.RuntimeDistCleaner/DISTXFORM]: Attempted to load class net/minecraft/client/renderer/entity/layers/BipedArmorLayer for invalid dist DEDICATED_SERVER [18Feb2025 16:23:42.975] [main/WARN] [mixin/]: Error loading class: net/minecraft/client/renderer/entity/layers/BipedArmorLayer (java.lang.RuntimeException: Attempted to load class net/minecraft/client/renderer/entity/layers/BipedArmorLayer for invalid dist DEDICATED_SERVER) [18Feb2025 16:23:42.975] [main/WARN] [mixin/]: @Mixin target net.minecraft.client.renderer.entity.layers.BipedArmorLayer was not found neapolitan.mixins.json:BipedArmorLayerMixin [18Feb2025 16:23:44.294] [main/INFO] [FerriteCore - class definer/]: Using Java 8 class definer [18Feb2025 16:23:46.786] [main/INFO] [net.minecraft.util.registry.Bootstrap/]: Vanilla bootstrap took 3433 milliseconds [18Feb2025 16:23:48.700] [main/WARN] [mixin/]: @ModifyConstant conflict. Skipping xlpackets.mixins.json:PacketBufferMixin->@ModifyConstant::xlPackets(J)J with priority 1000, already redirected by randompatches.mixins.json:packetsizelimits.PacketBufferMixin->@ModifyConstant::getMaxNBTCompoundTagPacketSize(J)J with priority 1000 [18Feb2025 16:23:48.855] [main/INFO] [net.minecraftforge.registries.GameData/]: Potentially Dangerous alternative prefix `citadel` for name `debug`, expected `minecraft`. This could be a intended override, but in most cases indicates a broken mod. [18Feb2025 16:23:48.865] [main/INFO] [net.minecraftforge.registries.GameData/]: Potentially Dangerous alternative prefix `citadel` for name `citadel_book`, expected `minecraft`. This could be a intended override, but in most cases indicates a broken mod. [18Feb2025 16:23:48.868] [main/INFO] [net.minecraftforge.registries.GameData/]: Potentially Dangerous alternative prefix `citadel` for name `effect_item`, expected `minecraft`. This could be a intended override, but in most cases indicates a broken mod. [18Feb2025 16:23:48.869] [main/INFO] [net.minecraftforge.registries.GameData/]: Potentially Dangerous alternative prefix `citadel` for name `fancy_item`, expected `minecraft`. This could be a intended override, but in most cases indicates a broken mod. [18Feb2025 16:23:49.244] [main/INFO] [Puzzles Lib/]: Registering element tradingpost:trading_post [18Feb2025 16:23:49.302] [main/INFO] [Puzzles Lib/]: Registering element visualworkbench:visual_workbench [18Feb2025 16:23:49.534] [main/INFO] [paintings/]: loading json file and contents for paintings. [18Feb2025 16:23:49.538] [main/INFO] [paintings/]: Loaded json painting abstract_blue , 16 x 16 [18Feb2025 16:23:49.539] [main/INFO] [paintings/]: Loaded json painting abstract_rainbow , 16 x 16 [18Feb2025 16:23:49.539] [main/INFO] [paintings/]: Loaded json painting abstract_red , 16 x 16 [18Feb2025 16:23:49.539] [main/INFO] [paintings/]: Loaded json painting abstract_sunset , 16 x 16 [18Feb2025 16:23:49.539] [main/INFO] [paintings/]: Loaded json painting arachnophobe , 32 x 16 [18Feb2025 16:23:49.540] [main/INFO] [paintings/]: Loaded json painting barn_owl , 32 x 16 [18Feb2025 16:23:49.540] [main/INFO] [paintings/]: Loaded json painting big_z , 16 x 16 [18Feb2025 16:23:49.540] [main/INFO] [paintings/]: Loaded json painting blue_bird , 32 x 16 [18Feb2025 16:23:49.540] [main/INFO] [paintings/]: Loaded json painting bluesclues , 32 x 16 [18Feb2025 16:23:49.540] [main/INFO] [paintings/]: Loaded json painting borgia , 16 x 32 [18Feb2025 16:23:49.540] [main/INFO] [paintings/]: Loaded json painting cane , 16 x 32 [18Feb2025 16:23:49.540] [main/INFO] [paintings/]: Loaded json painting cat_black , 16 x 16 [18Feb2025 16:23:49.540] [main/INFO] [paintings/]: Loaded json painting cat_gray , 16 x 16 [18Feb2025 16:23:49.540] [main/INFO] [paintings/]: Loaded json painting cat_orange , 16 x 16 [18Feb2025 16:23:49.540] [main/INFO] [paintings/]: Loaded json painting cat , 32 x 16 [18Feb2025 16:23:49.540] [main/INFO] [paintings/]: Loaded json painting colorful_squares , 32 x 16 [18Feb2025 16:23:49.541] [main/INFO] [paintings/]: Loaded json painting crest , 32 x 16 [18Feb2025 16:23:49.541] [main/INFO] [paintings/]: Loaded json painting danger_zone , 32 x 32 [18Feb2025 16:23:49.541] [main/INFO] [paintings/]: Loaded json painting decorative_gun , 32 x 16 [18Feb2025 16:23:49.541] [main/INFO] [paintings/]: Loaded json painting exit_down , 32 x 16 [18Feb2025 16:23:49.541] [main/INFO] [paintings/]: Loaded json painting exit_up , 32 x 16 [18Feb2025 16:23:49.541] [main/INFO] [paintings/]: Loaded json painting exit_left , 32 x 16 [18Feb2025 16:23:49.543] [main/INFO] [paintings/]: Loaded json painting exit_right , 32 x 16 [18Feb2025 16:23:49.543] [main/INFO] [paintings/]: Loaded json painting face_bat , 16 x 16 [18Feb2025 16:23:49.543] [main/INFO] [paintings/]: Loaded json painting face_chicken , 16 x 16 [18Feb2025 16:23:49.543] [main/INFO] [paintings/]: Loaded json painting face_cow , 16 x 16 [18Feb2025 16:23:49.543] [main/INFO] [paintings/]: Loaded json painting face_creeper , 16 x 16 [18Feb2025 16:23:49.543] [main/INFO] [paintings/]: Loaded json painting face_dog , 16 x 16 [18Feb2025 16:23:49.543] [main/INFO] [paintings/]: Loaded json painting face_enderman , 16 x 16 [18Feb2025 16:23:49.544] [main/INFO] [paintings/]: Loaded json painting face_pig , 16 x 16 [18Feb2025 16:23:49.544] [main/INFO] [paintings/]: Loaded json painting face_pigman , 16 x 16 [18Feb2025 16:23:49.544] [main/INFO] [paintings/]: Loaded json painting face_silverfish , 16 x 16 [18Feb2025 16:23:49.544] [main/INFO] [paintings/]: Loaded json painting face_skeleton , 16 x 16 [18Feb2025 16:23:49.544] [main/INFO] [paintings/]: Loaded json painting face_squid , 16 x 16 [18Feb2025 16:23:49.544] [main/INFO] [paintings/]: Loaded json painting face_zombie , 16 x 16 [18Feb2025 16:23:49.544] [main/INFO] [paintings/]: Loaded json painting fishes , 32 x 16 [18Feb2025 16:23:49.544] [main/INFO] [paintings/]: Loaded json painting flowers , 32 x 16 [18Feb2025 16:23:49.544] [main/INFO] [paintings/]: Loaded json painting fruits , 32 x 16 [18Feb2025 16:23:49.545] [main/INFO] [paintings/]: Loaded json painting ghost , 16 x 32 [18Feb2025 16:23:49.545] [main/INFO] [paintings/]: Loaded json painting glowlamp , 32 x 32 [18Feb2025 16:23:49.545] [main/INFO] [paintings/]: Loaded json painting glowstone_hourglass , 16 x 32 [18Feb2025 16:23:49.545] [main/INFO] [paintings/]: Loaded json painting iluvmc , 32 x 16 [18Feb2025 16:23:49.545] [main/INFO] [paintings/]: Loaded json painting link , 32 x 16 [18Feb2025 16:23:49.545] [main/INFO] [paintings/]: Loaded json painting mine_prosperity , 32 x 16 [18Feb2025 16:23:49.546] [main/INFO] [paintings/]: Loaded json painting no_trespassing_for_mobs , 32 x 16 [18Feb2025 16:23:49.546] [main/INFO] [paintings/]: Loaded json painting ocelot , 16 x 16 [18Feb2025 16:23:49.546] [main/INFO] [paintings/]: Loaded json painting penguin , 32 x 16 [18Feb2025 16:23:49.546] [main/INFO] [paintings/]: Loaded json painting pig_on_a_cliff , 32 x 32 [18Feb2025 16:23:49.546] [main/INFO] [paintings/]: Loaded json painting pkmn_blue , 32 x 16 [18Feb2025 16:23:49.546] [main/INFO] [paintings/]: Loaded json painting pkmn_red , 32 x 16 [18Feb2025 16:23:49.547] [main/INFO] [paintings/]: Loaded json painting pkmn_green , 32 x 16 [18Feb2025 16:23:49.547] [main/INFO] [paintings/]: Loaded json painting plains_hut , 32 x 16 [18Feb2025 16:23:49.547] [main/INFO] [paintings/]: Loaded json painting portrait_2 , 16 x 16 [18Feb2025 16:23:49.547] [main/INFO] [paintings/]: Loaded json painting portrait , 32 x 32 [18Feb2025 16:23:49.547] [main/INFO] [paintings/]: Loaded json painting prison , 16 x 32 [18Feb2025 16:23:49.547] [main/INFO] [paintings/]: Loaded json painting prosperity , 16 x 32 [18Feb2025 16:23:49.547] [main/INFO] [paintings/]: Loaded json painting rest , 32 x 16 [18Feb2025 16:23:49.547] [main/INFO] [paintings/]: Loaded json painting skeleton , 16 x 32 [18Feb2025 16:23:49.548] [main/INFO] [paintings/]: Loaded json painting sky , 32 x 32 [18Feb2025 16:23:49.548] [main/INFO] [paintings/]: Loaded json painting skyblock , 32 x 32 [18Feb2025 16:23:49.548] [main/INFO] [paintings/]: Loaded json painting snake , 16 x 32 [18Feb2025 16:23:49.548] [main/INFO] [paintings/]: Loaded json painting snow_landscape , 32 x 16 [18Feb2025 16:23:49.548] [main/INFO] [paintings/]: Loaded json painting subaraki , 32 x 16 [18Feb2025 16:23:49.548] [main/INFO] [paintings/]: Loaded json painting synth_city , 16 x 16 [18Feb2025 16:23:49.549] [main/INFO] [paintings/]: Loaded json painting tapistry_a , 32 x 16 [18Feb2025 16:23:49.549] [main/INFO] [paintings/]: Loaded json painting tapistry_b , 16 x 32 [18Feb2025 16:23:49.549] [main/INFO] [paintings/]: Loaded json painting tapistry_purple , 16 x 32 [18Feb2025 16:23:49.549] [main/INFO] [paintings/]: Loaded json painting torched , 32 x 16 [18Feb2025 16:23:49.549] [main/INFO] [paintings/]: Loaded json painting waterfall , 32 x 16 [18Feb2025 16:23:49.549] [main/INFO] [paintings/]: Loaded json painting whale , 32 x 16 [18Feb2025 16:23:49.550] [main/INFO] [paintings/]: Loaded json painting wheat_field , 32 x 16 [18Feb2025 16:23:49.550] [main/INFO] [paintings/]: Loaded json painting wolf_in_wheat , 32 x 16 [18Feb2025 16:23:49.600] [main/INFO] [Puzzles Lib/]: Registering element diagonalfences:diagonal_fences [18Feb2025 16:23:49.654] [modloading-worker-18/INFO] [dynamiclightsreforged/]: [LambDynLights] Initializing Dynamic Lights Reforged... [18Feb2025 16:23:49.654] [modloading-worker-19/INFO] [strawgolem/]: Initializing strawgolem [18Feb2025 16:23:49.864] [modloading-worker-19/INFO] [chocolate/]: Vanilla is real good, but chocolate is better, let's be honest. [18Feb2025 16:23:50.208] [modloading-worker-15/INFO] [Puzzles Lib/]: Setting up mod tradingpost with elements tradingpost:trading_post [18Feb2025 16:23:50.270] [modloading-worker-2/INFO] [Kiwi/Init]: Processing 5 KiwiModule annotations [18Feb2025 16:23:50.278] [modloading-worker-15/INFO] [Puzzles Lib/]: Loading config type common for mod tradingpost... [18Feb2025 16:23:50.355] [modloading-worker-27/INFO] [Puzzles Lib/]: Setting up mod visualworkbench with elements visualworkbench:visual_workbench [18Feb2025 16:23:51.124] [modloading-worker-1/WARN] [mixin/]: Method overwrite conflict for func_219183_a in kryptonreforged.mixins.json:network.shared.flushconsolidation.ThreadedAnvilChunkStorageMixin, previously written by me.jellysquid.mods.lithium.mixin.world.player_chunk_tick.ThreadedAnvilChunkStorageMixin. Skipping method. [18Feb2025 16:23:51.127] [modloading-worker-1/WARN] [mixin/]: Method overwrite conflict for sendChunks in kryptonreforged.mixins.json:network.shared.flushconsolidation.ThreadedAnvilChunkStorageMixin, previously written by me.jellysquid.mods.lithium.mixin.world.player_chunk_tick.ThreadedAnvilChunkStorageMixin. Skipping method. [18Feb2025 16:23:51.165] [modloading-worker-15/INFO] [net.minecraftforge.common.ForgeMod/FORGEMOD]: Forge mod loading, version 36.2.42, for MC 1.16.5 with MCP 20210115.111550 [18Feb2025 16:23:51.168] [modloading-worker-15/INFO] [net.minecraftforge.common.MinecraftForge/FORGE]: MinecraftForge v36.2.42 Initialized [18Feb2025 16:23:51.383] [modloading-worker-20/INFO] [Puzzles Lib/]: Setting up mod diagonalfences with elements diagonalfences:diagonal_fences [18Feb2025 16:23:51.805] [modloading-worker-18/INFO] [twilightforest/]: Skipped compatibility for mod immersiveengineering. [18Feb2025 16:23:52.645] [modloading-worker-25/INFO] [ejektaflex.bountiful.BountifulMod/]: Loading Bountiful listeners.. [18Feb2025 16:23:52.673] [modloading-worker-25/INFO] [STDOUT/]: [ejektaflex.bountiful.data.json.JsonSerializers:register:14]: BOREG registering json ser [18Feb2025 16:23:53.451] [main/INFO] [Kiwi/Init]: Module [kiwi:contributors] initialized [18Feb2025 16:23:53.456] [main/INFO] [Kiwi/Init]: Module [snowrealmagic:core] initialized [18Feb2025 16:23:53.458] [main/INFO] [Kiwi/Init]: block: 8 [18Feb2025 16:23:53.458] [main/INFO] [Kiwi/Init]: item: 1 [18Feb2025 16:23:53.458] [main/INFO] [Kiwi/Init]: block_entity_type: 2 [18Feb2025 16:23:53.458] [main/INFO] [Kiwi/Init]: entity_type: 1 [18Feb2025 16:23:53.460] [main/INFO] [Kiwi/Init]: Module [snowrealmagic:world] initialized [18Feb2025 16:23:53.460] [main/INFO] [Kiwi/Init]: worldgen/feature: 1 [18Feb2025 16:23:53.461] [main/INFO] [Kiwi/Init]: Module [kiwi:data] initialized [18Feb2025 16:23:53.461] [main/INFO] [Kiwi/Init]: recipe_serializer: 3 [18Feb2025 16:23:54.336] [main/INFO] [net.minecraftforge.registries.GameData/]: Potentially Dangerous alternative prefix `minecraft` for name `snow`, expected `snowrealmagic`. This could be a intended override, but in most cases indicates a broken mod. [18Feb2025 16:23:54.548] [main/FATAL] [net.minecraftforge.fml.loading.RuntimeDistCleaner/DISTXFORM]: Attempted to load class net/minecraft/client/particle/ParticleManager for invalid dist DEDICATED_SERVER [18Feb2025 16:23:54.549] [main/FATAL] [net.minecraftforge.fml.loading.RuntimeDistCleaner/DISTXFORM]: Attempted to load class net/minecraft/client/particle/ParticleManager for invalid dist DEDICATED_SERVER [18Feb2025 16:23:54.592] [main/INFO] [net.ncpbails.culturaldelights.CulturalDelights/]: HELLO from Register Block [18Feb2025 16:23:54.800] [main/INFO] [club.iananderson.seasonhud.SeasonHUD/]: HELLO from Register Block [18Feb2025 16:23:55.037] [main/INFO] [corgiaoc.byg.BYG/]: BYG: Blocks registered! [18Feb2025 16:23:56.356] [main/INFO] [net.minecraftforge.registries.GameData/]: Potentially Dangerous alternative prefix `minecraft` for name `shulker_shell`, expected `supplementaries`. This could be a intended override, but in most cases indicates a broken mod. [18Feb2025 16:23:56.650] [main/INFO] [patchouli/]: Loaded book jsons on Thread[main,5,main] in 246 ms [18Feb2025 16:23:56.713] [main/INFO] [net.minecraftforge.registries.GameData/]: Potentially Dangerous alternative prefix `minecraft` for name `snow`, expected `snowrealmagic`. This could be a intended override, but in most cases indicates a broken mod. [18Feb2025 16:23:56.846] [main/INFO] [corgiaoc.byg.BYG/]: BYG: Items registered! [18Feb2025 16:23:56.865] [main/INFO] [Bookshelf/]: Registered 11 GlobalLootModifierSerializer entries in 0,25ms. [18Feb2025 16:23:56.947] [main/INFO] [corgiaoc.byg.BYG/]: BYG: Block Entities registered! [18Feb2025 16:23:56.993] [main/WARN] [net.minecraftforge.common.ForgeHooks/]: Called deprecated GlobalEntityTypeAttributes#put for strawgolem:strawgolem, use EntityAttributeCreationEvent instead. [18Feb2025 16:23:57.116] [main/WARN] [net.minecraftforge.common.ForgeHooks/]: Called deprecated GlobalEntityTypeAttributes#put for conjurer_illager:conjurer, use EntityAttributeCreationEvent instead. [18Feb2025 16:23:57.140] [main/WARN] [net.minecraftforge.common.ForgeHooks/]: Called deprecated GlobalEntityTypeAttributes#put for null, use EntityAttributeCreationEvent instead. [18Feb2025 16:23:57.142] [main/INFO] [corgiaoc.byg.BYG/]: BYG: Entities registered! [18Feb2025 16:23:57.175] [main/INFO] [corgiaoc.byg.BYG/]: BYG: Block Entities registered! [18Feb2025 16:23:57.195] [main/INFO] [paintings/]: registered painting net.minecraft.entity.item.PaintingType@59ec52c3 [18Feb2025 16:23:57.196] [main/INFO] [paintings/]: registered painting net.minecraft.entity.item.PaintingType@7d0f1f6e [18Feb2025 16:23:57.196] [main/INFO] [paintings/]: registered painting net.minecraft.entity.item.PaintingType@6e2e9c1a [18Feb2025 16:23:57.196] [main/INFO] [paintings/]: registered painting net.minecraft.entity.item.PaintingType@681419e6 [18Feb2025 16:23:57.196] [main/INFO] [paintings/]: registered painting net.minecraft.entity.item.PaintingType@1fdfcfd5 [18Feb2025 16:23:57.196] [main/INFO] [paintings/]: registered painting net.minecraft.entity.item.PaintingType@177ddcd0 [18Feb2025 16:23:57.197] [main/INFO] [paintings/]: registered painting net.minecraft.entity.item.PaintingType@1b19c600 [18Feb2025 16:23:57.197] [main/INFO] [paintings/]: registered painting net.minecraft.entity.item.PaintingType@3cb007a0 [18Feb2025 16:23:57.197] [main/INFO] [paintings/]: registered painting net.minecraft.entity.item.PaintingType@4b24371d [18Feb2025 16:23:57.198] [main/INFO] [paintings/]: registered painting net.minecraft.entity.item.PaintingType@7d94555e [18Feb2025 16:23:57.198] [main/INFO] [paintings/]: registered painting net.minecraft.entity.item.PaintingType@772c9624 [18Feb2025 16:23:57.198] [main/INFO] [paintings/]: registered painting net.minecraft.entity.item.PaintingType@3d9a14fc [18Feb2025 16:23:57.198] [main/INFO] [paintings/]: registered painting net.minecraft.entity.item.PaintingType@4f6391b6 [18Feb2025 16:23:57.198] [main/INFO] [paintings/]: registered painting net.minecraft.entity.item.PaintingType@46529f48 [18Feb2025 16:23:57.198] [main/INFO] [paintings/]: registered painting net.minecraft.entity.item.PaintingType@76e36e10 [18Feb2025 16:23:57.198] [main/INFO] [paintings/]: registered painting net.minecraft.entity.item.PaintingType@17fa4087 [18Feb2025 16:23:57.198] [main/INFO] [paintings/]: registered painting net.minecraft.entity.item.PaintingType@1376c212 [18Feb2025 16:23:57.198] [main/INFO] [paintings/]: registered painting net.minecraft.entity.item.PaintingType@450f5f60 [18Feb2025 16:23:57.199] [main/INFO] [paintings/]: registered painting net.minecraft.entity.item.PaintingType@20c55024 [18Feb2025 16:23:57.199] [main/INFO] [paintings/]: registered painting net.minecraft.entity.item.PaintingType@e046f36 [18Feb2025 16:23:57.199] [main/INFO] [paintings/]: registered painting net.minecraft.entity.item.PaintingType@1e4334ca [18Feb2025 16:23:57.199] [main/INFO] [paintings/]: registered painting net.minecraft.entity.item.PaintingType@2f1af3b6 [18Feb2025 16:23:57.199] [main/INFO] [paintings/]: registered painting net.minecraft.entity.item.PaintingType@30b52400 [18Feb2025 16:23:57.199] [main/INFO] [paintings/]: registered painting net.minecraft.entity.item.PaintingType@7c4cf513 [18Feb2025 16:23:57.199] [main/INFO] [paintings/]: registered painting net.minecraft.entity.item.PaintingType@6d6ee716 [18Feb2025 16:23:57.199] [main/INFO] [paintings/]: registered painting net.minecraft.entity.item.PaintingType@7d05c7b8 [18Feb2025 16:23:57.199] [main/INFO] [paintings/]: registered painting net.minecraft.entity.item.PaintingType@5143fab0 [18Feb2025 16:23:57.200] [main/INFO] [paintings/]: registered painting net.minecraft.entity.item.PaintingType@69721b95 [18Feb2025 16:23:57.200] [main/INFO] [paintings/]: registered painting net.minecraft.entity.item.PaintingType@5ee9b214 [18Feb2025 16:23:57.200] [main/INFO] [paintings/]: registered painting net.minecraft.entity.item.PaintingType@4ad734d1 [18Feb2025 16:23:57.200] [main/INFO] [paintings/]: registered painting net.minecraft.entity.item.PaintingType@6173059f [18Feb2025 16:23:57.200] [main/INFO] [paintings/]: registered painting net.minecraft.entity.item.PaintingType@1ec68741 [18Feb2025 16:23:57.200] [main/INFO] [paintings/]: registered painting net.minecraft.entity.item.PaintingType@597fdc2 [18Feb2025 16:23:57.200] [main/INFO] [paintings/]: registered painting net.minecraft.entity.item.PaintingType@6cb17e33 [18Feb2025 16:23:57.200] [main/INFO] [paintings/]: registered painting net.minecraft.entity.item.PaintingType@3dcf61d1 [18Feb2025 16:23:57.200] [main/INFO] [paintings/]: registered painting net.minecraft.entity.item.PaintingType@47e27f22 [18Feb2025 16:23:57.201] [main/INFO] [paintings/]: registered painting net.minecraft.entity.item.PaintingType@3f47b27a [18Feb2025 16:23:57.201] [main/INFO] [paintings/]: registered painting net.minecraft.entity.item.PaintingType@7dc2058d [18Feb2025 16:23:57.201] [main/INFO] [paintings/]: registered painting net.minecraft.entity.item.PaintingType@5bc677d8 [18Feb2025 16:23:57.201] [main/INFO] [paintings/]: registered painting net.minecraft.entity.item.PaintingType@461e5f81 [18Feb2025 16:23:57.201] [main/INFO] [paintings/]: registered painting net.minecraft.entity.item.PaintingType@93fb207 [18Feb2025 16:23:57.201] [main/INFO] [paintings/]: registered painting net.minecraft.entity.item.PaintingType@124bb5ef [18Feb2025 16:23:57.201] [main/INFO] [paintings/]: registered painting net.minecraft.entity.item.PaintingType@1535f246 [18Feb2025 16:23:57.201] [main/INFO] [paintings/]: registered painting net.minecraft.entity.item.PaintingType@703b3ef8 [18Feb2025 16:23:57.202] [main/INFO] [paintings/]: registered painting net.minecraft.entity.item.PaintingType@32b86686 [18Feb2025 16:23:57.202] [main/INFO] [paintings/]: registered painting net.minecraft.entity.item.PaintingType@536bcb7e [18Feb2025 16:23:57.202] [main/INFO] [paintings/]: registered painting net.minecraft.entity.item.PaintingType@762b1792 [18Feb2025 16:23:57.202] [main/INFO] [paintings/]: registered painting net.minecraft.entity.item.PaintingType@5ba74cfb [18Feb2025 16:23:57.202] [main/INFO] [paintings/]: registered painting net.minecraft.entity.item.PaintingType@31256585 [18Feb2025 16:23:57.202] [main/INFO] [paintings/]: registered painting net.minecraft.entity.item.PaintingType@733bb98b [18Feb2025 16:23:57.202] [main/INFO] [paintings/]: registered painting net.minecraft.entity.item.PaintingType@47db6757 [18Feb2025 16:23:57.202] [main/INFO] [paintings/]: registered painting net.minecraft.entity.item.PaintingType@47e23229 [18Feb2025 16:23:57.203] [main/INFO] [paintings/]: registered painting net.minecraft.entity.item.PaintingType@aafbd0b [18Feb2025 16:23:57.203] [main/INFO] [paintings/]: registered painting net.minecraft.entity.item.PaintingType@16811e7c [18Feb2025 16:23:57.203] [main/INFO] [paintings/]: registered painting net.minecraft.entity.item.PaintingType@302f3a0d [18Feb2025 16:23:57.203] [main/INFO] [paintings/]: registered painting net.minecraft.entity.item.PaintingType@7c25daaa [18Feb2025 16:23:57.203] [main/INFO] [paintings/]: registered painting net.minecraft.entity.item.PaintingType@26eed8f3 [18Feb2025 16:23:57.203] [main/INFO] [paintings/]: registered painting net.minecraft.entity.item.PaintingType@662428f8 [18Feb2025 16:23:57.203] [main/INFO] [paintings/]: registered painting net.minecraft.entity.item.PaintingType@6d88af54 [18Feb2025 16:23:57.203] [main/INFO] [paintings/]: registered painting net.minecraft.entity.item.PaintingType@56dd9b5f [18Feb2025 16:23:57.203] [main/INFO] [paintings/]: registered painting net.minecraft.entity.item.PaintingType@4a51fe3c [18Feb2025 16:23:57.203] [main/INFO] [paintings/]: registered painting net.minecraft.entity.item.PaintingType@7ca59307 [18Feb2025 16:23:57.203] [main/INFO] [paintings/]: registered painting net.minecraft.entity.item.PaintingType@5f5895a0 [18Feb2025 16:23:57.203] [main/INFO] [paintings/]: registered painting net.minecraft.entity.item.PaintingType@ac7d2e1 [18Feb2025 16:23:57.203] [main/INFO] [paintings/]: registered painting net.minecraft.entity.item.PaintingType@4664bb8d [18Feb2025 16:23:57.203] [main/INFO] [paintings/]: registered painting net.minecraft.entity.item.PaintingType@7f5f2045 [18Feb2025 16:23:57.205] [main/INFO] [paintings/]: registered painting net.minecraft.entity.item.PaintingType@b3a7308 [18Feb2025 16:23:57.205] [main/INFO] [paintings/]: registered painting net.minecraft.entity.item.PaintingType@3fe3a9cb [18Feb2025 16:23:57.205] [main/INFO] [paintings/]: registered painting net.minecraft.entity.item.PaintingType@32653039 [18Feb2025 16:23:57.205] [main/INFO] [paintings/]: registered painting net.minecraft.entity.item.PaintingType@734a6fa3 [18Feb2025 16:23:57.205] [main/INFO] [paintings/]: registered painting net.minecraft.entity.item.PaintingType@3f4f9476 [18Feb2025 16:23:57.205] [main/INFO] [paintings/]: registered painting net.minecraft.entity.item.PaintingType@107f58c [18Feb2025 16:23:57.235] [main/INFO] [Bookshelf/]: Registered 22 ingredient serializers. [18Feb2025 16:23:57.235] [main/INFO] [Bookshelf/]: Registered 5 IRecipeSerializer entries in 0,08ms. [18Feb2025 16:23:57.277] [main/INFO] [corgiaoc.byg.BYG/]: BYG: Sounds registered! [18Feb2025 16:23:57.428] [main/WARN] [net.minecraftforge.registries.ForgeRegistry/REGISTRIES]: Registry minecraft:worldgen/biome: The object minecraft:the_end has been registered twice for the same name minecraft:the_end. [18Feb2025 16:23:57.428] [main/WARN] [net.minecraftforge.registries.ForgeRegistry/REGISTRIES]: Registry minecraft:worldgen/biome: The object minecraft:end_barrens has been registered twice for the same name minecraft:end_barrens. [18Feb2025 16:23:57.428] [main/WARN] [net.minecraftforge.registries.ForgeRegistry/REGISTRIES]: Registry minecraft:worldgen/biome: The object minecraft:small_end_islands has been registered twice for the same name minecraft:small_end_islands. [18Feb2025 16:23:57.429] [main/WARN] [net.minecraftforge.registries.ForgeRegistry/REGISTRIES]: Registry minecraft:worldgen/biome: The object minecraft:end_midlands has been registered twice for the same name minecraft:end_midlands. [18Feb2025 16:23:57.429] [main/WARN] [net.minecraftforge.registries.ForgeRegistry/REGISTRIES]: Registry minecraft:worldgen/biome: The object minecraft:end_highlands has been registered twice for the same name minecraft:end_highlands. [18Feb2025 16:23:58.041] [main/INFO] [corgiaoc.byg.BYG/]: BYG: Biomes registered! [18Feb2025 16:23:58.045] [main/INFO] [corgiaoc.byg.BYG/]: BYG: Registering block placer types! [18Feb2025 16:23:58.059] [main/INFO] [corgiaoc.byg.BYG/]: BYG: Decorators registered! [18Feb2025 16:23:58.153] [main/INFO] [net.minecraftforge.registries.GameData/]: Potentially Dangerous alternative prefix `minecraft` for name `freeze_top_layer`, expected `snowrealmagic`. This could be a intended override, but in most cases indicates a broken mod. [18Feb2025 16:23:58.184] [main/INFO] [corgiaoc.byg.BYG/]: BYG: Features registered! [18Feb2025 16:23:58.334] [main/INFO] [corgiaoc.byg.BYG/]: BYG: Structures registered! [18Feb2025 16:23:58.339] [main/INFO] [corgiaoc.byg.BYG/]: BYG: Surface builders Registered! [18Feb2025 16:23:58.360] [main/INFO] [ModdingLegacy/structure_gel/Compat/]: Checking for biome dictionary registry methods in other mods. [18Feb2025 16:23:58.556] [main/INFO] [com._idrae.travelers_index.TravelersIndex/]: Config set [18Feb2025 16:23:58.565] [main/INFO] [Void Totem/]: Loaded voidtotem-common.toml config file from voidtotem [18Feb2025 16:23:58.580] [main/WARN] [net.minecraftforge.common.ForgeConfigSpec/CORE]: Configuration file C:\Gaming-Programme\MC-Server\Server mit Matteo und Oskar\MO Server\MO Server\config\copperpot-common.toml is not correct. Correcting [18Feb2025 16:23:58.581] [main/WARN] [net.minecraftforge.common.ForgeConfigSpec/CORE]: Incorrect key mooncakeBadReactDims was corrected from [minecraft:the_nether, minecraft:the_end] to its default, [minecraft:the_nether, minecraft:the_end]. [18Feb2025 16:23:58.582] [main/WARN] [net.minecraftforge.common.ForgeConfigSpec/CORE]: Incorrect key autumnalExtensionFx was corrected from [effect.minecraft.resistance, effect.farmersdelight.nourished, effect.minecraft.absorption, effect.atmospheric.persistence] to its default, [effect.minecraft.resistance, effect.farmersdelight.nourished, effect.minecraft.absorption, effect.atmospheric.persistence]. [18Feb2025 16:23:58.582] [main/WARN] [net.minecraftforge.common.ForgeConfigSpec/CORE]: Incorrect key aestivalExtensionFx was corrected from [effect.minecraft.night_vision, effect.atmospheric.relief, effect.minecraft.water_breathing, effect.minecraft.strength] to its default, [effect.minecraft.night_vision, effect.atmospheric.relief, effect.minecraft.water_breathing, effect.minecraft.strength]. [18Feb2025 16:23:58.583] [main/WARN] [net.minecraftforge.common.ForgeConfigSpec/CORE]: Incorrect key brumalExtensionFx was corrected from [effect.farmersdelight.comfort, effect.minecraft.invisibility, effect.minecraft.fire_resistance, effect.minecraft.slow_falling] to its default, [effect.farmersdelight.comfort, effect.minecraft.invisibility, effect.minecraft.fire_resistance, effect.minecraft.slow_falling]. [18Feb2025 16:23:58.583] [main/WARN] [net.minecraftforge.common.ForgeConfigSpec/CORE]: Incorrect key vernalExtensionFx was corrected from [effect.minecraft.regeneration, effect.minecraft.jump_boost, effect.minecraft.haste, effect.upgrade_aquatic.vibing] to its default, [effect.minecraft.regeneration, effect.minecraft.jump_boost, effect.minecraft.haste, effect.upgrade_aquatic.vibing]. [18Feb2025 16:23:58.651] [main/INFO] [quark/]: Loading Module Chain Linkage [18Feb2025 16:23:58.652] [main/INFO] [quark/]: Loading Module Chains Connect Blocks [18Feb2025 16:23:58.653] [main/INFO] [quark/]: Loading Module Chute [18Feb2025 16:23:58.653] [main/INFO] [quark/]: Loading Module Color Slime [18Feb2025 16:23:58.653] [main/INFO] [quark/]: Loading Module Dispensers Place Blocks [18Feb2025 16:23:58.653] [main/INFO] [quark/]: Loading Module Ender Watcher [18Feb2025 16:23:58.653] [main/INFO] [quark/]: Loading Module Endermites Form Shulkers [18Feb2025 16:23:58.655] [main/INFO] [quark/]: Loading Module Feeding Trough [18Feb2025 16:23:58.656] [main/INFO] [quark/]: Loading Module Gravisand [18Feb2025 16:23:58.656] [main/INFO] [quark/]: Loading Module Iron Rod [18Feb2025 16:23:58.656] [main/INFO] [quark/]: Loading Module Jukebox Automation [18Feb2025 16:23:58.657] [main/INFO] [quark/]: Loading Module Metal Buttons [18Feb2025 16:23:58.657] [main/INFO] [quark/]: Loading Module Obsidian Plate [18Feb2025 16:23:58.658] [main/INFO] [quark/]: Loading Module Pistons Move Tile Entities [18Feb2025 16:23:58.658] [main/INFO] [quark/]: Loading Module Redstone Circuit [18Feb2025 16:23:58.659] [main/INFO] [quark/]: Loading Module Weather Sensor [18Feb2025 16:23:58.659] [main/INFO] [quark/]: Loading Module Bamboo Mat [18Feb2025 16:23:58.659] [main/INFO] [quark/]: Loading Module Burn Vines [18Feb2025 16:23:58.659] [main/INFO] [quark/]: Loading Module Celebratory Lamps [18Feb2025 16:23:58.659] [main/INFO] [quark/]: Loading Module Cobblestone Bricks [18Feb2025 16:23:58.659] [main/INFO] [quark/]: Loading Module Compressed Blocks [18Feb2025 16:23:58.659] [main/INFO] [quark/]: Loading Module Duskbound Blocks [18Feb2025 16:23:58.660] [main/INFO] [quark/]: Loading Module Framed Glass [18Feb2025 16:23:58.660] [main/INFO] [quark/]: Loading Module Gold Bars [18Feb2025 16:23:58.660] [main/INFO] [quark/]: Loading Module Grate [18Feb2025 16:23:58.660] [main/INFO] [quark/]: Loading Module Hedges [18Feb2025 16:23:58.660] [main/INFO] [quark/]: Loading Module Iron Plates [18Feb2025 16:23:58.660] [main/INFO] [quark/]: Loading Module Item Frames [18Feb2025 16:23:58.660] [main/INFO] [quark/]: Loading Module Leaf Carpet [18Feb2025 16:23:58.660] [main/INFO] [quark/]: Loading Module Lit Lamp [18Feb2025 16:23:58.660] [main/INFO] [quark/]: Loading Module Midori [18Feb2025 16:23:58.660] [main/INFO] [quark/]: Loading Module More Brick Types [18Feb2025 16:23:58.661] [main/INFO] [quark/]: Loading Module More Potted Plants [18Feb2025 16:23:58.661] [main/INFO] [quark/]: Loading Module More Stone Variants [18Feb2025 16:23:58.661] [main/INFO] [quark/]: Loading Module Nether Brick Fence Gate [18Feb2025 16:23:58.661] [main/INFO] [quark/]: Loading Module Paper Decor [18Feb2025 16:23:58.661] [main/INFO] [quark/]: Loading Module Quilted Wool [18Feb2025 16:23:58.661] [main/INFO] [quark/]: Loading Module Rope [18Feb2025 16:23:58.661] [main/INFO] [quark/]: Loading Module Shallow Dirt [18Feb2025 16:23:58.661] [main/INFO] [quark/]: Loading Module Shingles [18Feb2025 16:23:58.662] [main/INFO] [quark/]: Loading Module Soul Sandstone [18Feb2025 16:23:58.662] [main/INFO] [quark/]: Loading Module Stained Planks [18Feb2025 16:23:58.662] [main/INFO] [quark/]: Loading Module Stools [18Feb2025 16:23:58.662] [main/INFO] [quark/]: Loading Module Sturdy Stone [18Feb2025 16:23:58.663] [main/INFO] [quark/]: Loading Module Tallow And Candles [18Feb2025 16:23:58.663] [main/INFO] [quark/]: Loading Module Thatch [18Feb2025 16:23:58.663] [main/INFO] [quark/]: Loading Module Tie Leads To Fences [18Feb2025 16:23:58.664] [main/INFO] [quark/]: Loading Module Turf [18Feb2025 16:23:58.664] [main/INFO] [quark/]: Loading Module Variant Bookshelves [18Feb2025 16:23:58.664] [main/INFO] [quark/]: Loading Module Variant Chests [18Feb2025 16:23:58.665] [main/INFO] [quark/]: Loading Module Variant Ladders [18Feb2025 16:23:58.665] [main/INFO] [quark/]: Loading Module Vertical Planks [18Feb2025 16:23:58.665] [main/INFO] [quark/]: Loading Module Vertical Slabs [18Feb2025 16:23:58.665] [main/INFO] [quark/]: Loading Module Wooden Posts [18Feb2025 16:23:58.665] [main/INFO] [quark/]: Loading Module Chests In Boats [18Feb2025 16:23:58.665] [main/INFO] [quark/]: Loading Module Easy Transfering [18Feb2025 16:23:58.666] [main/INFO] [quark/]: Loading Module Hotbar Changer [18Feb2025 16:23:58.666] [main/INFO] [quark/]: Loading Module Inventory Sorting [18Feb2025 16:23:58.666] [main/INFO] [quark/]: Loading Module Item Sharing [18Feb2025 16:23:58.666] [main/INFO] [quark/]: Loading Module Right Click Armor [18Feb2025 16:23:58.666] [main/INFO] [quark/]: Loading Module Shulker Box Right Click [18Feb2025 16:23:58.667] [main/INFO] [quark/]: Loading Module Endermosh Music Disc [18Feb2025 16:23:58.667] [main/INFO] [quark/]: Loading Module Abacus [18Feb2025 16:23:58.667] [main/INFO] [quark/]: Loading Module Ambient Discs [18Feb2025 16:23:58.668] [main/INFO] [quark/]: Loading Module Ancient Tomes [18Feb2025 16:23:58.668] [main/INFO] [quark/]: Loading Module Bottled Cloud [18Feb2025 16:23:58.669] [main/INFO] [quark/]: Loading Module Camera [18Feb2025 16:23:58.669] [main/INFO] [quark/]: Loading Module Color Runes [18Feb2025 16:23:58.669] [main/INFO] [quark/]: Loading Module Pathfinder Maps [18Feb2025 16:23:58.670] [main/INFO] [quark/]: Loading Module Pickarang [18Feb2025 16:23:58.670] [main/INFO] [quark/]: Loading Module Seed Pouch [18Feb2025 16:23:58.670] [main/INFO] [quark/]: Loading Module Slime In A Bucket [18Feb2025 16:23:58.672] [main/INFO] [quark/]: Loading Module Trowel [18Feb2025 16:23:58.672] [main/INFO] [quark/]: Loading Module Skull Pikes [18Feb2025 16:23:58.672] [main/INFO] [quark/]: Loading Module Armed Armor Stands [18Feb2025 16:23:58.673] [main/INFO] [quark/]: Loading Module Automatic Recipe Unlock [18Feb2025 16:23:58.673] [main/INFO] [quark/]: Loading Module Axe Leaf Harvesting [18Feb2025 16:23:58.673] [main/INFO] [quark/]: Loading Module Better Elytra Rocket [18Feb2025 16:23:58.674] [main/INFO] [quark/]: Loading Module Campfires Boost Elytra [18Feb2025 16:23:58.674] [main/INFO] [quark/]: Loading Module Compasses Work Everywhere [18Feb2025 16:23:58.675] [main/INFO] [quark/]: Loading Module Dirt To Path [18Feb2025 16:23:58.675] [main/INFO] [quark/]: Loading Module Double Door Opening [18Feb2025 16:23:58.675] [main/INFO] [quark/]: Loading Module Dragon Scales [18Feb2025 16:23:58.675] [main/INFO] [quark/]: Loading Module Emotes [18Feb2025 16:23:58.675] [main/INFO] [quark/]: Loading Module Enhanced Ladders [18Feb2025 16:23:58.676] [main/INFO] [quark/]: Loading Module Glass Shard [18Feb2025 16:23:58.676] [main/INFO] [quark/]: Loading Module Hoe Harvesting [18Feb2025 16:23:58.677] [main/INFO] [quark/]: Loading Module Improved Sleeping [18Feb2025 16:23:58.678] [main/INFO] [quark/]: Loading Module Infinity Bucket [18Feb2025 16:23:58.678] [main/INFO] [quark/]: Loading Module Lava Bucket As Trash [18Feb2025 16:23:58.679] [main/INFO] [quark/]: Loading Module Lock Rotation [18Feb2025 16:23:58.679] [main/INFO] [quark/]: Loading Module More Banner Layers [18Feb2025 16:23:58.679] [main/INFO] [quark/]: Loading Module Note Block Mob Sounds [18Feb2025 16:23:58.680] [main/INFO] [quark/]: Loading Module Pat The Dogs [18Feb2025 16:23:58.681] [main/INFO] [quark/]: Loading Module Poison Potato Usage [18Feb2025 16:23:58.682] [main/INFO] [quark/]: Loading Module Reacharound Placing [18Feb2025 16:23:58.682] [main/INFO] [quark/]: Loading Module Replace Scaffolding [18Feb2025 16:23:58.683] [main/INFO] [quark/]: Loading Module Sign Editing [18Feb2025 16:23:58.683] [main/INFO] [quark/]: Loading Module Simple Harvest [18Feb2025 16:23:58.683] [main/INFO] [quark/]: Loading Module Snow Golem Player Heads [18Feb2025 16:23:58.684] [main/INFO] [quark/]: Loading Module Springy Slime [18Feb2025 16:23:58.684] [main/INFO] [quark/]: Loading Module Utility Recipes [18Feb2025 16:23:58.684] [main/INFO] [quark/]: Loading Module Villagers Follow Emeralds [18Feb2025 16:23:58.685] [main/INFO] [quark/]: Loading Module Big Dungeon [18Feb2025 16:23:58.685] [main/INFO] [quark/]: Loading Module Big Stone Clusters [18Feb2025 16:23:58.686] [main/INFO] [quark/]: Loading Module Biotite [18Feb2025 16:23:58.686] [main/INFO] [quark/]: Loading Module Blossom Trees [18Feb2025 16:23:58.686] [main/INFO] [quark/]: Loading Module Cave Roots [18Feb2025 16:23:58.686] [main/INFO] [quark/]: Loading Module Chorus Vegetation [18Feb2025 16:23:58.686] [main/INFO] [quark/]: Loading Module Crevices [18Feb2025 16:23:58.686] [main/INFO] [quark/]: Loading Module Deepslate [18Feb2025 16:23:58.687] [main/INFO] [quark/]: Loading Module Fairy Rings [18Feb2025 16:23:58.687] [main/INFO] [quark/]: Loading Module Mega Caves [18Feb2025 16:23:58.687] [main/INFO] [quark/]: Loading Module Monster Box [18Feb2025 16:23:58.687] [main/INFO] [quark/]: Loading Module Nether Obsidian Spikes [18Feb2025 16:23:58.687] [main/INFO] [quark/]: Loading Module New Stone Types [18Feb2025 16:23:58.688] [main/INFO] [quark/]: Loading Module Realistic World Gen [18Feb2025 16:23:58.688] [main/INFO] [quark/]: Loading Module Speleothems [18Feb2025 16:23:58.688] [main/INFO] [quark/]: Loading Module Spiral Spires [18Feb2025 16:23:58.689] [main/INFO] [quark/]: Loading Module Underground Clay [18Feb2025 16:23:58.689] [main/INFO] [quark/]: Loading Module Brimstone Underground Biome [18Feb2025 16:23:58.689] [main/INFO] [quark/]: Loading Module Cave Crystal Underground Biome [18Feb2025 16:23:58.689] [main/INFO] [quark/]: Loading Module Elder Prismarine Underground Biome [18Feb2025 16:23:58.689] [main/INFO] [quark/]: Loading Module Glowshroom Underground Biome [18Feb2025 16:23:58.689] [main/INFO] [quark/]: Loading Module Lush Underground Biome [18Feb2025 16:23:58.689] [main/INFO] [quark/]: Loading Module Overgrown Underground Biome [18Feb2025 16:23:58.690] [main/INFO] [quark/]: Loading Module Permafrost Underground Biome [18Feb2025 16:23:58.690] [main/INFO] [quark/]: Loading Module Sandstone Underground Biome [18Feb2025 16:23:58.690] [main/INFO] [quark/]: Loading Module Slime Underground Biome [18Feb2025 16:23:58.690] [main/INFO] [quark/]: Loading Module Spider Nest Underground Biome [18Feb2025 16:23:58.690] [main/INFO] [quark/]: Loading Module Crabs [18Feb2025 16:23:58.691] [main/INFO] [quark/]: Loading Module Forgotten [18Feb2025 16:23:58.691] [main/INFO] [quark/]: Loading Module Foxhound [18Feb2025 16:23:58.692] [main/INFO] [quark/]: Loading Module Frogs [18Feb2025 16:23:58.692] [main/INFO] [quark/]: Loading Module Stonelings [18Feb2025 16:23:58.693] [main/INFO] [quark/]: Loading Module Toretoise [18Feb2025 16:23:58.693] [main/INFO] [quark/]: Loading Module Wraith [18Feb2025 16:23:58.693] [main/INFO] [quark/]: Loading Module Auto Walk Keybind [18Feb2025 16:23:58.693] [main/INFO] [quark/]: Loading Module Back Button Keybind [18Feb2025 16:23:58.694] [main/INFO] [quark/]: Loading Module Chest Searching [18Feb2025 16:23:58.694] [main/INFO] [quark/]: Loading Module Greener Grass [18Feb2025 16:23:58.694] [main/INFO] [quark/]: Loading Module Improved Mount Hud [18Feb2025 16:23:58.694] [main/INFO] [quark/]: Loading Module Improved Tooltips [18Feb2025 16:23:58.694] [main/INFO] [quark/]: Loading Module Usage Ticker [18Feb2025 16:23:58.694] [main/INFO] [quark/]: Loading Module Variant Animal Textures [18Feb2025 16:23:58.694] [main/INFO] [quark/]: Loading Module Backpack [18Feb2025 16:23:58.695] [main/INFO] [quark/]: Loading Module Crate [18Feb2025 16:23:58.695] [main/INFO] [quark/]: Loading Module Magnets [18Feb2025 16:23:58.695] [main/INFO] [quark/]: Loading Module Matrix Enchanting [18Feb2025 16:23:58.695] [main/INFO] [quark/]: Loading Module Pipes [18Feb2025 16:23:58.695] [main/INFO] [quark/]: Loading Module Totem Of Holding [18Feb2025 16:23:58.695] [main/INFO] [quark/]: Loading Module Adjustable Chat [18Feb2025 16:23:58.695] [main/INFO] [quark/]: Loading Module Custom Underground Biome [18Feb2025 16:23:58.695] [main/INFO] [quark/]: Loading Module Game Nerfs [18Feb2025 16:23:58.695] [main/INFO] [quark/]: Loading Module Microcrafting Helper [18Feb2025 16:23:58.695] [main/INFO] [quark/]: Loading Module Narrator Readout [18Feb2025 16:23:58.695] [main/INFO] [quark/]: Loading Module Overlay Shader [18Feb2025 16:23:58.695] [main/INFO] [quark/]: Loading Module Pallet [18Feb2025 16:23:58.695] [main/INFO] [quark/]: Loading Module Shiba [18Feb2025 16:23:58.714] [modloading-worker-25/INFO] [com.connectivity.Connectivity/]: Connectivity initialized [18Feb2025 16:23:58.714] [modloading-worker-27/INFO] [strawgolem/]: Strawgolem common setup [18Feb2025 16:23:58.715] [modloading-worker-1/INFO] [Bookshelf/]: Registering 3 command argument types. [18Feb2025 16:23:58.714] [modloading-worker-12/INFO] [com.lootintegrations.LootintegrationsMod/]: lootintegrations mod initialized [18Feb2025 16:23:58.717] [modloading-worker-1/INFO] [Bookshelf/]: Registering 13 loot conditions. [18Feb2025 16:23:58.734] [modloading-worker-30/WARN] [net.minecraftforge.common.ForgeHooks/]: Called deprecated GlobalEntityTypeAttributes#put for villagertools:reinforced_golem, use EntityAttributeCreationEvent instead. [18Feb2025 16:23:58.734] [modloading-worker-30/WARN] [net.minecraftforge.common.ForgeHooks/]: Called deprecated GlobalEntityTypeAttributes#put for villagertools:guard, use EntityAttributeCreationEvent instead. [18Feb2025 16:23:58.740] [modloading-worker-9/WARN] [net.minecraftforge.common.ForgeHooks/]: Called deprecated GlobalEntityTypeAttributes#put for goblintraders:goblin_trader, use EntityAttributeCreationEvent instead. [18Feb2025 16:23:58.740] [modloading-worker-9/WARN] [net.minecraftforge.common.ForgeHooks/]: Called deprecated GlobalEntityTypeAttributes#put for goblintraders:vein_goblin_trader, use EntityAttributeCreationEvent instead. [18Feb2025 16:23:58.745] [modloading-worker-13/INFO] [com.farsight.FarsightMod/]: farsight_view mod initialized [18Feb2025 16:23:58.746] [modloading-worker-8/WARN] [net.minecraftforge.common.ForgeHooks/]: Called deprecated GlobalEntityTypeAttributes#put for frozenup:chilloo, use EntityAttributeCreationEvent instead. [18Feb2025 16:23:58.748] [modloading-worker-27/INFO] [Puzzles Lib/]: Reloading common config for all mods [18Feb2025 16:23:58.750] [modloading-worker-27/INFO] [club.iananderson.seasonhud.SeasonHUD/]: HELLO FROM COMMON SETUP [18Feb2025 16:23:58.751] [modloading-worker-27/INFO] [club.iananderson.seasonhud.SeasonHUD/]: DIRT BLOCK >> minecraft:dirt [18Feb2025 16:23:58.751] [modloading-worker-27/INFO] [club.iananderson.seasonhud.SeasonHUD/]: HELLO FROM PREINIT [18Feb2025 16:23:58.751] [modloading-worker-27/INFO] [club.iananderson.seasonhud.SeasonHUD/]: DIRT BLOCK >> minecraft:dirt [18Feb2025 16:23:58.760] [modloading-worker-23/INFO] [corgiaoc.byg.BYG/]: BYG: "Common Setup" Event Complete! [18Feb2025 16:23:58.763] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [glasscutter] Starting version check at https://mrcrayfish.com/modupdatejson?id=glasscutter [18Feb2025 16:23:58.777] [modloading-worker-27/WARN] [net.minecraftforge.common.ForgeHooks/]: Called deprecated GlobalEntityTypeAttributes#put for quark:frog, use EntityAttributeCreationEvent instead. [18Feb2025 16:23:58.778] [modloading-worker-27/WARN] [net.minecraftforge.common.ForgeHooks/]: Called deprecated GlobalEntityTypeAttributes#put for quark:foxhound, use EntityAttributeCreationEvent instead. [18Feb2025 16:23:58.782] [Blue Skies supporters thread./INFO] [ModdingLegacy/blue_skies/]: Attempting to load the Modding Legacy supporters list from https://moddinglegacy.com/supporters-changelogs/supporters.txt [18Feb2025 16:23:58.784] [modloading-worker-27/WARN] [net.minecraftforge.common.ForgeHooks/]: Called deprecated GlobalEntityTypeAttributes#put for quark:stoneling, use EntityAttributeCreationEvent instead. [18Feb2025 16:23:58.784] [modloading-worker-27/WARN] [net.minecraftforge.common.ForgeHooks/]: Called deprecated GlobalEntityTypeAttributes#put for quark:toretoise, use EntityAttributeCreationEvent instead. [18Feb2025 16:23:58.793] [modloading-worker-26/INFO] [me.steinborn.krypton.mod.shared.KryptonReforged/]: Compression will use Java, encryption will use Java [18Feb2025 16:23:58.801] [modloading-worker-27/WARN] [net.minecraftforge.common.ForgeHooks/]: Called deprecated GlobalEntityTypeAttributes#put for quark:crab, use EntityAttributeCreationEvent instead. [18Feb2025 16:23:58.802] [modloading-worker-27/WARN] [net.minecraftforge.common.ForgeHooks/]: Called deprecated GlobalEntityTypeAttributes#put for quark:shiba, use EntityAttributeCreationEvent instead. [18Feb2025 16:23:58.803] [modloading-worker-27/WARN] [net.minecraftforge.common.ForgeHooks/]: Called deprecated GlobalEntityTypeAttributes#put for quark:wrapped, use EntityAttributeCreationEvent instead. [18Feb2025 16:23:58.807] [modloading-worker-27/WARN] [net.minecraftforge.common.ForgeHooks/]: Called deprecated GlobalEntityTypeAttributes#put for quark:leash_knot_fake, use EntityAttributeCreationEvent instead. [18Feb2025 16:23:58.808] [modloading-worker-27/WARN] [net.minecraftforge.common.ForgeHooks/]: Called deprecated GlobalEntityTypeAttributes#put for quark:forgotten, use EntityAttributeCreationEvent instead. [18Feb2025 16:23:58.808] [modloading-worker-27/WARN] [net.minecraftforge.common.ForgeHooks/]: Called deprecated GlobalEntityTypeAttributes#put for quark:wraith, use EntityAttributeCreationEvent instead. [18Feb2025 16:23:58.814] [main/WARN] [net.minecraftforge.common.ForgeHooks/]: Called deprecated GlobalEntityTypeAttributes#put for whatareyouvotingfor:glare, use EntityAttributeCreationEvent instead. [18Feb2025 16:23:58.815] [main/WARN] [net.minecraftforge.common.ForgeHooks/]: Called deprecated GlobalEntityTypeAttributes#put for whatareyouvotingfor:allay, use EntityAttributeCreationEvent instead. [18Feb2025 16:23:58.815] [main/WARN] [net.minecraftforge.common.ForgeHooks/]: Called deprecated GlobalEntityTypeAttributes#put for whatareyouvotingfor:copper_golem, use EntityAttributeCreationEvent instead. [18Feb2025 16:23:58.826] [main/WARN] [net.minecraftforge.common.ForgeHooks/]: Called deprecated GlobalEntityTypeAttributes#put for guardvillagers:guard, use EntityAttributeCreationEvent instead. [18Feb2025 16:23:58.921] [main/WARN] [net.minecraftforge.common.ForgeHooks/]: Called deprecated GlobalEntityTypeAttributes#put for darkerdepths:glowshroom_monster, use EntityAttributeCreationEvent instead. [18Feb2025 16:23:58.921] [main/WARN] [net.minecraftforge.common.ForgeHooks/]: Called deprecated GlobalEntityTypeAttributes#put for darkerdepths:magma_minion, use EntityAttributeCreationEvent instead. [18Feb2025 16:23:58.922] [main/WARN] [net.minecraftforge.common.ForgeHooks/]: Called deprecated GlobalEntityTypeAttributes#put for cnb:little_grebe, use EntityAttributeCreationEvent instead. [18Feb2025 16:23:58.923] [main/WARN] [net.minecraftforge.common.ForgeHooks/]: Called deprecated GlobalEntityTypeAttributes#put for cnb:cindershell, use EntityAttributeCreationEvent instead. [18Feb2025 16:23:58.923] [main/WARN] [net.minecraftforge.common.ForgeHooks/]: Called deprecated GlobalEntityTypeAttributes#put for cnb:lizard, use EntityAttributeCreationEvent instead. [18Feb2025 16:23:58.923] [main/WARN] [net.minecraftforge.common.ForgeHooks/]: Called deprecated GlobalEntityTypeAttributes#put for cnb:lilytad, use EntityAttributeCreationEvent instead. [18Feb2025 16:23:58.924] [main/WARN] [net.minecraft.network.datasync.EntityDataManager/]: defineId called for: class com.cgessinger.creaturesandbeasts.common.entites.FriendlySporelingEntity from class com.cgessinger.creaturesandbeasts.common.entites.AbstractSporelingEntity [18Feb2025 16:23:58.924] [main/WARN] [net.minecraftforge.common.ForgeHooks/]: Called deprecated GlobalEntityTypeAttributes#put for cnb:friendly_sporeling, use EntityAttributeCreationEvent instead. [18Feb2025 16:23:58.925] [main/WARN] [net.minecraftforge.common.ForgeHooks/]: Called deprecated GlobalEntityTypeAttributes#put for cnb:hostile_sporeling, use EntityAttributeCreationEvent instead. [18Feb2025 16:23:58.925] [main/WARN] [net.minecraftforge.common.ForgeHooks/]: Called deprecated GlobalEntityTypeAttributes#put for cnb:neutral_sporeling, use EntityAttributeCreationEvent instead. [18Feb2025 16:23:58.925] [main/WARN] [net.minecraftforge.common.ForgeHooks/]: Called deprecated GlobalEntityTypeAttributes#put for cnb:yeti, use EntityAttributeCreationEvent instead. [18Feb2025 16:23:58.959] [main/INFO] [co.eltrut.differentiate.core.registrator.Registrator/]: Registered block and item compostables [18Feb2025 16:23:58.961] [main/INFO] [co.eltrut.differentiate.core.registrator.Registrator/]: Registered block flammables [18Feb2025 16:23:58.966] [main/WARN] [net.minecraftforge.common.ForgeHooks/]: Called deprecated GlobalEntityTypeAttributes#put for outer_end:spectrafly, use EntityAttributeCreationEvent instead. [18Feb2025 16:23:58.967] [main/WARN] [net.minecraftforge.common.ForgeHooks/]: Called deprecated GlobalEntityTypeAttributes#put for outer_end:purpur_golem, use EntityAttributeCreationEvent instead. [18Feb2025 16:23:58.967] [main/WARN] [net.minecraftforge.common.ForgeHooks/]: Called deprecated GlobalEntityTypeAttributes#put for outer_end:himmelite, use EntityAttributeCreationEvent instead. [18Feb2025 16:23:58.967] [main/WARN] [net.minecraft.network.datasync.EntityDataManager/]: defineId called for: class net.minecraft.entity.passive.BeeEntity from class blueduck.outerend.entities.StalkerEntity [18Feb2025 16:23:58.968] [main/WARN] [net.minecraftforge.common.ForgeHooks/]: Called deprecated GlobalEntityTypeAttributes#put for outer_end:stalker, use EntityAttributeCreationEvent instead. [18Feb2025 16:23:58.968] [main/WARN] [net.minecraftforge.common.ForgeHooks/]: Called deprecated GlobalEntityTypeAttributes#put for outer_end:entombed, use EntityAttributeCreationEvent instead. [18Feb2025 16:23:58.968] [main/WARN] [net.minecraftforge.common.ForgeHooks/]: Called deprecated GlobalEntityTypeAttributes#put for outer_end:chorus_squid, use EntityAttributeCreationEvent instead. [18Feb2025 16:23:59.023] [main/WARN] [net.minecraftforge.common.ForgeHooks/]: Called deprecated GlobalEntityTypeAttributes#put for theabyss:ice_skeleton, use EntityAttributeCreationEvent instead. [18Feb2025 16:23:59.024] [main/INFO] [Puzzles Lib/]: Loading 4 elements during common setup... [18Feb2025 16:23:59.081] [modloading-worker-5/INFO] [xaero.map.server.WorldMapServer/]: Loading Xaero's World Map - Stage 1/2 (Server) [18Feb2025 16:23:59.082] [modloading-worker-13/INFO] [xaero.common.server.XaeroMinimapServer/]: Loading Xaero's Minimap - Stage 1/2 (Server) [18Feb2025 16:23:59.129] [main/INFO] [Puzzles Lib/]: Loading 4 elements during server setup... [18Feb2025 16:23:59.129] [main/INFO] [xaero.map.server.WorldMapServer/]: Loading Xaero's World Map - Stage 2/2 (Server) [18Feb2025 16:23:59.130] [main/INFO] [xaero.common.server.XaeroMinimapServer/]: Loading Xaero's Minimap - Stage 2/2 (Server) [18Feb2025 16:23:59.134] [modloading-worker-11/INFO] [club.iananderson.seasonhud.SeasonHUD/]: Talking to Curios [18Feb2025 16:23:59.185] [modloading-worker-5/INFO] [hamster.farmersdelightintegrations.farmersdelightintegrations/]: Got IMC [] [18Feb2025 16:23:59.186] [modloading-worker-4/INFO] [club.iananderson.seasonhud.SeasonHUD/]: Hello world from the MDK [18Feb2025 16:23:59.187] [modloading-worker-4/INFO] [club.iananderson.seasonhud.SeasonHUD/]: Got IMC [Hello world] [18Feb2025 16:23:59.191] [Blue Skies supporters thread./INFO] [ModdingLegacy/blue_skies/]: Successfully loaded the Modding legacy supporters list. [18Feb2025 16:23:59.236] [modloading-worker-5/INFO] [ModdingLegacy/structure_gel/]: Attempting to register unregistered biomes to the biome dictionary. This can be disabled via config. [18Feb2025 16:23:59.238] [modloading-worker-27/WARN] [net.minecraftforge.common.ForgeHooks/]: Called deprecated GlobalEntityTypeAttributes#put for combustivefishing:combustive_cod, use EntityAttributeCreationEvent instead. [18Feb2025 16:23:59.238] [modloading-worker-27/WARN] [net.minecraftforge.common.ForgeHooks/]: Called deprecated GlobalEntityTypeAttributes#put for combustivefishing:searing_swordfish, use EntityAttributeCreationEvent instead. [18Feb2025 16:23:59.242] [modloading-worker-30/INFO] [net.xalcon.torchmaster.Torchmaster/]: Applying mega torch entity block list overrides... [18Feb2025 16:23:59.242] [modloading-worker-30/INFO] [net.xalcon.torchmaster.Torchmaster/]: Applying dread lamp entity block list overrides... [18Feb2025 16:23:59.266] [modloading-worker-1/INFO] [Waila/]: Registered plugin at de.maxhenkel.corpse.integration.waila.PluginCorpse [18Feb2025 16:23:59.271] [modloading-worker-1/INFO] [Waila/]: Registered plugin at net.darkhax.darkpaintings.addons.hwyla.DarkPaintingsHwylaPlugin [18Feb2025 16:23:59.273] [modloading-worker-1/INFO] [Waila/]: Registered plugin at net.blay09.mods.waystones.compat.WailaProvider [18Feb2025 16:23:59.289] [modloading-worker-1/INFO] [Waila/]: Registered plugin at snownee.jade.JadePlugin [18Feb2025 16:23:59.291] [modloading-worker-1/INFO] [Waila/]: Registered plugin at snownee.jade.JadeClientPlugin [18Feb2025 16:23:59.295] [modloading-worker-1/INFO] [Waila/]: Registered plugin at mcp.mobius.waila.addons.minecraft.PluginMinecraft [18Feb2025 16:23:59.691] [modloading-worker-5/INFO] [ModdingLegacy/structure_gel/]: Registered theabyss:mud_plains to structure_gel:[] [18Feb2025 16:23:59.692] [modloading-worker-5/INFO] [ModdingLegacy/structure_gel/]: Registered betterendforge:lush_smaragdant_cave to structure_gel:[] [18Feb2025 16:23:59.692] [modloading-worker-5/INFO] [ModdingLegacy/structure_gel/]: Registered twilightforest:enchanted_forest to structure_gel:[] [18Feb2025 16:23:59.693] [modloading-worker-5/INFO] [ModdingLegacy/structure_gel/]: Registered betterendforge:sulphur_springs to structure_gel:[] [18Feb2025 16:23:59.693] [modloading-worker-5/INFO] [ModdingLegacy/structure_gel/]: Registered environmental:marsh to structure_gel:[] [18Feb2025 16:23:59.693] [modloading-worker-5/INFO] [ModdingLegacy/structure_gel/]: Registered autumnity:orange_spotted_dark_forest to structure_gel:[] [18Feb2025 16:23:59.693] [modloading-worker-5/INFO] [ModdingLegacy/structure_gel/]: Registered atmospheric:rainforest_mountains to structure_gel:[] [18Feb2025 16:23:59.694] [modloading-worker-5/INFO] [ModdingLegacy/structure_gel/]: Registered theabyss:forgottenmountains to structure_gel:[] [18Feb2025 16:23:59.694] [modloading-worker-5/INFO] [ModdingLegacy/structure_gel/]: Registered theabyss:blue_jungle to structure_gel:[] [18Feb2025 16:23:59.694] [modloading-worker-5/INFO] [ModdingLegacy/structure_gel/]: Registered twilightforest:mushroom_forest to structure_gel:[] [18Feb2025 16:23:59.695] [modloading-worker-5/INFO] [ModdingLegacy/structure_gel/]: Registered darkerdepths:crystal_cave to structure_gel:[] [18Feb2025 16:23:59.695] [modloading-worker-5/INFO] [ModdingLegacy/structure_gel/]: Registered atmospheric:sparse_rainforest_basin to structure_gel:[] [18Feb2025 16:23:59.695] [modloading-worker-5/INFO] [ModdingLegacy/structure_gel/]: Registered stalwart_dungeons:poubelle to structure_gel:[] [18Feb2025 16:23:59.695] [modloading-worker-5/INFO] [ModdingLegacy/structure_gel/]: Registered twilightforest:highlands to structure_gel:[] [18Feb2025 16:23:59.695] [modloading-worker-5/INFO] [ModdingLegacy/structure_gel/]: Registered cavesandcliffs:stony_peaks to structure_gel:[] [18Feb2025 16:23:59.695] [modloading-worker-5/INFO] [ModdingLegacy/structure_gel/]: Registered betterendforge:lantern_woods to structure_gel:[] [18Feb2025 16:23:59.696] [modloading-worker-5/INFO] [ModdingLegacy/structure_gel/]: Registered atmospheric:rainforest to structure_gel:[] [18Feb2025 16:23:59.696] [modloading-worker-5/INFO] [ModdingLegacy/structure_gel/]: Registered betterendforge:umbra_valley to structure_gel:[] [18Feb2025 16:23:59.696] [modloading-worker-5/INFO] [ModdingLegacy/structure_gel/]: Registered autumnity:yellow_spotted_forest to structure_gel:[] [18Feb2025 16:23:59.696] [modloading-worker-5/INFO] [ModdingLegacy/structure_gel/]: Registered atmospheric:rocky_dunes to structure_gel:[] [18Feb2025 16:23:59.696] [modloading-worker-5/INFO] [ModdingLegacy/structure_gel/]: Registered betterendforge:jade_cave to structure_gel:[] [18Feb2025 16:23:59.696] [modloading-worker-5/INFO] [ModdingLegacy/structure_gel/]: Registered dead_guys_untitled_deep_dark_:the_deep_dark to structure_gel:[] [18Feb2025 16:23:59.696] [modloading-worker-5/INFO] [ModdingLegacy/structure_gel/]: Registered betterendforge:foggy_mushroomland to structure_gel:[] [18Feb2025 16:23:59.696] [modloading-worker-5/INFO] [ModdingLegacy/structure_gel/]: Registered darkerdepths:sandy_catacombs to structure_gel:[] [18Feb2025 16:23:59.696] [modloading-worker-5/INFO] [ModdingLegacy/structure_gel/]: Registered cavebiomeapi:caves to structure_gel:[] [18Feb2025 16:23:59.696] [modloading-worker-5/INFO] [ModdingLegacy/structure_gel/]: Registered environmental:blossom_woods to structure_gel:[] [18Feb2025 16:23:59.696] [modloading-worker-5/INFO] [ModdingLegacy/structure_gel/]: Registered twilightforest:forest to structure_gel:[] [18Feb2025 16:23:59.696] [modloading-worker-5/INFO] [ModdingLegacy/structure_gel/]: Registered environmental:mushroom_marsh to structure_gel:[] [18Feb2025 16:23:59.696] [modloading-worker-5/INFO] [ModdingLegacy/structure_gel/]: Registered theabyss:infected_lake to structure_gel:[] [18Feb2025 16:23:59.696] [modloading-worker-5/INFO] [ModdingLegacy/structure_gel/]: Registered twilightforest:thornlands to structure_gel:[] [18Feb2025 16:23:59.696] [modloading-worker-5/INFO] [ModdingLegacy/structure_gel/]: Registered twilightforest:swamp to structure_gel:[] [18Feb2025 16:23:59.696] [modloading-worker-5/INFO] [ModdingLegacy/structure_gel/]: Registered cavesandcliffs:jagged_peaks to structure_gel:[] [18Feb2025 16:23:59.696] [modloading-worker-5/INFO] [ModdingLegacy/structure_gel/]: Registered darkerdepths:molten_cavern to structure_gel:[] [18Feb2025 16:23:59.696] [modloading-worker-5/INFO] [ModdingLegacy/structure_gel/]: Registered bayou_blues:bayou_hills to structure_gel:[] [18Feb2025 16:23:59.697] [modloading-worker-5/INFO] [ModdingLegacy/structure_gel/]: Registered autumnity:maple_forest to structure_gel:[] [18Feb2025 16:23:59.697] [modloading-worker-5/INFO] [ModdingLegacy/structure_gel/]: Registered theabyss:phantom_crate to structure_gel:[] [18Feb2025 16:23:59.698] [modloading-worker-5/INFO] [ModdingLegacy/structure_gel/]: Registered twilightforest:clearing to structure_gel:[] [18Feb2025 16:23:59.698] [modloading-worker-5/INFO] [ModdingLegacy/structure_gel/]: Registered betterendforge:dust_wastelands to structure_gel:[] [18Feb2025 16:23:59.698] [modloading-worker-5/INFO] [ModdingLegacy/structure_gel/]: Registered twilightforest:oak_savannah to structure_gel:[] [18Feb2025 16:23:59.698] [modloading-worker-5/INFO] [ModdingLegacy/structure_gel/]: Registered twilightforest:dark_forest to structure_gel:[] [18Feb2025 16:23:59.699] [modloading-worker-5/INFO] [ModdingLegacy/structure_gel/]: Registered theabyss:plains to structure_gel:[] [18Feb2025 16:23:59.699] [modloading-worker-5/INFO] [ModdingLegacy/structure_gel/]: Registered betterendforge:dry_shrubland to structure_gel:[] [18Feb2025 16:23:59.699] [modloading-worker-5/INFO] [ModdingLegacy/structure_gel/]: Registered cavesandcliffs:dripstone_caves to structure_gel:[] [18Feb2025 16:23:59.700] [modloading-worker-5/INFO] [ModdingLegacy/structure_gel/]: Registered outer_end:azure_forest to structure_gel:[] [18Feb2025 16:23:59.700] [modloading-worker-5/INFO] [ModdingLegacy/structure_gel/]: Registered betterendforge:megalake to structure_gel:[] [18Feb2025 16:23:59.700] [modloading-worker-5/INFO] [ModdingLegacy/structure_gel/]: Registered betterendforge:megalake_grove to structure_gel:[] [18Feb2025 16:23:59.700] [modloading-worker-5/INFO] [ModdingLegacy/structure_gel/]: Registered cavesandcliffs:lush_caves to structure_gel:[] [18Feb2025 16:23:59.700] [modloading-worker-5/INFO] [ModdingLegacy/structure_gel/]: Registered theabyss:radio_biome to structure_gel:[] [18Feb2025 16:23:59.701] [modloading-worker-5/INFO] [ModdingLegacy/structure_gel/]: Registered environmental:blossom_hills to structure_gel:[] [18Feb2025 16:23:59.701] [modloading-worker-5/INFO] [ModdingLegacy/structure_gel/]: Registered betterendforge:umbrella_jungle to structure_gel:[] [18Feb2025 16:23:59.701] [modloading-worker-5/INFO] [ModdingLegacy/structure_gel/]: Registered theabyss:blue_forest to structure_gel:[] [18Feb2025 16:23:59.701] [modloading-worker-5/INFO] [ModdingLegacy/structure_gel/]: Registered environmental:blossom_valleys to structure_gel:[] [18Feb2025 16:23:59.702] [modloading-worker-5/INFO] [ModdingLegacy/structure_gel/]: Registered twilightforest:fire_swamp to structure_gel:[] [18Feb2025 16:23:59.702] [modloading-worker-5/INFO] [ModdingLegacy/structure_gel/]: Registered betterendforge:empty_aurora_cave to structure_gel:[] [18Feb2025 16:23:59.702] [modloading-worker-5/INFO] [ModdingLegacy/structure_gel/]: Registered twilightforest:dense_forest to structure_gel:[] [18Feb2025 16:23:59.702] [modloading-worker-5/INFO] [ModdingLegacy/structure_gel/]: Registered betterendforge:shadow_forest to structure_gel:[] [18Feb2025 16:23:59.702] [modloading-worker-5/INFO] [ModdingLegacy/structure_gel/]: Registered theabyss:pocket_biome to structure_gel:[] [18Feb2025 16:23:59.702] [modloading-worker-5/INFO] [ModdingLegacy/structure_gel/]: Registered betterendforge:neon_oasis to structure_gel:[] [18Feb2025 16:23:59.702] [modloading-worker-5/INFO] [ModdingLegacy/structure_gel/]: Registered twilightforest:stream to structure_gel:[] [18Feb2025 16:23:59.702] [modloading-worker-5/INFO] [ModdingLegacy/structure_gel/]: Registered betterendforge:empty_end_cave to structure_gel:[] [18Feb2025 16:23:59.702] [modloading-worker-5/INFO] [ModdingLegacy/structure_gel/]: Registered cavesandcliffs:meadow to structure_gel:[] [18Feb2025 16:23:59.702] [modloading-worker-5/INFO] [ModdingLegacy/structure_gel/]: Registered autumnity:pumpkin_fields to structure_gel:[] [18Feb2025 16:23:59.702] [modloading-worker-5/INFO] [ModdingLegacy/structure_gel/]: Registered theabyss:fungal_forest to structure_gel:[] [18Feb2025 16:23:59.702] [modloading-worker-5/INFO] [ModdingLegacy/structure_gel/]: Registered theabyss:waywardsea to structure_gel:[] [18Feb2025 16:23:59.702] [modloading-worker-5/INFO] [ModdingLegacy/structure_gel/]: Registered betterendforge:lush_aurora_cave to structure_gel:[] [18Feb2025 16:23:59.703] [modloading-worker-5/INFO] [ModdingLegacy/structure_gel/]: Registered atmospheric:flourishing_dunes to structure_gel:[] [18Feb2025 16:23:59.703] [modloading-worker-5/INFO] [ModdingLegacy/structure_gel/]: Registered twilightforest:lake to structure_gel:[] [18Feb2025 16:23:59.703] [modloading-worker-5/INFO] [ModdingLegacy/structure_gel/]: Registered betterendforge:chorus_forest to structure_gel:[] [18Feb2025 16:23:59.703] [modloading-worker-5/INFO] [ModdingLegacy/structure_gel/]: Registered theabyss:dream_biome to structure_gel:[] [18Feb2025 16:23:59.703] [modloading-worker-5/INFO] [ModdingLegacy/structure_gel/]: Registered theabyss:blue_mountain to structure_gel:[] [18Feb2025 16:23:59.703] [modloading-worker-5/INFO] [ModdingLegacy/structure_gel/]: Registered atmospheric:dunes to structure_gel:[] [18Feb2025 16:23:59.703] [modloading-worker-5/INFO] [ModdingLegacy/structure_gel/]: Registered atmospheric:dunes_hills to structure_gel:[] [18Feb2025 16:23:59.703] [modloading-worker-5/INFO] [ModdingLegacy/structure_gel/]: Registered betterendforge:amber_land to structure_gel:[] [18Feb2025 16:23:59.703] [modloading-worker-5/INFO] [ModdingLegacy/structure_gel/]: Registered betterendforge:end_cave to structure_gel:[] [18Feb2025 16:23:59.703] [modloading-worker-5/INFO] [ModdingLegacy/structure_gel/]: Registered autumnity:maple_forest_hills to structure_gel:[] [18Feb2025 16:23:59.703] [modloading-worker-5/INFO] [ModdingLegacy/structure_gel/]: Registered bayou_blues:bayou to structure_gel:[] [18Feb2025 16:23:59.703] [modloading-worker-5/INFO] [ModdingLegacy/structure_gel/]: Registered twilightforest:firefly_forest to structure_gel:[] [18Feb2025 16:23:59.703] [modloading-worker-5/INFO] [ModdingLegacy/structure_gel/]: Registered atmospheric:sparse_rainforest_plateau to structure_gel:[] [18Feb2025 16:23:59.704] [modloading-worker-5/INFO] [ModdingLegacy/structure_gel/]: Registered autumnity:red_spotted_taiga to structure_gel:[] [18Feb2025 16:23:59.704] [modloading-worker-5/INFO] [ModdingLegacy/structure_gel/]: Registered twilightforest:spooky_forest to structure_gel:[] [18Feb2025 16:23:59.704] [modloading-worker-5/INFO] [ModdingLegacy/structure_gel/]: Registered atmospheric:rainforest_plateau to structure_gel:[] [18Feb2025 16:23:59.704] [modloading-worker-5/INFO] [ModdingLegacy/structure_gel/]: Registered betterendforge:dragon_graveyards to structure_gel:[] [18Feb2025 16:23:59.704] [modloading-worker-5/INFO] [ModdingLegacy/structure_gel/]: Registered betterendforge:empty_smaragdant_cave to structure_gel:[] [18Feb2025 16:23:59.704] [modloading-worker-5/INFO] [ModdingLegacy/structure_gel/]: Registered environmental:blossom_highlands to structure_gel:[] [18Feb2025 16:23:59.704] [modloading-worker-5/INFO] [ModdingLegacy/structure_gel/]: Registered twilightforest:glacier to structure_gel:[] [18Feb2025 16:23:59.704] [modloading-worker-5/INFO] [ModdingLegacy/structure_gel/]: Registered betterendforge:glowing_grasslands to structure_gel:[] [18Feb2025 16:23:59.704] [modloading-worker-5/INFO] [ModdingLegacy/structure_gel/]: Registered cavesandcliffs:grove to structure_gel:[] [18Feb2025 16:23:59.704] [modloading-worker-5/INFO] [ModdingLegacy/structure_gel/]: Registered cavesandcliffs:frozen_peaks to structure_gel:[] [18Feb2025 16:23:59.705] [modloading-worker-5/INFO] [ModdingLegacy/structure_gel/]: Registered twilightforest:final_plateau to structure_gel:[] [18Feb2025 16:23:59.705] [modloading-worker-5/INFO] [ModdingLegacy/structure_gel/]: Registered cavesandcliffs:snowy_slopes to structure_gel:[] [18Feb2025 16:23:59.705] [modloading-worker-5/INFO] [ModdingLegacy/structure_gel/]: Registered outer_end:crystal_crag to structure_gel:[] [18Feb2025 16:23:59.705] [modloading-worker-5/INFO] [ModdingLegacy/structure_gel/]: Registered atmospheric:hot_springs to structure_gel:[] [18Feb2025 16:23:59.705] [modloading-worker-5/INFO] [ModdingLegacy/structure_gel/]: Registered betterendforge:blossoming_spires to structure_gel:[] [18Feb2025 16:23:59.705] [modloading-worker-5/INFO] [ModdingLegacy/structure_gel/]: Registered betterendforge:painted_mountains to structure_gel:[] [18Feb2025 16:23:59.705] [modloading-worker-5/INFO] [ModdingLegacy/structure_gel/]: Registered atmospheric:rainforest_basin to structure_gel:[] [18Feb2025 16:23:59.705] [modloading-worker-5/INFO] [ModdingLegacy/structure_gel/]: Registered betterendforge:crystal_mountains to structure_gel:[] [18Feb2025 16:23:59.705] [modloading-worker-5/INFO] [ModdingLegacy/structure_gel/]: Registered twilightforest:dark_forest_center to structure_gel:[] [18Feb2025 16:23:59.705] [modloading-worker-5/INFO] [ModdingLegacy/structure_gel/]: Registered theabyss:slime_forest to structure_gel:[] [18Feb2025 16:23:59.705] [modloading-worker-5/INFO] [ModdingLegacy/structure_gel/]: Registered twilightforest:dense_mushroom_forest to structure_gel:[] [18Feb2025 16:23:59.705] [modloading-worker-5/INFO] [ModdingLegacy/structure_gel/]: Registered twilightforest:snowy_forest to structure_gel:[] [18Feb2025 16:23:59.706] [modloading-worker-5/INFO] [ModdingLegacy/structure_gel/]: Registered atmospheric:rocky_dunes_hills to structure_gel:[] [18Feb2025 16:23:59.706] [modloading-worker-5/INFO] [ModdingLegacy/structure_gel/]: Registered atmospheric:petrified_dunes to structure_gel:[] [18Feb2025 16:23:59.706] [modloading-worker-5/INFO] [ModdingLegacy/structure_gel/]: Registered betterendforge:ice_starfield to structure_gel:[] [18Feb2025 16:23:59.706] [modloading-worker-5/INFO] [ModdingLegacy/structure_gel/]: Registered darkerdepths:glowshroom_caves to structure_gel:[] [18Feb2025 16:23:59.706] [modloading-worker-5/INFO] [ModdingLegacy/structure_gel/]: Registered theabyss:roggen_forest to structure_gel:[] [18Feb2025 16:23:59.706] [modloading-worker-5/INFO] [ModdingLegacy/structure_gel/]: Reloading biome config for dungeons_plus:tower [18Feb2025 16:23:59.707] [modloading-worker-5/INFO] [ModdingLegacy/structure_gel/]: Reloading biome config for dungeons_plus:bigger_dungeon [18Feb2025 16:23:59.707] [modloading-worker-5/INFO] [ModdingLegacy/structure_gel/]: Reloading biome config for dungeons_plus:leviathan [18Feb2025 16:23:59.707] [modloading-worker-5/INFO] [ModdingLegacy/structure_gel/]: Reloading biome config for dungeons_plus:snowy_temple [18Feb2025 16:23:59.707] [modloading-worker-5/INFO] [ModdingLegacy/structure_gel/]: Reloading biome config for dungeons_plus:end_ruins [18Feb2025 16:23:59.707] [modloading-worker-5/INFO] [ModdingLegacy/structure_gel/]: Reloading biome config for dungeons_plus:warped_garden [18Feb2025 16:23:59.707] [modloading-worker-5/INFO] [ModdingLegacy/structure_gel/]: Reloading biome config for dungeons_plus:soul_prison [18Feb2025 16:23:59.708] [modloading-worker-5/INFO] [ModdingLegacy/structure_gel/]: Reloading biome config for conjurer_illager:theatre [18Feb2025 16:23:59.744] [main/INFO] [corgiaoc.byg.BYG/]: BYG: Compostible Blocks Added! [18Feb2025 16:23:59.744] [main/INFO] [corgiaoc.byg.BYG/]: BYG: Added Hoeable Blocks! [18Feb2025 16:23:59.748] [main/INFO] [corgiaoc.byg.BYG/]: BYG: Added Flammables! [18Feb2025 16:23:59.748] [main/INFO] [corgiaoc.byg.BYG/]: BYG: Added strippable Blocks... [18Feb2025 16:23:59.837] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [glasscutter] Found status: BETA Current: 1.1.1 Target: 1.1.1 [18Feb2025 16:23:59.838] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [blue_skies] Starting version check at http://changelogs.moddinglegacy.com/blue-skies.json [18Feb2025 16:23:59.925] [main/WARN] [net.minecraftforge.fml.server.ServerModLoader/LOADING]: Mods loaded with 1 warnings [18Feb2025 16:23:59.927] [main/WARN] [net.minecraftforge.fml.server.ServerModLoader/LOADING]: modernfix.no_lazydfu [18Feb2025 16:24:00.021] [main/ERROR] [net.minecraft.util.registry.WorldSettingsImport/]: Error adding element: Unknown registry element mod.beethoven92.betterendforge.common.world.feature.SinglePlantFeature@46a8dfea [18Feb2025 16:24:00.029] [main/ERROR] [net.minecraft.util.registry.WorldSettingsImport/]: Error adding element: Base value out of range: 256 [-10-128] [18Feb2025 16:24:00.486] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [blue_skies] Found status: UP_TO_DATE Current: 1.1.3 Target: null [18Feb2025 16:24:00.489] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [bettercaves] Starting version check at https://raw.githubusercontent.com/yungnickyoung/YUNGs-Better-Caves/1.16/versions.json [18Feb2025 16:24:00.512] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [bettercaves] Found status: BETA Current: 1.16.4-1.1.2 Target: null [18Feb2025 16:24:00.512] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [bookshelf] Starting version check at https://updates.blamejared.com/get?n=bookshelf&gv=1.16.5 [18Feb2025 16:24:00.646] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [bookshelf] Found status: BETA Current: 10.4.33 Target: 10.4.33 [18Feb2025 16:24:00.646] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [resourcepackoverrides] Starting version check at https://raw.githubusercontent.com/Fuzss/modresources/main/update/resourcepackoverrides.json [18Feb2025 16:24:00.663] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [resourcepackoverrides] Found status: OUTDATED Current: 1.0.0 Target: 1.0.1 [18Feb2025 16:24:00.663] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [guardvillagers] Starting version check at https://raw.githubusercontent.com/seymourimadeit/guardvillagers/master/update.json [18Feb2025 16:24:00.679] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [guardvillagers] Found status: UP_TO_DATE Current: 1.2.6 Target: null [18Feb2025 16:24:00.680] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [randompatches] Starting version check at https://raw.githubusercontent.com/TheRandomLabs/RandomPatches/misc/versions.json [18Feb2025 16:24:00.704] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [randompatches] Found status: UP_TO_DATE Current: 2.4.4-forge Target: null [18Feb2025 16:24:00.704] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [twilightforest] Starting version check at https://raw.githubusercontent.com/TeamTwilight/twilightforest/1.16.x/update.json [18Feb2025 16:24:00.728] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [twilightforest] Found status: BETA Current: NONE Target: null [18Feb2025 16:24:00.728] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [corpse] Starting version check at https://maxhenkel.de/update/corpse.json [18Feb2025 16:24:00.946] [Forge Version Check/WARN] [net.minecraftforge.fml.VersionChecker/]: Failed to process update information java.lang.NullPointerException: null at net.minecraftforge.fml.VersionChecker$1.openUrlString(VersionChecker.java:160) ~[forge:?] at net.minecraftforge.fml.VersionChecker$1.process(VersionChecker.java:187) ~[forge:?] at java.lang.Iterable.forEach(Iterable.java:75) [?:1.8.0_442] at net.minecraftforge.fml.VersionChecker$1.run(VersionChecker.java:128) [forge:?] [18Feb2025 16:24:00.947] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [highlighter] Starting version check at https://mc-update-check.anthonyhilyard.com/521590 [18Feb2025 16:24:01.065] [main/INFO] [com.mojang.authlib.yggdrasil.YggdrasilAuthenticationService/]: Environment: authHost='https://authserver.mojang.com', accountsHost='https://api.mojang.com', sessionHost='https://sessionserver.mojang.com', servicesHost='https://api.minecraftservices.com', name='PROD' [18Feb2025 16:24:01.170] [main/INFO] [paxi/]: Adding global data pack provider... [18Feb2025 16:24:01.434] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [highlighter] Found status: UP_TO_DATE Current: 1.1.1 Target: null [18Feb2025 16:24:01.434] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [villagertools] Starting version check at https://raw.githubusercontent.com/Lothrazar/VillagerTools/trunk/1.16/update.json [18Feb2025 16:24:01.454] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [villagertools] Found status: AHEAD Current: 1.16.5-1.0.2 Target: null [18Feb2025 16:24:01.455] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [nightconfigfixes] Starting version check at https://raw.githubusercontent.com/Fuzss/modresources/main/update/nightconfigfixes.json [18Feb2025 16:24:01.474] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [nightconfigfixes] Found status: OUTDATED Current: 1.0.1 Target: 1.0.3 [18Feb2025 16:24:01.475] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [obfuscate] Starting version check at https://mrcrayfish.com/modupdatejson?id=obfuscate [18Feb2025 16:24:01.572] [main/INFO] [ejektaflex.bountiful.BountifulMod/]: Bountiful adding resource listener.. [18Feb2025 16:24:01.574] [main/INFO] [net.minecraft.resources.SimpleReloadableResourceManager/]: Reloading ResourceManager: Default, saturn-mc1.16.5-0.0.3.jar, dynamiclightsreforged-mc1.16.5_v1.0.1.jar, BetterDungeons-1.16.4-1.2.1.jar, immersivecooking-1.2.0.jar, PGA-1.16.4-1.1.2.1.jar, stalwart-dungeons-1.16.5-1.1.7.jar, strawgolem-1.16-1.9.jar, BetterCaves-Forge-1.16.4-1.1.2.jar, modernfix-mc1.16.5-1.9.1.jar, farmersdelightintegrations-1.16.5-1.2.jar, YungsApi-1.16.4-Forge-13.jar, does_potato_tick-1.16.5-3.3.jar, upgradednetherite_items-1.16.5-1.1.0.2-release.jar, ResourcePackOverrides-v1.0.0-1.16.5-Forge.jar, guardvillagers-1.16.5.1.2.6.jar, randompatches-2.4.4-forge.jar, snowrealmagic-1.16.5-2.10.0-1.16.5.jar, what_did_you_vote_for-1.16.5-1.0.5.jar, JustEnoughResources-1.16.5-0.12.1.133.jar, RevampedWolf-1.16.4-0.7.1.jar, supplementaries-1.16.5-0.18.5.jar, betterendforge-1.16.5-2.8.jar, upgradednetherite-1.16.5-2.1.0.1-release.jar, structure_gel-1.16.5-1.7.8.jar, corpse-1.16.5-1.0.7.jar, cleancut-mc1.16-2.2-forge.jar, torchmaster-2.3.8.jar, repurposed_structures_forge-3.4.7+1.16.5.jar, morevillagers-FORGE-1.16.5-1.5.5.jar, BetterCompatibilityChecker-1.0.7-build.22+mc1.16.5.jar, MorePaths-1.16.1-1.3.2.jar, dungeons_plus-1.16.5-1.1.5.jar, YungsBridges-Forge-1.16.4-1.0.1.jar, cavesandcliffs-1.16.5-7.2.0.jar, darkerdepths-1.16.5-1.1.4.jar, Highlighter-1.16.5-1.1.1.jar, TextruesRubidiumOptions-1.0.4-mc1.16.5.jar, spark-1.9.1-forge.jar, curios-forge-1.16.5-4.1.0.0.jar, extendedmushrooms-1.16.5-1.7.0.5.jar, YungsExtras-Forge-1.16.4-1.0.jar, obfuscate-0.6.3-1.16.5.jar, TheAbyss2 2.2.3-4 1.16.5.jar, cloth-config-4.16.91-forge.jar, FallingTree-1.16.5-2.11.6.jar, FastLeafDecay-v25.2.jar, Babel-1.0.5.jar, JEPB-1.0.0.jar, BetterMineshafts-Forge-1.16.4-2.0.4.jar, veinmining-forge-1.16.5-0.18.jar, BetterModsButton-v1.0.5-1.16.5-Forge.jar, DarkPaintings-1.16.5-6.0.11.jar, Kiwi-1.16.5-3.6.1.jar, mowziesmobs-1.5.27.jar, ConfigMenusForge-v1.2.0-1.16.5-Forge.jar, jei-1.16.5-7.8.0.1009.jar, VisualWorkbench-v1.1.0-1.16.5.jar, AttributeFix-1.16.5-10.1.4.jar, differentiate-1.16.5-0.5.3.jar, goblintraders-1.7.3-1.16.5.jar, caelus-forge-1.16.5-2.1.3.2.jar, Paxi-Forge-1.16.4-1.0.jar, NaturesCompass-1.16.5-1.9.1-forge.jar, smarterfarmers-1.16.5-1.2.1.jar, SereneSeasons-1.16.5-4.0.1.127-universal.jar, curioofundying-forge-1.16.5-5.2.0.0.jar, snowundertrees-1.16.5-v1.3.jar, starlight-1.2.jar, crumbs-forge-1.0.7.jar, forge-1.16.5-36.2.42-universal.jar, DungeonsArise-1.16.5-2.1.49-beta.jar, chunksavingfix-0.1.0.jar, CavesCliffsBackportAdditions-3.4.1jar.jar, paintings-1.16.4-7.0.0.1.jar, Xaeros_Minimap_23.1.0_Forge_1.16.5.jar, ftb-backups-2.1.2.2.jar, polymorph-forge-1.16.5-0.41.jar, AutoRegLib-1.6-49.jar, backpacked-2.1.8-1.16.5.jar, upgradednetherite_ultimate-1.16.5-1.1.0.3-release.jar, PuzzlesLib-v1.0.15-1.16.5-Forge.jar, byg-1.3.6.jar, deuf-1.16.5-1.1.jar, xptome-1.16.5-v2.1.5.jar, glasscutter-1.1.1-1.16.5.jar, blue_skies-1.16.5-1.1.3.jar, NetherPortalFix_1.16.3-7.2.1.jar, connectivity-2.4-1.16.5.jar, KleeSlabs_1.16.5-9.2.1.jar, villagernames_1.16.5-4.3.jar, XaerosWorldMap_1.28.9_Forge_1.16.5.jar, citadel-1.8.1-1.16.5.jar, lootintegrations-1.2.jar, Bookshelf-Forge-1.16.5-10.4.33.jar, takesapillage-1.0.3-1.16.5.jar, bygonenether-1.2.2-1.16.5.jar, carryon-1.16.5-1.15.5.22.jar, shieldexp-1.16.5-alpha-0.1.jar, omnis-1.16.5-1.2.3.jar, twilightforest-1.16.5-4.0.870-universal.jar, cuneiform-1.16.3-1.2.5.jar, chipped-1.16.5-1.2.1-forge.jar, chocolate-1.3.0-1.16.4.jar, FarmersDelight-1.16.5-0.6.0.jar, culturaldelights-1.16.5-0.9.2.jar, simpleshops-1.1.3.jar, Talpm 1.0.0 1.16.5.jar, Bountiful-1.16.4-3.3.1.jar, CNB-1.16.3_5-1.2.11.jar, geckolib-forge-1.16.5-3.0.106.jar, L_Enders Cataclysm-0.48 Changed Theme -1.16.5.jar, Patchouli-1.16.4-53.3.jar, collective-1.16.5-5.49.jar, villagertools-1.16.5-1.0.2.jar, elevatorid-1.16.5-1.7.13.jar, NightConfigFixes-v1.0.1-1.16.5-Forge.jar, BetterStrongholds-1.16.4-1.2.1.jar, travelers_index-1.16.4-1.0.2.jar, starterkit_1.16.5-4.1.jar, cavebiomeapi-1.16.5-1.4.2.jar, seasonhud-1.16.5-1.4.6.jar, architectury-1.32.66.jar, ftb-library-forge-1605.3.4-build.90.jar, ftb-teams-forge-1605.2.3-build.40.jar, curiouselytra-forge-1.16.5-4.0.2.4.jar, letmedespawn-forge-1.16-1.0.2a.jar, voidtotem-1.16.5-1.4.0.jar, TradingPost-v1.0.2-1.16.5.jar, woodcuttercompats-1.16-1.2.jar, item-filters-forge-1605.2.5-build.9.jar, ftb-quests-forge-1605.3.7-build.165.jar, EasyMagic-v1.0.4-1.16.5.jar, xlpackets-1.16.4-1.2.jar, the-conjurer-1.16.4-1.0.13.jar, abnormals_core-1.16.5-3.3.1.jar, environmental-1.16.5-1.1.1.jar, bamboo_blocks-1.16.5-3.0.1.jar, copperpot-1.16.5-1.2.0.jar, Bayou-Blues-1.16.5-1.0.5.jar, upgrade_aquatic-1.16.5-3.1.2.jar, Better-Badlands-1.16.5-2.0.3.jar, irregularchef-1.16.5-1.0.1.jar, endergetic-1.16.5-3.0.2.jar, neapolitan-1.16.5-2.2.1.jar, personality-1.16.5-1.0.3.jar, savageandravage-1.16.5-3.2.0.jar, autumnity-1.16.5-2.1.2.jar, nethers_delight-2.1.jar, buzzier_bees-1.16.5-3.0.3.jar, Enhanced-Mushrooms-1.16.5-3.0.9.jar, extraboats-1.16.5-2.1.1.jar, Waystones_1.16.5-7.6.4.jar, Clumps-6.0.0.28.jar, RoadRunner-mc1.16.5-1.4.1.jar, comforts-forge-1.16.5-4.0.1.5.jar, SimpleStorageNetwork-1.16.5-1.5.3.jar, OuterEnd-0.2.14.jar, decorative_blocks-1.16.4-1.7.2.jar, decorative_blocks_abnormals-1.2.jar, BadMobs-1.16.5-9.1.9.jar, deepdark_4.2.jar, farsight-1.7.jar, ftb-chunks-forge-1605.3.4-build.220.jar, frozenup-1.0.1.jar, selene-1.16.5-1.9.0.jar, Jade-1.16.4-2.8.3.jar, atmospheric-1.16.5-3.1.1.jar, Iceberg-1.16.5-1.0.45.jar, Quark-r2.4-322.jar, kryptonreforged-mc1.16.5_v1.0.0.jar, DiagonalFences-v1.1.1-1.16.5.jar, combustivefishing-forge-1.16.3-4.0.0.1.jar, upgradedcore-1.16.5-1.1.0.3-release.jar, HunterIllager-1.16.5-1.4.0.jar, illagersweararmor-1.0.5.jar, ferritecore-2.1.1-forge.jar [18Feb2025 16:24:01.730] [Worker-Main-27/ERROR] [net.minecraft.client.resources.JsonReloadListener/]: Couldn't parse data file minecraft:beetroot_soup from minecraft:recipes/beetroot_soup.json com.google.gson.JsonParseException: java.io.EOFException: End of input at line 1 column 1 path $ at net.minecraft.util.JSONUtils.func_188173_a(SourceFile:495) ~[?:?] at net.minecraft.util.JSONUtils.func_193839_a(SourceFile:532) ~[?:?] at net.minecraft.client.resources.JsonReloadListener.func_212854_a_(JsonReloadListener.java:48) ~[?:?] at net.minecraft.client.resources.JsonReloadListener.func_212854_a_(JsonReloadListener.java:22) ~[?:?] at net.minecraft.client.resources.ReloadListener.func_215270_b(SourceFile:11) ~[?:?] at java.util.concurrent.CompletableFuture$AsyncSupply.run(CompletableFuture.java:1604) [?:1.8.0_442] at java.util.concurrent.CompletableFuture$AsyncSupply.exec(CompletableFuture.java:1596) [?:1.8.0_442] at java.util.concurrent.ForkJoinTask.doExec(ForkJoinTask.java:289) [?:1.8.0_442] at java.util.concurrent.ForkJoinPool$WorkQueue.runTask(ForkJoinPool.java:1056) [?:1.8.0_442] at java.util.concurrent.ForkJoinPool.runWorker(ForkJoinPool.java:1692) [?:1.8.0_442] at java.util.concurrent.ForkJoinWorkerThread.run(ForkJoinWorkerThread.java:175) [?:1.8.0_442] Caused by: java.io.EOFException: End of input at line 1 column 1 path $ at com.google.gson.stream.JsonReader.nextNonWhitespace(JsonReader.java:1393) ~[server-1.16.5-20210115.111550-extra.jar:?] at com.google.gson.stream.JsonReader.doPeek(JsonReader.java:549) ~[server-1.16.5-20210115.111550-extra.jar:?] at com.google.gson.stream.JsonReader.peek(JsonReader.java:425) ~[server-1.16.5-20210115.111550-extra.jar:?] at com.google.gson.internal.bind.TypeAdapters$29.read(TypeAdapters.java:716) ~[server-1.16.5-20210115.111550-extra.jar:?] at com.google.gson.internal.bind.TypeAdapters$29.read(TypeAdapters.java:714) ~[server-1.16.5-20210115.111550-extra.jar:?] at com.google.gson.internal.bind.TypeAdapters$35$1.read(TypeAdapters.java:910) ~[server-1.16.5-20210115.111550-extra.jar:?] at net.minecraft.util.JSONUtils.func_188173_a(SourceFile:493) ~[?:?] ... 10 more [18Feb2025 16:24:02.203] [Worker-Main-27/ERROR] [net.minecraft.client.resources.JsonReloadListener/]: Couldn't parse data file minecraft:mushroom_stew from minecraft:recipes/mushroom_stew.json com.google.gson.JsonParseException: java.io.EOFException: End of input at line 1 column 1 path $ at net.minecraft.util.JSONUtils.func_188173_a(SourceFile:495) ~[?:?] at net.minecraft.util.JSONUtils.func_193839_a(SourceFile:532) ~[?:?] at net.minecraft.client.resources.JsonReloadListener.func_212854_a_(JsonReloadListener.java:48) ~[?:?] at net.minecraft.client.resources.JsonReloadListener.func_212854_a_(JsonReloadListener.java:22) ~[?:?] at net.minecraft.client.resources.ReloadListener.func_215270_b(SourceFile:11) ~[?:?] at java.util.concurrent.CompletableFuture$AsyncSupply.run(CompletableFuture.java:1604) [?:1.8.0_442] at java.util.concurrent.CompletableFuture$AsyncSupply.exec(CompletableFuture.java:1596) [?:1.8.0_442] at java.util.concurrent.ForkJoinTask.doExec(ForkJoinTask.java:289) [?:1.8.0_442] at java.util.concurrent.ForkJoinPool$WorkQueue.runTask(ForkJoinPool.java:1056) [?:1.8.0_442] at java.util.concurrent.ForkJoinPool.runWorker(ForkJoinPool.java:1692) [?:1.8.0_442] at java.util.concurrent.ForkJoinWorkerThread.run(ForkJoinWorkerThread.java:175) [?:1.8.0_442] Caused by: java.io.EOFException: End of input at line 1 column 1 path $ at com.google.gson.stream.JsonReader.nextNonWhitespace(JsonReader.java:1393) ~[server-1.16.5-20210115.111550-extra.jar:?] at com.google.gson.stream.JsonReader.doPeek(JsonReader.java:549) ~[server-1.16.5-20210115.111550-extra.jar:?] at com.google.gson.stream.JsonReader.peek(JsonReader.java:425) ~[server-1.16.5-20210115.111550-extra.jar:?] at com.google.gson.internal.bind.TypeAdapters$29.read(TypeAdapters.java:716) ~[server-1.16.5-20210115.111550-extra.jar:?] at com.google.gson.internal.bind.TypeAdapters$29.read(TypeAdapters.java:714) ~[server-1.16.5-20210115.111550-extra.jar:?] at com.google.gson.internal.bind.TypeAdapters$35$1.read(TypeAdapters.java:910) ~[server-1.16.5-20210115.111550-extra.jar:?] at net.minecraft.util.JSONUtils.func_188173_a(SourceFile:493) ~[?:?] ... 10 more [18Feb2025 16:24:02.269] [Worker-Main-27/ERROR] [net.minecraft.client.resources.JsonReloadListener/]: Couldn't parse data file minecraft:rabbit_stew_from_brown_mushroom from minecraft:recipes/rabbit_stew_from_brown_mushroom.json com.google.gson.JsonParseException: java.io.EOFException: End of input at line 1 column 1 path $ at net.minecraft.util.JSONUtils.func_188173_a(SourceFile:495) ~[?:?] at net.minecraft.util.JSONUtils.func_193839_a(SourceFile:532) ~[?:?] at net.minecraft.client.resources.JsonReloadListener.func_212854_a_(JsonReloadListener.java:48) ~[?:?] at net.minecraft.client.resources.JsonReloadListener.func_212854_a_(JsonReloadListener.java:22) ~[?:?] at net.minecraft.client.resources.ReloadListener.func_215270_b(SourceFile:11) ~[?:?] at java.util.concurrent.CompletableFuture$AsyncSupply.run(CompletableFuture.java:1604) [?:1.8.0_442] at java.util.concurrent.CompletableFuture$AsyncSupply.exec(CompletableFuture.java:1596) [?:1.8.0_442] at java.util.concurrent.ForkJoinTask.doExec(ForkJoinTask.java:289) [?:1.8.0_442] at java.util.concurrent.ForkJoinPool$WorkQueue.runTask(ForkJoinPool.java:1056) [?:1.8.0_442] at java.util.concurrent.ForkJoinPool.runWorker(ForkJoinPool.java:1692) [?:1.8.0_442] at java.util.concurrent.ForkJoinWorkerThread.run(ForkJoinWorkerThread.java:175) [?:1.8.0_442] Caused by: java.io.EOFException: End of input at line 1 column 1 path $ at com.google.gson.stream.JsonReader.nextNonWhitespace(JsonReader.java:1393) ~[server-1.16.5-20210115.111550-extra.jar:?] at com.google.gson.stream.JsonReader.doPeek(JsonReader.java:549) ~[server-1.16.5-20210115.111550-extra.jar:?] at com.google.gson.stream.JsonReader.peek(JsonReader.java:425) ~[server-1.16.5-20210115.111550-extra.jar:?] at com.google.gson.internal.bind.TypeAdapters$29.read(TypeAdapters.java:716) ~[server-1.16.5-20210115.111550-extra.jar:?] at com.google.gson.internal.bind.TypeAdapters$29.read(TypeAdapters.java:714) ~[server-1.16.5-20210115.111550-extra.jar:?] at com.google.gson.internal.bind.TypeAdapters$35$1.read(TypeAdapters.java:910) ~[server-1.16.5-20210115.111550-extra.jar:?] at net.minecraft.util.JSONUtils.func_188173_a(SourceFile:493) ~[?:?] ... 10 more [18Feb2025 16:24:02.270] [Worker-Main-27/ERROR] [net.minecraft.client.resources.JsonReloadListener/]: Couldn't parse data file minecraft:rabbit_stew_from_red_mushroom from minecraft:recipes/rabbit_stew_from_red_mushroom.json com.google.gson.JsonParseException: java.io.EOFException: End of input at line 1 column 1 path $ at net.minecraft.util.JSONUtils.func_188173_a(SourceFile:495) ~[?:?] at net.minecraft.util.JSONUtils.func_193839_a(SourceFile:532) ~[?:?] at net.minecraft.client.resources.JsonReloadListener.func_212854_a_(JsonReloadListener.java:48) ~[?:?] at net.minecraft.client.resources.JsonReloadListener.func_212854_a_(JsonReloadListener.java:22) ~[?:?] at net.minecraft.client.resources.ReloadListener.func_215270_b(SourceFile:11) ~[?:?] at java.util.concurrent.CompletableFuture$AsyncSupply.run(CompletableFuture.java:1604) [?:1.8.0_442] at java.util.concurrent.CompletableFuture$AsyncSupply.exec(CompletableFuture.java:1596) [?:1.8.0_442] at java.util.concurrent.ForkJoinTask.doExec(ForkJoinTask.java:289) [?:1.8.0_442] at java.util.concurrent.ForkJoinPool$WorkQueue.runTask(ForkJoinPool.java:1056) [?:1.8.0_442] at java.util.concurrent.ForkJoinPool.runWorker(ForkJoinPool.java:1692) [?:1.8.0_442] at java.util.concurrent.ForkJoinWorkerThread.run(ForkJoinWorkerThread.java:175) [?:1.8.0_442] Caused by: java.io.EOFException: End of input at line 1 column 1 path $ at com.google.gson.stream.JsonReader.nextNonWhitespace(JsonReader.java:1393) ~[server-1.16.5-20210115.111550-extra.jar:?] at com.google.gson.stream.JsonReader.doPeek(JsonReader.java:549) ~[server-1.16.5-20210115.111550-extra.jar:?] at com.google.gson.stream.JsonReader.peek(JsonReader.java:425) ~[server-1.16.5-20210115.111550-extra.jar:?] at com.google.gson.internal.bind.TypeAdapters$29.read(TypeAdapters.java:716) ~[server-1.16.5-20210115.111550-extra.jar:?] at com.google.gson.internal.bind.TypeAdapters$29.read(TypeAdapters.java:714) ~[server-1.16.5-20210115.111550-extra.jar:?] at com.google.gson.internal.bind.TypeAdapters$35$1.read(TypeAdapters.java:910) ~[server-1.16.5-20210115.111550-extra.jar:?] at net.minecraft.util.JSONUtils.func_188173_a(SourceFile:493) ~[?:?] ... 10 more [18Feb2025 16:24:02.433] [Worker-Main-27/INFO] [com.minecraftabnormals.abnormals_core.core.AbnormalsCore/]: Loot Modification Manager has loaded 6 sets of modifiers [18Feb2025 16:24:02.441] [Worker-Main-27/INFO] [net.minecraft.item.crafting.RecipeManager/]: Skipping loading recipe farmersdelightintegrations:aquaculture/cutting/pollock as it's serializer returned null [18Feb2025 16:24:02.453] [Worker-Main-27/INFO] [net.minecraft.item.crafting.RecipeManager/]: Skipping loading recipe farmersdelightintegrations:aquaculture/cutting/piranha as it's serializer returned null [18Feb2025 16:24:02.453] [Worker-Main-27/ERROR] [net.minecraft.item.crafting.RecipeManager/]: Parsing error loading recipe culturaldelights:mat_rolling/mutton_sandwich: com.google.gson.JsonSyntaxException: Unknown item 'farmersdelight:mutton_sandwich' [18Feb2025 16:24:02.454] [Worker-Main-27/ERROR] [net.minecraft.item.crafting.RecipeManager/]: Parsing error loading recipe nethers_delight:mimicry/abnormals/endergetic/bollom_fruit_mimic: com.google.gson.JsonSyntaxException: Unknown item 'endergetic:bollom_fruit' [18Feb2025 16:24:02.462] [Worker-Main-27/INFO] [net.minecraft.item.crafting.RecipeManager/]: Skipping loading recipe decorative_blocks_abnormals:redbud_palisade as it's serializer returned null [18Feb2025 16:24:02.466] [Worker-Main-27/INFO] [net.minecraft.item.crafting.RecipeManager/]: Skipping loading recipe farmersdelightintegrations:aquaculture/cutting/pink_salmon as it's serializer returned null [18Feb2025 16:24:02.476] [Worker-Main-27/INFO] [net.minecraft.item.crafting.RecipeManager/]: Skipping loading recipe farmersdelightintegrations:forbidden_arcanus/bat_soup as it's serializer returned null [18Feb2025 16:24:02.482] [Worker-Main-27/INFO] [net.minecraft.item.crafting.RecipeManager/]: Skipping loading recipe decorative_blocks_abnormals:jacaranda_beam as it's serializer returned null [18Feb2025 16:24:02.485] [Worker-Main-27/INFO] [net.minecraft.item.crafting.RecipeManager/]: Skipping loading recipe decorative_blocks_abnormals:redbud_support as it's serializer returned null [18Feb2025 16:24:02.490] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [obfuscate] Found status: BETA Current: 0.6.3 Target: 0.6.3 [18Feb2025 16:24:02.491] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [fallingtree] Starting version check at https://raw.githubusercontent.com/RakSrinaNa/FallingTree/1.16.5/update.json [18Feb2025 16:24:02.502] [Worker-Main-27/INFO] [net.minecraft.item.crafting.RecipeManager/]: Skipping loading recipe farmersdelightintegrations:aquaculture/cutting/bayad as it's serializer returned null [18Feb2025 16:24:02.507] [Worker-Main-27/INFO] [net.minecraft.item.crafting.RecipeManager/]: Skipping loading recipe farmersdelightintegrations:aquaculture/cutting/perch as it's serializer returned null [18Feb2025 16:24:02.512] [Worker-Main-27/INFO] [net.minecraft.item.crafting.RecipeManager/]: Skipping loading recipe farmersdelightintegrations:aquaculture/cutting/capitaine as it's serializer returned null [18Feb2025 16:24:02.513] [Worker-Main-27/INFO] [net.minecraft.item.crafting.RecipeManager/]: Skipping loading recipe farmersdelightintegrations:crockpot/perogies as it's serializer returned null [18Feb2025 16:24:02.512] [Forge Version Check/WARN] [net.minecraftforge.fml.VersionChecker/]: Failed to process update information java.lang.NullPointerException: null at net.minecraftforge.fml.VersionChecker$1.openUrlString(VersionChecker.java:160) ~[forge:?] at net.minecraftforge.fml.VersionChecker$1.process(VersionChecker.java:187) ~[forge:?] at java.lang.Iterable.forEach(Iterable.java:75) [?:1.8.0_442] at net.minecraftforge.fml.VersionChecker$1.run(VersionChecker.java:128) [forge:?] [18Feb2025 16:24:02.513] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [fastleafdecay] Starting version check at http://olafkeijsers.net/fastleafdecay-update.json [18Feb2025 16:24:02.518] [Worker-Main-27/ERROR] [net.minecraft.item.crafting.RecipeManager/]: Parsing error loading recipe farmersdelightintegrations:example: com.google.gson.JsonSyntaxException: Missing modid, expected to find a string [18Feb2025 16:24:02.524] [Worker-Main-27/INFO] [net.minecraft.item.crafting.RecipeManager/]: Skipping loading recipe farmersdelightintegrations:aquaculture/cutting/synodontis as it's serializer returned null [18Feb2025 16:24:02.537] [Worker-Main-27/INFO] [net.minecraft.item.crafting.RecipeManager/]: Skipping loading recipe farmersdelightintegrations:aquaculture/cutting/pacific_halibut as it's serializer returned null [18Feb2025 16:24:02.538] [Worker-Main-27/INFO] [net.minecraft.item.crafting.RecipeManager/]: Skipping loading recipe farmersdelightintegrations:crockpot/watermelon_icle as it's serializer returned null [18Feb2025 16:24:02.558] [Worker-Main-27/INFO] [net.minecraft.item.crafting.RecipeManager/]: Skipping loading recipe decorative_blocks_abnormals:redbud_beam as it's serializer returned null [18Feb2025 16:24:02.563] [Worker-Main-27/ERROR] [net.minecraft.item.crafting.RecipeManager/]: Parsing error loading recipe nethers_delight:mimicry/abnormals/environmental/wisteria_sapling_mimic: com.google.gson.JsonSyntaxException: Unknown item 'environmental:wisteria_sapling' [18Feb2025 16:24:02.567] [Worker-Main-27/INFO] [net.minecraft.item.crafting.RecipeManager/]: Skipping loading recipe farmersdelightintegrations:aquaculture/cutting/blackfish as it's serializer returned null [18Feb2025 16:24:02.570] [Worker-Main-27/INFO] [net.minecraft.item.crafting.RecipeManager/]: Skipping loading recipe farmersdelightintegrations:aquaculture/cutting/boulti as it's serializer returned null [18Feb2025 16:24:02.573] [Worker-Main-27/INFO] [net.minecraft.item.crafting.RecipeManager/]: Skipping loading recipe farmersdelightintegrations:aquaculture/turtle_soup as it's serializer returned null [18Feb2025 16:24:02.582] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [fastleafdecay] Found status: UP_TO_DATE Current: v25.2 Target: null [18Feb2025 16:24:02.583] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [voidtotem] Starting version check at https://raw.githubusercontent.com/Affehund/VoidTotem/main/update.json [18Feb2025 16:24:02.589] [Worker-Main-27/INFO] [net.minecraft.item.crafting.RecipeManager/]: Skipping loading recipe farmersdelightintegrations:crockpot/potato_souffle as it's serializer returned null [18Feb2025 16:24:02.592] [Worker-Main-27/INFO] [net.minecraft.item.crafting.RecipeManager/]: Skipping loading recipe supplementaries:inspirations/flag_clear as it's serializer returned null [18Feb2025 16:24:02.615] [Worker-Main-27/INFO] [net.minecraft.item.crafting.RecipeManager/]: Skipping loading recipe farmersdelightintegrations:aquaculture/cutting/atlantic_halibut as it's serializer returned null [18Feb2025 16:24:02.619] [Worker-Main-27/ERROR] [net.minecraft.item.crafting.RecipeManager/]: Parsing error loading recipe bayou_blues:crafting/gooseberry_jam_cookie_bent: com.google.gson.JsonSyntaxException: Invalid pattern: each row must be the same width [18Feb2025 16:24:02.622] [Worker-Main-27/INFO] [net.minecraft.item.crafting.RecipeManager/]: Skipping loading recipe supplementaries:brass_lantern as it's serializer returned null [18Feb2025 16:24:02.627] [Worker-Main-27/INFO] [net.minecraft.item.crafting.RecipeManager/]: Skipping loading recipe supplementaries:inspirations/blackboard_clear as it's serializer returned null [18Feb2025 16:24:02.628] [Worker-Main-27/INFO] [net.minecraft.item.crafting.RecipeManager/]: Skipping loading recipe farmersdelightintegrations:aquaculture/cutting/tuna as it's serializer returned null [18Feb2025 16:24:02.629] [Worker-Main-27/INFO] [net.minecraft.item.crafting.RecipeManager/]: Skipping loading recipe farmersdelightintegrations:aquaculture/cutting/atlantic_herring as it's serializer returned null [18Feb2025 16:24:02.640] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [voidtotem] Found status: AHEAD Current: 1.16.5-1.4.0 Target: null [18Feb2025 16:24:02.640] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [bettermodsbutton] Starting version check at https://raw.githubusercontent.com/Fuzss/modresources/main/update/bettermodsbutton.json [18Feb2025 16:24:02.640] [Worker-Main-27/INFO] [net.minecraft.item.crafting.RecipeManager/]: Skipping loading recipe farmersdelightintegrations:aquaculture/cutting/carp as it's serializer returned null [18Feb2025 16:24:02.642] [Worker-Main-27/ERROR] [net.minecraft.item.crafting.RecipeManager/]: Parsing error loading recipe irregularchef:traffic_jam_roll: com.google.gson.JsonSyntaxException: Unknown item 'atmospheric:yucca_juice' [18Feb2025 16:24:02.644] [Worker-Main-27/INFO] [net.minecraft.item.crafting.RecipeManager/]: Skipping loading recipe supplementaries:inspirations/flag_dye as it's serializer returned null [18Feb2025 16:24:02.652] [Worker-Main-27/ERROR] [net.minecraft.item.crafting.RecipeManager/]: Parsing error loading recipe outer_end:sawmill/azure_stairs_from_azure_stems_sawing: com.google.gson.JsonSyntaxException: Unknown item tag 'outer_end:azure_stem' [18Feb2025 16:24:02.653] [Worker-Main-27/INFO] [net.minecraft.item.crafting.RecipeManager/]: Skipping loading recipe supplementaries:copper_lantern_2 as it's serializer returned null [18Feb2025 16:24:02.658] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [bettermodsbutton] Found status: UP_TO_DATE Current: 1.0.5 Target: null [18Feb2025 16:24:02.658] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [darkpaintings] Starting version check at https://updates.blamejared.com/get?n=darkpaintings&gv=1.16.5 [18Feb2025 16:24:02.659] [Worker-Main-27/INFO] [net.minecraft.item.crafting.RecipeManager/]: Skipping loading recipe farmersdelightintegrations:aquaculture/cutting/brown_shrooma as it's serializer returned null [18Feb2025 16:24:02.671] [Worker-Main-27/INFO] [net.minecraft.item.crafting.RecipeManager/]: Skipping loading recipe farmersdelightintegrations:aquaculture/cutting/muskellunge as it's serializer returned null [18Feb2025 16:24:02.676] [Worker-Main-27/INFO] [net.minecraft.item.crafting.RecipeManager/]: Skipping loading recipe farmersdelightintegrations:aquaculture/cutting/red_grouper as it's serializer returned null [18Feb2025 16:24:02.678] [Worker-Main-27/ERROR] [net.minecraft.item.crafting.RecipeManager/]: Parsing error loading recipe culturaldelights:avocado_leaf_carpet: com.google.gson.JsonSyntaxException: Unknown item 'culturaldelights:avocado_leaf_carpet' [18Feb2025 16:24:02.681] [Worker-Main-27/INFO] [net.minecraft.item.crafting.RecipeManager/]: Skipping loading recipe farmersdelightintegrations:crockpot/flower_salad as it's serializer returned null [18Feb2025 16:24:02.681] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [darkpaintings] Found status: BETA Current: 6.0.11 Target: 6.0.11 [18Feb2025 16:24:02.681] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [configmenusforge] Starting version check at https://raw.githubusercontent.com/Fuzss/modresources/main/update/configmenusforge.json [18Feb2025 16:24:02.681] [Worker-Main-27/INFO] [net.minecraft.item.crafting.RecipeManager/]: Skipping loading recipe farmersdelightintegrations:aquaculture/cutting/red_shrooma as it's serializer returned null [18Feb2025 16:24:02.682] [Worker-Main-27/INFO] [net.minecraft.item.crafting.RecipeManager/]: Skipping loading recipe farmersdelightintegrations:aquaculture/cutting/smallmouth_bass as it's serializer returned null [18Feb2025 16:24:02.690] [Worker-Main-27/INFO] [net.minecraft.item.crafting.RecipeManager/]: Skipping loading recipe farmersdelightintegrations:aquaculture/cutting/arapaima as it's serializer returned null [18Feb2025 16:24:02.694] [Worker-Main-27/ERROR] [net.minecraft.item.crafting.RecipeManager/]: Parsing error loading recipe outer_end:sawmill/azure_planks_from_vertical_azure_planks_sawing: com.google.gson.JsonSyntaxException: Unknown item 'outer_end:vertical_azure_planks' [18Feb2025 16:24:02.696] [Worker-Main-27/INFO] [net.minecraft.item.crafting.RecipeManager/]: Skipping loading recipe farmersdelightintegrations:crockpot/ceviche as it's serializer returned null [18Feb2025 16:24:02.698] [Worker-Main-27/INFO] [net.minecraft.item.crafting.RecipeManager/]: Skipping loading recipe farmersdelightintegrations:aquaculture/cutting/bluegill as it's serializer returned null [18Feb2025 16:24:02.698] [Worker-Main-27/INFO] [net.minecraft.item.crafting.RecipeManager/]: Skipping loading recipe copperpot:copper_pot_block_from_not_copper as it's serializer returned null [18Feb2025 16:24:02.701] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [configmenusforge] Found status: UP_TO_DATE Current: 1.2.0 Target: null [18Feb2025 16:24:02.701] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [attributefix] Starting version check at https://updates.blamejared.com/get?n=attributefix&gv=1.16.5 [18Feb2025 16:24:02.703] [Worker-Main-27/INFO] [net.minecraft.item.crafting.RecipeManager/]: Skipping loading recipe farmersdelightintegrations:aquaculture/cutting/catfish as it's serializer returned null [18Feb2025 16:24:02.707] [Worker-Main-27/INFO] [net.minecraft.item.crafting.RecipeManager/]: Skipping loading recipe farmersdelightintegrations:aquaculture/cutting/atlantic_cod as it's serializer returned null [18Feb2025 16:24:02.709] [Worker-Main-27/INFO] [net.minecraft.item.crafting.RecipeManager/]: Skipping loading recipe decorative_blocks_abnormals:redbud_seat as it's serializer returned null [18Feb2025 16:24:02.717] [Worker-Main-27/INFO] [net.minecraft.item.crafting.RecipeManager/]: Skipping loading recipe farmersdelightintegrations:aquaculture/cutting/brown_trout as it's serializer returned null [18Feb2025 16:24:02.724] [Worker-Main-27/INFO] [net.minecraft.item.crafting.RecipeManager/]: Skipping loading recipe farmersdelightintegrations:crockpot/pepper_popper as it's serializer returned null [18Feb2025 16:24:02.724] [Worker-Main-27/INFO] [net.minecraft.item.crafting.RecipeManager/]: Skipping loading recipe decorative_blocks_abnormals:jacaranda_palisade as it's serializer returned null [18Feb2025 16:24:02.727] [Worker-Main-27/INFO] [net.minecraft.item.crafting.RecipeManager/]: Skipping loading recipe farmersdelightintegrations:aquaculture/cutting/tambaqui as it's serializer returned null [18Feb2025 16:24:02.729] [Worker-Main-27/INFO] [net.minecraft.item.crafting.RecipeManager/]: Skipping loading recipe decorative_blocks_abnormals:jacaranda_seat as it's serializer returned null [18Feb2025 16:24:02.730] [Worker-Main-27/INFO] [net.minecraft.item.crafting.RecipeManager/]: Skipping loading recipe farmersdelightintegrations:crockpot/tropical_bouillabaisse as it's serializer returned null [18Feb2025 16:24:02.731] [Worker-Main-27/INFO] [net.minecraft.item.crafting.RecipeManager/]: Skipping loading recipe farmersdelightintegrations:aquaculture/cutting/rainbow_trout as it's serializer returned null [18Feb2025 16:24:02.734] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [attributefix] Found status: BETA Current: 10.1.4 Target: 10.1.4 [18Feb2025 16:24:02.735] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [conjurer_illager] Starting version check at http://changelogs.moddinglegacy.com/conjurer-illager.json [18Feb2025 16:24:02.735] [Worker-Main-27/INFO] [net.minecraft.item.crafting.RecipeManager/]: Skipping loading recipe farmersdelightintegrations:aquaculture/cutting/gar as it's serializer returned null [18Feb2025 16:24:02.739] [Worker-Main-27/INFO] [net.minecraft.item.crafting.RecipeManager/]: Skipping loading recipe decorative_blocks_abnormals:jacaranda_support as it's serializer returned null [18Feb2025 16:24:02.746] [Worker-Main-27/INFO] [net.minecraft.item.crafting.RecipeManager/]: Loaded 25 recipes [18Feb2025 16:24:02.782] [Worker-Main-27/INFO] [com.minecraftabnormals.abnormals_core.core.AbnormalsCore/]: Skipped advancement modifier "criteria" for advancement "minecraft:adventure/voluntary_exile" as its conditions were not met [18Feb2025 16:24:02.782] [Worker-Main-27/INFO] [com.minecraftabnormals.abnormals_core.core.AbnormalsCore/]: Skipped advancement modifier "display" for advancement "minecraft:adventure/voluntary_exile" as its conditions were not met [18Feb2025 16:24:02.783] [Worker-Main-27/INFO] [com.minecraftabnormals.abnormals_core.core.AbnormalsCore/]: Advancement Modification Manager has loaded 14 sets of modifiers [18Feb2025 16:24:03.105] [Worker-Main-27/ERROR] [net.minecraft.loot.LootTableManager/]: Couldn't parse loot table culturaldelights:blocks/avocado_leaf_carpet: com.google.gson.JsonSyntaxException: Expected name to be an item, was unknown string 'culturaldelights:avocado_leaf_carpet' [18Feb2025 16:24:03.352] [Worker-Main-27/ERROR] [net.minecraft.loot.LootTableManager/]: Couldn't parse loot table bountiful:blocks/bountyboard: com.google.gson.JsonSyntaxException: Missing ops, expected to find a JsonArray [18Feb2025 16:24:03.382] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [conjurer_illager] Found status: BETA Current: 1.0.13 Target: null [18Feb2025 16:24:03.382] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [goblintraders] Starting version check at https://mrcrayfish.com/modupdatejson?id=goblintraders [18Feb2025 16:24:03.460] [Worker-Main-27/WARN] [net.minecraft.loot.LootTableManager/]: Found validation problem in {extendedmushrooms:entities/sheep/poisonous_mushroom}.pools[1].entries[0]->{minecraft:entities/sheep}.pools[0].entries[0].functions[2]: Parameters [<parameter minecraft:killer_entity>] are not provided in this context [18Feb2025 16:24:03.460] [Worker-Main-27/WARN] [net.minecraft.loot.LootTableManager/]: Found validation problem in {extendedmushrooms:entities/sheep/glowshroom}.pools[1].entries[0]->{minecraft:entities/sheep}.pools[0].entries[0].functions[2]: Parameters [<parameter minecraft:killer_entity>] are not provided in this context [18Feb2025 16:24:03.460] [Worker-Main-27/WARN] [net.minecraft.loot.LootTableManager/]: Found validation problem in {extendedmushrooms:entities/sheep/brown_mushroom}.pools[1].entries[0]->{minecraft:entities/sheep}.pools[0].entries[0].functions[2]: Parameters [<parameter minecraft:killer_entity>] are not provided in this context [18Feb2025 16:24:03.460] [Worker-Main-27/WARN] [net.minecraft.loot.LootTableManager/]: Found validation problem in {extendedmushrooms:entities/sheep/slime_fungus}.pools[1].entries[0]->{minecraft:entities/sheep}.pools[0].entries[0].functions[2]: Parameters [<parameter minecraft:killer_entity>] are not provided in this context [18Feb2025 16:24:03.460] [Worker-Main-27/WARN] [net.minecraft.loot.LootTableManager/]: Found validation problem in {extendedmushrooms:entities/sheep/red_mushroom}.pools[1].entries[0]->{minecraft:entities/sheep}.pools[0].entries[0].functions[2]: Parameters [<parameter minecraft:killer_entity>] are not provided in this context [18Feb2025 16:24:03.460] [Worker-Main-27/WARN] [net.minecraft.loot.LootTableManager/]: Found validation problem in {extendedmushrooms:entities/sheep/honey_fungus}.pools[1].entries[0]->{minecraft:entities/sheep}.pools[0].entries[0].functions[2]: Parameters [<parameter minecraft:killer_entity>] are not provided in this context [18Feb2025 16:24:03.498] [Worker-Main-27/ERROR] [net.minecraft.advancements.AdvancementManager/]: Parsing error loading custom advancement theabyss:unlockthebook: Unknown item id 'theabyss:translationletter' [18Feb2025 16:24:03.571] [Worker-Main-27/INFO] [net.minecraft.advancements.AdvancementList/]: Loaded 3695 advancements [18Feb2025 16:24:03.580] [Worker-Main-27/ERROR] [net.blay09.mods.kleeslabs.KleeSlabs/]: Slab biotite_slab could not be found. [18Feb2025 16:24:03.580] [Worker-Main-27/ERROR] [net.blay09.mods.kleeslabs.KleeSlabs/]: Slab snow_bricks_slab_double could not be found. [18Feb2025 16:24:03.580] [Worker-Main-27/ERROR] [net.blay09.mods.kleeslabs.KleeSlabs/]: Slab sandy_bricks_slab_double could not be found. [18Feb2025 16:24:03.580] [Worker-Main-27/ERROR] [net.blay09.mods.kleeslabs.KleeSlabs/]: Slab charred_nether_brick_slab could not be found. [18Feb2025 16:24:03.580] [Worker-Main-27/ERROR] [net.blay09.mods.kleeslabs.KleeSlabs/]: Slab sandstone_bricks_slab_double could not be found. [18Feb2025 16:24:03.580] [Worker-Main-27/ERROR] [net.blay09.mods.kleeslabs.KleeSlabs/]: Slab sandstone_smooth_slab could not be found. [18Feb2025 16:24:03.580] [Worker-Main-27/ERROR] [net.blay09.mods.kleeslabs.KleeSlabs/]: Slab red_sandstone_bricks_slab_double could not be found. [18Feb2025 16:24:03.580] [Worker-Main-27/ERROR] [net.blay09.mods.kleeslabs.KleeSlabs/]: Slab red_sandstone_smooth_slab could not be found. [18Feb2025 16:24:03.580] [Worker-Main-27/ERROR] [net.blay09.mods.kleeslabs.KleeSlabs/]: Slab end_bricks_slab could not be found. [18Feb2025 16:24:03.580] [Worker-Main-27/ERROR] [net.blay09.mods.kleeslabs.KleeSlabs/]: Slab prismarine_slab could not be found. [18Feb2025 16:24:03.580] [Worker-Main-27/ERROR] [net.blay09.mods.kleeslabs.KleeSlabs/]: Slab prismarine_dark_slab could not be found. [18Feb2025 16:24:03.581] [Worker-Main-27/ERROR] [net.blay09.mods.kleeslabs.KleeSlabs/]: Slab prismarine_bricks_slab could not be found. [18Feb2025 16:24:03.581] [Worker-Main-27/ERROR] [net.blay09.mods.kleeslabs.KleeSlabs/]: Slab stone_diorite_slab could not be found. [18Feb2025 16:24:03.581] [Worker-Main-27/ERROR] [net.blay09.mods.kleeslabs.KleeSlabs/]: Slab stone_diorite_bricks_slab could not be found. [18Feb2025 16:24:03.581] [Worker-Main-27/ERROR] [net.blay09.mods.kleeslabs.KleeSlabs/]: Slab stone_granite_slab could not be found. [18Feb2025 16:24:03.582] [Worker-Main-27/ERROR] [net.blay09.mods.kleeslabs.KleeSlabs/]: Slab stone_granite_bricks_slab could not be found. [18Feb2025 16:24:03.582] [Worker-Main-27/ERROR] [net.blay09.mods.kleeslabs.KleeSlabs/]: Slab stone_andesite_slab could not be found. [18Feb2025 16:24:03.582] [Worker-Main-27/ERROR] [net.blay09.mods.kleeslabs.KleeSlabs/]: Slab stone_andesite_bricks_slab could not be found. [18Feb2025 16:24:03.582] [Worker-Main-27/ERROR] [net.blay09.mods.kleeslabs.KleeSlabs/]: Slab stone_basalt_slab could not be found. [18Feb2025 16:24:03.582] [Worker-Main-27/ERROR] [net.blay09.mods.kleeslabs.KleeSlabs/]: Slab stone_basalt_bricks_slab could not be found. [18Feb2025 16:24:03.582] [Worker-Main-27/ERROR] [net.blay09.mods.kleeslabs.KleeSlabs/]: Slab stained_clay_tiles_gray_slab could not be found. [18Feb2025 16:24:03.582] [Worker-Main-27/ERROR] [net.blay09.mods.kleeslabs.KleeSlabs/]: Slab stained_clay_tiles_magenta_slab could not be found. [18Feb2025 16:24:03.582] [Worker-Main-27/ERROR] [net.blay09.mods.kleeslabs.KleeSlabs/]: Slab stained_clay_tiles_cyan_slab could not be found. [18Feb2025 16:24:03.582] [Worker-Main-27/ERROR] [net.blay09.mods.kleeslabs.KleeSlabs/]: Slab stained_clay_tiles_blue_slab could not be found. [18Feb2025 16:24:03.584] [Worker-Main-27/ERROR] [net.blay09.mods.kleeslabs.KleeSlabs/]: Slab stained_clay_tiles_orange_slab could not be found. [18Feb2025 16:24:03.584] [Worker-Main-27/ERROR] [net.blay09.mods.kleeslabs.KleeSlabs/]: Slab stained_clay_tiles_red_slab could not be found. [18Feb2025 16:24:03.584] [Worker-Main-27/ERROR] [net.blay09.mods.kleeslabs.KleeSlabs/]: Slab stained_clay_tiles_yellow_slab could not be found. [18Feb2025 16:24:03.584] [Worker-Main-27/ERROR] [net.blay09.mods.kleeslabs.KleeSlabs/]: Slab stained_clay_tiles_light_blue_slab could not be found. [18Feb2025 16:24:03.584] [Worker-Main-27/ERROR] [net.blay09.mods.kleeslabs.KleeSlabs/]: Slab stained_clay_tiles_purple_slab could not be found. [18Feb2025 16:24:03.584] [Worker-Main-27/ERROR] [net.blay09.mods.kleeslabs.KleeSlabs/]: Slab stained_clay_tiles_silver_slab could not be found. [18Feb2025 16:24:03.584] [Worker-Main-27/ERROR] [net.blay09.mods.kleeslabs.KleeSlabs/]: Slab stained_clay_tiles_lime_slab could not be found. [18Feb2025 16:24:03.585] [Worker-Main-27/ERROR] [net.blay09.mods.kleeslabs.KleeSlabs/]: Slab stained_clay_tiles_green_slab could not be found. [18Feb2025 16:24:03.585] [Worker-Main-27/ERROR] [net.blay09.mods.kleeslabs.KleeSlabs/]: Slab stained_clay_tiles_black_slab could not be found. [18Feb2025 16:24:03.585] [Worker-Main-27/ERROR] [net.blay09.mods.kleeslabs.KleeSlabs/]: Slab stained_clay_tiles_brown_slab could not be found. [18Feb2025 16:24:03.585] [Worker-Main-27/ERROR] [net.blay09.mods.kleeslabs.KleeSlabs/]: Slab stained_clay_tiles_white_slab could not be found. [18Feb2025 16:24:03.585] [Worker-Main-27/ERROR] [net.blay09.mods.kleeslabs.KleeSlabs/]: Slab stained_clay_tiles_pink_slab could not be found. [18Feb2025 16:24:03.585] [Worker-Main-27/ERROR] [net.blay09.mods.kleeslabs.KleeSlabs/]: Slab stained_planks_gray_slab could not be found. [18Feb2025 16:24:03.585] [Worker-Main-27/ERROR] [net.blay09.mods.kleeslabs.KleeSlabs/]: Slab stained_planks_magenta_slab could not be found. [18Feb2025 16:24:03.585] [Worker-Main-27/ERROR] [net.blay09.mods.kleeslabs.KleeSlabs/]: Slab stained_planks_cyan_slab could not be found. [18Feb2025 16:24:03.586] [Worker-Main-27/ERROR] [net.blay09.mods.kleeslabs.KleeSlabs/]: Slab stained_planks_blue_slab could not be found. [18Feb2025 16:24:03.586] [Worker-Main-27/ERROR] [net.blay09.mods.kleeslabs.KleeSlabs/]: Slab stained_planks_orange_slab could not be found. [18Feb2025 16:24:03.586] [Worker-Main-27/ERROR] [net.blay09.mods.kleeslabs.KleeSlabs/]: Slab stained_planks_red_slab could not be found. [18Feb2025 16:24:03.586] [Worker-Main-27/ERROR] [net.blay09.mods.kleeslabs.KleeSlabs/]: Slab stained_planks_yellow_slab could not be found. [18Feb2025 16:24:03.586] [Worker-Main-27/ERROR] [net.blay09.mods.kleeslabs.KleeSlabs/]: Slab stained_planks_light_blue_slab could not be found. [18Feb2025 16:24:03.586] [Worker-Main-27/ERROR] [net.blay09.mods.kleeslabs.KleeSlabs/]: Slab stained_planks_purple_slab could not be found. [18Feb2025 16:24:03.586] [Worker-Main-27/ERROR] [net.blay09.mods.kleeslabs.KleeSlabs/]: Slab stained_planks_silver_slab could not be found. [18Feb2025 16:24:03.586] [Worker-Main-27/ERROR] [net.blay09.mods.kleeslabs.KleeSlabs/]: Slab stained_planks_lime_slab could not be found. [18Feb2025 16:24:03.586] [Worker-Main-27/ERROR] [net.blay09.mods.kleeslabs.KleeSlabs/]: Slab stained_planks_green_slab could not be found. [18Feb2025 16:24:03.586] [Worker-Main-27/ERROR] [net.blay09.mods.kleeslabs.KleeSlabs/]: Slab stained_planks_black_slab could not be found. [18Feb2025 16:24:03.587] [Worker-Main-27/ERROR] [net.blay09.mods.kleeslabs.KleeSlabs/]: Slab stained_planks_brown_slab could not be found. [18Feb2025 16:24:03.587] [Worker-Main-27/ERROR] [net.blay09.mods.kleeslabs.KleeSlabs/]: Slab stained_planks_white_slab could not be found. [18Feb2025 16:24:03.587] [Worker-Main-27/ERROR] [net.blay09.mods.kleeslabs.KleeSlabs/]: Slab stained_planks_pink_slab could not be found. [18Feb2025 16:24:03.587] [Worker-Main-27/ERROR] [net.blay09.mods.kleeslabs.KleeSlabs/]: Slab reed_block_slab could not be found. [18Feb2025 16:24:03.587] [Worker-Main-27/ERROR] [net.blay09.mods.kleeslabs.KleeSlabs/]: Slab thatch_slab_double could not be found. [18Feb2025 16:24:03.587] [Worker-Main-27/ERROR] [net.blay09.mods.kleeslabs.KleeSlabs/]: Slab icy_stone_slab could not be found. [18Feb2025 16:24:03.587] [Worker-Main-27/ERROR] [net.blay09.mods.kleeslabs.KleeSlabs/]: Slab fire_stone_slab could not be found. [18Feb2025 16:24:03.587] [Worker-Main-27/ERROR] [net.blay09.mods.kleeslabs.KleeSlabs/]: Slab stone_limestone_slab could not be found. [18Feb2025 16:24:03.587] [Worker-Main-27/ERROR] [net.blay09.mods.kleeslabs.KleeSlabs/]: Slab stone_marble_slab could not be found. [18Feb2025 16:24:03.587] [Worker-Main-27/ERROR] [net.blay09.mods.kleeslabs.KleeSlabs/]: Slab duskbound_block_slab_double could not be found. [18Feb2025 16:24:03.588] [Worker-Main-27/ERROR] [net.blay09.mods.kleeslabs.KleeSlabs/]: Slab magma_bricks_slab_double could not be found. [18Feb2025 16:24:03.588] [Worker-Main-27/ERROR] [net.blay09.mods.kleeslabs.KleeSlabs/]: Slab midori_block_slab_double could not be found. [18Feb2025 16:24:03.588] [Worker-Main-27/ERROR] [net.blay09.mods.kleeslabs.KleeSlabs/]: Slab iron_plate_slab_double could not be found. [18Feb2025 16:24:03.588] [Worker-Main-27/ERROR] [net.blay09.mods.kleeslabs.KleeSlabs/]: Slab polished_netherrack_bricks_slab could not be found. [18Feb2025 16:24:03.588] [Worker-Main-27/ERROR] [net.blay09.mods.kleeslabs.KleeSlabs/]: Slab soul_sandstone_slab_double could not be found. [18Feb2025 16:24:03.588] [Worker-Main-27/ERROR] [net.blay09.mods.kleeslabs.KleeSlabs/]: Slab soul_sandstone_bricks_slab_double could not be found. [18Feb2025 16:24:03.589] [Worker-Main-27/ERROR] [net.blay09.mods.kleeslabs.KleeSlabs/]: Slab soul_sandstone_smooth_slab could not be found. [18Feb2025 16:24:03.589] [Worker-Main-27/ERROR] [net.blay09.mods.kleeslabs.KleeSlabs/]: Slab bark_oak_slab could not be found. [18Feb2025 16:24:03.589] [Worker-Main-27/ERROR] [net.blay09.mods.kleeslabs.KleeSlabs/]: Slab bark_spruce_slab could not be found. [18Feb2025 16:24:03.589] [Worker-Main-27/ERROR] [net.blay09.mods.kleeslabs.KleeSlabs/]: Slab bark_birch_slab could not be found. [18Feb2025 16:24:03.589] [Worker-Main-27/ERROR] [net.blay09.mods.kleeslabs.KleeSlabs/]: Slab bark_jungle_slab could not be found. [18Feb2025 16:24:03.589] [Worker-Main-27/ERROR] [net.blay09.mods.kleeslabs.KleeSlabs/]: Slab bark_acacia_slab could not be found. [18Feb2025 16:24:03.589] [Worker-Main-27/ERROR] [net.blay09.mods.kleeslabs.KleeSlabs/]: Slab bark_dark_oak_slab could not be found. [18Feb2025 16:24:03.594] [Worker-Main-27/INFO] [ModdingLegacy/blue_skies/SkiesDataManager/]: Loaded 8 tool_handle_types [18Feb2025 16:24:03.595] [Worker-Main-27/INFO] [ModdingLegacy/blue_skies/SkiesDataManager/]: Loaded 34 snowcap_oven_freezing_recipes [18Feb2025 16:24:03.595] [Worker-Main-27/INFO] [ModdingLegacy/blue_skies/SkiesDataManager/]: Loaded 4 horizonite_forge_fuels [18Feb2025 16:24:03.596] [Worker-Main-27/INFO] [ModdingLegacy/blue_skies/SkiesDataManager/]: Loaded 11 snowcap_mushroom_freezing [18Feb2025 16:24:03.608] [Worker-Main-27/INFO] [ModdingLegacy/blue_skies/SkiesDataManager/]: Loaded 69 alchemy_recipes [18Feb2025 16:24:03.611] [Worker-Main-27/INFO] [ModdingLegacy/blue_skies/SkiesDataManager/]: Loaded 78 journal/entries [18Feb2025 16:24:03.612] [Worker-Main-27/INFO] [ModdingLegacy/blue_skies/SkiesDataManager/]: Loaded 3 journal/sections [18Feb2025 16:24:03.612] [Worker-Main-27/INFO] [ModdingLegacy/blue_skies/SkiesDataManager/]: Loaded 7 journal/requirements [18Feb2025 16:24:03.639] [Worker-Main-27/INFO] [com.minecraftabnormals.environmental.common.slabfish.SlabfishLoader/]: Loaded 56 Slabfish Types [18Feb2025 16:24:03.640] [Worker-Main-27/INFO] [com.minecraftabnormals.environmental.common.slabfish.SlabfishLoader/]: Loaded 16 Sweater Types [18Feb2025 16:24:03.640] [Worker-Main-27/INFO] [com.minecraftabnormals.environmental.common.slabfish.SlabfishLoader/]: Loaded 19 Backpack Types [18Feb2025 16:24:03.641] [Worker-Main-27/INFO] [ejektaflex.bountiful.BountifulMod/]: Loading Bounty Data. We will probably skip some data since certain mods are not loaded. [18Feb2025 16:24:03.655] [Worker-Main-27/INFO] [ejektaflex.bountiful.BountifulMod/]: Skipping load of bountiful:pools/simplytea/chef_objs as dependencies are not met: [simplytea] [18Feb2025 16:24:03.659] [Worker-Main-27/INFO] [ejektaflex.bountiful.BountifulMod/]: Skipping load of bountiful:pools/inspirations/farmer_rews as dependencies are not met: [inspirations] [18Feb2025 16:24:03.664] [Worker-Main-27/INFO] [ejektaflex.bountiful.BountifulMod/]: Skipping load of bountiful:pools/vanillafoodpantry/chef_objs as dependencies are not met: [vanillafoodpantry] [18Feb2025 16:24:03.667] [Worker-Main-27/INFO] [ejektaflex.bountiful.BountifulMod/]: Skipping load of bountiful:pools/apotheosis/fletcher_rews as dependencies are not met: [apotheosis] [18Feb2025 16:24:03.670] [Worker-Main-27/INFO] [ejektaflex.bountiful.BountifulMod/]: Skipping load of bountiful:pools/aquaculture/fisherman_rews as dependencies are not met: [aquaculture] [18Feb2025 16:24:03.671] [Worker-Main-27/INFO] [ejektaflex.bountiful.BountifulMod/]: Skipping load of bountiful:pools/mysticalworld/armorer_rews as dependencies are not met: [mysticalworld] [18Feb2025 16:24:03.673] [Worker-Main-27/INFO] [ejektaflex.bountiful.BountifulMod/]: Skipping load of bountiful:pools/charm/tinker_objs as dependencies are not met: [charm] [18Feb2025 16:24:03.673] [Worker-Main-27/INFO] [ejektaflex.bountiful.BountifulMod/]: Skipping load of bountiful:pools/mysticalworld/armorer_objs as dependencies are not met: [mysticalworld] [18Feb2025 16:24:03.675] [Worker-Main-27/INFO] [ejektaflex.bountiful.BountifulMod/]: Skipping load of bountiful:pools/aquaculture/fisherman_objs as dependencies are not met: [aquaculture] [18Feb2025 16:24:03.676] [Worker-Main-27/INFO] [ejektaflex.bountiful.BountifulMod/]: Skipping load of bountiful:pools/simplefarming/chef_objs as dependencies are not met: [simplefarming] [18Feb2025 16:24:03.677] [Worker-Main-27/INFO] [ejektaflex.bountiful.BountifulMod/]: Skipping load of bountiful:pools/upgrademodifiers/armorer_rews as dependencies are not met: [upgrademodifiers] [18Feb2025 16:24:03.678] [Worker-Main-27/INFO] [ejektaflex.bountiful.BountifulMod/]: Skipping load of bountiful:pools/charm/tinker_rews as dependencies are not met: [charm] [18Feb2025 16:24:03.680] [Worker-Main-27/INFO] [ejektaflex.bountiful.BountifulMod/]: Skipping load of bountiful:pools/storagedrawers/tinker_rews as dependencies are not met: [storagedrawers] [18Feb2025 16:24:03.685] [Worker-Main-27/INFO] [ejektaflex.bountiful.BountifulMod/]: Skipping load of bountiful:pools/inspirations/tinker_rews as dependencies are not met: [inspirations] [18Feb2025 16:24:03.687] [Worker-Main-27/INFO] [ejektaflex.bountiful.BountifulMod/]: Skipping load of bountiful:pools/farmingforblockheads/farmer_objs as dependencies are not met: [farmingforblockheads] [18Feb2025 16:24:03.689] [Worker-Main-27/INFO] [ejektaflex.bountiful.BountifulMod/]: Skipping load of bountiful:pools/upgrademodifiers/toolsmith_rews as dependencies are not met: [upgrademodifiers] [18Feb2025 16:24:03.690] [Worker-Main-27/INFO] [ejektaflex.bountiful.BountifulMod/]: Skipping load of bountiful:pools/mysticalworld/chef_objs as dependencies are not met: [mysticalworld] [18Feb2025 16:24:03.691] [Worker-Main-27/INFO] [ejektaflex.bountiful.BountifulMod/]: Skipping load of bountiful:pools/vanillafoodpantry/chef_rews as dependencies are not met: [vanillafoodpantry] [18Feb2025 16:24:03.692] [Worker-Main-27/INFO] [ejektaflex.bountiful.BountifulMod/]: Skipping load of bountiful:pools/inspirations/fletcher_rews as dependencies are not met: [inspirations] [18Feb2025 16:24:03.692] [Worker-Main-27/INFO] [ejektaflex.bountiful.BountifulMod/]: Skipping load of bountiful:pools/aquaculture/tinker_rews as dependencies are not met: [aquaculture] [18Feb2025 16:24:03.693] [Worker-Main-27/INFO] [ejektaflex.bountiful.BountifulMod/]: Skipping load of bountiful:pools/farmingforblockheads/farmer_rews as dependencies are not met: [farmingforblockheads] [18Feb2025 16:24:03.694] [Worker-Main-27/INFO] [ejektaflex.bountiful.BountifulMod/]: Skipping load of bountiful:pools/xlfoodmod/chef_objs as dependencies are not met: [xlfoodmod] [18Feb2025 16:24:03.695] [Worker-Main-27/INFO] [ejektaflex.bountiful.BountifulMod/]: Skipping load of bountiful:pools/mysticalworld/farmer_objs as dependencies are not met: [mysticalworld] [18Feb2025 16:24:03.696] [Worker-Main-27/INFO] [ejektaflex.bountiful.BountifulMod/]: Skipping load of bountiful:pools/simplefarming/farmer_objs as dependencies are not met: [simplefarming] [18Feb2025 16:24:03.697] [Worker-Main-27/INFO] [ejektaflex.bountiful.BountifulMod/]: Skipping load of bountiful:pools/xlfoodmod/chef_rews as dependencies are not met: [xlfoodmod] [18Feb2025 16:24:03.697] [Worker-Main-27/INFO] [ejektaflex.bountiful.BountifulMod/]: Skipping load of bountiful:pools/simplefarming/farmer_rews as dependencies are not met: [simplefarming] [18Feb2025 16:24:03.699] [Worker-Main-27/INFO] [ejektaflex.bountiful.BountifulMod/]: Found decrees: [hunting, butcher, mason, librarian, farmer, toolsmith, chef, mapper, armorer, fletcher, fisherman, cleric, leatherer, shepherd, tinker] [18Feb2025 16:24:03.699] [Worker-Main-27/INFO] [ejektaflex.bountiful.BountifulMod/]: Merging Entry Pools.. [18Feb2025 16:24:03.699] [Worker-Main-27/INFO] [ejektaflex.bountiful.BountifulMod/]: Validating Entry Pools.. [18Feb2025 16:24:03.699] [Worker-Main-27/INFO] [ejektaflex.bountiful.BountifulMod/]: Validating pool 'toolsmith_objs' [18Feb2025 16:24:03.700] [Worker-Main-27/INFO] [ejektaflex.bountiful.BountifulMod/]: Validating pool 'butcher_rews' [18Feb2025 16:24:03.701] [Worker-Main-27/INFO] [ejektaflex.bountiful.BountifulMod/]: Validating pool 'tinker_objs' [18Feb2025 16:24:03.701] [Worker-Main-27/INFO] [ejektaflex.bountiful.BountifulMod/]: Validating pool 'common_enchants' [18Feb2025 16:24:03.701] [Worker-Main-27/INFO] [ejektaflex.bountiful.BountifulMod/]: Validating pool 'fisherman_rews' [18Feb2025 16:24:03.701] [Worker-Main-27/INFO] [ejektaflex.bountiful.BountifulMod/]: Validating pool 'shepherd_objs' [18Feb2025 16:24:03.704] [Worker-Main-27/WARN] [ejektaflex.bountiful.BountifulMod/]: Invalid pool item: BountyEntry (item-tag) [Item: minecraft:wool, Amount: 0 [[4..32]], Worth: 250, NBT: null, Weight: 1000] [18Feb2025 16:24:03.704] [Worker-Main-27/WARN] [ejektaflex.bountiful.BountifulMod/]: Invalid pool item: BountyEntry (item-tag) [Item: forge:dyes, Amount: 0 [[2..16]], Worth: 200, NBT: null, Weight: 1000] [18Feb2025 16:24:03.704] [Worker-Main-27/INFO] [ejektaflex.bountiful.BountifulMod/]: Validating pool 'chef_objs' [18Feb2025 16:24:03.704] [Worker-Main-27/INFO] [ejektaflex.bountiful.BountifulMod/]: Validating pool 'toolsmith_rews' [18Feb2025 16:24:03.704] [Worker-Main-27/INFO] [ejektaflex.bountiful.BountifulMod/]: Validating pool 'fisherman_objs' [18Feb2025 16:24:03.704] [Worker-Main-27/WARN] [ejektaflex.bountiful.BountifulMod/]: Invalid pool item: BountyEntry (item) [Item: upgrade_aquatic:bedroll_leather, Amount: 0 [[1..1]], Worth: 2500, NBT: null, Weight: 1000] [18Feb2025 16:24:03.704] [Worker-Main-27/INFO] [ejektaflex.bountiful.BountifulMod/]: Validating pool 'leatherer_rews' [18Feb2025 16:24:03.704] [Worker-Main-27/INFO] [ejektaflex.bountiful.BountifulMod/]: Validating pool 'farmer_rews' [18Feb2025 16:24:03.704] [Worker-Main-27/INFO] [ejektaflex.bountiful.BountifulMod/]: Validating pool 'cleric_objs' [18Feb2025 16:24:03.704] [Worker-Main-27/INFO] [ejektaflex.bountiful.BountifulMod/]: Validating pool 'shepherd_rews' [18Feb2025 16:24:03.706] [Worker-Main-27/INFO] [ejektaflex.bountiful.BountifulMod/]: Validating pool 'farmer_objs' [18Feb2025 16:24:03.706] [Worker-Main-27/INFO] [ejektaflex.bountiful.BountifulMod/]: Validating pool 'tinker_rews' [18Feb2025 16:24:03.706] [Worker-Main-27/INFO] [ejektaflex.bountiful.BountifulMod/]: Validating pool 'butcher_objs' [18Feb2025 16:24:03.706] [Worker-Main-27/INFO] [ejektaflex.bountiful.BountifulMod/]: Validating pool 'librarian_objs' [18Feb2025 16:24:03.706] [Worker-Main-27/INFO] [ejektaflex.bountiful.BountifulMod/]: Validating pool 'common_crafts' [18Feb2025 16:24:03.706] [Worker-Main-27/INFO] [ejektaflex.bountiful.BountifulMod/]: Validating pool 'librarian_rews' [18Feb2025 16:24:03.706] [Worker-Main-27/INFO] [ejektaflex.bountiful.BountifulMod/]: Validating pool 'armorer_objs' [18Feb2025 16:24:03.706] [Worker-Main-27/INFO] [ejektaflex.bountiful.BountifulMod/]: Validating pool 'mason_objs' [18Feb2025 16:24:03.706] [Worker-Main-27/INFO] [ejektaflex.bountiful.BountifulMod/]: Validating pool 'hunting_objs' [18Feb2025 16:24:03.706] [Worker-Main-27/INFO] [ejektaflex.bountiful.BountifulMod/]: Validating pool 'hunting_rews' [18Feb2025 16:24:03.706] [Worker-Main-27/INFO] [ejektaflex.bountiful.BountifulMod/]: Validating pool 'all_villager_objs' [18Feb2025 16:24:03.708] [Worker-Main-27/INFO] [ejektaflex.bountiful.BountifulMod/]: Validating pool 'armorer_rews' [18Feb2025 16:24:03.708] [Worker-Main-27/INFO] [ejektaflex.bountiful.BountifulMod/]: Validating pool 'cleric_rews' [18Feb2025 16:24:03.708] [Worker-Main-27/INFO] [ejektaflex.bountiful.BountifulMod/]: Validating pool 'all_villager_rews' [18Feb2025 16:24:03.708] [Worker-Main-27/INFO] [ejektaflex.bountiful.BountifulMod/]: Validating pool 'chef_rews' [18Feb2025 16:24:03.708] [Worker-Main-27/INFO] [ejektaflex.bountiful.BountifulMod/]: Validating pool 'fletcher_objs' [18Feb2025 16:24:03.709] [Worker-Main-27/INFO] [ejektaflex.bountiful.BountifulMod/]: Validating pool 'mapper_rews' [18Feb2025 16:24:03.709] [Worker-Main-27/WARN] [ejektaflex.bountiful.BountifulMod/]: Invalid pool item: BountyEntry (item-tag) [Item: minecraft:banners, Amount: 0 [[1..3]], Worth: 750, NBT: null, Weight: 400] [18Feb2025 16:24:03.709] [Worker-Main-27/INFO] [ejektaflex.bountiful.BountifulMod/]: Validating pool 'leatherer_objs' [18Feb2025 16:24:03.709] [Worker-Main-27/INFO] [ejektaflex.bountiful.BountifulMod/]: Validating pool 'fletcher_rews' [18Feb2025 16:24:03.709] [Worker-Main-27/INFO] [ejektaflex.bountiful.BountifulMod/]: Validating pool 'mapper_objs' [18Feb2025 16:24:03.709] [Worker-Main-27/INFO] [ejektaflex.bountiful.BountifulMod/]: Validating pool 'mason_rews' [18Feb2025 16:24:03.709] [Worker-Main-27/INFO] [ejektaflex.bountiful.BountifulMod/]: Found Entry Pools: [hunting, butcher, mason, librarian, farmer, toolsmith, chef, mapper, armorer, fletcher, fisherman, cleric, leatherer, shepherd, tinker] [18Feb2025 16:24:03.862] [ModernFix blockstate cache rebuild thread/INFO] [snowrealmagic/]: Serene Seasons compatibility enabled [18Feb2025 16:24:03.991] [main/INFO] [STDOUT/]: [tschipp.carryon.common.handler.ListHandler:initConfigLists:282]: [chipped:black_stained_glass, chipped:lime_terracotta, forge:ores/biotite, forge:mushroom_caps/orange, quark:planks_vertical_slab, byg:ground_silver_vase_flower, chipped:dark_oak_planks, forge:storage_blocks/netherite, forge:glass_panes/white, biomesoplenty:hellbark_logs, supplementaries:beams, chipped:yellow_stained_glass_pane, forge:terracotta/lime, forge:glass_panes/light_gray, byg:maple_logs, chipped:jack_o_lantern, chipped:light_gray_wool, forge:storage_blocks/ametrine, farmersdelight:heat_sources, forge:glass/pink, forge:chests, forge:storage_blocks/emerald, forge:ores/redstone, chipped:white_carpet, ftbchunks:interact_whitelist, carryon:block_blacklist, chipped:red_concrete, structure_gel:gel, forge:fence_gates, forge:storage_blocks/carminite, byg:ground_araucaria_sapling, cataclysm:altar_destroy_immune, byg:ground_pine_sapling, forge:storage_blocks/copper, atmospheric:rosewood_logs, byg:ground_witch_hazel_sapling, darkerdepths:underground_base_blocks, byg:ground_purple_sage, chipped:cyan_stained_glass_pane, byg:willow_logs, extendedmushrooms:mushroom_buttons/wool, twilightforest:dark_tower_excluded_pots, woolplates:woolplates, upgrade_aquatic:river_logs, extendedmushrooms:mushroom_buttons/wood, forge:storage_blocks/lapis, chipped:brown_concrete, cavesandcliffs:stone_ore_replaceables, forge:black_sand, chipped:green_carpet, forge:mushrooms/poisonous, supplementaries:posts, buzzier_bees:dyed_candles, forge:terracotta/orange, twilightforest:annihilation_inclusions, chipped:pink_stained_glass, chipped:cyan_concrete, byg:ground_begonia, extendedmushrooms:mushroom_slabs, byg:ground_orange_birch_sapling, forge:terracotta/blue, forge:glass/white, forge:glass_panes/red, farmersdelight:mushroom_colony_growable_on, biomesoplenty:willow_logs, chipped:redstone_lamp, forge:mushroom_caps, chipped:spruce_planks, blue_skies:ores/diopside, byg:ground_california_poppy, byg:ground_mangrove_sapling, chipped:lantern, extendedmushrooms:mushroom_chests_trapped, endergetic:poise_stems, blue_skies:ores/aquite, forge:sand/colorless, chipped:light_gray_carpet, chipped:lime_wool, quark:wooden_vertical_slabs, nethers_delight:unaffected_by_rich_soul_soil, minecraft:soul_speed_blocks, byg:pink_sand, minecraft:walls, environmental:cherry_logs, betterendforge:end_ground, ftbchunks:edit_whitelist, minecraft:sand, byg:ground_mini_cactus, copperpot:partial_fume_inhibitors, cavesandcliffs:occludes_vibration_signals, minecraft:campfires, supplementaries:vine_support, minecraft:infiniburn_nether, byg:ground_red_oak_sapling, forge:glass/blue, forge:supports_conduit, chipped:soul_sand, minecraft:wooden_trapdoors, forge:storage_blocks/coal, byg:imparius_stems, forge:glass/light_blue, forge:ores/thallasium, forge:terracotta/purple, jade:pick, forge:terracotta/black, chipped:light_blue_carpet, blue_skies:dungeon/aquatic, chipped:white_stained_glass, forge:sandstone/red, byg:ground_pink_anemone, minecraft:wooden_doors, chipped:lime_carpet, forge:terracotta/light_blue, forge:glass/purple, minecraft:crimson_stems, forge:purple_sand, blue_skies:storage_blocks/charoite, chipped:shroomlight, quark:hedges, forge:mushrooms/red, chipped:crimson_planks, byg:embur_pedus, byg:black_sand, byg:ground_yellow_tulip, chipped:obsidian, chipped:yellow_stained_glass, chipped:soul_lantern, minecraft:wall_corals, forge:grass, byg:ground_yellow_spruce_sapling, forge:sand/purple, byg:ground_yellow_daffodil, forge:ores/gold, byg:ground_azalea, twilightforest:fences, biomesoplenty:palm_logs, byg:cherry_logs, chipped:green_terracotta, chipped:blue_stained_glass_pane, chipped:brown_terracotta, chipped:acacia_planks, forge:glass/lime, forge:chests/wooden, chipped:red_nether_bricks, chipped:vine, buzzier_bees:candles, bayou_blues:cypress_logs, cataclysm:netherite_monstrosity_immune, chipped:lime_concrete, forge:mushroom_stems/green, minecraft:base_stone_overworld, minecraft:carpets, byg:ground_iris, blue_skies:storage_blocks/pyrope, minecraft:stone_bricks, forge:glass/orange, forge:mushroom_caps/purple, forge:mushrooms/glowshroom, byg:ground_peach_leather_flower, minecraft:slabs, minecraft:guarded_by_piglins, byg:ground_japanese_orchid, byg:ground_blue_spruce_sapling, cataclysm:ender_golem_can_destroy, minecraft:buttons, chipped:blue_wool, byg:ground_green_enchanted_sapling, byg:green_enchanted_logs, minecraft:rails, minecraft:strider_warm_blocks, extendedmushrooms:mushroom_planks, byg:ground_palo_verde_sapling, byg:ground_winter_succulent, minecraft:wooden_pressure_plates, biomesoplenty:redwood_logs, byg:sythian_stems, chipped:red_carpet, biomesoplenty:jacaranda_logs, supplementaries:concrete_powders, minecraft:gold_ores, byg:ground_lament_sapling, backpacked:funnelling, neapolitan:vanilla_plantable_on, chipped:andesite, neapolitan:unaffected_by_mint, farmersdelight:unaffected_by_rich_soil, chipped:yellow_terracotta, cataclysm:netherite_monstrosity_break, twilightforest:twilight_oak_logs, forge:gravel, biomesoplenty:magic_logs, chipped:cyan_stained_glass, chipped:clay, forge:glass_panes/light_blue, forge:ores/netherite_scrap, minecraft:crops, quark:quilted_wools, forge:fiber/flax, byg:zelkova_logs, chipped:purple_stained_glass, chipped:purple_terracotta, minecraft:warped_stems, byg:ground_lazarus_bellflower, forge:storage_blocks/iron, forge:glass_panes/brown, forge:mushrooms/jump_boosting, byg:ground_tall_prairie_grass, forge:ores/lignite, minecraft:climbable, byg:ground_redwood_sapling, snowrealmagic:invalid_supporters, chipped:netherrack, minecraft:dark_oak_logs, minecraft:coral_plants, farmersdelight:tray_heat_sources, atmospheric:kousa_logs, forge:blue_sand, forge:mushrooms, chipped:pink_stained_glass_pane, chipped:cyan_carpet, byg:ground_foxglove, supplementaries:pane_connection, byg:skyris_logs, minecraft:fences, autumnity:snail_foods, minecraft:saplings, forge:ores/copper, forge:storage_blocks/knightmetal, minecraft:unstable_bottom_center, byg:white_sand, byg:ground_palm_sapling, minecraft:banners, minecraft:wooden_fences, chipped:hay_block, twilightforest:transwood_logs, forge:obsidian, forge:enderman_place_on_blacklist, byg:ground_alpine_bellflower, forge:storage_blocks/fiery, biomesoplenty:mahogany_logs, byg:ground_baobab_sapling, twilightforest:ore_magnet/minecraft/end_stone, supplementaries:pouring_tank, forge:glass/magenta, chipped:torch, forge:ores/coal, forge:terracotta/yellow, minecraft:base_stone_nether, chipped:gray_terracotta, carryon:block_whitelist, forge:mushrooms/purple, forge:sand/white, forge:workbench, forge:storage_blocks/pendorite, byg:ground_flowering_indigo_jacaranda_bush, minecraft:trapdoors, forge:glass/cyan, forge:glass, forge:ores/ironwood, extendedmushrooms:mushroom_ladders, byg:baobab_logs, savageandravage:gloomy_tiles, atmospheric:yucca_logs, byg:mahogany_logs, forge:stained_glass_panes, byg:lament_logs, copperpot:fume_inhibitors, forge:workbenches, autumnity:slippery_snail_slime_blocks, byg:ground_blue_enchanted_sapling, chipped:sea_lantern, endergetic:ender_fire_base_blocks, forge:glass/gray, chipped:light_blue_wool, cavesandcliffs:moss_replaceable, byg:ground_cika_sapling, cavesandcliffs:geode_invalid_blocks, chipped:pink_carpet, forge:glass_panes/black, farmersdelight:wild_crops, forge:mushrooms/brown, outer_end:azure_foliage, byg:ground_willow_sapling, betterendforge:mossy_glowshroom_logs, forge:glass_panes/blue, forge:mushroom_caps/brown, byg:redwood_logs, extendedmushrooms:mushroom_fence_gates, forge:mushroom_caps/glowshroom, forge:terracotta/light_gray, twilightforest:fence_gates, forge:stone, chipped:pumpkin, byg:rainbow_eucalyptus_logs, minecraft:infiniburn_end, chipped:warped_wart_block, forge:glass_panes/yellow, byg:ground_white_sage, blue_skies:ores/moonstone, cavesandcliffs:dripstone_replaceable_blocks, biomesoplenty:cherry_logs, diagonalfences:non_diagonal_fences, byg:blue_enchanted_logs, betterendforge:tenanea_logs, blue_skies:storage_blocks/moonstone, farmersdelight:heat_conductors, byg:palm_logs, blue_skies:logs/cherry, minecraft:shulker_boxes, extendedmushrooms:mushroom_trapdoors, chipped:orange_wool, byg:ground_bistort, twilightforest:ore_magnet/twilightforest/root, minecraft:birch_logs, chipped:crimson_roots, create:fan_heaters, byg:ground_rose, cavesandcliffs:candle_cakes, byg:bookshelves, byg:aspen_logs, blue_skies:storage_blocks/horizonite, quark:pike_trophies, byg:ground_nightshade_sapling, chipped:purple_concrete, blue_skies:crafting_tables, chipped:redstone_torch, betterendforge:jellyshroom_logs, minecraft:oak_logs, forge:needs_netherite_tool, chipped:magenta_carpet, byg:purple_sand, blue_skies:dungeon/life, byg:ground_golden_spined_cactus, forge:ores/lapis, blue_skies:dungeon/illager_teleportable, forge:dirt, minecraft:bamboo_plantable_on, minecraft:pressure_plates, chipped:glass_pane, betterendforge:dragon_tree_logs, minecraft:jungle_logs, byg:ground_zelkova_sapling, forge:white_sand, minecraft:spruce_logs, chipped:cobblestone, chipped:purpur_block, forge:fence_gates/wooden, chipped:brown_mushroom, forge:glass_panes/lime, sereneseasons:spring_crops, chipped:red_stained_glass, chipped:dark_prismarine, forge:mushroom_stems/glowshroom, outer_end:crystal_blocks, byg:ground_lolipop_flower, extendedmushrooms:mushroom_bookshelves, twilightforest:carminite_reactor_immune, minecraft:flowers, byg:ground_red_spruce_sapling, byg:cika_logs, forge:terracotta/brown, betterendforge:pythadendron_logs, chipped:blue_carpet, byg:ground_crocus, forge:ores/pendorite, minecraft:fence_gates, chipped:basalt, forge:ores, cataclysm:endermaptera_can_not_spawn, forge:storage_blocks/diamond, byg:ground_firecracker_flower_bush, minecraft:nylium, byg:holly_logs, supplementaries:hang_from_ropes, blue_skies:vines, chipped:jungle_planks, byg:pine_logs, forge:glass_panes/magenta, blue_skies:dungeon/keystone, byg:ground_kovan_flower, byg:ground_maple_sapling, blue_skies:logs/bluebright, chipped:light_blue_concrete, cavesandcliffs:features_cannot_replace, forge:mushrooms/edible, nethers_delight:soul_compost_activators, betterendforge:gen_terrain, quark:stools, chipped:light_gray_stained_glass_pane, chipped:black_stained_glass_pane, chipped:green_concrete, chipped:gilded_blackstone, byg:ground_green_tulip, quark:candles, minecraft:dragon_immune, forge:glass/red, byg:blue_sand, blue_skies:ores/charoite, chipped:nether_wart_block, byg:ground_cypress_sapling, twilightforest:structure_banned_interactions, chipped:red_mushroom_block, chipped:blackstone, forge:mushroom_stems/colorless, forge:glass_panes/green, extendedmushrooms:mushroom_fences, betterendforge:end_lotus_logs, minecraft:prevent_mob_spawning_inside, forge:flowers, forge:fiber, forge:chests/trapped, snowrealmagic:bottom_snow, forge:bushes, twilightforest:portal/fluid, forge:storage_blocks/arctic_fur, forge:sandstone, forge:glass_panes/colorless, chipped:end_stone, blue_skies:logs/dusk, chipped:magenta_stained_glass_pane, cavesandcliffs:deepslate_ore_replaceables, twilightforest:canopy_logs, forge:storage_blocks/steeleaf, darkerdepths:grimestone_replacement, chipped:cyan_terracotta, twilightforest:antibuilder_ignores, blue_skies:storage_blocks/diopside, byg:ground_orange_oak_sapling, chipped:warped_planks, minecraft:beds, forge:ores/diamond, minecraft:doors, minecraft:infiniburn_overworld, minecraft:flower_pots, chipped:melon, byg:ground_flowering_jacaranda_bush, chipped:black_concrete, twilightforest:trophies, byg:ground_osiria_rose, chipped:red_wool, byg:palo_verde_logs, minecraft:signs, chipped:pink_terracotta, minecraft:wither_summon_base_blocks, chipped:magenta_wool, chipped:magenta_terracotta, byg:fir_logs, minecraft:hoglin_repellents, twilightforest:towerwood, extendedmushrooms:mushroom_doors, byg:ground_brown_birch_sapling, chipped:magenta_concrete, outer_end:crystal_buds, chipped:orange_stained_glass, blue_skies:dungeon/poison, extendedmushrooms:mushroom_chests, byg:ground_orchard_sapling, endergetic:end_plantable, blue_skies:dungeon/blinding, atmospheric:yucca_plantable_on, forge:terracotta/red, chipped:purple_wool, chipped:nether_sprouts, enhanced_mushrooms:glowshroom_stems, chipped:blue_terracotta, byg:ground_ebony_sapling, twilightforest:fire_jet_fuel, forge:storage_blocks/charcoal, outer_end:end_plantable_on, byg:ground_red_cornflower, minecraft:coral_blocks, forge:glass/green, byg:ground_rainbow_eucalyptus_sapling, atmospheric:aspen_logs, minecraft:underwater_bonemeals, blue_skies:ores/pyrope, minecraft:impermeable, forge:end_stones, biomesoplenty:fir_logs, chipped:crimson_fungus, chipped:yellow_carpet, forge:mushroom_caps/red, forge:sandstone/colorless, chipped:gray_concrete, supplementaries:walls, forge:fences/wooden, sereneseasons:summer_crops, forge:storage_blocks, forge:glass_panes/orange, chipped:green_stained_glass_pane, atmospheric:grimwood_logs, forge:ores/quartz, chipped:red_sandstone, chipped:glowstone, byg:ground_silver_maple_sapling, byg:ground_skyris_sapling, forge:saplings, blue_skies:storage_blocks/ventium, chipped:green_stained_glass, forge:storage_blocks/redstone, byg:withering_oak_logs, extendedmushrooms:mushroom_pressure_plates/wool, twilightforest:ore_magnet/minecraft/stone, minecraft:stairs, quark:underground_biome_replaceable, sereneseasons:unbreakable_infertile_crops, minecraft:logs, byg:ground_pink_cherry_sapling, byg:ground_brown_zelkova_sapling, byg:ground_holly_sapling, chipped:oak_planks, blue_skies:logs/frostbright, minecraft:valid_spawn, minecraft:mushroom_grow_block, quark:wraith_spawnable, extendedmushrooms:mushroom_pressure_plates/wood, autumnity:maple_logs, forge:mushroom_stems/orange, extendedmushrooms:mushroom_pressure_plates, chipped:brown_mushroom_block, sereneseasons:autumn_crops, quark:slime_blocks, byg:ground_incan_lily, abundance:jacaranda_logs, quark:vertical_slab, forge:storage_blocks/ironwood, chipped:purple_stained_glass_pane, betterendforge:lucernia_logs, chipped:red_terracotta, cavesandcliffs:small_dripleaf_placeable, cataclysm:ender_guardian_can_destroy, byg:ground_red_birch_sapling, blue_skies:cobblestone, minecraft:beacon_base_blocks, twilightforest:darkwood_logs, minecraft:anvil, chipped:white_concrete, forge:ores/ender, forge:sand, sereneseasons:greenhouse_glass, chipped:gray_stained_glass, byg:ground_yellow_birch_sapling, byg:ground_torch_ginger, blue_skies:ores/horizonite, chipped:light_blue_terracotta, forge:terracotta/magenta, chipped:granite, snowrealmagic:containables, minecraft:piglin_repellents, byg:ground_delphinium, forge:glass/black, minecraft:portals, snowrealmagic:not_containables, forge:fences/nether_brick, chipped:pink_wool, forge:ores/iron, chipped:orange_terracotta, twilightforest:logs, forge:storage_blocks/biotite, chipped:birch_planks, blue_skies:logs/starlit, extendedmushrooms:mushroom_buttons, minecraft:wooden_stairs, minecraft:wooden_buttons, cavesandcliffs:inside_step_sound_blocks, quark:crystal, biomesoplenty:umbran_logs, forge:terracotta/cyan, forge:storage_blocks/anthracite, forge:storage_blocks/quartz, byg:ground_brown_oak_sapling, chipped:pink_concrete, byg:ground_joshua_sapling, extendedmushrooms:mushroom_carpets, byg:cypress_logs, forge:ores/emerald, blue_skies:stone, chipped:red_mushroom, minecraft:corals, forge:terracotta/green, quark:foxhound_spawnable, byg:ground_prickly_pear_cactus, forge:barrels/wooden, upgrade_aquatic:driftwood_logs, blue_skies:storage_blocks/aquite, atmospheric:morado_logs, endergetic:chorus_plantable, byg:bulbis_stems, byg:ground_indigo_jacaranda_sapling, chipped:crying_obsidian, minecraft:bee_growables, abundance:redbud_logs, minecraft:tall_flowers, extendedmushrooms:mushrooms/edible, forge:sand/black, forge:bookshelves, minecraft:stone_pressure_plates, cavesandcliffs:lush_ground_replaceable, supplementaries:palisades, forge:glass_panes/pink, chipped:lime_stained_glass, byg:ground_angelica, minecraft:dirt, forge:netherrack, minecraft:soul_fire_base_blocks, chipped:brown_stained_glass_pane, forge:crops/flax, byg:ground_fir_sapling, byg:ground_purple_tulip, chipped:gray_stained_glass_pane, chipped:lily_pad, forge:terracotta/white, forge:glass_panes/cyan, forge:mushroom_caps/lime, chipped:cyan_wool, minecraft:wool, forge:glass/colorless, minecraft:beehives, twilightforest:timewood_logs, blue_skies:logs/maple, minecraft:ice, byg:ground_guzmania, chipped:stone, chipped:gray_wool, forge:stained_glass, blue_skies:storage_blocks/falsite, twilightforest:mangrove_logs, cavesandcliffs:candles, chipped:brown_carpet, byg:ground_tall_allium, cavesandcliffs:crystal_sound_blocks, byg:ground_white_cherry_sapling, twilightforest:sortwood_logs, farmersdelight:compost_activators, quark:ladders, forge:glass_panes, minecraft:non_flammable_wood, forge:sand/pink, enhanced_mushrooms:red_mushroom_stems, chipped:blue_stained_glass, extendedmushrooms:mushroom_signs, chipped:gray_carpet, byg:nightshade_logs, twilightforest:mining_logs, byg:ground_violet_leather_flower, cavesandcliffs:cauldrons, minecraft:mineable/pickaxe, chipped:white_terracotta, minecraft:enderman_holdable, forge:mushroom_stems, byg:ground_orange_daisy, minecraft:wall_post_override, byg:ground_magenta_tulip, chipped:purple_carpet, chipped:dried_kelp_block, chipped:green_wool, byg:ground_pink_orchid, chipped:prismarine, byg:ground_tall_pink_allium, byg:ground_purple_orchid, minecraft:fire, cavesandcliffs:cave_vines, minecraft:wall_signs, quark:vertical_slabs, forge:mushrooms/lime, blue_skies:dungeon/nature, chipped:white_wool, byg:ground_protea_flower, byg:ground_black_rose, betterendforge:lacugrove_logs, quark:crab_spawnable, chipped:black_carpet, chipped:yellow_wool, forge:storage_blocks/lignite, forge:needs_wood_tool, minecraft:leaves, buzzier_bees:flower_blacklist, enhanced_mushrooms:brown_mushroom_stems, byg:ground_ether_sapling, byg:mangrove_logs, byg:witch_hazel_logs, forge:glass_panes/gray, minecraft:wither_immune, chipped:black_terracotta, minecraft:acacia_logs, elevatorid:elevators, cataclysm:ignis_can_destroy_cracked_block, forge:terracotta/gray, atmospheric:passion_vine_growable_on, forge:sand/red, forge:glass/brown, byg:ground_jacaranda_sapling, betterendforge:umbrella_tree_logs, chipped:light_gray_terracotta, minecraft:logs_that_burn, forge:glass/light_gray, twilightforest:ore_magnet/minecraft/netherrack, byg:ground_blue_sage, minecraft:wooden_slabs, chipped:red_stained_glass_pane, minecraft:small_flowers, blue_skies:logs/lunar, chipped:orange_stained_glass_pane, byg:ground_aspen_sapling, chipped:diorite, chipped:light_blue_stained_glass, forge:ores/knightmetal, supplementaries:rope_support, sereneseasons:winter_crops, chipped:orange_concrete, twilightforest:portal/decoration, byg:ground_horseweed, chipped:sandstone, supplementaries:water_holder, forge:ores/amber, betterendforge:helix_tree_logs, forge:mushrooms/orange, twilightforest:ore_magnet/ore_safe_replace_block, byg:ground_withering_oak_sapling, blue_skies:logs/crystallized, environmental:willow_logs, byg:ether_logs, minecraft:standing_signs, blue_skies:ores/falsite, extendedmushrooms:mushroom_growing_blocks_lightlevel, byg:ground_richea, minecraft:wart_blocks, forge:mushrooms/slowing_down, cavesandcliffs:snow, extendedmushrooms:mushroom_stairs, chipped:cobweb, neapolitan:chimpanzee_jumping_blocks, chipped:brown_stained_glass, chipped:nether_bricks, byg:ground_red_orchid, forge:ores/silver, byg:ground_pink_daffodil, forge:glass_panes/purple, forge:glass/yellow, environmental:grass_like, chipped:lime_stained_glass_pane, chipped:carved_pumpkin, blue_skies:bookshelves, twilightforest:ore_magnet/block_replace_ore, minecraft:piglin_repellants, byg:ground_pink_allium, forge:ores/anthracite, forge:barrels, chipped:yellow_concrete, forge:pink_sand, blue_skies:ores/ventium, chipped:light_blue_stained_glass_pane, biomesoplenty:dead_logs, chipped:blue_concrete, chipped:orange_carpet, quark:lead_connectable, buzzier_bees:scented_candles, chipped:white_stained_glass_pane, chipped:light_gray_concrete, forge:chests/ender, chipped:black_wool, byg:jacaranda_logs, chipped:glass, byg:ground_red_maple_sapling, environmental:wisteria_logs, chipped:magenta_stained_glass, endergetic:poise_plantable, endergetic:end_crystal_placeable, chipped:warped_roots, chipped:brown_wool, forge:sand/blue, chipped:light_gray_stained_glass, cataclysm:ignis_immune, twilightforest:portal/edge, blue_skies:ladders, minecraft:planks, forge:cobblestone, byg:ground_orange_spruce_sapling, byg:ebony_logs, outer_end:crystal_crag_foliage, byg:ground_white_anemone, forge:storage_blocks/gold, forge:ores/ametrine, chipped:quartz_block, byg:ground_mahogany_sapling, chipped:warped_fungus, forge:fences, savageandravage:blast_proof, supplementaries:bellows_tickable, forge:terracotta/pink, forge:terracotta] [18Feb2025 16:24:04.055] [main/INFO] [STDOUT/]: [tschipp.carryon.common.handler.ListHandler:initConfigLists:282]: [chipped:black_stained_glass, chipped:lime_terracotta, forge:ores/biotite, forge:mushroom_caps/orange, quark:planks_vertical_slab, byg:ground_silver_vase_flower, chipped:dark_oak_planks, forge:storage_blocks/netherite, forge:glass_panes/white, biomesoplenty:hellbark_logs, supplementaries:beams, chipped:yellow_stained_glass_pane, forge:terracotta/lime, forge:glass_panes/light_gray, byg:maple_logs, chipped:jack_o_lantern, chipped:light_gray_wool, forge:storage_blocks/ametrine, farmersdelight:heat_sources, forge:glass/pink, forge:chests, forge:storage_blocks/emerald, forge:ores/redstone, chipped:white_carpet, ftbchunks:interact_whitelist, carryon:block_blacklist, chipped:red_concrete, structure_gel:gel, forge:fence_gates, forge:storage_blocks/carminite, byg:ground_araucaria_sapling, cataclysm:altar_destroy_immune, byg:ground_pine_sapling, forge:storage_blocks/copper, atmospheric:rosewood_logs, byg:ground_witch_hazel_sapling, darkerdepths:underground_base_blocks, byg:ground_purple_sage, chipped:cyan_stained_glass_pane, byg:willow_logs, extendedmushrooms:mushroom_buttons/wool, twilightforest:dark_tower_excluded_pots, woolplates:woolplates, upgrade_aquatic:river_logs, extendedmushrooms:mushroom_buttons/wood, forge:storage_blocks/lapis, chipped:brown_concrete, cavesandcliffs:stone_ore_replaceables, forge:black_sand, chipped:green_carpet, forge:mushrooms/poisonous, supplementaries:posts, buzzier_bees:dyed_candles, forge:terracotta/orange, twilightforest:annihilation_inclusions, chipped:pink_stained_glass, chipped:cyan_concrete, byg:ground_begonia, extendedmushrooms:mushroom_slabs, byg:ground_orange_birch_sapling, forge:terracotta/blue, forge:glass/white, forge:glass_panes/red, farmersdelight:mushroom_colony_growable_on, biomesoplenty:willow_logs, chipped:redstone_lamp, forge:mushroom_caps, chipped:spruce_planks, blue_skies:ores/diopside, byg:ground_california_poppy, byg:ground_mangrove_sapling, chipped:lantern, extendedmushrooms:mushroom_chests_trapped, endergetic:poise_stems, blue_skies:ores/aquite, forge:sand/colorless, chipped:light_gray_carpet, chipped:lime_wool, quark:wooden_vertical_slabs, nethers_delight:unaffected_by_rich_soul_soil, minecraft:soul_speed_blocks, byg:pink_sand, minecraft:walls, environmental:cherry_logs, betterendforge:end_ground, ftbchunks:edit_whitelist, minecraft:sand, byg:ground_mini_cactus, copperpot:partial_fume_inhibitors, cavesandcliffs:occludes_vibration_signals, minecraft:campfires, supplementaries:vine_support, minecraft:infiniburn_nether, byg:ground_red_oak_sapling, forge:glass/blue, forge:supports_conduit, chipped:soul_sand, minecraft:wooden_trapdoors, forge:storage_blocks/coal, byg:imparius_stems, forge:glass/light_blue, forge:ores/thallasium, forge:terracotta/purple, jade:pick, forge:terracotta/black, chipped:light_blue_carpet, blue_skies:dungeon/aquatic, chipped:white_stained_glass, forge:sandstone/red, byg:ground_pink_anemone, minecraft:wooden_doors, chipped:lime_carpet, forge:terracotta/light_blue, forge:glass/purple, minecraft:crimson_stems, forge:purple_sand, blue_skies:storage_blocks/charoite, chipped:shroomlight, quark:hedges, forge:mushrooms/red, chipped:crimson_planks, byg:embur_pedus, byg:black_sand, byg:ground_yellow_tulip, chipped:obsidian, chipped:yellow_stained_glass, chipped:soul_lantern, minecraft:wall_corals, forge:grass, byg:ground_yellow_spruce_sapling, forge:sand/purple, byg:ground_yellow_daffodil, forge:ores/gold, byg:ground_azalea, twilightforest:fences, biomesoplenty:palm_logs, byg:cherry_logs, chipped:green_terracotta, chipped:blue_stained_glass_pane, chipped:brown_terracotta, chipped:acacia_planks, forge:glass/lime, forge:chests/wooden, chipped:red_nether_bricks, chipped:vine, buzzier_bees:candles, bayou_blues:cypress_logs, cataclysm:netherite_monstrosity_immune, chipped:lime_concrete, forge:mushroom_stems/green, minecraft:base_stone_overworld, minecraft:carpets, byg:ground_iris, blue_skies:storage_blocks/pyrope, minecraft:stone_bricks, forge:glass/orange, forge:mushroom_caps/purple, forge:mushrooms/glowshroom, byg:ground_peach_leather_flower, minecraft:slabs, minecraft:guarded_by_piglins, byg:ground_japanese_orchid, byg:ground_blue_spruce_sapling, cataclysm:ender_golem_can_destroy, minecraft:buttons, chipped:blue_wool, byg:ground_green_enchanted_sapling, byg:green_enchanted_logs, minecraft:rails, minecraft:strider_warm_blocks, extendedmushrooms:mushroom_planks, byg:ground_palo_verde_sapling, byg:ground_winter_succulent, minecraft:wooden_pressure_plates, biomesoplenty:redwood_logs, byg:sythian_stems, chipped:red_carpet, biomesoplenty:jacaranda_logs, supplementaries:concrete_powders, minecraft:gold_ores, byg:ground_lament_sapling, backpacked:funnelling, neapolitan:vanilla_plantable_on, chipped:andesite, neapolitan:unaffected_by_mint, farmersdelight:unaffected_by_rich_soil, chipped:yellow_terracotta, cataclysm:netherite_monstrosity_break, twilightforest:twilight_oak_logs, forge:gravel, biomesoplenty:magic_logs, chipped:cyan_stained_glass, chipped:clay, forge:glass_panes/light_blue, forge:ores/netherite_scrap, minecraft:crops, quark:quilted_wools, forge:fiber/flax, byg:zelkova_logs, chipped:purple_stained_glass, chipped:purple_terracotta, minecraft:warped_stems, byg:ground_lazarus_bellflower, forge:storage_blocks/iron, forge:glass_panes/brown, forge:mushrooms/jump_boosting, byg:ground_tall_prairie_grass, forge:ores/lignite, minecraft:climbable, byg:ground_redwood_sapling, snowrealmagic:invalid_supporters, chipped:netherrack, minecraft:dark_oak_logs, minecraft:coral_plants, farmersdelight:tray_heat_sources, atmospheric:kousa_logs, forge:blue_sand, forge:mushrooms, chipped:pink_stained_glass_pane, chipped:cyan_carpet, byg:ground_foxglove, supplementaries:pane_connection, byg:skyris_logs, minecraft:fences, autumnity:snail_foods, minecraft:saplings, forge:ores/copper, forge:storage_blocks/knightmetal, minecraft:unstable_bottom_center, byg:white_sand, byg:ground_palm_sapling, minecraft:banners, minecraft:wooden_fences, chipped:hay_block, twilightforest:transwood_logs, forge:obsidian, forge:enderman_place_on_blacklist, byg:ground_alpine_bellflower, forge:storage_blocks/fiery, biomesoplenty:mahogany_logs, byg:ground_baobab_sapling, twilightforest:ore_magnet/minecraft/end_stone, supplementaries:pouring_tank, forge:glass/magenta, chipped:torch, forge:ores/coal, forge:terracotta/yellow, minecraft:base_stone_nether, chipped:gray_terracotta, carryon:block_whitelist, forge:mushrooms/purple, forge:sand/white, forge:workbench, forge:storage_blocks/pendorite, byg:ground_flowering_indigo_jacaranda_bush, minecraft:trapdoors, forge:glass/cyan, forge:glass, forge:ores/ironwood, extendedmushrooms:mushroom_ladders, byg:baobab_logs, savageandravage:gloomy_tiles, atmospheric:yucca_logs, byg:mahogany_logs, forge:stained_glass_panes, byg:lament_logs, copperpot:fume_inhibitors, forge:workbenches, autumnity:slippery_snail_slime_blocks, byg:ground_blue_enchanted_sapling, chipped:sea_lantern, endergetic:ender_fire_base_blocks, forge:glass/gray, chipped:light_blue_wool, cavesandcliffs:moss_replaceable, byg:ground_cika_sapling, cavesandcliffs:geode_invalid_blocks, chipped:pink_carpet, forge:glass_panes/black, farmersdelight:wild_crops, forge:mushrooms/brown, outer_end:azure_foliage, byg:ground_willow_sapling, betterendforge:mossy_glowshroom_logs, forge:glass_panes/blue, forge:mushroom_caps/brown, byg:redwood_logs, extendedmushrooms:mushroom_fence_gates, forge:mushroom_caps/glowshroom, forge:terracotta/light_gray, twilightforest:fence_gates, forge:stone, chipped:pumpkin, byg:rainbow_eucalyptus_logs, minecraft:infiniburn_end, chipped:warped_wart_block, forge:glass_panes/yellow, byg:ground_white_sage, blue_skies:ores/moonstone, cavesandcliffs:dripstone_replaceable_blocks, biomesoplenty:cherry_logs, diagonalfences:non_diagonal_fences, byg:blue_enchanted_logs, betterendforge:tenanea_logs, blue_skies:storage_blocks/moonstone, farmersdelight:heat_conductors, byg:palm_logs, blue_skies:logs/cherry, minecraft:shulker_boxes, extendedmushrooms:mushroom_trapdoors, chipped:orange_wool, byg:ground_bistort, twilightforest:ore_magnet/twilightforest/root, minecraft:birch_logs, chipped:crimson_roots, create:fan_heaters, byg:ground_rose, cavesandcliffs:candle_cakes, byg:bookshelves, byg:aspen_logs, blue_skies:storage_blocks/horizonite, quark:pike_trophies, byg:ground_nightshade_sapling, chipped:purple_concrete, blue_skies:crafting_tables, chipped:redstone_torch, betterendforge:jellyshroom_logs, minecraft:oak_logs, forge:needs_netherite_tool, chipped:magenta_carpet, byg:purple_sand, blue_skies:dungeon/life, byg:ground_golden_spined_cactus, forge:ores/lapis, blue_skies:dungeon/illager_teleportable, forge:dirt, minecraft:bamboo_plantable_on, minecraft:pressure_plates, chipped:glass_pane, betterendforge:dragon_tree_logs, minecraft:jungle_logs, byg:ground_zelkova_sapling, forge:white_sand, minecraft:spruce_logs, chipped:cobblestone, chipped:purpur_block, forge:fence_gates/wooden, chipped:brown_mushroom, forge:glass_panes/lime, sereneseasons:spring_crops, chipped:red_stained_glass, chipped:dark_prismarine, forge:mushroom_stems/glowshroom, outer_end:crystal_blocks, byg:ground_lolipop_flower, extendedmushrooms:mushroom_bookshelves, twilightforest:carminite_reactor_immune, minecraft:flowers, byg:ground_red_spruce_sapling, byg:cika_logs, forge:terracotta/brown, betterendforge:pythadendron_logs, chipped:blue_carpet, byg:ground_crocus, forge:ores/pendorite, minecraft:fence_gates, chipped:basalt, forge:ores, cataclysm:endermaptera_can_not_spawn, forge:storage_blocks/diamond, byg:ground_firecracker_flower_bush, minecraft:nylium, byg:holly_logs, supplementaries:hang_from_ropes, blue_skies:vines, chipped:jungle_planks, byg:pine_logs, forge:glass_panes/magenta, blue_skies:dungeon/keystone, byg:ground_kovan_flower, byg:ground_maple_sapling, blue_skies:logs/bluebright, chipped:light_blue_concrete, cavesandcliffs:features_cannot_replace, forge:mushrooms/edible, nethers_delight:soul_compost_activators, betterendforge:gen_terrain, quark:stools, chipped:light_gray_stained_glass_pane, chipped:black_stained_glass_pane, chipped:green_concrete, chipped:gilded_blackstone, byg:ground_green_tulip, quark:candles, minecraft:dragon_immune, forge:glass/red, byg:blue_sand, blue_skies:ores/charoite, chipped:nether_wart_block, byg:ground_cypress_sapling, twilightforest:structure_banned_interactions, chipped:red_mushroom_block, chipped:blackstone, forge:mushroom_stems/colorless, forge:glass_panes/green, extendedmushrooms:mushroom_fences, betterendforge:end_lotus_logs, minecraft:prevent_mob_spawning_inside, forge:flowers, forge:fiber, forge:chests/trapped, snowrealmagic:bottom_snow, forge:bushes, twilightforest:portal/fluid, forge:storage_blocks/arctic_fur, forge:sandstone, forge:glass_panes/colorless, chipped:end_stone, blue_skies:logs/dusk, chipped:magenta_stained_glass_pane, cavesandcliffs:deepslate_ore_replaceables, twilightforest:canopy_logs, forge:storage_blocks/steeleaf, darkerdepths:grimestone_replacement, chipped:cyan_terracotta, twilightforest:antibuilder_ignores, blue_skies:storage_blocks/diopside, byg:ground_orange_oak_sapling, chipped:warped_planks, minecraft:beds, forge:ores/diamond, minecraft:doors, minecraft:infiniburn_overworld, minecraft:flower_pots, chipped:melon, byg:ground_flowering_jacaranda_bush, chipped:black_concrete, twilightforest:trophies, byg:ground_osiria_rose, chipped:red_wool, byg:palo_verde_logs, minecraft:signs, chipped:pink_terracotta, minecraft:wither_summon_base_blocks, chipped:magenta_wool, chipped:magenta_terracotta, byg:fir_logs, minecraft:hoglin_repellents, twilightforest:towerwood, extendedmushrooms:mushroom_doors, byg:ground_brown_birch_sapling, chipped:magenta_concrete, outer_end:crystal_buds, chipped:orange_stained_glass, blue_skies:dungeon/poison, extendedmushrooms:mushroom_chests, byg:ground_orchard_sapling, endergetic:end_plantable, blue_skies:dungeon/blinding, atmospheric:yucca_plantable_on, forge:terracotta/red, chipped:purple_wool, chipped:nether_sprouts, enhanced_mushrooms:glowshroom_stems, chipped:blue_terracotta, byg:ground_ebony_sapling, twilightforest:fire_jet_fuel, forge:storage_blocks/charcoal, outer_end:end_plantable_on, byg:ground_red_cornflower, minecraft:coral_blocks, forge:glass/green, byg:ground_rainbow_eucalyptus_sapling, atmospheric:aspen_logs, minecraft:underwater_bonemeals, blue_skies:ores/pyrope, minecraft:impermeable, forge:end_stones, biomesoplenty:fir_logs, chipped:crimson_fungus, chipped:yellow_carpet, forge:mushroom_caps/red, forge:sandstone/colorless, chipped:gray_concrete, supplementaries:walls, forge:fences/wooden, sereneseasons:summer_crops, forge:storage_blocks, forge:glass_panes/orange, chipped:green_stained_glass_pane, atmospheric:grimwood_logs, forge:ores/quartz, chipped:red_sandstone, chipped:glowstone, byg:ground_silver_maple_sapling, byg:ground_skyris_sapling, forge:saplings, blue_skies:storage_blocks/ventium, chipped:green_stained_glass, forge:storage_blocks/redstone, byg:withering_oak_logs, extendedmushrooms:mushroom_pressure_plates/wool, twilightforest:ore_magnet/minecraft/stone, minecraft:stairs, quark:underground_biome_replaceable, sereneseasons:unbreakable_infertile_crops, minecraft:logs, byg:ground_pink_cherry_sapling, byg:ground_brown_zelkova_sapling, byg:ground_holly_sapling, chipped:oak_planks, blue_skies:logs/frostbright, minecraft:valid_spawn, minecraft:mushroom_grow_block, quark:wraith_spawnable, extendedmushrooms:mushroom_pressure_plates/wood, autumnity:maple_logs, forge:mushroom_stems/orange, extendedmushrooms:mushroom_pressure_plates, chipped:brown_mushroom_block, sereneseasons:autumn_crops, quark:slime_blocks, byg:ground_incan_lily, abundance:jacaranda_logs, quark:vertical_slab, forge:storage_blocks/ironwood, chipped:purple_stained_glass_pane, betterendforge:lucernia_logs, chipped:red_terracotta, cavesandcliffs:small_dripleaf_placeable, cataclysm:ender_guardian_can_destroy, byg:ground_red_birch_sapling, blue_skies:cobblestone, minecraft:beacon_base_blocks, twilightforest:darkwood_logs, minecraft:anvil, chipped:white_concrete, forge:ores/ender, forge:sand, sereneseasons:greenhouse_glass, chipped:gray_stained_glass, byg:ground_yellow_birch_sapling, byg:ground_torch_ginger, blue_skies:ores/horizonite, chipped:light_blue_terracotta, forge:terracotta/magenta, chipped:granite, snowrealmagic:containables, minecraft:piglin_repellents, byg:ground_delphinium, forge:glass/black, minecraft:portals, snowrealmagic:not_containables, forge:fences/nether_brick, chipped:pink_wool, forge:ores/iron, chipped:orange_terracotta, twilightforest:logs, forge:storage_blocks/biotite, chipped:birch_planks, blue_skies:logs/starlit, extendedmushrooms:mushroom_buttons, minecraft:wooden_stairs, minecraft:wooden_buttons, cavesandcliffs:inside_step_sound_blocks, quark:crystal, biomesoplenty:umbran_logs, forge:terracotta/cyan, forge:storage_blocks/anthracite, forge:storage_blocks/quartz, byg:ground_brown_oak_sapling, chipped:pink_concrete, byg:ground_joshua_sapling, extendedmushrooms:mushroom_carpets, byg:cypress_logs, forge:ores/emerald, blue_skies:stone, chipped:red_mushroom, minecraft:corals, forge:terracotta/green, quark:foxhound_spawnable, byg:ground_prickly_pear_cactus, forge:barrels/wooden, upgrade_aquatic:driftwood_logs, blue_skies:storage_blocks/aquite, atmospheric:morado_logs, endergetic:chorus_plantable, byg:bulbis_stems, byg:ground_indigo_jacaranda_sapling, chipped:crying_obsidian, minecraft:bee_growables, abundance:redbud_logs, minecraft:tall_flowers, extendedmushrooms:mushrooms/edible, forge:sand/black, forge:bookshelves, minecraft:stone_pressure_plates, cavesandcliffs:lush_ground_replaceable, supplementaries:palisades, forge:glass_panes/pink, chipped:lime_stained_glass, byg:ground_angelica, minecraft:dirt, forge:netherrack, minecraft:soul_fire_base_blocks, chipped:brown_stained_glass_pane, forge:crops/flax, byg:ground_fir_sapling, byg:ground_purple_tulip, chipped:gray_stained_glass_pane, chipped:lily_pad, forge:terracotta/white, forge:glass_panes/cyan, forge:mushroom_caps/lime, chipped:cyan_wool, minecraft:wool, forge:glass/colorless, minecraft:beehives, twilightforest:timewood_logs, blue_skies:logs/maple, minecraft:ice, byg:ground_guzmania, chipped:stone, chipped:gray_wool, forge:stained_glass, blue_skies:storage_blocks/falsite, twilightforest:mangrove_logs, cavesandcliffs:candles, chipped:brown_carpet, byg:ground_tall_allium, cavesandcliffs:crystal_sound_blocks, byg:ground_white_cherry_sapling, twilightforest:sortwood_logs, farmersdelight:compost_activators, quark:ladders, forge:glass_panes, minecraft:non_flammable_wood, forge:sand/pink, enhanced_mushrooms:red_mushroom_stems, chipped:blue_stained_glass, extendedmushrooms:mushroom_signs, chipped:gray_carpet, byg:nightshade_logs, twilightforest:mining_logs, byg:ground_violet_leather_flower, cavesandcliffs:cauldrons, minecraft:mineable/pickaxe, chipped:white_terracotta, minecraft:enderman_holdable, forge:mushroom_stems, byg:ground_orange_daisy, minecraft:wall_post_override, byg:ground_magenta_tulip, chipped:purple_carpet, chipped:dried_kelp_block, chipped:green_wool, byg:ground_pink_orchid, chipped:prismarine, byg:ground_tall_pink_allium, byg:ground_purple_orchid, minecraft:fire, cavesandcliffs:cave_vines, minecraft:wall_signs, quark:vertical_slabs, forge:mushrooms/lime, blue_skies:dungeon/nature, chipped:white_wool, byg:ground_protea_flower, byg:ground_black_rose, betterendforge:lacugrove_logs, quark:crab_spawnable, chipped:black_carpet, chipped:yellow_wool, forge:storage_blocks/lignite, forge:needs_wood_tool, minecraft:leaves, buzzier_bees:flower_blacklist, enhanced_mushrooms:brown_mushroom_stems, byg:ground_ether_sapling, byg:mangrove_logs, byg:witch_hazel_logs, forge:glass_panes/gray, minecraft:wither_immune, chipped:black_terracotta, minecraft:acacia_logs, elevatorid:elevators, cataclysm:ignis_can_destroy_cracked_block, forge:terracotta/gray, atmospheric:passion_vine_growable_on, forge:sand/red, forge:glass/brown, byg:ground_jacaranda_sapling, betterendforge:umbrella_tree_logs, chipped:light_gray_terracotta, minecraft:logs_that_burn, forge:glass/light_gray, twilightforest:ore_magnet/minecraft/netherrack, byg:ground_blue_sage, minecraft:wooden_slabs, chipped:red_stained_glass_pane, minecraft:small_flowers, blue_skies:logs/lunar, chipped:orange_stained_glass_pane, byg:ground_aspen_sapling, chipped:diorite, chipped:light_blue_stained_glass, forge:ores/knightmetal, supplementaries:rope_support, sereneseasons:winter_crops, chipped:orange_concrete, twilightforest:portal/decoration, byg:ground_horseweed, chipped:sandstone, supplementaries:water_holder, forge:ores/amber, betterendforge:helix_tree_logs, forge:mushrooms/orange, twilightforest:ore_magnet/ore_safe_replace_block, byg:ground_withering_oak_sapling, blue_skies:logs/crystallized, environmental:willow_logs, byg:ether_logs, minecraft:standing_signs, blue_skies:ores/falsite, extendedmushrooms:mushroom_growing_blocks_lightlevel, byg:ground_richea, minecraft:wart_blocks, forge:mushrooms/slowing_down, cavesandcliffs:snow, extendedmushrooms:mushroom_stairs, chipped:cobweb, neapolitan:chimpanzee_jumping_blocks, chipped:brown_stained_glass, chipped:nether_bricks, byg:ground_red_orchid, forge:ores/silver, byg:ground_pink_daffodil, forge:glass_panes/purple, forge:glass/yellow, environmental:grass_like, chipped:lime_stained_glass_pane, chipped:carved_pumpkin, blue_skies:bookshelves, twilightforest:ore_magnet/block_replace_ore, minecraft:piglin_repellants, byg:ground_pink_allium, forge:ores/anthracite, forge:barrels, chipped:yellow_concrete, forge:pink_sand, blue_skies:ores/ventium, chipped:light_blue_stained_glass_pane, biomesoplenty:dead_logs, chipped:blue_concrete, chipped:orange_carpet, quark:lead_connectable, buzzier_bees:scented_candles, chipped:white_stained_glass_pane, chipped:light_gray_concrete, forge:chests/ender, chipped:black_wool, byg:jacaranda_logs, chipped:glass, byg:ground_red_maple_sapling, environmental:wisteria_logs, chipped:magenta_stained_glass, endergetic:poise_plantable, endergetic:end_crystal_placeable, chipped:warped_roots, chipped:brown_wool, forge:sand/blue, chipped:light_gray_stained_glass, cataclysm:ignis_immune, twilightforest:portal/edge, blue_skies:ladders, minecraft:planks, forge:cobblestone, byg:ground_orange_spruce_sapling, byg:ebony_logs, outer_end:crystal_crag_foliage, byg:ground_white_anemone, forge:storage_blocks/gold, forge:ores/ametrine, chipped:quartz_block, byg:ground_mahogany_sapling, chipped:warped_fungus, forge:fences, savageandravage:blast_proof, supplementaries:bellows_tickable, forge:terracotta/pink, forge:terracotta] [18Feb2025 16:24:04.680] [main/WARN] [ModernFix/]: Interrupting previous blockstate cache rebuild [18Feb2025 16:24:04.868] [Server thread/INFO] [net.minecraft.server.dedicated.DedicatedServer/]: Starting minecraft server version 1.16.5 [18Feb2025 16:24:04.869] [Server thread/INFO] [net.minecraft.server.dedicated.DedicatedServer/]: Loading properties [18Feb2025 16:24:04.869] [Server thread/INFO] [net.minecraft.server.dedicated.DedicatedServer/]: Default game type: SURVIVAL [18Feb2025 16:24:04.869] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: Generating keypair [18Feb2025 16:24:04.942] [Server thread/INFO] [net.minecraft.server.dedicated.DedicatedServer/]: Starting Minecraft server on *:25565 [18Feb2025 16:24:04.947] [Server thread/INFO] [net.minecraft.network.NetworkSystem/]: Using default channel type [18Feb2025 16:24:05.432] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [goblintraders] Found status: BETA Current: 1.7.3 Target: 1.7.3 [18Feb2025 16:24:05.432] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [clumps] Starting version check at https://updates.blamejared.com/get?n=clumps&gv=1.16.5 [18Feb2025 16:24:05.454] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [clumps] Found status: BETA Current: 6.0.0.28 Target: 6.0.0.28 [18Feb2025 16:24:05.455] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [storagenetwork] Starting version check at https://raw.githubusercontent.com/Lothrazar/Storage-Network/trunk/1.16/update.json [18Feb2025 16:24:05.541] [Server thread/INFO] [STDOUT/]: [tschipp.carryon.common.handler.ListHandler:initConfigLists:282]: [chipped:black_stained_glass, chipped:lime_terracotta, forge:ores/biotite, forge:mushroom_caps/orange, quark:planks_vertical_slab, byg:ground_silver_vase_flower, chipped:dark_oak_planks, forge:storage_blocks/netherite, forge:glass_panes/white, biomesoplenty:hellbark_logs, supplementaries:beams, chipped:yellow_stained_glass_pane, forge:terracotta/lime, forge:glass_panes/light_gray, byg:maple_logs, chipped:jack_o_lantern, chipped:light_gray_wool, forge:storage_blocks/ametrine, farmersdelight:heat_sources, forge:glass/pink, forge:chests, forge:storage_blocks/emerald, forge:ores/redstone, chipped:white_carpet, ftbchunks:interact_whitelist, carryon:block_blacklist, chipped:red_concrete, structure_gel:gel, forge:fence_gates, forge:storage_blocks/carminite, byg:ground_araucaria_sapling, cataclysm:altar_destroy_immune, byg:ground_pine_sapling, forge:storage_blocks/copper, atmospheric:rosewood_logs, byg:ground_witch_hazel_sapling, darkerdepths:underground_base_blocks, byg:ground_purple_sage, chipped:cyan_stained_glass_pane, byg:willow_logs, extendedmushrooms:mushroom_buttons/wool, twilightforest:dark_tower_excluded_pots, woolplates:woolplates, upgrade_aquatic:river_logs, extendedmushrooms:mushroom_buttons/wood, forge:storage_blocks/lapis, chipped:brown_concrete, cavesandcliffs:stone_ore_replaceables, forge:black_sand, chipped:green_carpet, forge:mushrooms/poisonous, supplementaries:posts, buzzier_bees:dyed_candles, forge:terracotta/orange, twilightforest:annihilation_inclusions, chipped:pink_stained_glass, chipped:cyan_concrete, byg:ground_begonia, extendedmushrooms:mushroom_slabs, byg:ground_orange_birch_sapling, forge:terracotta/blue, forge:glass/white, forge:glass_panes/red, farmersdelight:mushroom_colony_growable_on, biomesoplenty:willow_logs, chipped:redstone_lamp, forge:mushroom_caps, chipped:spruce_planks, blue_skies:ores/diopside, byg:ground_california_poppy, byg:ground_mangrove_sapling, chipped:lantern, extendedmushrooms:mushroom_chests_trapped, endergetic:poise_stems, blue_skies:ores/aquite, forge:sand/colorless, chipped:light_gray_carpet, chipped:lime_wool, quark:wooden_vertical_slabs, nethers_delight:unaffected_by_rich_soul_soil, minecraft:soul_speed_blocks, byg:pink_sand, minecraft:walls, environmental:cherry_logs, betterendforge:end_ground, ftbchunks:edit_whitelist, minecraft:sand, byg:ground_mini_cactus, copperpot:partial_fume_inhibitors, cavesandcliffs:occludes_vibration_signals, minecraft:campfires, supplementaries:vine_support, minecraft:infiniburn_nether, byg:ground_red_oak_sapling, forge:glass/blue, forge:supports_conduit, chipped:soul_sand, minecraft:wooden_trapdoors, forge:storage_blocks/coal, byg:imparius_stems, forge:glass/light_blue, forge:ores/thallasium, forge:terracotta/purple, jade:pick, forge:terracotta/black, chipped:light_blue_carpet, blue_skies:dungeon/aquatic, chipped:white_stained_glass, forge:sandstone/red, byg:ground_pink_anemone, minecraft:wooden_doors, chipped:lime_carpet, forge:terracotta/light_blue, forge:glass/purple, minecraft:crimson_stems, forge:purple_sand, blue_skies:storage_blocks/charoite, chipped:shroomlight, quark:hedges, forge:mushrooms/red, chipped:crimson_planks, byg:embur_pedus, byg:black_sand, byg:ground_yellow_tulip, chipped:obsidian, chipped:yellow_stained_glass, chipped:soul_lantern, minecraft:wall_corals, forge:grass, byg:ground_yellow_spruce_sapling, forge:sand/purple, byg:ground_yellow_daffodil, forge:ores/gold, byg:ground_azalea, twilightforest:fences, biomesoplenty:palm_logs, byg:cherry_logs, chipped:green_terracotta, chipped:blue_stained_glass_pane, chipped:brown_terracotta, chipped:acacia_planks, forge:glass/lime, forge:chests/wooden, chipped:red_nether_bricks, chipped:vine, buzzier_bees:candles, bayou_blues:cypress_logs, cataclysm:netherite_monstrosity_immune, chipped:lime_concrete, forge:mushroom_stems/green, minecraft:base_stone_overworld, minecraft:carpets, byg:ground_iris, blue_skies:storage_blocks/pyrope, minecraft:stone_bricks, forge:glass/orange, forge:mushroom_caps/purple, forge:mushrooms/glowshroom, byg:ground_peach_leather_flower, minecraft:slabs, minecraft:guarded_by_piglins, byg:ground_japanese_orchid, byg:ground_blue_spruce_sapling, cataclysm:ender_golem_can_destroy, minecraft:buttons, chipped:blue_wool, byg:ground_green_enchanted_sapling, byg:green_enchanted_logs, minecraft:rails, minecraft:strider_warm_blocks, extendedmushrooms:mushroom_planks, byg:ground_palo_verde_sapling, byg:ground_winter_succulent, minecraft:wooden_pressure_plates, biomesoplenty:redwood_logs, byg:sythian_stems, chipped:red_carpet, biomesoplenty:jacaranda_logs, supplementaries:concrete_powders, minecraft:gold_ores, byg:ground_lament_sapling, backpacked:funnelling, neapolitan:vanilla_plantable_on, chipped:andesite, neapolitan:unaffected_by_mint, farmersdelight:unaffected_by_rich_soil, chipped:yellow_terracotta, cataclysm:netherite_monstrosity_break, twilightforest:twilight_oak_logs, forge:gravel, biomesoplenty:magic_logs, chipped:cyan_stained_glass, chipped:clay, forge:glass_panes/light_blue, forge:ores/netherite_scrap, minecraft:crops, quark:quilted_wools, forge:fiber/flax, byg:zelkova_logs, chipped:purple_stained_glass, chipped:purple_terracotta, minecraft:warped_stems, byg:ground_lazarus_bellflower, forge:storage_blocks/iron, forge:glass_panes/brown, forge:mushrooms/jump_boosting, byg:ground_tall_prairie_grass, forge:ores/lignite, minecraft:climbable, byg:ground_redwood_sapling, snowrealmagic:invalid_supporters, chipped:netherrack, minecraft:dark_oak_logs, minecraft:coral_plants, farmersdelight:tray_heat_sources, atmospheric:kousa_logs, forge:blue_sand, forge:mushrooms, chipped:pink_stained_glass_pane, chipped:cyan_carpet, byg:ground_foxglove, supplementaries:pane_connection, byg:skyris_logs, minecraft:fences, autumnity:snail_foods, minecraft:saplings, forge:ores/copper, forge:storage_blocks/knightmetal, minecraft:unstable_bottom_center, byg:white_sand, byg:ground_palm_sapling, minecraft:banners, minecraft:wooden_fences, chipped:hay_block, twilightforest:transwood_logs, forge:obsidian, forge:enderman_place_on_blacklist, byg:ground_alpine_bellflower, forge:storage_blocks/fiery, biomesoplenty:mahogany_logs, byg:ground_baobab_sapling, twilightforest:ore_magnet/minecraft/end_stone, supplementaries:pouring_tank, forge:glass/magenta, chipped:torch, forge:ores/coal, forge:terracotta/yellow, minecraft:base_stone_nether, chipped:gray_terracotta, carryon:block_whitelist, forge:mushrooms/purple, forge:sand/white, forge:workbench, forge:storage_blocks/pendorite, byg:ground_flowering_indigo_jacaranda_bush, minecraft:trapdoors, forge:glass/cyan, forge:glass, forge:ores/ironwood, extendedmushrooms:mushroom_ladders, byg:baobab_logs, savageandravage:gloomy_tiles, atmospheric:yucca_logs, byg:mahogany_logs, forge:stained_glass_panes, byg:lament_logs, copperpot:fume_inhibitors, forge:workbenches, autumnity:slippery_snail_slime_blocks, byg:ground_blue_enchanted_sapling, chipped:sea_lantern, endergetic:ender_fire_base_blocks, forge:glass/gray, chipped:light_blue_wool, cavesandcliffs:moss_replaceable, byg:ground_cika_sapling, cavesandcliffs:geode_invalid_blocks, chipped:pink_carpet, forge:glass_panes/black, farmersdelight:wild_crops, forge:mushrooms/brown, outer_end:azure_foliage, byg:ground_willow_sapling, betterendforge:mossy_glowshroom_logs, forge:glass_panes/blue, forge:mushroom_caps/brown, byg:redwood_logs, extendedmushrooms:mushroom_fence_gates, forge:mushroom_caps/glowshroom, forge:terracotta/light_gray, twilightforest:fence_gates, forge:stone, chipped:pumpkin, byg:rainbow_eucalyptus_logs, minecraft:infiniburn_end, chipped:warped_wart_block, forge:glass_panes/yellow, byg:ground_white_sage, blue_skies:ores/moonstone, cavesandcliffs:dripstone_replaceable_blocks, biomesoplenty:cherry_logs, diagonalfences:non_diagonal_fences, byg:blue_enchanted_logs, betterendforge:tenanea_logs, blue_skies:storage_blocks/moonstone, farmersdelight:heat_conductors, byg:palm_logs, blue_skies:logs/cherry, minecraft:shulker_boxes, extendedmushrooms:mushroom_trapdoors, chipped:orange_wool, byg:ground_bistort, twilightforest:ore_magnet/twilightforest/root, minecraft:birch_logs, chipped:crimson_roots, create:fan_heaters, byg:ground_rose, cavesandcliffs:candle_cakes, byg:bookshelves, byg:aspen_logs, blue_skies:storage_blocks/horizonite, quark:pike_trophies, byg:ground_nightshade_sapling, chipped:purple_concrete, blue_skies:crafting_tables, chipped:redstone_torch, betterendforge:jellyshroom_logs, minecraft:oak_logs, forge:needs_netherite_tool, chipped:magenta_carpet, byg:purple_sand, blue_skies:dungeon/life, byg:ground_golden_spined_cactus, forge:ores/lapis, blue_skies:dungeon/illager_teleportable, forge:dirt, minecraft:bamboo_plantable_on, minecraft:pressure_plates, chipped:glass_pane, betterendforge:dragon_tree_logs, minecraft:jungle_logs, byg:ground_zelkova_sapling, forge:white_sand, minecraft:spruce_logs, chipped:cobblestone, chipped:purpur_block, forge:fence_gates/wooden, chipped:brown_mushroom, forge:glass_panes/lime, sereneseasons:spring_crops, chipped:red_stained_glass, chipped:dark_prismarine, forge:mushroom_stems/glowshroom, outer_end:crystal_blocks, byg:ground_lolipop_flower, extendedmushrooms:mushroom_bookshelves, twilightforest:carminite_reactor_immune, minecraft:flowers, byg:ground_red_spruce_sapling, byg:cika_logs, forge:terracotta/brown, betterendforge:pythadendron_logs, chipped:blue_carpet, byg:ground_crocus, forge:ores/pendorite, minecraft:fence_gates, chipped:basalt, forge:ores, cataclysm:endermaptera_can_not_spawn, forge:storage_blocks/diamond, byg:ground_firecracker_flower_bush, minecraft:nylium, byg:holly_logs, supplementaries:hang_from_ropes, blue_skies:vines, chipped:jungle_planks, byg:pine_logs, forge:glass_panes/magenta, blue_skies:dungeon/keystone, byg:ground_kovan_flower, byg:ground_maple_sapling, blue_skies:logs/bluebright, chipped:light_blue_concrete, cavesandcliffs:features_cannot_replace, forge:mushrooms/edible, nethers_delight:soul_compost_activators, betterendforge:gen_terrain, quark:stools, chipped:light_gray_stained_glass_pane, chipped:black_stained_glass_pane, chipped:green_concrete, chipped:gilded_blackstone, byg:ground_green_tulip, quark:candles, minecraft:dragon_immune, forge:glass/red, byg:blue_sand, blue_skies:ores/charoite, chipped:nether_wart_block, byg:ground_cypress_sapling, twilightforest:structure_banned_interactions, chipped:red_mushroom_block, chipped:blackstone, forge:mushroom_stems/colorless, forge:glass_panes/green, extendedmushrooms:mushroom_fences, betterendforge:end_lotus_logs, minecraft:prevent_mob_spawning_inside, forge:flowers, forge:fiber, forge:chests/trapped, snowrealmagic:bottom_snow, forge:bushes, twilightforest:portal/fluid, forge:storage_blocks/arctic_fur, forge:sandstone, forge:glass_panes/colorless, chipped:end_stone, blue_skies:logs/dusk, chipped:magenta_stained_glass_pane, cavesandcliffs:deepslate_ore_replaceables, twilightforest:canopy_logs, forge:storage_blocks/steeleaf, darkerdepths:grimestone_replacement, chipped:cyan_terracotta, twilightforest:antibuilder_ignores, blue_skies:storage_blocks/diopside, byg:ground_orange_oak_sapling, chipped:warped_planks, minecraft:beds, forge:ores/diamond, minecraft:doors, minecraft:infiniburn_overworld, minecraft:flower_pots, chipped:melon, byg:ground_flowering_jacaranda_bush, chipped:black_concrete, twilightforest:trophies, byg:ground_osiria_rose, chipped:red_wool, byg:palo_verde_logs, minecraft:signs, chipped:pink_terracotta, minecraft:wither_summon_base_blocks, chipped:magenta_wool, chipped:magenta_terracotta, byg:fir_logs, minecraft:hoglin_repellents, twilightforest:towerwood, extendedmushrooms:mushroom_doors, byg:ground_brown_birch_sapling, chipped:magenta_concrete, outer_end:crystal_buds, chipped:orange_stained_glass, blue_skies:dungeon/poison, extendedmushrooms:mushroom_chests, byg:ground_orchard_sapling, endergetic:end_plantable, blue_skies:dungeon/blinding, atmospheric:yucca_plantable_on, forge:terracotta/red, chipped:purple_wool, chipped:nether_sprouts, enhanced_mushrooms:glowshroom_stems, chipped:blue_terracotta, byg:ground_ebony_sapling, twilightforest:fire_jet_fuel, forge:storage_blocks/charcoal, outer_end:end_plantable_on, byg:ground_red_cornflower, minecraft:coral_blocks, forge:glass/green, byg:ground_rainbow_eucalyptus_sapling, atmospheric:aspen_logs, minecraft:underwater_bonemeals, blue_skies:ores/pyrope, minecraft:impermeable, forge:end_stones, biomesoplenty:fir_logs, chipped:crimson_fungus, chipped:yellow_carpet, forge:mushroom_caps/red, forge:sandstone/colorless, chipped:gray_concrete, supplementaries:walls, forge:fences/wooden, sereneseasons:summer_crops, forge:storage_blocks, forge:glass_panes/orange, chipped:green_stained_glass_pane, atmospheric:grimwood_logs, forge:ores/quartz, chipped:red_sandstone, chipped:glowstone, byg:ground_silver_maple_sapling, byg:ground_skyris_sapling, forge:saplings, blue_skies:storage_blocks/ventium, chipped:green_stained_glass, forge:storage_blocks/redstone, byg:withering_oak_logs, extendedmushrooms:mushroom_pressure_plates/wool, twilightforest:ore_magnet/minecraft/stone, minecraft:stairs, quark:underground_biome_replaceable, sereneseasons:unbreakable_infertile_crops, minecraft:logs, byg:ground_pink_cherry_sapling, byg:ground_brown_zelkova_sapling, byg:ground_holly_sapling, chipped:oak_planks, blue_skies:logs/frostbright, minecraft:valid_spawn, minecraft:mushroom_grow_block, quark:wraith_spawnable, extendedmushrooms:mushroom_pressure_plates/wood, autumnity:maple_logs, forge:mushroom_stems/orange, extendedmushrooms:mushroom_pressure_plates, chipped:brown_mushroom_block, sereneseasons:autumn_crops, quark:slime_blocks, byg:ground_incan_lily, abundance:jacaranda_logs, quark:vertical_slab, forge:storage_blocks/ironwood, chipped:purple_stained_glass_pane, betterendforge:lucernia_logs, chipped:red_terracotta, cavesandcliffs:small_dripleaf_placeable, cataclysm:ender_guardian_can_destroy, byg:ground_red_birch_sapling, blue_skies:cobblestone, minecraft:beacon_base_blocks, twilightforest:darkwood_logs, minecraft:anvil, chipped:white_concrete, forge:ores/ender, forge:sand, sereneseasons:greenhouse_glass, chipped:gray_stained_glass, byg:ground_yellow_birch_sapling, byg:ground_torch_ginger, blue_skies:ores/horizonite, chipped:light_blue_terracotta, forge:terracotta/magenta, chipped:granite, snowrealmagic:containables, minecraft:piglin_repellents, byg:ground_delphinium, forge:glass/black, minecraft:portals, snowrealmagic:not_containables, forge:fences/nether_brick, chipped:pink_wool, forge:ores/iron, chipped:orange_terracotta, twilightforest:logs, forge:storage_blocks/biotite, chipped:birch_planks, blue_skies:logs/starlit, extendedmushrooms:mushroom_buttons, minecraft:wooden_stairs, minecraft:wooden_buttons, cavesandcliffs:inside_step_sound_blocks, quark:crystal, biomesoplenty:umbran_logs, forge:terracotta/cyan, forge:storage_blocks/anthracite, forge:storage_blocks/quartz, byg:ground_brown_oak_sapling, chipped:pink_concrete, byg:ground_joshua_sapling, extendedmushrooms:mushroom_carpets, byg:cypress_logs, forge:ores/emerald, blue_skies:stone, chipped:red_mushroom, minecraft:corals, forge:terracotta/green, quark:foxhound_spawnable, byg:ground_prickly_pear_cactus, forge:barrels/wooden, upgrade_aquatic:driftwood_logs, blue_skies:storage_blocks/aquite, atmospheric:morado_logs, endergetic:chorus_plantable, byg:bulbis_stems, byg:ground_indigo_jacaranda_sapling, chipped:crying_obsidian, minecraft:bee_growables, abundance:redbud_logs, minecraft:tall_flowers, extendedmushrooms:mushrooms/edible, forge:sand/black, forge:bookshelves, minecraft:stone_pressure_plates, cavesandcliffs:lush_ground_replaceable, supplementaries:palisades, forge:glass_panes/pink, chipped:lime_stained_glass, byg:ground_angelica, minecraft:dirt, forge:netherrack, minecraft:soul_fire_base_blocks, chipped:brown_stained_glass_pane, forge:crops/flax, byg:ground_fir_sapling, byg:ground_purple_tulip, chipped:gray_stained_glass_pane, chipped:lily_pad, forge:terracotta/white, forge:glass_panes/cyan, forge:mushroom_caps/lime, chipped:cyan_wool, minecraft:wool, forge:glass/colorless, minecraft:beehives, twilightforest:timewood_logs, blue_skies:logs/maple, minecraft:ice, byg:ground_guzmania, chipped:stone, chipped:gray_wool, forge:stained_glass, blue_skies:storage_blocks/falsite, twilightforest:mangrove_logs, cavesandcliffs:candles, chipped:brown_carpet, byg:ground_tall_allium, cavesandcliffs:crystal_sound_blocks, byg:ground_white_cherry_sapling, twilightforest:sortwood_logs, farmersdelight:compost_activators, quark:ladders, forge:glass_panes, minecraft:non_flammable_wood, forge:sand/pink, enhanced_mushrooms:red_mushroom_stems, chipped:blue_stained_glass, extendedmushrooms:mushroom_signs, chipped:gray_carpet, byg:nightshade_logs, twilightforest:mining_logs, byg:ground_violet_leather_flower, cavesandcliffs:cauldrons, minecraft:mineable/pickaxe, chipped:white_terracotta, minecraft:enderman_holdable, forge:mushroom_stems, byg:ground_orange_daisy, minecraft:wall_post_override, byg:ground_magenta_tulip, chipped:purple_carpet, chipped:dried_kelp_block, chipped:green_wool, byg:ground_pink_orchid, chipped:prismarine, byg:ground_tall_pink_allium, byg:ground_purple_orchid, minecraft:fire, cavesandcliffs:cave_vines, minecraft:wall_signs, quark:vertical_slabs, forge:mushrooms/lime, blue_skies:dungeon/nature, chipped:white_wool, byg:ground_protea_flower, byg:ground_black_rose, betterendforge:lacugrove_logs, quark:crab_spawnable, chipped:black_carpet, chipped:yellow_wool, forge:storage_blocks/lignite, forge:needs_wood_tool, minecraft:leaves, buzzier_bees:flower_blacklist, enhanced_mushrooms:brown_mushroom_stems, byg:ground_ether_sapling, byg:mangrove_logs, byg:witch_hazel_logs, forge:glass_panes/gray, minecraft:wither_immune, chipped:black_terracotta, minecraft:acacia_logs, elevatorid:elevators, cataclysm:ignis_can_destroy_cracked_block, forge:terracotta/gray, atmospheric:passion_vine_growable_on, forge:sand/red, forge:glass/brown, byg:ground_jacaranda_sapling, betterendforge:umbrella_tree_logs, chipped:light_gray_terracotta, minecraft:logs_that_burn, forge:glass/light_gray, twilightforest:ore_magnet/minecraft/netherrack, byg:ground_blue_sage, minecraft:wooden_slabs, chipped:red_stained_glass_pane, minecraft:small_flowers, blue_skies:logs/lunar, chipped:orange_stained_glass_pane, byg:ground_aspen_sapling, chipped:diorite, chipped:light_blue_stained_glass, forge:ores/knightmetal, supplementaries:rope_support, sereneseasons:winter_crops, chipped:orange_concrete, twilightforest:portal/decoration, byg:ground_horseweed, chipped:sandstone, supplementaries:water_holder, forge:ores/amber, betterendforge:helix_tree_logs, forge:mushrooms/orange, twilightforest:ore_magnet/ore_safe_replace_block, byg:ground_withering_oak_sapling, blue_skies:logs/crystallized, environmental:willow_logs, byg:ether_logs, minecraft:standing_signs, blue_skies:ores/falsite, extendedmushrooms:mushroom_growing_blocks_lightlevel, byg:ground_richea, minecraft:wart_blocks, forge:mushrooms/slowing_down, cavesandcliffs:snow, extendedmushrooms:mushroom_stairs, chipped:cobweb, neapolitan:chimpanzee_jumping_blocks, chipped:brown_stained_glass, chipped:nether_bricks, byg:ground_red_orchid, forge:ores/silver, byg:ground_pink_daffodil, forge:glass_panes/purple, forge:glass/yellow, environmental:grass_like, chipped:lime_stained_glass_pane, chipped:carved_pumpkin, blue_skies:bookshelves, twilightforest:ore_magnet/block_replace_ore, minecraft:piglin_repellants, byg:ground_pink_allium, forge:ores/anthracite, forge:barrels, chipped:yellow_concrete, forge:pink_sand, blue_skies:ores/ventium, chipped:light_blue_stained_glass_pane, biomesoplenty:dead_logs, chipped:blue_concrete, chipped:orange_carpet, quark:lead_connectable, buzzier_bees:scented_candles, chipped:white_stained_glass_pane, chipped:light_gray_concrete, forge:chests/ender, chipped:black_wool, byg:jacaranda_logs, chipped:glass, byg:ground_red_maple_sapling, environmental:wisteria_logs, chipped:magenta_stained_glass, endergetic:poise_plantable, endergetic:end_crystal_placeable, chipped:warped_roots, chipped:brown_wool, forge:sand/blue, chipped:light_gray_stained_glass, cataclysm:ignis_immune, twilightforest:portal/edge, blue_skies:ladders, minecraft:planks, forge:cobblestone, byg:ground_orange_spruce_sapling, byg:ebony_logs, outer_end:crystal_crag_foliage, byg:ground_white_anemone, forge:storage_blocks/gold, forge:ores/ametrine, chipped:quartz_block, byg:ground_mahogany_sapling, chipped:warped_fungus, forge:fences, savageandravage:blast_proof, supplementaries:bellows_tickable, forge:terracotta/pink, forge:terracotta] [18Feb2025 16:24:05.625] [Server thread/INFO] [FTB Teams/]: Loaded FTB Teams - 0 known players [18Feb2025 16:24:05.636] [Server thread/INFO] [ModernFix/]: Starting locating executor service with thread pool size of 1 [18Feb2025 16:24:05.738] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [storagenetwork] Found status: BETA Current: 1.16.5-1.5.3 Target: 1.5.5 [18Feb2025 16:24:05.739] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [badmobs] Starting version check at https://updates.blamejared.com/get?n=badmobs&gv=1.16.5 [18Feb2025 16:24:05.760] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [badmobs] Found status: BETA Current: 9.1.9 Target: 9.1.9 [18Feb2025 16:24:05.760] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [forge] Starting version check at https://files.minecraftforge.net/net/minecraftforge/forge/promotions_slim.json [18Feb2025 16:24:05.816] [Server thread/INFO] [ejektaflex.bountiful.BountifulMod/]: Registering Bounty Board Jigsaw Piece for Village Type: plains [18Feb2025 16:24:05.818] [Server thread/INFO] [ejektaflex.bountiful.BountifulMod/]: Registering Bounty Board Jigsaw Piece for Village Type: savanna [18Feb2025 16:24:05.818] [Server thread/INFO] [ejektaflex.bountiful.BountifulMod/]: Registering Bounty Board Jigsaw Piece for Village Type: snowy [18Feb2025 16:24:05.818] [Server thread/INFO] [ejektaflex.bountiful.BountifulMod/]: Registering Bounty Board Jigsaw Piece for Village Type: taiga [18Feb2025 16:24:05.819] [Server thread/INFO] [ejektaflex.bountiful.BountifulMod/]: Registering Bounty Board Jigsaw Piece for Village Type: desert [18Feb2025 16:24:05.819] [Server thread/INFO] [ejektaflex.bountiful.BountifulMod/]: Registering Bounty Board Jigsaw Piece for Repurposed Structures [18Feb2025 16:24:05.822] [Server thread/INFO] [net.minecraft.server.dedicated.DedicatedServer/]: Preparing level "world" [18Feb2025 16:24:05.823] [Server thread/INFO] [ModdingLegacy/blue_skies/]: Registering Dimensions [18Feb2025 16:24:05.867] [Server thread/ERROR] [net.minecraft.util.registry.WorldSettingsImport/]: Error adding element: Unknown registry element mod.beethoven92.betterendforge.common.world.feature.SinglePlantFeature@46a8dfea [18Feb2025 16:24:05.873] [Server thread/ERROR] [net.minecraft.util.registry.WorldSettingsImport/]: Error adding element: Base value out of range: 256 [-10-128] [18Feb2025 16:24:06.227] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [forge] Found status: AHEAD Current: 36.2.42 Target: null [18Feb2025 16:24:06.227] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [iceberg] Starting version check at https://mc-update-check.anthonyhilyard.com/520110 [18Feb2025 16:24:06.345] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [iceberg] Found status: BETA Current: 1.0.45 Target: null [18Feb2025 16:24:06.346] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [backpacked] Starting version check at https://mrcrayfish.com/modupdatejson?id=backpacked [18Feb2025 16:24:06.514] [Server thread/ERROR] [net.minecraft.util.registry.WorldSettingsImport/]: Error adding element: Unknown registry element mod.beethoven92.betterendforge.common.world.feature.SinglePlantFeature@46a8dfea [18Feb2025 16:24:06.519] [Server thread/ERROR] [net.minecraft.util.registry.WorldSettingsImport/]: Error adding element: Base value out of range: 256 [-10-128] [18Feb2025 16:24:07.149] [ModernFix blockstate cache rebuild thread/INFO] [ModernFix/]: Blockstate cache rebuilt in 2.449 seconds [18Feb2025 16:24:07.277] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: Preparing start region for dimension minecraft:overworld [18Feb2025 16:24:07.411] [Server thread/WARN] [ModernFix/]: Using cached upgraded version of mowziesmobs:wroughtnaut_chamber [18Feb2025 16:24:07.997] [Server thread/WARN] [ModernFix/]: Using cached upgraded version of dungeons_plus:bigger_dungeon/root [18Feb2025 16:24:07.999] [Server thread/WARN] [ModernFix/]: Using cached upgraded version of dungeons_plus:bigger_dungeon/main_room [18Feb2025 16:24:08.090] [Server thread/INFO] [net.minecraft.world.chunk.listener.LoggingChunkStatusListener/]: Preparing spawn area: 0% [18Feb2025 16:24:08.090] [Server thread/INFO] [net.minecraft.world.chunk.listener.LoggingChunkStatusListener/]: Preparing spawn area: 0% [18Feb2025 16:24:08.221] [Server thread/WARN] [ModernFix/]: Using cached upgraded version of repurposed_structures:village/oak/town_centers/fountain_01 [18Feb2025 16:24:08.222] [Server thread/WARN] [ModernFix/]: Using cached upgraded version of repurposed_structures:village/oak/streets/straight_05 [18Feb2025 16:24:08.223] [Server thread/WARN] [ModernFix/]: Using cached upgraded version of repurposed_structures:village/oak/streets/crossroad_05 [18Feb2025 16:24:08.224] [Server thread/WARN] [ModernFix/]: Using cached upgraded version of repurposed_structures:village/oak/streets/straight_03 [18Feb2025 16:24:08.225] [Server thread/WARN] [ModernFix/]: Using cached upgraded version of minecraft:village/common/iron_golem [18Feb2025 16:24:08.226] [Server thread/WARN] [ModernFix/]: Using cached upgraded version of repurposed_structures:village/oak/streets/crossroad_01 [18Feb2025 16:24:08.227] [Server thread/WARN] [ModernFix/]: Using cached upgraded version of repurposed_structures:village/oak/streets/turn_01 [18Feb2025 16:24:08.228] [Server thread/WARN] [ModernFix/]: Using cached upgraded version of repurposed_structures:village/oak/houses/small_house_3 [18Feb2025 16:24:08.229] [Server thread/WARN] [ModernFix/]: Using cached upgraded version of repurposed_structures:village/oak/streets/crossroad_04 [18Feb2025 16:24:08.229] [Server thread/WARN] [ModernFix/]: Using cached upgraded version of repurposed_structures:village/oak/terminators/terminator_01 [18Feb2025 16:24:08.230] [Server thread/WARN] [ModernFix/]: Using cached upgraded version of repurposed_structures:village/oak/terminators/terminator_02 [18Feb2025 16:24:08.230] [Server thread/WARN] [ModernFix/]: Using cached upgraded version of repurposed_structures:village/oak/houses/animal_pen_3 [18Feb2025 16:24:08.231] [Server thread/WARN] [ModernFix/]: Using cached upgraded version of repurposed_structures:village/oak/streets/corner_03 [18Feb2025 16:24:08.232] [Server thread/WARN] [ModernFix/]: Using cached upgraded version of repurposed_structures:village/oak/houses/small_house_4 [18Feb2025 16:24:08.234] [Server thread/WARN] [ModernFix/]: Using cached upgraded version of repurposed_structures:village/oak/streets/straight_04 [18Feb2025 16:24:08.235] [Server thread/WARN] [ModernFix/]: Using cached upgraded version of repurposed_structures:village/oak/houses/temple_4 [18Feb2025 16:24:08.236] [Server thread/WARN] [ModernFix/]: Using cached upgraded version of repurposed_structures:village/oak/houses/small_house_1 [18Feb2025 16:24:08.237] [Server thread/WARN] [ModernFix/]: Using cached upgraded version of repurposed_structures:village/oak/streets/crossroad_02 [18Feb2025 16:24:08.238] [Server thread/WARN] [ModernFix/]: Using cached upgraded version of repurposed_structures:village/oak/houses/masons_house_1 [18Feb2025 16:24:08.240] [Server thread/WARN] [ModernFix/]: Using cached upgraded version of repurposed_structures:village/oak/streets/crossroad_03 [18Feb2025 16:24:08.241] [Server thread/WARN] [ModernFix/]: Using cached upgraded version of repurposed_structures:village/oak/houses/small_house_2 [18Feb2025 16:24:08.242] [Server thread/WARN] [ModernFix/]: Using cached upgraded version of repurposed_structures:village/oak/streets/straight_02 [18Feb2025 16:24:08.243] [Server thread/WARN] [ModernFix/]: Using cached upgraded version of repurposed_structures:village/oak/terminators/terminator_03 [18Feb2025 16:24:08.243] [Server thread/WARN] [ModernFix/]: Using cached upgraded version of repurposed_structures:village/oak/streets/corner_01 [18Feb2025 16:24:08.244] [Server thread/WARN] [ModernFix/]: Using cached upgraded version of repurposed_structures:village/oak/decor/lamp_1 [18Feb2025 16:24:08.245] [Server thread/WARN] [ModernFix/]: Using cached upgraded version of repurposed_structures:village/oak/streets/corner_02 [18Feb2025 16:24:08.247] [Server thread/WARN] [ModernFix/]: Using cached upgraded version of repurposed_structures:village/oak/houses/medium_house_1 [18Feb2025 16:24:08.249] [Server thread/WARN] [ModernFix/]: Using cached upgraded version of repurposed_structures:village/oak/streets/straight_01 [18Feb2025 16:24:08.250] [Server thread/WARN] [ModernFix/]: Using cached upgraded version of repurposed_structures:village/oak/houses/weaponsmith_1 [18Feb2025 16:24:08.252] [Server thread/WARN] [ModernFix/]: Using cached upgraded version of repurposed_structures:village/oak/houses/tool_smith_1 [18Feb2025 16:24:08.252] [Server thread/WARN] [ModernFix/]: Using cached upgraded version of waystones:village/common/waystone [18Feb2025 16:24:08.278] [Worker-Main-22/INFO] [net.minecraft.world.chunk.listener.LoggingChunkStatusListener/]: Preparing spawn area: 67% [18Feb2025 16:24:08.604] [Server thread/INFO] [net.minecraft.world.chunk.listener.LoggingChunkStatusListener/]: Time elapsed: 1326 ms [18Feb2025 16:24:08.605] [Server thread/INFO] [net.minecraft.server.dedicated.DedicatedServer/]: Done (3.071s)! For help, type "help" [18Feb2025 16:24:08.634] [Server thread/INFO] [strawgolem/]: Strawgolem: Server Starting [18Feb2025 16:24:08.639] [Server thread/INFO] [net.ncpbails.culturaldelights.CulturalDelights/]: HELLO from server starting [18Feb2025 16:24:08.639] [Server thread/INFO] [club.iananderson.seasonhud.SeasonHUD/]: HELLO from server starting [18Feb2025 16:24:08.644] [Server thread/WARN] [ModernFix/]: Dedicated server took 29.937 seconds to load [18Feb2025 16:24:08.650] [Server thread/INFO] [FTB Utilities Backups/]: Backups folder - C:\Gaming-Programme\MC-Server\Server mit Matteo und Oskar\MO Server\MO Server\backups [18Feb2025 16:24:08.799] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [backpacked] Found status: BETA_OUTDATED Current: 2.1.8 Target: 2.1.13 [18Feb2025 16:24:08.799] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [puzzleslib] Starting version check at https://raw.githubusercontent.com/Fuzss/modresources/main/update/puzzleslib.json [18Feb2025 16:24:08.831] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [puzzleslib] Found status: UP_TO_DATE Current: 1.0.15 Target: null [18Feb2025 16:24:30.062] [Server thread/WARN] [mixin/]: @Final field field_147370_c:Lorg/apache/logging/log4j/Logger; in betterendforge.mixins.json:ServerPlayNetHandlerMixin should be final [18Feb2025 16:24:30.064] [Server thread/WARN] [mixin/]: @ModifyConstant conflict. Skipping randompatches.mixins.json:timeouts.ServerPlayNetHandlerKeepAliveMixin->@ModifyConstant::getKeepAlivePacketInterval(J)J with priority 1000, already redirected by connectivity.mixins.json:ServerPlayNetHandlerMixin->@ModifyConstant::playTimeout(J)J with priority 1001 [18Feb2025 16:24:30.065] [Server thread/ERROR] [net.minecraft.server.MinecraftServer/]: Encountered an unexpected exception org.spongepowered.asm.mixin.transformer.throwables.MixinTransformerError: An unexpected critical error was encountered at org.spongepowered.asm.mixin.transformer.MixinProcessor.applyMixins(MixinProcessor.java:392) ~[mixin-0.8.4.jar:0.8.4+Jenkins-b308.git-2accda5000f7602229606b39437565542cc6fba4] at org.spongepowered.asm.mixin.transformer.MixinTransformer.transformClass(MixinTransformer.java:250) ~[mixin-0.8.4.jar:0.8.4+Jenkins-b308.git-2accda5000f7602229606b39437565542cc6fba4] at org.spongepowered.asm.service.modlauncher.MixinTransformationHandler.processClass(MixinTransformationHandler.java:131) ~[mixin-0.8.4.jar:0.8.4+Jenkins-b308.git-2accda5000f7602229606b39437565542cc6fba4] at org.spongepowered.asm.launch.MixinLaunchPluginLegacy.processClass(MixinLaunchPluginLegacy.java:131) ~[mixin-0.8.4.jar:0.8.4+Jenkins-b308.git-2accda5000f7602229606b39437565542cc6fba4] at cpw.mods.modlauncher.serviceapi.ILaunchPluginService.processClassWithFlags(ILaunchPluginService.java:154) ~[modlauncher-8.1.3.jar:8.1.3+8.1.3+main-8.1.x.c94d18ec] at cpw.mods.modlauncher.LaunchPluginHandler.offerClassNodeToPlugins(LaunchPluginHandler.java:85) ~[modlauncher-8.1.3.jar:?] at cpw.mods.modlauncher.ClassTransformer.transform(ClassTransformer.java:120) ~[modlauncher-8.1.3.jar:?] at cpw.mods.modlauncher.TransformingClassLoader$DelegatedClassLoader.findClass(TransformingClassLoader.java:265) ~[modlauncher-8.1.3.jar:?] at cpw.mods.modlauncher.TransformingClassLoader.loadClass(TransformingClassLoader.java:136) ~[modlauncher-8.1.3.jar:?] at cpw.mods.modlauncher.TransformingClassLoader.loadClass(TransformingClassLoader.java:98) ~[modlauncher-8.1.3.jar:?] at java.lang.ClassLoader.loadClass(ClassLoader.java:351) ~[?:1.8.0_442] at net.minecraft.network.NetworkManager.func_74428_b(NetworkManager.java:225) ~[?:?] at net.minecraft.network.NetworkSystem.func_151269_c(NetworkSystem.java:134) ~[?:?] at net.minecraft.server.MinecraftServer.func_71190_q(MinecraftServer.java:865) ~[?:?] at net.minecraft.server.dedicated.DedicatedServer.func_71190_q(DedicatedServer.java:291) ~[?:?] at net.minecraft.server.MinecraftServer.func_71217_p(MinecraftServer.java:787) ~[?:?] at net.minecraft.server.MinecraftServer.func_240802_v_(MinecraftServer.java:642) ~[?:?] at net.minecraft.server.MinecraftServer.func_240783_a_(MinecraftServer.java:232) ~[?:?] at java.lang.Thread.run(Thread.java:750) [?:1.8.0_442] Caused by: org.spongepowered.asm.mixin.injection.throwables.InjectionError: Critical injection failure: Constant modifier method getKeepAlivePacketInterval(J)J in randompatches.mixins.json:timeouts.ServerPlayNetHandlerKeepAliveMixin failed injection check, (0/1) succeeded. Scanned 1 target(s). Using refmap randompatches.refmap.json at org.spongepowered.asm.mixin.injection.struct.InjectionInfo.postInject(InjectionInfo.java:468) ~[mixin-0.8.4.jar:0.8.4+Jenkins-b308.git-2accda5000f7602229606b39437565542cc6fba4] at org.spongepowered.asm.mixin.transformer.MixinTargetContext.applyInjections(MixinTargetContext.java:1362) ~[mixin-0.8.4.jar:0.8.4+Jenkins-b308.git-2accda5000f7602229606b39437565542cc6fba4] at org.spongepowered.asm.mixin.transformer.MixinApplicatorStandard.applyInjections(MixinApplicatorStandard.java:1051) ~[mixin-0.8.4.jar:0.8.4+Jenkins-b308.git-2accda5000f7602229606b39437565542cc6fba4] at org.spongepowered.asm.mixin.transformer.MixinApplicatorStandard.applyMixin(MixinApplicatorStandard.java:400) ~[mixin-0.8.4.jar:0.8.4+Jenkins-b308.git-2accda5000f7602229606b39437565542cc6fba4] at org.spongepowered.asm.mixin.transformer.MixinApplicatorStandard.apply(MixinApplicatorStandard.java:325) ~[mixin-0.8.4.jar:0.8.4+Jenkins-b308.git-2accda5000f7602229606b39437565542cc6fba4] at org.spongepowered.asm.mixin.transformer.TargetClassContext.apply(TargetClassContext.java:383) ~[mixin-0.8.4.jar:0.8.4+Jenkins-b308.git-2accda5000f7602229606b39437565542cc6fba4] at org.spongepowered.asm.mixin.transformer.TargetClassContext.applyMixins(TargetClassContext.java:365) ~[mixin-0.8.4.jar:0.8.4+Jenkins-b308.git-2accda5000f7602229606b39437565542cc6fba4] at org.spongepowered.asm.mixin.transformer.MixinProcessor.applyMixins(MixinProcessor.java:363) ~[mixin-0.8.4.jar:0.8.4+Jenkins-b308.git-2accda5000f7602229606b39437565542cc6fba4] ... 18 more [18Feb2025 16:24:30.072] [Server thread/FATAL] [net.minecraftforge.common.ForgeMod/]: Preparing crash report with UUID b98ea77a-bd35-4eed-8141-7c7de92060cb [18Feb2025 16:24:30.076] [Server thread/ERROR] [net.minecraft.server.MinecraftServer/]: This crash report has been saved to: C:\Gaming-Programme\MC-Server\Server mit Matteo und Oskar\MO Server\MO Server\.\crash-reports\crash-2025-02-18_16.24.30-server.txt [18Feb2025 16:24:30.076] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: Stopping server [18Feb2025 16:24:30.077] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: Saving players [18Feb2025 16:24:30.077] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: Saving worlds [18Feb2025 16:24:30.077] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: Saving chunks for level 'ServerLevel[world]'/minecraft:overworld [18Feb2025 16:24:30.194] [Netty Server IO #1/WARN] [com.connectivity.Connectivity/]: Login payload for Registry minecraft:item is using 35,8286% of max allowed vanilla size [18Feb2025 16:24:30.198] [Netty Server IO #1/WARN] [com.connectivity.Connectivity/]: Login payload for Registry minecraft:block is using 35,5763% of max allowed vanilla size [18Feb2025 16:24:30.972] [User Authenticator #1/INFO] [net.minecraft.network.login.ServerLoginNetHandler/]: UUID of player Gathalon is f79f59e1-8818-454d-a298-3942a18af4e3 [18Feb2025 16:24:31.294] [Server thread/INFO] [net.minecraft.world.server.ChunkManager/]: ThreadedAnvilChunkStorage (world): All chunks are saved [18Feb2025 16:24:31.294] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: Saving chunks for level 'ServerLevel[world]'/minecraft:the_nether [18Feb2025 16:24:31.296] [Server thread/INFO] [net.minecraft.world.server.ChunkManager/]: ThreadedAnvilChunkStorage (DIM-1): All chunks are saved [18Feb2025 16:24:31.296] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: Saving chunks for level 'ServerLevel[world]'/minecraft:the_end [18Feb2025 16:24:31.298] [Server thread/INFO] [net.minecraft.world.server.ChunkManager/]: ThreadedAnvilChunkStorage (DIM1): All chunks are saved [18Feb2025 16:24:31.298] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: Saving chunks for level 'ServerLevel[world]'/theabyss:dream [18Feb2025 16:24:31.300] [Server thread/INFO] [net.minecraft.world.server.ChunkManager/]: ThreadedAnvilChunkStorage (dream): All chunks are saved [18Feb2025 16:24:31.300] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: Saving chunks for level 'ServerLevel[world]'/twilightforest:twilightforest [18Feb2025 16:24:31.301] [Server thread/INFO] [net.minecraft.world.server.ChunkManager/]: ThreadedAnvilChunkStorage (twilightforest): All chunks are saved [18Feb2025 16:24:31.301] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: Saving chunks for level 'ServerLevel[world]'/dead_guys_untitled_deep_dark_:deep_darky [18Feb2025 16:24:31.302] [Server thread/INFO] [net.minecraft.world.server.ChunkManager/]: ThreadedAnvilChunkStorage (deep_darky): All chunks are saved [18Feb2025 16:24:31.303] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: Saving chunks for level 'ServerLevel[world]'/theabyss:radio [18Feb2025 16:24:31.304] [Server thread/INFO] [net.minecraft.world.server.ChunkManager/]: ThreadedAnvilChunkStorage (radio): All chunks are saved [18Feb2025 16:24:31.304] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: Saving chunks for level 'ServerLevel[world]'/theabyss:ground_lands [18Feb2025 16:24:31.307] [Server thread/INFO] [net.minecraft.world.server.ChunkManager/]: ThreadedAnvilChunkStorage (ground_lands): All chunks are saved [18Feb2025 16:24:31.307] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: Saving chunks for level 'ServerLevel[world]'/twilightforest:skylight_forest [18Feb2025 16:24:31.308] [Server thread/INFO] [net.minecraft.world.server.ChunkManager/]: ThreadedAnvilChunkStorage (skylight_forest): All chunks are saved [18Feb2025 16:24:31.308] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: Saving chunks for level 'ServerLevel[world]'/blue_skies:everdawn [18Feb2025 16:24:31.311] [Server thread/INFO] [net.minecraft.world.server.ChunkManager/]: ThreadedAnvilChunkStorage (everdawn): All chunks are saved [18Feb2025 16:24:31.311] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: Saving chunks for level 'ServerLevel[world]'/theabyss:the_abyss [18Feb2025 16:24:31.313] [Server thread/INFO] [net.minecraft.world.server.ChunkManager/]: ThreadedAnvilChunkStorage (the_abyss): All chunks are saved [18Feb2025 16:24:31.313] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: Saving chunks for level 'ServerLevel[world]'/blue_skies:everbright [18Feb2025 16:24:31.314] [Server thread/INFO] [net.minecraft.world.server.ChunkManager/]: ThreadedAnvilChunkStorage (everbright): All chunks are saved [18Feb2025 16:24:31.314] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: Saving chunks for level 'ServerLevel[world]'/theabyss:frost_world [18Feb2025 16:24:31.315] [Server thread/INFO] [net.minecraft.world.server.ChunkManager/]: ThreadedAnvilChunkStorage (frost_world): All chunks are saved [18Feb2025 16:24:31.315] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: Saving chunks for level 'ServerLevel[world]'/theabyss:pocket_dimension [18Feb2025 16:24:31.318] [Server thread/INFO] [net.minecraft.world.server.ChunkManager/]: ThreadedAnvilChunkStorage (pocket_dimension): All chunks are saved [18Feb2025 16:24:31.384] [Server thread/INFO] [net.minecraft.world.server.ChunkManager/]: ThreadedAnvilChunkStorage (world): All chunks are saved [18Feb2025 16:24:31.387] [Server thread/INFO] [net.minecraft.world.server.ChunkManager/]: ThreadedAnvilChunkStorage (DIM-1): All chunks are saved [18Feb2025 16:24:31.388] [Server thread/INFO] [net.minecraft.world.server.ChunkManager/]: ThreadedAnvilChunkStorage (DIM1): All chunks are saved [18Feb2025 16:24:31.388] [Server thread/INFO] [net.minecraft.world.server.ChunkManager/]: ThreadedAnvilChunkStorage (dream): All chunks are saved [18Feb2025 16:24:31.389] [Server thread/INFO] [net.minecraft.world.server.ChunkManager/]: ThreadedAnvilChunkStorage (twilightforest): All chunks are saved [18Feb2025 16:24:31.389] [Server thread/INFO] [net.minecraft.world.server.ChunkManager/]: ThreadedAnvilChunkStorage (deep_darky): All chunks are saved [18Feb2025 16:24:31.389] [Server thread/INFO] [net.minecraft.world.server.ChunkManager/]: ThreadedAnvilChunkStorage (radio): All chunks are saved [18Feb2025 16:24:31.390] [Server thread/INFO] [net.minecraft.world.server.ChunkManager/]: ThreadedAnvilChunkStorage (ground_lands): All chunks are saved [18Feb2025 16:24:31.390] [Server thread/INFO] [net.minecraft.world.server.ChunkManager/]: ThreadedAnvilChunkStorage (skylight_forest): All chunks are saved [18Feb2025 16:24:31.390] [Server thread/INFO] [net.minecraft.world.server.ChunkManager/]: ThreadedAnvilChunkStorage (everdawn): All chunks are saved [18Feb2025 16:24:31.390] [Server thread/INFO] [net.minecraft.world.server.ChunkManager/]: ThreadedAnvilChunkStorage (the_abyss): All chunks are saved [18Feb2025 16:24:31.390] [Server thread/INFO] [net.minecraft.world.server.ChunkManager/]: ThreadedAnvilChunkStorage (everbright): All chunks are saved [18Feb2025 16:24:31.391] [Server thread/INFO] [net.minecraft.world.server.ChunkManager/]: ThreadedAnvilChunkStorage (frost_world): All chunks are saved [18Feb2025 16:24:31.391] [Server thread/INFO] [net.minecraft.world.server.ChunkManager/]: ThreadedAnvilChunkStorage (pocket_dimension): All chunks are saved
  11. I am building a mod where I just want a some blocks to highlight in any way (face or edge or anything). Most examples online say to use `net.minecraftforge.client.event.RenderLevelLastEvent`. Though that shows to be deprecated in favor of `net.minecraftforge.client.event.RenderLevelStageEvent`. I'm getting the typical "Cannot resolve symbol" for both `RenderLevelStageEvent` AND `RenderLevelLastEvent` Do I need another package or something? I just have the latest base MDK (1.21.4-54.1.0) and nothing else special going on.
  12. I recently updated my mod from 1.21 to 1.21.4. Didn't change anything on the data generation code (even though methods are now marked as deprecated) and had to change the block and item registration to explicitly add the id to avoid the "null pointer exception no id supplied" error The problem is that the block models work fine, as they did before, textures and all, but not the item ones. Is it because of this registration change? Did something in the datapack structure change on minecraft itself? Here is one of the registration lines im using as reference: RegistryObject<Item> CUSTOMITEM = ITEMS.register("item", () -> new RawMaterial(new Item.Properties().useItemDescriptionPrefix().setId(ResourceKey.create(Registries.ITEM, ResourceLocation.fromNamespaceAndPath(MOD_ID, "item")))))); and same for blocks: private static <T extends Block> RegistryObject<Item> registerBlockItem(String name, RegistryObject<T> block) { //T is the block type. It will register the block and the block item. return ModItems.ITEMS.register(name, () -> new BlockItem(block.get(), new Item.Properties().useBlockDescriptionPrefix().setId(ResourceKey.create(Registries.ITEM, ResourceLocation.fromNamespaceAndPath(MOD_ID, name))))); } RegistryObject<Block> CUSTOMORE = registerBlock("ore", () -> new CustomOre(Block.Properties.ofFullCopy(Blocks.STONE).setId(ResourceKey.create(Registries.BLOCK, ResourceLocation.fromNamespaceAndPath(MOD_ID,"ore")))))); Note that this made the translation keys i had pre 1.21.4 correctly show the translatable component, so im guessing that is okay, but just in case.
  13. IEventBus modEventBus = FMLJavaModLoadingContext.get().getModEventBus(); It says that '.get()' is deprecated since version 1.21.1 and has been marked for removal. How should I replace this line or section of code so it works? Or is there a way to fix it? Full Block of Code: IEventBus modEventBus = FMLJavaModLoadingContext.get().getModEventBus(); // This is the line that's messed up... I don't know why modEventBus.addListener(this::commonSetup); MinecraftForge.EVENT_BUS.register(this);
  14. [20:21:34] [main/INFO]: Loading Minecraft 1.20.1 with Fabric Loader 0.16.9 [20:21:39] [ForkJoinPool-1-worker-1/WARN]: Mod mr_dungeons uses the version 1.8.4b which isn't compatible with Loader's extended semantic version format (Could not parse version number component '4b'!), SemVer is recommended for reliably evaluating dependencies and prioritizing newer version [20:21:39] [ForkJoinPool-1-worker-3/WARN]: The mod "dungeons_arise" contains invalid entries in its mod json: - Unsupported root entry "credits" at line 12 column 12 [20:21:40] [ForkJoinPool-1-worker-1/WARN]: Mod getittogetherdrops uses the version fabric-1.20-1.3.1 which isn't compatible with Loader's extended semantic version format (Could not parse version number component 'fabric'!), SemVer is recommended for reliably evaluating dependencies and prioritizing newer version [20:21:43] [ForkJoinPool-1-worker-2/WARN]: Mod mr_stellarity uses the version 2.0e which isn't compatible with Loader's extended semantic version format (Could not parse version number component '0e'!), SemVer is recommended for reliably evaluating dependencies and prioritizing newer version [20:21:44] [main/WARN]: Warnings were found! - Mod 'Debugify' (debugify) 1.20.1+2.0 recommends any 3.x version of yet-another-config-lib, which is missing! - You should install any 3.x version of yet-another-config-lib for the optimal experience. - Mod 'Expanded Ecosphere' (expanded_ecosphere) 3.2.4 conflicts with any version of mod 'William Wythers' Overhauled Overworld' (wwoo), which is present with the following versions: 2.0.0! - While this won't prevent you from starting the game, the developer(s) of mod 'Expanded Ecosphere' (expanded_ecosphere) have found that this combination may cause issues. You should remove one of the mods or check for updates that resolve the issue. [20:21:44] [main/INFO]: Loading 431 mods: - accelerateddecay 3.0.1+mc1.20.1 - ad_astra 1.15.19 \-- javazoom_jlayer 1.0.1 - ad_astra_giselle_addon 6.16 - advancedcompass 1.2.15 - adventurez 1.4.20 - almanac 1.0.2 - amecs 1.3.10+mc.1.20.1 \-- amecsapi 1.4.0+mc1.20-pre1 - amendments 1.20-1.2.14 - animatica 0.6.1+1.20.4 - another_furniture 1.20.1-3.0.1 - appleskin 2.5.1+mc1.20 - architectury 9.2.14 - armorful 3.1.3+1.20.1 - artifacts 9.5.13 |-- expandability 9.0.4 \-- step-height-entity-attribute 1.2.0 - asynclocator 1.3.0 - attributefix 21.0.4 - autotag-convention 2.0.2+1.20 \-- autotag 2.0.2+1.20 - azurelib 2.0.41 - azurelibarmor 2.0.14 - badoptimizations 2.2.1 - bakingdelight 0.5.4+1.20.1 \-- team_reborn_energy 3.0.0 - balm-fabric 7.3.11 \-- kuma_api 20.1.9-SNAPSHOT - battletowers 1.0.3 - bcc 4.0.8 - better_totem_of_undying 2.0.1 - betteradvancements 0.4.2.10 - betteranimationscollection 8.0.0 - bettercombat 1.8.6+1.20.1 - betterdungeons 1.20-Fabric-4.0.4 \-- org_reflections_reflections 0.10.2 - betterfortresses 1.20-Fabric-2.0.6 - betterfpsdist 1.20.1-6.0 - betterjungletemples 1.20-Fabric-2.0.5 - betterloot 1.0.0+mc1.20.1 - bettermineshafts 1.20-Fabric-4.0.4 - betterstrongholds 1.20-Fabric-4.0.3 - blur 3.1.0 - bobby 5.0.1 |-- com_typesafe_config 1.4.2 |-- io_leangen_geantyref_geantyref 1.3.13 |-- org_spongepowered_configurate-core 4.1.2 \-- org_spongepowered_configurate-hocon 4.1.2 - bookshelf 20.2.13 - bosses_of_mass_destruction 1.7.5-1.20.1 |-- maelstrom_library 1.6.1-1.20 \-- multipart_entities 1.5-1.20 - botarium 2.3.4 \-- team_reborn_energy 3.0.0 - c2me 0.2.0+alpha.11.13 |-- c2me-base 0.2.0+alpha.11.13 |-- c2me-client-uncapvd 0.2.0+alpha.11.13 |-- c2me-fixes-chunkio-threading-issues 0.2.0+alpha.11.13 |-- c2me-fixes-general-threading-issues 0.2.0+alpha.11.13 |-- c2me-fixes-worldgen-threading-issues 0.2.0+alpha.11.13 |-- c2me-fixes-worldgen-vanilla-bugs 0.2.0+alpha.11.13 |-- c2me-notickvd 0.2.0+alpha.11.13 |-- c2me-opts-allocs 0.2.0+alpha.11.13 |-- c2me-opts-chunk-access 0.2.0+alpha.11.13 |-- c2me-opts-chunkio 0.2.0+alpha.11.13 |-- c2me-opts-math 0.2.0+alpha.11.13 |-- c2me-opts-scheduling 0.2.0+alpha.11.13 |-- c2me-opts-worldgen-general 0.2.0+alpha.11.13 |-- c2me-opts-worldgen-vanilla 0.2.0+alpha.11.13 |-- c2me-rewrites-chunk-serializer 0.2.0+alpha.11.13 |-- c2me-rewrites-chunkio 0.2.0+alpha.11.13 |-- c2me-server-utils 0.2.0+alpha.11.13 |-- c2me-threading-chunkio 0.2.0+alpha.11.13 |-- c2me-threading-lighting 0.2.0+alpha.11.13 |-- c2me-threading-worldgen 0.2.0+alpha.11.13 |-- com_ibm_async_asyncutil 0.1.0 |-- net_objecthunter_exp4j 0.4.8 \-- org_threadly_threadly 7.0 - cardinal-components 5.2.3 |-- cardinal-components-base 5.2.3 |-- cardinal-components-block 5.2.3 |-- cardinal-components-chunk 5.2.3 |-- cardinal-components-entity 5.2.3 |-- cardinal-components-item 5.2.3 |-- cardinal-components-level 5.2.3 |-- cardinal-components-scoreboard 5.2.3 \-- cardinal-components-world 5.2.3 - carryon 2.1.2.7 - cerbons_api 1.1.0 - charmofundying 6.5.0+1.20.1 - chisel 1.8.0 - chunksending 1.20.1-2.8 - cicada 0.10.2+1.20.1 - citresewn 1.1.5+1.20.1 \-- citresewn-defaults 1.1.5+1.20.1 - clean-debug 0.4.9 - clearwater 2.1 - clienttweaks 11.1.0 - cloth-config 11.1.136 \-- cloth-basic-math 0.6.1 - clumps 12.0.0.4 - collective 7.87 - corgilib 4.0.3.3 |-- com_electronwill_night-config_core 3.8.0 \-- com_electronwill_night-config_toml 3.8.0 - coroutil 1.20.1-1.3.7 - crafttweaker 14.0.49 - creativecore 2.12.24 \-- net_minecraftforge_eventbus 6.0.3 - cristellib 1.1.5 \-- blue_endless_jankson 1.2.3 - crops_love_rain 1.4.0 \-- cactusconfig 2.1.1+knot+1.20.1 \-- spruceui 5.0.0+1.20 - culinaryconstruct 5.2.1+1.20.1 - cullleaves 3.2.0 - cupboard 1.20.1-2.7 - darkbindings 1.3.9 - darkbosses 1.0.4 - darktimer 1.1.9 - darkwaters 0.0.22 - debugify 1.20.1+2.0 - dehydration 1.3.6 - diet 2.1.1+1.20.1 - disable_custom_worlds_advice 4.1 - dungeons_arise 2.1.58 - dusk 1.20.1-3.6 - dynamic_fps 3.7.7 \-- net_lostluma_battery 1.3.0 - e4mc_minecraft 5.2.1 \-- folk_sisby_kaleido-config 0.3.1+1.3.1 - easyanvils 8.0.2 - easymagic 8.0.1 - enchancement 1.20-26 - enchdesc 17.1.19 - enhancedblockentities 0.9+1.20 |-- advanced_runtime_resource_pack 0.6.7 \-- spruceui 5.0.0+1.20 - enhancedvisuals 1.8.1 - entity_model_features 2.4.1 - entity_texture_features 6.2.9 \-- org_apache_httpcomponents_httpmime 4.5.10 - entityculling 1.7.2 - environmentz 2.0.8 - equipmentcompare 1.3.8 - exordium 1.2.1-mc1.20.1 - expanded_ecosphere 3.2.4 - explorify 1.6.2 - fabric-api 0.92.3+1.20.1 |-- fabric-api-base 0.4.31+1802ada577 |-- fabric-api-lookup-api-v1 1.6.36+1802ada577 |-- fabric-biome-api-v1 13.0.13+1802ada577 |-- fabric-block-api-v1 1.0.11+1802ada577 |-- fabric-block-view-api-v2 1.0.1+1802ada577 |-- fabric-blockrenderlayer-v1 1.1.41+1802ada577 |-- fabric-client-tags-api-v1 1.1.2+1802ada577 |-- fabric-command-api-v1 1.2.34+f71b366f77 |-- fabric-command-api-v2 2.2.13+1802ada577 |-- fabric-commands-v0 0.2.51+df3654b377 |-- fabric-containers-v0 0.1.65+df3654b377 |-- fabric-content-registries-v0 4.0.12+1802ada577 |-- fabric-convention-tags-v1 1.5.5+1802ada577 |-- fabric-crash-report-info-v1 0.2.19+1802ada577 |-- fabric-data-attachment-api-v1 1.0.1+de0fd6d177 |-- fabric-data-generation-api-v1 12.3.5+1802ada577 |-- fabric-dimensions-v1 2.1.54+1802ada577 |-- fabric-entity-events-v1 1.6.0+1c78457f77 |-- fabric-events-interaction-v0 0.6.3+13a40c6677 |-- fabric-events-lifecycle-v0 0.2.63+df3654b377 |-- fabric-game-rule-api-v1 1.0.40+1802ada577 |-- fabric-item-api-v1 2.1.28+1802ada577 |-- fabric-item-group-api-v1 4.0.13+1802ada577 |-- fabric-key-binding-api-v1 1.0.37+1802ada577 |-- fabric-keybindings-v0 0.2.35+df3654b377 |-- fabric-lifecycle-events-v1 2.2.22+1802ada577 |-- fabric-loot-api-v2 1.2.2+1802ada577 |-- fabric-loot-tables-v1 1.1.46+9e7660c677 |-- fabric-message-api-v1 5.1.9+1802ada577 |-- fabric-mining-level-api-v1 2.1.51+1802ada577 |-- fabric-model-loading-api-v1 1.0.3+1802ada577 |-- fabric-models-v0 0.4.2+9386d8a777 |-- fabric-networking-api-v1 1.3.12+13a40c6677 |-- fabric-networking-v0 0.3.52+df3654b377 |-- fabric-object-builder-api-v1 11.1.4+1802ada577 |-- fabric-particles-v1 1.1.2+1802ada577 |-- fabric-recipe-api-v1 1.0.22+1802ada577 |-- fabric-registry-sync-v0 2.3.4+1802ada577 |-- fabric-renderer-api-v1 3.2.1+1802ada577 |-- fabric-renderer-indigo 1.5.2+85287f9f77 |-- fabric-renderer-registries-v1 3.2.46+df3654b377 |-- fabric-rendering-data-attachment-v1 0.3.37+92a0d36777 |-- fabric-rendering-fluids-v1 3.0.28+1802ada577 |-- fabric-rendering-v0 1.1.49+df3654b377 |-- fabric-rendering-v1 3.0.8+1802ada577 |-- fabric-resource-conditions-api-v1 2.3.8+1802ada577 |-- fabric-resource-loader-v0 0.11.11+fb82e9d777 |-- fabric-screen-api-v1 2.0.8+1802ada577 |-- fabric-screen-handler-api-v1 1.3.31+1802ada577 |-- fabric-sound-api-v1 1.0.13+1802ada577 |-- fabric-transfer-api-v1 3.3.5+8dd72ea377 \-- fabric-transitive-access-wideners-v1 4.3.1+1802ada577 - fabric-language-kotlin 1.13.0+kotlin.2.1.0 |-- org_jetbrains_kotlin_kotlin-reflect 2.1.0 |-- org_jetbrains_kotlin_kotlin-stdlib 2.1.0 |-- org_jetbrains_kotlin_kotlin-stdlib-jdk7 2.1.0 |-- org_jetbrains_kotlin_kotlin-stdlib-jdk8 2.1.0 |-- org_jetbrains_kotlinx_atomicfu-jvm 0.26.1 |-- org_jetbrains_kotlinx_kotlinx-coroutines-core-jvm 1.9.0 |-- org_jetbrains_kotlinx_kotlinx-coroutines-jdk8 1.9.0 |-- org_jetbrains_kotlinx_kotlinx-datetime-jvm 0.6.1 |-- org_jetbrains_kotlinx_kotlinx-io-bytestring-jvm 0.6.0 |-- org_jetbrains_kotlinx_kotlinx-io-core-jvm 0.6.0 |-- org_jetbrains_kotlinx_kotlinx-serialization-cbor-jvm 1.7.3 |-- org_jetbrains_kotlinx_kotlinx-serialization-core-jvm 1.7.3 \-- org_jetbrains_kotlinx_kotlinx-serialization-json-jvm 1.7.3 - fabricloader 0.16.9 \-- mixinextras 0.4.1 - fabricskyboxes 0.7.3+mc1.20.1 - farmersdelight 1.20.1-2.2.5+refabricated |-- mm 2.3 |-- porting_lib_accessors 2.3.8+1.20.1 | \-- porting_lib_core 2.3.8+1.20.1 |-- porting_lib_base 2.3.8+1.20.1 | |-- porting_lib_attributes 2.3.8+1.20.1 | |-- porting_lib_common 2.3.8+1.20.1 | |-- porting_lib_core 2.3.8+1.20.1 | |-- porting_lib_entity 2.3.8+1.20.1 | |-- porting_lib_extensions 2.3.8+1.20.1 | |-- porting_lib_fluids 2.3.8+1.20.1 | |-- porting_lib_gui_utils 2.3.8+1.20.1 | |-- porting_lib_mixin_extensions 2.3.8+1.20.1 | |-- porting_lib_transfer 2.3.8+1.20.1 | |-- porting_lib_utility 2.3.8+1.20.1 | \-- reach-entity-attributes 2.4.0 |-- porting_lib_config 2.3.8+1.20.1 | \-- porting_lib_core 2.3.8+1.20.1 |-- porting_lib_lazy_registration 2.3.8+1.20.1 | \-- porting_lib_core 2.3.8+1.20.1 |-- porting_lib_loot 2.3.8+1.20.1 | \-- porting_lib_core 2.3.8+1.20.1 |-- porting_lib_networking 2.3.8+1.20.1 | \-- porting_lib_core 2.3.8+1.20.1 |-- porting_lib_recipe_book_categories 2.3.8+1.20.1 | \-- porting_lib_core 2.3.8+1.20.1 |-- porting_lib_tags 3.0 | \-- porting_lib_core 2.3.8+1.20.1 \-- porting_lib_tool_actions 2.3.8+1.20.1 \-- porting_lib_core 2.3.8+1.20.1 - faux-custom-entity-data 6.0.1 - ferritecore 6.0.1 - firstaidfabric 0.7.2-1.20.1 - forgeconfigapiport 8.0.1 - framework 0.7.12 \-- org_javassist_javassist 3.29.2-GA - fzzy_config 0.6.0+1.20.1 |-- fabric-permissions-api-v0 0.3.1 \-- net_peanuuutz_tomlkt_tomlkt-jvm 0.3.7 - geckolib 4.7 \-- com_eliotlash_mclib_mclib 20 - getittogetherdrops fabric-1.20-1.3.1 - giantspawn 5.2 - gpumemleakfix 1.20.1-1.8 - hardcorerevival 12.0.6 - hearth_and_home 1.20.1-2.0.3 - horseexpert 8.1.1 - iceandfire 1.0-beta.1 \-- here-be-no-dragons 1.0.0 - iceberg 1.1.25 - ichunutil 1.0.3 - immediatelyfast 1.3.3+1.20.4 \-- net_lenni0451_reflect 1.3.4 - immersive_weathering 1.20.1-2.0.3 - incendium 5.3.5 - inventorymanagement 1.3.1 - ironchests 5.0.2 - itemphysiclite 1.6.6 - jade 11.12.0+fabric - jamlib 0.6.1+1.20.x - java 17 - jeresources 1.4.0.247 - jewelry 1.3.7+1.20.1 \-- com_github_zsoltmolnarrr_tinyconfig 2.3.2 - jjthunder_to_the_max 1.0.0 - journeymap 5.10.1 \-- journeymap-api-fabric 1.20-1.9-fabric-SNAPSHOT - jupiter 2.0 - krypton 0.2.3 \-- com_velocitypowered_velocity-native 3.2.0-SNAPSHOT - ksyxis 1.3.2 - lazydfu 0.1.3 - leaky 1.20.1-2.1 - legendarytooltips 1.4.5 - letmedespawn 1.4.4 - levelz 1.4.13 - libz 1.0.3 |-- com_fasterxml_jackson_core_jackson-annotations 2.15.2 |-- com_fasterxml_jackson_core_jackson-core 2.15.2 \-- com_fasterxml_jackson_core_jackson-databind 2.15.2 - lithium 0.11.2 - lootbeams 1.0.3 \-- com_moandjiezana_toml_toml4j 0.7.2 - lunar 0.1.10 - majruszlibrary 7.0.8 - majruszsdifficulty 1.9.10 - mca 7.5.21+1.20.1 - memoryleakfix 1.1.5 - memorysettings 1.20.1-5.5 - midnightlib 1.4.1 - mindfuldarkness 8.0.3 - minecraft 1.20.1 - mixintrace 1.1.1+1.17 - mobcaptains 3.1.1 - mobs_of_mythology 2.0.8 - modernfix 5.20.0+mc1.20.1 - modmenu 7.2.2 - modmenu-badges-lib 2023.6.1 - moonlight 1.20-2.13.49 - mr_dungeons 1.8.4b - mr_manic 1.1.0 - mr_nevermore 0.1.0 - mr_sanguine 0.4.0 - mr_stellarity 2.0e - mru 1.0.4+1.20.1+fabric - mutantmonsters 8.0.7 \-- extensibleenums 7.0.1 - necronomicon 1.6.0 - noisium 2.3.0+mc1.20-1.20.1 - notenoughcrashes 4.4.7+1.20.1 - notreepunching 7.1.0 - nvidium 0.2.6-beta - overflowingbars 8.0.1 - owo 0.11.2+1.20 - packetfixer 1.4.3 - paradise_lost 2.2.4-beta+1.20.0 \-- customportalapi 0.0.1-beta65-1.20 - particle_core 0.2.5+1.20.1 \-- conditional-mixin 0.5.1 - patchouli 1.20.1-84-FABRIC \-- fiber 0.23.0-2 - philipsruins 1.20.1 - pickupnotifier 8.0.0 - player-animator 1.0.2-rc1+1.20 - pling 1.8.1 - polymorph 0.49.8+1.20.1 \-- spectrelib 0.13.17+1.20.1 - prism 1.0.5 - profundis 1.6.2 - projectile_damage 3.2.3+1.20.1 - provihealth 1.2.4+1.20.1 \-- lilylib 1.1.3+1.20 - puffish_attributes 0.7.1 \-- mixinextras 0.4.1 - puzzleslib 8.1.25 \-- puzzlesaccessapi 8.0.7 - randomium 1.20-1.32 - ranged_weapon_api 1.1.4+1.20.1 - reacharound 1.3.1 - redirector 1.20.1-4.4.0 - reeses-sodium-options 1.7.2+mc1.20.1-build.101 - refurbished_furniture 1.0.8 - resourcefulconfig 2.1.2 - resourcefullib 2.1.29 |-- com_teamresourceful_bytecodecs 1.0.2 \-- com_teamresourceful_yabn 1.0.3 - rightclickharvest 3.2.3+1.19.x-1.20.1-fabric - rotten_flesh_to_leather 1.0.0 - roughlyenoughitems 12.1.785 \-- error_notifier 1.0.9 - satin 1.14.0 - seasons 2.4-BETA+1.20 - seasonsdelightcompat 1.0-1.3.9 - seasonsextras 1.3.2-BETA+1.20 - seasonsterralithcompat 1.0-2.3.7 - shield_api 1.0.1+1.20.1 - shield_overhaul 2.0.1 \-- playeranimatorapi 2.1.0 \-- zigysmultiloaderutils 1.2.4 - slotcycler 8.0.1 \-- puzzlesapi 8.0.2 - smartbrainlib 1.15 - smoothchunk 1.20.1-3.9 - sodium 0.5.8+mc1.20.1 - sodium-extra 0.5.4+mc1.20.1-build.115 |-- caffeineconfig 1.3.0+1.17 \-- crowdin-translate 1.4+1.19.3 - sodiumdynamiclights 1.0.9 - sodiumextras 1.0.6 - sodiumoptionsapi 1.0.9 \-- mixinsquared 0.2.0-beta.6 - sootychimneys 1.1.0 - sound_physics_remastered 1.20.1-1.4.8 - spark 1.10.53 - sparsestructures 2.2.0 - spawnanimations 1.9.4+mod - spell_power 0.12.0+1.20.1 \-- com_github_zsoltmolnarrr_tinyconfig 2.3.2 - spoiledz 1.0.10 \-- capsaicin 1.3.3+mc1.20.1 - starlight 1.1.2+fabric.dbc156f - statement 4.2.9+1.14.4-1.20.4 |-- kanos_config 0.4.1+1.14.4-1.19.4 \-- statement_vanilla_compatibility 1.0.1+1.16.5-1.17 - storagedelight 24.12.15-1.20-fabric - strayed_fates_forsaken 1.1.3.2 - structure_pool_api 1.0+1.20.1 - terra 6.3.1-BETA+73baaec6c \-- cloud 1.8.0 |-- cloud_commandframework_cloud-brigadier_ 1.8.0 |-- cloud_commandframework_cloud-core_ 1.8.0 \-- cloud_commandframework_cloud-services_ 1.8.0 - terrablender 3.0.1.7 - terralith 2.5.4 - tiered 1.3.3 \-- reach-entity-attributes 2.4.0 - tooltipfix 1.1.1-1.20 - trashslot 15.1.0 - travelerstitles 1.20-Fabric-4.0.2 - trinkets 3.7.2 - uranus 2.2.1 \-- sponsor_core 1.0.0 - valhelsia_core 1.1.2 - voidz 1.0.11 - watching 1.9.2 - waystones 14.1.4 - wildlife 1.19.2-2.2 - wwoo 2.0.0 - xp_storage 1.5.7+1.20.1 - xp_storage_trinkets 1.0+1.20.1 - yeetusexperimentus 2.3.1-build.6+mc1.20.1 - yet_another_config_lib_v3 3.6.2+1.20.1-fabric |-- com_twelvemonkeys_common_common-image 3.12.0 |-- com_twelvemonkeys_common_common-io 3.12.0 |-- com_twelvemonkeys_common_common-lang 3.12.0 |-- com_twelvemonkeys_imageio_imageio-core 3.12.0 |-- com_twelvemonkeys_imageio_imageio-metadata 3.12.0 |-- com_twelvemonkeys_imageio_imageio-webp 3.12.0 |-- org_quiltmc_parsers_gson 0.2.1 \-- org_quiltmc_parsers_json 0.2.1 - yosbr 0.1.2 - ysns 2.0.2 - yungsapi 1.20-Fabric-4.0.6 - zoomify 2.14.2+1.20.1 \-- com_akuleshov7_ktoml-core-jvm 0.5.2 [20:22:02] [main/INFO]: Applying default options... (YOSBR) [20:22:03] [main/INFO]: SpongePowered MIXIN Subsystem Version=0.8.7 Source=file:/C:/Users/cauaf/curseforge/minecraft/Install/libraries/net/fabricmc/sponge-mixin/0.15.4+mixin.0.8.7/sponge-mixin-0.15.4+mixin.0.8.7.jar Service=Knot/Fabric Env=CLIENT [20:22:04] [main/INFO]: Compatibility level set to JAVA_17 [20:22:05] [main/WARN]: Reference map 'accelerated-decay-fabric-fabric-refmap.json' for accelerateddecay.mixins.json could not be read. If this is a development environment you can ignore this message [20:22:05] [main/WARN]: Reference map 'accelerated-decay-common-refmap.json' for accelerateddecay-common.mixins.json could not be read. If this is a development environment you can ignore this message [20:22:06] [main/INFO]: Loading config file [20:22:06] [main/INFO]: Config version: 4 [20:22:06] [main/INFO]: BadOptimizations config dump: [20:22:06] [main/INFO]: enable_toast_optimizations: true [20:22:06] [main/INFO]: ignore_mod_incompatibilities: false [20:22:06] [main/INFO]: lightmap_time_change_needed_for_update: 80 [20:22:06] [main/INFO]: enable_lightmap_caching: true [20:22:06] [main/INFO]: enable_particle_manager_optimization: true [20:22:06] [main/INFO]: enable_entity_renderer_caching: true [20:22:06] [main/INFO]: log_config: true [20:22:06] [main/INFO]: enable_remove_redundant_fov_calculations: true [20:22:06] [main/INFO]: config_version: 4 [20:22:06] [main/INFO]: enable_sky_angle_caching_in_worldrenderer: true [20:22:06] [main/INFO]: enable_block_entity_renderer_caching: true [20:22:06] [main/INFO]: skycolor_time_change_needed_for_update: 3 [20:22:06] [main/INFO]: enable_entity_flag_caching: true [20:22:06] [main/INFO]: enable_debug_renderer_disable_if_not_needed: true [20:22:06] [main/INFO]: enable_sky_color_caching: true [20:22:06] [main/INFO]: enable_remove_tutorial_if_not_demo: true [20:22:06] [main/INFO]: show_f3_text: true [20:22:06] [main/INFO]: Initializing com.ishland.c2me.base.mixin [20:22:06] [main/INFO]: Initializing com.ishland.c2me.client.uncapvd.mixin [20:22:06] [main/INFO]: Disabling config clientSideConfig.modifyMaxVDConfig.enabled: Incompatible with [email protected] (*) (defined in c2me) [20:22:06] [main/INFO]: Disabling com.ishland.c2me.client.uncapvd.mixin [20:22:06] [main/INFO]: Initializing com.ishland.c2me.fixes.chunkio.threading_issues.mixin [20:22:06] [main/INFO]: Initializing com.ishland.c2me.fixes.general.threading_issues.mixin [20:22:06] [main/INFO]: Initializing com.ishland.c2me.fixes.worldgen.threading_issues.mixin [20:22:06] [main/INFO]: Initializing com.ishland.c2me.fixes.worldgen.vanilla_bugs.mixin [20:22:06] [main/INFO]: Initializing com.ishland.c2me.notickvd.mixin [20:22:06] [main/INFO]: Initializing com.ishland.c2me.opts.allocs.mixin [20:22:06] [main/INFO]: Initializing com.ishland.c2me.opts.chunk_access.mixin [20:22:06] [main/INFO]: Initializing com.ishland.c2me.opts.chunkio.mixin [20:22:06] [main/INFO]: Initializing com.ishland.c2me.opts.math.mixin [20:22:06] [main/INFO]: Initializing com.ishland.c2me.opts.scheduling.mixin [20:22:06] [main/INFO]: Initializing com.ishland.c2me.opts.worldgen.general.mixin [20:22:06] [main/INFO]: Initializing com.ishland.c2me.opts.worldgen.vanilla.mixin [20:22:06] [main/INFO]: Initializing com.ishland.c2me.rewrites.chunk_serializer.mixin [20:22:06] [main/INFO]: Disabling config ioSystem.gcFreeChunkSerializer: Incompatible with [email protected] (*) (defined in c2me) [20:22:06] [main/INFO]: Disabling com.ishland.c2me.rewrites.chunk_serializer.mixin [20:22:06] [main/INFO]: Initializing com.ishland.c2me.rewrites.chunkio.mixin [20:22:06] [main/INFO]: Disabling com.ishland.c2me.rewrites.chunkio.mixin [20:22:06] [main/INFO]: Initializing com.ishland.c2me.server.utils.mixin [20:22:06] [main/INFO]: Initializing com.ishland.c2me.threading.chunkio.mixin [20:22:06] [main/INFO]: Initializing com.ishland.c2me.threading.lighting.mixin [20:22:06] [main/INFO]: Initializing com.ishland.c2me.threading.worldgen.mixin [20:22:06] [main/INFO]: Disabling com.ishland.c2me.threading.worldgen.mixin [20:22:06] [main/WARN]: Reference map 'CerbonsAPI-Fabric-1.20.1-fabric-refmap.json' for cerbons_api.mixins.json could not be read. If this is a development environment you can ignore this message [20:22:06] [main/WARN]: Reference map 'coroutil.refmap.json' for coroutil_fabric.mixins.json could not be read. If this is a development environment you can ignore this message [20:22:06] [main/INFO]: Preloading Debugify [20:22:07] [main/WARN]: Reference map 'expanded_ecosphere-fabric-refmap.json' for wwoo.mixins.json could not be read. If this is a development environment you can ignore this message [20:22:07] [main/WARN]: Reference map 'JustEnoughResources-Fabric-1.20.1-refmap.json' for jeresources.mixins.json could not be read. If this is a development environment you can ignore this message [20:22:07] [main/INFO]: Loaded configuration file for Lithium: 115 options available, 4 override(s) found [20:22:07] [main/WARN]: Reference map 'memoryleakfix-fabric-1.17+-fabric-refmap.json' for memoryleakfix-fabric.mixins.json could not be read. If this is a development environment you can ignore this message [20:22:08] [main/INFO]: Loaded configuration file for ModernFix 5.20.0+mc1.20.1: 63 options available, 4 override(s) found [20:22:08] [main/WARN]: Option 'mixin.bugfix.paper_chunk_patches' overriden (by mods [c2me]) to 'false' [20:22:08] [main/WARN]: Option 'mixin.perf.cache_strongholds' overriden (by mods [c2me]) to 'false' [20:22:08] [main/WARN]: Option 'mixin.perf.nbt_memory_usage' overriden (by mods [c2me]) to 'false' [20:22:08] [main/WARN]: Option 'mixin.bugfix.chunk_deadlock' overriden (by mods [c2me]) to 'false' [20:22:08] [main/INFO]: Applying Nashorn fix [20:22:08] [main/WARN]: Reference map 'packetfixer-fabric-fabric-refmap.json' for packetfixer-fabric.mixins.json could not be read. If this is a development environment you can ignore this message [20:22:08] [main/WARN]: Reference map 'philipsruins-refmap.json' for philipsruins.mixins.json could not be read. If this is a development environment you can ignore this message [20:22:08] [main/WARN]: Reference map 'randomium-fabric-refmap.json' for randomium.mixins.json could not be read. If this is a development environment you can ignore this message [20:22:08] [main/WARN]: [Satin] Sodium is present, custom block renders may not work [20:22:08] [main/INFO]: Loaded configuration file for Sodium: 42 options available, 0 override(s) found [20:22:08] [main/INFO]: Loaded configuration file for Sodium Extra: 34 options available, 0 override(s) found [20:22:08] [main/WARN]: Reference map 'terra.fabric.refmap.json' for terra.fabric.mixins.json could not be read. If this is a development environment you can ignore this message [20:22:08] [main/WARN]: Reference map 'valhelsia_core-fabric-refmap.json' for valhelsia_core.mixins.json could not be read. If this is a development environment you can ignore this message [20:22:08] [main/WARN]: Reference map 'wildlife-refmap.json' for wildlife.mixins.json could not be read. If this is a development environment you can ignore this message [20:22:08] [main/WARN]: Reference map 'zigysmultiloaderutils-common-1.20.1-common-refmap.json' for zigysmultiloaderutils-common.mixins.json could not be read. If this is a development environment you can ignore this message [20:22:10] [main/WARN]: Error loading class: io/vram/frex/base/renderer/context/render/EntityBlockRenderContext (java.lang.ClassNotFoundException: io/vram/frex/base/renderer/context/render/EntityBlockRenderContext) [20:22:10] [main/WARN]: @Mixin target io.vram.frex.base.renderer.context.render.EntityBlockRenderContext was not found porting_lib_base.mixins.json:client.frex.EntityBlockRenderContextMixin from mod porting_lib_base [20:22:11] [main/INFO]: Loaded config for: betterfpsdist.json [20:22:11] [main/WARN]: Error loading class: me/jellysquid/mods/sodium/client/model/quad/blender/LinearColorBlender (java.lang.ClassNotFoundException: me/jellysquid/mods/sodium/client/model/quad/blender/LinearColorBlender) [20:22:11] [main/WARN]: Force disabled MC-121772 because it only applies to OS: MAC [20:22:11] [main/WARN]: Force disabled MC-122477 because it only applies to OS: LINUX [20:22:11] [main/WARN]: Force disabled MC-176559 because it's conflicting with: fabric-api [20:22:11] [main/WARN]: Force disabled MC-22882 because it only applies to OS: MAC [20:22:12] [main/WARN]: Error loading class: net/irisshaders/batchedentityrendering/impl/FullyBufferedMultiBufferSource (java.lang.ClassNotFoundException: net/irisshaders/batchedentityrendering/impl/FullyBufferedMultiBufferSource) [20:22:12] [main/WARN]: Error loading class: net/irisshaders/iris/layer/InnerWrappedRenderType (java.lang.ClassNotFoundException: net/irisshaders/iris/layer/InnerWrappedRenderType) [20:22:12] [main/WARN]: Error loading class: net/irisshaders/iris/layer/OuterWrappedRenderType (java.lang.ClassNotFoundException: net/irisshaders/iris/layer/OuterWrappedRenderType) [20:22:12] [main/WARN]: Error loading class: dev/tr7zw/skinlayers/render/CustomizableModelPart (java.lang.ClassNotFoundException: dev/tr7zw/skinlayers/render/CustomizableModelPart) [20:22:13] [main/WARN]: Force-disabling mixin 'ai.task.memory_change_counting.BrainMixin' as rule 'mixin.ai.task.memory_change_counting' (added by mods [smartbrainlib]) disables it and children [20:22:13] [main/WARN]: Force-disabling mixin 'ai.task.memory_change_counting.MultiTickTaskMixin' as rule 'mixin.ai.task.memory_change_counting' (added by mods [smartbrainlib]) disables it and children [20:22:13] [main/WARN]: Force-disabling mixin 'alloc.blockstate.StateMixin' as rule 'mixin.alloc.blockstate' (added by mods [ferritecore]) disables it and children [20:22:13] [main/WARN]: Force-disabling mixin 'world.player_chunk_tick.ThreadedAnvilChunkStorageMixin' as rule 'mixin.world.player_chunk_tick' (added by mods [c2me, krypton]) disables it and children [20:22:13] [main/WARN]: Error loading class: net/coderbot/iris/Iris (java.lang.ClassNotFoundException: net/coderbot/iris/Iris) [20:22:13] [main/WARN]: @Mixin target net.coderbot.iris.Iris was not found notenoughcrashes.fabric.mixins.json:iris.SilentNEC from mod notenoughcrashes [20:22:13] [main/WARN]: Error loading class: fr/catcore/server/translations/api/resource/language/SystemDelegatedLanguage (java.lang.ClassNotFoundException: fr/catcore/server/translations/api/resource/language/SystemDelegatedLanguage) [20:22:14] [main/WARN]: Error loading class: io/github/kosmx/emotes/fabric/ClientInit (java.lang.ClassNotFoundException: io/github/kosmx/emotes/fabric/ClientInit) [20:22:14] [main/WARN]: @Mixin target io.github.kosmx.emotes.fabric.ClientInit was not found playeranimatorapi.mixins.json:EmoteCraftClientInitMixinFabric from mod playeranimatorapi [20:22:14] [main/ERROR]: Polymorph failed to correct integration configuration spec [20:22:14] [main/WARN]: Error loading class: com/nhoryzon/mc/farmersdelight/block/BuddingBushBlock (java.lang.ClassNotFoundException: com/nhoryzon/mc/farmersdelight/block/BuddingBushBlock) [20:22:14] [main/WARN]: @Mixin target com.nhoryzon.mc.farmersdelight.block.BuddingBushBlock was not found seasonsdelightcompat.mixins.json:BuddingBushBlockMixin from mod seasonsdelightcompat [20:22:14] [main/WARN]: Error loading class: com/nhoryzon/mc/farmersdelight/block/BuddingTomatoBlock (java.lang.ClassNotFoundException: com/nhoryzon/mc/farmersdelight/block/BuddingTomatoBlock) [20:22:14] [main/WARN]: @Mixin target com.nhoryzon.mc.farmersdelight.block.BuddingTomatoBlock was not found seasonsdelightcompat.mixins.json:BuddingTomatoBlockMixin from mod seasonsdelightcompat [20:22:14] [main/WARN]: Error loading class: com/nhoryzon/mc/farmersdelight/block/MushroomColonyBlock (java.lang.ClassNotFoundException: com/nhoryzon/mc/farmersdelight/block/MushroomColonyBlock) [20:22:14] [main/WARN]: @Mixin target com.nhoryzon.mc.farmersdelight.block.MushroomColonyBlock was not found seasonsdelightcompat.mixins.json:MushroomColonyBlockMixin from mod seasonsdelightcompat [20:22:14] [main/WARN]: Error loading class: com/nhoryzon/mc/farmersdelight/block/RiceCropBlock (java.lang.ClassNotFoundException: com/nhoryzon/mc/farmersdelight/block/RiceCropBlock) [20:22:14] [main/WARN]: @Mixin target com.nhoryzon.mc.farmersdelight.block.RiceCropBlock was not found seasonsdelightcompat.mixins.json:RiceCropBlockMixin from mod seasonsdelightcompat [20:22:14] [main/WARN]: Error loading class: com/nhoryzon/mc/farmersdelight/block/TomatoVineBlock (java.lang.ClassNotFoundException: com/nhoryzon/mc/farmersdelight/block/TomatoVineBlock) [20:22:14] [main/WARN]: @Mixin target com.nhoryzon.mc.farmersdelight.block.TomatoVineBlock was not found seasonsdelightcompat.mixins.json:TomatoVineBlockMixin from mod seasonsdelightcompat [20:22:14] [main/WARN]: Error loading class: net/caffeinemc/mods/sodium/client/model/light/data/ArrayLightDataCache (java.lang.ClassNotFoundException: net/caffeinemc/mods/sodium/client/model/light/data/ArrayLightDataCache) [20:22:14] [main/WARN]: Error loading class: net/caffeinemc/mods/sodium/client/model/light/flat/FlatLightPipeline (java.lang.ClassNotFoundException: net/caffeinemc/mods/sodium/client/model/light/flat/FlatLightPipeline) [20:22:14] [main/WARN]: Error loading class: net/caffeinemc/mods/sodium/client/model/light/data/LightDataAccess (java.lang.ClassNotFoundException: net/caffeinemc/mods/sodium/client/model/light/data/LightDataAccess) [20:22:15] [main/WARN]: Error loading class: com/nhoryzon/mc/farmersdelight/item/SkilletItem (java.lang.ClassNotFoundException: com/nhoryzon/mc/farmersdelight/item/SkilletItem) [20:22:15] [main/WARN]: @Mixin target com.nhoryzon.mc.farmersdelight.item.SkilletItem was not found spoiledz.mixins.json:compat.SkilletItemMixin from mod spoiledz [20:22:15] [main/WARN]: Error loading class: com/nhoryzon/mc/farmersdelight/entity/block/SkilletBlockEntity (java.lang.ClassNotFoundException: com/nhoryzon/mc/farmersdelight/entity/block/SkilletBlockEntity) [20:22:15] [main/WARN]: @Mixin target com.nhoryzon.mc.farmersdelight.entity.block.SkilletBlockEntity was not found spoiledz.mixins.json:compat.SkilletBlockEntityMixin from mod spoiledz [20:22:15] [main/WARN]: Error loading class: com/nhoryzon/mc/farmersdelight/entity/block/CuttingBoardBlockEntity (java.lang.ClassNotFoundException: com/nhoryzon/mc/farmersdelight/entity/block/CuttingBoardBlockEntity) [20:22:15] [main/WARN]: @Mixin target com.nhoryzon.mc.farmersdelight.entity.block.CuttingBoardBlockEntity was not found spoiledz.mixins.json:compat.CuttingBoardBlockEntityMixin from mod spoiledz [20:22:15] [main/WARN]: Error loading class: com/nhoryzon/mc/farmersdelight/entity/block/StoveBlockEntity (java.lang.ClassNotFoundException: com/nhoryzon/mc/farmersdelight/entity/block/StoveBlockEntity) [20:22:15] [main/WARN]: @Mixin target com.nhoryzon.mc.farmersdelight.entity.block.StoveBlockEntity was not found spoiledz.mixins.json:compat.StoveBlockEntityMixin from mod spoiledz [20:22:15] [main/WARN]: Error loading class: com/nhoryzon/mc/farmersdelight/entity/block/CookingPotBlockEntity (java.lang.ClassNotFoundException: com/nhoryzon/mc/farmersdelight/entity/block/CookingPotBlockEntity) [20:22:15] [main/WARN]: @Mixin target com.nhoryzon.mc.farmersdelight.entity.block.CookingPotBlockEntity was not found spoiledz.mixins.json:compat.CookingPotBlockEntityMixin from mod spoiledz [20:22:15] [main/INFO]: [MemoryLeakFix] Will be applying 3 memory leak fixes! [20:22:15] [main/INFO]: [MemoryLeakFix] Currently enabled memory leak fixes: [targetEntityLeak, biomeTemperatureLeak, hugeScreenshotLeak] [20:22:16] [main/WARN]: Error loading class: net/caffeinemc/mods/sodium/client/model/light/data/ArrayLightDataCache (java.lang.ClassNotFoundException: net/caffeinemc/mods/sodium/client/model/light/data/ArrayLightDataCache) [20:22:16] [main/WARN]: Error loading class: net/caffeinemc/mods/sodium/client/model/light/data/ArrayLightDataCache (java.lang.ClassNotFoundException: net/caffeinemc/mods/sodium/client/model/light/data/ArrayLightDataCache) [20:22:16] [main/WARN]: Error loading class: net/caffeinemc/mods/sodium/client/model/light/flat/FlatLightPipeline (java.lang.ClassNotFoundException: net/caffeinemc/mods/sodium/client/model/light/flat/FlatLightPipeline) [20:22:16] [main/WARN]: Error loading class: net/caffeinemc/mods/sodium/client/model/light/flat/FlatLightPipeline (java.lang.ClassNotFoundException: net/caffeinemc/mods/sodium/client/model/light/flat/FlatLightPipeline) [20:22:17] [main/WARN]: Error loading class: net/caffeinemc/mods/sodium/client/model/light/data/LightDataAccess (java.lang.ClassNotFoundException: net/caffeinemc/mods/sodium/client/model/light/data/LightDataAccess) [20:22:17] [main/WARN]: Error loading class: net/caffeinemc/mods/sodium/client/model/light/data/LightDataAccess (java.lang.ClassNotFoundException: net/caffeinemc/mods/sodium/client/model/light/data/LightDataAccess) [20:22:17] [main/INFO]: I used the json to destroy the json [20:22:18] [main/INFO]: Searching for graphics cards... [20:22:18] [main/INFO]: Initializing MixinExtras via com.llamalad7.mixinextras.service.MixinExtrasServiceImpl(version=0.4.1). [20:22:19] [main/INFO]: Found graphics card: GraphicsAdapterInfo[vendor=NVIDIA, name=NVIDIA GeForce GTX 1650, version=DriverVersion=32.0.15.6636] [20:22:19] [main/WARN]: Sodium has applied one or more workarounds to prevent crashes or other issues on your system: [NVIDIA_THREADED_OPTIMIZATIONS] [20:22:19] [main/WARN]: This is not necessarily an issue, but it may result in certain features or optimizations being disabled. You can sometimes fix these issues by upgrading your graphics driver. [20:22:22] [main/WARN]: Method overwrite conflict for getEntityManager in spark.mixins.json:ClientWorldAccessor from mod spark, previously written by me.jellysquid.mods.lithium.mixin.chunk.entity_class_groups.ClientWorldMixin. Skipping method. [20:22:26] [main/INFO]: Injecting BlockStateBase cache population hook into getOpacityIfCached from ca.spottedleaf.starlight.mixin.common.blockstate.BlockStateBaseMixin [20:22:26] [main/INFO]: Injecting BlockStateBase cache population hook into getNeighborPathNodeType from me.jellysquid.mods.lithium.mixin.ai.pathing.AbstractBlockStateMixin [20:22:26] [main/INFO]: Injecting BlockStateBase cache population hook into getPathNodeType from me.jellysquid.mods.lithium.mixin.ai.pathing.AbstractBlockStateMixin [20:22:26] [main/INFO]: Injecting BlockStateBase cache population hook into isConditionallyFullOpaque from ca.spottedleaf.starlight.mixin.common.blockstate.BlockStateBaseMixin [20:22:26] [main/INFO]: Injecting BlockStateBase cache population hook into getAllFlags from me.jellysquid.mods.lithium.mixin.util.block_tracking.AbstractBlockStateMixin [20:22:28] [main/WARN]: @Redirect conflict. Skipping redirector.mixins.json:net.minecraft.world.level.block.piston.PistonBaseBlockMixin from mod redirector->@Redirect::redirectDirections()[Lnet/minecraft/class_2350; with priority 10, already redirected by lithium.mixins.json:alloc.enum_values.piston_block.PistonBlockMixin from mod lithium->@Redirect::removeAllocation()[Lnet/minecraft/class_2350; with priority 1000 [20:22:28] [main/WARN]: @Redirect conflict. Skipping redirector.mixins.json:net.minecraft.world.level.block.piston.PistonBaseBlockMixin from mod redirector->@Redirect::redirectDirections()[Lnet/minecraft/class_2350; with priority 10, already redirected by lithium.mixins.json:alloc.enum_values.piston_block.PistonBlockMixin from mod lithium->@Redirect::removeAllocation()[Lnet/minecraft/class_2350; with priority 1000 [20:22:28] [main/WARN]: @Redirect conflict. Skipping redirector.mixins.json:net.minecraft.world.level.block.RedStoneWireBlockMixin from mod redirector->@Redirect::redirectDirections()[Lnet/minecraft/class_2350; with priority 10, already redirected by lithium.mixins.json:alloc.enum_values.redstone_wire.RedstoneWireBlockMixin from mod lithium->@Redirect::removeAllocation1()[Lnet/minecraft/class_2350; with priority 1000 [20:22:28] [main/WARN]: @Redirect conflict. Skipping redirector.mixins.json:net.minecraft.world.level.block.RedStoneWireBlockMixin from mod redirector->@Redirect::redirectDirections()[Lnet/minecraft/class_2350; with priority 10, already redirected by lithium.mixins.json:alloc.enum_values.redstone_wire.RedstoneWireBlockMixin from mod lithium->@Redirect::removeAllocation2()[Lnet/minecraft/class_2350; with priority 1000 [20:22:29] [main/WARN]: Method overwrite conflict for compatSync in environmentz.mixins.json:ServerPlayerEntityMixin from mod environmentz, previously written by net.dehydration.mixin.ServerPlayerEntityMixin. Skipping method. [20:22:30] [main/INFO]: Instancing error handler class dev.isxander.debugify.mixinplugin.DebugifyErrorHandler [20:22:30] [main/INFO]: Instancing error handler class com.illusivesoulworks.polymorph.mixin.IntegratedMixinPlugin [20:22:30] [main/WARN]: Mixin apply for mod necronomicon failed necronomicon-common.mixins.json:item.AnimatedItemNameMixin from mod necronomicon -> net.minecraft.class_1799: org.spongepowered.asm.mixin.injection.throwables.InvalidInjectionException Critical injection failure: @Inject annotation on getName could not find any targets matching 'getHoverName' in net/minecraft/class_1799. No refMap loaded. [handler$hja000$necronomicon$getName(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V -> Parse -> -> Validate Targets] org.spongepowered.asm.mixin.injection.throwables.InvalidInjectionException: Critical injection failure: @Inject annotation on getName could not find any targets matching 'getHoverName' in net/minecraft/class_1799. No refMap loaded. [handler$hja000$necronomicon$getName(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V -> Parse -> -> Validate Targets] at org.spongepowered.asm.mixin.injection.selectors.TargetSelectors.validate(TargetSelectors.java:346) ~[sponge-mixin-0.15.4+mixin.0.8.7.jar:0.15.4+mixin.0.8.7] at org.spongepowered.asm.mixin.injection.struct.InjectionInfo.readAnnotation(InjectionInfo.java:369) ~[sponge-mixin-0.15.4+mixin.0.8.7.jar:0.15.4+mixin.0.8.7] at org.spongepowered.asm.mixin.injection.struct.InjectionInfo.<init>(InjectionInfo.java:340) ~[sponge-mixin-0.15.4+mixin.0.8.7.jar:0.15.4+mixin.0.8.7] at org.spongepowered.asm.mixin.injection.struct.InjectionInfo.<init>(InjectionInfo.java:331) ~[sponge-mixin-0.15.4+mixin.0.8.7.jar:0.15.4+mixin.0.8.7] at org.spongepowered.asm.mixin.injection.struct.CallbackInjectionInfo.<init>(CallbackInjectionInfo.java:48) ~[sponge-mixin-0.15.4+mixin.0.8.7.jar:0.15.4+mixin.0.8.7] at jdk.internal.reflect.GeneratedConstructorAccessor55.newInstance(Unknown Source) ~[?:?] at jdk.internal.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45) ~[?:?] at java.lang.reflect.Constructor.newInstanceWithCaller(Constructor.java:499) ~[?:?] at java.lang.reflect.Constructor.newInstance(Constructor.java:480) ~[?:?] at org.spongepowered.asm.mixin.injection.struct.InjectionInfo$InjectorEntry.create(InjectionInfo.java:196) ~[sponge-mixin-0.15.4+mixin.0.8.7.jar:0.15.4+mixin.0.8.7] at org.spongepowered.asm.mixin.injection.struct.InjectionInfo.parse(InjectionInfo.java:664) ~[sponge-mixin-0.15.4+mixin.0.8.7.jar:0.15.4+mixin.0.8.7] at org.spongepowered.asm.mixin.transformer.MixinTargetContext.prepareInjections(MixinTargetContext.java:1399) ~[sponge-mixin-0.15.4+mixin.0.8.7.jar:0.15.4+mixin.0.8.7] at org.spongepowered.asm.mixin.transformer.MixinApplicatorStandard.prepareInjections(MixinApplicatorStandard.java:731) ~[sponge-mixin-0.15.4+mixin.0.8.7.jar:0.15.4+mixin.0.8.7] at org.spongepowered.asm.mixin.transformer.MixinApplicatorStandard.applyMixin(MixinApplicatorStandard.java:315) ~[sponge-mixin-0.15.4+mixin.0.8.7.jar:0.15.4+mixin.0.8.7] at org.spongepowered.asm.mixin.transformer.MixinApplicatorStandard.apply(MixinApplicatorStandard.java:246) ~[sponge-mixin-0.15.4+mixin.0.8.7.jar:0.15.4+mixin.0.8.7] at org.spongepowered.asm.mixin.transformer.TargetClassContext.apply(TargetClassContext.java:437) ~[sponge-mixin-0.15.4+mixin.0.8.7.jar:0.15.4+mixin.0.8.7] at org.spongepowered.asm.mixin.transformer.TargetClassContext.applyMixins(TargetClassContext.java:418) ~[sponge-mixin-0.15.4+mixin.0.8.7.jar:0.15.4+mixin.0.8.7] at org.spongepowered.asm.mixin.transformer.MixinProcessor.applyMixins(MixinProcessor.java:363) ~[sponge-mixin-0.15.4+mixin.0.8.7.jar:0.15.4+mixin.0.8.7] at org.spongepowered.asm.mixin.transformer.MixinTransformer.transformClass(MixinTransformer.java:234) ~[sponge-mixin-0.15.4+mixin.0.8.7.jar:0.15.4+mixin.0.8.7] at org.spongepowered.asm.mixin.transformer.MixinTransformer.transformClassBytes(MixinTransformer.java:202) ~[sponge-mixin-0.15.4+mixin.0.8.7.jar:0.15.4+mixin.0.8.7] at net.fabricmc.loader.impl.launch.knot.KnotClassDelegate.getPostMixinClassByteArray(KnotClassDelegate.java:422) ~[fabric-loader-0.16.9.jar:?] at net.fabricmc.loader.impl.launch.knot.KnotClassDelegate.tryLoadClass(KnotClassDelegate.java:323) ~[fabric-loader-0.16.9.jar:?] at net.fabricmc.loader.impl.launch.knot.KnotClassDelegate.loadClass(KnotClassDelegate.java:218) ~[fabric-loader-0.16.9.jar:?] at net.fabricmc.loader.impl.launch.knot.KnotClassLoader.loadClass(KnotClassLoader.java:119) ~[fabric-loader-0.16.9.jar:?] at java.lang.ClassLoader.loadClass(ClassLoader.java:525) ~[?:?] at net.minecraft.class_5620.method_32211(class_5620.java:39) ~[client-intermediary.jar:?] at net.minecraft.class_156.method_654(class_156.java:436) ~[client-intermediary.jar:?] at net.minecraft.class_5620.method_32206(class_5620.java:39) ~[client-intermediary.jar:?] at net.minecraft.class_5620.<clinit>(class_5620.java:33) ~[client-intermediary.jar:?] at net.minecraft.class_5546.<init>(class_5546.java:17) ~[client-intermediary.jar:?] at net.minecraft.class_2246.<clinit>(class_2246.java:477) ~[client-intermediary.jar:?] at net.minecraft.class_2358.method_10199(class_2358.java:326) ~[client-intermediary.jar:?] at net.minecraft.class_2966.method_12851(class_2966.java:54) ~[client-intermediary.jar:?] at net.minecraft.client.main.Main.main(Main.java:166) ~[fabric-loader-0.16.9-1.20.1.jar:?] at net.fabricmc.loader.impl.game.minecraft.MinecraftGameProvider.launch(MinecraftGameProvider.java:480) ~[fabric-loader-0.16.9.jar:?] at net.fabricmc.loader.impl.launch.knot.Knot.launch(Knot.java:74) ~[fabric-loader-0.16.9.jar:?] at net.fabricmc.loader.impl.launch.knot.KnotClient.main(KnotClient.java:23) ~[fabric-loader-0.16.9.jar:?] [20:22:31] [main/WARN]: Method overwrite conflict for method_7844 in ranged_weapon_api.mixins.json:item.RangedWeaponItemMixin from mod ranged_weapon_api, previously written by net.projectile_damage.mixin.RangedWeaponItemMixin. Skipping method. [20:22:31] [main/WARN]: @Inject(@At("INVOKE_ASSIGN")) Shift.BY=2 on refurbished_furniture.common.mixins.json:LevelChunkMixin from mod refurbished_furniture::handler$jea000$refurbished_furniture$refurbishedFurniture$AfterRemoveBlockEntity exceeds the maximum allowed value: 0. Increase the value of maxShiftBy to suppress this warning. [20:22:35] [main/WARN]: Static binding violation: PRIVATE @Overwrite method method_21740 in modernfix-common.mixins.json:perf.remove_biome_temperature_cache.BiomeMixin from mod modernfix cannot reduce visibiliy of PUBLIC target method, visibility will be upgraded. [20:22:35] [main/WARN]: Method overwrite conflict for method_21740 in modernfix-common.mixins.json:perf.remove_biome_temperature_cache.BiomeMixin from mod modernfix, previously written by me.jellysquid.mods.lithium.mixin.world.temperature_cache.BiomeMixin. Skipping method. [20:22:35] [main/INFO]: Vanilla bootstrap took 10158 milliseconds [20:22:36] [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' [20:22:37] [Render thread/INFO]: Setting user: Im_Cup [20:22:38] [Render thread/INFO]: Bypassed Mojang DFU [20:22:40] [Render thread/INFO]: Loaded config amendments-common.json [20:22:41] [Render thread/INFO]: Loaded config amendments-client.json [20:22:41] [Render thread/INFO]: Loaded config moonlight-client.json [20:22:41] [Render thread/WARN]: Injection warning: LVT in net/minecraft/class_332::method_51435(Lnet/minecraft/class_327;Ljava/util/List;IILnet/minecraft/class_8000;)V has incompatible changes at opcode 197 in callback iceberg.mixins.json:GuiGraphicsMixin from mod iceberg->@Inject::storeLocalsOptifine(Lnet/minecraft/class_327;Ljava/util/List;IILnet/minecraft/class_8000;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;Ljava/lang/Object;IIIILorg/joml/Vector2ic;)V. Expected: [Ljava/lang/Object;, I, I, I, I, Lorg/joml/Vector2ic;] Found: [I, I, I, I, Lorg/joml/Vector2ic;] Available: [I, I, I, I, Lorg/joml/Vector2ic;] [20:22:42] [Render thread/INFO]: Registering C2S receiver with id artifacts:networking_channel/42a7ad70b1cc371599a0eff744096b8a [20:22:42] [Render thread/INFO]: Registering S2C receiver with id artifacts:networking_channel/42a7ad70b1cc371599a0eff744096b8a [20:22:42] [Render thread/INFO]: Registering C2S receiver with id artifacts:networking_channel/74a5e841822a3a87854ae896a33430d6 [20:22:42] [Render thread/INFO]: Registering S2C receiver with id artifacts:networking_channel/74a5e841822a3a87854ae896a33430d6 [20:22:42] [Render thread/INFO]: Registering C2S receiver with id artifacts:networking_channel/eb3d1e2748533430848cadf0f37c7e9c [20:22:42] [Render thread/INFO]: Registering S2C receiver with id artifacts:networking_channel/eb3d1e2748533430848cadf0f37c7e9c [20:22:42] [Render thread/INFO]: Registering C2S receiver with id artifacts:networking_channel/91c8520f19f93b3e8b6a727568e194ab [20:22:42] [Render thread/INFO]: Registering S2C receiver with id artifacts:networking_channel/91c8520f19f93b3e8b6a727568e194ab [20:22:42] [Render thread/INFO]: Registering C2S receiver with id artifacts:networking_channel/8c2784d778293fd482ed84b8aa5fedb9 [20:22:42] [Render thread/INFO]: Registering S2C receiver with id artifacts:networking_channel/8c2784d778293fd482ed84b8aa5fedb9 [20:22:42] [Render thread/INFO]: Registering C2S receiver with id artifacts:networking_channel/ea038224ea783d40b2863f52239e2604 [20:22:42] [Render thread/INFO]: Registering S2C receiver with id artifacts:networking_channel/ea038224ea783d40b2863f52239e2604 [20:22:42] [Render thread/INFO]: Registering C2S receiver with id artifacts:networking_channel/97ad64b7ecaf33209991c4f031501a58 [20:22:42] [Render thread/INFO]: Registering S2C receiver with id artifacts:networking_channel/97ad64b7ecaf33209991c4f031501a58 [20:22:42] [Render thread/INFO]: Async Locator -> Config file found [20:22:42] [Render thread/INFO]: Async Locator -> Configs: Locator Threads: 1 Remove Offer: false Dolphin Treasure Enabled: true Eye Of Ender Enabled: true Exploration Map Enabled: true Locate Command Enabled: true Villager Trade Enabled: true [20:22:43] [Render thread/INFO]: Registered azurelib config for auto-sync function [20:22:44] [Render thread/INFO]: Registering Mod Items for bakingdelight [20:22:44] [Render thread/INFO]: Registering Item Group for bakingdelight [20:22:44] [Render thread/INFO]: Registering Mod Blocks for bakingdelight [20:22:44] [Render thread/INFO]: Registering Mod Block Entities for bakingdelight [20:22:44] [Render thread/INFO]: Registering Mod Entities for bakingdelight [20:22:44] [Render thread/INFO]: Registering Mod Sounds for bakingdelight [20:22:44] [Render thread/INFO]: Registering Screen Handlers for bakingdelight [20:22:44] [Render thread/INFO]: Registering Mod Effects and Potions for bakingdelight [20:22:44] [Render thread/INFO]: Registering Mod Fluid for bakingdelight [20:22:44] [Render thread/INFO]: Registering C2S receiver with id bakingdelight:update_inventory [20:22:44] [Render thread/INFO]: Registering C2S receiver with id bakingdelight:spawn_xp [20:22:44] [Render thread/INFO]: Registering C2S receiver with id bakingdelight:change_block_entity_data [20:22:44] [Render thread/INFO]: Better Compatibility Checker starting [20:22:44] [Render thread/INFO]: Loading config file [20:22:44] [Render thread/INFO]: Config file loaded [20:22:44] [Render thread/INFO]: Constructing common components for betteranimationscollection:main [20:22:45] [Render thread/INFO]: Loading client config for betteranimationscollection [20:22:45] [Render thread/INFO]: Reflections took 162 ms to scan 1 urls, producing 1 keys and 3 values [20:22:45] [pool-6-thread-1/INFO]: Reloading client config for betteranimationscollection [20:22:45] [Render thread/INFO]: Reflections took 3 ms to scan 1 urls, producing 1 keys and 3 values [20:22:45] [Render thread/INFO]: Reflections took 24 ms to scan 1 urls, producing 1 keys and 1 values [20:22:45] [Render thread/INFO]: Reflections took 3 ms to scan 1 urls, producing 1 keys and 1 values [20:22:45] [Render thread/INFO]: betterfpsdist mod initialized [20:22:45] [Render thread/INFO]: Reflections took 1 ms to scan 1 urls, producing 1 keys and 3 values [20:22:45] [Render thread/INFO]: Reflections took 0 ms to scan 1 urls, producing 1 keys and 3 values [20:22:45] [Render thread/INFO]: Eren Ya?l?dere üç de, wigu wigu d?nd?d? d?n ?dn? dn? dn? [20:22:45] [Render thread/INFO]: Reflections took 3 ms to scan 1 urls, producing 1 keys and 2 values [20:22:45] [Render thread/INFO]: Reflections took 1 ms to scan 1 urls, producing 1 keys and 2 values [20:22:45] [Render thread/INFO]: Reflections took 2 ms to scan 1 urls, producing 1 keys and 2 values [20:22:45] [Render thread/INFO]: Reflections took 1 ms to scan 1 urls, producing 1 keys and 2 values [20:22:46] [Render thread/INFO]: Fixing MC-151457. Crafting remainder for minecraft:pufferfish_bucket is now minecraft:bucket. [20:22:46] [Render thread/INFO]: Fixing MC-151457. Crafting remainder for minecraft:salmon_bucket is now minecraft:bucket. [20:22:46] [Render thread/INFO]: Fixing MC-151457. Crafting remainder for minecraft:cod_bucket is now minecraft:bucket. [20:22:46] [Render thread/INFO]: Fixing MC-151457. Crafting remainder for minecraft:tropical_fish_bucket is now minecraft:bucket. [20:22:46] [Render thread/INFO]: Fixing MC-151457. Crafting remainder for minecraft:axolotl_bucket is now minecraft:bucket. [20:22:46] [Render thread/INFO]: Fixing MC-151457. Crafting remainder for minecraft:powder_snow_bucket is now minecraft:bucket. [20:22:46] [Render thread/INFO]: Fixing MC-151457. Crafting remainder for minecraft:tadpole_bucket is now minecraft:bucket. [20:22:46] [Render thread/INFO]: Cactus Config is being initialized. [20:22:46] [Render thread/INFO]: Loaded config for: chunksending.json [20:22:46] [Render thread/INFO]: chunksending mod initialized [20:22:46] [Render thread/INFO]: Loading Collective version 7.87. [20:22:47] [Cicada thread 0/INFO]: 'what' [20:22:47] [Cicada thread 0/INFO]: 'that's not you' [20:22:47] [Cicada thread 0/INFO]: 'mineblock8 was the eight version of you and the first version of louise and was eaten by dicedpixels in the bite of 87' [20:22:47] [Cicada thread 0/INFO]: 'mineblock9 was the ninth version of you and the second version of louise and sadly escaped, before infiltrating this thread as louise' [20:22:47] [Cicada thread 0/INFO]: 'mineblock10 was the tenth version of you and was stabbed' [20:22:47] [Cicada thread 0/INFO]: 'mineblock11 was the eleventh version of you and the only one deemed sane enough to be released in the wild' [20:22:47] [Render thread/INFO]: Initializing network... [20:22:47] [Render thread/INFO]: Initialized network! [20:22:47] [Render thread/INFO]: fabric loader environment detected [20:22:55] [Render thread/INFO]: Reflections took 7238 ms to scan 494 urls, producing 14618 keys and 96971 values [20:22:58] [Render thread/WARN]: Error loading class: net/caffeinemc/mods/sodium/client/model/light/data/LightDataAccess (java.lang.ClassNotFoundException: net/caffeinemc/mods/sodium/client/model/light/data/LightDataAccess) [20:22:59] [Render thread/WARN]: @Redirect conflict. Skipping redirector.mixins.json:net.minecraft.world.level.block.piston.PistonStructureResolverMixin from mod redirector->@Redirect::redirectDirections()[Lnet/minecraft/class_2350; with priority 10, already redirected by lithium.mixins.json:alloc.enum_values.piston_handler.PistonHandlerMixin from mod lithium->@Redirect::removeAllocation()[Lnet/minecraft/class_2350; with priority 1000 [20:23:01] [Render thread/INFO]: general [20:23:01] [Render thread/INFO]: individual [20:23:01] [Render thread/INFO]: Loaded config for: cupboard.json [20:23:01] [Render thread/INFO]: Registered darkwaters config for auto-sync function [20:23:01] [Render thread/INFO]: Enabled 66 bug fixes: [MC-577, MC-2025, MC-4490, MC-7569, MC-8187, MC-12829, MC-14923, MC-22882, MC-30391, MC-31819, MC-46766, MC-55347, MC-69216, MC-72151, MC-79545, MC-80859, MC-88371, MC-89146, MC-90084, MC-90683, MC-93018, MC-93384, MC-100991, MC-108948, MC-111516, MC-112730, MC-116379, MC-119417, MC-119754, MC-121706, MC-121772, MC-121903, MC-122477, MC-122627, MC-123739, MC-124117, MC-127970, MC-129909, MC-132878, MC-135971, MC-140646, MC-143474, MC-155509, MC-159163, MC-160095, MC-165381, MC-176559, MC-179072, MC-183776, MC-183990, MC-193343, MC-197260, MC-199467, MC-200418, MC-206922, MC-215530, MC-215531, MC-217716, MC-223153, MC-224729, MC-227169, MC-231097, MC-231743, MC-232869, MC-237493, MC-263865] [20:23:01] [Render thread/INFO]: Successfully Debugify'd your game! [20:23:01] [Render thread/INFO]: Constructing common components for easyanvils:main [20:23:01] [Render thread/INFO]: Loading client config for easyanvils [20:23:01] [Render thread/INFO]: Constructing common components for easymagic:main [20:23:01] [Render thread/INFO]: Loading client config for easymagic [20:23:02] [Render thread/INFO]: ExpandAbility here, who dis? [20:23:02] [Render thread/INFO]: Loading Expanded Ecosphere [20:23:02] [pool-6-thread-1/INFO]: Reloading client config for easyanvils [20:23:02] [pool-6-thread-1/INFO]: Reloading client config for easymagic [20:23:03] [Render thread/INFO]: [Expanded Ecosphere Updater] Found no updates [20:23:04] [Render thread/INFO]: Reflections took 62 ms to scan 1 urls, producing 9 keys and 75 values [20:23:05] [Render thread/INFO]: Constructing common components for horseexpert:main [20:23:05] [Render thread/INFO]: Loading client config for horseexpert [20:23:05] [Render thread/INFO]: Wrong common config version 1 for mod Ice And Fire! Automatically use version 2 and backup old one. [20:23:06] [pool-6-thread-1/INFO]: Reloading client config for horseexpert [20:23:06] [Render thread/INFO]: Registering C2S receiver with id iceandfire:myrmex_sync [20:23:06] [Render thread/INFO]: Registering C2S receiver with id iceandfire:dragon_control [20:23:06] [Render thread/INFO]: Registering C2S receiver with id iceandfire:multipart_interact [20:23:06] [Render thread/INFO]: Registering C2S receiver with id iceandfire:player_hit_multipart [20:23:06] [Render thread/INFO]: Registering C2S receiver with id iceandfire:start_riding_mob_c2s [20:23:06] [Render thread/INFO]: Loaded config immersive_weathering-common.json [20:23:06] [Render thread/INFO]: Loaded config immersive_weathering-client.json [20:23:06] [Render thread/INFO]: [jamlib] Mod initialized! [20:23:07] [Render thread/INFO]: [STDERR]: Failed to resolve EntityAttribute with id: combatroll:recharge [20:23:07] [Render thread/INFO]: [STDERR]: Failed to resolve EntityAttribute with id: combatroll:count [20:23:07] [Render thread/INFO]: [STDERR]: Failed to resolve EntityAttribute with id: combatroll:recharge [20:23:07] [Render thread/INFO]: [STDERR]: Failed to resolve EntityAttribute with id: combatroll:count [20:23:07] [Render thread/INFO]: Hello Fabric world! [20:23:07] [Render thread/INFO]: Initializing ServerSide Packet Registries [20:23:07] [Render thread/INFO]: 1 Jupiter entrypoint(s) detected: jupiter:jupiter [20:23:07] [Render thread/INFO]: Compression will use Java, encryption will use Java [20:23:07] [Render thread/INFO]: Ksyxis: Booting... (platform: Fabric, manual: false) [20:23:07] [Render thread/INFO]: Ksyxis: Found Mixin library. (version: 0.8.7) [20:23:07] [Render thread/INFO]: Ksyxis: Ready. As always, this mod will speed up your world loading and might or might not break it. [20:23:07] [Render thread/INFO]: leaky mod initialized [20:23:08] [Render thread/WARN]: Discarding @Unique public method getOffset in porting_lib_extensions.mixins.json:client.VertexFormatMixin from mod porting_lib_extensions because it already exists in net.minecraft.class_293 [20:23:08] [Render thread/INFO]: Instantiating Mojang DFU [20:23:09] [Render thread/ERROR]: No data fixer registered for mca:tombstone [20:23:09] [Render thread/INFO]: Loaded config for: memorysettings.json [20:23:09] [Render thread/INFO]: Constructing common components for mindfuldarkness:main [20:23:09] [Render thread/INFO]: Loading client config for mindfuldarkness [20:23:09] [Render thread/INFO]: Definitely not up to no good [20:23:09] [Render thread/INFO]: Registered mobs_of_mythology config for auto-sync function [20:23:10] [Render thread/INFO]: Constructing common components for mutantmonsters:main [20:23:10] [Render thread/INFO]: Loading common config for mutantmonsters [20:23:10] [Render thread/INFO]: Necronomicon Initialized [20:23:10] [Render thread/INFO]: File exists, reading config for elocindev.necronomicon.NecronomiconConfig. [20:23:10] [Render thread/INFO]: Config for elocindev.necronomicon.NecronomiconConfig read successfully. [20:23:10] [Render thread/INFO]: Loading Noisium. [20:23:10] [Render thread/INFO]: I tried to punch tree. It didn't work, my hands are now covered in blood and splinters. Need to try something else ... [20:23:10] [Render thread/INFO]: Loading NoTreePunching Config [20:23:10] [Render thread/INFO]: Loaded NoTreePunching Config [20:23:10] [pool-6-thread-1/INFO]: Reloading client config for mindfuldarkness [20:23:10] [Render thread/INFO]: Constructing common components for overflowingbars:main [20:23:10] [Render thread/INFO]: Loading client config for overflowingbars [20:23:10] [Render thread/INFO]: Snakes are inherently funny [20:23:10] [Render thread/INFO]: Packet Fixer has been initialized successfully [20:23:10] [pool-6-thread-1/INFO]: Reloading common config for mutantmonsters [20:23:10] [Render thread/INFO]: Constructing common components for pickupnotifier:main [20:23:10] [Render thread/INFO]: Loading client config for pickupnotifier [20:23:10] [pool-6-thread-1/INFO]: Reloading client config for overflowingbars [20:23:11] [Render thread/INFO]: Loaded config for profundis [20:23:11] [Render thread/INFO]: Constructing common components for puzzlesapi:iteminteractions [20:23:11] [Render thread/INFO]: Loading client config for puzzlesapi [20:23:11] [Render thread/INFO]: Constructing common components for puzzlesapi:slotcycling [20:23:11] [Render thread/INFO]: Loading client config for puzzlesapi [20:23:11] [Render thread/INFO]: Constructing common components for puzzlesapi:limitlesscontainers [20:23:11] [Render thread/INFO]: Constructing common components for puzzleslib:main [20:23:11] [Render thread/INFO]: Loaded config randomium-common.json [20:23:11] [Render thread/INFO]: Registered synced data key refurbished_furniture:lock_yaw for refurbished_furniture:seat [20:23:11] [Render thread/INFO]: [rightclickharvest] Initializing VersionUtils [20:23:11] [Render thread/INFO]: [rightclickharvest] VersionUtils initialized successfully [20:23:11] [Render thread/INFO]: [jamlib] Registered config for rightclickharvest [20:23:11] [Render thread/INFO]: [rightclickharvest] Mod initialized! [20:23:11] [Render thread/INFO]: Initializing RottenFleshToLeatherMod [20:23:11] [pool-6-thread-1/INFO]: Reloading client config for puzzlesapi [20:23:11] [pool-6-thread-1/INFO]: Reloading client config for puzzlesapi [20:23:11] [Render thread/INFO]: [REI] Config loaded [20:23:12] [Render thread/INFO]: [REI] Registered plugin provider AddonReiCommonPlugin [ad_astra_giselle_addon] for REIPlugin [20:23:12] [Render thread/INFO]: Registering S2C receiver with id roughlyenoughitems:request_tags_s2c [20:23:12] [Render thread/INFO]: Registering C2S receiver with id roughlyenoughitems:request_tags_c2s [20:23:12] [Render thread/INFO]: [REI] Registered plugin provider DefaultPlugin [roughlyenoughitems] for REIPlugin [20:23:12] [Render thread/INFO]: [REI] Registered plugin provider DefaultRuntimePlugin [roughlyenoughitems] for REIPlugin [20:23:12] [Render thread/INFO]: [REI] Registered plugin provider AdAstraReiPlugin [ad_astra] for REIPlugin [20:23:12] [Render thread/INFO]: [REI] Registered plugin provider AddonReiClientPlugin [ad_astra_giselle_addon] for REIPlugin [20:23:12] [Render thread/INFO]: [REI] Registered plugin provider REITooltipPlugin [appleskin] for REIPlugin [20:23:12] [Render thread/INFO]: [REI] Registered plugin provider BakingDelightREIClientPlugin [bakingdelight] for REIPlugin [20:23:12] [Render thread/INFO]: [REI] Registered plugin provider ChiselREI [chisel] for REIPlugin [20:23:12] [Render thread/INFO]: [REI] Registered plugin provider EnvironmentzReiPlugin [environmentz] for REIPlugin [20:23:12] [Render thread/INFO]: [REI] Registered plugin provider ClientREIPlugin [farmersdelight] for REIPlugin [20:23:12] [Render thread/INFO]: [REI] Registered plugin provider LevelzReiPlugin [levelz] for REIPlugin [20:23:12] [Render thread/INFO]: [REI] Registered plugin provider LibzReiPlugin [libz] for REIPlugin [20:23:12] [Render thread/INFO]: [REI] Registered plugin provider OwoReiPlugin [owo] for REIPlugin [20:23:12] [Render thread/INFO]: [REI] Registered plugin provider REICompat [randomium] for REIPlugin [20:23:12] [Render thread/INFO]: [REI] Registered plugin provider DefaultClientPlugin [roughlyenoughitems] for REIPlugin [20:23:12] [Render thread/INFO]: [REI] Registered plugin provider DefaultClientRuntimePlugin [roughlyenoughitems] for REIPlugin [20:23:12] [Render thread/INFO]: [REI] Registered plugin provider HideIngredientsFromTagsPlugin [roughlyenoughitems] for REIPlugin [20:23:12] [Render thread/INFO]: [REI] Registered plugin provider RoughlyEnoughItemsIntegration [trashslot] for REIPlugin [20:23:12] [Render thread/INFO]: [REI] Registered plugin provider TrinketsREIPlugin [trinkets] for REIPlugin [20:23:12] [Render thread/INFO]: [REI] Registered plugin provider RoughlyEnoughItemsIntegration [waystones] for REIPlugin [20:23:12] [Render thread/INFO]: [REI] Registered plugin provider AddonReiCommonPlugin [ad_astra_giselle_addon] for REIServerPlugin [20:23:12] [Render thread/INFO]: [REI] Registered plugin provider DefaultPlugin [roughlyenoughitems] for REIServerPlugin [20:23:12] [Render thread/INFO]: [REI] Registered plugin provider DefaultRuntimePlugin [roughlyenoughitems] for REIServerPlugin [20:23:12] [Render thread/INFO]: [REI] Registered plugin provider FabricFluidAPISupportPlugin for REIServerPlugin [20:23:12] [Render thread/INFO]: [REI] Registered plugin provider FabricFluidAPISupportPlugin for REIPlugin [20:23:12] [Render thread/INFO]: Registering C2S receiver with id roughlyenoughitems:delete_item [20:23:12] [Render thread/INFO]: Registering C2S receiver with id roughlyenoughitems:create_item [20:23:12] [Render thread/INFO]: Registering C2S receiver with id roughlyenoughitems:create_item_grab [20:23:12] [Render thread/INFO]: Registering C2S receiver with id roughlyenoughitems:create_item_hotbar [20:23:12] [Render thread/INFO]: Registering C2S receiver with id roughlyenoughitems:move_items [20:23:12] [Render thread/INFO]: Registering C2S receiver with id roughlyenoughitems:move_items_new [20:23:12] [Render thread/INFO]: [Fabric Seasons] Trying to read config file... [20:23:12] [Render thread/INFO]: [Fabric Seasons] A config file was found, loading it.. [20:23:12] [Render thread/INFO]: [Fabric Seasons] Successfully loaded config file. [20:23:12] [Render thread/INFO]: [Fabric Seasons] Successfully loaded seasonsdelightcompat 1.0 for farmersdelight 1.3.9 [20:23:12] [Render thread/INFO]: [Fabric Seasons] Successfully loaded seasonsterralithcompat 1.0 for terralith 2.3.7 [20:23:12] [Render thread/INFO]: Shield API initialized! [20:23:12] [Render thread/INFO]: File exists, reading config for elocin.shield_overhaul.config.server.ShieldConfig. [20:23:12] [Render thread/INFO]: Config for elocin.shield_overhaul.config.server.ShieldConfig read successfully. [20:23:12] [Render thread/INFO]: Shield Overhaul's Config Loaded! [20:23:12] [Render thread/INFO]: Constructing common components for slotcycler:main [20:23:12] [Render thread/INFO]: [Spawn Animations] MidnightLib detected! [20:23:12] [Render thread/INFO]: [Spawn Animations] Registering server started event... [20:23:12] [Render thread/INFO]: [Spawn Animations] Loaded Spawn Animations by Tschipcraft successfully! [20:23:12] [Thread-13/INFO]: Starting to fetch sponsor list. [20:23:12] [Render thread/INFO]: Registering furniture fuels for storagedelight [20:23:12] [Render thread/INFO]: Initializing Terra... [20:23:12] [Render thread/INFO]: Loading config.yml [20:23:12] [Render thread/INFO]: Loading config values from config.yml [20:23:12] [Render thread/WARN]: Mod ad_astra_giselle_addon, version 6.16 does not follow semantic versioning specification, Terra addons will be unable to depend on it. [20:23:12] [Render thread/WARN]: Mod amendments, version 1.20-1.2.14 does not follow semantic versioning specification, Terra addons will be unable to depend on it. [20:23:12] [Render thread/WARN]: Mod betteradvancements, version 0.4.2.10 does not follow semantic versioning specification, Terra addons will be unable to depend on it. [20:23:12] [Render thread/WARN]: Mod betterdungeons, version 1.20-Fabric-4.0.4 does not follow semantic versioning specification, Terra addons will be unable to depend on it. [20:23:12] [Render thread/WARN]: Mod betterfortresses, version 1.20-Fabric-2.0.6 does not follow semantic versioning specification, Terra addons will be unable to depend on it. [20:23:12] [Render thread/WARN]: Mod betterjungletemples, version 1.20-Fabric-2.0.5 does not follow semantic versioning specification, Terra addons will be unable to depend on it. [20:23:12] [Render thread/WARN]: Mod bettermineshafts, version 1.20-Fabric-4.0.4 does not follow semantic versioning specification, Terra addons will be unable to depend on it. [20:23:12] [Render thread/WARN]: Mod betterstrongholds, version 1.20-Fabric-4.0.3 does not follow semantic versioning specification, Terra addons will be unable to depend on it. [20:23:12] [Render thread/WARN]: Mod cactusconfig, version 2.1.1+knot+1.20.1 does not follow semantic versioning specification, Terra addons will be unable to depend on it. [20:23:12] [Render thread/WARN]: Mod carryon, version 2.1.2.7 does not follow semantic versioning specification, Terra addons will be unable to depend on it. [20:23:12] [Render thread/WARN]: Mod clearwater, version 2.1 does not follow semantic versioning specification, Terra addons will be unable to depend on it. [20:23:12] [Render thread/WARN]: Mod clumps, version 12.0.0.4 does not follow semantic versioning specification, Terra addons will be unable to depend on it. [20:23:12] [Render thread/WARN]: Mod collective, version 7.87 does not follow semantic versioning specification, Terra addons will be unable to depend on it. [20:23:12] [Render thread/WARN]: Mod com_eliotlash_mclib_mclib, version 20 does not follow semantic versioning specification, Terra addons will be unable to depend on it. [20:23:12] [Render thread/WARN]: Mod corgilib, version 4.0.3.3 does not follow semantic versioning specification, Terra addons will be unable to depend on it. [20:23:12] [Render thread/WARN]: Mod crowdin-translate, version 1.4+1.19.3 does not follow semantic versioning specification, Terra addons will be unable to depend on it. [20:23:12] [Render thread/WARN]: Mod disable_custom_worlds_advice, version 4.1 does not follow semantic versioning specification, Terra addons will be unable to depend on it. [20:23:12] [Render thread/WARN]: Mod enchancement, version 1.20-26 does not follow semantic versioning specification, Terra addons will be unable to depend on it. [20:23:12] [Render thread/WARN]: Mod enhancedblockentities, version 0.9+1.20 does not follow semantic versioning specification, Terra addons will be unable to depend on it. [20:23:12] [Render thread/WARN]: Mod geckolib, version 4.7 does not follow semantic versioning specification, Terra addons will be unable to depend on it. [20:23:12] [Render thread/WARN]: Mod getittogetherdrops, version fabric-1.20-1.3.1 does not follow semantic versioning specification, Terra addons will be unable to depend on it. [20:23:12] [Render thread/WARN]: Mod giantspawn, version 5.2 does not follow semantic versioning specification, Terra addons will be unable to depend on it. [20:23:12] [Render thread/WARN]: Mod iceandfire, version 1.0-beta.1 does not follow semantic versioning specification, Terra addons will be unable to depend on it. [20:23:12] [Render thread/WARN]: Mod jeresources, version 1.4.0.247 does not follow semantic versioning specification, Terra addons will be unable to depend on it. [20:23:12] [Render thread/WARN]: Mod journeymap-api-fabric, version 1.20-1.9-fabric-SNAPSHOT does not follow semantic versioning specification, Terra addons will be unable to depend on it. [20:23:12] [Render thread/WARN]: Mod jupiter, version 2.0 does not follow semantic versioning specification, Terra addons will be unable to depend on it. [20:23:12] [Render thread/WARN]: Mod mm, version 2.3 does not follow semantic versioning specification, Terra addons will be unable to depend on it. [20:23:12] [Render thread/WARN]: Mod moonlight, version 1.20-2.13.49 does not follow semantic versioning specification, Terra addons will be unable to depend on it. [20:23:12] [Render thread/WARN]: Mod mr_dungeons, version 1.8.4b does not follow semantic versioning specification, Terra addons will be unable to depend on it. [20:23:12] [Render thread/WARN]: Mod mr_stellarity, version 2.0e does not follow semantic versioning specification, Terra addons will be unable to depend on it. [20:23:12] [Render thread/WARN]: Mod mru, version 1.0.4+1.20.1+fabric does not follow semantic versioning specification, Terra addons will be unable to depend on it. [20:23:12] [Render thread/WARN]: Mod multipart_entities, version 1.5-1.20 does not follow semantic versioning specification, Terra addons will be unable to depend on it. [20:23:12] [Render thread/WARN]: Mod org_threadly_threadly, version 7.0 does not follow semantic versioning specification, Terra addons will be unable to depend on it. [20:23:12] [Render thread/WARN]: Mod porting_lib_tags, version 3.0 does not follow semantic versioning specification, Terra addons will be unable to depend on it. [20:23:12] [Render thread/WARN]: Mod randomium, version 1.20-1.32 does not follow semantic versioning specification, Terra addons will be unable to depend on it. [20:23:12] [Render thread/WARN]: Mod seasons, version 2.4-BETA+1.20 does not follow semantic versioning specification, Terra addons will be unable to depend on it. [20:23:12] [Render thread/WARN]: Mod seasonsdelightcompat, version 1.0-1.3.9 does not follow semantic versioning specification, Terra addons will be unable to depend on it. [20:23:12] [Render thread/WARN]: Mod seasonsterralithcompat, version 1.0-2.3.7 does not follow semantic versioning specification, Terra addons will be unable to depend on it. [20:23:12] [Render thread/WARN]: Mod smartbrainlib, version 1.15 does not follow semantic versioning specification, Terra addons will be unable to depend on it. [20:23:12] [Render thread/WARN]: Mod strayed_fates_forsaken, version 1.1.3.2 does not follow semantic versioning specification, Terra addons will be unable to depend on it. [20:23:12] [Render thread/WARN]: Mod structure_pool_api, version 1.0+1.20.1 does not follow semantic versioning specification, Terra addons will be unable to depend on it. [20:23:12] [Render thread/WARN]: Mod terrablender, version 3.0.1.7 does not follow semantic versioning specification, Terra addons will be unable to depend on it. [20:23:12] [Render thread/WARN]: Mod travelerstitles, version 1.20-Fabric-4.0.2 does not follow semantic versioning specification, Terra addons will be unable to depend on it. [20:23:12] [Render thread/WARN]: Mod xp_storage_trinkets, version 1.0+1.20.1 does not follow semantic versioning specification, Terra addons will be unable to depend on it. [20:23:12] [Render thread/WARN]: Mod yungsapi, version 1.20-Fabric-4.0.6 does not follow semantic versioning specification, Terra addons will be unable to depend on it. [20:23:14] [Thread-13/INFO]: Successfully fetch sponsor list. [20:23:15] [Render thread/INFO]: Loading 419 Terra addons: - [email protected]+73baaec6c - [email protected]+73baaec6c - [email protected]+73baaec6c - [email protected]+73baaec6c - [email protected]+73baaec6c - [email protected]+73baaec6c - [email protected]+73baaec6c - [email protected]+73baaec6c - [email protected]+73baaec6c - [email protected]+73baaec6c - [email protected]+73baaec6c - [email protected]+73baaec6c - [email protected]+73baaec6c - [email protected]+73baaec6c - [email protected]+73baaec6c - [email protected]+73baaec6c - [email protected]+73baaec6c - [email protected]+73baaec6c - [email protected]+73baaec6c - [email protected]+73baaec6c - [email protected]+73baaec6c - fabric:[email protected]+mc1.20.1 - fabric:[email protected] - fabric:[email protected] - fabric:[email protected] - fabric:[email protected] - fabric:[email protected] - fabric:[email protected]+mc.1.20.1 - fabric:[email protected]+mc1.20-pre1 - fabric:[email protected]+1.20.4 - fabric:[email protected] - fabric:[email protected]+mc1.20 - fabric:[email protected] - fabric:[email protected]+1.20.1 - fabric:[email protected] - fabric:[email protected] - fabric:[email protected] - fabric:[email protected]+1.20 - fabric:[email protected]+1.20 - fabric:[email protected] - fabric:[email protected] - fabric:[email protected] - fabric:[email protected]+1.20.1 - fabric:[email protected] - fabric:[email protected] - fabric:[email protected] - fabric:[email protected] - fabric:[email protected] - fabric:[email protected]+1.20.1 - fabric:[email protected] - fabric:[email protected]+mc1.20.1 - fabric:[email protected] - fabric:[email protected] - fabric:[email protected] - fabric:[email protected] - fabric:[email protected] - fabric:[email protected] - fabric:[email protected]+alpha.11.13 - fabric:[email protected]+alpha.11.13 - fabric:[email protected]+alpha.11.13 - fabric:[email protected]+alpha.11.13 - fabric:[email protected]+alpha.11.13 - fabric:[email protected]+alpha.11.13 - fabric:[email protected]+alpha.11.13 - fabric:[email protected]+alpha.11.13 - fabric:[email protected]+alpha.11.13 - fabric:[email protected]+alpha.11.13 - fabric:[email protected]+alpha.11.13 - fabric:[email protected]+alpha.11.13 - fabric:[email protected]+alpha.11.13 - fabric:[email protected]+alpha.11.13 - fabric:[email protected]+alpha.11.13 - fabric:[email protected]+alpha.11.13 - fabric:[email protected]+alpha.11.13 - fabric:[email protected]+alpha.11.13 - fabric:[email protected]+alpha.11.13 - fabric:[email protected]+alpha.11.13 - fabric:[email protected]+alpha.11.13 - fabric:[email protected]+1.17 - fabric:[email protected]+mc1.20.1 - fabric:[email protected] - fabric:[email protected] - fabric:[email protected] - fabric:[email protected] - fabric:[email protected] - fabric:[email protected] - fabric:[email protected] - fabric:[email protected] - fabric:[email protected] - fabric:[email protected] - fabric:[email protected]+1.20.1 - fabric:[email protected] - fabric:[email protected] - fabric:[email protected]+1.20.1 - fabric:[email protected]+1.20.1 - fabric:[email protected]+1.20.1 - fabric:[email protected] - fabric:[email protected] - fabric:[email protected] - fabric:[email protected] - fabric:[email protected] - fabric:[email protected] - fabric:[email protected] - fabric:[email protected] - fabric:[email protected] - fabric:[email protected] - fabric:[email protected] - fabric:[email protected] - fabric:[email protected] - fabric:[email protected] - fabric:[email protected] - fabric:[email protected] - fabric:[email protected] - fabric:[email protected] - fabric:[email protected] - fabric:[email protected] - fabric:[email protected] - fabric:[email protected] - fabric:[email protected] - fabric:[email protected] - fabric:[email protected] - fabric:[email protected] - fabric:[email protected] - fabric:[email protected] - fabric:[email protected] - fabric:[email protected] - fabric:[email protected] - fabric:[email protected] - fabric:[email protected] - fabric:[email protected]+1.20.1 - fabric:[email protected] - fabric:[email protected] - fabric:[email protected] - fabric:[email protected] - fabric:[email protected] - fabric:[email protected] - fabric:[email protected] - fabric:[email protected]+2.0 - fabric:[email protected] - fabric:[email protected]+1.20.1 - fabric:[email protected] - fabric:[email protected] - fabric:[email protected] - fabric:[email protected] - fabric:[email protected] - fabric:[email protected] - fabric:[email protected] - fabric:[email protected] - fabric:[email protected] - fabric:[email protected] - fabric:[email protected] - fabric:[email protected] - fabric:[email protected] - fabric:[email protected] - fabric:[email protected] - fabric:[email protected] - fabric:[email protected] - fabric:[email protected] - fabric:[email protected] - fabric:[email protected]+1.20.1 - fabric:[email protected]+1802ada577 - fabric:[email protected]+1802ada577 - fabric:[email protected]+1802ada577 - fabric:[email protected]+1802ada577 - fabric:[email protected]+1802ada577 - fabric:[email protected]+1802ada577 - fabric:[email protected]+1802ada577 - fabric:[email protected]+f71b366f77 - fabric:[email protected]+1802ada577 - fabric:[email protected]+df3654b377 - fabric:[email protected]+df3654b377 - fabric:[email protected]+1802ada577 - fabric:[email protected]+1802ada577 - fabric:[email protected]+1802ada577 - fabric:[email protected]+de0fd6d177 - fabric:[email protected]+1802ada577 - fabric:[email protected]+1802ada577 - fabric:[email protected]+1c78457f77 - fabric:[email protected]+13a40c6677 - fabric:[email protected]+df3654b377 - fabric:[email protected]+1802ada577 - fabric:[email protected]+1802ada577 - fabric:[email protected]+1802ada577 - fabric:[email protected]+1802ada577 - fabric:[email protected]+df3654b377 - fabric:[email protected]+kotlin.2.1.0 - fabric:[email protected]+1802ada577 - fabric:[email protected]+1802ada577 - fabric:[email protected]+9e7660c677 - fabric:[email protected]+1802ada577 - fabric:[email protected]+1802ada577 - fabric:[email protected]+1802ada577 - fabric:[email protected]+9386d8a777 - fabric:[email protected]+13a40c6677 - fabric:[email protected]+df3654b377 - fabric:[email protected]+1802ada577 - fabric:[email protected]+1802ada577 - fabric:[email protected] - fabric:[email protected]+1802ada577 - fabric:[email protected]+1802ada577 - fabric:[email protected]+1802ada577 - fabric:[email protected]+85287f9f77 - fabric:[email protected]+df3654b377 - fabric:[email protected]+92a0d36777 - fabric:[email protected]+1802ada577 - fabric:[email protected]+df3654b377 - fabric:[email protected]+1802ada577 - fabric:[email protected]+1802ada577 - fabric:[email protected]+fb82e9d777 - fabric:[email protected]+1802ada577 - fabric:[email protected]+1802ada577 - fabric:[email protected]+1802ada577 - fabric:[email protected]+8dd72ea377 - fabric:[email protected]+1802ada577 - fabric:[email protected] - fabric:[email protected]+mc1.20.1 - fabric:[email protected]+refabricated - fabric:[email protected] - fabric:[email protected] - fabric:[email protected] - fabric:[email protected] - fabric:[email protected]+1.3.1 - fabric:[email protected] - fabric:[email protected] - fabric:[email protected]+1.20.1 - fabric:[email protected] - fabric:[email protected] - fabric:[email protected] - fabric:[email protected] - fabric:[email protected] - fabric:[email protected] - fabric:[email protected] - fabric:[email protected]+1.20.4 - fabric:[email protected] - fabric:[email protected] - fabric:[email protected] - fabric:[email protected] - fabric:[email protected] - fabric:[email protected] - fabric:[email protected]+fabric - fabric:[email protected]+1.20.x - fabric:[email protected] - fabric:[email protected]+1.20.1 - fabric:[email protected] - fabric:[email protected] - fabric:[email protected]+1.14.4-1.19.4 - fabric:[email protected] - fabric:[email protected] - fabric:[email protected] - fabric:[email protected] - fabric:[email protected] - fabric:[email protected] - fabric:[email protected] - fabric:[email protected] - fabric:[email protected] - fabric:[email protected]+1.20 - fabric:[email protected] - fabric:[email protected] - fabric:[email protected] - fabric:[email protected] - fabric:[email protected] - fabric:[email protected] - fabric:[email protected]+1.20.1 - fabric:[email protected] - fabric:[email protected] - fabric:[email protected] - fabric:[email protected] - fabric:[email protected] - fabric:[email protected] - fabric:[email protected]+1.17 - fabric:[email protected] - fabric:[email protected] - fabric:[email protected]+mc1.20.1 - fabric:[email protected] - fabric:[email protected] - fabric:[email protected] - fabric:[email protected] - fabric:[email protected] - fabric:[email protected] - fabric:[email protected] - fabric:[email protected] - fabric:[email protected] - fabric:[email protected] - fabric:[email protected] - fabric:[email protected] - fabric:[email protected]+mc1.20-1.20.1 - fabric:[email protected]+1.20.1 - fabric:[email protected] - fabric:[email protected] - fabric:[email protected] - fabric:[email protected] - fabric:[email protected] - fabric:[email protected] - fabric:[email protected] - fabric:[email protected] - fabric:[email protected] - fabric:[email protected] - fabric:[email protected] - fabric:[email protected] - fabric:[email protected] - fabric:[email protected] - fabric:[email protected] - fabric:[email protected] - fabric:[email protected] - fabric:[email protected] - fabric:[email protected] - fabric:[email protected] - fabric:[email protected] - fabric:[email protected] - fabric:[email protected] - fabric:[email protected]+1.20 - fabric:[email protected] - fabric:[email protected]+1.20.0 - fabric:[email protected]+1.20.1 - fabric:[email protected] - fabric:[email protected] - fabric:[email protected] - fabric:[email protected]+1.20 - fabric:[email protected] - fabric:[email protected] - fabric:[email protected]+1.20.1 - fabric:[email protected]+1.20.1 - fabric:[email protected]+1.20.1 - fabric:[email protected]+1.20.1 - fabric:[email protected]+1.20.1 - fabric:[email protected]+1.20.1 - fabric:[email protected]+1.20.1 - fabric:[email protected]+1.20.1 - fabric:[email protected]+1.20.1 - fabric:[email protected]+1.20.1 - fabric:[email protected]+1.20.1 - fabric:[email protected]+1.20.1 - fabric:[email protected]+1.20.1 - fabric:[email protected]+1.20.1 - fabric:[email protected]+1.20.1 - fabric:[email protected]+1.20.1 - fabric:[email protected]+1.20.1 - fabric:[email protected]+1.20.1 - fabric:[email protected]+1.20.1 - fabric:[email protected] - fabric:[email protected] - fabric:[email protected]+1.20.1 - fabric:[email protected]+1.20.1 - fabric:[email protected] - fabric:[email protected] - fabric:[email protected] - fabric:[email protected] - fabric:[email protected]+1.20.1 - fabric:[email protected] - fabric:[email protected] - fabric:[email protected] - fabric:[email protected]+mc1.20.1-build.101 - fabric:[email protected] - fabric:[email protected] - fabric:[email protected] - fabric:[email protected]+1.19.x-1.20.1-fabric - fabric:[email protected] - fabric:[email protected] - fabric:[email protected] - fabric:[email protected]+1.20 - fabric:[email protected]+1.20.1 - fabric:[email protected] - fabric:[email protected] - fabric:[email protected] - fabric:[email protected]+mc1.20.1 - fabric:[email protected]+mc1.20.1-build.115 - fabric:[email protected] - fabric:[email protected] - fabric:[email protected] - fabric:[email protected] - fabric:[email protected] - fabric:[email protected] - fabric:[email protected] - fabric:[email protected]+mod - fabric:[email protected]+1.20.1 - fabric:[email protected]+1.20.1 - fabric:[email protected] - fabric:[email protected] - fabric:[email protected]+1.20 - fabric:[email protected]+fabric.dbc156f - fabric:[email protected]+1.14.4-1.20.4 - fabric:[email protected]+1.16.5-1.17 - fabric:[email protected] - fabric:[email protected] - fabric:[email protected] - fabric:[email protected] - fabric:[email protected] - fabric:[email protected] - fabric:[email protected] - fabric:[email protected] - fabric:[email protected] - fabric:[email protected] - fabric:[email protected] - fabric:[email protected] - fabric:[email protected] - fabric:[email protected] - fabric:[email protected] - fabric:[email protected]+1.20.1 - fabric:[email protected]+mc1.20.1 - fabric:[email protected]+1.20.1-fabric - fabric:[email protected] - fabric:[email protected] - fabric:[email protected] - fabric:[email protected]+1.20.1 - [email protected]+73baaec6c - [email protected]+73baaec6c - [email protected]+73baaec6c - [email protected]+73baaec6c - [email protected] - [email protected]+73baaec6c - [email protected]+73baaec6c - [email protected]+73baaec6c - [email protected]+73baaec6c - [email protected]+73baaec6c - [email protected]+73baaec6c - [email protected]+73baaec6c - [email protected] - [email protected] - [email protected]+73baaec6c [20:23:15] [Render thread/WARN]: The biome-provider-pipeline addon is deprecated and scheduled for removal in Terra 7.0. It is recommended to use the biome-provider-pipeline-v2 addon for future pack development instead. [20:23:15] [Render thread/WARN]: The biome-provider-image addon is deprecated and scheduled for removal in Terra 7.0. It is recommended to use the biome-provider-image-v2 addon for future pack development instead. [20:23:15] [Render thread/INFO]: Terra addons successfully loaded. [20:23:15] [Render thread/INFO]: Finished initialization. [20:23:15] [Render thread/INFO]: Initializing Terra Fabric mod... [20:23:16] [Render thread/INFO]: File exists, reading config for elocindev.ysns.config.DisabledEntities. [20:23:16] [Render thread/INFO]: Config for elocindev.ysns.config.DisabledEntities read successfully. [20:23:16] [Render thread/INFO]: File exists, reading config for elocindev.ysns.config.PerDimensionEntities. [20:23:16] [Render thread/INFO]: Config for elocindev.ysns.config.PerDimensionEntities read successfully. [20:23:16] [Render thread/INFO]: You Shall Not Spawn's Config initialized [20:23:16] [Render thread/INFO]: Reflections took 5 ms to scan 1 urls, producing 1 keys and 4 values [20:23:16] [Render thread/INFO]: Reflections took 4 ms to scan 1 urls, producing 1 keys and 4 values [20:23:17] [Render thread/INFO]: Registering S2C receiver with id architectury:spawn_entity_packet [20:23:17] [Render thread/INFO]: Loaded [20:23:17] [Render thread/ERROR]: java.io.FileNotFoundException: C:\Users\cauaf\curseforge\minecraft\Instances\Explorat (1)\config\betteradvancements.json (The system cannot find the file specified) [20:23:17] [Render thread/INFO]: Constructing client components for betteranimationscollection:main [20:23:18] [Render thread/INFO]: [citresewn] Registering CIT Conditions [20:23:18] [Render thread/INFO]: [citresewn] Registering CIT Types [20:23:18] [Render thread/INFO]: Loading Description Cache [20:23:18] [Render thread/INFO]: Dynamic FPS 3.7.7 active on Fabric! [20:23:18] [Render thread/INFO]: Constructing client components for easyanvils:main [20:23:18] [Render thread/INFO]: Constructing client components for easymagic:main [20:23:18] [Render thread/INFO]: Loaded config file. [20:23:18] [Render thread/INFO]: Saved config file. [20:23:18] [Render thread/INFO]: Loading Entity Model Features, yes EMF breaks your resource pack, on purpose >:). There are 300 lines of code dedicated just for detecting if it is you specifically and if your favourite resource pack is installed, then EMF breaks it >:) /s [20:23:18] [Render thread/INFO]: [ETF]: 6 new ETF Random Properties registered by entity_model_features. [20:23:18] [Render thread/INFO]: Loading Entity Texture Features, did you know if you turn off the lights and whisper 'OptiFine' 3 times you will lose 20fps. [20:23:18] [Render thread/INFO]: [Indigo] Different rendering plugin detected; not applying Indigo. [20:23:19] [Render thread/INFO]: Constructing client components for horseexpert:main [20:23:19] [Render thread/INFO]: Ice And Fire client config version match. [20:23:19] [Render thread/INFO]: Registering S2C receiver with id iceandfire:dragon_set_burn_block [20:23:19] [Render thread/INFO]: Registering S2C receiver with id iceandfire:start_riding_mob_s2c [20:23:19] [Render thread/INFO]: Registering S2C receiver with id iceandfire:update_pixie_house [20:23:19] [Render thread/INFO]: Registering S2C receiver with id iceandfire:update_pixie_jar [20:23:19] [Render thread/INFO]: Registering S2C receiver with id iceandfire:update_podium [20:23:19] [Render thread/INFO]: Loaded [20:23:19] [Render thread/ERROR]: C:\Users\cauaf\curseforge\minecraft\Instances\Explorat (1)\config\jeresources.json (The system cannot find the file specified) [20:23:19] [Render thread/INFO]: Krypton is now accelerating your Minecraft client's networking stack ? [20:23:19] [Render thread/INFO]: Note that Krypton is most effective on servers, not the client. [20:23:19] [Render thread/INFO]: Constructing client components for mindfuldarkness:main [20:23:19] [Render thread/WARN]: Using Cloth Config GUI [20:23:19] [Render thread/INFO]: Registering config screens for mod charmofundying with 1 config(s) [20:23:19] [Render thread/INFO]: Registering config screens for mod culinaryconstruct with 1 config(s) [20:23:19] [Render thread/INFO]: Registering config screens for mod diet with 2 config(s) [20:23:19] [Worker-Main-2/INFO]: Checking mod updates... [20:23:20] [Render thread/INFO]: Initialized block sets in 29ms [20:23:20] [Render thread/INFO]: Initialized color sets in 58ms [20:23:20] [Render thread/INFO]: Constructing client components for mutantmonsters:main [20:23:20] [Render thread/INFO]: Constructing client components for overflowingbars:main [20:23:21] [Render thread/INFO]: Loaded config :particle_core_config in 383ms [20:23:21] [Render thread/INFO]: Constructing client components for pickupnotifier:main [20:23:21] [Thread-17/INFO]: [STDERR]: Exception when downloading translations [20:23:21] [Thread-17/INFO]: [STDERR]: java.io.FileNotFoundException: https://crowdin.com/backend/download/project/paradise_lost.zip [20:23:21] [Thread-17/INFO]: [STDERR]: at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1996) [20:23:21] [Thread-17/INFO]: [STDERR]: at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) [20:23:21] [Thread-17/INFO]: [STDERR]: at java.base/sun.net.www.protocol.https.HttpsURLConnectionImpl.getInputStream(HttpsURLConnectionImpl.java:224) [20:23:21] [Thread-17/INFO]: [STDERR]: at java.base/java.net.URL.openStream(URL.java:1161) [20:23:21] [Thread-17/INFO]: [STDERR]: at knot//de.guntram.mcmod.crowdintranslate.CrowdinTranslate.getCrowdinTranslations(CrowdinTranslate.java:325) [20:23:21] [Thread-17/INFO]: [STDERR]: at knot//de.guntram.mcmod.crowdintranslate.CrowdinTranslate.run(CrowdinTranslate.java:285) [20:23:21] [Render thread/INFO]: Constructing client components for puzzlesapi:iteminteractions [20:23:21] [Render thread/INFO]: Constructing client components for puzzlesapi:slotcycling [20:23:21] [Render thread/INFO]: Constructing client components for puzzleslib:main [20:23:21] [Render thread/INFO]: Reacharound Initializing. [20:23:21] [Render thread/INFO]: Reacharound Initialized. [20:23:22] [Render thread/INFO]: [REI] Registered plugin provider AdAstraReiPlugin [ad_astra] for REIClientPlugin [20:23:22] [Render thread/INFO]: [REI] Registered plugin provider AddonReiClientPlugin [ad_astra_giselle_addon] for REIClientPlugin [20:23:22] [Render thread/INFO]: [REI] Registered plugin provider REITooltipPlugin [appleskin] for REIClientPlugin [20:23:22] [Render thread/INFO]: [REI] Registered plugin provider BakingDelightREIClientPlugin [bakingdelight] for REIClientPlugin [20:23:22] [Render thread/INFO]: [REI] Registered plugin provider ChiselREI [chisel] for REIClientPlugin [20:23:22] [Render thread/INFO]: [REI] Registered plugin provider EnvironmentzReiPlugin [environmentz] for REIClientPlugin [20:23:22] [Render thread/INFO]: [REI] Registered plugin provider ClientREIPlugin [farmersdelight] for REIClientPlugin [20:23:22] [Render thread/INFO]: [REI] Registered plugin provider LevelzReiPlugin [levelz] for REIClientPlugin [20:23:22] [Render thread/INFO]: [REI] Registered plugin provider LibzReiPlugin [libz] for REIClientPlugin [20:23:22] [Render thread/INFO]: [REI] Registered plugin provider OwoReiPlugin [owo] for REIClientPlugin [20:23:22] [Render thread/INFO]: [REI] Registered plugin provider REICompat [randomium] for REIClientPlugin [20:23:22] [Render thread/INFO]: [REI] Registered plugin provider DefaultClientPlugin [roughlyenoughitems] for REIClientPlugin [20:23:22] [Render thread/INFO]: [REI] Registered plugin provider DefaultClientRuntimePlugin [roughlyenoughitems] for REIClientPlugin [20:23:22] [Render thread/INFO]: [REI] Registered plugin provider HideIngredientsFromTagsPlugin [roughlyenoughitems] for REIClientPlugin [20:23:22] [Render thread/INFO]: [REI] Registered plugin provider RoughlyEnoughItemsIntegration [trashslot] for REIClientPlugin [20:23:22] [Render thread/INFO]: [REI] Registered plugin provider TrinketsREIPlugin [trinkets] for REIClientPlugin [20:23:22] [Render thread/INFO]: [REI] Registered plugin provider RoughlyEnoughItemsIntegration [waystones] for REIClientPlugin [20:23:22] [Render thread/INFO]: Registering S2C receiver with id roughlyenoughitems:ci_msg [20:23:22] [Render thread/INFO]: Registering S2C receiver with id roughlyenoughitems:og_not_enough [20:23:22] [Render thread/INFO]: File exists, reading config for elocin.shield_overhaul.config.client.ShieldClientConfig. [20:23:22] [Render thread/INFO]: Config for elocin.shield_overhaul.config.client.ShieldClientConfig read successfully. [20:23:22] [Render thread/INFO]: Shield Overhaul's Client Config Loaded! [20:23:22] [Render thread/INFO]: Constructing client components for slotcycler:main [20:23:22] [Render thread/INFO]: [LambDynLights] Initializing SodiumDynamicLights... [20:23:22] [Render thread/INFO]: Updating config cache [20:23:22] [Render thread/INFO]: Cache updated successfully [20:23:22] [Render thread/INFO]: Reloading reverb parameters [20:23:22] [Render thread/INFO]: Unknown sound in allowed sound config: soulsweapons:posture_break [20:23:22] [Render thread/INFO]: Unknown sound in allowed sound config: soulsweapons:warmth_buff [20:23:22] [Render thread/INFO]: Unknown sound in allowed sound config: soulsweapons:decaying_king_idle [20:23:22] [Render thread/INFO]: Unknown sound in allowed sound config: soulsweapons:night_shade_idle [20:23:22] [Render thread/INFO]: Unknown sound in allowed sound config: soulsweapons:knight_death_laugh [20:23:22] [Render thread/INFO]: Unknown sound in allowed sound config: soulsweapons:nightfall_bonk [20:23:22] [Render thread/INFO]: Unknown sound in allowed sound config: man:jumpscare [20:23:22] [Render thread/INFO]: Unknown sound in allowed sound config: cave_dweller:spotted [20:23:22] [Render thread/INFO]: Unknown sound in allowed sound config: soulsweapons:knight_thrust_sword [20:23:22] [Render thread/INFO]: Unknown sound in allowed sound config: man:vanish [20:23:22] [Render thread/INFO]: Unknown sound in allowed sound config: cave_dweller:chase_step_4 [20:23:22] [Render thread/INFO]: Unknown sound in allowed sound config: cave_dweller:chase_step_3 [20:23:22] [Render thread/INFO]: Unknown sound in allowed sound config: cave_dweller:chase_step_2 [20:23:22] [Render thread/INFO]: Unknown sound in allowed sound config: cave_dweller:chase_step_1 [20:23:22] [Render thread/INFO]: Unknown sound in allowed sound config: soulsweapons:fart [20:23:22] [Render thread/INFO]: Unknown sound in allowed sound config: soulsweapons:hard_boss_death_short [20:23:22] [Render thread/INFO]: Unknown sound in allowed sound config: soulsweapons:moonlight_big [20:23:22] [Render thread/INFO]: Unknown sound in allowed sound config: soulsweapons:overheat_charge [20:23:22] [Render thread/INFO]: Unknown sound in allowed sound config: soulsweapons:day_stalker_chaos_storm [20:23:22] [Render thread/INFO]: Unknown sound in allowed sound config: soulsweapons:death_screams [20:23:22] [Render thread/INFO]: Unknown sound in allowed sound config: soulsweapons:knight_charge_sword [20:23:22] [Render thread/INFO]: Unknown sound in allowed sound config: soulsweapons:slice_target [20:23:22] [Render thread/INFO]: Unknown sound in allowed sound config: soulsweapons:engulf [20:23:22] [Render thread/INFO]: Unknown sound in allowed sound config: soulsweapons:night_prowler_scream [20:23:22] [Render thread/INFO]: Unknown sound in allowed sound config: soulsweapons:gatling_gun_stop [20:23:22] [Render thread/INFO]: Unknown sound in allowed sound config: cave_dweller:flee_2 [20:23:22] [Render thread/INFO]: Unknown sound in allowed sound config: cave_dweller:flee_1 [20:23:22] [Render thread/INFO]: Unknown sound in allowed sound config: soulsweapons:night_skull_die [20:23:22] [Render thread/INFO]: Unknown sound in allowed sound config: soulsweapons:hard_boss_spawn [20:23:22] [Render thread/INFO]: Unknown sound in allowed sound config: soulsweapons:gatling_gun_barrage [20:23:22] [Render thread/INFO]: Unknown sound in allowed sound config: soulsweapons:shield [20:23:22] [Render thread/INFO]: Unknown sound in allowed sound config: soulsweapons:knight_swipe [20:23:22] [Render thread/INFO]: Unknown sound in allowed sound config: soulsweapons:day_stalker_spin_normal [20:23:22] [Render thread/INFO]: Unknown sound in allowed sound config: cave_dweller:dweller_death [20:23:22] [Render thread/INFO]: Unknown sound in allowed sound config: soulsweapons:demon_idle [20:23:22] [Render thread/INFO]: Unknown sound in allowed sound config: soulsweapons:sword_hit_shield [20:23:22] [Render thread/INFO]: Unknown sound in allowed sound config: soulsweapons:scythe_swipe [20:23:22] [Render thread/INFO]: Unknown sound in allowed sound config: soulsweapons:demon_death [20:23:22] [Render thread/INFO]: Unknown sound in allowed sound config: soulsweapons:hard_boss_death_long [20:23:22] [Render thread/INFO]: Unknown sound in allowed sound config: soulsweapons:knight_sword_smash [20:23:22] [Render thread/INFO]: Unknown sound in allowed sound config: soulsweapons:big_chungus [20:23:22] [Render thread/INFO]: Unknown sound in allowed sound config: soulsweapons:decaying_king_death [20:23:22] [Render thread/INFO]: Unknown sound in allowed sound config: soulsweapons:demon_walk [20:23:22] [Render thread/INFO]: Unknown sound in allowed sound config: soulsweapons:soulmass_idle [20:23:22] [Render thread/INFO]: Unknown sound in allowed sound config: soulsweapons:knight_core_beam [20:23:22] [Render thread/INFO]: Unknown sound in allowed sound config: soulsweapons:night_shade_death [20:23:22] [Render thread/INFO]: Unknown sound in allowed sound config: soulsweapons:umbral_trespass_sound [20:23:22] [Render thread/INFO]: Unknown sound in allowed sound config: cave_dweller:disappear [20:23:22] [Render thread/INFO]: Unknown sound in allowed sound config: soulsweapons:knight_death [20:23:22] [Render thread/INFO]: Unknown sound in allowed sound config: soulsweapons:day_stalker_pull [20:23:22] [Render thread/INFO]: Unknown sound in allowed sound config: soulsweapons:night_shade_damage [20:23:22] [Render thread/INFO]: Unknown sound in allowed sound config: soulsweapons:blinding_light_explosion [20:23:22] [Render thread/INFO]: Unknown sound in allowed sound config: soulsweapons:knight_hit [20:23:22] [Render thread/INFO]: Unknown sound in allowed sound config: soulsweapons:day_stalker_spin_empowered [20:23:22] [Render thread/INFO]: Unknown sound in allowed sound config: soulsweapons:darkness_rise [20:23:22] [Render thread/INFO]: Unknown sound in allowed sound config: soulsweapons:trinity [20:23:22] [Render thread/INFO]: Unknown sound in allowed sound config: soulsweapons:dawnbreaker_sound [20:23:22] [Render thread/INFO]: Unknown sound in allowed sound config: man:look [20:23:22] [Render thread/INFO]: Unknown sound in allowed sound config: soulsweapons:big_chungus_song [20:23:22] [Render thread/INFO]: Unknown sound in allowed sound config: soulsweapons:day_stalker_decimate [20:23:22] [Render thread/INFO]: Unknown sound in allowed sound config: man:loop [20:23:22] [Render thread/INFO]: Unknown sound in allowed sound config: man:spawn_1 [20:23:22] [Render thread/INFO]: Unknown sound in allowed sound config: man:spawn_3 [20:23:22] [Render thread/INFO]: Unknown sound in allowed sound config: man:spawn_2 [20:23:22] [Render thread/INFO]: Unknown sound in allowed sound config: man:spawn_5 [20:23:22] [Render thread/INFO]: Unknown sound in allowed sound config: man:spawn_4 [20:23:22] [Render thread/INFO]: Unknown sound in allowed sound config: soulsweapons:decaying_king_hurt [20:23:22] [Render thread/INFO]: Unknown sound in allowed sound config: soulsweapons:demon_damage [20:23:22] [Render thread/INFO]: Unknown sound in allowed sound config: soulsweapons:crit_hit [20:23:22] [Render thread/INFO]: Unknown sound in allowed sound config: man:scream_loop [20:23:22] [Render thread/INFO]: Unknown sound in allowed sound config: soulsweapons:moonlight_small [20:23:22] [Render thread/INFO]: Unknown sound in allowed sound config: soulsweapons:warmth_die [20:23:22] [Render thread/INFO]: Unknown sound in allowed sound config: soulsweapons:partner_dies [20:23:22] [Render thread/INFO]: Unknown sound in allowed sound config: cave_dweller:dweller_hurt_2 [20:23:22] [Render thread/INFO]: Unknown sound in allowed sound config: cave_dweller:dweller_hurt_1 [20:23:22] [Render thread/INFO]: Unknown sound in allowed sound config: cave_dweller:dweller_hurt_4 [20:23:22] [Render thread/INFO]: Unknown sound in allowed sound config: cave_dweller:dweller_hurt_3 [20:23:22] [Render thread/INFO]: Unknown sound in allowed sound config: soulsweapons:sharpen [20:23:22] [Render thread/INFO]: Unknown sound in allowed sound config: cave_dweller:chase_1 [20:23:22] [Render thread/INFO]: Unknown sound in allowed sound config: cave_dweller:chase_4 [20:23:22] [Render thread/INFO]: Unknown sound in allowed sound config: cave_dweller:chase_2 [20:23:22] [Render thread/INFO]: Unknown sound in allowed sound config: cave_dweller:chase_3 [20:23:22] [Render thread/INFO]: Unknown sound in allowed sound config: cave_dweller:cavenoise_1 [20:23:22] [Render thread/INFO]: Unknown sound in allowed sound config: cave_dweller:cavenoise_2 [20:23:22] [Render thread/INFO]: Unknown sound in allowed sound config: cave_dweller:cavenoise_3 [20:23:22] [Render thread/INFO]: Unknown sound in allowed sound config: cave_dweller:cavenoise_4 [20:23:22] [Render thread/INFO]: Unknown sound in allowed sound config: soulsweapons:restore [20:23:22] [Render thread/INFO]: Unknown sound in allowed sound config: soulsweapons:trick_weapon [20:23:22] [Render thread/INFO]: Unknown sound in allowed sound config: soulsweapons:day_stalker_windup [20:23:22] [Render thread/INFO]: Unknown sound in allowed sound config: soulsweapons:spawn_undead [20:23:22] [Render thread/INFO]: Unknown sound in allowed sound config: soulsweapons:gatling_gun_startup [20:23:22] [Render thread/INFO]: Unknown sound in allowed sound config: soulsweapons:day_stalker_radiance [20:23:23] [Render thread/INFO]: Reflections took 2 ms to scan 1 urls, producing 1 keys and 2 values [20:23:23] [Render thread/INFO]: Reflections took 1 ms to scan 1 urls, producing 1 keys and 2 values [20:23:23] [Render thread/INFO]: Registering S2C receiver with id uranus:animation [20:23:23] [Render thread/INFO]: [STDOUT]: CLIENT INIT [20:23:23] [Render thread/INFO]: Deserializing YACLConfig from 'C:\Users\cauaf\curseforge\minecraft\Instances\Explorat (1)\config\yacl.json5' [20:23:24] [Render thread/WARN]: [Amecs API] Unknown keybinding identifier in Amecs API options file: key.soulsweapons.return_freyr_sword [20:23:24] [Render thread/WARN]: [Amecs API] Unknown keybinding identifier in Amecs API options file: key.soulsweapons.freyr_sword_stationary [20:23:24] [Render thread/WARN]: [Amecs API] Unknown keybinding identifier in Amecs API options file: key.soulsweapons.collect_summons_soul_reaper [20:23:24] [Render thread/WARN]: [Amecs API] Unknown keybinding identifier in Amecs API options file: key.soulsweapons.switch_weapon [20:23:24] [Render thread/WARN]: [Amecs API] Unknown keybinding identifier in Amecs API options file: key.soulsweapons.keybind_ability [20:23:24] [Render thread/WARN]: [Amecs API] Unknown keybinding identifier in Amecs API options file: key.soulsweapons.parry [20:23:24] [Render thread/WARN]: [Amecs API] Unknown keybinding identifier in Amecs API options file: key.soulsweapons.effect_shoot_moonlight [20:23:24] [Render thread/WARN]: [Amecs API] Unknown keybinding identifier in Amecs API options file: key.soulsweapons.return_thrown_weapon [20:23:24] [Render thread/WARN]: [Amecs API] Unknown keybinding identifier in Amecs API options file: key.travelersbackpack.inventory [20:23:24] [Render thread/WARN]: [Amecs API] Unknown keybinding identifier in Amecs API options file: key.travelersbackpack.sort [20:23:24] [Render thread/WARN]: [Amecs API] Unknown keybinding identifier in Amecs API options file: key.travelersbackpack.ability [20:23:24] [Render thread/WARN]: [Amecs API] Unknown keybinding identifier in Amecs API options file: key.travelersbackpack.cycle_tool [20:23:24] [Render thread/WARN]: [Amecs API] Unknown keybinding identifier in Amecs API options file: key.travelersbackpack.toggle_tank [20:23:25] [Render thread/INFO]: Backend library: LWJGL version 3.3.1 SNAPSHOT [20:23:25] [Render thread/WARN]: Applying workaround: Prevent the NVIDIA OpenGL driver from using broken optimizations (NVIDIA_THREADED_OPTIMIZATIONS) [20:23:28] [Render thread/INFO]: All capabilities met [20:23:28] [Render thread/INFO]: Enabling Nvidium [20:23:28] [Render thread/INFO]: OpenGL Vendor: NVIDIA Corporation [20:23:28] [Render thread/INFO]: OpenGL Renderer: NVIDIA GeForce GTX 1650/PCIe/SSE2 [20:23:28] [Render thread/INFO]: OpenGL Version: 3.2.0 NVIDIA 566.36 [20:23:29] [Render thread/INFO]: Initializing ImmediatelyFast 1.3.3+1.20.4 on NVIDIA GeForce GTX 1650/PCIe/SSE2 (NVIDIA Corporation) with OpenGL 3.2.0 NVIDIA 566.36 [20:23:30] [Render thread/INFO]: ARRP register - before vanilla [20:23:30] [Render thread/INFO]: ARRP register - after vanilla [20:23:30] [Render thread/INFO]: [STDOUT]: [AdvancedCompass] TRY TO LOAD MOD MOBS [20:23:30] [Render thread/INFO]: [STDOUT]: [AdvancedCompass] scanning directory: adventurez [20:23:30] [Render thread/INFO]: [STDOUT]: [AdvancedCompass] Mob: advancedcompass.adventurez:amethyst_golem added [20:23:30] [Render thread/INFO]: [STDOUT]: [AdvancedCompass] Mob: advancedcompass.adventurez:deer added [20:23:30] [Render thread/INFO]: [STDOUT]: [AdvancedCompass] Mob: advancedcompass.adventurez:orc added [20:23:30] [Render thread/INFO]: [STDOUT]: [AdvancedCompass] Mob: advancedcompass.adventurez:desert_rhino added [20:23:30] [Render thread/INFO]: [STDOUT]: [AdvancedCompass] scanning directory: artifacts [20:23:30] [Render thread/INFO]: [STDOUT]: [AdvancedCompass] Mob: advancedcompass.artifacts:mimic added [20:23:30] [Render thread/INFO]: [STDOUT]: [AdvancedCompass] scanning directory: cave_dweller [20:23:30] [Render thread/INFO]: [STDOUT]: [AdvancedCompass] Missed entity type: cave_dweller:cave_dweller [20:23:30] [Render thread/INFO]: [STDOUT]: [AdvancedCompass] scanning directory: iceandfire [20:23:30] [Render thread/INFO]: [STDOUT]: [AdvancedCompass] Mob: advancedcompass.iceandfire:ice_dragon added [20:23:30] [Render thread/INFO]: [STDOUT]: [AdvancedCompass] Mob: advancedcompass.iceandfire:troll added [20:23:31] [Render thread/INFO]: [STDOUT]: [AdvancedCompass] Mob: advancedcompass.iceandfire:pixie added [20:23:31] [Render thread/INFO]: [STDOUT]: [AdvancedCompass] Mob: advancedcompass.iceandfire:myrmex_sentinel added [20:23:31] [Render thread/INFO]: [STDOUT]: [AdvancedCompass] Mob: advancedcompass.iceandfire:myrmex_worker added [20:23:31] [Render thread/INFO]: [STDOUT]: [AdvancedCompass] Mob: advancedcompass.iceandfire:myrmex_soldier added [20:23:31] [Render thread/INFO]: [STDOUT]: [AdvancedCompass] Mob: advancedcompass.iceandfire:myrmex_queen added [20:23:31] [Render thread/INFO]: [STDOUT]: [AdvancedCompass] Mob: advancedcompass.iceandfire:lightning_dragon added [20:23:31] [Render thread/INFO]: [STDOUT]: [AdvancedCompass] Mob: advancedcompass.iceandfire:fire_dragon added [20:23:31] [Render thread/INFO]: [STDOUT]: [AdvancedCompass] Mob: advancedcompass.iceandfire:cockatrice added [20:23:31] [Render thread/INFO]: [STDOUT]: [AdvancedCompass] Mob: advancedcompass.iceandfire:hippocampus added [20:23:31] [Render thread/INFO]: [STDOUT]: [AdvancedCompass] Mob: advancedcompass.iceandfire:sea_serpent added [20:23:31] [Render thread/INFO]: [STDOUT]: [AdvancedCompass] Mob: advancedcompass.iceandfire:deathworm added [20:23:31] [Render thread/INFO]: [STDOUT]: [AdvancedCompass] Mob: advancedcompass.iceandfire:myrmex_royal added [20:23:31] [Render thread/INFO]: [STDOUT]: [AdvancedCompass] Mob: advancedcompass.iceandfire:amphithere added [20:23:31] [Render thread/INFO]: [STDOUT]: [AdvancedCompass] Mob: advancedcompass.iceandfire:hippogryph added [20:23:31] [Render thread/INFO]: [STDOUT]: [AdvancedCompass] Mob: advancedcompass.iceandfire:siren added [20:23:31] [Render thread/INFO]: [STDOUT]: [AdvancedCompass] Mob: advancedcompass.iceandfire:gorgon added [20:23:31] [Render thread/INFO]: [STDOUT]: [AdvancedCompass] Mob: advancedcompass.iceandfire:cyclops added [20:23:31] [Render thread/INFO]: [STDOUT]: [AdvancedCompass] Mob: advancedcompass.iceandfire:stymphalian_bird added [20:23:31] [Render thread/INFO]: [STDOUT]: [AdvancedCompass] Mob: advancedcompass.iceandfire:dread_thrall added [20:23:31] [Render thread/INFO]: [STDOUT]: [AdvancedCompass] Mob: advancedcompass.iceandfire:dread_ghoul added [20:23:31] [Render thread/INFO]: [STDOUT]: [AdvancedCompass] Mob: advancedcompass.iceandfire:dread_beast added [20:23:31] [Render thread/INFO]: [STDOUT]: [AdvancedCompass] Mob: advancedcompass.iceandfire:hydra added [20:23:31] [Render thread/INFO]: [STDOUT]: [AdvancedCompass] Mob: advancedcompass.iceandfire:ghost added [20:23:31] [Render thread/INFO]: [STDOUT]: [AdvancedCompass] scanning directory: majruszsdifficulty [20:23:31] [Render thread/INFO]: [STDOUT]: [AdvancedCompass] Mob: advancedcompass.majruszsdifficulty:illusioner added [20:23:31] [Render thread/INFO]: [STDOUT]: [AdvancedCompass] Mob: advancedcompass.majruszsdifficulty:tank added [20:23:31] [Render thread/INFO]: [STDOUT]: [AdvancedCompass] Mob: advancedcompass.majruszsdifficulty:creeperling added [20:23:31] [Render thread/INFO]: [STDOUT]: [AdvancedCompass] Mob: advancedcompass.majruszsdifficulty:cursed_armor added [20:23:31] [Render thread/INFO]: [STDOUT]: [AdvancedCompass] scanning directory: man [20:23:31] [Render thread/INFO]: [STDOUT]: [AdvancedCompass] Missed entity type: man:manfromthefog [20:23:31] [Render thread/INFO]: [STDOUT]: [AdvancedCompass] Missed entity type: man:managgresive [20:23:31] [Render thread/INFO]: [STDOUT]: [AdvancedCompass] scanning directory: mca [20:23:31] [Render thread/INFO]: [STDOUT]: [AdvancedCompass] Mob: advancedcompass.mca:female_zombie_villager added [20:23:31] [Render thread/INFO]: [STDOUT]: [AdvancedCompass] Mob: advancedcompass.mca:female_villager added [20:23:31] [Render thread/INFO]: [STDOUT]: [AdvancedCompass] Mob: advancedcompass.mca:male_villager added [20:23:31] [Render thread/INFO]: [STDOUT]: [AdvancedCompass] Mob: advancedcompass.mca:male_zombie_villager added [20:23:31] [Render thread/INFO]: [STDOUT]: [AdvancedCompass] scanning directory: minecraft [20:23:31] [Render thread/INFO]: [STDOUT]: [AdvancedCompass] Mob: advancedcompass.minecraft:giant added [20:23:31] [Render thread/INFO]: [STDOUT]: [AdvancedCompass] scanning directory: mobs_of_mythology [20:23:31] [Render thread/INFO]: [STDOUT]: [AdvancedCompass] Mob: advancedcompass.mobs_of_mythology:kobold added [20:23:31] [Render thread/INFO]: [STDOUT]: [AdvancedCompass] Mob: advancedcompass.mobs_of_mythology:chupacabra added [20:23:31] [Render thread/INFO]: [STDOUT]: [AdvancedCompass] Mob: advancedcompass.mobs_of_mythology:kobold_warrior added [20:23:31] [Render thread/INFO]: [STDOUT]: [AdvancedCompass] Mob: advancedcompass.mobs_of_mythology:drake added [20:23:31] [Render thread/INFO]: [STDOUT]: [AdvancedCompass] scanning directory: mutantmonsters [20:23:31] [Render thread/INFO]: [STDOUT]: [AdvancedCompass] Mob: advancedcompass.mutantmonsters:mutant_skeleton added [20:23:31] [Render thread/INFO]: [STDOUT]: [AdvancedCompass] Mob: advancedcompass.mutantmonsters:mutant_creeper added [20:23:31] [Render thread/INFO]: [STDOUT]: [AdvancedCompass] Mob: advancedcompass.mutantmonsters:mutant_zombie added [20:23:31] [Render thread/INFO]: [STDOUT]: [AdvancedCompass] Mob: advancedcompass.mutantmonsters:mutant_enderman added [20:23:31] [Render thread/INFO]: [STDOUT]: [AdvancedCompass] Mob: advancedcompass.mutantmonsters:creeper_minion added [20:23:31] [Render thread/INFO]: [STDOUT]: [AdvancedCompass] scanning directory: naturalist [20:23:31] [Render thread/INFO]: [STDOUT]: [AdvancedCompass] Missed entity type: naturalist:duck [20:23:31] [Render thread/INFO]: [STDOUT]: [AdvancedCompass] Missed entity type: naturalist:bass [20:23:31] [Render thread/INFO]: [STDOUT]: [AdvancedCompass] Missed entity type: naturalist:bear [20:23:31] [Render thread/INFO]: [STDOUT]: [AdvancedCompass] Missed entity type: naturalist:lizard [20:23:31] [Render thread/INFO]: [STDOUT]: [AdvancedCompass] Missed entity type: naturalist:butterfly [20:23:31] [Render thread/INFO]: [STDOUT]: [AdvancedCompass] Missed entity type: naturalist:finch [20:23:31] [Render thread/INFO]: [STDOUT]: [AdvancedCompass] Missed entity type: naturalist:robin [20:23:31] [Render thread/INFO]: [STDOUT]: [AdvancedCompass] Missed entity type: naturalist:cardinal [20:23:31] [Render thread/INFO]: [STDOUT]: [AdvancedCompass] Missed entity type: naturalist:snail [20:23:31] [Render thread/INFO]: [STDOUT]: [AdvancedCompass] Missed entity type: naturalist:deer [20:23:31] [Render thread/INFO]: [STDOUT]: [AdvancedCompass] Missed entity type: naturalist:sparrow [20:23:31] [Render thread/INFO]: [STDOUT]: [AdvancedCompass] Missed entity type: naturalist:snake [20:23:31] [Render thread/INFO]: [STDOUT]: [AdvancedCompass] Missed entity type: naturalist:boar [20:23:31] [Render thread/INFO]: [STDOUT]: [AdvancedCompass] Missed entity type: naturalist:giraffe [20:23:31] [Render thread/INFO]: [STDOUT]: [AdvancedCompass] Missed entity type: naturalist:coral_snake [20:23:31] [Render thread/INFO]: [STDOUT]: [AdvancedCompass] Missed entity type: naturalist:zebra [20:23:31] [Render thread/INFO]: [STDOUT]: [AdvancedCompass] Missed entity type: naturalist:rhino [20:23:31] [Render thread/INFO]: [STDOUT]: [AdvancedCompass] Missed entity type: naturalist:lion [20:23:31] [Render thread/INFO]: [STDOUT]: [AdvancedCompass] Missed entity type: naturalist:rattlesnake [20:23:31] [Render thread/INFO]: [STDOUT]: [AdvancedCompass] Missed entity type: naturalist:elephant [20:23:31] [Render thread/INFO]: [STDOUT]: [AdvancedCompass] Missed entity type: naturalist:hippo [20:23:31] [Render thread/INFO]: [STDOUT]: [AdvancedCompass] Missed entity type: naturalist:vulture [20:23:31] [Render thread/INFO]: [STDOUT]: [AdvancedCompass] Missed entity type: naturalist:tortoise [20:23:31] [Render thread/INFO]: [STDOUT]: [AdvancedCompass] Missed entity type: naturalist:firefly [20:23:31] [Render thread/INFO]: [STDOUT]: [AdvancedCompass] Missed entity type: naturalist:bluejay [20:23:31] [Render thread/INFO]: [STDOUT]: [AdvancedCompass] Missed entity type: naturalist:dragonfly [20:23:31] [Render thread/INFO]: [STDOUT]: [AdvancedCompass] Missed entity type: naturalist:canary [20:23:31] [Render thread/INFO]: [STDOUT]: [AdvancedCompass] Missed entity type: naturalist:catfish [20:23:31] [Render thread/INFO]: [STDOUT]: [AdvancedCompass] Missed entity type: naturalist:alligator [20:23:31] [Render thread/INFO]: [STDOUT]: [AdvancedCompass] Missed entity type: naturalist:lizard_tail [20:23:31] [Render thread/INFO]: [STDOUT]: [AdvancedCompass] scanning directory: paradise_lost [20:23:31] [Render thread/INFO]: [STDOUT]: [AdvancedCompass] Mob: advancedcompass.paradise_lost:moa added [20:23:31] [Render thread/INFO]: [STDOUT]: [AdvancedCompass] Mob: advancedcompass.paradise_lost:envoy added [20:23:31] [Render thread/INFO]: [STDOUT]: [AdvancedCompass] scanning directory: soulsweapons [20:23:31] [Render thread/INFO]: [STDOUT]: [AdvancedCompass] Missed entity type: soulsweapons:draugr_boss [20:23:31] [Render thread/INFO]: [STDOUT]: [AdvancedCompass] scanning directory: tconstruct [20:23:31] [Render thread/INFO]: [STDOUT]: [AdvancedCompass] Missed entity type: tconstruct:sky_slime [20:23:31] [Render thread/INFO]: [STDOUT]: [AdvancedCompass] scanning directory: wildlife [20:23:31] [Render thread/INFO]: [STDOUT]: [AdvancedCompass] Mob: advancedcompass.wildlife:horseshoecrab added [20:23:31] [Render thread/INFO]: [STDOUT]: [AdvancedCompass] Mob: advancedcompass.wildlife:sanddollar added [20:23:31] [Render thread/INFO]: [STDOUT]: [AdvancedCompass] Mob: advancedcompass.wildlife:sparrow added [20:23:31] [Render thread/INFO]: [STDOUT]: [AdvancedCompass] Mob: advancedcompass.wildlife:lark added [20:23:31] [Render thread/INFO]: [STDOUT]: [AdvancedCompass] Mob: advancedcompass.wildlife:anglerfish added [20:23:31] [Render thread/INFO]: [STDOUT]: [AdvancedCompass] Mob: advancedcompass.wildlife:glow_jellyfish added [20:23:31] [Render thread/INFO]: ARRP register - before user [20:23:32] [Render thread/INFO]: Block minecraft:water_cauldron had its color provider replaced with net.mehvahdjukaar.amendments.AmendmentsClient$$Lambda$16694/0x0000000802346ca0@1277e3bb and will not use per-vertex coloring [20:23:32] [Render thread/WARN]: Method overwrite conflict for getModel in fabric-model-loading-api-v1.mixins.json:BakedModelManagerMixin from mod fabric-model-loading-api-v1, previously written by foundationgames.enhancedblockentities.mixin.BakedModelManagerMixin. Skipping method. [20:23:32] [Render thread/INFO]: Replacing search trees with 'REI' provider [20:23:32] [Finalizer/WARN]: One or more BufferBuilders have been leaked, ModernFix will attempt to correct this. [20:23:32] [Render thread/INFO]: Instancing error handler class dev.isxander.debugify.mixinplugin.DebugifyErrorHandler [20:23:32] [Render thread/INFO]: Instancing error handler class com.illusivesoulworks.polymorph.mixin.IntegratedMixinPlugin [20:23:32] [Render thread/WARN]: Mixin apply for mod necronomicon failed necronomicon-common.mixins.json:client.DebugScreenMixin from mod necronomicon -> net.minecraft.class_340: org.spongepowered.asm.mixin.injection.throwables.InvalidInjectionException Critical injection failure: @Inject annotation on getLeftText could not find any targets matching 'getGameInformation' in net/minecraft/class_340. No refMap loaded. [handler$hjb002$necronomicon$getLeftText(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V -> Parse -> -> Validate Targets] org.spongepowered.asm.mixin.injection.throwables.InvalidInjectionException: Critical injection failure: @Inject annotation on getLeftText could not find any targets matching 'getGameInformation' in net/minecraft/class_340. No refMap loaded. [handler$hjb002$necronomicon$getLeftText(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V -> Parse -> -> Validate Targets] at org.spongepowered.asm.mixin.injection.selectors.TargetSelectors.validate(TargetSelectors.java:346) ~[sponge-mixin-0.15.4+mixin.0.8.7.jar:0.15.4+mixin.0.8.7] at org.spongepowered.asm.mixin.injection.struct.InjectionInfo.readAnnotation(InjectionInfo.java:369) ~[sponge-mixin-0.15.4+mixin.0.8.7.jar:0.15.4+mixin.0.8.7] at org.spongepowered.asm.mixin.injection.struct.InjectionInfo.<init>(InjectionInfo.java:340) ~[sponge-mixin-0.15.4+mixin.0.8.7.jar:0.15.4+mixin.0.8.7] at org.spongepowered.asm.mixin.injection.struct.InjectionInfo.<init>(InjectionInfo.java:331) ~[sponge-mixin-0.15.4+mixin.0.8.7.jar:0.15.4+mixin.0.8.7] at org.spongepowered.asm.mixin.injection.struct.CallbackInjectionInfo.<init>(CallbackInjectionInfo.java:48) ~[sponge-mixin-0.15.4+mixin.0.8.7.jar:0.15.4+mixin.0.8.7] at jdk.internal.reflect.GeneratedConstructorAccessor55.newInstance(Unknown Source) ~[?:?] at jdk.internal.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45) ~[?:?] at java.lang.reflect.Constructor.newInstanceWithCaller(Constructor.java:499) ~[?:?] at java.lang.reflect.Constructor.newInstance(Constructor.java:480) ~[?:?] at org.spongepowered.asm.mixin.injection.struct.InjectionInfo$InjectorEntry.create(InjectionInfo.java:196) ~[sponge-mixin-0.15.4+mixin.0.8.7.jar:0.15.4+mixin.0.8.7] at org.spongepowered.asm.mixin.injection.struct.InjectionInfo.parse(InjectionInfo.java:664) ~[sponge-mixin-0.15.4+mixin.0.8.7.jar:0.15.4+mixin.0.8.7] at org.spongepowered.asm.mixin.transformer.MixinTargetContext.prepareInjections(MixinTargetContext.java:1399) ~[sponge-mixin-0.15.4+mixin.0.8.7.jar:0.15.4+mixin.0.8.7] at org.spongepowered.asm.mixin.transformer.MixinApplicatorStandard.prepareInjections(MixinApplicatorStandard.java:731) ~[sponge-mixin-0.15.4+mixin.0.8.7.jar:0.15.4+mixin.0.8.7] at org.spongepowered.asm.mixin.transformer.MixinApplicatorStandard.applyMixin(MixinApplicatorStandard.java:315) ~[sponge-mixin-0.15.4+mixin.0.8.7.jar:0.15.4+mixin.0.8.7] at org.spongepowered.asm.mixin.transformer.MixinApplicatorStandard.apply(MixinApplicatorStandard.java:246) ~[sponge-mixin-0.15.4+mixin.0.8.7.jar:0.15.4+mixin.0.8.7] at org.spongepowered.asm.mixin.transformer.TargetClassContext.apply(TargetClassContext.java:437) ~[sponge-mixin-0.15.4+mixin.0.8.7.jar:0.15.4+mixin.0.8.7] at org.spongepowered.asm.mixin.transformer.TargetClassContext.applyMixins(TargetClassContext.java:418) ~[sponge-mixin-0.15.4+mixin.0.8.7.jar:0.15.4+mixin.0.8.7] at org.spongepowered.asm.mixin.transformer.MixinProcessor.applyMixins(MixinProcessor.java:363) ~[sponge-mixin-0.15.4+mixin.0.8.7.jar:0.15.4+mixin.0.8.7] at org.spongepowered.asm.mixin.transformer.MixinTransformer.transformClass(MixinTransformer.java:234) ~[sponge-mixin-0.15.4+mixin.0.8.7.jar:0.15.4+mixin.0.8.7] at org.spongepowered.asm.mixin.transformer.MixinTransformer.transformClassBytes(MixinTransformer.java:202) ~[sponge-mixin-0.15.4+mixin.0.8.7.jar:0.15.4+mixin.0.8.7] at net.fabricmc.loader.impl.launch.knot.KnotClassDelegate.getPostMixinClassByteArray(KnotClassDelegate.java:422) ~[fabric-loader-0.16.9.jar:?] at net.fabricmc.loader.impl.launch.knot.KnotClassDelegate.tryLoadClass(KnotClassDelegate.java:323) ~[fabric-loader-0.16.9.jar:?] at net.fabricmc.loader.impl.launch.knot.KnotClassDelegate.loadClass(KnotClassDelegate.java:218) ~[fabric-loader-0.16.9.jar:?] at net.fabricmc.loader.impl.launch.knot.KnotClassLoader.loadClass(KnotClassLoader.java:119) ~[fabric-loader-0.16.9.jar:?] at java.lang.ClassLoader.loadClass(ClassLoader.java:525) ~[?:?] at net.minecraft.class_329.<init>(class_329.java:141) ~[client-intermediary.jar:?] at net.minecraft.class_310.<init>(class_310.java:603) ~[client-intermediary.jar:?] at net.minecraft.client.main.Main.main(Main.java:211) ~[fabric-loader-0.16.9-1.20.1.jar:?] at net.fabricmc.loader.impl.game.minecraft.MinecraftGameProvider.launch(MinecraftGameProvider.java:480) ~[fabric-loader-0.16.9.jar:?] at net.fabricmc.loader.impl.launch.knot.Knot.launch(Knot.java:74) ~[fabric-loader-0.16.9.jar:?] at net.fabricmc.loader.impl.launch.knot.KnotClient.main(KnotClient.java:23) ~[fabric-loader-0.16.9.jar:?] [20:23:33] [Render thread/INFO]: FOUND PATH shaders/core/blit_screen.json [20:23:33] [Render thread/INFO]: FOUND PATH shaders/core/rendertype_gui.json [20:23:33] [Render thread/INFO]: FOUND PATH shaders/core/rendertype_gui_overlay.json [20:23:33] [Render thread/INFO]: FOUND PATH shaders/core/position.json [20:23:33] [Render thread/INFO]: FOUND PATH shaders/core/position_color.json [20:23:33] [Render thread/INFO]: FOUND PATH shaders/core/position_color_tex.json [20:23:33] [Render thread/INFO]: FOUND PATH shaders/core/position_tex.json [20:23:33] [Render thread/INFO]: FOUND PATH shaders/core/position_tex_color.json [20:23:33] [Render thread/INFO]: FOUND PATH shaders/core/rendertype_text.json [20:23:33] [Render thread/INFO]: Invalidating pack caches [20:23:33] [Render thread/INFO]: Reloading ResourceManager: vanilla, seasons:seasonal_lush_caves, Moonlight Mods Dynamic Assets, fabric (accelerateddecay, ad_astra, ad_astra_giselle_addon, advanced_runtime_resource_pack, advancedcompass, adventurez, almanac, amecs, amecsapi, amendments, animatica, another_furniture, appleskin, artifacts, attributefix, autotag, autotag-convention, azurelib, azurelibarmor, badoptimizations, bakingdelight, balm-fabric, battletowers, bcc, better_totem_of_undying, betteradvancements, bettercombat, betterdungeons, betterfortresses, betterfpsdist, betterjungletemples, betterloot, bettermineshafts, betterstrongholds, blur, bobby, bookshelf, bosses_of_mass_destruction, c2me, cactusconfig, caffeineconfig, capsaicin, cardinal-components, cardinal-components-base, cardinal-components-block, cardinal-components-chunk, cardinal-components-entity, cardinal-components-item, cardinal-components-level, cardinal-components-scoreboard, cardinal-components-world, carryon, charmofundying, chisel, chunksending, cicada, citresewn, citresewn-defaults, clean-debug, clearwater, clienttweaks, cloth-config, cloud, clumps, conditional-mixin, corgilib, crafttweaker, creativecore, cristellib, crops_love_rain, culinaryconstruct, cullleaves, customportalapi, darkbindings, darkbosses, darktimer, darkwaters, debugify, dehydration, diet, disable_custom_worlds_advice, dungeons_arise, dynamic_fps, e4mc_minecraft, easyanvils, easymagic, enchancement, enchdesc, enhancedblockentities, enhancedvisuals, entity_model_features, entity_texture_features, entityculling, environmentz, equipmentcompare, exordium, expanded_ecosphere, fabric-api, fabric-api-base, fabric-api-lookup-api-v1, fabric-biome-api-v1, fabric-block-api-v1, fabric-block-view-api-v2, fabric-blockrenderlayer-v1, fabric-client-tags-api-v1, fabric-command-api-v1, fabric-command-api-v2, fabric-commands-v0, fabric-containers-v0, fabric-content-registries-v0, fabric-convention-tags-v1, fabric-crash-report-info-v1, fabric-data-attachment-api-v1, fabric-data-generation-api-v1, fabric-dimensions-v1, fabric-entity-events-v1, fabric-events-interaction-v0, fabric-events-lifecycle-v0, fabric-game-rule-api-v1, fabric-item-api-v1, fabric-item-group-api-v1, fabric-key-binding-api-v1, fabric-keybindings-v0, fabric-language-kotlin, fabric-lifecycle-events-v1, fabric-loot-api-v2, fabric-loot-tables-v1, fabric-message-api-v1, fabric-mining-level-api-v1, fabric-model-loading-api-v1, fabric-models-v0, fabric-networking-api-v1, fabric-networking-v0, fabric-object-builder-api-v1, fabric-particles-v1, fabric-recipe-api-v1, fabric-registry-sync-v0, fabric-renderer-api-v1, fabric-renderer-indigo, fabric-renderer-registries-v1, fabric-rendering-data-attachment-v1, fabric-rendering-fluids-v1, fabric-rendering-v0, fabric-rendering-v1, fabric-resource-conditions-api-v1, fabric-resource-loader-v0, fabric-screen-api-v1, fabric-screen-handler-api-v1, fabric-sound-api-v1, fabric-transfer-api-v1, fabric-transitive-access-wideners-v1, fabricloader, fabricskyboxes, farmersdelight, faux-custom-entity-data, firstaidfabric, forgeconfigapiport, framework, fzzy_config, geckolib, getittogetherdrops, hardcorerevival, hearth_and_home, here-be-no-dragons, horseexpert, iceandfire, ichunutil, immediatelyfast, immersive_weathering, incendium, inventorymanagement, ironchests, jade, jamlib, jeresources, jewelry, jjthunder_to_the_max, journeymap, jupiter, kanos_config, krypton, lazydfu, leaky, legendarytooltips, letmedespawn, levelz, libz, lilylib, lithium, lootbeams, lunar, maelstrom_library, majruszlibrary, majruszsdifficulty, mca, memorysettings, midnightlib, mindfuldarkness, mixintrace, mm, mobs_of_mythology, modernfix, modmenu, moonlight, mr_manic, mr_nevermore, mr_sanguine, mr_stellarity, mru, mutantmonsters, noisium, notenoughcrashes, notreepunching, nvidium, overflowingbars, owo, packetfixer, paradise_lost, particle_core, patchouli, philipsruins, playeranimatorapi, pling, polymorph, porting_lib_accessors, porting_lib_attributes, porting_lib_base, porting_lib_common, porting_lib_config, porting_lib_core, porting_lib_entity, porting_lib_extensions, porting_lib_fluids, porting_lib_gui_utils, porting_lib_lazy_registration, porting_lib_loot, porting_lib_mixin_extensions, porting_lib_networking, porting_lib_recipe_book_categories, porting_lib_tags, porting_lib_tool_actions, porting_lib_transfer, porting_lib_utility, profundis, projectile_damage, provihealth, puffish_attributes, puzzlesapi, randomium, ranged_weapon_api, reach-entity-attributes, reacharound, reeses-sodium-options, refurbished_furniture, rightclickharvest, rotten_flesh_to_leather, roughlyenoughitems, satin, seasons, seasonsdelightcompat, seasonsextras, seasonsterralithcompat, shield_api, shield_overhaul, slotcycler, smoothchunk, sodium, sodium-extra, sodiumdynamiclights, sodiumextras, sodiumoptionsapi, sootychimneys, sound_physics_remastered, spark, spawnanimations, spell_power, spoiledz, spruceui, starlight, statement, statement_vanilla_compatibility, step-height-entity-attribute, storagedelight, structure_pool_api, team_reborn_energy, terra, terrablender, tiered, tooltipfix, trashslot, travelerstitles, trinkets, voidz, watching, waystones, wildlife, xp_storage, xp_storage_trinkets, yeetusexperimentus, yet_another_config_lib_v3, yosbr, ysns, zigysmultiloaderutils, zoomify) [20:23:33] [Render thread/INFO]: closing rrp ebe:base_resources [20:23:33] [Render thread/INFO]: ARRP register - before vanilla [20:23:33] [Render thread/INFO]: ARRP register - after vanilla [20:23:34] [Render thread/INFO]: Generated runtime CLIENT_RESOURCES for pack Moonlight Mods Dynamic Assets (amendments) in: 224 ms [20:23:34] [Render thread/INFO]: Generated runtime CLIENT_RESOURCES for pack Moonlight Mods Dynamic Assets (immersive_weathering) in: 52 ms [20:23:34] [Render thread/INFO]: Generated runtime CLIENT_RESOURCES for pack Moonlight Mods Dynamic Assets (moonlight) in: 2 ms [20:23:34] [Render thread/ERROR]: Invalid path in mod resource-pack paradise_lost: paradise_lost:textures/entity/slider/sliderAwake.png, ignoring [20:23:34] [Render thread/ERROR]: Invalid path in mod resource-pack paradise_lost: paradise_lost:textures/entity/slider/sliderAwakeGlow.png, ignoring [20:23:34] [Render thread/ERROR]: Invalid path in mod resource-pack paradise_lost: paradise_lost:textures/entity/slider/sliderAwakeGlow_red.png, ignoring [20:23:34] [Render thread/ERROR]: Invalid path in mod resource-pack paradise_lost: paradise_lost:textures/entity/slider/sliderAwake_red.png, ignoring [20:23:34] [Render thread/ERROR]: Invalid path in mod resource-pack paradise_lost: paradise_lost:textures/entity/slider/sliderSleep.png, ignoring [20:23:34] [Render thread/ERROR]: Invalid path in mod resource-pack paradise_lost: paradise_lost:textures/entity/slider/sliderSleepGlow.png, ignoring [20:23:34] [Render thread/ERROR]: Invalid path in mod resource-pack paradise_lost: paradise_lost:textures/entity/slider/sliderSleepGlow_red.png, ignoring [20:23:34] [Render thread/ERROR]: Invalid path in mod resource-pack paradise_lost: paradise_lost:textures/entity/slider/sliderSleep_red.png, ignoring [20:23:34] [Render thread/ERROR]: Invalid path in mod resource-pack watching: watching:textures/item/renders/player/8bit_Librarian.png, ignoring [20:23:34] [Render thread/ERROR]: Invalid path in mod resource-pack watching: watching:textures/font/watching_ui/crash_sequence/c41811 (2).jpg, ignoring [20:23:34] [Worker-ResourceReload-0/INFO]: Found unifont_all_no_pua-15.0.06.hex, loading [20:23:34] [Worker-ResourceReload-1/WARN]: File sanguine:sounds/entity/grub/stun.ogg does not exist, cannot add it to event sanguine:entity.grub.stun [20:23:34] [Worker-ResourceReload-1/WARN]: File sanguine:sounds/entity/grub/stun.ogg does not exist, cannot add it to event sanguine:entity.grub.stun [20:23:34] [Render thread/ERROR]: Invalid path in mod resource-pack randomium: randomium:textures/particles/unknown (1).png, ignoring [20:23:34] [Render thread/ERROR]: Invalid path in mod resource-pack randomium: randomium:textures/particles/unknown (2).png, ignoring [20:23:35] [Render thread/ERROR]: Invalid path in mod resource-pack mr_manic: manic:textures/gui/grimoire/pages/Nueva carpeta/fermented_spider_eye.png, ignoring [20:23:35] [Render thread/ERROR]: Invalid path in mod resource-pack mr_manic: manic:textures/gui/grimoire/pages/Nueva carpeta/brewing_stand_base.png, ignoring [20:23:35] [Render thread/ERROR]: Invalid path in mod resource-pack mr_manic: manic:textures/gui/grimoire/pages/Nueva carpeta/brewing_stand.png, ignoring [20:23:35] [Render thread/ERROR]: Invalid path in mod resource-pack mr_nevermore: manic:textures/gui/grimoire/pages/Nueva carpeta/fermented_spider_eye.png, ignoring [20:23:35] [Render thread/ERROR]: Invalid path in mod resource-pack mr_nevermore: manic:textures/gui/grimoire/pages/Nueva carpeta/brewing_stand_base.png, ignoring [20:23:35] [Render thread/ERROR]: Invalid path in mod resource-pack mr_nevermore: manic:textures/gui/grimoire/pages/Nueva carpeta/brewing_stand.png, ignoring [20:23:35] [Worker-ResourceReload-1/WARN]: File manic:sounds/entity/sorrowhead/spit_phantom.ogg does not exist, cannot add it to event manic:entity.sorrowhead.spit_phantom [20:23:35] [Worker-ResourceReload-1/WARN]: File manic:sounds/entity/sorrowhead/spit_phantom.ogg does not exist, cannot add it to event manic:entity.sorrowhead.spit_phantom [20:23:35] [Render thread/INFO]: Fabric only mixins are working for Better Totem of Undying! [20:23:35] [Render thread/INFO]: Common mixins are working for Better Totem of Undying on Fabric! [20:23:36] [Worker-ResourceReload-2/ERROR]: Invalid path in mod resource-pack watching: watching:textures/item/renders/player/8bit_Librarian.png, ignoring [20:23:36] [Render thread/INFO]: Loaded values for 38 compatible attributes. [20:23:36] [Render thread/ERROR]: Attribute ID 'thermoo:generic.heat_resistance' does not belong to a known attribute. This entry will be ignored. [20:23:36] [Render thread/ERROR]: Attribute ID 'thermoo:generic.frost_resistance' does not belong to a known attribute. This entry will be ignored. [20:23:36] [Render thread/ERROR]: Attribute ID 'thermoo:generic.max_temperature' does not belong to a known attribute. This entry will be ignored. [20:23:36] [Render thread/ERROR]: Attribute ID 'thermoo:generic.min_temperature' does not belong to a known attribute. This entry will be ignored. [20:23:36] [Render thread/INFO]: Loaded 43 values from config. [20:23:36] [Render thread/INFO]: Saving config file. 43 entries. [20:23:36] [Render thread/INFO]: Applying changes for 43 attributes. [20:23:36] [Worker-Main-4/ERROR]: GET request failed. Response Code: 404 [20:23:36] [Render thread/INFO]: Loaded config for: smoothchunk.json [20:23:36] [Render thread/INFO]: Loaded config for: dusk.json [20:23:37] [Render thread/INFO]: Loaded config for: leaky.json [20:23:37] [Worker-Main-2/INFO]: Update available for '[email protected]', (-> 0.4.9) [20:23:37] [Worker-Main-2/INFO]: Update available for '[email protected]', (-> 0.2.0) [20:23:37] [Worker-Main-2/INFO]: Update available for '[email protected]', (-> 14.1.6+fabric-1.20) [20:23:37] [Worker-Main-2/INFO]: Update available for '[email protected]+1.20.1', (-> 1.2.2+1.20.1) [20:23:37] [Worker-Main-2/INFO]: Update available for '[email protected]', (-> 0.4.2.25) [20:23:37] [Worker-Main-2/INFO]: Update available for '[email protected]', (-> 15.1.1+fabric-1.20) [20:23:37] [Worker-Main-2/INFO]: Update available for '[email protected]+mc1.20.1', (-> build.4+mc1.20.1) [20:23:37] [Worker-Main-2/INFO]: Update available for '[email protected]+mod', (-> 1.10+mod) [20:23:37] [Worker-Main-2/INFO]: Update available for '[email protected]+mc1.20.1', (-> mc1.20.1-0.5.11) [20:23:37] [Worker-Main-2/INFO]: Update available for '[email protected]', (-> 4.0.1+mc1.20.1) [20:23:37] [Worker-Main-2/INFO]: Update available for '[email protected]', (-> 1.20.1-5.10.3-fabric) [20:23:40] [Render thread/WARN]: Shader color_convolve could not find uniform named InSize in the specified shader program. [20:23:41] [Render thread/INFO]: Start loading plugin from Ice And Fire Community Edition [20:23:41] [Render thread/INFO]: Start loading plugin from Jade [20:23:41] [Render thread/INFO]: Start loading plugin from Jade [20:23:41] [Render thread/INFO]: Start loading plugin from Jade [20:23:41] [Render thread/INFO]: Start loading plugin from LevelZ [20:23:41] [Render thread/INFO]: Start loading plugin from Waystones [20:23:41] [Render thread/INFO]: Initializing ClientSide Packet Registries [20:23:41] [Render thread/INFO]: Found @IClientPlugin: net.blay09.mods.waystones.compat.JourneyMapIntegration [20:23:42] [Worker-ResourceReload-2/WARN]: Unused frames in sprite manic:block/corpsepitcher/corpsepitcher_liquids: [2] [20:23:42] [Worker-ResourceReload-2/WARN]: Texture watching:item/renders/items/name_tag with size 8x8 limits mip level from 4 to 3 [20:23:42] [Worker-ResourceReload-2/WARN]: Texture firstaidfabric:item/glow_berry_poultice with size 45x53 limits mip level from 3 to 0 [20:23:42] [Worker-ResourceReload-2/WARN]: minecraft:textures/atlas/blocks.png: dropping miplevel from 4 to 0, because of minimum power of two: 1 [20:23:47] [Render thread/INFO]: [EMF]: EMF did not find the Iris API, disabling shadow pass detection [20:23:52] [Worker-ResourceReload-1/INFO]: Successfully load 192 tabula models [20:23:56] [Render thread/WARN]: Missing sound for event: minecraft:item.goat_horn.play [20:23:56] [Render thread/WARN]: Missing sound for event: minecraft:entity.goat.screaming.horn_break [20:23:56] [Render thread/INFO]: OpenAL initialized on device OpenAL Soft on Alto-falantes (Realtek High Definition Audio) [20:23:56] [Render thread/INFO]: Initializing Sound Physics [20:23:56] [Render thread/INFO]: EFX Extension recognized [20:23:56] [Render thread/INFO]: Max auxiliary sends: 4 [20:23:56] [Render thread/INFO]: Aux slot 1 created [20:23:56] [Render thread/INFO]: Aux slot 2 created [20:23:56] [Render thread/INFO]: Aux slot 3 created [20:23:56] [Render thread/INFO]: Aux slot 4 created [20:23:56] [Render thread/INFO]: EFX ready [20:23:56] [Render thread/INFO]: Sound engine started [20:23:56] [Render thread/INFO]: Created: 4096x16384x0 minecraft:textures/atlas/blocks.png-atlas [20:23:56] [Render thread/INFO]: Created: 512x512x4 minecraft:textures/atlas/signs.png-atlas [20:23:56] [Render thread/INFO]: Created: 512x512x4 minecraft:textures/atlas/banner_patterns.png-atlas [20:23:56] [Render thread/INFO]: Created: 512x512x4 minecraft:textures/atlas/shield_patterns.png-atlas [20:23:56] [Render thread/INFO]: Created: 64x64x4 refurbished_furniture:textures/atlas/tv_channels.png-atlas [20:23:56] [Render thread/INFO]: Created: 2048x1024x4 minecraft:textures/atlas/armor_trims.png-atlas [20:23:56] [Render thread/INFO]: Created: 128x64x4 minecraft:textures/atlas/decorated_pot.png-atlas [20:23:56] [Render thread/INFO]: Created: 256x256x4 minecraft:textures/atlas/chest.png-atlas [20:23:56] [Render thread/INFO]: Created: 512x256x4 minecraft:textures/atlas/beds.png-atlas [20:23:56] [Render thread/INFO]: Created: 512x256x4 minecraft:textures/atlas/shulker_boxes.png-atlas [20:23:59] [Render thread/INFO]: FOUND PATH shaders/core/particle.json [20:23:59] [Render thread/INFO]: FOUND PATH owo:shaders/core/spectrum.json [20:23:59] [Render thread/INFO]: FOUND PATH owo:shaders/core/blur.json [20:23:59] [Render thread/INFO]: FOUND PATH shaders/core/position.json [20:23:59] [Render thread/INFO]: FOUND PATH shaders/core/position_color.json [20:23:59] [Render thread/INFO]: FOUND PATH shaders/core/position_color_lightmap.json [20:23:59] [Render thread/INFO]: FOUND PATH shaders/core/position_color_tex.json [20:23:59] [Render thread/INFO]: FOUND PATH shaders/core/position_color_tex_lightmap.json [20:23:59] [Render thread/INFO]: FOUND PATH shaders/core/position_tex.json [20:23:59] [Render thread/INFO]: FOUND PATH shaders/core/position_tex_color.json [20:23:59] [Render thread/WARN]: Shader position_tex_color could not find uniform named ColorModulator in the specified shader program. [20:23:59] [Render thread/INFO]: FOUND PATH shaders/core/position_tex_color_normal.json [20:23:59] [Render thread/INFO]: FOUND PATH shaders/core/position_tex_lightmap_color.json [20:23:59] [Render thread/INFO]: FOUND PATH shaders/core/rendertype_solid.json [20:23:59] [Render thread/INFO]: FOUND PATH shaders/core/rendertype_cutout_mipped.json [20:24:00] [Render thread/INFO]: FOUND PATH shaders/core/rendertype_cutout.json [20:24:00] [Render thread/INFO]: FOUND PATH shaders/core/rendertype_translucent.json [20:24:00] [Render thread/INFO]: FOUND PATH shaders/core/rendertype_translucent_moving_block.json [20:24:00] [Render thread/INFO]: FOUND PATH shaders/core/rendertype_translucent_no_crumbling.json [20:24:00] [Render thread/INFO]: FOUND PATH shaders/core/rendertype_armor_cutout_no_cull.json [20:24:00] [Render thread/INFO]: FOUND PATH shaders/core/rendertype_entity_solid.json [20:24:00] [Render thread/INFO]: FOUND PATH shaders/core/rendertype_entity_cutout.json [20:24:00] [Render thread/INFO]: FOUND PATH shaders/core/rendertype_entity_cutout_no_cull.json [20:24:00] [Render thread/INFO]: FOUND PATH shaders/core/rendertype_entity_cutout_no_cull_z_offset.json [20:24:00] [Render thread/INFO]: FOUND PATH shaders/core/rendertype_item_entity_translucent_cull.json [20:24:00] [Render thread/INFO]: FOUND PATH shaders/core/rendertype_entity_translucent_cull.json [20:24:00] [Render thread/INFO]: FOUND PATH shaders/core/rendertype_entity_translucent.json [20:24:00] [Render thread/WARN]: Shader rendertype_entity_translucent could not find uniform named GameTime in the specified shader program. [20:24:00] [Render thread/INFO]: FOUND PATH shaders/core/rendertype_entity_translucent_emissive.json [20:24:00] [Render thread/WARN]: Shader rendertype_entity_translucent_emissive could not find sampler named Sampler2 in the specified shader program. [20:24:00] [Render thread/INFO]: FOUND PATH shaders/core/rendertype_entity_smooth_cutout.json [20:24:00] [Render thread/INFO]: FOUND PATH shaders/core/rendertype_beacon_beam.json [20:24:00] [Render thread/INFO]: FOUND PATH shaders/core/rendertype_entity_decal.json [20:24:00] [Render thread/INFO]: FOUND PATH shaders/core/rendertype_entity_no_outline.json [20:24:00] [Render thread/INFO]: FOUND PATH shaders/core/rendertype_entity_shadow.json [20:24:00] [Render thread/INFO]: FOUND PATH shaders/core/rendertype_entity_alpha.json [20:24:00] [Render thread/INFO]: FOUND PATH shaders/core/rendertype_eyes.json [20:24:00] [Render thread/INFO]: FOUND PATH shaders/core/rendertype_energy_swirl.json [20:24:00] [Render thread/INFO]: FOUND PATH shaders/core/rendertype_leash.json [20:24:00] [Render thread/INFO]: FOUND PATH shaders/core/rendertype_water_mask.json [20:24:00] [Render thread/INFO]: FOUND PATH shaders/core/rendertype_outline.json [20:24:00] [Render thread/INFO]: FOUND PATH shaders/core/rendertype_armor_glint.json [20:24:00] [Render thread/INFO]: FOUND PATH shaders/core/rendertype_armor_entity_glint.json [20:24:00] [Render thread/INFO]: FOUND PATH shaders/core/rendertype_glint_translucent.json [20:24:00] [Render thread/INFO]: FOUND PATH shaders/core/rendertype_glint.json [20:24:00] [Render thread/INFO]: FOUND PATH shaders/core/rendertype_glint_direct.json [20:24:00] [Render thread/WARN]: Shader rendertype_glint_direct could not find uniform named GlintAlpha in the specified shader program. [20:24:00] [Render thread/INFO]: FOUND PATH shaders/core/rendertype_entity_glint.json [20:24:00] [Render thread/INFO]: FOUND PATH shaders/core/rendertype_entity_glint_direct.json [20:24:00] [Render thread/INFO]: FOUND PATH shaders/core/rendertype_text.json [20:24:00] [Render thread/INFO]: FOUND PATH shaders/core/rendertype_text_background.json [20:24:00] [Render thread/INFO]: FOUND PATH shaders/core/rendertype_text_intensity.json [20:24:00] [Render thread/INFO]: FOUND PATH shaders/core/rendertype_text_see_through.json [20:24:00] [Render thread/INFO]: FOUND PATH shaders/core/rendertype_text_background_see_through.json [20:24:00] [Render thread/INFO]: FOUND PATH shaders/core/rendertype_text_intensity_see_through.json [20:24:00] [Render thread/INFO]: FOUND PATH shaders/core/rendertype_lightning.json [20:24:00] [Render thread/INFO]: FOUND PATH shaders/core/rendertype_tripwire.json [20:24:00] [Render thread/INFO]: FOUND PATH shaders/core/rendertype_end_portal.json [20:24:00] [Render thread/INFO]: FOUND PATH shaders/core/rendertype_end_gateway.json [20:24:00] [Render thread/INFO]: FOUND PATH shaders/core/rendertype_lines.json [20:24:00] [Render thread/INFO]: FOUND PATH shaders/core/rendertype_crumbling.json [20:24:00] [Render thread/INFO]: FOUND PATH shaders/core/rendertype_gui.json [20:24:00] [Render thread/INFO]: FOUND PATH shaders/core/rendertype_gui_overlay.json [20:24:00] [Render thread/WARN]: Shader moonlightmoonlight_markerparticle_translucent could not find sampler named Sampler2 in the specified shader program. [20:24:00] [Render thread/WARN]: Shader moonlightmoonlight_markertext_alpha_color could not find sampler named Sampler2 in the specified shader program. [20:24:00] [Render thread/WARN]: Shader moonlightmoonlight_markertext_alpha_color could not find uniform named IViewRotMat in the specified shader program. [20:24:00] [Render thread/INFO]: FOUND PATH shaders/core/rendertype_gui_text_highlight.json [20:24:00] [Render thread/INFO]: FOUND PATH shaders/core/rendertype_gui_ghost_recipe_overlay.json [20:24:00] [Render thread/INFO]: FOUND PATH shaders/core/enhancedvisuals:position_tex_col_smooth.json [20:24:00] [Render thread/INFO]: FOUND PATH shaders/core/rendertype_dread_portal.json [20:24:00] [Render thread/INFO]: FOUND PATH shaders/core/position_multi_tex.json [20:24:00] [Render thread/WARN]: Core shader modifications detected. Temporarily disabling some parts of ImmediatelyFast. [20:24:00] [Render thread/INFO]: Created: 512x512x0 minecraft:textures/atlas/particles.png-atlas [20:24:00] [Render thread/INFO]: Created: 512x256x0 minecraft:textures/atlas/paintings.png-atlas [20:24:00] [Render thread/INFO]: Created: 256x128x0 minecraft:textures/atlas/mob_effects.png-atlas [20:24:00] [Render thread/INFO]: Created: 256x256x0 moonlight:textures/atlas/map_markers.png-atlas [20:24:01] [Render thread/INFO]: Successfully reload 0 common config(s). [20:24:01] [Render thread/INFO]: BookContentResourceListenerLoader preloaded 311 jsons [20:24:01] [Render thread/INFO]: [Fabric Seasons] Successfully loaded 38 custom grass colors. [20:24:01] [Render thread/INFO]: [Fabric Seasons] Successfully loaded 42 custom foliage colors. [20:24:01] [Render thread/INFO]: Successfully loaded image 'zoomify:textures/demo/third-person-hud.webp' [20:24:01] [Render thread/INFO]: Successfully loaded image 'zoomify:textures/demo/third-person-view.webp' [20:24:01] [Render thread/INFO]: Successfully loaded image 'zoomify:textures/demo/zoom-hand.webp' [20:24:01] [Render thread/INFO]: Successfully loaded image 'zoomify:textures/demo/zoom-world.webp' [20:24:01] [Render thread/INFO]: Successfully loaded image 'watching:textures/font/watching_ui/crash_sequence/title.webp' [20:24:01] [Render thread/INFO]: [ETF]: reloading ETF data. [20:24:01] [Render thread/INFO]: [ETF]: emissive suffixes loaded: {_e}. [20:24:01] [Render thread/INFO]: [ETF]: emissive suffixes loaded: {_e}. [20:24:01] [Render thread/INFO]: [majruszlibrary.json] Reloading configuration file took 9 milliseconds [20:24:01] [Render thread/INFO]: [majruszsdifficulty.json] Reloading configuration file took 40 milliseconds [20:24:04] [Render thread/WARN]: Game took 153.232 seconds to start [20:24:08] [Render thread/INFO]: ARRP register - before user [20:24:08] [Render thread/INFO]: ARRP register - before vanilla [20:24:08] [Render thread/INFO]: ARRP register - after vanilla [20:24:08] [Render thread/INFO]: Generated runtime SERVER_DATA for pack Immersive Weathering Generated Pack (immersive_weathering) in: 12 ms [20:24:08] [Render thread/ERROR]: Invalid path in mod resource-pack mr_stellarity: fokastudio:worldgen/biome/README.md, ignoring [20:24:11] [Render thread/INFO]: Loading config packs... [20:24:11] [Render thread/INFO]: Loading ZIP archive: default.zip [20:24:12] [Render thread/INFO]: Loading config pack "OVERWORLD:OVERWORLD" [20:24:14] [Render thread/INFO]: Loaded config pack "OVERWORLD:OVERWORLD" v1.3.3 by Astrash, Sancires, Aureus in 3360.9195ms. [20:24:14] [Render thread/INFO]: Loaded packs. [20:24:14] [Render thread/INFO]: Registering biomes... [20:24:14] [Render thread/INFO]: Terra biomes registered. [20:24:14] [Render thread/INFO]: Loading world with config pack OVERWORLD [20:24:14] [Render thread/INFO]: Created world type "terra:overworld/overworld" [20:24:15] [Render thread/WARN]: Adding spell_power:fire to saved/remote registry. [20:24:15] [Render thread/WARN]: Adding spell_power:frost to saved/remote registry. [20:24:15] [Render thread/WARN]: Adding spell_power:arcane to saved/remote registry. [20:24:15] [Render thread/INFO]: [fabric-registry-sync] Loaded registry data [file 1/4] [20:24:19] [Render thread/ERROR]: Parsing error loading recipe bakingdelight:bakingdelight/deep_frying/fried_dough_stick com.google.gson.JsonSyntaxException: Unknown item 'create:dough' at net.minecraft.class_1869.method_17878(class_1869.java:272) ~[client-intermediary.jar:?] at java.util.Optional.orElseThrow(Optional.java:403) ~[?:?] at net.minecraft.class_1869.method_8155(class_1869.java:272) ~[client-intermediary.jar:?] at net.minecraft.class_1856.method_8107(class_1856.java:160) ~[client-intermediary.jar:?] at net.minecraft.class_1856.method_8102(class_1856.java:143) ~[client-intermediary.jar:?] at net.minecraft.class_1856.method_52177(class_1856.java:135) ~[client-intermediary.jar:?] at com.zombie_cute.mc.bakingdelight.recipe.custom.DeepFryingRecipe$Serializer.read(DeepFryingRecipe.java:93) ~[moderndelight-0.5.4+1.20.1.jar:?] at com.zombie_cute.mc.bakingdelight.recipe.custom.DeepFryingRecipe$Serializer.method_8121(DeepFryingRecipe.java:80) ~[moderndelight-0.5.4+1.20.1.jar:?] at net.minecraft.class_1863.method_17720(class_1863.java:135) ~[client-intermediary.jar:?] at net.minecraft.class_1863.method_20705(class_1863.java:56) ~[client-intermediary.jar:?] at net.minecraft.class_1863.method_18788(class_1863.java:35) ~[client-intermediary.jar:?] at net.minecraft.class_4080.method_18790(class_4080.java:13) ~[client-intermediary.jar:?] at java.util.concurrent.CompletableFuture$UniAccept.tryFire(CompletableFuture.java:718) ~[?:?] at java.util.concurrent.CompletableFuture$Completion.run(CompletableFuture.java:482) ~[?:?] at net.minecraft.class_4014.method_18365(class_4014.java:69) ~[client-intermediary.jar:?] at net.minecraft.class_1255.method_18859(class_1255.java:156) ~[client-intermediary.jar:?] at net.minecraft.class_4093.method_18859(class_4093.java:23) ~[client-intermediary.jar:?] at net.minecraft.class_1255.method_16075(class_1255.java:130) ~[client-intermediary.jar:?] at net.minecraft.class_1255.method_18857(class_1255.java:139) ~[client-intermediary.jar:?] at net.minecraft.class_310.method_18857(class_310.java:30538) ~[client-intermediary.jar:?] at net.minecraft.class_7196.method_45694(class_7196.java:188) ~[client-intermediary.jar:?] at net.minecraft.class_7196.method_41891(class_7196.java:123) ~[client-intermediary.jar:?] at net.minecraft.class_7196.method_41899(class_7196.java:202) ~[client-intermediary.jar:?] at net.minecraft.class_7196.handler$kjj000$yeetusexperimentus$onLoadLevel(class_7196.java:2532) ~[client-intermediary.jar:?] at net.minecraft.class_7196.method_41894(class_7196.java) ~[client-intermediary.jar:?] at net.minecraft.class_528$class_4272.method_20174(class_528.java:590) ~[client-intermediary.jar:?] at net.minecraft.class_528$class_4272.method_20164(class_528.java:480) ~[client-intermediary.jar:?] at net.minecraft.class_528$class_4272.method_25402(class_528.java:402) ~[client-intermediary.jar:?] at net.minecraft.class_350.method_25402(class_350.java:327) ~[client-intermediary.jar:?] at net.minecraft.class_4069.method_25402(class_4069.java:38) ~[client-intermediary.jar:?] at net.minecraft.class_312.method_1611(class_312.java:98) ~[client-intermediary.jar:?] at net.minecraft.class_437.method_25412(class_437.java:409) ~[client-intermediary.jar:?] at net.minecraft.class_312.method_1601(class_312.java:98) ~[client-intermediary.jar:?] at net.minecraft.class_312.method_22686(class_312.java:169) ~[client-intermediary.jar:?] at net.minecraft.class_1255.execute(class_1255.java:102) ~[client-intermediary.jar:?] at net.minecraft.class_312.method_22684(class_312.java:169) ~[client-intermediary.jar:?] at org.lwjgl.glfw.GLFWMouseButtonCallbackI.callback(GLFWMouseButtonCallbackI.java:43) ~[lwjgl-glfw-3.3.1.jar:?] at org.lwjgl.system.JNI.invokeV(Native Method) ~[lwjgl-3.3.1.jar:?] at org.lwjgl.glfw.GLFW.glfwWaitEventsTimeout(GLFW.java:3474) ~[lwjgl-glfw-3.3.1.jar:?] at com.mojang.blaze3d.systems.RenderSystem.limitDisplayFPS(RenderSystem.java:237) ~[client-intermediary.jar:?] at net.minecraft.class_310.method_1523(class_310.java:1244) ~[client-intermediary.jar:?] at net.minecraft.class_310.method_1514(class_310.java:802) ~[client-intermediary.jar:?] at net.minecraft.client.main.Main.main(Main.java:250) ~[fabric-loader-0.16.9-1.20.1.jar:?] at net.fabricmc.loader.impl.game.minecraft.MinecraftGameProvider.launch(MinecraftGameProvider.java:480) ~[fabric-loader-0.16.9.jar:?] at net.fabricmc.loader.impl.launch.knot.Knot.launch(Knot.java:74) ~[fabric-loader-0.16.9.jar:?] at net.fabricmc.loader.impl.launch.knot.KnotClient.main(KnotClient.java:23) ~[fabric-loader-0.16.9.jar:?] [20:24:19] [Render thread/ERROR]: Parsing error loading recipe firstaidfabric:medkit com.google.gson.JsonSyntaxException: Unknown item 'firstaidfabric:plaster' at net.minecraft.class_1869.method_17878(class_1869.java:272) ~[client-intermediary.jar:?] at java.util.Optional.orElseThrow(Optional.java:403) ~[?:?] at net.minecraft.class_1869.method_8155(class_1869.java:272) ~[client-intermediary.jar:?] at net.minecraft.class_1856.method_8107(class_1856.java:160) ~[client-intermediary.jar:?] at net.minecraft.class_1856.method_8102(class_1856.java:143) ~[client-intermediary.jar:?] at net.minecraft.class_1869.method_8157(class_1869.java:252) ~[client-intermediary.jar:?] at net.minecraft.class_1869$class_1870.method_8164(class_1869.java:285) ~[client-intermediary.jar:?] at net.minecraft.class_1869$class_1870.method_8121(class_1869.java:279) ~[client-intermediary.jar:?] at net.minecraft.class_1863.method_17720(class_1863.java:135) ~[client-intermediary.jar:?] at net.minecraft.class_1863.method_20705(class_1863.java:56) ~[client-intermediary.jar:?] at net.minecraft.class_1863.method_18788(class_1863.java:35) ~[client-intermediary.jar:?] at net.minecraft.class_4080.method_18790(class_4080.java:13) ~[client-intermediary.jar:?] at java.util.concurrent.CompletableFuture$UniAccept.tryFire(CompletableFuture.java:718) ~[?:?] at java.util.concurrent.CompletableFuture$Completion.run(CompletableFuture.java:482) ~[?:?] at net.minecraft.class_4014.method_18365(class_4014.java:69) ~[client-intermediary.jar:?] at net.minecraft.class_1255.method_18859(class_1255.java:156) ~[client-intermediary.jar:?] at net.minecraft.class_4093.method_18859(class_4093.java:23) ~[client-intermediary.jar:?] at net.minecraft.class_1255.method_16075(class_1255.java:130) ~[client-intermediary.jar:?] at net.minecraft.class_1255.method_18857(class_1255.java:139) ~[client-intermediary.jar:?] at net.minecraft.class_310.method_18857(class_310.java:30538) ~[client-intermediary.jar:?] at net.minecraft.class_7196.method_45694(class_7196.java:188) ~[client-intermediary.jar:?] at net.minecraft.class_7196.method_41891(class_7196.java:123) ~[client-intermediary.jar:?] at net.minecraft.class_7196.method_41899(class_7196.java:202) ~[client-intermediary.jar:?] at net.minecraft.class_7196.handler$kjj000$yeetusexperimentus$onLoadLevel(class_7196.java:2532) ~[client-intermediary.jar:?] at net.minecraft.class_7196.method_41894(class_7196.java) ~[client-intermediary.jar:?] at net.minecraft.class_528$class_4272.method_20174(class_528.java:590) ~[client-intermediary.jar:?] at net.minecraft.class_528$class_4272.method_20164(class_528.java:480) ~[client-intermediary.jar:?] at net.minecraft.class_528$class_4272.method_25402(class_528.java:402) ~[client-intermediary.jar:?] at net.minecraft.class_350.method_25402(class_350.java:327) ~[client-intermediary.jar:?] at net.minecraft.class_4069.method_25402(class_4069.java:38) ~[client-intermediary.jar:?] at net.minecraft.class_312.method_1611(class_312.java:98) ~[client-intermediary.jar:?] at net.minecraft.class_437.method_25412(class_437.java:409) ~[client-intermediary.jar:?] at net.minecraft.class_312.method_1601(class_312.java:98) ~[client-intermediary.jar:?] at net.minecraft.class_312.method_22686(class_312.java:169) ~[client-intermediary.jar:?] at net.minecraft.class_1255.execute(class_1255.java:102) ~[client-intermediary.jar:?] at net.minecraft.class_312.method_22684(class_312.java:169) ~[client-intermediary.jar:?] at org.lwjgl.glfw.GLFWMouseButtonCallbackI.callback(GLFWMouseButtonCallbackI.java:43) ~[lwjgl-glfw-3.3.1.jar:?] at org.lwjgl.system.JNI.invokeV(Native Method) ~[lwjgl-3.3.1.jar:?] at org.lwjgl.glfw.GLFW.glfwWaitEventsTimeout(GLFW.java:3474) ~[lwjgl-glfw-3.3.1.jar:?] at com.mojang.blaze3d.systems.RenderSystem.limitDisplayFPS(RenderSystem.java:237) ~[client-intermediary.jar:?] at net.minecraft.class_310.method_1523(class_310.java:1244) ~[client-intermediary.jar:?] at net.minecraft.class_310.method_1514(class_310.java:802) ~[client-intermediary.jar:?] at net.minecraft.client.main.Main.main(Main.java:250) ~[fabric-loader-0.16.9-1.20.1.jar:?] at net.fabricmc.loader.impl.game.minecraft.MinecraftGameProvider.launch(MinecraftGameProvider.java:480) ~[fabric-loader-0.16.9.jar:?] at net.fabricmc.loader.impl.launch.knot.Knot.launch(Knot.java:74) ~[fabric-loader-0.16.9.jar:?] at net.fabricmc.loader.impl.launch.knot.KnotClient.main(KnotClient.java:23) ~[fabric-loader-0.16.9.jar:?] [20:24:19] [Render thread/ERROR]: Parsing error loading recipe xp_storage:crystallized_lapis_dust com.google.gson.JsonSyntaxException: Unknown item 'xp_storage:crystallized_lapis_dust' at net.minecraft.class_1869.method_17878(class_1869.java:272) ~[client-intermediary.jar:?] at java.util.Optional.orElseThrow(Optional.java:403) ~[?:?] at net.minecraft.class_1869.method_8155(class_1869.java:272) ~[client-intermediary.jar:?] at net.minecraft.class_1869.method_35228(class_1869.java:259) ~[client-intermediary.jar:?] at net.minecraft.class_1867$class_1868.method_8142(class_1867.java:99) ~[client-intermediary.jar:?] at net.minecraft.class_1867$class_1868.method_8121(class_1867.java:87) ~[client-intermediary.jar:?] at net.minecraft.class_1863.method_17720(class_1863.java:135) ~[client-intermediary.jar:?] at net.minecraft.class_1863.method_20705(class_1863.java:56) ~[client-intermediary.jar:?] at net.minecraft.class_1863.method_18788(class_1863.java:35) ~[client-intermediary.jar:?] at net.minecraft.class_4080.method_18790(class_4080.java:13) ~[client-intermediary.jar:?] at java.util.concurrent.CompletableFuture$UniAccept.tryFire(CompletableFuture.java:718) ~[?:?] at java.util.concurrent.CompletableFuture$Completion.run(CompletableFuture.java:482) ~[?:?] at net.minecraft.class_4014.method_18365(class_4014.java:69) ~[client-intermediary.jar:?] at net.minecraft.class_1255.method_18859(class_1255.java:156) ~[client-intermediary.jar:?] at net.minecraft.class_4093.method_18859(class_4093.java:23) ~[client-intermediary.jar:?] at net.minecraft.class_1255.method_16075(class_1255.java:130) ~[client-intermediary.jar:?] at net.minecraft.class_1255.method_18857(class_1255.java:139) ~[client-intermediary.jar:?] at net.minecraft.class_310.method_18857(class_310.java:30538) ~[client-intermediary.jar:?] at net.minecraft.class_7196.method_45694(class_7196.java:188) ~[client-intermediary.jar:?] at net.minecraft.class_7196.method_41891(class_7196.java:123) ~[client-intermediary.jar:?] at net.minecraft.class_7196.method_41899(class_7196.java:202) ~[client-intermediary.jar:?] at net.minecraft.class_7196.handler$kjj000$yeetusexperimentus$onLoadLevel(class_7196.java:2532) ~[client-intermediary.jar:?] at net.minecraft.class_7196.method_41894(class_7196.java) ~[client-intermediary.jar:?] at net.minecraft.class_528$class_4272.method_20174(class_528.java:590) ~[client-intermediary.jar:?] at net.minecraft.class_528$class_4272.method_20164(class_528.java:480) ~[client-intermediary.jar:?] at net.minecraft.class_528$class_4272.method_25402(class_528.java:402) ~[client-intermediary.jar:?] at net.minecraft.class_350.method_25402(class_350.java:327) ~[client-intermediary.jar:?] at net.minecraft.class_4069.method_25402(class_4069.java:38) ~[client-intermediary.jar:?] at net.minecraft.class_312.method_1611(class_312.java:98) ~[client-intermediary.jar:?] at net.minecraft.class_437.method_25412(class_437.java:409) ~[client-intermediary.jar:?] at net.minecraft.class_312.method_1601(class_312.java:98) ~[client-intermediary.jar:?] at net.minecraft.class_312.method_22686(class_312.java:169) ~[client-intermediary.jar:?] at net.minecraft.class_1255.execute(class_1255.java:102) ~[client-intermediary.jar:?] at net.minecraft.class_312.method_22684(class_312.java:169) ~[client-intermediary.jar:?] at org.lwjgl.glfw.GLFWMouseButtonCallbackI.callback(GLFWMouseButtonCallbackI.java:43) ~[lwjgl-glfw-3.3.1.jar:?] at org.lwjgl.system.JNI.invokeV(Native Method) ~[lwjgl-3.3.1.jar:?] at org.lwjgl.glfw.GLFW.glfwWaitEventsTimeout(GLFW.java:3474) ~[lwjgl-glfw-3.3.1.jar:?] at com.mojang.blaze3d.systems.RenderSystem.limitDisplayFPS(RenderSystem.java:237) ~[client-intermediary.jar:?] at net.minecraft.class_310.method_1523(class_310.java:1244) ~[client-intermediary.jar:?] at net.minecraft.class_310.method_1514(class_310.java:802) ~[client-intermediary.jar:?] at net.minecraft.client.main.Main.main(Main.java:250) ~[fabric-loader-0.16.9-1.20.1.jar:?] at net.fabricmc.loader.impl.game.minecraft.MinecraftGameProvider.launch(MinecraftGameProvider.java:480) ~[fabric-loader-0.16.9.jar:?] at net.fabricmc.loader.impl.launch.knot.Knot.launch(Knot.java:74) ~[fabric-loader-0.16.9.jar:?] at net.fabricmc.loader.impl.launch.knot.KnotClient.main(KnotClient.java:23) ~[fabric-loader-0.16.9.jar:?] [20:24:19] [Render thread/ERROR]: Parsing error loading recipe firstaidfabric:plaster com.google.gson.JsonSyntaxException: Unknown item 'firstaidfabric:plaster' at net.minecraft.class_1869.method_17878(class_1869.java:272) ~[client-intermediary.jar:?] at java.util.Optional.orElseThrow(Optional.java:403) ~[?:?] at net.minecraft.class_1869.method_8155(class_1869.java:272) ~[client-intermediary.jar:?] at net.minecraft.class_1869.method_35228(class_1869.java:259) ~[client-intermediary.jar:?] at net.minecraft.class_1869$class_1870.method_8164(class_1869.java:293) ~[client-intermediary.jar:?] at net.minecraft.class_1869$class_1870.method_8121(class_1869.java:279) ~[client-intermediary.jar:?] at net.minecraft.class_1863.method_17720(class_1863.java:135) ~[client-intermediary.jar:?] at net.minecraft.class_1863.method_20705(class_1863.java:56) ~[client-intermediary.jar:?] at net.minecraft.class_1863.method_18788(class_1863.java:35) ~[client-intermediary.jar:?] at net.minecraft.class_4080.method_18790(class_4080.java:13) ~[client-intermediary.jar:?] at java.util.concurrent.CompletableFuture$UniAccept.tryFire(CompletableFuture.java:718) ~[?:?] at java.util.concurrent.CompletableFuture$Completion.run(CompletableFuture.java:482) ~[?:?] at net.minecraft.class_4014.method_18365(class_4014.java:69) ~[client-intermediary.jar:?] at net.minecraft.class_1255.method_18859(class_1255.java:156) ~[client-intermediary.jar:?] at net.minecraft.class_4093.method_18859(class_4093.java:23) ~[client-intermediary.jar:?] at net.minecraft.class_1255.method_16075(class_1255.java:130) ~[client-intermediary.jar:?] at net.minecraft.class_1255.method_18857(class_1255.java:139) ~[client-intermediary.jar:?] at net.minecraft.class_310.method_18857(class_310.java:30538) ~[client-intermediary.jar:?] at net.minecraft.class_7196.method_45694(class_7196.java:188) ~[client-intermediary.jar:?] at net.minecraft.class_7196.method_41891(class_7196.java:123) ~[client-intermediary.jar:?] at net.minecraft.class_7196.method_41899(class_7196.java:202) ~[client-intermediary.jar:?] at net.minecraft.class_7196.handler$kjj000$yeetusexperimentus$onLoadLevel(class_7196.java:2532) ~[client-intermediary.jar:?] at net.minecraft.class_7196.method_41894(class_7196.java) ~[client-intermediary.jar:?] at net.minecraft.class_528$class_4272.method_20174(class_528.java:590) ~[client-intermediary.jar:?] at net.minecraft.class_528$class_4272.method_20164(class_528.java:480) ~[client-intermediary.jar:?] at net.minecraft.class_528$class_4272.method_25402(class_528.java:402) ~[client-intermediary.jar:?] at net.minecraft.class_350.method_25402(class_350.java:327) ~[client-intermediary.jar:?] at net.minecraft.class_4069.method_25402(class_4069.java:38) ~[client-intermediary.jar:?] at net.minecraft.class_312.method_1611(class_312.java:98) ~[client-intermediary.jar:?] at net.minecraft.class_437.method_25412(class_437.java:409) ~[client-intermediary.jar:?] at net.minecraft.class_312.method_1601(class_312.java:98) ~[client-intermediary.jar:?] at net.minecraft.class_312.method_22686(class_312.java:169) ~[client-intermediary.jar:?] at net.minecraft.class_1255.execute(class_1255.java:102) ~[client-intermediary.jar:?] at net.minecraft.class_312.method_22684(class_312.java:169) ~[client-intermediary.jar:?] at org.lwjgl.glfw.GLFWMouseButtonCallbackI.callback(GLFWMouseButtonCallbackI.java:43) ~[lwjgl-glfw-3.3.1.jar:?] at org.lwjgl.system.JNI.invokeV(Native Method) ~[lwjgl-3.3.1.jar:?] at org.lwjgl.glfw.GLFW.glfwWaitEventsTimeout(GLFW.java:3474) ~[lwjgl-glfw-3.3.1.jar:?] at com.mojang.blaze3d.systems.RenderSystem.limitDisplayFPS(RenderSystem.java:237) ~[client-intermediary.jar:?] at net.minecraft.class_310.method_1523(class_310.java:1244) ~[client-intermediary.jar:?] at net.minecraft.class_310.method_1514(class_310.java:802) ~[client-intermediary.jar:?] at net.minecraft.client.main.Main.main(Main.java:250) ~[fabric-loader-0.16.9-1.20.1.jar:?] at net.fabricmc.loader.impl.game.minecraft.MinecraftGameProvider.launch(MinecraftGameProvider.java:480) ~[fabric-loader-0.16.9.jar:?] at net.fabricmc.loader.impl.launch.knot.Knot.launch(Knot.java:74) ~[fabric-loader-0.16.9.jar:?] at net.fabricmc.loader.impl.launch.knot.KnotClient.main(KnotClient.java:23) ~[fabric-loader-0.16.9.jar:?] [20:24:19] [Render thread/ERROR]: Parsing error loading recipe firstaidfabric:morphine com.google.gson.JsonSyntaxException: Unknown item 'firstaidfabric:morphine' at net.minecraft.class_1869.method_17878(class_1869.java:272) ~[client-intermediary.jar:?] at java.util.Optional.orElseThrow(Optional.java:403) ~[?:?] at net.minecraft.class_1869.method_8155(class_1869.java:272) ~[client-intermediary.jar:?] at net.minecraft.class_1869.method_35228(class_1869.java:259) ~[client-intermediary.jar:?] at net.minecraft.class_1869$class_1870.method_8164(class_1869.java:293) ~[client-intermediary.jar:?] at net.minecraft.class_1869$class_1870.method_8121(class_1869.java:279) ~[client-intermediary.jar:?] at net.minecraft.class_1863.method_17720(class_1863.java:135) ~[client-intermediary.jar:?] at net.minecraft.class_1863.method_20705(class_1863.java:56) ~[client-intermediary.jar:?] at net.minecraft.class_1863.method_18788(class_1863.java:35) ~[client-intermediary.jar:?] at net.minecraft.class_4080.method_18790(class_4080.java:13) ~[client-intermediary.jar:?] at java.util.concurrent.CompletableFuture$UniAccept.tryFire(CompletableFuture.java:718) ~[?:?] at java.util.concurrent.CompletableFuture$Completion.run(CompletableFuture.java:482) ~[?:?] at net.minecraft.class_4014.method_18365(class_4014.java:69) ~[client-intermediary.jar:?] at net.minecraft.class_1255.method_18859(class_1255.java:156) ~[client-intermediary.jar:?] at net.minecraft.class_4093.method_18859(class_4093.java:23) ~[client-intermediary.jar:?] at net.minecraft.class_1255.method_16075(class_1255.java:130) ~[client-intermediary.jar:?] at net.minecraft.class_1255.method_18857(class_1255.java:139) ~[client-intermediary.jar:?] at net.minecraft.class_310.method_18857(class_310.java:30538) ~[client-intermediary.jar:?] at net.minecraft.class_7196.method_45694(class_7196.java:188) ~[client-intermediary.jar:?] at net.minecraft.class_7196.method_41891(class_7196.java:123) ~[client-intermediary.jar:?] at net.minecraft.class_7196.method_41899(class_7196.java:202) ~[client-intermediary.jar:?] at net.minecraft.class_7196.handler$kjj000$yeetusexperimentus$onLoadLevel(class_7196.java:2532) ~[client-intermediary.jar:?] at net.minecraft.class_7196.method_41894(class_7196.java) ~[client-intermediary.jar:?] at net.minecraft.class_528$class_4272.method_20174(class_528.java:590) ~[client-intermediary.jar:?] at net.minecraft.class_528$class_4272.method_20164(class_528.java:480) ~[client-intermediary.jar:?] at net.minecraft.class_528$class_4272.method_25402(class_528.java:402) ~[client-intermediary.jar:?] at net.minecraft.class_350.method_25402(class_350.java:327) ~[client-intermediary.jar:?] at net.minecraft.class_4069.method_25402(class_4069.java:38) ~[client-intermediary.jar:?] at net.minecraft.class_312.method_1611(class_312.java:98) ~[client-intermediary.jar:?] at net.minecraft.class_437.method_25412(class_437.java:409) ~[client-intermediary.jar:?] at net.minecraft.class_312.method_1601(class_312.java:98) ~[client-intermediary.jar:?] at net.minecraft.class_312.method_22686(class_312.java:169) ~[client-intermediary.jar:?] at net.minecraft.class_1255.execute(class_1255.java:102) ~[client-intermediary.jar:?] at net.minecraft.class_312.method_22684(class_312.java:169) ~[client-intermediary.jar:?] at org.lwjgl.glfw.GLFWMouseButtonCallbackI.callback(GLFWMouseButtonCallbackI.java:43) ~[lwjgl-glfw-3.3.1.jar:?] at org.lwjgl.system.JNI.invokeV(Native Method) ~[lwjgl-3.3.1.jar:?] at org.lwjgl.glfw.GLFW.glfwWaitEventsTimeout(GLFW.java:3474) ~[lwjgl-glfw-3.3.1.jar:?] at com.mojang.blaze3d.systems.RenderSystem.limitDisplayFPS(RenderSystem.java:237) ~[client-intermediary.jar:?] at net.minecraft.class_310.method_1523(class_310.java:1244) ~[client-intermediary.jar:?] at net.minecraft.class_310.method_1514(class_310.java:802) ~[client-intermediary.jar:?] at net.minecraft.client.main.Main.main(Main.java:250) ~[fabric-loader-0.16.9-1.20.1.jar:?] at net.fabricmc.loader.impl.game.minecraft.MinecraftGameProvider.launch(MinecraftGameProvider.java:480) ~[fabric-loader-0.16.9.jar:?] at net.fabricmc.loader.impl.launch.knot.Knot.launch(Knot.java:74) ~[fabric-loader-0.16.9.jar:?] at net.fabricmc.loader.impl.launch.knot.KnotClient.main(KnotClient.java:23) ~[fabric-loader-0.16.9.jar:?] [20:24:19] [Render thread/ERROR]: Parsing error loading recipe bakingdelight:dough1 com.google.gson.JsonSyntaxException: Unknown item 'create:dough' at net.minecraft.class_1869.method_17878(class_1869.java:272) ~[client-intermediary.jar:?] at java.util.Optional.orElseThrow(Optional.java:403) ~[?:?] at net.minecraft.class_1869.method_8155(class_1869.java:272) ~[client-intermediary.jar:?] at net.minecraft.class_1869.method_35228(class_1869.java:259) ~[client-intermediary.jar:?] at net.minecraft.class_1867$class_1868.method_8142(class_1867.java:99) ~[client-intermediary.jar:?] at net.minecraft.class_1867$class_1868.method_8121(class_1867.java:87) ~[client-intermediary.jar:?] at net.minecraft.class_1863.method_17720(class_1863.java:135) ~[client-intermediary.jar:?] at net.minecraft.class_1863.method_20705(class_1863.java:56) ~[client-intermediary.jar:?] at net.minecraft.class_1863.method_18788(class_1863.java:35) ~[client-intermediary.jar:?] at net.minecraft.class_4080.method_18790(class_4080.java:13) ~[client-intermediary.jar:?] at java.util.concurrent.CompletableFuture$UniAccept.tryFire(CompletableFuture.java:718) ~[?:?] at java.util.concurrent.CompletableFuture$Completion.run(CompletableFuture.java:482) ~[?:?] at net.minecraft.class_4014.method_18365(class_4014.java:69) ~[client-intermediary.jar:?] at net.minecraft.class_1255.method_18859(class_1255.java:156) ~[client-intermediary.jar:?] at net.minecraft.class_4093.method_18859(class_4093.java:23) ~[client-intermediary.jar:?] at net.minecraft.class_1255.method_16075(class_1255.java:130) ~[client-intermediary.jar:?] at net.minecraft.class_1255.method_18857(class_1255.java:139) ~[client-intermediary.jar:?] at net.minecraft.class_310.method_18857(class_310.java:30538) ~[client-intermediary.jar:?] at net.minecraft.class_7196.method_45694(class_7196.java:188) ~[client-intermediary.jar:?] at net.minecraft.class_7196.method_41891(class_7196.java:123) ~[client-intermediary.jar:?] at net.minecraft.class_7196.method_41899(class_7196.java:202) ~[client-intermediary.jar:?] at net.minecraft.class_7196.handler$kjj000$yeetusexperimentus$onLoadLevel(class_7196.java:2532) ~[client-intermediary.jar:?] at net.minecraft.class_7196.method_41894(class_7196.java) ~[client-intermediary.jar:?] at net.minecraft.class_528$class_4272.method_20174(class_528.java:590) ~[client-intermediary.jar:?] at net.minecraft.class_528$class_4272.method_20164(class_528.java:480) ~[client-intermediary.jar:?] at net.minecraft.class_528$class_4272.method_25402(class_528.java:402) ~[client-intermediary.jar:?] at net.minecraft.class_350.method_25402(class_350.java:327) ~[client-intermediary.jar:?] at net.minecraft.class_4069.method_25402(class_4069.java:38) ~[client-intermediary.jar:?] at net.minecraft.class_312.method_1611(class_312.java:98) ~[client-intermediary.jar:?] at net.minecraft.class_437.method_25412(class_437.java:409) ~[client-intermediary.jar:?] at net.minecraft.class_312.method_1601(class_312.java:98) ~[client-intermediary.jar:?] at net.minecraft.class_312.method_22686(class_312.java:169) ~[client-intermediary.jar:?] at net.minecraft.class_1255.execute(class_1255.java:102) ~[client-intermediary.jar:?] at net.minecraft.class_312.method_22684(class_312.java:169) ~[client-intermediary.jar:?] at org.lwjgl.glfw.GLFWMouseButtonCallbackI.callback(GLFWMouseButtonCallbackI.java:43) ~[lwjgl-glfw-3.3.1.jar:?] at org.lwjgl.system.JNI.invokeV(Native Method) ~[lwjgl-3.3.1.jar:?] at org.lwjgl.glfw.GLFW.glfwWaitEventsTimeout(GLFW.java:3474) ~[lwjgl-glfw-3.3.1.jar:?] at com.mojang.blaze3d.systems.RenderSystem.limitDisplayFPS(RenderSystem.java:237) ~[client-intermediary.jar:?] at net.minecraft.class_310.method_1523(class_310.java:1244) ~[client-intermediary.jar:?] at net.minecraft.class_310.method_1514(class_310.java:802) ~[client-intermediary.jar:?] at net.minecraft.client.main.Main.main(Main.java:250) ~[fabric-loader-0.16.9-1.20.1.jar:?] at net.fabricmc.loader.impl.game.minecraft.MinecraftGameProvider.launch(MinecraftGameProvider.java:480) ~[fabric-loader-0.16.9.jar:?] at net.fabricmc.loader.impl.launch.knot.Knot.launch(Knot.java:74) ~[fabric-loader-0.16.9.jar:?] at net.fabricmc.loader.impl.launch.knot.KnotClient.main(KnotClient.java:23) ~[fabric-loader-0.16.9.jar:?] [20:24:19] [Render thread/ERROR]: Parsing error loading recipe bakingdelight:dough2 com.google.gson.JsonSyntaxException: Unknown item 'create:dough' at net.minecraft.class_1869.method_17878(class_1869.java:272) ~[client-intermediary.jar:?] at java.util.Optional.orElseThrow(Optional.java:403) ~[?:?] at net.minecraft.class_1869.method_8155(class_1869.java:272) ~[client-intermediary.jar:?] at net.minecraft.class_1856.method_8107(class_1856.java:160) ~[client-intermediary.jar:?] at net.minecraft.class_1856.method_8102(class_1856.java:143) ~[client-intermediary.jar:?] at net.minecraft.class_1867$class_1868.method_8144(class_1867.java:107) ~[client-intermediary.jar:?] at net.minecraft.class_1867$class_1868.method_8142(class_1867.java:92) ~[client-intermediary.jar:?] at net.minecraft.class_1867$class_1868.method_8121(class_1867.java:87) ~[client-intermediary.jar:?] at net.minecraft.class_1863.method_17720(class_1863.java:135) ~[client-intermediary.jar:?] at net.minecraft.class_1863.method_20705(class_1863.java:56) ~[client-intermediary.jar:?] at net.minecraft.class_1863.method_18788(class_1863.java:35) ~[client-intermediary.jar:?] at net.minecraft.class_4080.method_18790(class_4080.java:13) ~[client-intermediary.jar:?] at java.util.concurrent.CompletableFuture$UniAccept.tryFire(CompletableFuture.java:718) ~[?:?] at java.util.concurrent.CompletableFuture$Completion.run(CompletableFuture.java:482) ~[?:?] at net.minecraft.class_4014.method_18365(class_4014.java:69) ~[client-intermediary.jar:?] at net.minecraft.class_1255.method_18859(class_1255.java:156) ~[client-intermediary.jar:?] at net.minecraft.class_4093.method_18859(class_4093.java:23) ~[client-intermediary.jar:?] at net.minecraft.class_1255.method_16075(class_1255.java:130) ~[client-intermediary.jar:?] at net.minecraft.class_1255.method_18857(class_1255.java:139) ~[client-intermediary.jar:?] at net.minecraft.class_310.method_18857(class_310.java:30538) ~[client-intermediary.jar:?] at net.minecraft.class_7196.method_45694(class_7196.java:188) ~[client-intermediary.jar:?] at net.minecraft.class_7196.method_41891(class_7196.java:123) ~[client-intermediary.jar:?] at net.minecraft.class_7196.method_41899(class_7196.java:202) ~[client-intermediary.jar:?] at net.minecraft.class_7196.handler$kjj000$yeetusexperimentus$onLoadLevel(class_7196.java:2532) ~[client-intermediary.jar:?] at net.minecraft.class_7196.method_41894(class_7196.java) ~[client-intermediary.jar:?] at net.minecraft.class_528$class_4272.method_20174(class_528.java:590) ~[client-intermediary.jar:?] at net.minecraft.class_528$class_4272.method_20164(class_528.java:480) ~[client-intermediary.jar:?] at net.minecraft.class_528$class_4272.method_25402(class_528.java:402) ~[client-intermediary.jar:?] at net.minecraft.class_350.method_25402(class_350.java:327) ~[client-intermediary.jar:?] at net.minecraft.class_4069.method_25402(class_4069.java:38) ~[client-intermediary.jar:?] at net.minecraft.class_312.method_1611(class_312.java:98) ~[client-intermediary.jar:?] at net.minecraft.class_437.method_25412(class_437.java:409) ~[client-intermediary.jar:?] at net.minecraft.class_312.method_1601(class_312.java:98) ~[client-intermediary.jar:?] at net.minecraft.class_312.method_22686(class_312.java:169) ~[client-intermediary.jar:?] at net.minecraft.class_1255.execute(class_1255.java:102) ~[client-intermediary.jar:?] at net.minecraft.class_312.method_22684(class_312.java:169) ~[client-intermediary.jar:?] at org.lwjgl.glfw.GLFWMouseButtonCallbackI.callback(GLFWMouseButtonCallbackI.java:43) ~[lwjgl-glfw-3.3.1.jar:?] at org.lwjgl.system.JNI.invokeV(Native Method) ~[lwjgl-3.3.1.jar:?] at org.lwjgl.glfw.GLFW.glfwWaitEventsTimeout(GLFW.java:3474) ~[lwjgl-glfw-3.3.1.jar:?] at com.mojang.blaze3d.systems.RenderSystem.limitDisplayFPS(RenderSystem.java:237) ~[client-intermediary.jar:?] at net.minecraft.class_310.method_1523(class_310.java:1244) ~[client-intermediary.jar:?] at net.minecraft.class_310.method_1514(class_310.java:802) ~[client-intermediary.jar:?] at net.minecraft.client.main.Main.main(Main.java:250) ~[fabric-loader-0.16.9-1.20.1.jar:?] at net.fabricmc.loader.impl.game.minecraft.MinecraftGameProvider.launch(MinecraftGameProvider.java:480) ~[fabric-loader-0.16.9.jar:?] at net.fabricmc.loader.impl.launch.knot.Knot.launch(Knot.java:74) ~[fabric-loader-0.16.9.jar:?] at net.fabricmc.loader.impl.launch.knot.KnotClient.main(KnotClient.java:23) ~[fabric-loader-0.16.9.jar:?] [20:24:19] [Render thread/INFO]: Loaded 36 recipes [20:24:19] [Render thread/ERROR]: Failed to load function watching:check java.util.concurrent.CompletionException: java.lang.IllegalArgumentException: Whilst parsing command on line 1: Unknown or incomplete command, see below for error at position 0: <--[HERE] at java.util.concurrent.CompletableFuture.encodeThrowable(CompletableFuture.java:315) ~[?:?] at java.util.concurrent.CompletableFuture.completeThrowable(CompletableFuture.java:320) ~[?:?] at java.util.concurrent.CompletableFuture$AsyncSupply.run(CompletableFuture.java:1770) ~[?:?] at java.util.concurrent.CompletableFuture$AsyncSupply.exec(CompletableFuture.java:1760) ~[?:?] at java.util.concurrent.ForkJoinTask.doExec(ForkJoinTask.java:373) ~[?:?] at java.util.concurrent.ForkJoinPool$WorkQueue.topLevelExec(ForkJoinPool.java:1182) ~[?:?] at java.util.concurrent.ForkJoinPool.scan(ForkJoinPool.java:1655) ~[?:?] at java.util.concurrent.ForkJoinPool.runWorker(ForkJoinPool.java:1622) ~[?:?] at java.util.concurrent.ForkJoinWorkerThread.run(ForkJoinWorkerThread.java:165) ~[?:?] Caused by: java.lang.IllegalArgumentException: Whilst parsing command on line 1: Unknown or incomplete command, see below for error at position 0: <--[HERE] at net.minecraft.class_2158.method_9195(class_2158.java:63) ~[client-intermediary.jar:?] at net.minecraft.class_5349.method_29451(class_5349.java:83) ~[client-intermediary.jar:?] at java.util.concurrent.CompletableFuture$AsyncSupply.run(CompletableFuture.java:1768) ~[?:?] ... 6 more [20:24:19] [Render thread/ERROR]: Parsing error loading custom advancement darkbosses:old_champions_remains_boss: Expected item to be an item, was unknown string 'soulsweapons:draugr' [20:24:20] [Render thread/ERROR]: Parsing error loading custom advancement darkbosses:corrupted_champion_boss: Expected item to be an item, was unknown string 'graveyard:purple_bone_staff' [20:24:20] [Render thread/ERROR]: Parsing error loading custom advancement darkbosses:night_prowler_boss: Expected item to be an item, was unknown string 'soulsweapons:soul_reaper' [20:24:20] [Render thread/ERROR]: Parsing error loading custom advancement darkbosses:fallen_icon_boss: Expected item to be an item, was unknown string 'soulsweapons:moonlight_greatsword' [20:24:20] [Render thread/ERROR]: Parsing error loading custom advancement darkbosses:day_stalker_boss: Expected item to be an item, was unknown string 'soulsweapons:dawnbreaker' [20:24:20] [Render thread/ERROR]: Parsing error loading custom advancement darkbosses:decaying_king_boss: Expected item to be an item, was unknown string 'soulsweapons:darkin_blade' [20:24:20] [Render thread/ERROR]: Parsing error loading custom advancement darkbosses:frenzied_shade_boss: Expected item to be an item, was unknown string 'soulsweapons:essence_of_eventide' [20:24:20] [Render thread/ERROR]: Parsing error loading custom advancement darkbosses:monarch_of_chaos_boss: Expected item to be an item, was unknown string 'soulsweapons:chaos_orb' [20:24:20] [Render thread/ERROR]: Parsing error loading custom advancement darkbosses:magus_boss: Expected item to be an item, was unknown string 'spellbladenext:prismatic' [20:24:20] [Render thread/ERROR]: Parsing error loading custom advancement darkbosses:info_graveyard_bosses: Expected item to be an item, was unknown string 'graveyard:soul_fire_brazier' [20:24:20] [Render thread/ERROR]: Parsing error loading custom advancement darkbosses:info_souls_bosses: Expected item to be an item, was unknown string 'soulsweapons:lord_soul_dark' [20:24:20] [Render thread/ERROR]: Parsing error loading custom advancement darkbosses:info_spellblade_bosses: Expected item to be an item, was unknown string 'spellbladenext:flaming_falchion' [20:24:20] [Render thread/ERROR]: Parsing error loading custom advancement darkbosses:returning_knight_boss: Expected item to be an item, was unknown string 'soulsweapons:altar_block' [20:24:20] [Render thread/INFO]: Loaded 4555 advancements [20:24:20] [Render thread/INFO]: Loaded 5 diet groups [20:24:20] [Render thread/INFO]: Loaded 1 diet suites [20:24:21] [Render thread/INFO]: Wrong common config version 1 for mod Ice And Fire! Automatically use version 2 and backup old one. [20:24:21] [Render thread/INFO]: Successfully reload 2 server config(s). [20:24:21] [Render thread/INFO]: [Fabric Seasons] Successfully loaded 33 custom crop configs. [20:24:21] [Render thread/INFO]: Loaded 144 recipes [20:24:21] [Render thread/INFO]: [majruszlibrary.json] Reloading configuration file took 2 milliseconds [20:24:21] [Render thread/INFO]: [majruszsdifficulty.json] Reloading configuration file took 16 milliseconds [20:24:21] [Render thread/INFO]: Injecting flora into Terra biomes... [20:24:21] [Render thread/WARN]: Not all defined tags for registry ResourceKey[minecraft:root / minecraft:worldgen/biome] are present in data pack: forsaken:has_structures/wells/pit/cobble [20:24:21] [Render thread/INFO]: Loaded 78 block growths configurations [20:24:21] [Render thread/INFO]: Loaded 14 liquid generators configurations [20:24:21] [Render thread/INFO]: Doing preset tag garbage.... [20:24:21] [Render thread/INFO]: Doing biome tag garbage.... [20:24:21] [Render thread/INFO]: Injecting flora into Terra biomes... [20:24:21] [Render thread/WARN]: Supressing EXPERIMENTAL level lifecycle [20:24:21] [Render thread/INFO]: [ETF]: emissive suffixes loaded: {_e}. [20:24:21] [Render thread/WARN]: Adding spell_power:fire to saved/remote registry. [20:24:21] [Render thread/WARN]: Adding spell_power:frost to saved/remote registry. [20:24:21] [Render thread/WARN]: Adding spell_power:arcane to saved/remote registry. [20:24:22] [Render thread/INFO]: Registered region minecraft:overworld to index 0 for type OVERWORLD [20:24:22] [Render thread/INFO]: Registered region minecraft:nether to index 0 for type NETHER [20:24:22] [Render thread/INFO]: Initialized TerraBlender biomes for level stem minecraft:the_nether [20:24:22] [Render thread/INFO]: Initialized TerraBlender biomes for level stem minecraft:overworld [20:24:22] [Render thread/INFO]: Applied 9127 biome modifications to 580 of 580 new biomes in 360.4 ms [20:24:22] [Server thread/INFO]: Loading server config for easyanvils [20:24:23] [Server thread/INFO]: Loading server config for easymagic [20:24:23] [Server thread/INFO]: Loading server config for mutantmonsters [20:24:23] [Server thread/INFO]: Loading server config for pickupnotifier [20:24:23] [Server thread/INFO]: Loading server config for puzzlesapi [20:24:23] [Server thread/INFO]: Async Locator -> Starting locating executor service with thread pool size of 1 [20:24:23] [Server thread/INFO]: Loading server configs... [20:24:23] [Server thread/INFO]: Starting background profiler... [20:24:23] [Server thread/INFO]: The async-profiler engine is not supported for your os/arch (windows10/amd64), so the built-in Java engine will be used instead. [20:24:23] [Server thread/INFO]: Starting integrated minecraft server version 1.20.1 [20:24:23] [Server thread/INFO]: Generating keypair [20:24:23] [Server thread/INFO]: Enforcing safe world random access [20:24:23] [pool-6-thread-1/INFO]: Reloading server config for easyanvils [20:24:23] [pool-6-thread-1/INFO]: Reloading server config for easymagic [20:24:23] [pool-6-thread-1/INFO]: Reloading server config for mutantmonsters [20:24:23] [pool-6-thread-1/INFO]: Reloading server config for pickupnotifier [20:24:23] [pool-6-thread-1/INFO]: Reloading server config for puzzlesapi [20:24:23] [Server thread/WARN]: @Redirect conflict. Skipping smoothchunk.mixins.json:ChunkMapSlowUnload from mod smoothchunk->@Redirect::getSize(Ljava/util/Queue;)I with priority 1000, already redirected by c2me-opts-scheduling.mixins.json:general_overheads.MixinThreadedAnvilChunkStorage from mod c2me-opts-scheduling->@Redirect::redirectUnloadSize(Ljava/util/Queue;)I with priority 1100 [20:24:23] [Server thread/ERROR]: Encountered an unexpected exception java.lang.RuntimeException: Mixin transformation of net.minecraft.class_3898 failed at net.fabricmc.loader.impl.launch.knot.KnotClassDelegate.getPostMixinClassByteArray(KnotClassDelegate.java:427) ~[fabric-loader-0.16.9.jar:?] at net.fabricmc.loader.impl.launch.knot.KnotClassDelegate.tryLoadClass(KnotClassDelegate.java:323) ~[fabric-loader-0.16.9.jar:?] at net.fabricmc.loader.impl.launch.knot.KnotClassDelegate.loadClass(KnotClassDelegate.java:218) ~[fabric-loader-0.16.9.jar:?] at net.fabricmc.loader.impl.launch.knot.KnotClassLoader.loadClass(KnotClassLoader.java:119) ~[fabric-loader-0.16.9.jar:?] at java.lang.ClassLoader.loadClass(ClassLoader.java:525) ~[?:?] at net.minecraft.class_3215.<init>(class_3215.java:87) ~[client-intermediary.jar:?] at net.minecraft.class_3218.<init>(class_3218.java:231) ~[client-intermediary.jar:?] at net.minecraft.server.MinecraftServer.method_3786(MinecraftServer.java:359) ~[client-intermediary.jar:?] at net.minecraft.server.MinecraftServer.method_3735(MinecraftServer.java:324) ~[client-intermediary.jar:?] at net.minecraft.class_1132.method_3823(class_1132.java:69) ~[client-intermediary.jar:?] at net.minecraft.server.MinecraftServer.method_29741(MinecraftServer.java:646) ~[client-intermediary.jar:?] at net.minecraft.server.MinecraftServer.method_29739(MinecraftServer.java:265) ~[client-intermediary.jar:?] at java.lang.Thread.run(Thread.java:833) ~[?:?] Caused by: org.spongepowered.asm.mixin.transformer.throwables.MixinTransformerError: An unexpected critical error was encountered at org.spongepowered.asm.mixin.transformer.MixinProcessor.applyMixins(MixinProcessor.java:392) ~[sponge-mixin-0.15.4+mixin.0.8.7.jar:0.15.4+mixin.0.8.7] at org.spongepowered.asm.mixin.transformer.MixinTransformer.transformClass(MixinTransformer.java:234) ~[sponge-mixin-0.15.4+mixin.0.8.7.jar:0.15.4+mixin.0.8.7] at org.spongepowered.asm.mixin.transformer.MixinTransformer.transformClassBytes(MixinTransformer.java:202) ~[sponge-mixin-0.15.4+mixin.0.8.7.jar:0.15.4+mixin.0.8.7] at net.fabricmc.loader.impl.launch.knot.KnotClassDelegate.getPostMixinClassByteArray(KnotClassDelegate.java:422) ~[fabric-loader-0.16.9.jar:?] ... 12 more Caused by: org.spongepowered.asm.mixin.injection.throwables.InjectionError: Critical injection failure: Redirector getSize(Ljava/util/Queue;)I in smoothchunk.mixins.json:ChunkMapSlowUnload from mod smoothchunk failed injection check, (0/1) succeeded. Scanned 0 target(s). Using refmap smoothchunk-fabric-refmap.json at org.spongepowered.asm.mixin.injection.struct.InjectionInfo.postInject(InjectionInfo.java:531) ~[sponge-mixin-0.15.4+mixin.0.8.7.jar:0.15.4+mixin.0.8.7] at org.spongepowered.asm.mixin.transformer.MixinTargetContext.applyInjections(MixinTargetContext.java:1490) ~[sponge-mixin-0.15.4+mixin.0.8.7.jar:0.15.4+mixin.0.8.7] at org.spongepowered.asm.mixin.transformer.MixinApplicatorStandard.applyInjections(MixinApplicatorStandard.java:752) ~[sponge-mixin-0.15.4+mixin.0.8.7.jar:0.15.4+mixin.0.8.7] at org.spongepowered.asm.mixin.transformer.MixinApplicatorStandard.applyMixin(MixinApplicatorStandard.java:330) ~[sponge-mixin-0.15.4+mixin.0.8.7.jar:0.15.4+mixin.0.8.7] at org.spongepowered.asm.mixin.transformer.MixinApplicatorStandard.apply(MixinApplicatorStandard.java:246) ~[sponge-mixin-0.15.4+mixin.0.8.7.jar:0.15.4+mixin.0.8.7] at org.spongepowered.asm.mixin.transformer.TargetClassContext.apply(TargetClassContext.java:437) ~[sponge-mixin-0.15.4+mixin.0.8.7.jar:0.15.4+mixin.0.8.7] at org.spongepowered.asm.mixin.transformer.TargetClassContext.applyMixins(TargetClassContext.java:418) ~[sponge-mixin-0.15.4+mixin.0.8.7.jar:0.15.4+mixin.0.8.7] at org.spongepowered.asm.mixin.transformer.MixinProcessor.applyMixins(MixinProcessor.java:363) ~[sponge-mixin-0.15.4+mixin.0.8.7.jar:0.15.4+mixin.0.8.7] at org.spongepowered.asm.mixin.transformer.MixinTransformer.transformClass(MixinTransformer.java:234) ~[sponge-mixin-0.15.4+mixin.0.8.7.jar:0.15.4+mixin.0.8.7] at org.spongepowered.asm.mixin.transformer.MixinTransformer.transformClassBytes(MixinTransformer.java:202) ~[sponge-mixin-0.15.4+mixin.0.8.7.jar:0.15.4+mixin.0.8.7] at net.fabricmc.loader.impl.launch.knot.KnotClassDelegate.getPostMixinClassByteArray(KnotClassDelegate.java:422) ~[fabric-loader-0.16.9.jar:?] ... 12 more [20:24:23] [Server thread/WARN]: Supressing EXPERIMENTAL level lifecycle [20:24:23] [Server thread/ERROR]: This crash report has been saved to: C:\Users\cauaf\curseforge\minecraft\Instances\Explorat (1)\crash-reports\crash-2025-01-16_20.24.23-server.txt [20:24:23] [Server thread/INFO]: Async Locator -> Shutting down locating executor service [20:24:23] [Server thread/INFO]: Stopping server [20:24:23] [Server thread/INFO]: Saving players [20:24:23] [Server thread/INFO]: Saving worlds [20:24:23] [Server thread/ERROR]: Exception stopping the server java.lang.NullPointerException: Cannot invoke "net.minecraft.class_3218.method_8621()" because "$$5" is null at net.minecraft.server.MinecraftServer.method_3723(MinecraftServer.java:541) ~[client-intermediary.jar:?] at net.minecraft.server.MinecraftServer.method_3782(MinecraftServer.java:602) ~[client-intermediary.jar:?] at net.minecraft.class_1132.method_3782(class_1132.java:209) ~[client-intermediary.jar:?] at net.minecraft.server.MinecraftServer.method_29741(MinecraftServer.java:703) ~[client-intermediary.jar:?] at net.minecraft.server.MinecraftServer.method_29739(MinecraftServer.java:265) ~[client-intermediary.jar:?] at java.lang.Thread.run(Thread.java:833) ~[?:?]
  15. Forge version: 54.1.0 Minecraft version: 1.21.4 Downloads: Changelog: (Direct) Installer: (AdFocus) (Direct) MDK: (AdFocus) (Direct) Downloads page Intro: Ladies and gentlemen, the time has arrived. Today, after over half a year, we are finally ready to begin stabilizing Forge for the 1.21 family of Minecraft versions. Today, please welcome our very first recommended build for 1.21.4: Forge 54.1! It's been a rather eventful past handful of months. Forge got a lot of new cleanups and project restructurings, the Forge core team has a new member (me!), and we sent 2024 off with a lengthy new forum post: Fresh from the Forge 2024. As I've stated there, we've had a lot of new changes brought into Forge, especially for 1.21, and we have some new things we're still in the process of cooking that will benefit all Forge projects and the overall build process as a whole. Along with the stabilization of Minecraft 1.21, I'd like to make clear that we will not be dropping active support for the 1.20 family of versions. As stated in our forum post covering version support, active support will always cover the last two major versions of Minecraft. Therefore, until Minecraft 1.22 is released, 1.20.6, 1.20.4, and even 1.20.1 will continue to be covered under active support. However, when they inevitably do drop from active support to legacy support, they won't stop existing for us! While not the active priority, we will still to be able to address issues, bring backports, and accept PRs to older versions of Forge just like how we have done so for older versions of Forge, including 1.19.4 and 1.19.2. Even 1.18.2, which recently had its first recommended build in two years! Thank you for reading and sticking around! We hope you will enjoy what we have for you fresh from the Forge in Minecraft 1.21.4. New: Change tick event to have pre/post classes (#9890) Make ForgeSpawnEgg assume color is opaque if alpha is set to 0 Fixes "invisible" spawn eggs by default, but still allows modders to specify partial transparency. Add support for named sub-capabilities Make HangingSignBlockEntity useable with custom BlockEntityTypes (#10038) Use the new fire() and Result#isAllowed/isDenied/isDefault methods from EventBus (#10028) Bump Mixin to 0.8.7 Patch CropBlock to use instanceOf FarmBlock check instead of hard coding to Blocks.FARMLAND (#10044) Add a way to render tooltips from Formatted text and TooltipComponents elements (#10056) Add level access to Item.TooltipContext if available Mod loading cleanup and optimizations (#10052) Add a few Method Helpers onto ResourceKey to make getting Data Driven Entries Simpler (#10071) Fire `OnDatapackSyncEvent` when a player joins a server (#10076, #10171) Optionally supply FMLJavaModLoadingContext as a param to mod constructors (#10074) Before: public MyMod() { // getting the mod bus - uses FMLJavaModLoadingContext var modBus = FMLJavaModLoadingContext.get().getModEventBus(); // registering configs - uses ModLoadingContext ModLoadingContext.get().registerConfig(/* ... */); // ... } After: public MyMod(FMLJavaModLoadingContext context) { // getting the mod bus var modBus = context.getModEventBus(); // registering configs context.registerConfig(/* ... */); // ... } Add and fire SystemMessageReceivedEvent Replaces ClientChatReceivedEvent.System which was not fired due to Mojang changing ChatType to a registry. Sync component registry ids Stacktraces now have the transformers displayed after itself, and not included with each element Implement the de-facto common tags, add many new Forge tags while retaining backwards compatibility (forum post, #9955, #10126, #10135, #10137, #10335) Bump CoreMods to 5.2.4, which adds new features such as ES6, better documentation, and long-awaited bug fixes (changelog, #10145, #10156, #10262) Simplify memory usage display on loading screen (#10193) Deprecate `@ObjectHolder` and skip processing internal classes which do not use it (#10195) Skip processing Forge classes in `RuntimeEnumExtender` (#10197) Skip processing Forge classes in `RuntimeDistCleaner` (#10199) Skip processing Vanilla classes in the `CapabilityTokenSubclass` transformer (#10196) Simplify Title Screen Brandings (#10287) Bump various dependencies, which include further cleanup and optmizations (#10274, #10370, #10384) One notable dependency bump is EventBus, which includes: Reduced memory usage Further performance improvements Unregistered listeners are now immediately reclaimable by the garbage collector, fixes EventBus#39 Bump Bootstrap, giving a slight performance boost during dev time Add hooks for using Vanilla's new Client data generator (#10206) Add new hook for custom block models that do not have real blocks backing them Speed up mod annotation scanning by ~30% This was done by using the ClassReader flags SKIP_CODE, SKIP_DEBUG, and SKIP_FRAMES Add VillagerType#registerBiomeType (#10298) Add various extensions to GameTestHelper to make writing game tests easier (#10338) Update Gradle to 8.12.1, reflected in MDK (#10352) Re-introduce IForgeItem.damageItem when an item takes damage (#10371) Re-introduce ItemStack Capabilities (#10324, #10404) ICapabilitySerializable is unusable with itemstack capabilities. It is up to the modder to save persistent data using data components. Add fast graphics render type to block model jsons, fixes #10389 (#10394) Fixed: Fix boat travel distance being incorrect, fixes #9997 Fix NPE when calling ForgeHooks.getDefaultCreatorModId(ItemStack) on Spawn Eggs, fixes #10002 Cleanup FML Bindings which fixes some minor bugs (#10004) Fix Bogged and Wolf armor not being shearable by custom shears, fixes #10005 Fix ClientTickEvent not firing properly Bump NightConfig to 3.7.3, fixes #9122 and #10015 Fix falling block entities not rendering as moving blocks (#10006) Choose the default JarJar mod file type based on the parent Jar, fixes #8878 Fix missed PartEntity patch in Player.attack (#10011) Fix perspective rendering in SeparateTransformsModel (#10014) Some code cleanup in ModInfo/ModFileInfo to use less streams and make things easier to debug Fix conditional checking swallowing decoding errors when loading registry entries from datapacks, fixes #9995 Fix converting dirt to mud consumes whole bottle (not just emptying), fixes #10027 Fix compile errors in MDK (#10029) Send last PoseStack pos to RenderLevelStageEvent AFTER_PARTICLES stage, fixes #10031 Fix Global Loot Modifier deserialization not having registry access, fixes #10042 Fix matrix stack translations for `RenderHighlightEvent` (#10050) Fix `onPlaceItemIntoWorld` always resetting item stack when in creative mode (#10047) Add missed @user_jvm_args.txt to run.bat Fix ItemStack sensitive getDefaultAttributeModifiers not being called Fix custom creative tabs with search listing all items instead of just their own Fix network sync of custom datapack registries Forge also uses a gametest to verify that it functions when updating Remove unneeded boat patch (#10061) Properly ignore unknown mod files (#10063) Fix network channels not initializing during server transfers, fixes #10067 Fix issues with `QuadBakingVertexConsumer` and Forge's OBJ loader (#10065) Fix inverted logic in TagEmptyCondition (#10069) Fix Network hooks not being initialized on GameTestServer and include custom networking tests (#10081) Fix highlighted item tooltip rendering twice, fixes #10112 Update vulnerable `eclipse` dependency (#10109) Cleanup length and size checks (#10108) Fix layering of translucent sprites being broken by re-adding blur call Mojang removed (#10115) Fix and cleanup RuntimeDistCleaner Patch BlockEntity.java to use getType Method (#10124) Fix NightConfig FileWatcher causing dedicated server to hang when exiting (#10213) Add client config to allow mipmap lowering to be disabled, fixes #10155 (#10242) Update jline for better darwin/arm64 support, fixes #10107 (#10279) Clean and fix Forge's internal coremods, fixes #10157 (#10271) Fix custom particles causing crash Fix render_type in block models not being used, fixes #10294 Fix issues in VillagerTrades.EmeraldsForVillagerTypeItem related to custom Villager Types (#10298) Fix incorrect method reference in TntBlock.explode() (#10326) Fix JOpt Simple needing a strict version requirement declaration (#10311) Your build.gradle file no longer needs to declare jopt-simple strictly 5.0.4! Fix shield disabling being completely ignored (#10316) This also fixes a long-standing bug since 1.19 where the Warden would be unable to disable shields. Fix potential item deletion on shield break due to an oversight fixing a vanilla bug, fixes #10344 (#10371) Fix game test structure rotations being inconsistent (#10391) Fix redstone update order not matching vanilla, partially fixes #9973 (#10392) Fix forced chunks never being ticked by the server (#10325) Fix redstone updates for comparators going up/down incorrectly, partially fixes #9973 Fix corrupted and invalidly symlinked worlds crashing on level select (#10406) Update tag context to AddReloadListenerEvent, fixes using custom tags in GlobalLootModifiers (#10412). Removed: Remove Non-HolderLookup methods from INBTSerializable and mark it as deprecated in favor of using Vanilla's new Component system, fixes #9998
  16. Forge version: 53.1.0 Minecraft version: 1.21.3 Downloads: Changelog: (Direct) Installer: (AdFocus) (Direct) MDK: (AdFocus) (Direct) Downloads page Intro: Continuing our stream of new recommended builds, today we release our first recommended build for 1.21.3. 1.21.3 proved to be a strange version in between 1.21.1 and 1.21.4, with several unique factors that warranted Forge continuing to support it as an active version, rather than jumping straight from 1.21.1 to 1.21.4 in terms of support. As of today, the 1.21 family of versions continue to remain covered under active support. New: Change tick event to have pre/post classes (#9890) Make ForgeSpawnEgg assume color is opaque if alpha is set to 0 Fixes "invisible" spawn eggs by default, but still allows modders to specify partial transparency. Add support for named sub-capabilities Make HangingSignBlockEntity useable with custom BlockEntityTypes (#10038) Use the new fire() and Result#isAllowed/isDenied/isDefault methods from EventBus (#10028) Bump Mixin to 0.8.7 Patch CropBlock to use instanceOf FarmBlock check instead of hard coding to Blocks.FARMLAND (#10044) Add a way to render tooltips from Formatted text and TooltipComponents elements (#10056) Load mods that declare explicit 1.21 compatibility as 1.21.1 is a minor bugfix Add level access to Item.TooltipContext if available Mod loading cleanup and optimisations (#10052) Add a few Method Helpers onto ResourceKey to make getting Data Driven Entries Simpler (#10071) Fire `OnDatapackSyncEvent` when a player joins a server (#10076, #10171) Optionally supply FMLJavaModLoadingContext as a param to mod constructors (#10074) Before: public MyMod() { // getting the mod bus - uses FMLJavaModLoadingContext var modBus = FMLJavaModLoadingContext.get().getModEventBus(); // registering configs - uses ModLoadingContext ModLoadingContext.get().registerConfig(/* ... */); // ... } After: public MyMod(FMLJavaModLoadingContext context) { // getting the mod bus var modBus = context.getModEventBus(); // registering configs context.registerConfig(/* ... */); // ... } Add and fire SystemMessageReceivedEvent Replaces ClientChatReceivedEvent.System which was not fired due to Mojang changing ChatType to a registry. Sync component registry ids Stacktraces now have the transformers displayed after itself, and not included with each element Implement the de-facto common tags, add many new Forge tags while retaining backwards compatibility (forum post, #9955, #10126, #10135, #10137) Bump CoreMods to 5.2.4, which adds new features such as ES6, better documentation, and long-awaited bug fixes (changelog, #10267) Add proper support for JPMS in normal mods.toml mods (forum post) Forge is now the `net.minecraftforge.forge` module instead of `forge`. Simplify memory usage display on loading screen (#10237) Deprecate `@ObjectHolder` and skip processing internal classes which do not use it (#10232) Skip processing Forge classes in `RuntimeEnumExtender` (#10220) Skip processing Forge classes in `RuntimeDistCleaner` (#10212) Skip processing Vanilla classes in the `CapabilityTokenSubclass` transformer (#10225) Simplify Title Screen Brandings (#10288) Bump various dependencies, which include further cleanup and optmizations (#10275) Remove redundant rendering options (#10140) Add `c:stripped_logs` and `c:stripped_woods` tags (#10146) Add AT for BlockEntityType constructor. (#10149) Add support for using optional tags on Forge registries Add DeferredRegister.key(name) helper function to make ResourceKey creation easier Bump various dependencies, which include further cleanup and optmizations (#10275, #10385) One notable dependency bump is EventBus, which includes: Reduced memory usage Further performance improvements Unregistered listeners are now immediately reclaimable by the garbage collector, fixes EventBus#39 Bump Bootstrap, giving a slight performance boost during dev time (#10275) Speed up mod annotation scanning by ~30% (#10466) This was done by using the ClassReader flags SKIP_CODE, SKIP_DEBUG, and SKIP_FRAMES Add VillagerType#registerBiomeType (#10357) Add various extensions to GameTestHelper to make writing game tests easier (#10339) Update Gradle to 8.12.1, reflected in MDK (#10353) Re-introduce IForgeItem.damageItem when an item takes damage (#10372) Re-introduce ItemStack Capabilities (#10362) ICapabilitySerializable is unusable with itemstack capabilities. It is up to the modder to save persistent data using data components. Add fast graphics render type to block model jsons, fixes #10389 (#10395) Fixed: All bug fixes from Forge 52.1 for Minecraft 1.21.1 (forum post) Fix Bogged and Wolf armor not being shearable by custom shears, fixes #10005 Fix ClientTickEvent not firing properly Bump NightConfig to 3.7.3, fixes #9122 and #10015 Fix falling block entities not rendering as moving blocks (#10006) Choose the default JarJar mod file type based on the parent Jar, fixes #8878 Fix missed PartEntity patch in Player.attack (#10011) Fix perspective rendering in SeparateTransformsModel (#10014) Some code cleanup in ModInfo/ModFileInfo to use less streams and make things easier to debug Fix conditional checking swallowing decoding errors when loading registry entries from datapacks, fixes #9995 Fix converting dirt to mud consumes whole bottle (not just emptying), fixes #10027 Fix compile errors in MDK (#10029) Send last PoseStack pos to RenderLevelStageEvent AFTER_PARTICLES stage, fixes #10031 Fix Global Loot Modifier deserialization not having registry access, fixes #10042 Fix matrix stack translations for `RenderHighlightEvent` (#10050) Fix `onPlaceItemIntoWorld` always resetting item stack when in creative mode (#10047) Add missed @user_jvm_args.txt to run.bat Fix ItemStack sensitive getDefaultAttributeModifiers not being called Fix custom creative tabs with search listing all items instead of just their own Fix network sync of custom datapack registries Forge also uses a gametest to verify that it functions when updating Remove unneeded boat patch (#10061) Properly ignore unknown mod files (#10063) Fix network channels not initializing during server transfers, fixes #10067 Fix issues with `QuadBakingVertexConsumer` and Forge's OBJ loader (#10065) Fix inverted logic in TagEmptyCondition (#10069) Fix Network hooks not being initialized on GameTestServer and include custom networking tests (#10081) Fix highlighted item tooltip rendering twice, fixes #10112 Update vulnerable `eclipse` dependency (#10109) Cleanup length and size checks (#10108) Fix layering of translucent sprites being broken by re-adding blur call Mojang removed (#10115) Fix and cleanup RuntimeDistCleaner Patch BlockEntity.java to use getType Method (#10124) Fix NightConfig FileWatcher causing dedicated server to hang when exiting (#10215) Add client config to allow mipmap lowering to be disabled, fixes #10155 (#10256) Update jline for better darwin/arm64 support, fixes #10107 (#10281) Fix pause menu having a black background, reverts #10115 (#10143) Fix items with use durations of 0 being repeatedly used when use button is held down, fixes #10150 Fix LootTableLoadEvent not being fired, fixes #10144 Fix Powered Rails acting like Activator Rails due to misaligned patch Fix PlayerRenderer#render invoking RenderLivingEvent and not RenderPlayerEvent (#10167) Cleanup lifecycle transitions Fix mod ordering for multi-mod jars Also made dependency resolution issues easier to debug and diagnose for the future Fix missed call to getFriction hook in AbstractBoat Fix empty tag conditional recipe test Fix TagManager not binding tags Fix Unbound Tag Exception when modders register tags during Register events, fixes #10154 Fix the MDK Item/Block registration example, fixes #10139 Fix not being able to swim in lava Call IUnbakedGeometry.bake from BlockModel, fixes #10178 Change vanilla registry order to last-seen, fixes #10179 Pass the Holder<Enchantment> to Item.canApplyAtEnchantingTable, fixes #10181 Clean and fix Forge's internal coremods, fixes #10157 (#10159) Fix JOpt Simple needing a strict version requirement declaration (#10312, #10348) Your build.gradle file no longer needs to declare jopt-simple strictly 5.0.4! Fix shield disabling being completely ignored (#10317) This also fixes a long-standing bug since 1.19 where the Warden would be unable to disable shields. Fix potential item deletion on shield break due to an oversight fixing a vanilla bug, fixes #10344 (#10372) Fix game test structure rotations being inconsistent (#10391) Fix redstone update order not matching vanilla, partially fixes #9973 (#10392) Fix forced chunks never being ticked by the server (#10325) Fix redstone updates for comparators going up/down incorrectly, partially fixes #9973 Fix corrupted and invalidly symlinked worlds crashing on level select (#10415) Update tag context to AddReloadListenerEvent, fixes using custom tags in GlobalLootModifiers (#10416). Removed: Remove Non-HolderLookup methods from INBTSerializeable and mark it as deprecated in favor of using Vanilla's new Component system, fixes #9998
  17. Forge version: 52.1.0 Minecraft version: 1.21.1 Downloads: Changelog: (Direct) Installer: (AdFocus) (Direct) MDK: (AdFocus) (Direct) Downloads page Intro: Following our new releases of Forge recommended builds for the 1.21 family, today we release our very first recommended build for 1.21.1. Many, many changes have since been made to Forge since the initial release of Forge 52.0. If you're interested in catching up on some of the details of the bigger changes we've made over the past year, you should read my 2024 year-end forum post: Fresh from the Forge 2024. 1.21.1 is covered under active support. New: Change tick event to have pre/post classes (#9890) Make ForgeSpawnEgg assume color is opaque if alpha is set to 0 Fixes "invisible" spawn eggs by default, but still allows modders to specify partial transparency. Add support for named sub-capabilities Make HangingSignBlockEntity useable with custom BlockEntityTypes (#10038) Use the new fire() and Result#isAllowed/isDenied/isDefault methods from EventBus (#10028) Bump Mixin to 0.8.7 Patch CropBlock to use instanceOf FarmBlock check instead of hard coding to Blocks.FARMLAND (#10044) Add a way to render tooltips from Formatted text and TooltipComponents elements (#10056) Load mods that declare explicit 1.21 compatibility as 1.21.1 is a minor bugfix Add level access to Item.TooltipContext if available Mod loading cleanup and optimisations (#10052) Add a few Method Helpers onto ResourceKey to make getting Data Driven Entries Simpler (#10071) Fire `OnDatapackSyncEvent` when a player joins a server (#10076, #10171) Optionally supply FMLJavaModLoadingContext as a param to mod constructors (#10074) Before: public MyMod() { // getting the mod bus - uses FMLJavaModLoadingContext var modBus = FMLJavaModLoadingContext.get().getModEventBus(); // registering configs - uses ModLoadingContext ModLoadingContext.get().registerConfig(/* ... */); // ... } After: public MyMod(FMLJavaModLoadingContext context) { // getting the mod bus var modBus = context.getModEventBus(); // registering configs context.registerConfig(/* ... */); // ... } Add and fire SystemMessageReceivedEvent Replaces ClientChatReceivedEvent.System which was not fired due to Mojang changing ChatType to a registry. Sync component registry ids Stacktraces now have the transformers displayed after itself, and not included with each element Implement the de-facto common tags, add many new Forge tags while retaining backwards compatibility (forum post, #9955, #10126, #10135, #10137) Bump CoreMods to 5.2.4, which adds new features such as ES6, better documentation, and long-awaited bug fixes (changelog, #10266) Add proper support for JPMS in normal mods.toml mods (forum post, #10125) Forge is now the `net.minecraftforge.forge` module instead of `forge`. Simplify memory usage display on loading screen (#10236) Deprecate `@ObjectHolder` and skip processing internal classes which do not use it (#10231) Skip processing Forge classes in `RuntimeEnumExtender` (#10219) Skip processing Forge classes in `RuntimeDistCleaner` (#10211) Skip processing Vanilla classes in the `CapabilityTokenSubclass` transformer (#10224) Simplify Title Screen Brandings (#10289) Bump various dependencies, which include further cleanup and optimizations (#10276 , #10386) One notable dependency bump is EventBus, which includes: Reduced memory usage Further performance improvements Unregistered listeners are now immediately reclaimable by the garbage collector, fixes EventBus#39 Fix incorrect method reference in TntBlock.explode() (#10328) Fix JOpt Simple needing a strict version requirement declaration (#10313, #10349) Your build.gradle file no longer needs to declare jopt-simple strictly 5.0.4! Update Gradle to 8.12.1, reflected in MDK (#10353) Add various extensions to GameTestHelper to make writing game tests easier (#10339) Add VillagerType#registerBiomeType (#10357) Add fast graphics render type to block model jsons, fixes #10389 (#10395) Re-introduce IForgeItem.damageItem when an item takes damage (#10372) Re-introduce ItemStack Capabilities (#10363) ICapabilitySerializable is unusable with itemstack capabilities. It is up to the modder to save persistent data using data components. Speed up mod annotation scanning by ~30% (#10467) This was done by using the ClassReader flags SKIP_CODE, SKIP_DEBUG, and SKIP_FRAMES Add `#forge:chorus_additionally_grows_on` tag for similiar mechanics to `#minecraft:azalea_grows_on` but for chorus (#10461) Fixed: Fix boat travel distance being incorrect, fixes #9997 Fix Bogged and Wolf armor not being shearable by custom shears, fixes #10005 Cleanup FML Bindings which fixes some minor bugs (#10004) Fix NPE when calling ForgeHooks.getDefaultCreatorModId(ItemStack) on Spawn Eggs, fixes #10002 Fix ClientTickEvent not firing properly Bump NightConfig to 3.7.3, fixes #9122 and #10015 Fix falling block entities not rendering as moving blocks (#10006) Choose the default JarJar mod file type based on the parent Jar, fixes #8878 Fix missed PartEntity patch in Player.attack (#10011) Fix perspective rendering in SeparateTransformsModel (#10014) Some code cleanup in ModInfo/ModFileInfo to use less streams and make things easier to debug Fix conditional checking swallowing decoding errors when loading registry entries from datapacks, fixes #9995 Fix converting dirt to mud consumes whole bottle (not just emptying), fixes #10027 Fix compile errors in MDK (#10029) Send last PoseStack pos to RenderLevelStageEvent AFTER_PARTICLES stage, fixes #10031 Fix Global Loot Modifier deserialization not having registry access, fixes #10042 Fix matrix stack translations for `RenderHighlightEvent` (#10050) Fix `onPlaceItemIntoWorld` always resetting item stack when in creative mode (#10047) Add missed @user_jvm_args.txt to run.bat Fix ItemStack sensitive getDefaultAttributeModifiers not being called Fix custom creative tabs with search listing all items instead of just their own Fix network sync of custom datapack registries Forge also uses a gametest to verify that it functions when updating Remove unneeded boat patch (#10061) Properly ignore unknown mod files (#10063) Fix network channels not initializing during server transfers, fixes #10067 Fix issues with `QuadBakingVertexConsumer` and Forge's OBJ loader (#10065) Fix inverted logic in TagEmptyCondition (#10069) Fix Network hooks not being initialized on GameTestServer and include custom networking tests (#10081) Fix highlighted item tooltip rendering twice, fixes #10112 Update vulnerable `eclipse` dependency (#10109) Cleanup length and size checks (#10108) Fix layering of translucent sprites being broken by re-adding blur call Mojang removed (#10115) Fix and cleanup RuntimeDistCleaner Patch BlockEntity.java to use getType Method (#10124) Add optional fix of use item duration, disabled by default and found in the server config (#10151) Fix NightConfig FileWatcher causing dedicated server to hang when exiting (#10215) Add client config to allow mipmap lowering to be disabled, fixes #10155 (#10255) Update jline for better darwin/arm64 support, fixes #10107 (#10282) Fix issues in VillagerTrades.EmeraldsForVillagerTypeItem related to custom Villager Types (#10300) Honor attacker shield disabling status (#10318) This also fixes a long-standing bug since 1.19 where the Warden would be unable to disable shields. Fix corrupted and invalidly symlinked worlds crashing on level select (#10420) Update tag context to AddReloadListenerEvent, fixes using custom tags in GlobalLootModifiers (#10416) Fix redstone update order not matching vanilla, partially fixes #9973 (#10422) Fix redstone updates for comparators going up/down incorrectly, partially fixes #9973 Removed: Remove Non-HolderLookup methods from INBTSerializeable and mark it as deprecated in favor of using Vanilla's new Component system, fixes #9998
  18. Fresh from the Forge 2024 Good morning! Since Minecraft 1.20, there have been a plethora of changes to Forge, its related subprojects, and the project structure as a whole. The end of 2024 is approaching, and now is as good a time as ever to highlight those changes and additions that you may not know about! A quick disclaimer before we begin: this forum post is a new format we'd like to try where we go over the various additions and changes that we've made. Since it's relatively new and we haven't been writing it over the course of the entire year, this post is not a comprehensive recollection of all the major additions and changes the project has received over the past year. However, it does make sure that the most important parts of each change is detailed enough so that you know what is new. Quick Highlights (the tl;dr) This forum post is rather long and goes into some details, so here is a quick and dirty rundown of what's new: - Our new discord server has a restructured development process that is more transparent and open to the public. - We have a new tiered support policy that allows for more versions of Minecraft to be supported. - The Forge server jar is now executable again. - JS CoreMods have several bugs fixed, has new ASMAPI methods, and now supports ES6 language features. - The mod sorter now properly sorts nested mods within a single `mods.toml` file. - Forge mods now have access to a `FMLJavaModLoadingContext` parameter in their constructors. - Forge now includes de-facto common tags for use by datapackers and modders. - Forge mods can now declare their own Java modules. - Stacktraces provided by ModLauncher have been cleaned up. - Forge now uses the official Mojang mappings in production. - AccessTransformers have received major performance improvements. - Extension points have been simplified for display tests and configuration screens. - A new `clientSideOnly` property has been added to `mods.toml`. - Launch times have been significantly improved and large amounts of internal code have been cleaned up. - Crash reports now have a small system that attempts to make debugging crashes easier. - The networking system has been rewritten to be simpler and more extensible. - EventBus now has a `MONITOR` phase for event listeners (non-cancellable). - ModLauncher and EventBus are being rewritten to be more maintainable and performant. Development Transparency and Improvements One of the biggest criticisms that was levied against the Forge team in the past was the lack of transparency regarding the development cycle, process, and discussion between team members or other related contributors. Since our project restructuring and the opening of our new Discord server in 2023, we have since changed the way development discussion takes place. Project Discussion Discussion surrounding the development of Minecraft Forge is now completely open to the public. The Discord server contains two main channels for project development: - #github-discussions is the channel where anyone from the server is able to discuss current GitHub issues and PRs to any of Forge's projects. - #triage-discussions is the channel where the Triage team and Core team members can discuss implementation details and other topics that don't require input from the general public. This channel is viewable by all members so they have a clear view on internal discussion, while also being able to raise concerns in other channels if necessary. Community Improvements There have been several efforts put into improving the general experience of the Forge community. More specifically, discussion surrounding the community harbored by Minecraft Forge is now encouraged through dedicated channels. The Discord server contains a few key points in this regard: - #community-discussion is the channel where anyone from the server is able to discuss the state of the Forge community, including work that needs to be done related spaces such as the Forums site. - All staff chat is publicly viewable in #staff-chat where discussion amongst the staff regarding community concerns and internal implementations is publicly available. The only exception to this is the moderation appeals channel. - Points of discussion which were previously instantly shunned by the former Discord policy (such as CoreModding and Legacy Versions) no longer are. As long as discussions are productive and modders understand the risks (such as being easier to accidentally break mod compat compared to using existing Forge APIs instead, or that manpower is limited with regards to older versions), it is not an offense. Additionally, community-oriented sites such as the forums have been cleaned up and gained improvements in spam protection, and the Forge website all-around has faster site and web services. Revised Version Support Compared to today, the version support of Forge was much tighter and a lot stricter. There were two tiers of support: latest and LTS. The latest version would, as the name entails, encompass only the latest version of the game. The LTS version, on the other hand, would cover the last minor patch of the previous major version of the game. As an example, during the Minecraft 1.18 lifecycle, the latest version was 1.19.4 and the LTS version was 1.18.2. As Minecraft's release cycle began to change to what it is today, this posed one significant problem: what if a minor point release brings about changes that would be comparable to a major version update? Examples of these versions included 1.16.2, 1.19.3, and 1.20.2, where many users stuck with the older version due to mods not updating quickly enough. As a result, we have completely overhauled how we handle version support. Our new system, the tiered support policy, was created to accommodate for the vast number of active versions Minecraft continues to harbor. In short, this means that there are many more versions of Minecraft that Forge is able to provide technical support, features, and bug fixes for. While the latest version of the game will always have the Forge team's top priority, all versions covered by full support are fair game for technical support, pull requests, backports, and others. You can read the full details of the new tiered support policy on this forum post by our very own Paint_Ninja from the Core team: New tiered support policy It is important to note that even if an older version of Forge is not covered under active support, we are still open to look at any potential contributions to legacy versions of the game. For example, 1.18.2 still occasionally gets backports of newer Forge version features! New Features and Improvements Now that we've covered the structural changes within the Forge project, it's finally time to talk about the jam-packed new features, some of which have been long awaited, that have been added into Forge since then! Grab a snack and buckle in, because this is going to be a long ride. Mod Registration Convenience Features FMLJavaModLoadingContext in @Mod constructor parameter: Introduced in 1.21.1, backported and available as far back as 1.19.2 Simpler Extension Point Registration: Introduced in 1.20.4, backported and available as far back as 1.18.2 As Forge continues to age with several new features added each year, it can be difficult to keep track, at least for modders, as to what is internal or not, what you should or shouldn't use, and what you truly have access to. Since 1.13, the @Mod construction annotation has come with these little caveats for a while now and has made it difficult for modders to keep track of what they can use, and do, in their constructors. So, our solution to this was to simplify the way modders can interact with Forge during the loading stage to avoid this type of confusion. FMLJavaModLoadingContext in @Mod constructor parameter Historically, the way you would get your mod's event bus is by making a direct call to `FMLJavaModLoadingContext.get()`. Despite that, you needed to use a different method call to `ModLoadingContext.get()` if you wanted to register configurations. This caused some confusion and was ambiguous as to what the mod constructor actually had access to when it was created. The solution to this was to add an optional constructor parameter containing a single `FMLJavaModLoadingContext` variable that mod constructors can use directly, without needing to make any external calls. This new `FMLJavaModLoadingContext` is an extension of `ModLoadingContext`, so it now has the powers that both used to have in older versions. /* OLD */ public MyMod() { // getting the mod bus - uses FMLJavaModLoadingContext var modBus = FMLJavaModLoadingContext.get().getModEventBus(); // registering configs - uses ModLoadingContext ModLoadingContext.get().registerConfig(/* ... */); // ... } /* NEW */ public MyMod(FMLJavaModLoadingContext context) { // getting the mod bus var modBus = context.getModEventBus(); // registering configs context.registerConfig(/* ... */); // ... } As an additional clarification: making the mod have a single optional parameter containing everything is a deliberate design choice so that everything can be contained within the single `FMLJavaModLoadingContext` variable. Adding additional parameters could cause ambiguity when it comes to what the Mod constructor should access (for example, an IEventBus parameter would be ambiguous by its type alone whether it refers to the Mod bus or Forge bus). Simpler Extension Point Registration In addition to the mod bus, modders also had to be aware of specific ways to register additional extensions with Forge itself, such as config screens and display tests. Extension points have existed in Forge for a while, but using them was a little esoteric. They were mostly used solely to register display tests or configuration screens, so these extension points now have a simpler, dedicated way to register. Since Forge 49.0.12 for Minecraft 1.20.4, `DisplayTest` registration has been simplified to a single method that accepts a DisplayTest. See below for an example. Of course, the old way of registering display tests still exists for backwards compatibility. /* OLD */ ModLoadingContext.get().registerExtensionPoint(IExtensionPoint.DisplayTest.class, () -> new IExtensionPoint.DisplayTest(() -> "ANY", (remote, isServer) -> true)); /* NEW */ ModLoadingContext.get().registerDisplayTest(IExtensionPoint.DisplayTest.IGNORE_ALL_VERSION); // HINT: If your @Mod constructor contains JavaFmlModLoadingContext, you should use that instead of ModLoadingContext.get() A similar treatment was done in Forge 49.0.33 for configuration screens. Please note that this registration exists in `MinecraftForge` and not in `ModLoadingContext`. /* OLD */ ModLoadingContext.get().registerExtensionPoint(ConfigScreenHandler.ConfigScreenFactory.class, () -> new ConfigScreenHandler.ConfigScreenFactory((mc, modsScreen) -> new MyConfigScreen(modsScreen)); /* NEW */ MinecraftForge.registerConfigScreen(modsScreen -> new MyConfigScreen(modsScreen)); The work for the FMLJavaModLoadingContext as constructor parameter feature was done by RealMangorage and is included in Forge 52.0.9, found in MinecraftForge#10074. The work for the extension point registration improvements was done by Paint_Ninja. The simplified display test registration is included in Forge 49.0.12, found in MinecraftForge#9822. The simplified config screen registration is included in Forge 49.0.33, found in MinecraftForge#9884. De-facto Common Tags Introduced in 1.21.1 Not too long ago, many popular mod loaders have begun implementing a universal modded tag solution commonly referred to as "common tags". These tags were created to support cross-loader support for datapacks and/or low-code mods. As of Forge 52.0.20 for Minecraft 1.21.1, Forge now includes these de-facto common tags for use by datapackers and modders alike! This was a long, arduous, and meticulous process that took a lot of effort, specifically from Paint_Ninja, in order to implement. This included the necessity of staying on par with the implementations found in Fabric and NeoForge, which are not always 100% up-to-date with each other at all times. Forge's implementation is very comprehensive, with detailed migration docs, clear markers for loader-specific tags and strong parity guarantees backed by an open-source tool dedicated to identifying tag differences between loaders that has helped drive significant improvements to parity across all loaders since our initial announcement. If you would like to learn more about common tags in Forge, I once again invite you to visit another forum post by Paint_Ninja: Common tags in Forge Finally, we are still not quite done with our common tags implementation. An automation system is in the works, with the help of Paint_Ninja and Jonathing's Common Tags Dumper, to greatly aid us in the process of keeping Forge up-to-date with the common tags implementation between Fabric and NeoForge by notifying us of any changes that we need to account for. We hope that datapacks and low-code mods will be able to greatly benefit from the unification of tags between all mod loaders! The work for this feature was done by Paint_Ninja and is included in Forge 52.0.20, found in MinecraftForge#9955. Improvements to Mod Loading for Modders Proper Java Module Support: Introduced in 1.21.1 Nested Mod Sorting: Introduced in 1.21.3 As Forge Mod Loader has continued to evolve over the past several years, several features have been added to it that aim to make the mod loading process as painless as possible for the modder. Some of these features were not fully realized until very recently, so we have dedicated some time this year to ensuring that they get the functionality and polish they deserve, starting with module support. Proper Java Module Support Module support has been a long time coming, with initial work starting as early as the MC 1.17 days. Forge has recently fully realized mod support for the Java Platform Module System. As of Forge 52.0.26 for Minecraft 1.21.1, Forge mods are now able to declare their own modules, as well as declare additional `Add-Opens` and `Add-Exports` to be able to access the internals of other mods. Forge itself also integrates into this system by using an `Automatic-Module-Name` of `net.minecraftforge.forge`. This addition offers a variety of features that modders can now take advantage of. One of the most important ones is the fine-tuned access control that is offered by modules at both compile-time and runtime. Another is the ability to declare services through a compiled `module-info.java` file as opposed to using static service files that do not necessarily have compile-time validation without additional effort. I invite you to read more about it in Paint_Ninja's forum post, Proper Java module support in Forge mods, where he has described in detail what this means for mods and how you can best take advantage of it. Also, you can read more about how to take full advantage of modules on Java's own website here: java.dev - Introduction to Modules in Java. The work for this feature was done by LexManos and is included in Forge 52.0.26, found in MinecraftForge#10125. Nested Mod Sorting Until very recently, the mod sorter did not account for nested mods inside mod files, instead only accounting for each mod file that was found. The mod loader will now properly sort nested mods found within a single `mods.toml` within a mod file. The work for this improvement was done by LexManos and is included in Forge 53.0.12, found in MinecraftForge@384286a. JavaScript CoreMods Improvements Introduced in 1.21.3, backported and available as far back as 1.18.2 The CoreMods framework recently received a sizable update that expands upon the utility of `ASMAPI` while also addressing and fixing a numerous amount of longstanding issues. Additionally, CoreMods now supports ES6 language support, which means you can finally use `let`, `const`, and `for..of` in your CoreMods! A lot of work went into CoreMods 5.2, so I invite you to check out the full CoreMods 5.2 changelog. While we do plan to eventually phase out the JS CoreMods system in favor of Mixins, ModLauncher services, and a Java-based CoreMods system, JS CoreMods will continue to get smaller updates that expand upon its use within the already tightly limited sandbox. The work for the JS CoreMods improvements was done by Jonathing and is included in CoreMods 5.2, found in [email protected] and included Forge 53.0.11. On the topic of CoreMods, there was also some cleanup done with Forge's own CoreMods, which resolved some issues that would arise when porting to newer versions. It takes advantage of the new features provided by CoreMods 5.2, so if you're interested in that, feel free to browse the work for yourself. The work for the Forge CoreMods cleanup was done by Jonathing and is found in MinecraftForge#10271, which will be merged in at a later date. Debugging Improvements Stacktrace Elements Cleanup: Introduced in 1.21.1 CrashReportAnalyzer: Introduced in 1.20.2, backported and available as far back as 1.18.2 One of the many kinds of improvements we've been working on is cleaning up our debugging output to make it easier to solve problems with the development environment or the game. The two main improvements made this year in this regard was the cleanup of stacktraces in ModLauncher and the addition of CrashReportAnalyzer. The stacktraces provided by ModLauncher have previously included all transformers that affected every line of the stacktrace. These transformers have been moved below the stacktrace to make reading it easier, without omitting the transformers. This makes it a lot easier to see what transformers have modified the original classes that have been dumped by the stacktrace, without making the stacktrace itself difficult to read by appending each transformer on the same line. Crash reports in Minecraft has had a long history of being hard to navigate. Knowing how to read stacktraces can be rather difficult, especially for players who aren't used to how crashes work in Java. Forge now has a small system that attempts to make debugging crashes much easier. CrashReportAnalyzer is a one-class system that automatically attempts to identify the mod that caused a crash. This is done by checking the stacktrace of the exception of a crash report for the base package name of a mod. If a mod is identified, it adds the position of where the error occurred in the stacktrace and the mod info of the suspected mods. Any mods that are found in the stacktrace are gathered and appended to the crash report with its name, version, position of the exception, and the issue link if available. This also accounts for any injected mixins from mods. The work for the stacktrace elements cleanup was done by LexManos and is included in ModLauncher 10.2.2, found in ModLauncher@c712cba and included with Forge 52.0.17. The work for CrashReportAnalyzer was done by The_Dead_2 and is included in Forge 48.0.27, found in MinecraftForge@3b6bb5e. Official Mojang Mappings in Production Introduced in 1.20.6 For many years now, the official obfuscation mappings provided by Mojang have been considered to be the best way to work with the game. Forge itself has been using Mojmap in the dev environment since 1.16, and at runtime has used class names mapped in Mojmap. It became clear that using SRG mappings was becoming less and less of a necessity and more of a cumbersome limitation when trying to read, and work with, our bin patches. The first step we took to moving away from SRG mappings in the development environment was in Forge 48 for Minecraft 1.20.2. Patches were changed so that they would use Mojmap in the repository, and then would be converted to SRG at compile-time. Shortly after, in Forge 50 for Minecraft 1.20.6, Forge now uses Mojmap at runtime, eliminating the need to use SRG name remappers for modders and makes debugging issues in production many times easier, with stacktraces and crash logs now using officially mapped names as opposed to SRG names. While SRG names are still used to decompile the game with MCPConfig and apply pre-patch transformations such as AccessTransformers, Forge has taken major strides in being less reliant on obfuscated names for Minecraft. The reason why we still use SRG in some cases is to support Parchment mappings, however, we intend on moving to full Mojmap once the toolchain rewrite is complete. This entire process also involved switching to a new decompiler called VineFlower, due to its superior support for modern Java features. There was a great team effort in doing both the Minecraft version port and migrating all of the patches to the new mapped format. The work for this feature was done by LexManos and is included in Forge 50.0.0, found in MinecraftForge@7b782e5. Improvements to Performance and User Convenience AccessTransformers Performance Improvements: Introduced in 1.20.6 Executable Server Jar: Introduced in 1.20.4 Removing UnionFS in mod dev env: Introduced in 1.20.4 Internal cleanups and optimisations: Introduced in 1.20.2 onwards and often backported as far back as 1.18.2 An uphill battle for a long time in Forge was battling the performance bottlenecks that came with a lot of the tools we use to ensure that the compatibility layer is stable so that mods do not have the issues they used to back in the ancient days. Unfortunately, sometimes this came at the cost of user convenience. This year, we've made some improvements in that regard in attempt to maintain the trio of compatibility, convenience, and performance. AccessTransformers Performance Improvments AccessTransformers have historically suffered from high complexity, largely attributed to its reliance on ANTLR. Over the past year, ATs have received major performance improvements, which includes the removal of this dependency. The work for these improvements was done by LexManos and Paint_Ninja and is included in AccessTransformers 8.2.0, found in [email protected] and included in Forge 50.0.0. Executable Server Jar In Forge 37 for Minecraft 1.17.1, the Forge team began initial support for the Java Platform Module System. While the process of including the support is now finished, the initial work came at the cost of the removal of the executable forge server jar. It was replaced with a `run.sh` and `run.bat` file which ran Forge using the new module classpath system. While this has been accounted for nowadays, it caused a lot of problems with server hosts and automated scripts, since they are mostly meant for running a jar file directly, allowing for a custom java path to be applied (i.e. `/home/uname/.sdkman/candidates/java/current/bin/java -jar forge-server.jar`). After many long years, with the release of Forge 49 for Minecraft 1.20.4, we have revived the executable jar file for servers! Of course, the old system with `run.sh` and `run.bat` still exist for backwards compatibility. Most importantly, this new jar file was built in a way that preserves all existing JPMS features. You can have your cake and eat it, too. The work for this feature was done by LexManos and is included in Forge 49.0.0, found in MinecraftForge@6f9f0f0. Faster Launch Times and Internal Cleanups Since Forge 49 for Minecraft 1.20.4, launch times have significantly improved overtime. One reason for this is not using UnionFS for everything during load. Since most mod runs will have no usage of the UnionFS system, the overhead associated with it will no longer be present. Additionally, the development environment has received a similar treatment by merging the sourcesets at compile-time instead of relying on the UnionFS per launch. Aside from just that one example, there has been a mountain of effort put into cleanup the Forge and its related subprojects. These cleanups include: cleanups to the early loading screen to make the information it displays easier to read, cleanups to configs, optimizations to registries, optimizations to capabilities, cleaning up and improving how errors and exceptions are handled in mod loading, various cleanups and optimizations to FML and EventBus, cleaning up the FML bindings, and more general cleanups to the mod loading and jar location process. As we continue to work on continuing the code base and doing thorough cleanups of internal code, faster launch times will continue to both be a byproduct of said cleanup and a goal of Forge as we continue to do so. If you're interested in seeing how we plan on tackling internal code, see the "What's Next?" section near the end of the forum post! Additional work continues to be made on speeding up the launch process for Minecraft within Forge. We hope to have more to share with you some time next year! Client-Side Only in mods.toml Introduced in 1.20.4 A new `mods.toml` property was added, `clientSideOnly`, which marks a mod to only be loaded on the client. This eliminates the need to use `DistExecutor` to safely run your mod only on the client, as your mod will be skipped on the server before it is loaded if you use this flag. This can be easily added to your client-side mod by adding this to your `mods.toml` file: # This goes in the root of your mods.toml file clientSideOnly = true [[mods]] # ... As a byproduct of this feature, DistExecutor is being deprecated since it was primarily used to ensure that specific mod code would only be run on the client. Additionally, it was used to workaround some quirks with Java 8, which are no longer necessary since an if-check using FMLEnvironment.dist is now sufficient in modern Java versions. The work for this feature was done by Paint_Ninja and is included in Forge 49.0.6, found in MinecraftForge#9804. Additional Values Added to ForgeConfigSpec Introduced in 1.20.4 ForgeConfigSpec now includes three additional values: ByteValue, ShortValue, and FloatValue. This gives more options for modders to use instead of IntValue and DoubleValue, which prevents needless casting. Along with this, the ForgeConfigSpec underwent a lot of internal code cleanups and refactoring without causing any breaking changes. The work for this feature was done by SrRapero720 and is included in Forge 49.0.40, found in MinecraftForge#9902. Networking Rewrite Introduced in 1.20.2 The entire networking system was rewritten to be far simpler, with a reduction in generic types and arguments. The handshake system in particular was designed to use the new handshake connection that Mojang added (a system which Forge has historically used its own version of). This way, modders and server developers can easily extand the handshake for more information with needed, and allows for non-Forge clients to work properly. Additionally, this adds support for direct payload channels to allow vanilla-like communications, and adds inherent direction safety to enforce the set direction of the packet (if server -> client, ONLY server -> client). For an example of how this system is used within Forge, see the diff of the file NetworkInitialization.java. The work for this feature was done by LexManos and is included in Forge 48.0.0, found in MinecraftForge@516b35c. EventBus MONITOR Phase Introduced in 1.20.2 As you may know, EventBus has a priority system for event listeners that allow them to set their priority for when their listener should be invoked by the event bus. The lowest priority that existed was `LOWEST`, which could have been used to get your listener to be the very last to listen to an event. As of EventBus 6.1, however, a new priority, `MONITOR`, was created and is the new lowest priority. The goal of this phase is to simply "monitor" an event after all other listeners have received it and applied applicable modifications to it. Because of this, `Event#setCanceled()` will throw an exception if you attempt to call it during the `MONITOR` phase. The work for this feature was done by LexManos and is included in EventBus 6.1.0, found in EventBus@c510e2c and included with Forge 48.0.32 as part of the buildscript cleanup. What's Next? Aside from the countless features, improvements, and bug fixes that have been made to Forge over the past year, a lot of work has begun on making substantial changes to the project as a whole. While progress on this has been relatively slow, there has been a decent amount of work completed so far and we'd like to share in this forum post exactly what we're cooking. ModLauncher and friends ModLauncher is an extremely useful tool that allows us to divert specific abilities, such as class transformations and module loading, to a single library. In theory, this means that projects which use it, such as FML and CoreMods, do not need to worry about dealing with the burdens of setting up the class transformations by themselves, and can instead feed to ModLauncher what they want transformed. The only problem is that ModLauncher and FML are an absolute beast of complexity, which has made it difficult for us to build on it properly. Our first steps towards reducing that complexity are now underway, with our very own Paint_Ninja leading the charge on an effective rewrite of ModLauncher. The main benefit of doing this is to allow us not only to further utilize its potential, but also to make it easier to maintain (a common theme throughout our various projects' restructurings). EventBus is also getting this treatment, with a new and revitalized focus on performance. Both ModLauncher and EventBus are also being written with Java 25, the next expected LTS, in mind, taking advantage of the new ClassFile API, Project Valhalla, and many other new and interesting features that can help to boost performance and reduce complexity (as much as possible, of course). As we continue down this path of restructuring, rewriting, and repurposing, our two primary goals will continue to be maintainability and performance (especially for loading). Conclusion It has certainly been a very long year and a half for Minecraft Forge. While we've undergone various project and development team restructurings, we are proud of the work we've put into Forge thus far. Huge progress is being made on our current toolchain changes, and we're excited to put into action what we've been cooking over the course of the next year. Stay safe and enjoy the rest of the year. Cheers to a good 2025!
  19. 6:26:58 PM: Executing 'wrapper'... Download http://files.minecraftforge.net/maven/net/minecraftforge/gradle/ForgeGradle/2.1-SNAPSHOT/maven-metadata.xml, took 3 s 928 ms Download http://files.minecraftforge.net/maven/net/minecraftforge/fernflower/2.0-SNAPSHOT/maven-metadata.xml, took 2 s 332 ms FAILURE: Build failed with an exception. * Where: Build file 'C:\Users\Slacker201\Desktop\MinecraftMacro\build.gradle' line: 16 * What went wrong: A problem occurred evaluating root project 'MinecraftMacro'. > Failed to apply plugin 'net.minecraftforge.gradle.forge'. > Configuration with name 'compile' not found. * Try: > Run with --stacktrace option to get the stack trace. > Run with --info or --debug option to get more log output. > Run with --scan to get full insights. > Get more help at https://help.gradle.org. BUILD FAILED in 56s Deprecated Gradle features were used in this build, making it incompatible with Gradle 9.0. You can use '--warning-mode all' to show the individual deprecation warnings and determine if they come from your own scripts or plugins. For more on this, please refer to https://docs.gradle.org/8.8/userguide/command_line_interface.html#sec:command_line_warnings in the Gradle documentation. 6:27:54 PM: Execution finished 'wrapper'.
  20. Hola buenas, Quería saber porque me da este error apt cache successfully updated Drive already mounted at /content/drive; to attempt to forcibly remount, call drive.mount("/content/drive", force_remount=True). /content/drive/My Drive/Minecraft-server addons config installer.log run.sh att-debug crash-reports libraries scripts 'att-debug (1)' defaultconfigs local server.jar 'att-debug (2)' 'eula (1).txt' logs server.properties banned-ips.json 'eula (2).txt' modernfix usercache.json banned-players.json eula.txt mods user_jvm_args.txt 'colabconfig (1).json' fabricloader.log ops.json whitelist.json 'colabconfig (2).json' forge-installer.jar rhino.local.properties world colabconfig.json forge.jar run.bat Yay! Openjdk17 has been successfully installed. Se esta utilizando JAVA 17 - You are using JAVA 17. Usando playit Warning: apt-key is deprecated. Manage keyring files in trusted.gpg.d instead (see apt-key(8)). OK Iniciando servidor... Playit.gg instalado /content/drive/My Drive/Minecraft-server/libraries/net/minecraftforge/forge/1.20.1-47.2.19/unix_args.txt 8no command provided, doing auto runWARNING: Unknown module: cpw.mods.securejarhandler specified to --add-exports WARNING: Unknown module: cpw.mods.securejarhandler specified to --add-opens WARNING: Unknown module: cpw.mods.securejarhandler specified to --add-opens Error: Could not find or load main class cpw.mods.bootstraplauncher.BootstrapLauncher Caused by: java.lang.ClassNotFoundException: cpw.mods.bootstraplauncher.BootstrapLauncher 8checking if secret key is valid8secret key valid, agent has 1 tunnels8starting up tunnel connection8tunnel running8playit (v0.15.26): 1731348046735 tunnel running, 1 tunnels registered TUNNELS are-lasting.gl.joinmc.link => 127.0.0.1:25565 (minecraft-java) 8playit (v0.15.26): 1731348050080 tunnel running, 1 tunnels registered TUNNELS are-lasting.gl.joinmc.link => 127.0.0.1:25565 (minecraft-java) 8playit (v0.15.26): 1731348053321 tunnel running, 1 tunnels registered TUNNELS are-lasting.gl.joinmc.link => 127.0.0.1:25565 (minecraft-java) 8playit (v0.15.26): 1731348056568 tunnel running, 1 tunnels registered TUNNELS are-lasting.gl.joinmc.link => 127.0.0.1:25565 (minecraft-java) 8playit (v0.15.26): 1731348059809 tunnel running, 1 tunnels registered TUNNELS are-lasting.gl.joinmc.link => 127.0.0.1:25565 (minecraft-java) 8playit (v0.15.26): 1731348063176 tunnel running, 1 tunnels registered TUNNELS are-lasting.gl.joinmc.link => 127.0.0.1:25565 (minecraft-java) 8playit (v0.15.26): 1731348066476 tunnel running, 1 tunnels registered TUNNELS are-lasting.gl.joinmc.link => 127.0.0.1:25565 (minecraft-java) Iniciando servidor... /content/drive/My Drive/Minecraft-server/libraries/net/minecraftforge/forge/1.20.1-47.2.19/unix_args.txt WARNING: Unknown module: cpw.mods.securejarhandler specified to --add-exports WARNING: Unknown module: cpw.mods.securejarhandler specified to --add-opens WARNING: Unknown module: cpw.mods.securejarhandler specified to --add-opens Error: Could not find or load main class cpw.mods.bootstraplauncher.BootstrapLauncher Caused by: java.lang.ClassNotFoundException: cpw.mods.bootstraplauncher.BootstrapLauncher
  21. when i join my server it says this Internal Exception: io.netty.handler.codec.EncoderException: java.lang.NullPointerException: Cannot invoke "java.lang.Enum.ordinal()" because "p_130069_" is null here is my logs Client [05Nov2024 14:10:41.192] [main/INFO] [cpw.mods.modlauncher.Launcher/MODLAUNCHER]: ModLauncher running: args [--username, LEGENDARYSHARK07, --version, 1.19.2, --gameDir, C:\Users\hstoe\AppData\Roaming\ModrinthApp\profiles\The Haunted SMP 2.0 1.5.1, --assetsDir, C:\Users\hstoe\AppData\Roaming\ModrinthApp\meta\assets, --assetIndex, 1.19, --uuid, f7bf6892da784736a9ff656abda9663b, --accessToken, ????????, --clientId, c4502edb-87c6-40cb-b595-64a280cf8906, --xuid, 0, --userType, msa, --versionType, release, --width, 854, --height, 480, --launchTarget, forgeclient, --fml.forgeVersion, 43.4.2, --fml.mcVersion, 1.19.2, --fml.forgeGroup, net.minecraftforge, --fml.mcpVersion, 20220805.130853] [05Nov2024 14:10:41.212] [main/INFO] [cpw.mods.modlauncher.Launcher/MODLAUNCHER]: ModLauncher 10.0.8+10.0.8+main.0ef7e830 starting: java version 17.0.12 by Azul Systems, Inc.; OS Windows 10 arch amd64 version 10.0 [05Nov2024 14:10:49.558] [main/INFO] [mixin/]: SpongePowered MIXIN Subsystem Version=0.8.5 Source=union:/C:/Users/hstoe/AppData/Roaming/ModrinthApp/meta/libraries/org/spongepowered/mixin/0.8.5/mixin-0.8.5.jar%23140!/ Service=ModLauncher Env=CLIENT [05Nov2024 14:10:51.124] [main/WARN] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Mod file C:\Users\hstoe\AppData\Roaming\ModrinthApp\meta\libraries\net\minecraftforge\fmlcore\1.19.2-43.4.2\fmlcore-1.19.2-43.4.2.jar is missing mods.toml file [05Nov2024 14:10:51.191] [main/WARN] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Mod file C:\Users\hstoe\AppData\Roaming\ModrinthApp\meta\libraries\net\minecraftforge\javafmllanguage\1.19.2-43.4.2\javafmllanguage-1.19.2-43.4.2.jar is missing mods.toml file [05Nov2024 14:10:51.229] [main/WARN] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Mod file C:\Users\hstoe\AppData\Roaming\ModrinthApp\meta\libraries\net\minecraftforge\lowcodelanguage\1.19.2-43.4.2\lowcodelanguage-1.19.2-43.4.2.jar is missing mods.toml file [05Nov2024 14:10:51.261] [main/WARN] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Mod file C:\Users\hstoe\AppData\Roaming\ModrinthApp\meta\libraries\net\minecraftforge\mclanguage\1.19.2-43.4.2\mclanguage-1.19.2-43.4.2.jar is missing mods.toml file [05Nov2024 14:10:51.720] [main/WARN] [net.minecraftforge.jarjar.selection.JarSelector/]: Attempted to select two dependency jars from JarJar which have the same identification: Mod File: and Mod File: . Using Mod File: [05Nov2024 14:10:51.720] [main/WARN] [net.minecraftforge.jarjar.selection.JarSelector/]: Attempted to select two dependency jars from JarJar which have the same identification: Mod File: and Mod File: . Using Mod File: [05Nov2024 14:10:51.722] [main/WARN] [net.minecraftforge.jarjar.selection.JarSelector/]: Attempted to select a dependency jar for JarJar which was passed in as source: calio. Using Mod File: C:\Users\hstoe\AppData\Roaming\ModrinthApp\profiles\The Haunted SMP 2.0 1.5.1\mods\calio-forge-1.19.2-1.7.0.4.jar [05Nov2024 14:10:51.722] [main/WARN] [net.minecraftforge.jarjar.selection.JarSelector/]: Attempted to select a dependency jar for JarJar which was passed in as source: curios. Using Mod File: C:\Users\hstoe\AppData\Roaming\ModrinthApp\profiles\The Haunted SMP 2.0 1.5.1\mods\curios-forge-1.19.2-5.1.6.3.jar [05Nov2024 14:10:51.722] [main/WARN] [net.minecraftforge.jarjar.selection.JarSelector/]: Attempted to select a dependency jar for JarJar which was passed in as source: l2library. Using Mod File: C:\Users\hstoe\AppData\Roaming\ModrinthApp\profiles\The Haunted SMP 2.0 1.5.1\mods\l2library-1.10.0.jar [05Nov2024 14:10:51.723] [main/INFO] [net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator/]: Found 21 dependencies adding them to mods collection [05Nov2024 14:10:57.543] [main/INFO] [mixin/]: Compatibility level set to JAVA_17 [05Nov2024 14:10:57.815] [main/ERROR] [mixin/]: Mixin config geckoanimfix.forge.mixins.json does not specify "minVersion" property [05Nov2024 14:10:57.831] [main/ERROR] [mixin/]: Mixin config forge-projectiles-common.mixins.json does not specify "minVersion" property [05Nov2024 14:10:57.831] [main/ERROR] [mixin/]: Mixin config forge-projectiles.mixins.json does not specify "minVersion" property [05Nov2024 14:10:57.982] [main/INFO] [mixin/]: Successfully loaded Mixin Connector [com.sonicether.soundphysics.MixinConnector] [05Nov2024 14:10:57.984] [main/INFO] [mixin/]: Successfully loaded Mixin Connector [shetiphian.core.mixins.MixinConnector] [05Nov2024 14:10:57.985] [main/INFO] [mixin/]: Successfully loaded Mixin Connector [de.erdbeerbaerlp.dcintegration.forge.DCMixinConnector] [05Nov2024 14:10:57.986] [main/INFO] [mixin/]: Successfully loaded Mixin Connector [com.aizistral.nochatreports.MixinConnector] [05Nov2024 14:10:57.987] [main/INFO] [mixin/]: Successfully loaded Mixin Connector [shetiphian.endertanks.mixins.MixinConnector] [05Nov2024 14:10:57.989] [main/INFO] [cpw.mods.modlauncher.LaunchServiceHandler/MODLAUNCHER]: Launching target 'forgeclient' with arguments [--version, 1.19.2, --gameDir, C:\Users\hstoe\AppData\Roaming\ModrinthApp\profiles\The Haunted SMP 2.0 1.5.1, --assetsDir, C:\Users\hstoe\AppData\Roaming\ModrinthApp\meta\assets, --uuid, f7bf6892da784736a9ff656abda9663b, --username, LEGENDARYSHARK07, --assetIndex, 1.19, --accessToken, ????????, --clientId, c4502edb-87c6-40cb-b595-64a280cf8906, --xuid, 0, --userType, msa, --versionType, release, --width, 854, --height, 480] [05Nov2024 14:10:58.011] [main/INFO] [com.abdelaziz.saturn.common.Saturn/]: Loaded Saturn config file with 4 configurable options [05Nov2024 14:10:58.081] [main/INFO] [Rubidium/]: Loaded configuration file for Rubidium: 30 options available, 0 override(s) found [05Nov2024 14:10:58.155] [main/WARN] [ModernFixConfig/]: ModelDataManager bugfixes have been disabled to prevent broken rendering with Rubidium installed. Please migrate to Embeddium. [05Nov2024 14:10:58.166] [main/INFO] [ModernFix/]: Loaded configuration file for ModernFix 5.18.1+mc1.19.2: 87 options available, 1 override(s) found [05Nov2024 14:10:58.167] [main/WARN] [ModernFix/]: Option 'mixin.bugfix.model_data_manager_cme' overriden (by mods [rubidium]) to 'false' [05Nov2024 14:10:58.167] [main/INFO] [ModernFix/]: Applying Nashorn fix [05Nov2024 14:10:58.187] [main/INFO] [ModernFix/]: Applied Forge config corruption patch [05Nov2024 14:10:58.315] [main/WARN] [mixin/]: Reference map 'flib.refmap.json' for flib.mixins.json could not be read. If this is a development environment you can ignore this message [05Nov2024 14:10:58.334] [main/WARN] [mixin/]: Reference map 'nitrogen_internals.refmap.json' for nitrogen_internals.mixins.json could not be read. If this is a development environment you can ignore this message [05Nov2024 14:10:58.381] [main/WARN] [mixin/]: Reference map 'create_questing.refmap.json' for create_questing.mixins.json could not be read. If this is a development environment you can ignore this message [05Nov2024 14:10:58.565] [main/WARN] [mixin/]: Reference map 'FTBQuestsOptimizer.refmap.json' for ftbqoptimizer.mixins.json could not be read. If this is a development environment you can ignore this message [05Nov2024 14:10:58.617] [main/WARN] [mixin/]: Reference map 'betterfarmland-1.19.2-forge-forge-refmap.json' for betterfarmland.mixins.json could not be read. If this is a development environment you can ignore this message [05Nov2024 14:10:58.630] [main/WARN] [mixin/]: Reference map '${refmap_target}refmap.json' for corgilib.forge.mixins.json could not be read. If this is a development environment you can ignore this message [05Nov2024 14:10:58.753] [main/WARN] [mixin/]: Reference map 'ambientsounds.mixins.refmap.json' for ambientsounds.mixins.json could not be read. If this is a development environment you can ignore this message [05Nov2024 14:10:58.803] [main/WARN] [mixin/]: Reference map 'createappliedkinetics.refmap.json' for createappliedkinetics.mixins.json could not be read. If this is a development environment you can ignore this message [05Nov2024 14:10:58.806] [main/WARN] [mixin/]: Reference map 'xlpackets.refmap.json' for xlpackets.mixins.json could not be read. If this is a development environment you can ignore this message [05Nov2024 14:10:58.827] [main/WARN] [mixin/]: Reference map 'Projectiles-forge-refmap.json' for forge-projectiles.mixins.json could not be read. If this is a development environment you can ignore this message [05Nov2024 14:10:58.851] [main/WARN] [mixin/]: Reference map 'mes-forge-refmap.json' for mes-forge.mixins.json could not be read. If this is a development environment you can ignore this message [05Nov2024 14:10:58.855] [main/WARN] [mixin/]: Reference map 'coroutil.refmap.json' for coroutil.mixins.json could not be read. If this is a development environment you can ignore this message [05Nov2024 14:10:58.859] [main/WARN] [mixin/]: Reference map 'mvs-forge-refmap.json' for mvs-forge.mixins.json could not be read. If this is a development environment you can ignore this message [05Nov2024 14:10:58.910] [main/INFO] [BadOptimizations/]: Loading config from C:\Users\hstoe\AppData\Roaming\ModrinthApp\profiles\The Haunted SMP 2.0 1.5.1\config\badoptimizations.txt [05Nov2024 14:10:58.921] [main/INFO] [BadOptimizations/]: Config version: 3 [05Nov2024 14:10:58.922] [main/INFO] [BadOptimizations/]: BadOptimizations config dump: [05Nov2024 14:10:58.922] [main/INFO] [BadOptimizations/]: enable_toast_optimizations: true [05Nov2024 14:10:58.922] [main/INFO] [BadOptimizations/]: ignore_mod_incompatibilities: false [05Nov2024 14:10:58.922] [main/INFO] [BadOptimizations/]: lightmap_time_change_needed_for_update: 80 [05Nov2024 14:10:58.923] [main/INFO] [BadOptimizations/]: enable_lightmap_caching: true [05Nov2024 14:10:58.923] [main/INFO] [BadOptimizations/]: enable_particle_manager_optimization: true [05Nov2024 14:10:58.923] [main/INFO] [BadOptimizations/]: enable_entity_renderer_caching: true [05Nov2024 14:10:58.923] [main/INFO] [BadOptimizations/]: log_config: true [05Nov2024 14:10:58.923] [main/INFO] [BadOptimizations/]: enable_remove_redundant_fov_calculations: true [05Nov2024 14:10:58.923] [main/INFO] [BadOptimizations/]: config_version: 3 [05Nov2024 14:10:58.923] [main/INFO] [BadOptimizations/]: enable_sky_angle_caching_in_worldrenderer: true [05Nov2024 14:10:58.923] [main/INFO] [BadOptimizations/]: enable_block_entity_renderer_caching: true [05Nov2024 14:10:58.923] [main/INFO] [BadOptimizations/]: skycolor_time_change_needed_for_update: 3 [05Nov2024 14:10:58.924] [main/INFO] [BadOptimizations/]: enable_entity_flag_caching: true [05Nov2024 14:10:58.924] [main/INFO] [BadOptimizations/]: enable_debug_renderer_disable_if_not_needed: true [05Nov2024 14:10:58.924] [main/INFO] [BadOptimizations/]: enable_sky_color_caching: true [05Nov2024 14:10:58.924] [main/INFO] [BadOptimizations/]: enable_remove_tutorial_if_not_demo: true [05Nov2024 14:10:58.924] [main/INFO] [BadOptimizations/]: show_f3_text: true [05Nov2024 14:10:58.924] [main/INFO] [BadOptimizations/]: Disabled entity_renderer_caching because Twilight Forest is present [05Nov2024 14:10:59.675] [main/WARN] [mixin/]: Error loading class: mezz/modnametooltip/TooltipEventHandler (java.lang.ClassNotFoundException: mezz.modnametooltip.TooltipEventHandler) [05Nov2024 14:10:59.678] [main/WARN] [mixin/]: Error loading class: me/shedaniel/rei/impl/client/ClientHelperImpl (java.lang.ClassNotFoundException: me.shedaniel.rei.impl.client.ClientHelperImpl) [05Nov2024 14:10:59.703] [main/WARN] [mixin/]: Error loading class: com/simibubi/create/content/contraptions/components/fan/AirCurrent (java.lang.ClassNotFoundException: com.simibubi.create.content.contraptions.components.fan.AirCurrent) [05Nov2024 14:11:01.368] [main/WARN] [mixin/]: Error loading class: snownee/jade/addon/forge/ForgeFluidProvider (java.lang.ClassNotFoundException: snownee.jade.addon.forge.ForgeFluidProvider) [05Nov2024 14:11:01.368] [main/WARN] [mixin/]: @Mixin target snownee.jade.addon.forge.ForgeFluidProvider was not found mixins.endertanks.json:ET_HideFluidBars$_Jade_19_0 [05Nov2024 14:11:01.371] [main/WARN] [mixin/]: Error loading class: snownee/jade/addon/universal/FluidStorageProvider (java.lang.ClassNotFoundException: snownee.jade.addon.universal.FluidStorageProvider) [05Nov2024 14:11:01.372] [main/WARN] [mixin/]: @Mixin target snownee.jade.addon.universal.FluidStorageProvider was not found mixins.endertanks.json:ET_HideFluidBars$_Jade_19_1 [05Nov2024 14:11:01.374] [main/WARN] [mixin/]: Error loading class: mcjty/theoneprobe/apiimpl/providers/DefaultProbeInfoProvider (java.lang.ClassNotFoundException: mcjty.theoneprobe.apiimpl.providers.DefaultProbeInfoProvider) [05Nov2024 14:11:01.374] [main/WARN] [mixin/]: @Mixin target mcjty.theoneprobe.apiimpl.providers.DefaultProbeInfoProvider was not found mixins.endertanks.json:ET_HideFluidBars$_TheOneProbe [05Nov2024 14:11:01.377] [main/WARN] [mixin/]: Error loading class: mekanism/common/integration/lookingat/LookingAtUtils (java.lang.ClassNotFoundException: mekanism.common.integration.lookingat.LookingAtUtils) [05Nov2024 14:11:01.377] [main/WARN] [mixin/]: @Mixin target mekanism.common.integration.lookingat.LookingAtUtils was not found mixins.endertanks.json:ET_HideFluidBars$_Mekanism [05Nov2024 14:11:01.395] [main/WARN] [mixin/]: Error loading class: shadows/apotheosis/ench/table/ApothEnchantContainer (java.lang.ClassNotFoundException: shadows.apotheosis.ench.table.ApothEnchantContainer) [05Nov2024 14:11:01.396] [main/WARN] [mixin/]: @Mixin target shadows.apotheosis.ench.table.ApothEnchantContainer was not found origins_classes.mixins.json:common.apotheosis.ApotheosisEnchantmentMenuMixin [05Nov2024 14:11:01.399] [main/WARN] [mixin/]: Error loading class: se/mickelus/tetra/blocks/workbench/WorkbenchTile (java.lang.ClassNotFoundException: se.mickelus.tetra.blocks.workbench.WorkbenchTile) [05Nov2024 14:11:01.400] [main/WARN] [mixin/]: @Mixin target se.mickelus.tetra.blocks.workbench.WorkbenchTile was not found origins_classes.mixins.json:common.tetra.WorkbenchTileMixin [05Nov2024 14:11:01.489] [main/WARN] [mixin/]: Error loading class: software/bernie/geckolib/model/GeoModel (java.lang.ClassNotFoundException: software.bernie.geckolib.model.GeoModel) [05Nov2024 14:11:01.489] [main/WARN] [mixin/]: @Mixin target software.bernie.geckolib.model.GeoModel was not found geckoanimfix.forge.mixins.json:GeoModelMixin [05Nov2024 14:11:01.608] [main/WARN] [mixin/]: Error loading class: noobanidus/mods/lootr/config/ConfigManager (java.lang.ClassNotFoundException: noobanidus.mods.lootr.config.ConfigManager) [05Nov2024 14:11:01.697] [main/INFO] [memoryleakfix/]: [MemoryLeakFix] Will be applying 4 memory leak fixes! [05Nov2024 14:11:01.697] [main/INFO] [memoryleakfix/]: [MemoryLeakFix] Currently enabled memory leak fixes: [targetEntityLeak, entityMemoriesLeak, biomeTemperatureLeak, hugeScreenshotLeak] [05Nov2024 14:11:02.003] [main/INFO] [MixinExtras|Service/]: Initializing MixinExtras via com.llamalad7.mixinextras.service.MixinExtrasServiceImpl(version=0.4.1). [05Nov2024 14:11:02.190] [main/WARN] [mixin/]: Static binding violation: PRIVATE @Overwrite method m_216202_ in modernfix-forge.mixins.json:perf.tag_id_caching.TagOrElementLocationMixin cannot reduce visibiliy of PUBLIC target method, visibility will be upgraded. [05Nov2024 14:11:03.548] [main/INFO] [mixin/]: Mixing server.MixinPlayer from nochatreports.mixins.json into net.minecraft.world.entity.player.Player [05Nov2024 14:11:04.316] [main/INFO] [mixin/]: Mixing client.MixinLocalPlayer from nochatreports.mixins.json into net.minecraft.client.player.LocalPlayer [05Nov2024 14:11:04.436] [main/WARN] [mixin/]: @Final field f_92985_:Lnet/minecraft/util/RandomSource; in survive.mixins.json:client.GuiMixin should be final [05Nov2024 14:11:04.521] [main/INFO] [mixin/]: Mixing client.MixinTitleScreen from nochatreports.mixins.json into net.minecraft.client.gui.screens.TitleScreen [05Nov2024 14:11:04.645] [main/INFO] [mixin/]: Mixing client.MixinChatScreen from nochatreports.mixins.json into net.minecraft.client.gui.screens.ChatScreen [05Nov2024 14:11:04.646] [main/INFO] [mixin/]: Renaming synthetic method lambda$onInit$4(Lnet/minecraft/client/gui/components/Button;Lcom/mojang/blaze3d/vertex/PoseStack;II)V to md49b64c$lambda$onInit$4$0 in nochatreports.mixins.json:client.MixinChatScreen [05Nov2024 14:11:04.647] [main/INFO] [mixin/]: Renaming synthetic method lambda$onInit$3(Lnet/minecraft/client/gui/components/Button;)V to md49b64c$lambda$onInit$3$1 in nochatreports.mixins.json:client.MixinChatScreen [05Nov2024 14:11:04.647] [main/INFO] [mixin/]: Renaming synthetic method lambda$onInit$2(Lcom/aizistral/nochatreports/core/ServerSafetyLevel;Lnet/minecraft/client/gui/components/Button;Lcom/mojang/blaze3d/vertex/PoseStack;II)V to md49b64c$lambda$onInit$2$2 in nochatreports.mixins.json:client.MixinChatScreen [05Nov2024 14:11:04.648] [main/INFO] [mixin/]: Renaming synthetic method lambda$onInit$1(Lnet/minecraft/client/gui/components/Button;)V to md49b64c$lambda$onInit$1$3 in nochatreports.mixins.json:client.MixinChatScreen [05Nov2024 14:11:04.648] [main/INFO] [mixin/]: Renaming synthetic method lambda$onBeforeMessage$0(Ljava/lang/String;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;Lcom/aizistral/nochatreports/encryption/Encryptor;)V to md49b64c$lambda$onBeforeMessage$0$4 in nochatreports.mixins.json:client.MixinChatScreen [05Nov2024 14:11:04.869] [pool-3-thread-1/INFO] [net.minecraft.server.Bootstrap/]: ModernFix reached bootstrap stage (29.11 s after launch) [05Nov2024 14:11:04.938] [pool-3-thread-1/WARN] [mixin/]: @Final field delegatesByName:Ljava/util/Map; in modernfix-forge.mixins.json:perf.forge_registry_alloc.ForgeRegistryMixin should be final [05Nov2024 14:11:04.938] [pool-3-thread-1/WARN] [mixin/]: @Final field delegatesByValue:Ljava/util/Map; in modernfix-forge.mixins.json:perf.forge_registry_alloc.ForgeRegistryMixin should be final [05Nov2024 14:11:04.984] [pool-3-thread-1/WARN] [mixin/]: @Inject(@At("INVOKE")) Shift.BY=2 on everycomp-common.mixins.json:LootTableHackMixin::handler$eai000$everyCompat$addSimpleFastDrops exceeds the maximum allowed value: 0. Increase the value of maxShiftBy to suppress this warning. [05Nov2024 14:11:06.124] [pool-3-thread-1/INFO] [net.minecraft.server.Bootstrap/]: Vanilla bootstrap took 1252 milliseconds [05Nov2024 14:11:08.471] [pool-3-thread-1/WARN] [net.minecraft.network.syncher.SynchedEntityData/]: defineId called for: class net.minecraft.world.entity.Entity from interface com.stereowalker.survive.needs.IRoastedEntity [05Nov2024 14:11:09.204] [pool-3-thread-1/WARN] [mixin/]: Static binding violation: PRIVATE @Overwrite method m_47505_ in modernfix-common.mixins.json:perf.remove_biome_temperature_cache.BiomeMixin cannot reduce visibiliy of PUBLIC target method, visibility will be upgraded. [05Nov2024 14:11:11.304] [Render thread/WARN] [net.minecraft.server.packs.VanillaPackResources/]: Assets URL 'union:/C:/Users/hstoe/AppData/Roaming/ModrinthApp/meta/libraries/net/minecraft/client/1.19.2-20220805.130853/client-1.19.2-20220805.130853-srg.jar%23649!/assets/.mcassetsroot' uses unexpected schema [05Nov2024 14:11:11.304] [Render thread/WARN] [net.minecraft.server.packs.VanillaPackResources/]: Assets URL 'union:/C:/Users/hstoe/AppData/Roaming/ModrinthApp/meta/libraries/net/minecraft/client/1.19.2-20220805.130853/client-1.19.2-20220805.130853-srg.jar%23649!/data/.mcassetsroot' uses unexpected schema [05Nov2024 14:11:11.305] [Render thread/ERROR] [net.minecraft.server.packs.VanillaPackResources/]: File /things/.mcassetsroot does not exist in classpath [05Nov2024 14:11:11.380] [Render thread/INFO] [com.mojang.authlib.yggdrasil.YggdrasilAuthenticationService/]: Environment: authHost='https://authserver.mojang.com', accountsHost='https://api.mojang.com', sessionHost='https://sessionserver.mojang.com', servicesHost='https://api.minecraftservices.com', name='PROD' [05Nov2024 14:11:11.770] [Render thread/INFO] [net.minecraft.client.Minecraft/]: Setting user: LEGENDARYSHARK07 [05Nov2024 14:11:11.855] [Render thread/INFO] [ModernFix/]: Bypassed Mojang DFU [05Nov2024 14:11:11.856] [Render thread/INFO] [mixin/]: Mixing client.MixinToastComponent from nochatreports.mixins.json into net.minecraft.client.gui.components.toasts.ToastComponent [05Nov2024 14:11:11.862] [Render thread/INFO] [mixin/]: Mixing client.MixinOptions from nochatreports.mixins.json into net.minecraft.client.Options [05Nov2024 14:11:11.863] [Render thread/INFO] [mixin/]: Renaming synthetic method lambda$onlyShowSecureChat$1(Ljava/lang/Boolean;)V to md49b64c$lambda$onlyShowSecureChat$1$0 in nochatreports.mixins.json:client.MixinOptions [05Nov2024 14:11:11.863] [Render thread/INFO] [mixin/]: Renaming synthetic method lambda$onlyShowSecureChat$0(Lnet/minecraft/network/chat/Component;Ljava/lang/Boolean;)Lnet/minecraft/network/chat/Component; to md49b64c$lambda$onlyShowSecureChat$0$1 in nochatreports.mixins.json:client.MixinOptions [05Nov2024 14:11:11.909] [Render thread/INFO] [mixin/]: Mixing client.MixinChatComponent from nochatreports.mixins.json into net.minecraft.client.gui.components.ChatComponent [05Nov2024 14:11:11.909] [Render thread/INFO] [mixin/]: Renaming synthetic method lambda$modifyGUIMessage$1()V to md49b64c$lambda$modifyGUIMessage$1$0 in nochatreports.mixins.json:client.MixinChatComponent [05Nov2024 14:11:11.909] [Render thread/INFO] [mixin/]: Renaming synthetic method lambda$modifyGUIMessage$0(Lnet/minecraft/network/chat/FormattedText;Lnet/minecraft/network/chat/Component;)V to md49b64c$lambda$modifyGUIMessage$0$1 in nochatreports.mixins.json:client.MixinChatComponent [05Nov2024 14:11:11.931] [Render thread/INFO] [mixin/]: Mixing client.MixinGuiMessageTagIcon from nochatreports.mixins.json into net.minecraft.client.GuiMessageTag$Icon [05Nov2024 14:11:11.932] [Render thread/INFO] [mixin/]: Renaming @Invoker method create(Ljava/lang/String;IIIII)Lnet/minecraft/client/GuiMessageTag$Icon; to create_$md$49b64c$0 in nochatreports.mixins.json:client.MixinGuiMessageTagIcon [05Nov2024 14:11:12.074] [Render thread/INFO] [net.minecraft.client.Minecraft/]: Backend library: LWJGL version 3.3.1 build 7 [05Nov2024 14:11:12.129] [Render thread/INFO] [KubeJS/]: Loaded client.properties [05Nov2024 14:11:12.542] [Render thread/INFO] [ImmediatelyFast/]: Initializing ImmediatelyFast 1.2.21+1.19.2 on NVIDIA GeForce RTX 3060/PCIe/SSE2 (NVIDIA Corporation) with OpenGL 3.2.0 NVIDIA 565.90 [05Nov2024 14:11:13.103] [modloading-worker-0/INFO] [mixin/]: Mixing forge.client.MixinClientConnection from nochatreports.mixins.json into net.minecraft.network.Connection [05Nov2024 14:11:13.176] [modloading-worker-0/INFO] [hordes/]: Trying to load common config [05Nov2024 14:11:13.189] [modloading-worker-0/INFO] [mixin/]: Mixing server.MixinPlayerList from nochatreports.mixins.json into net.minecraft.server.players.PlayerList [05Nov2024 14:11:13.213] [modloading-worker-0/INFO] [hordes/]: Trying to load client config [05Nov2024 14:11:13.234] [modloading-worker-0/INFO] [hordes/]: Config files are up to date, skipping data/asset generation [05Nov2024 14:11:13.247] [modloading-worker-0/INFO] [dev.limonblaze.oriacs.common.Oriacs/]: Origins: Accessibilities 1.1.0 has initialized. Ready to make your Origins life easier! [05Nov2024 14:11:13.275] [modloading-worker-0/INFO] [HammerLib/]: Using fallback vertex consumers since Rubidium is detected. [05Nov2024 14:11:13.444] [modloading-worker-0/INFO] [dev.wuffs.bcc.BCC/]: Better Compatibility Checker loading [05Nov2024 14:11:13.448] [modloading-worker-0/INFO] [Discord Integration/]: Version is 3.0.5 [05Nov2024 14:11:13.450] [modloading-worker-0/INFO] [PluginManager/]: Scanning classes for industrialforegoing [05Nov2024 14:11:13.454] [modloading-worker-0/WARN] [mixin/]: Static binding violation: PRIVATE @Overwrite method m_215924_ in modernfix-forge.mixins.json:perf.tag_id_caching.TagEntryMixin cannot reduce visibiliy of PUBLIC target method, visibility will be upgraded. [05Nov2024 14:11:13.455] [modloading-worker-0/INFO] [PluginManager/]: Found FeaturePluginInstance for class CuriosPlugin for plugin curios [05Nov2024 14:11:13.457] [modloading-worker-0/INFO] [PluginManager/]: Constructed class CuriosPlugin for plugin curios for mod industrialforegoing [05Nov2024 14:11:13.457] [modloading-worker-0/INFO] [PluginManager/]: Executing phase CONSTRUCTION for plugin class CuriosPlugin [05Nov2024 14:11:13.475] [modloading-worker-0/INFO] [PluginManager/]: Executing phase PRE_INIT for plugin class CuriosPlugin [05Nov2024 14:11:13.670] [modloading-worker-0/INFO] [me.wesley1808.servercore.common.ServerCore/]: [ServerCore] Loaded V1.3.6+1.19.2! [05Nov2024 14:11:13.673] [modloading-worker-0/INFO] [io.github.apace100.origins.Origins/]: Origins 1.19.2-1.7.1.7 is initializing. Have fun! [05Nov2024 14:11:13.749] [modloading-worker-0/ERROR] [Discord Integration/]: This mod cannot be used client-side [05Nov2024 14:11:13.830] [modloading-worker-0/INFO] [PluginManager/]: Executing phase INIT for plugin class CuriosPlugin [05Nov2024 14:11:13.962] [modloading-worker-0/INFO] [PluginManager/]: Executing phase POST_INIT for plugin class CuriosPlugin [05Nov2024 14:11:14.027] [modloading-worker-0/WARN] [mixin/]: @Redirect conflict. Skipping forge-badoptimizations.mixins-common.json:MixinWorldRenderer->@Redirect::getSkyAngle(Lnet/minecraft/client/multiplayer/ClientLevel;F)F with priority 700, already redirected by citadel.mixins.json:client.LevelRendererMixin->@Redirect::citadel_getTimeOfDay(Lnet/minecraft/client/multiplayer/ClientLevel;F)F with priority 1000 [05Nov2024 14:11:14.110] [modloading-worker-0/INFO] [dynamic_fps/]: Dynamic FPS 3.7.3 active on Forge! [05Nov2024 14:11:14.141] [modloading-worker-0/INFO] [HammerLib/]: Registered charge handler for type org.zeith.hammerlib.util.charging.fluid.FluidCharge - org.zeith.hammerlib.util.charging.impl.FluidChargeHandler@23c314da [05Nov2024 14:11:14.143] [modloading-worker-0/INFO] [HammerLib/]: Registered charge handler for type org.zeith.hammerlib.util.charging.fe.FECharge - org.zeith.hammerlib.util.charging.impl.FEChargeHandler@17a68e78 [05Nov2024 14:11:14.159] [modloading-worker-0/INFO] [HammerLib/]: Registered inventory lister org.zeith.hammerlib.util.charging.impl.VanillaPlayerInvLister [05Nov2024 14:11:14.209] [modloading-worker-0/INFO] [HammerLib/]: Hooked Lorg/zeith/hammerlib/core/test/machine/TileTestMachine; from hammerlib to register it's stuff. [05Nov2024 14:11:14.210] [modloading-worker-0/INFO] [HammerLib/]: Hooked Lorg/zeith/hammerlib/core/test/machine/RecipeTestMachine; from hammerlib to register it's stuff. [05Nov2024 14:11:14.211] [modloading-worker-0/INFO] [HammerLib/]: Hooked Lorg/zeith/hammerlib/core/test/machine/BlockTestMachine; from hammerlib to register it's stuff. [05Nov2024 14:11:14.211] [modloading-worker-0/INFO] [HammerLib/]: Hooked Lorg/zeith/hammerlib/core/items/ItemWrench; from hammerlib to register it's stuff. [05Nov2024 14:11:14.211] [modloading-worker-0/INFO] [HammerLib/]: Hooked Lorg/zeith/hammerlib/core/init/SourceTypesHL; from hammerlib to register it's stuff. [05Nov2024 14:11:14.212] [modloading-worker-0/INFO] [HammerLib/]: Hooked Lorg/zeith/hammerlib/core/init/LevelActionTypesHL; from hammerlib to register it's stuff. [05Nov2024 14:11:14.212] [modloading-worker-0/INFO] [HammerLib/]: Hooked Lorg/zeith/hammerlib/api/forge/ContainerAPI; from hammerlib to register it's stuff. [05Nov2024 14:11:14.212] [modloading-worker-0/INFO] [HammerLib/]: Hooked Lorg/zeith/squarry/items/ItemSilkUpgrade; from squarry to register it's stuff. [05Nov2024 14:11:14.212] [modloading-worker-0/INFO] [HammerLib/]: Hooked Lorg/zeith/squarry/inventory/ContainerFilter; from squarry to register it's stuff. [05Nov2024 14:11:14.212] [modloading-worker-0/INFO] [HammerLib/]: Hooked Lorg/zeith/squarry/init/ItemsSQ; from squarry to register it's stuff. [05Nov2024 14:11:14.213] [modloading-worker-0/INFO] [HammerLib/]: Hooked Lorg/zeith/squarry/blocks/entity/TilePoweredQuarry; from squarry to register it's stuff. [05Nov2024 14:11:14.213] [modloading-worker-0/INFO] [HammerLib/]: Hooked Lorg/zeith/squarry/blocks/entity/TileFuelQuarry; from squarry to register it's stuff. [05Nov2024 14:11:14.213] [modloading-worker-0/INFO] [HammerLib/]: Hooked Lorg/zeith/squarry/blocks/BlockPoweredQuarry; from squarry to register it's stuff. [05Nov2024 14:11:14.213] [modloading-worker-0/INFO] [HammerLib/]: Hooked Lorg/zeith/squarry/blocks/BlockFuelQuarry; from squarry to register it's stuff. [05Nov2024 14:11:14.395] [modloading-worker-0/INFO] [HammerLib/]: Using fallback vertex consumers since Rubidium is detected. [05Nov2024 14:11:14.428] [modloading-worker-0/INFO] [HammerLib/]: Injecting setup into org.zeith.hammerlib.net.Network [05Nov2024 14:11:14.431] [modloading-worker-0/INFO] [HammerLib/]: Injecting setup into org.zeith.hammerlib.client.pipelines.shaders.VariableShaderProgram [05Nov2024 14:11:14.515] [modloading-worker-0/INFO] [Puzzles Lib/]: Constructing client components for mod enchantinginfuser [05Nov2024 14:11:14.569] [modloading-worker-0/INFO] [Puzzles Lib/]: Constructing common components for mod enchantinginfuser [05Nov2024 14:11:14.736] [modloading-worker-0/WARN] [mixin/]: Method overwrite conflict for extractPools in enhancedcelestials.mixins.json:MixinLootTableManager, previously written by potionstudios.byg.mixin.common.world.level.storage.loot.MixinLootTableManager. Skipping method. [05Nov2024 14:11:14.774] [modloading-worker-0/INFO] [io.github.apace100.apoli.Apoli/]: Apoli 1.19.2-2.6.1.7 has initialized. Ready to power up your game! [05Nov2024 14:11:14.950] [modloading-worker-0/ERROR] [appeng.client.guidebook.Guide/]: Specified invalid page id in system property guideDev.ae2guide.startupPage [05Nov2024 14:11:15.097] [modloading-worker-0/INFO] [net.minecraftforge.common.ForgeMod/FORGEMOD]: Forge mod loading, version 43.4.2, for MC 1.19.2 with MCP 20220805.130853 [05Nov2024 14:11:15.097] [modloading-worker-0/INFO] [net.minecraftforge.common.MinecraftForge/FORGE]: MinecraftForge v43.4.2 Initialized [05Nov2024 14:11:15.270] [modloading-worker-0/INFO] [com.aizistral.nochatreports.NoChatReports/]: KONNICHIWA ZA WARUDO! [05Nov2024 14:11:15.270] [modloading-worker-0/INFO] [betterfarmland/]: Loading BetterFarmland version 1.0.3 [05Nov2024 14:11:15.271] [modloading-worker-0/INFO] [com.aizistral.nochatreports.NoChatReports/]: Default JVM text encoding is: windows-1252 [05Nov2024 14:11:15.286] [modloading-worker-0/INFO] [com.aizistral.nochatreports.NoChatReports/]: Reading config file NoChatReports/NCR-Common.json... [05Nov2024 14:11:15.290] [modloading-worker-0/INFO] [betterfarmland/]: The config loaded in 1 cycles. [05Nov2024 14:11:15.304] [modloading-worker-0/INFO] [com.aizistral.nochatreports.NoChatReports/]: Reading config file NoChatReports/NCR-Client.json... [05Nov2024 14:11:15.316] [modloading-worker-0/INFO] [com.aizistral.nochatreports.NoChatReports/]: Reading config file NoChatReports/NCR-ServerWhitelist.json... [05Nov2024 14:11:15.325] [modloading-worker-0/INFO] [pcf/]: Initializing Proxy Compatible Forge on Minecraft 1.19.2 (Forge 43.4.2) [05Nov2024 14:11:15.331] [modloading-worker-0/INFO] [com.aizistral.nochatreports.NoChatReports/]: Reading config file NoChatReports/NCR-Encryption.json... [05Nov2024 14:11:15.338] [modloading-worker-0/INFO] [Calio/]: Calio 1.19.2-1.7.0.4 initializing... [05Nov2024 14:11:15.409] [modloading-worker-0/INFO] [com.jozufozu.flywheel.backend.Backend/]: No shaders mod detected. [05Nov2024 14:11:15.420] [modloading-worker-0/INFO] [com.aizistral.nochatreports.NoChatReports/]: Writing config file NoChatReports/NCR-Common.json... [05Nov2024 14:11:15.422] [modloading-worker-0/INFO] [com.aizistral.nochatreports.NoChatReports/]: Writing config file NoChatReports/NCR-Client.json... [05Nov2024 14:11:15.424] [modloading-worker-0/INFO] [com.aizistral.nochatreports.NoChatReports/]: Writing config file NoChatReports/NCR-ServerWhitelist.json... [05Nov2024 14:11:15.426] [modloading-worker-0/INFO] [com.aizistral.nochatreports.NoChatReports/]: Writing config file NoChatReports/NCR-Encryption.json... [05Nov2024 14:11:15.431] [modloading-worker-0/INFO] [mixin/]: Mixing client.MixinJoinMultiplayerScreen from nochatreports.mixins.json into net.minecraft.client.gui.screens.multiplayer.JoinMultiplayerScreen [05Nov2024 14:11:15.432] [modloading-worker-0/INFO] [mixin/]: Renaming synthetic method lambda$onInit$3(Lnet/minecraft/client/gui/components/Button;Lcom/mojang/blaze3d/vertex/PoseStack;II)V to md49b64c$lambda$onInit$3$0 in nochatreports.mixins.json:client.MixinJoinMultiplayerScreen [05Nov2024 14:11:15.432] [modloading-worker-0/INFO] [mixin/]: Renaming synthetic method lambda$onInit$2(Lnet/minecraft/client/gui/components/Button;)V to md49b64c$lambda$onInit$2$1 in nochatreports.mixins.json:client.MixinJoinMultiplayerScreen [05Nov2024 14:11:15.433] [modloading-worker-0/INFO] [mixin/]: Renaming synthetic method lambda$onInit$1(Lnet/minecraft/client/gui/components/Button;Lcom/mojang/blaze3d/vertex/PoseStack;II)V to md49b64c$lambda$onInit$1$2 in nochatreports.mixins.json:client.MixinJoinMultiplayerScreen [05Nov2024 14:11:15.433] [modloading-worker-0/INFO] [mixin/]: Renaming synthetic method lambda$onInit$0(Lnet/minecraft/client/gui/components/Button;)V to md49b64c$lambda$onInit$0$3 in nochatreports.mixins.json:client.MixinJoinMultiplayerScreen [05Nov2024 14:11:15.460] [modloading-worker-0/INFO] [mixin/]: Mixing client.AccessorDisconnectedScreen from nochatreports.mixins.json into net.minecraft.client.gui.screens.DisconnectedScreen [05Nov2024 14:11:15.573] [modloading-worker-0/INFO] [mixin/]: Mixing server.MixinServerGamePacketListenerImpl from nochatreports.mixins.json into net.minecraft.server.network.ServerGamePacketListenerImpl [05Nov2024 14:11:15.630] [modloading-worker-0/INFO] [Puzzles Lib/]: Constructing common components for mod puzzleslib [05Nov2024 14:11:15.882] [modloading-worker-0/WARN] [euphoriaPatches/]: EuphoriaPatcher: [UPDATE CHECKER] A new version of the EuphoriaPatcher Mod is available: 1.4.3 [05Nov2024 14:11:15.882] [modloading-worker-0/WARN] [euphoriaPatches/]: EuphoriaPatcher: [UPDATE CHECKER] Download it from Modrinth: https://euphoriapatches.com/download [05Nov2024 14:11:15.883] [modloading-worker-0/INFO] [euphoriaPatches/]: EuphoriaPatcher: [UPDATE CHECKER] Current Version: 1.4.1 [05Nov2024 14:11:15.883] [modloading-worker-0/INFO] [euphoriaPatches/]: EuphoriaPatcher: [UPDATE CHECKER] Check logs for more info [05Nov2024 14:11:15.887] [modloading-worker-0/INFO] [euphoriaPatches/]: EuphoriaPatcher: Folding space-time... carefully now. [05Nov2024 14:11:15.889] [modloading-worker-0/INFO] [euphoriaPatches/]: EuphoriaPatcher: EuphoriaPatches_1.4.1 is already installed. [05Nov2024 14:11:16.093] [modloading-worker-0/INFO] [unionlib/]: Starting up: unionlib [05Nov2024 14:11:16.116] [modloading-worker-0/INFO] [euphoriaPatches/]: EuphoriaPatcher: Thank you for using Euphoria Patches - SpacEagle17 [05Nov2024 14:11:16.533] [modloading-worker-0/INFO] [Bookshelf/]: Fixing MC-151457. Crafting remainder for minecraft:pufferfish_bucket is now minecraft:bucket. [05Nov2024 14:11:16.533] [modloading-worker-0/INFO] [Bookshelf/]: Fixing MC-151457. Crafting remainder for minecraft:salmon_bucket is now minecraft:bucket. [05Nov2024 14:11:16.533] [modloading-worker-0/INFO] [Bookshelf/]: Fixing MC-151457. Crafting remainder for minecraft:cod_bucket is now minecraft:bucket. [05Nov2024 14:11:16.533] [modloading-worker-0/INFO] [Bookshelf/]: Fixing MC-151457. Crafting remainder for minecraft:tropical_fish_bucket is now minecraft:bucket. [05Nov2024 14:11:16.533] [modloading-worker-0/INFO] [Bookshelf/]: Fixing MC-151457. Crafting remainder for minecraft:axolotl_bucket is now minecraft:bucket. [05Nov2024 14:11:16.533] [modloading-worker-0/INFO] [Bookshelf/]: Fixing MC-151457. Crafting remainder for minecraft:powder_snow_bucket is now minecraft:bucket. [05Nov2024 14:11:16.534] [modloading-worker-0/INFO] [Bookshelf/]: Fixing MC-151457. Crafting remainder for minecraft:tadpole_bucket is now minecraft:bucket. [05Nov2024 14:11:17.028] [modloading-worker-0/INFO] [de.keksuccino.konkrete.Konkrete/]: [KONKRETE] Successfully initialized! [05Nov2024 14:11:17.029] [modloading-worker-0/INFO] [de.keksuccino.konkrete.Konkrete/]: [KONKRETE] Server-side libs ready to use! [05Nov2024 14:11:17.082] [modloading-worker-0/INFO] [thedarkcolour.kotlinforforge.test.KotlinForForge/]: Kotlin For Forge Enabled! [05Nov2024 14:11:17.200] [modloading-worker-0/INFO] [me.fallenbreath.fastipping.FastIpPingMod/]: ping & connect fast! [05Nov2024 14:11:17.587] [modloading-worker-0/INFO] [Collective/]: Loading Collective version 7.64. [05Nov2024 14:11:17.623] [modloading-worker-0/INFO] [dev.limonblaze.originsclasses.OriginsClasses/]: Origins:Classes 1.2.1 has initialized. Time for work! [05Nov2024 14:11:17.715] [modloading-worker-0/INFO] [UnionLib Registry/]: Registering Attributes in class com.stereowalker.unionlib.world.entity.ai.UAttributes [05Nov2024 14:11:17.719] [modloading-worker-0/INFO] [UnionLib Registry/]: Registering Items in class com.stereowalker.unionlib.world.item.UItems [05Nov2024 14:11:17.722] [modloading-worker-0/INFO] [UnionLib Registry/]: Registering MenuTypes in class com.stereowalker.unionlib.world.inventory.UMenuType [05Nov2024 14:11:17.725] [modloading-worker-0/INFO] [UnionLib Registry/]: Registering RecipeSerializers in class com.stereowalker.unionlib.world.item.crafting.URecipeSerializer [05Nov2024 14:11:17.734] [modloading-worker-0/INFO] [UnionLib Registry/]: Registering Blocks in class com.stereowalker.survive.world.level.block.SBlocks [05Nov2024 14:11:17.741] [modloading-worker-0/INFO] [UnionLib Registry/]: Registering Fluids in class com.stereowalker.survive.world.level.material.SFluids [05Nov2024 14:11:17.752] [modloading-worker-0/INFO] [UnionLib Registry/]: Registering Items in class com.stereowalker.survive.world.item.SItems [05Nov2024 14:11:17.759] [modloading-worker-0/INFO] [UnionLib Registry/]: Registering Items in class com.stereowalker.survive.world.item.HygieneItems [05Nov2024 14:11:17.763] [modloading-worker-0/INFO] [UnionLib Registry/]: Registering RecipeSerializers in class com.stereowalker.survive.world.item.crafting.SRecipeSerializer [05Nov2024 14:11:17.769] [modloading-worker-0/INFO] [UnionLib Registry/]: Registering Attributes in class com.stereowalker.survive.world.entity.ai.attributes.SAttributes [05Nov2024 14:11:17.771] [modloading-worker-0/INFO] [UnionLib Registry/]: Registering MobEffects in class com.stereowalker.survive.world.effect.SMobEffects [05Nov2024 14:11:17.776] [modloading-worker-0/INFO] [unionlib/]: Starting up: survive [05Nov2024 14:11:17.914] [modloading-worker-0/WARN] [net.minecraftforge.common.ForgeConfigSpec/CORE]: Configuration file C:\Users\hstoe\AppData\Roaming\ModrinthApp\profiles\The Haunted SMP 2.0 1.5.1\config\Survive Configs\stamina-server.toml is not correct. Correcting [05Nov2024 14:11:17.917] [modloading-worker-0/WARN] [net.minecraftforge.common.ForgeConfigSpec/CORE]: Incorrect key Ideal Amount Of Sleep was corrected from 6000 to its default, 6000. [05Nov2024 14:11:18.017] [modloading-worker-0/INFO] [dev.architectury.networking.forge.NetworkManagerImpl/]: Registering S2C receiver with id architectury:sync_ids [05Nov2024 14:11:18.020] [modloading-worker-0/INFO] [dev.architectury.networking.forge.NetworkManagerImpl/]: Registering C2S receiver with id architectury:sync_ids [05Nov2024 14:11:18.020] [modloading-worker-0/INFO] [dev.architectury.networking.forge.NetworkManagerImpl/]: Registering S2C receiver with id ftblibrary:edit_nbt [05Nov2024 14:11:18.020] [modloading-worker-0/INFO] [dev.architectury.networking.forge.NetworkManagerImpl/]: Registering S2C receiver with id ftbteams:sync_teams [05Nov2024 14:11:18.022] [modloading-worker-0/INFO] [dev.architectury.networking.forge.NetworkManagerImpl/]: Registering S2C receiver with id ftbteams:sync_message_history [05Nov2024 14:11:18.024] [modloading-worker-0/INFO] [dev.architectury.networking.forge.NetworkManagerImpl/]: Registering C2S receiver with id ftblibrary:edit_nbt_response [05Nov2024 14:11:18.024] [modloading-worker-0/INFO] [dev.architectury.networking.forge.NetworkManagerImpl/]: Registering C2S receiver with id ftbteams:open_gui [05Nov2024 14:11:18.026] [modloading-worker-0/INFO] [dev.architectury.networking.forge.NetworkManagerImpl/]: Registering S2C receiver with id ftblibrary:sync_known_server_registries [05Nov2024 14:11:18.026] [modloading-worker-0/INFO] [dev.architectury.networking.forge.NetworkManagerImpl/]: Registering S2C receiver with id ftbteams:open_my_team_gui [05Nov2024 14:11:18.029] [modloading-worker-0/INFO] [dev.architectury.networking.forge.NetworkManagerImpl/]: Registering C2S receiver with id ftbteams:update_settings [05Nov2024 14:11:18.030] [modloading-worker-0/INFO] [dev.architectury.networking.forge.NetworkManagerImpl/]: Registering S2C receiver with id ftbteams:update_settings_response [05Nov2024 14:11:18.032] [modloading-worker-0/INFO] [dev.architectury.networking.forge.NetworkManagerImpl/]: Registering C2S receiver with id ftbteams:send_message [05Nov2024 14:11:18.034] [modloading-worker-0/INFO] [dev.architectury.networking.forge.NetworkManagerImpl/]: Registering S2C receiver with id ftbteams:send_message_response [05Nov2024 14:11:18.037] [modloading-worker-0/INFO] [dev.architectury.networking.forge.NetworkManagerImpl/]: Registering S2C receiver with id ftbteams:update_presence [05Nov2024 14:11:18.039] [modloading-worker-0/INFO] [dev.architectury.networking.forge.NetworkManagerImpl/]: Registering C2S receiver with id ftbteams:create_party [05Nov2024 14:11:18.042] [modloading-worker-0/INFO] [dev.architectury.networking.forge.NetworkManagerImpl/]: Registering C2S receiver with id ftbteams:player_gui_operation [05Nov2024 14:11:18.179] [modloading-worker-0/INFO] [KubeJS/]: Looking for KubeJS plugins... [05Nov2024 14:11:18.188] [modloading-worker-0/INFO] [KubeJS/]: Found plugin source kubejs [05Nov2024 14:11:18.214] [modloading-worker-0/INFO] [KubeJS/]: Loaded common.properties [05Nov2024 14:11:18.224] [modloading-worker-0/INFO] [KubeJS/]: Loaded dev.properties [05Nov2024 14:11:18.225] [modloading-worker-0/WARN] [KubeJS/]: Plugin dev.latvian.mods.kubejs.integration.forge.gamestages.GameStagesIntegration does not have required mod gamestages loaded, skipping [05Nov2024 14:11:18.225] [modloading-worker-0/INFO] [KubeJS/]: Found plugin source ftbxmodcompat [05Nov2024 14:11:18.230] [modloading-worker-0/WARN] [KubeJS/]: Plugin dev.ftb.mods.ftbxmodcompat.ftbchunks.kubejs.FTBChunksKubeJSPlugin does not have required mod ftbchunks loaded, skipping [05Nov2024 14:11:18.239] [modloading-worker-0/INFO] [KubeJS/]: Found plugin source modonomicon [05Nov2024 14:11:18.348] [modloading-worker-0/INFO] [dev.architectury.networking.forge.NetworkManagerImpl/]: Registering C2S receiver with id itemfilters:main/14e7fa1454283aec8ae811ef844ada28 [05Nov2024 14:11:18.349] [modloading-worker-0/INFO] [KubeJS/]: Done in 168.0 ms [05Nov2024 14:11:18.349] [modloading-worker-0/INFO] [dev.architectury.networking.forge.NetworkManagerImpl/]: Registering S2C receiver with id itemfilters:main/14e7fa1454283aec8ae811ef844ada28 [05Nov2024 14:11:18.351] [modloading-worker-0/INFO] [dev.architectury.networking.forge.NetworkManagerImpl/]: Registering C2S receiver with id itemfilters:main/8f6a899247753217b9d86ab427a2b279 [05Nov2024 14:11:18.352] [modloading-worker-0/INFO] [dev.architectury.networking.forge.NetworkManagerImpl/]: Registering S2C receiver with id itemfilters:main/8f6a899247753217b9d86ab427a2b279 [05Nov2024 14:11:18.386] [modloading-worker-0/INFO] [FTB Library/]: Setting game stages provider implementation to: KubeJS Stages [05Nov2024 14:11:18.387] [modloading-worker-0/INFO] [FTB XMod Compat/]: Chose [KubeJS Stages] as the active game stages implementation [05Nov2024 14:11:18.391] [modloading-worker-0/INFO] [FTB XMod Compat/]: Chose [FALLBACK] as the active permissions implementation [05Nov2024 14:11:18.395] [modloading-worker-0/INFO] [FTB XMod Compat/]: [FTB Quests] recipe helper provider is [JEI] [05Nov2024 14:11:18.548] [modloading-worker-0/INFO] [dev.architectury.networking.forge.NetworkManagerImpl/]: Registering S2C receiver with id ftbquests:sync_quests [05Nov2024 14:11:18.551] [modloading-worker-0/INFO] [dev.architectury.networking.forge.NetworkManagerImpl/]: Registering S2C receiver with id ftbquests:sync_team_data [05Nov2024 14:11:18.554] [modloading-worker-0/INFO] [dev.architectury.networking.forge.NetworkManagerImpl/]: Registering S2C receiver with id ftbquests:update_task_progress [05Nov2024 14:11:18.557] [modloading-worker-0/INFO] [dev.architectury.networking.forge.NetworkManagerImpl/]: Registering C2S receiver with id ftbquests:submit_task [05Nov2024 14:11:18.561] [modloading-worker-0/INFO] [dev.architectury.networking.forge.NetworkManagerImpl/]: Registering C2S receiver with id ftbquests:claim_reward [05Nov2024 14:11:18.564] [modloading-worker-0/INFO] [dev.architectury.networking.forge.NetworkManagerImpl/]: Registering S2C receiver with id ftbquests:claim_reward_response [05Nov2024 14:11:18.567] [modloading-worker-0/INFO] [dev.architectury.networking.forge.NetworkManagerImpl/]: Registering S2C receiver with id ftbquests:sync_editing_mode [05Nov2024 14:11:18.571] [modloading-worker-0/INFO] [dev.architectury.networking.forge.NetworkManagerImpl/]: Registering C2S receiver with id ftbquests:get_emergency_items [05Nov2024 14:11:18.578] [modloading-worker-0/INFO] [dev.architectury.networking.forge.NetworkManagerImpl/]: Registering S2C receiver with id ftbquests:create_other_team_data [05Nov2024 14:11:18.580] [modloading-worker-0/INFO] [dev.architectury.networking.forge.NetworkManagerImpl/]: Registering C2S receiver with id ftbquests:claim_all_rewards [05Nov2024 14:11:18.583] [modloading-worker-0/INFO] [dev.architectury.networking.forge.NetworkManagerImpl/]: Registering C2S receiver with id ftbquests:claim_choice_reward [05Nov2024 14:11:18.586] [modloading-worker-0/INFO] [dev.architectury.networking.forge.NetworkManagerImpl/]: Registering S2C receiver with id ftbquests:display_completion_toast [05Nov2024 14:11:18.589] [modloading-worker-0/INFO] [dev.architectury.networking.forge.NetworkManagerImpl/]: Registering S2C receiver with id ftbquests:display_reward_toast [05Nov2024 14:11:18.592] [modloading-worker-0/INFO] [dev.architectury.networking.forge.NetworkManagerImpl/]: Registering S2C receiver with id ftbquests:display_item_reward_toast [05Nov2024 14:11:18.595] [modloading-worker-0/INFO] [dev.architectury.networking.forge.NetworkManagerImpl/]: Registering C2S receiver with id ftbquests:toggle_pinned [05Nov2024 14:11:18.597] [modloading-worker-0/INFO] [dev.architectury.networking.forge.NetworkManagerImpl/]: Registering S2C receiver with id ftbquests:toggle_pinned_response [05Nov2024 14:11:18.600] [modloading-worker-0/INFO] [dev.architectury.networking.forge.NetworkManagerImpl/]: Registering C2S receiver with id ftbquests:toggle_chapter_pinned [05Nov2024 14:11:18.604] [modloading-worker-0/INFO] [dev.architectury.networking.forge.NetworkManagerImpl/]: Registering S2C receiver with id ftbquests:toggle_chapter_pinned_response [05Nov2024 14:11:18.607] [modloading-worker-0/INFO] [dev.architectury.networking.forge.NetworkManagerImpl/]: Registering C2S receiver with id ftbquests:toggle_editing_mode [05Nov2024 14:11:18.609] [modloading-worker-0/INFO] [dev.architectury.networking.forge.NetworkManagerImpl/]: Registering C2S receiver with id ftbquests:force_save [05Nov2024 14:11:18.612] [modloading-worker-0/INFO] [dev.architectury.networking.forge.NetworkManagerImpl/]: Registering S2C receiver with id ftbquests:update_team_data [05Nov2024 14:11:18.615] [modloading-worker-0/INFO] [dev.architectury.networking.forge.NetworkManagerImpl/]: Registering C2S receiver with id ftbquests:set_custom_image [05Nov2024 14:11:18.618] [modloading-worker-0/INFO] [dev.architectury.networking.forge.NetworkManagerImpl/]: Registering S2C receiver with id ftbquests:object_started [05Nov2024 14:11:18.621] [modloading-worker-0/INFO] [dev.architectury.networking.forge.NetworkManagerImpl/]: Registering S2C receiver with id ftbquests:object_completed [05Nov2024 14:11:18.623] [modloading-worker-0/INFO] [dev.architectury.networking.forge.NetworkManagerImpl/]: Registering S2C receiver with id ftbquests:object_started_reset [05Nov2024 14:11:18.626] [modloading-worker-0/INFO] [dev.architectury.networking.forge.NetworkManagerImpl/]: Registering S2C receiver with id ftbquests:object_completed_reset [05Nov2024 14:11:18.628] [modloading-worker-0/INFO] [dev.architectury.networking.forge.NetworkManagerImpl/]: Registering S2C receiver with id ftbquests:sync_lock [05Nov2024 14:11:18.631] [modloading-worker-0/INFO] [dev.architectury.networking.forge.NetworkManagerImpl/]: Registering S2C receiver with id ftbquests:reset_reward [05Nov2024 14:11:18.633] [modloading-worker-0/INFO] [dev.architectury.networking.forge.NetworkManagerImpl/]: Registering S2C receiver with id ftbquests:team_data_changed [05Nov2024 14:11:18.637] [modloading-worker-0/INFO] [dev.architectury.networking.forge.NetworkManagerImpl/]: Registering S2C receiver with id ftbquests:task_screen_config_req [05Nov2024 14:11:18.639] [modloading-worker-0/INFO] [dev.architectury.networking.forge.NetworkManagerImpl/]: Registering C2S receiver with id ftbquests:task_screen_config_resp [05Nov2024 14:11:18.641] [modloading-worker-0/INFO] [FTB XMod Compat/]: FTB Quests: Enabled KubeJS integration [05Nov2024 14:11:18.648] [modloading-worker-0/INFO] [dev.architectury.networking.forge.NetworkManagerImpl/]: Registering C2S receiver with id ftbquests:change_progress [05Nov2024 14:11:18.651] [modloading-worker-0/INFO] [dev.architectury.networking.forge.NetworkManagerImpl/]: Registering C2S receiver with id ftbquests:create_object [05Nov2024 14:11:18.654] [modloading-worker-0/INFO] [dev.architectury.networking.forge.NetworkManagerImpl/]: Registering S2C receiver with id ftbquests:create_object_response [05Nov2024 14:11:18.657] [modloading-worker-0/INFO] [dev.architectury.networking.forge.NetworkManagerImpl/]: Registering C2S receiver with id ftbquests:create_task_at [05Nov2024 14:11:18.660] [modloading-worker-0/INFO] [dev.architectury.networking.forge.NetworkManagerImpl/]: Registering C2S receiver with id ftbquests:delete_object [05Nov2024 14:11:18.662] [modloading-worker-0/INFO] [dev.architectury.networking.forge.NetworkManagerImpl/]: Registering S2C receiver with id ftbquests:delete_object_response [05Nov2024 14:11:18.665] [modloading-worker-0/INFO] [dev.architectury.networking.forge.NetworkManagerImpl/]: Registering C2S receiver with id ftbquests:edit_object [05Nov2024 14:11:18.668] [modloading-worker-0/INFO] [dev.architectury.networking.forge.NetworkManagerImpl/]: Registering S2C receiver with id ftbquests:edit_object_response [05Nov2024 14:11:18.671] [modloading-worker-0/INFO] [dev.architectury.networking.forge.NetworkManagerImpl/]: Registering C2S receiver with id ftbquests:move_chapter [05Nov2024 14:11:18.673] [modloading-worker-0/INFO] [dev.architectury.networking.forge.NetworkManagerImpl/]: Registering S2C receiver with id ftbquests:move_chapter_response [05Nov2024 14:11:18.676] [modloading-worker-0/INFO] [dev.architectury.networking.forge.NetworkManagerImpl/]: Registering C2S receiver with id ftbquests:move_quest [05Nov2024 14:11:18.679] [modloading-worker-0/INFO] [dev.architectury.networking.forge.NetworkManagerImpl/]: Registering S2C receiver with id ftbquests:move_quest_response [05Nov2024 14:11:18.682] [modloading-worker-0/INFO] [dev.architectury.networking.forge.NetworkManagerImpl/]: Registering C2S receiver with id ftbquests:change_chapter_group [05Nov2024 14:11:18.685] [modloading-worker-0/INFO] [dev.architectury.networking.forge.NetworkManagerImpl/]: Registering S2C receiver with id ftbquests:change_chapter_group_response [05Nov2024 14:11:18.687] [modloading-worker-0/INFO] [dev.architectury.networking.forge.NetworkManagerImpl/]: Registering C2S receiver with id ftbquests:move_chapter_group [05Nov2024 14:11:18.690] [modloading-worker-0/INFO] [dev.architectury.networking.forge.NetworkManagerImpl/]: Registering S2C receiver with id ftbquests:move_chapter_group_response [05Nov2024 14:11:18.692] [modloading-worker-0/INFO] [dev.architectury.networking.forge.NetworkManagerImpl/]: Registering S2C receiver with id ftbquests:sync_reward_blocking [05Nov2024 14:11:18.695] [modloading-worker-0/INFO] [dev.architectury.networking.forge.NetworkManagerImpl/]: Registering C2S receiver with id ftbquests:copy_quest [05Nov2024 14:11:18.700] [modloading-worker-0/INFO] [dev.architectury.networking.forge.NetworkManagerImpl/]: Registering C2S receiver with id ftbquests:copy_chapter_image [05Nov2024 14:11:18.702] [modloading-worker-0/INFO] [dev.architectury.networking.forge.NetworkManagerImpl/]: Registering C2S receiver with id ftbquests:sync_structures_request [05Nov2024 14:11:18.705] [modloading-worker-0/INFO] [dev.architectury.networking.forge.NetworkManagerImpl/]: Registering S2C receiver with id ftbquests:sync_structures_response [05Nov2024 14:11:18.707] [modloading-worker-0/INFO] [dev.architectury.networking.forge.NetworkManagerImpl/]: Registering S2C receiver with id ftbquests:open_quest_book [05Nov2024 14:11:18.849] [modloading-worker-0/INFO] [Rhino Script Remapper/]: Loading Rhino Minecraft remapper... [05Nov2024 14:11:18.861] [modloading-worker-0/INFO] [dev.latvian.mods.rhino.mod.util.RhinoProperties/]: Rhino properties loaded. [05Nov2024 14:11:18.868] [modloading-worker-0/INFO] [Rhino Script Remapper/]: Loading mappings for 1.19.2 [05Nov2024 14:11:19.072] [modloading-worker-0/INFO] [Rhino Script Remapper/]: Done in 0.222 s [05Nov2024 14:11:19.421] [modloading-worker-0/INFO] [mixin/]: Mixing forge.client.MixinClientPacketListener from nochatreports.mixins.json into net.minecraft.client.multiplayer.ClientPacketListener [05Nov2024 14:11:19.670] [modloading-worker-0/INFO] [Enchantment Descriptions/]: Loaded config file. [05Nov2024 14:11:19.672] [modloading-worker-0/INFO] [Enchantment Descriptions/]: Saved config file. [05Nov2024 14:11:19.679] [modloading-worker-0/INFO] [PluginManager/]: Scanning classes for titanium [05Nov2024 14:11:19.827] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.experimental.module.VariantSelectorModule [05Nov2024 14:11:19.845] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.experimental.module.NarratorReadoutModule [05Nov2024 14:11:19.846] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.experimental.module.ClimateControlRemoverModule [05Nov2024 14:11:19.849] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.experimental.module.EnchantmentsBegoneModule [05Nov2024 14:11:19.853] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.experimental.module.GameNerfsModule [05Nov2024 14:11:19.855] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.experimental.module.SpawnerReplacerModule [05Nov2024 14:11:19.856] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.experimental.module.AdjustableChatModule [05Nov2024 14:11:19.859] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.experimental.module.VillagerRerollingReworkModule [05Nov2024 14:11:19.861] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.experimental.module.OverlayShaderModule [05Nov2024 14:11:19.863] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.experimental.module.EnchantmentPredicatesModule [05Nov2024 14:11:19.863] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.building.module.VariantLaddersModule [05Nov2024 14:11:19.864] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.building.module.VariantBookshelvesModule [05Nov2024 14:11:19.867] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.building.module.BambooBackportModule [05Nov2024 14:11:19.871] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.building.module.CompressedBlocksModule [05Nov2024 14:11:19.872] [modloading-worker-0/INFO] [mixin/]: Mixing client.MixinServerData from nochatreports.mixins.json into net.minecraft.client.multiplayer.ServerData [05Nov2024 14:11:19.876] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.building.module.MorePottedPlantsModule [05Nov2024 14:11:19.878] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.building.module.DuskboundBlocksModule [05Nov2024 14:11:19.879] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.building.module.WoodenPostsModule [05Nov2024 14:11:19.880] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.building.module.ThatchModule [05Nov2024 14:11:19.885] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.building.module.MoreStoneVariantsModule [05Nov2024 14:11:19.890] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.building.module.ShearVinesModule [05Nov2024 14:11:19.905] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.building.module.NetherBrickFenceGateModule [05Nov2024 14:11:19.907] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.building.module.GoldBarsModule [05Nov2024 14:11:19.907] [modloading-worker-0/INFO] [mixin/]: Mixing client.MixinChatListener from nochatreports.mixins.json into net.minecraft.client.multiplayer.chat.ChatListener [05Nov2024 14:11:19.915] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.building.module.RopeModule [05Nov2024 14:11:19.919] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.building.module.CelebratoryLampsModule [05Nov2024 14:11:19.920] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.building.module.SoulSandstoneModule [05Nov2024 14:11:19.921] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.building.module.VariantChestsModule [05Nov2024 14:11:19.922] [modloading-worker-0/INFO] [coroutil/]: forge loader environment detected [05Nov2024 14:11:19.928] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.building.module.LeafCarpetModule [05Nov2024 14:11:19.940] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.building.module.FramedGlassModule [05Nov2024 14:11:19.940] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.building.module.VerticalPlanksModule [05Nov2024 14:11:19.942] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.building.module.VariantFurnacesModule [05Nov2024 14:11:19.944] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.building.module.HedgesModule [05Nov2024 14:11:19.945] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.building.module.HollowLogsModule [05Nov2024 14:11:19.947] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.building.module.MidoriModule [05Nov2024 14:11:19.948] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.building.module.RainbowLampsModule [05Nov2024 14:11:19.952] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.building.module.VerticalSlabsModule [05Nov2024 14:11:19.963] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.building.module.ShinglesModule [05Nov2024 14:11:19.965] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.building.module.SturdyStoneModule [05Nov2024 14:11:19.977] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.building.module.StoolsModule [05Nov2024 14:11:19.977] [modloading-worker-0/INFO] [Mystical Agriculture/]: Registered plugin: com.blakebr0.mysticalagriculture.lib.ModCorePlugin [05Nov2024 14:11:19.978] [modloading-worker-0/INFO] [mixin/]: Mixing client.MixinClientTelemetryManager from nochatreports.mixins.json into net.minecraft.client.ClientTelemetryManager [05Nov2024 14:11:19.980] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.building.module.RawMetalBricksModule [05Nov2024 14:11:19.981] [modloading-worker-0/INFO] [mixin/]: Mixing client.MixinProfileKeyPairManager from nochatreports.mixins.json into net.minecraft.client.multiplayer.ProfileKeyPairManager [05Nov2024 14:11:19.987] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.building.module.MoreMudBlocksModule [05Nov2024 14:11:19.989] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.building.module.GrateModule [05Nov2024 14:11:20.023] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.building.module.JapanesePaletteModule [05Nov2024 14:11:20.025] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.building.module.MoreBrickTypesModule [05Nov2024 14:11:20.027] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.building.module.GlassItemFrameModule [05Nov2024 14:11:20.031] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.building.module.IndustrialPaletteModule [05Nov2024 14:11:20.033] [modloading-worker-0/INFO] [Mystical Agriculture/]: Registered plugin: com.blakebr0.mysticalagradditions.lib.ModCorePlugin [05Nov2024 14:11:20.034] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.world.module.NetherObsidianSpikesModule [05Nov2024 14:11:20.038] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.world.module.PermafrostModule [05Nov2024 14:11:20.042] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.world.module.FairyRingsModule [05Nov2024 14:11:20.044] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.world.module.BigStoneClustersModule [05Nov2024 14:11:20.056] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.world.module.SpiralSpiresModule [05Nov2024 14:11:20.063] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.world.module.AncientWoodModule [05Nov2024 14:11:20.070] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.world.module.NewStoneTypesModule [05Nov2024 14:11:20.074] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.world.module.BlossomTreesModule [05Nov2024 14:11:20.078] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.world.module.GlimmeringWealdModule [05Nov2024 14:11:20.087] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.world.module.MonsterBoxModule [05Nov2024 14:11:20.089] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.world.module.AzaleaWoodModule [05Nov2024 14:11:20.091] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.world.module.NoMoreLavaPocketsModule [05Nov2024 14:11:20.093] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.world.module.CorundumModule [05Nov2024 14:11:20.097] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.world.module.ChorusVegetationModule [05Nov2024 14:11:20.102] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.client.module.CameraModule [05Nov2024 14:11:20.105] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.client.module.ElytraIndicatorModule [05Nov2024 14:11:20.107] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.client.module.ImprovedTooltipsModule [05Nov2024 14:11:20.109] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.client.module.GreenerGrassModule [05Nov2024 14:11:20.116] [modloading-worker-0/ERROR] [net.minecraft.Util/]: Registry 'enhancedcelestials:lunar/event' was empty after loading [05Nov2024 14:11:20.117] [modloading-worker-0/ERROR] [net.minecraft.Util/]: Registry 'enhancedcelestials:lunar/dimension_settings' was empty after loading [05Nov2024 14:11:20.124] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.client.module.BucketsShowInhabitantsModule [05Nov2024 14:11:20.126] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.client.module.SoulCandlesModule [05Nov2024 14:11:20.128] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.client.module.AutoWalkKeybindModule [05Nov2024 14:11:20.132] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.client.module.VariantAnimalTexturesModule [05Nov2024 14:11:20.135] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.client.module.MicrocraftingHelperModule [05Nov2024 14:11:20.138] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.client.module.UsesForCursesModule [05Nov2024 14:11:20.140] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.client.module.WoolShutsUpMinecartsModule [05Nov2024 14:11:20.142] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.client.module.BackButtonKeybindModule [05Nov2024 14:11:20.146] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.client.module.ChestSearchingModule [05Nov2024 14:11:20.155] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.client.module.LongRangePickBlockModule [05Nov2024 14:11:20.157] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.client.module.UsageTickerModule [05Nov2024 14:11:20.161] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.automation.module.PistonsMoveTileEntitiesModule [05Nov2024 14:11:20.163] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.automation.module.EnderWatcherModule [05Nov2024 14:11:20.166] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.automation.module.RedstoneRandomizerModule [05Nov2024 14:11:20.171] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.automation.module.FeedingTroughModule [05Nov2024 14:11:20.174] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.automation.module.MetalButtonsModule [05Nov2024 14:11:20.176] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.automation.module.IronRodModule [05Nov2024 14:11:20.180] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.automation.module.ObsidianPlateModule [05Nov2024 14:11:20.182] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.automation.module.ChainsConnectBlocksModule [05Nov2024 14:11:20.183] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.automation.module.GravisandModule [05Nov2024 14:11:20.184] [modloading-worker-0/INFO] [KubeJS Startup/]: example.js#5: Hello, World! (Loaded startup scripts) [05Nov2024 14:11:20.186] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.automation.module.JukeboxAutomationModule [05Nov2024 14:11:20.188] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.automation.module.DispensersPlaceBlocksModule [05Nov2024 14:11:20.188] [modloading-worker-0/INFO] [KubeJS Startup/]: Loaded script startup_scripts:example.js in 0.13 s [05Nov2024 14:11:20.189] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.automation.module.ChuteModule [05Nov2024 14:11:20.192] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.management.module.QuickArmorSwappingModule [05Nov2024 14:11:20.194] [modloading-worker-0/INFO] [KubeJS Startup/]: Loaded 1/1 KubeJS startup scripts in 1.115 s [05Nov2024 14:11:20.195] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.management.module.ItemSharingModule [05Nov2024 14:11:20.199] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.management.module.AutomaticToolRestockModule [05Nov2024 14:11:20.206] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.management.module.ExpandedItemInteractionsModule [05Nov2024 14:11:20.209] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.management.module.InventorySortingModule [05Nov2024 14:11:20.212] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.management.module.HotbarChangerModule [05Nov2024 14:11:20.214] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.management.module.EasyTransferingModule [05Nov2024 14:11:20.217] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.tweaks.module.GoldToolsHaveFortuneModule [05Nov2024 14:11:20.219] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.tweaks.module.AutomaticRecipeUnlockModule [05Nov2024 14:11:20.221] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.tweaks.module.UtilityRecipesModule [05Nov2024 14:11:20.224] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.tweaks.module.PoisonPotatoUsageModule [05Nov2024 14:11:20.225] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.tweaks.module.BetterElytraRocketModule [05Nov2024 14:11:20.227] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.tweaks.module.RenewableSporeBlossomsModule [05Nov2024 14:11:20.228] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.tweaks.module.CoralOnCactusModule [05Nov2024 14:11:20.229] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.tweaks.module.GlassShardModule [05Nov2024 14:11:20.232] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.tweaks.module.PigLittersModule [05Nov2024 14:11:20.234] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.tweaks.module.CampfiresBoostElytraModule [05Nov2024 14:11:20.236] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.tweaks.module.DyeableItemFramesModule [05Nov2024 14:11:20.237] [modloading-worker-0/INFO] [me.treyruffy.betterf3.BetterF3Forge/]: [BetterF3] Starting... [05Nov2024 14:11:20.240] [modloading-worker-0/INFO] [me.treyruffy.betterf3.BetterF3Forge/]: [BetterF3] Loading... [05Nov2024 14:11:20.240] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.tweaks.module.SlabsToBlocksModule [05Nov2024 14:11:20.244] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.tweaks.module.MapWashingModule [05Nov2024 14:11:20.248] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.tweaks.module.EnhancedLaddersModule [05Nov2024 14:11:20.251] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.tweaks.module.ReacharoundPlacingModule [05Nov2024 14:11:20.253] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.tweaks.module.HorsesSwimModule [05Nov2024 14:11:20.255] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.tweaks.module.SpongeOnWaterPlacementModule [05Nov2024 14:11:20.256] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.tweaks.module.ArmedArmorStandsModule [05Nov2024 14:11:20.259] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.tweaks.module.DoubleDoorOpeningModule [05Nov2024 14:11:20.260] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.tweaks.module.ZombieVillagersOnNormalModule [05Nov2024 14:11:20.262] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.tweaks.module.HoeHarvestingModule [05Nov2024 14:11:20.266] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.tweaks.module.EmotesModule [05Nov2024 14:11:20.271] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.tweaks.module.SlimesToMagmaCubesModule [05Nov2024 14:11:20.272] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.tweaks.module.SnowGolemPlayerHeadsModule [05Nov2024 14:11:20.273] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.tweaks.module.VexesDieWithTheirMastersModule [05Nov2024 14:11:20.275] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.tweaks.module.MoreNoteBlockSoundsModule [05Nov2024 14:11:20.280] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.tweaks.module.PatTheDogsModule [05Nov2024 14:11:20.284] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.tweaks.module.GrabChickensModule [05Nov2024 14:11:20.284] [modloading-worker-0/INFO] [me.treyruffy.betterf3.BetterF3Forge/]: [BetterF3] All done! [05Nov2024 14:11:20.286] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.tweaks.module.MoreBannerLayersModule [05Nov2024 14:11:20.289] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.tweaks.module.ReplaceScaffoldingModule [05Nov2024 14:11:20.291] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.tweaks.module.DiamondRepairModule [05Nov2024 14:11:20.306] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.tweaks.module.SaferCreaturesModule [05Nov2024 14:11:20.310] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.tweaks.module.LockRotationModule [05Nov2024 14:11:20.312] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.tweaks.module.VillagersFollowEmeraldsModule [05Nov2024 14:11:20.314] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.tweaks.module.CompassesWorkEverywhereModule [05Nov2024 14:11:20.317] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.tweaks.module.NoDurabilityOnCosmeticsModule [05Nov2024 14:11:20.320] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.tweaks.module.SpongesBetterModule [05Nov2024 14:11:20.324] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.tweaks.module.SignEditingModule [05Nov2024 14:11:20.336] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.tweaks.module.SimpleHarvestModule [05Nov2024 14:11:20.341] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.tweaks.module.DragonScalesModule [05Nov2024 14:11:20.343] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.tweaks.module.ShulkerPackingModule [05Nov2024 14:11:20.345] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.mobs.module.FoxhoundModule [05Nov2024 14:11:20.348] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.mobs.module.WraithModule [05Nov2024 14:11:20.354] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.mobs.module.CrabsModule [05Nov2024 14:11:20.359] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.mobs.module.ForgottenModule [05Nov2024 14:11:20.366] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.mobs.module.ShibaModule [05Nov2024 14:11:20.370] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.mobs.module.StonelingsModule [05Nov2024 14:11:20.371] [modloading-worker-0/INFO] [KubeJS Client/]: example.js#5: Hello, World! (Loaded client scripts) [05Nov2024 14:11:20.372] [modloading-worker-0/INFO] [KubeJS Client/]: Loaded script client_scripts:example.js in 0.002 s [05Nov2024 14:11:20.373] [modloading-worker-0/INFO] [KubeJS Client/]: Loaded 1/1 KubeJS client scripts in 0.046 s [05Nov2024 14:11:20.374] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.mobs.module.ToretoiseModule [05Nov2024 14:11:20.379] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.tools.module.BeaconRedirectionModule [05Nov2024 14:11:20.384] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.tools.module.AmbientDiscsModule [05Nov2024 14:11:20.392] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.tools.module.PathfinderMapsModule [05Nov2024 14:11:20.400] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.tools.module.ColorRunesModule [05Nov2024 14:11:20.404] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.tools.module.PickarangModule [05Nov2024 14:11:20.412] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.tools.module.ParrotEggsModule [05Nov2024 14:11:20.414] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.tools.module.TrowelModule [05Nov2024 14:11:20.420] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.tools.module.AbacusModule [05Nov2024 14:11:20.423] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.tools.module.BottledCloudModule [05Nov2024 14:11:20.428] [modloading-worker-0/INFO] [dev.architectury.networking.forge.NetworkManagerImpl/]: Registering C2S receiver with id kubejs:send_data_from_client [05Nov2024 14:11:20.428] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.tools.module.TorchArrowModule [05Nov2024 14:11:20.430] [modloading-worker-0/INFO] [dev.architectury.networking.forge.NetworkManagerImpl/]: Registering S2C receiver with id kubejs:send_data_from_server [05Nov2024 14:11:20.432] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.tools.module.BundleRecipeModule [05Nov2024 14:11:20.433] [modloading-worker-0/INFO] [dev.architectury.networking.forge.NetworkManagerImpl/]: Registering S2C receiver with id kubejs:paint [05Nov2024 14:11:20.435] [modloading-worker-0/INFO] [dev.architectury.networking.forge.NetworkManagerImpl/]: Registering S2C receiver with id kubejs:add_stage [05Nov2024 14:11:20.437] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.tools.module.AncientTomesModule [05Nov2024 14:11:20.438] [modloading-worker-0/INFO] [dev.architectury.networking.forge.NetworkManagerImpl/]: Registering S2C receiver with id kubejs:remove_stage [05Nov2024 14:11:20.440] [modloading-worker-0/INFO] [dev.architectury.networking.forge.NetworkManagerImpl/]: Registering S2C receiver with id kubejs:sync_stages [05Nov2024 14:11:20.440] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.tools.module.EndermoshMusicDiscModule [05Nov2024 14:11:20.441] [modloading-worker-0/INFO] [dev.architectury.networking.forge.NetworkManagerImpl/]: Registering C2S receiver with id kubejs:first_click [05Nov2024 14:11:20.442] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.tools.module.SeedPouchModule [05Nov2024 14:11:20.443] [modloading-worker-0/INFO] [dev.architectury.networking.forge.NetworkManagerImpl/]: Registering S2C receiver with id kubejs:toast [05Nov2024 14:11:20.448] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.tools.module.SkullPikesModule [05Nov2024 14:11:20.454] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.tools.module.SlimeInABucketModule [05Nov2024 14:11:20.457] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.addons.oddities.module.PipesModule [05Nov2024 14:11:20.464] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.addons.oddities.module.BackpackModule [05Nov2024 14:11:20.468] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.addons.oddities.module.TinyPotatoModule [05Nov2024 14:11:20.474] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.addons.oddities.module.MatrixEnchantingModule [05Nov2024 14:11:20.479] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.addons.oddities.module.TotemOfHoldingModule [05Nov2024 14:11:20.482] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.addons.oddities.module.CrateModule [05Nov2024 14:11:20.485] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.addons.oddities.module.MagnetsModule [05Nov2024 14:11:20.491] [modloading-worker-0/INFO] [quark/]: Dispatching Module Step CONSTRUCT [05Nov2024 14:11:20.671] [modloading-worker-0/INFO] [quark/]: Loading Module Pistons Move Tile Entities [05Nov2024 14:11:20.675] [modloading-worker-0/INFO] [quark/]: Loading Module Ender Watcher [05Nov2024 14:11:20.675] [modloading-worker-0/INFO] [quark/]: Loading Module Redstone Randomizer [05Nov2024 14:11:20.675] [modloading-worker-0/INFO] [quark/]: Loading Module Feeding Trough [05Nov2024 14:11:20.678] [modloading-worker-0/INFO] [quark/]: Loading Module Metal Buttons [05Nov2024 14:11:20.679] [modloading-worker-0/INFO] [quark/]: Loading Module Iron Rod [05Nov2024 14:11:20.679] [modloading-worker-0/INFO] [quark/]: Loading Module Obsidian Plate [05Nov2024 14:11:20.679] [modloading-worker-0/INFO] [quark/]: Loading Module Chains Connect Blocks [05Nov2024 14:11:20.679] [modloading-worker-0/INFO] [quark/]: Loading Module Gravisand [05Nov2024 14:11:20.680] [modloading-worker-0/INFO] [quark/]: Loading Module Jukebox Automation [05Nov2024 14:11:20.682] [modloading-worker-0/INFO] [quark/]: Loading Module Dispensers Place Blocks [05Nov2024 14:11:20.682] [modloading-worker-0/INFO] [quark/]: Loading Module Chute [05Nov2024 14:11:20.682] [modloading-worker-0/INFO] [quark/]: Loading Module Variant Ladders [05Nov2024 14:11:20.682] [modloading-worker-0/INFO] [quark/]: Loading Module Variant Bookshelves [05Nov2024 14:11:20.683] [modloading-worker-0/INFO] [quark/]: Loading Module Bamboo Backport [05Nov2024 14:11:20.683] [modloading-worker-0/INFO] [quark/]: Loading Module Compressed Blocks [05Nov2024 14:11:20.683] [modloading-worker-0/INFO] [quark/]: Loading Module More Potted Plants [05Nov2024 14:11:20.683] [modloading-worker-0/INFO] [quark/]: Loading Module Duskbound Blocks [05Nov2024 14:11:20.683] [modloading-worker-0/INFO] [quark/]: Loading Module Wooden Posts [05Nov2024 14:11:20.683] [modloading-worker-0/INFO] [quark/]: Loading Module Thatch [05Nov2024 14:11:20.684] [modloading-worker-0/INFO] [quark/]: Loading Module More Stone Variants [05Nov2024 14:11:20.684] [modloading-worker-0/INFO] [quark/]: Loading Module Shear Vines [05Nov2024 14:11:20.686] [modloading-worker-0/INFO] [quark/]: Loading Module Nether Brick Fence Gate [05Nov2024 14:11:20.686] [modloading-worker-0/INFO] [quark/]: Loading Module Gold Bars [05Nov2024 14:11:20.686] [modloading-worker-0/INFO] [quark/]: Loading Module Rope [05Nov2024 14:11:20.686] [modloading-worker-0/INFO] [quark/]: Loading Module Celebratory Lamps [05Nov2024 14:11:20.688] [modloading-worker-0/INFO] [quark/]: Loading Module Soul Sandstone [05Nov2024 14:11:20.688] [modloading-worker-0/INFO] [quark/]: Loading Module Variant Chests [05Nov2024 14:11:20.692] [modloading-worker-0/INFO] [quark/]: Loading Module Leaf Carpet [05Nov2024 14:11:20.692] [modloading-worker-0/INFO] [quark/]: Loading Module Framed Glass [05Nov2024 14:11:20.692] [modloading-worker-0/INFO] [quark/]: Loading Module Vertical Planks [05Nov2024 14:11:20.692] [modloading-worker-0/INFO] [quark/]: Loading Module Variant Furnaces [05Nov2024 14:11:20.692] [modloading-worker-0/INFO] [quark/]: Loading Module Hedges [05Nov2024 14:11:20.693] [modloading-worker-0/INFO] [quark/]: Loading Module Hollow Logs [05Nov2024 14:11:20.694] [modloading-worker-0/INFO] [quark/]: Loading Module Midori [05Nov2024 14:11:20.695] [modloading-worker-0/INFO] [quark/]: Loading Module Rainbow Lamps [05Nov2024 14:11:20.695] [modloading-worker-0/INFO] [quark/]: Loading Module Vertical Slabs [05Nov2024 14:11:20.695] [modloading-worker-0/INFO] [quark/]: Loading Module Shingles [05Nov2024 14:11:20.695] [modloading-worker-0/INFO] [quark/]: Loading Module Sturdy Stone [05Nov2024 14:11:20.695] [modloading-worker-0/INFO] [quark/]: Loading Module Stools [05Nov2024 14:11:20.698] [modloading-worker-0/INFO] [quark/]: Loading Module Raw Metal Bricks [05Nov2024 14:11:20.698] [modloading-worker-0/INFO] [quark/]: Loading Module More Mud Blocks [05Nov2024 14:11:20.698] [modloading-worker-0/INFO] [quark/]: Loading Module Grate [05Nov2024 14:11:20.698] [modloading-worker-0/INFO] [quark/]: Loading Module Japanese Palette [05Nov2024 14:11:20.699] [modloading-worker-0/INFO] [quark/]: Loading Module More Brick Types [05Nov2024 14:11:20.699] [modloading-worker-0/INFO] [quark/]: Loading Module Glass Item Frame [05Nov2024 14:11:20.699] [modloading-worker-0/INFO] [quark/]: Loading Module Industrial Palette [05Nov2024 14:11:20.699] [modloading-worker-0/INFO] [quark/]: Loading Module Quick Armor Swapping [05Nov2024 14:11:20.700] [modloading-worker-0/INFO] [quark/]: Loading Module Item Sharing [05Nov2024 14:11:20.705] [modloading-worker-0/INFO] [quark/]: Loading Module Automatic Tool Restock [05Nov2024 14:11:20.708] [modloading-worker-0/INFO] [quark/]: Loading Module Expanded Item Interactions [05Nov2024 14:11:20.711] [modloading-worker-0/INFO] [quark/]: Loading Module Inventory Sorting [05Nov2024 14:11:20.711] [modloading-worker-0/INFO] [quark/]: Loading Module Hotbar Changer [05Nov2024 14:11:20.715] [modloading-worker-0/INFO] [quark/]: Loading Module Easy Transfering [05Nov2024 14:11:20.715] [modloading-worker-0/INFO] [quark/]: Loading Module Beacon Redirection [05Nov2024 14:11:20.715] [modloading-worker-0/INFO] [quark/]: Loading Module Ambient Discs [05Nov2024 14:11:20.716] [modloading-worker-0/INFO] [quark/]: Loading Module Pathfinder Maps [05Nov2024 14:11:20.722] [modloading-worker-0/INFO] [quark/]: Loading Module Color Runes [05Nov2024 14:11:20.726] [modloading-worker-0/INFO] [quark/]: Loading Module Pickarang [05Nov2024 14:11:20.727] [modloading-worker-0/INFO] [quark/]: Loading Module Parrot Eggs [05Nov2024 14:11:20.730] [modloading-worker-0/INFO] [quark/]: Loading Module Trowel [05Nov2024 14:11:20.730] [modloading-worker-0/INFO] [quark/]: Loading Module Abacus [05Nov2024 14:11:20.732] [modloading-worker-0/INFO] [quark/]: Loading Module Bottled Cloud [05Nov2024 14:11:20.734] [modloading-worker-0/INFO] [quark/]: Loading Module Torch Arrow [05Nov2024 14:11:20.734] [modloading-worker-0/INFO] [quark/]: Loading Module Bundle Recipe [05Nov2024 14:11:20.734] [modloading-worker-0/INFO] [quark/]: Loading Module Ancient Tomes [05Nov2024 14:11:20.739] [modloading-worker-0/INFO] [quark/]: Loading Module Endermosh Music Disc [05Nov2024 14:11:20.741] [modloading-worker-0/INFO] [quark/]: Loading Module Seed Pouch [05Nov2024 14:11:20.743] [modloading-worker-0/INFO] [quark/]: Loading Module Skull Pikes [05Nov2024 14:11:20.745] [modloading-worker-0/INFO] [quark/]: Loading Module Slime In A Bucket [05Nov2024 14:11:20.746] [modloading-worker-0/INFO] [quark/]: Loading Module Gold Tools Have Fortune [05Nov2024 14:11:20.747] [modloading-worker-0/INFO] [quark/]: Loading Module Automatic Recipe Unlock [05Nov2024 14:11:20.750] [modloading-worker-0/INFO] [quark/]: Loading Module Utility Recipes [05Nov2024 14:11:20.752] [modloading-worker-0/INFO] [quark/]: Loading Module Poison Potato Usage [05Nov2024 14:11:20.754] [modloading-worker-0/INFO] [quark/]: Loading Module Better Elytra Rocket [05Nov2024 14:11:20.755] [modloading-worker-0/INFO] [quark/]: Loading Module Renewable Spore Blossoms [05Nov2024 14:11:20.756] [modloading-worker-0/INFO] [quark/]: Loading Module Coral On Cactus [05Nov2024 14:11:20.756] [modloading-worker-0/INFO] [quark/]: Loading Module Glass Shard [05Nov2024 14:11:20.757] [modloading-worker-0/INFO] [quark/]: Loading Module Pig Litters [05Nov2024 14:11:20.759] [modloading-worker-0/INFO] [quark/]: Loading Module Campfires Boost Elytra [05Nov2024 14:11:20.760] [modloading-worker-0/INFO] [quark/]: Loading Module Dyeable Item Frames [05Nov2024 14:11:20.762] [modloading-worker-0/INFO] [quark/]: Loading Module Slabs To Blocks [05Nov2024 14:11:20.766] [modloading-worker-0/INFO] [quark/]: Loading Module Map Washing [05Nov2024 14:11:20.766] [modloading-worker-0/INFO] [quark/]: Loading Module Enhanced Ladders [05Nov2024 14:11:20.769] [modloading-worker-0/INFO] [quark/]: Loading Module Reacharound Placing [05Nov2024 14:11:20.772] [modloading-worker-0/INFO] [quark/]: Loading Module Horses Swim [05Nov2024 14:11:20.773] [modloading-worker-0/INFO] [quark/]: Loading Module Sponge On Water Placement [05Nov2024 14:11:20.774] [modloading-worker-0/INFO] [quark/]: Loading Module Armed Armor Stands [05Nov2024 14:11:20.776] [modloading-worker-0/INFO] [quark/]: Loading Module Double Door Opening [05Nov2024 14:11:20.777] [modloading-worker-0/INFO] [quark/]: Loading Module Zombie Villagers On Normal [05Nov2024 14:11:20.779] [modloading-worker-0/INFO] [quark/]: Loading Module Hoe Harvesting [05Nov2024 14:11:20.781] [modloading-worker-0/INFO] [quark/]: Loading Module Emotes [05Nov2024 14:11:20.785] [modloading-worker-0/INFO] [quark/]: Loading Module Slimes To Magma Cubes [05Nov2024 14:11:20.786] [modloading-worker-0/INFO] [quark/]: Loading Module Snow Golem Player Heads [05Nov2024 14:11:20.788] [modloading-worker-0/INFO] [quark/]: Loading Module Vexes Die With Their Masters [05Nov2024 14:11:20.789] [modloading-worker-0/INFO] [quark/]: Loading Module More Note Block Sounds [05Nov2024 14:11:20.791] [modloading-worker-0/INFO] [quark/]: Loading Module Pat The Dogs [05Nov2024 14:11:20.794] [modloading-worker-0/INFO] [quark/]: Loading Module Grab Chickens [05Nov2024 14:11:20.797] [modloading-worker-0/INFO] [quark/]: Loading Module More Banner Layers [05Nov2024 14:11:20.797] [modloading-worker-0/INFO] [quark/]: Loading Module Replace Scaffolding [05Nov2024 14:11:20.798] [modloading-worker-0/INFO] [quark/]: Loading Module Diamond Repair [05Nov2024 14:11:20.799] [modloading-worker-0/INFO] [quark/]: Loading Module Safer Creatures [05Nov2024 14:11:20.800] [modloading-worker-0/INFO] [quark/]: Loading Module Lock Rotation [05Nov2024 14:11:20.803] [modloading-worker-0/INFO] [quark/]: Loading Module Villagers Follow Emeralds [05Nov2024 14:11:20.805] [modloading-worker-0/INFO] [quark/]: Loading Module Compasses Work Everywhere [05Nov2024 14:11:20.806] [modloading-worker-0/INFO] [quark/]: Loading Module No Durability On Cosmetics [05Nov2024 14:11:20.808] [modloading-worker-0/INFO] [quark/]: Loading Module Sponges Better [05Nov2024 14:11:20.808] [modloading-worker-0/INFO] [quark/]: Loading Module Sign Editing [05Nov2024 14:11:20.809] [modloading-worker-0/INFO] [quark/]: Loading Module Simple Harvest [05Nov2024 14:11:20.811] [modloading-worker-0/INFO] [quark/]: Loading Module Dragon Scales [05Nov2024 14:11:20.813] [modloading-worker-0/INFO] [quark/]: Loading Module Shulker Packing [05Nov2024 14:11:20.813] [modloading-worker-0/INFO] [quark/]: Loading Module Nether Obsidian Spikes [05Nov2024 14:11:20.814] [modloading-worker-0/INFO] [quark/]: Loading Module Permafrost [05Nov2024 14:11:20.814] [modloading-worker-0/INFO] [quark/]: Loading Module Fairy Rings [05Nov2024 14:11:20.814] [modloading-worker-0/INFO] [quark/]: Loading Module Big Stone Clusters [05Nov2024 14:11:20.815] [modloading-worker-0/INFO] [quark/]: Loading Module Spiral Spires [05Nov2024 14:11:20.816] [modloading-worker-0/INFO] [quark/]: Loading Module Ancient Wood [05Nov2024 14:11:20.817] [modloading-worker-0/INFO] [quark/]: Loading Module New Stone Types [05Nov2024 14:11:20.819] [modloading-worker-0/INFO] [quark/]: Loading Module Blossom Trees [05Nov2024 14:11:20.819] [modloading-worker-0/INFO] [quark/]: Loading Module Glimmering Weald [05Nov2024 14:11:20.819] [modloading-worker-0/INFO] [quark/]: Loading Module Monster Box [05Nov2024 14:11:20.821] [modloading-worker-0/INFO] [quark/]: Loading Module Azalea Wood [05Nov2024 14:11:20.821] [modloading-worker-0/INFO] [quark/]: Loading Module No More Lava Pockets [05Nov2024 14:11:20.821] [modloading-worker-0/INFO] [quark/]: Loading Module Corundum [05Nov2024 14:11:20.821] [modloading-worker-0/INFO] [quark/]: Loading Module Chorus Vegetation [05Nov2024 14:11:20.821] [modloading-worker-0/INFO] [quark/]: Loading Module Foxhound [05Nov2024 14:11:20.829] [modloading-worker-0/INFO] [quark/]: Loading Module Wraith [05Nov2024 14:11:20.830] [modloading-worker-0/INFO] [quark/]: Loading Module Crabs [05Nov2024 14:11:20.837] [modloading-worker-0/INFO] [quark/]: Loading Module Forgotten [05Nov2024 14:11:20.839] [modloading-worker-0/INFO] [quark/]: Loading Module Shiba [05Nov2024 14:11:20.839] [modloading-worker-0/INFO] [quark/]: Loading Module Stonelings [05Nov2024 14:11:20.847] [modloading-worker-0/INFO] [quark/]: Loading Module Toretoise [05Nov2024 14:11:20.854] [modloading-worker-0/INFO] [quark/]: Loading Module Camera [05Nov2024 14:11:20.856] [modloading-worker-0/INFO] [quark/]: Loading Module Elytra Indicator [05Nov2024 14:11:20.858] [modloading-worker-0/INFO] [quark/]: Loading Module Improved Tooltips [05Nov2024 14:11:20.859] [modloading-worker-0/INFO] [quark/]: Loading Module Greener Grass [05Nov2024 14:11:20.860] [modloading-worker-0/INFO] [quark/]: Loading Module Buckets Show Inhabitants [05Nov2024 14:11:20.860] [modloading-worker-0/INFO] [quark/]: Loading Module Soul Candles [05Nov2024 14:11:20.860] [modloading-worker-0/INFO] [quark/]: Loading Module Auto Walk Keybind [05Nov2024 14:11:20.863] [modloading-worker-0/INFO] [quark/]: Loading Module Variant Animal Textures [05Nov2024 14:11:20.865] [modloading-worker-0/INFO] [quark/]: Loading Module Microcrafting Helper [05Nov2024 14:11:20.873] [modloading-worker-0/INFO] [quark/]: Loading Module Uses For Curses [05Nov2024 14:11:20.874] [modloading-worker-0/INFO] [quark/]: Loading Module Wool Shuts Up Minecarts [05Nov2024 14:11:20.874] [modloading-worker-0/INFO] [quark/]: Loading Module Back Button Keybind [05Nov2024 14:11:20.876] [modloading-worker-0/INFO] [quark/]: Loading Module Chest Searching [05Nov2024 14:11:20.879] [modloading-worker-0/INFO] [quark/]: Loading Module Long Range Pick Block [05Nov2024 14:11:20.879] [modloading-worker-0/INFO] [quark/]: Loading Module Usage Ticker [05Nov2024 14:11:20.881] [modloading-worker-0/INFO] [quark/]: Loading Module Variant Selector [05Nov2024 14:11:20.881] [modloading-worker-0/INFO] [quark/]: Loading Module Narrator Readout [05Nov2024 14:11:20.882] [modloading-worker-0/INFO] [quark/]: Loading Module Climate Control Remover [05Nov2024 14:11:20.882] [modloading-worker-0/INFO] [quark/]: Loading Module Enchantments Begone [05Nov2024 14:11:20.882] [modloading-worker-0/INFO] [quark/]: Loading Module Game Nerfs [05Nov2024 14:11:20.882] [modloading-worker-0/INFO] [quark/]: Loading Module Spawner Replacer [05Nov2024 14:11:20.882] [modloading-worker-0/INFO] [quark/]: Loading Module Adjustable Chat [05Nov2024 14:11:20.882] [modloading-worker-0/INFO] [quark/]: Loading Module Villager Rerolling Rework [05Nov2024 14:11:20.883] [modloading-worker-0/INFO] [quark/]: Loading Module Overlay Shader [05Nov2024 14:11:20.883] [modloading-worker-0/INFO] [quark/]: Loading Module Enchantment Predicates [05Nov2024 14:11:20.883] [modloading-worker-0/INFO] [quark/]: Loading Module Pipes [05Nov2024 14:11:20.884] [modloading-worker-0/INFO] [quark/]: Loading Module Backpack [05Nov2024 14:11:20.884] [modloading-worker-0/INFO] [quark/]: Loading Module Tiny Potato [05Nov2024 14:11:20.885] [modloading-worker-0/INFO] [quark/]: Loading Module Matrix Enchanting [05Nov2024 14:11:20.885] [modloading-worker-0/INFO] [quark/]: Loading Module Totem Of Holding [05Nov2024 14:11:20.885] [modloading-worker-0/INFO] [quark/]: Loading Module Crate [05Nov2024 14:11:20.885] [modloading-worker-0/INFO] [quark/]: Loading Module Magnets [05Nov2024 14:11:20.908] [modloading-worker-0/INFO] [quark/]: Dispatching Module Step CONSTRUCT_CLIENT [05Nov2024 14:11:21.595] [modloading-worker-0/INFO] [mixin/]: Mixing common.MixinServerStatus from nochatreports.mixins.json into net.minecraft.network.protocol.status.ServerStatus [05Nov2024 14:11:21.743] [Render thread/INFO] [ModernFix/]: Invalidating pack caches [05Nov2024 14:11:21.744] [Render thread/INFO] [net.minecraft.server.packs.resources.ReloadableResourceManager/]: Reloading ResourceManager: hordes, Above_and_Below-1.1.1-1.19.2.jar, additionalentityattributes-forge-1.19-1.0.1+1.19.jar, appliedenergistics2-forge-12.9.9.jar, AE2WTLib-12.9.7.jar, aeroblender-1.19.2-1.0.1.jar, aether-1.19.2-1.5.0-forge.jar, aether_treasure_reforging-1.19.2-1.0.1-forge.jar, Aethersteel-v5.5-1.19.2.jar, AI-Improvements-1.19.2-0.5.2.jar, AmbientSounds_FORGE_v5.3.9_mc1.19.2.jar, Amplified_Nether_1.19.3_v1.2.1.jar, AngelRing2-1.19.2-2.1.8.jar, apoli-forge-1.19.2-2.6.1.7.jar, appleskin-forge-mc1.19-2.4.2.jar, architectury-6.6.92-forge.jar, ars_elemental-1.19.2-0.5.9.4.1.jar, ars_nouveau-1.19.2-3.22.3.jar, ars_ocultas-1.19.2-0.1.1-all.jar, arseng-1.0.1.jar, Atlas-Lib-1.19.2-1.1.6.jar, AttributeFix-Forge-1.19.2-17.2.7.jar, AutoRegLib-1.8.2-55.jar, BadOptimizations-2.1.4-1.19.1-19.2.jar, badpackets-forge-0.2.3.jar, balm-forge-1.19.2-4.6.0.jar, BetterCompatibilityChecker-1.0.7-build.35+mc1.19.2.jar, BasicEndOres-1.19.2-3.2.2.jar, betternetherite_0.4.jar, bettercombat-forge-1.7.1+1.19.jar, YungsBetterDungeons-1.19.2-Forge-3.2.2.jar, YungsBetterEndIsland-1.19.2-Forge-1.0.jar, BetterF3-4.0.1-Forge-1.19.2.jar, betterfarmland-1.19.2-forge-1.0.3.jar, YungsBetterNetherFortresses-1.19.2-Forge-1.0.6.jar, YungsBetterMineshafts-1.19.2-Forge-3.2.1.jar, YungsBetterOceanMonuments-1.19.2-Forge-2.1.1.jar, YungsBetterStrongholds-1.19.2-Forge-3.2.0.jar, baubley-heart-canisters-1.19.2-2.1.0.jar, ExtremeReactors2-1.19.2-2.0.71.jar, BiomesOPlenty-1.19.2-17.1.2.492.jar, blueprint-1.19.2-6.2.0.jar, BasicNetherOres-1.19.2-8.2.1.jar, Bookshelf-Forge-1.19.2-16.3.20.jar, botarium-forge-1.19.2-1.9.2.jar, brightnessslider-forge-1.0-1.19.jar, bwncr-forge-1.19.2-3.14.1.jar, Oh_The_Biomes_You'll_Go-forge-1.19.2-2.0.1.6.jar, bygonefortress-1.0.0-1.19.2.jar, bygonenether-1.3.2-1.19.2.jar, caelus-forge-1.19.2-3.0.0.6.jar, calio-forge-1.19.2-1.7.0.4.jar, CarbonConfig-1.19.2-1.2.6.jar, cfm-7.0.0-pre35-1.19.2.jar, cgm-forge-1.19.2-1.3.7.jar, chat_heads-0.13.3-forge-1.19.2.jar, chunkloaders-1.2.8a-forge-mc1.19.jar, Chunky-1.3.38.jar, citadel-2.1.4-1.19.jar, cloth-config-8.3.134-forge.jar, Clumps-forge-1.19.2-9.0.0+14.jar, CodeChickenLib-1.19.2-4.3.2.490-universal.jar, collective-1.19.2-7.64.jar, configured-2.1.1-1.19.2.jar, Controlling-forge-1.19.2-10.0+7.jar, cookingforblockheads-forge-1.19.2-13.3.4.jar, CorgiLib-forge-1.19.2-1.0.0.34.jar, coroutil-forge-1.19.2-1.3.6.jar, CraftableEnchantedGoldenApple-1.19.2-Forge.jar, create-1.19.2-0.5.1.i.jar, Create_Questing-FORGE-1.19.2-1.0.0.jar, createaddition-1.19.2-1.2.2.jar, createappliedkinetics-1.4-1.19.2.jar, CreativeCore_FORGE_v2.11.28_mc1.19.2.jar, Croptopia-1.19.2-FORGE-2.2.2.jar, CroptopiaDelight-1.19.2_1.2.2-forge.jar, Cucumber-1.19.2-6.0.11.jar, cullleaves-forge-3.0.1.jar, cumulus_menus-1.19.2-1.0.0-forge.jar, curios-forge-1.19.2-5.1.6.3.jar, dcintegration-forge-3.0.5-1.19.2.jar, deep_aether-1.19.2-1.0.2.jar, deeperdarker-forge-1.19.2-1.2.2.jar, difusement-v1.19.2_alpha_1.empatch_1.jar, dimensionalsycnfixes-1.19.2-0.0.1.jar, dragonmounts-1.19.2-1.2.3-beta.jar, dynamic-fps-3.7.3+minecraft-1.19.0-forge.jar, elevatorid-1.19.2-1.8.10.jar, elytraslot-forge-6.1.2+1.19.2.jar, emc-interface-1.19.2.2.jar, Enchanted-forge-1.19.2-2.0.3.jar, EnchantingInfuser-v4.2.2-1.19.2-Forge.jar, EnchantmentDescriptions-Forge-1.19.2-13.0.14.jar, endergetic-1.19.2-4.0.0.jar, endersdelight-1.19-1.2.2.jar, EnderStorage-1.19.2-2.10.1.181-universal.jar, endertanks-forge-1.19-1.12.10.jar, endofherobrine-1.19.2-1.0.8.2.jar, endrem_forge-5.2.1-R-1.19.X.jar, ends_delight-1.19.2-2.1.jar, Enhanced_Celestials-forge-1.19.2-2.1.0.5.jar, entityculling-forge-1.6.1-mc1.19.2.jar, EuphoriaPatcher-1.4.1-r5.3-forge.jar, everycomp-1.19.2-2.5.26.jar, EyesInTheDarkness-1.19.2-1.3.10.jar, Fallingleaves-1.19.1-1.3.1.jar, FarmersDelight-1.19.2-1.2.4.jar, fast-ip-ping-v1.0.5-mc1.19.4-forge.jar, Fastload-Reforged-mc1.19.2-3.4.0.jar, ferritecore-5.0.3-forge.jar, flib-1.19.2-0.0.3.jar, flywheel-forge-1.19.2-0.6.11-22.jar, forge-1.19.2-43.4.2-universal.jar, framework-forge-1.19.2-0.6.16.jar, ftb-library-forge-1902.4.1-build.236.jar, FTBQLocalKeys-forge-1.1.0+1.19.2.jar, FTBQuestsOptimizer-forge-1.2.1-1.19.2.jar, ftb-quests-forge-1902.5.9-build.399.jar, ftb-teams-forge-1902.2.14-build.123.jar, ftb-xmod-compat-forge-1.2.4.jar, fusion-1.1.1-forge-mc1.19.2.jar, GeckoLibOculusCompat-Forge-1.0.1.jar, geckolib-forge-1.19-3.1.40.jar, GPUTape-1.0.0-1.18-1.20.4.jar, gravestone-forge-1.19.2-1.0.24.jar, The_Graveyard_2.5.2_(FORGE)_for_1.19.2.jar, HammerLib-1.19.2-19.3.82.jar, The-Hordes-1.19.2-1.5.4.jar, iceandfire-1.19.2-2.1.13-beta-2.jar, Iceberg-1.19.2-forge-1.1.4.jar, ImmediatelyFast-Forge-1.2.21+1.19.2.jar, Incendium_1.19.3_v5.1.6.jar, industrial-foregoing-1.19.2-3.3.2.3-5.jar, item-filters-forge-1902.2.9-build.51.jar, jei-1.19.2-forge-11.8.1.1033.jar, journeymap-1.19.2-5.9.8-forge.jar, JsonThings-1.19.2-0.7.15.jar, keebszs_battle_towers-0.5.0-1.19.x.jar, konkrete_forge_1.8.0_MC_1.19-1.19.2.jar, kffmod-3.12.0.jar, kubejs-forge-1902.6.2-build.73.jar, l2library-1.10.0.jar, lemoned-1.0.0-1.19.jar, Log-Begone-Forge-1.19-1.0.6.jar, luckytntlib-1.19.2-43.3.13.0.jar, luckytntmod-1.19.2-1.4.jar, The-Man-From-The-Fog-1.3-1.19.2.jar, Mantle-1.19.2-1.10.36.jar, matc-1.3.1.jar, minecraft-comes-alive-7.5.14+1.19.2-universal.jar, memoryleakfix-forge-1.17+-1.1.5.jar, mes-1.3.1-1.19.2-forge.jar, midnightlib-1.0.0-forge.jar, the_midnight_lurker_3.3.5.jar, mixinextras-forge-0.2.0-beta.9.jar, mixinsquared-forge-0.1.2-beta.6.jar, modernfix-forge-5.18.1+mc1.19.2.jar, modonomicon-1.19.2-1.34.0.jar, moonlight-1.19.2-2.3.7-forge.jar, moredelight-24.09.27-1.19-forge.jar, moreoverlays-1.21.10-mc1.19.2.jar, morevanillashields-1.0.2-1.19.2.jar, better-deepslate-ore-drops-2.jar, construct-and-better-combat-1.jar, edf-remastered-4.3.jar, enderite-upgrade-v5.jar, mvs-4.1.2-1.19.2-forge.jar, MyNethersDelight-1.19-1.7.jar, MyServerIsCompatible-1.19-1.0.jar, MysticalAgradditions-1.19.2-6.0.5.jar, MysticalAgriculture-1.19.2-6.0.15.jar, netherportalfix-forge-1.19-10.0.2.jar, NethersDelight-1.19-3.1.jar, nitrogen_internals-1.19.2-1.0.7-forge.jar, NoChatReports-FORGE-1.19.2-v1.5.1.jar, notenoughcrashes-5.0.0+1.19.2-forge.jar, Nullscape_1.19.3_v1.2.2.jar, nzgExpansion-1.4.4-1.19.2.jar, obscure_api-15.jar, occultism-1.19.2-1.90.0.jar, origins-accessbilities-1.19.2-1.1.1.jar, origins-forge-1.19.2-1.7.1.7-all.jar, origins-classes-forge-1.2.1.jar, Epic Dungeons-0.1.04-Forge-1.19-1.20.1.jar, Pale_Hound-1.19.2-1.9.5.jar, parry-2.4.1.1.jar, Patchouli-1.19.2-77.jar, proxy-compatible-forge-1.1.5.jar, Pehkui-3.8.2+1.19.2-forge.jar, player-animation-lib-forge-1.0.2.jar, polymorph-forge-0.46.6+1.19.2.jar, ProjectE-1.19.2-PE1.1.0.jar, Projectiles-1.0.0-1.19.2-Multi.jar, PuzzlesLib-v4.4.3-1.19.2-Forge.jar, Quark-3.4-418.jar, rechiseled-1.1.6-forge-mc1.19.2.jar, resourcefullib-forge-1.19.2-1.1.24.jar, rhino-forge-1902.2.3-build.284.jar, right-click-harvest-3.2.3+1.19.2-forge.jar, rubidium-mc1.19.2-0.6.2c.jar, saturn-mc1.19.2-0.1.4.jar, [1.19.2] SecurityCraft v1.9.6.1.jar, SereneSeasons-1.19.2-8.1.0.24.jar, servercore-forge-1.3.6+1.19.2.jar, shetiphiancore-forge-1.19-3.11.11.jar, ShieldExpansion-1.19.2-1.1.7a.jar, sliceanddice-forge-2.4.0.jar, SmartBrainLib-forge-1.19.2-1.9.jar, sophisticatedbackpacks-1.19.2-3.20.2.1035.jar, sophisticatedcore-1.19.2-0.6.4.605.jar, sound-physics-remastered-forge-1.19.2-1.4.5.jar, spark-1.10.37-forge.jar, spectrelib-forge-0.12.8+1.19.2.jar, spiderstpo-1.19.2-2.0.4.jar, SimpleQuarry-1.19.2-19.2.1.jar, StateObserver-forge-1.19.2-1.3.1.jar, supermartijn642configlib-1.1.8-forge-mc1.19.jar, supermartijn642corelib-1.1.17a-forge-mc1.19.2.jar, SurvivalistEssentials-1.19.2-4.2.0.18.jar, Survive-1.19.2-8.0.8.2.jar, tacz-1.19.2-1.0.3-all.jar, TConstruct-1.19.2-3.8.4.50.jar, tectonic-forge-1.19-2.3.5a.jar, teleportcraft-1.1.2-1.19.2.jar, TerraBlender-forge-1.19.2-2.0.1.166.jar, the_knocker-1.3.0b-forge-1.19.2.jar, TA-0.9.5-1.19.2.jar, thestarvedstalker.jar, 3rdLife+(1.19.X) 1.0.6.jar, Tinker-Things-1.19.2-1.2.1.jar, Tinkers-Thinking-0.1.3.3.2.jar, TinkerSurvival-1.19.2-4.1.1.7.jar, titanium-1.19.2-3.7.3-27.jar, tleveling-0.2.0-1.19.2.jar, toms_trading_network-1.19-0.2.3.jar, toolleveling-forge-1.19.2-1.4.1.jar, totw_additions-1.2.3-1.19.x-forge.jar, totw_modded-forge-1.19.2-1.0.5.jar, trashcans-1.0.18-forge-mc1.19.jar, trashslot-forge-1.19.2-12.1.0.jar, treeharvester-1.19.2-8.7.jar, twilightaether-1.19.2-1.0.0.jar, Twilight Flavors & Delight-1.3.1.jar, twilightforest-1.19.2-4.2.1518-universal (1).jar, UnionLib-1.19.2-9.0.3.1-Forge.jar, unknownnull-1.19.2-1.0.3.jar, unsafe-world-random-access-detector-1.1.0+forge.jar, valhelsia_core-forge-1.19.2-0.5.0.jar, voicechat-forge-1.19.2-2.5.24.jar, From-The-Fog-1.19-v1.9.1-Forge-Fabric.jar, waveycapes-forge-1.4.10-mc1.19.2.jar, waystones-forge-1.19.2-11.4.2.jar, Whispers_of_the_Wendigo_0.1.1_1.19.2.jar, xlpackets-1.0.4-1.19.4.jar, xptome-1.19-2.1.7.jar, YungsApi-1.19.2-Forge-3.8.10.jar, ZeroCore2-1.19.2-2.1.39.jar [05Nov2024 14:11:22.225] [Render thread/INFO] [HammerLib/]: Register AP class org.zeith.hammerlib.annotations.client.TileRenderer$AP for interface org.zeith.hammerlib.annotations.client.TileRenderer. [05Nov2024 14:11:22.226] [Render thread/INFO] [HammerLib/]: Register AP class org.zeith.hammerlib.annotations.client.Particles$AP for interface org.zeith.hammerlib.annotations.client.Particles. [05Nov2024 14:11:22.383] [Render thread/INFO] [quark/]: Dispatching Module Step REGISTER [05Nov2024 14:11:22.742] [Render thread/INFO] [quark/]: Dispatching Module Step POST_REGISTER [05Nov2024 14:11:23.855] [Render thread/INFO] [dev.gigaherz.jsonthings.things.parsers.BlockParser/]: Started registering Block things, errors about unexpected registry domains are harmless... [05Nov2024 14:11:23.859] [Render thread/INFO] [dev.gigaherz.jsonthings.things.parsers.BlockParser/]: Done processing thingpack Blocks. [05Nov2024 14:11:25.118] [Render thread/INFO] [dev.gigaherz.jsonthings.things.parsers.FluidParser/]: Started registering Fluid things, errors about unexpected registry domains are harmless... [05Nov2024 14:11:25.124] [Render thread/INFO] [dev.gigaherz.jsonthings.things.parsers.FluidParser/]: Done processing thingpack Fluids. [05Nov2024 14:11:25.140] [Render thread/WARN] [moonlight/]: Failed to find custom wood type byg:embur [05Nov2024 14:11:25.163] [Render thread/INFO] [moonlight/]: Initialized block sets in 26ms [05Nov2024 14:11:25.177] [Render thread/INFO] [net.mehvahdjukaar.every_compat.EveryCompat/]: Registering Compat Wood Blocks [05Nov2024 14:11:27.480] [Render thread/INFO] [net.mehvahdjukaar.every_compat.EveryCompat/]: Registering Compat Leaves Blocks [05Nov2024 14:11:28.945] [Render thread/INFO] [dev.gigaherz.jsonthings.things.parsers.ItemParser/]: Started registering Item things, errors about unexpected registry domains are harmless... [05Nov2024 14:11:28.969] [Render thread/INFO] [dev.gigaherz.jsonthings.things.parsers.ItemParser/]: Done processing thingpack Items. [05Nov2024 14:11:29.287] [Render thread/INFO] [dev.architectury.networking.forge.NetworkManagerImpl/]: Registering C2S receiver with id ae2wtlib:cycle_terminal [05Nov2024 14:11:29.587] [Render thread/INFO] [dev.gigaherz.jsonthings.things.parsers.EnchantmentParser/]: Started registering Enchantment things, errors about unexpected registry domains are harmless... [05Nov2024 14:11:29.587] [Render thread/INFO] [dev.gigaherz.jsonthings.things.parsers.EnchantmentParser/]: Done processing thingpack Enchantments. [05Nov2024 14:11:29.634] [Render thread/INFO] [ModernFix/]: Instantiating Mojang DFU [05Nov2024 14:11:30.019] [Render thread/INFO] [net.minecraft.util.datafix.DataFixers/]: Building unoptimized datafixer [05Nov2024 14:11:31.846] [Render thread/INFO] [dev.gigaherz.jsonthings.things.parsers.FluidTypeParser/]: Started registering FluidType things, errors about unexpected registry domains are harmless... [05Nov2024 14:11:31.849] [Render thread/INFO] [dev.gigaherz.jsonthings.things.parsers.FluidTypeParser/]: Done processing thingpack FluidTypes. [05Nov2024 14:11:32.177] [Render thread/WARN] [net.minecraft.network.syncher.SynchedEntityData/]: defineId called for: class forge.net.mca.entity.VillagerEntityMCA from class forge.net.mca.util.network.datasync.CDataParameter [05Nov2024 14:11:32.178] [Render thread/WARN] [net.minecraft.network.syncher.SynchedEntityData/]: defineId called for: class forge.net.mca.entity.VillagerEntityMCA from class forge.net.mca.util.network.datasync.CDataParameter [05Nov2024 14:11:32.178] [Render thread/WARN] [net.minecraft.network.syncher.SynchedEntityData/]: defineId called for: class forge.net.mca.entity.VillagerEntityMCA from class forge.net.mca.util.network.datasync.CDataParameter [05Nov2024 14:11:32.178] [Render thread/WARN] [net.minecraft.network.syncher.SynchedEntityData/]: defineId called for: class forge.net.mca.entity.VillagerEntityMCA from class forge.net.mca.util.network.datasync.CDataParameter [05Nov2024 14:11:32.179] [Render thread/WARN] [net.minecraft.network.syncher.SynchedEntityData/]: defineId called for: class forge.net.mca.entity.VillagerEntityMCA from class forge.net.mca.util.network.datasync.CDataParameter [05Nov2024 14:11:32.179] [Render thread/WARN] [net.minecraft.network.syncher.SynchedEntityData/]: defineId called for: class forge.net.mca.entity.VillagerEntityMCA from class forge.net.mca.util.network.datasync.CDataParameter [05Nov2024 14:11:32.179] [Render thread/WARN] [net.minecraft.network.syncher.SynchedEntityData/]: defineId called for: class forge.net.mca.entity.VillagerEntityMCA from class forge.net.mca.util.network.datasync.CDataParameter [05Nov2024 14:11:32.180] [Render thread/WARN] [net.minecraft.network.syncher.SynchedEntityData/]: defineId called for: class forge.net.mca.entity.VillagerEntityMCA from class forge.net.mca.util.network.datasync.CEnumParameter [05Nov2024 14:11:32.182] [Render thread/WARN] [net.minecraft.network.syncher.SynchedEntityData/]: defineId called for: class forge.net.mca.entity.VillagerEntityMCA from class forge.net.mca.util.network.datasync.CDataParameter [05Nov2024 14:11:32.183] [Render thread/WARN] [net.minecraft.network.syncher.SynchedEntityData/]: defineId called for: class forge.net.mca.entity.VillagerEntityMCA from class forge.net.mca.util.network.datasync.CDataParameter [05Nov2024 14:11:32.183] [Render thread/WARN] [net.minecraft.network.syncher.SynchedEntityData/]: defineId called for: class forge.net.mca.entity.VillagerEntityMCA from class forge.net.mca.util.network.datasync.CDataParameter [05Nov2024 14:11:32.183] [Render thread/WARN] [net.minecraft.network.syncher.SynchedEntityData/]: defineId called for: class forge.net.mca.entity.VillagerEntityMCA from class forge.net.mca.util.network.datasync.CDataParameter [05Nov2024 14:11:32.183] [Render thread/WARN] [net.minecraft.network.syncher.SynchedEntityData/]: defineId called for: class forge.net.mca.entity.VillagerEntityMCA from class forge.net.mca.util.network.datasync.CDataParameter [05Nov2024 14:11:32.184] [Render thread/WARN] [net.minecraft.network.syncher.SynchedEntityData/]: defineId called for: class forge.net.mca.entity.VillagerEntityMCA from class forge.net.mca.util.network.datasync.CDataParameter [05Nov2024 14:11:32.184] [Render thread/WARN] [net.minecraft.network.syncher.SynchedEntityData/]: defineId called for: class forge.net.mca.entity.VillagerEntityMCA from class forge.net.mca.util.network.datasync.CDataParameter [05Nov2024 14:11:32.184] [Render thread/WARN] [net.minecraft.network.syncher.SynchedEntityData/]: defineId called for: class forge.net.mca.entity.VillagerEntityMCA from class forge.net.mca.util.network.datasync.CDataParameter [05Nov2024 14:11:32.184] [Render thread/WARN] [net.minecraft.network.syncher.SynchedEntityData/]: defineId called for: class forge.net.mca.entity.VillagerEntityMCA from class forge.net.mca.util.network.datasync.CDataParameter [05Nov2024 14:11:32.185] [Render thread/WARN] [net.minecraft.network.syncher.SynchedEntityData/]: defineId called for: class forge.net.mca.entity.VillagerEntityMCA from class forge.net.mca.util.network.datasync.CDataParameter [05Nov2024 14:11:32.185] [Render thread/WARN] [net.minecraft.network.syncher.SynchedEntityData/]: defineId called for: class forge.net.mca.entity.VillagerEntityMCA from class forge.net.mca.util.network.datasync.CDataParameter [05Nov2024 14:11:32.185] [Render thread/WARN] [net.minecraft.network.syncher.SynchedEntityData/]: defineId called for: class forge.net.mca.entity.VillagerEntityMCA from class forge.net.mca.util.network.datasync.CEnumParameter [05Nov2024 14:11:32.186] [Render thread/WARN] [net.minecraft.network.syncher.SynchedEntityData/]: defineId called for: class forge.net.mca.entity.VillagerEntityMCA from class forge.net.mca.util.network.datasync.CDataParameter [05Nov2024 14:11:32.191] [Render thread/WARN] [net.minecraft.network.syncher.SynchedEntityData/]: defineId called for: class forge.net.mca.entity.VillagerEntityMCA from class forge.net.mca.util.network.datasync.CDataParameter [05Nov2024 14:11:32.191] [Render thread/WARN] [net.minecraft.network.syncher.SynchedEntityData/]: defineId called for: class forge.net.mca.entity.VillagerEntityMCA from class forge.net.mca.util.network.datasync.CEnumParameter [05Nov2024 14:11:32.192] [Render thread/WARN] [net.minecraft.network.syncher.SynchedEntityData/]: defineId called for: class forge.net.mca.entity.VillagerEntityMCA from class forge.net.mca.util.network.datasync.CDataParameter [05Nov2024 14:11:32.192] [Render thread/WARN] [net.minecraft.network.syncher.SynchedEntityData/]: defineId called for: class forge.net.mca.entity.VillagerEntityMCA from class forge.net.mca.util.network.datasync.CEnumParameter [05Nov2024 14:11:32.192] [Render thread/WARN] [net.minecraft.network.syncher.SynchedEntityData/]: defineId called for: class forge.net.mca.entity.VillagerEntityMCA from class forge.net.mca.util.network.datasync.CEnumParameter [05Nov2024 14:11:32.192] [Render thread/WARN] [net.minecraft.network.syncher.SynchedEntityData/]: defineId called for: class forge.net.mca.entity.VillagerEntityMCA from class forge.net.mca.util.network.datasync.CDataParameter [05Nov2024 14:11:32.192] [Render thread/WARN] [net.minecraft.network.syncher.SynchedEntityData/]: defineId called for: class forge.net.mca.entity.VillagerEntityMCA from class forge.net.mca.util.network.datasync.CDataParameter [05Nov2024 14:11:32.193] [Render thread/WARN] [net.minecraft.network.syncher.SynchedEntityData/]: defineId called for: class forge.net.mca.entity.VillagerEntityMCA from class forge.net.mca.util.network.datasync.CDataParameter [05Nov2024 14:11:32.193] [Render thread/WARN] [net.minecraft.network.syncher.SynchedEntityData/]: defineId called for: class forge.net.mca.entity.VillagerEntityMCA from class forge.net.mca.util.network.datasync.CDataParameter [05Nov2024 14:11:32.193] [Render thread/WARN] [net.minecraft.network.syncher.SynchedEntityData/]: defineId called for: class forge.net.mca.entity.VillagerEntityMCA from class forge.net.mca.util.network.datasync.CDataParameter [05Nov2024 14:11:32.196] [Render thread/WARN] [net.minecraft.network.syncher.SynchedEntityData/]: defineId called for: class forge.net.mca.entity.VillagerEntityMCA from class forge.net.mca.util.network.datasync.CDataParameter [05Nov2024 14:11:32.202] [Render thread/WARN] [net.minecraft.network.syncher.SynchedEntityData/]: defineId called for: class forge.net.mca.entity.VillagerEntityMCA from class forge.net.mca.util.network.datasync.CDataParameter [05Nov2024 14:11:32.203] [Render thread/WARN] [net.minecraft.network.syncher.SynchedEntityData/]: defineId called for: class forge.net.mca.entity.VillagerEntityMCA from class forge.net.mca.util.network.datasync.CDataParameter [05Nov2024 14:11:32.205] [Render thread/WARN] [net.minecraft.network.syncher.SynchedEntityData/]: defineId called for: class forge.net.mca.entity.VillagerEntityMCA from class forge.net.mca.util.network.datasync.CDataParameter [05Nov2024 14:11:32.205] [Render thread/WARN] [net.minecraft.network.syncher.SynchedEntityData/]: defineId called for: class forge.net.mca.entity.VillagerEntityMCA from class forge.net.mca.util.network.datasync.CDataParameter [05Nov2024 14:11:32.206] [Render thread/WARN] [net.minecraft.network.syncher.SynchedEntityData/]: defineId called for: class forge.net.mca.entity.VillagerEntityMCA from class forge.net.mca.util.network.datasync.CDataParameter [05Nov2024 14:11:32.206] [Render thread/WARN] [net.minecraft.network.syncher.SynchedEntityData/]: defineId called for: class forge.net.mca.entity.GrimReaperEntity from class forge.net.mca.util.network.datasync.CEnumParameter [05Nov2024 14:11:32.335] [Render thread/WARN] [net.minecraft.server.packs.repository.Pack/]: Couldn't get pack info for: java.util.zip.ZipException: invalid CEN header (bad entry name) [05Nov2024 14:11:32.662] [Render thread/INFO] [com.klikli_dev.occultism.Occultism/]: Block color registration complete. [05Nov2024 14:11:32.675] [Render thread/INFO] [quark/]: Dispatching Module Step REGISTER_BLOCK_COLORS [05Nov2024 14:11:32.691] [Render thread/INFO] [com.klikli_dev.occultism.Occultism/]: Item color registration complete. [05Nov2024 14:11:32.708] [Render thread/INFO] [quark/]: Dispatching Module Step REGISTER_ITEM_COLORS [05Nov2024 14:11:32.746] [Render thread/INFO] [HammerLib/]: Registered custom glint render buffers. [05Nov2024 14:11:32.912] [Render thread/INFO] [ModernFix/]: Replacing search trees with 'JEI' provider [05Nov2024 14:11:33.049] [Render thread/INFO] [com.klikli_dev.occultism.Occultism/]: Registered Particle Factories [05Nov2024 14:11:33.449] [Render thread/INFO] [mezz.jei.library.load.PluginCaller/]: Sending ConfigManager: jei:minecraft ... [05Nov2024 14:11:33.449] [Render thread/INFO] [mezz.jei.library.load.PluginCaller/]: Sending ConfigManager: jei:minecraft took 180.5 ?s [05Nov2024 14:11:33.450] [Render thread/INFO] [mezz.jei.library.load.PluginCaller/]: Sending ConfigManager: hammerlib:jei ... [05Nov2024 14:11:33.450] [Render thread/INFO] [mezz.jei.library.load.PluginCaller/]: Sending ConfigManager: hammerlib:jei took 21.30 ?s [05Nov2024 14:11:33.451] [Render thread/INFO] [mezz.jei.library.load.PluginCaller/]: Sending ConfigManager: projecte:main ... [05Nov2024 14:11:33.451] [Render thread/INFO] [mezz.jei.library.load.PluginCaller/]: Sending ConfigManager: projecte:main took 15.50 ?s [05Nov2024 14:11:33.451] [Render thread/INFO] [mezz.jei.library.load.PluginCaller/]: Sending ConfigManager: modernfix:capturer ... [05Nov2024 14:11:33.451] [Render thread/INFO] [mezz.jei.library.load.PluginCaller/]: Sending ConfigManager: modernfix:capturer took 7.500 ?s [05Nov2024 14:11:33.451] [Render thread/INFO] [mezz.jei.library.load.PluginCaller/]: Sending ConfigManager: hordes:infection ... [05Nov2024 14:11:33.452] [Render thread/INFO] [mezz.jei.library.load.PluginCaller/]: Sending ConfigManager: hordes:infection took 7.900 ?s [05Nov2024 14:11:33.452] [Render thread/INFO] [mezz.jei.library.load.PluginCaller/]: Sending ConfigManager: industrialforegoing:default ... [05Nov2024 14:11:33.452] [Render thread/INFO] [mezz.jei.library.load.PluginCaller/]: Sending ConfigManager: industrialforegoing:default took 13.50 ?s [05Nov2024 14:11:33.452] [Render thread/INFO] [mezz.jei.library.load.PluginCaller/]: Sending ConfigManager: curios:curios ... [05Nov2024 14:11:33.453] [Render thread/INFO] [mezz.jei.library.load.PluginCaller/]: Sending ConfigManager: curios:curios took 10.50 ?s [05Nov2024 14:11:33.453] [Render thread/INFO] [mezz.jei.library.load.PluginCaller/]: Sending ConfigManager: mynethersdelight:jei_plugin ... [05Nov2024 14:11:33.453] [Render thread/INFO] [mezz.jei.library.load.PluginCaller/]: Sending ConfigManager: mynethersdelight:jei_plugin took 8.900 ?s [05Nov2024 14:11:33.453] [Render thread/INFO] [mezz.jei.library.load.PluginCaller/]: Sending ConfigManager: toms_trading_network:jei ... [05Nov2024 14:11:33.453] [Render thread/INFO] [mezz.jei.library.load.PluginCaller/]: Sending ConfigManager: toms_trading_network:jei took 9.700 ?s [05Nov2024 14:11:33.454] [Render thread/INFO] [mezz.jei.library.load.PluginCaller/]: Sending ConfigManager: theabyss:jei_recipes_plugin ... [05Nov2024 14:11:33.454] [Render thread/INFO] [mezz.jei.library.load.PluginCaller/]: Sending ConfigManager: theabyss:jei_recipes_plugin took 8.700 ?s [05Nov2024 14:11:33.454] [Render thread/INFO] [mezz.jei.library.load.PluginCaller/]: Sending ConfigManager: sliceanddice:jei ... [05Nov2024 14:11:33.454] [Render thread/INFO] [mezz.jei.library.load.PluginCaller/]: Sending ConfigManager: sliceanddice:jei took 8.200 ?s [05Nov2024 14:11:33.454] [Render thread/INFO] [mezz.jei.library.load.PluginCaller/]: Sending ConfigManager: cgm:crafting ... [05Nov2024 14:11:33.455] [Render thread/INFO] [mezz.jei.library.load.PluginCaller/]: Sending ConfigManager: cgm:crafting took 8.600 ?s [05Nov2024 14:11:33.455] [Render thread/INFO] [mezz.jei.library.load.PluginCaller/]: Sending ConfigManager: rechiseled:chiseling_plugin ... [05Nov2024 14:11:33.455] [Render thread/INFO] [mezz.jei.library.load.PluginCaller/]: Sending ConfigManager: rechiseled:chiseling_plugin took 8.200 ?s [05Nov2024 14:11:33.455] [Render thread/INFO] [mezz.jei.library.load.PluginCaller/]: Sending ConfigManager: jei:debug ... [05Nov2024 14:11:33.455] [Render thread/INFO] [mezz.jei.library.load.PluginCaller/]: Sending ConfigManager: jei:debug took 6.100 ?s [05Nov2024 14:11:33.456] [Render thread/INFO] [mezz.jei.library.load.PluginCaller/]: Sending ConfigManager: jei:gui ... [05Nov2024 14:11:33.456] [Render thread/INFO] [mezz.jei.library.load.PluginCaller/]: Sending ConfigManager: jei:gui took 9.100 ?s [05Nov2024 14:11:33.456] [Render thread/INFO] [mezz.jei.library.load.PluginCaller/]: Sending ConfigManager: jei:forge_gui ... [05Nov2024 14:11:33.456] [Render thread/INFO] [mezz.jei.library.load.PluginCaller/]: Sending ConfigManager: jei:forge_gui took 11.60 ?s [05Nov2024 14:11:33.456] [Render thread/INFO] [mezz.jei.library.load.PluginCaller/]: Sending ConfigManager: ae2:core ... [05Nov2024 14:11:33.457] [Render thread/INFO] [mezz.jei.library.load.PluginCaller/]: Sending ConfigManager: ae2:core took 11.00 ?s [05Nov2024 14:11:33.457] [Render thread/INFO] [mezz.jei.library.load.PluginCaller/]: Sending ConfigManager: mantle:jei ... [05Nov2024 14:11:33.457] [Render thread/INFO] [mezz.jei.library.load.PluginCaller/]: Sending ConfigManager: mantle:jei took 8.200 ?s [05Nov2024 14:11:33.457] [Render thread/INFO] [mezz.jei.library.load.PluginCaller/]: Sending ConfigManager: securitycraft:securitycraft ... [05Nov2024 14:11:33.457] [Render thread/INFO] [mezz.jei.library.load.PluginCaller/]: Sending ConfigManager: securitycraft:securitycraft took 9.200 ?s [05Nov2024 14:11:33.458] [Render thread/INFO] [mezz.jei.library.load.PluginCaller/]: Sending ConfigManager: occultism:jei ... [05Nov2024 14:11:33.458] [Render thread/INFO] [mezz.jei.library.load.PluginCaller/]: Sending ConfigManager: occultism:jei took 12.90 ?s [05Nov2024 14:11:33.458] [Render thread/INFO] [mezz.jei.library.load.PluginCaller/]: Sending ConfigManager: aether:jei ... [05Nov2024 14:11:33.458] [Render thread/INFO] [mezz.jei.library.load.PluginCaller/]: Sending ConfigManager: aether:jei took 7.200 ?s [05Nov2024 14:11:33.458] [Render thread/INFO] [mezz.jei.library.load.PluginCaller/]: Sending ConfigManager: deep_aether:jei ... [05Nov2024 14:11:33.458] [Render thread/INFO] [mezz.jei.library.load.PluginCaller/]: Sending ConfigManager: deep_aether:jei took 5.700 ?s [05Nov2024 14:11:33.459] [Render thread/INFO] [mezz.jei.library.load.PluginCaller/]: Sending ConfigManager: sophisticatedcore:default ... [05Nov2024 14:11:33.459] [Render thread/INFO] [mezz.jei.library.load.PluginCaller/]: Sending ConfigManager: sophisticatedcore:default took 5.300 ?s [05Nov2024 14:11:33.459] [Render thread/INFO] [mezz.jei.library.load.PluginCaller/]: Sending ConfigManager: cookingforblockheads:jei ... [05Nov2024 14:11:33.459] [Render thread/INFO] [mezz.jei.library.load.PluginCaller/]: Sending ConfigManager: cookingforblockheads:jei took 5.300 ?s [05Nov2024 14:11:33.459] [Render thread/INFO] [mezz.jei.library.load.PluginCaller/]: Sending ConfigManager: iceandfire:iceandfire ... [05Nov2024 14:11:33.459] [Render thread/INFO] [mezz.jei.library.load.PluginCaller/]: Sending ConfigManager: iceandfire:iceandfire took 10.70 ?s [05Nov2024 14:11:33.459] [Render thread/INFO] [mezz.jei.library.load.PluginCaller/]: Sending ConfigManager: sophisticatedbackpacks:default ... [05Nov2024 14:11:33.460] [Render thread/INFO] [mezz.jei.library.load.PluginCaller/]: Sending ConfigManager: sophisticatedbackpacks:default took 12.40 ?s [05Nov2024 14:11:33.460] [Render thread/INFO] [mezz.jei.library.load.PluginCaller/]: Sending ConfigManager: tinkers_thinking:jei_plugin ... [05Nov2024 14:11:33.460] [Render thread/INFO] [mezz.jei.library.load.PluginCaller/]: Sending ConfigManager: tinkers_thinking:jei_plugin took 11.20 ?s [05Nov2024 14:11:33.460] [Render thread/INFO] [mezz.jei.library.load.PluginCaller/]: Sending ConfigManager: twilightforest:jei_plugin ... [05Nov2024 14:11:33.460] [Render thread/INFO] [mezz.jei.library.load.PluginCaller/]: Sending ConfigManager: twilightforest:jei_plugin took 10.70 ?s [05Nov2024 14:11:33.460] [Render thread/INFO] [mezz.jei.library.load.PluginCaller/]: Sending ConfigManager: farmersdelight:jei_plugin ... [05Nov2024 14:11:33.461] [Render thread/INFO] [mezz.jei.library.load.PluginCaller/]: Sending ConfigManager: farmersdelight:jei_plugin took 10.00 ?s [05Nov2024 14:11:33.461] [Render thread/INFO] [mezz.jei.library.load.PluginCaller/]: Sending ConfigManager: farmersdelight:jei_plugin ... [05Nov2024 14:11:33.461] [Render thread/INFO] [mezz.jei.library.load.PluginCaller/]: Sending ConfigManager: farmersdelight:jei_plugin took 8.300 ?s [05Nov2024 14:11:33.461] [Render thread/INFO] [mezz.jei.library.load.PluginCaller/]: Sending ConfigManager: patchouli:patchouli ... [05Nov2024 14:11:33.461] [Render thread/INFO] [mezz.jei.library.load.PluginCaller/]: Sending ConfigManager: patchouli:patchouli took 10.10 ?s [05Nov2024 14:11:33.461] [Render thread/INFO] [mezz.jei.library.load.PluginCaller/]: Sending ConfigManager: ars_nouveau:main ... [05Nov2024 14:11:33.462] [Render thread/INFO] [mezz.jei.library.load.PluginCaller/]: Sending ConfigManager: ars_nouveau:main took 9.400 ?s [05Nov2024 14:11:33.462] [Render thread/INFO] [mezz.jei.library.load.PluginCaller/]: Sending ConfigManager: survive:recipe_handler ... [05Nov2024 14:11:33.462] [Render thread/INFO] [mezz.jei.library.load.PluginCaller/]: Sending ConfigManager: survive:recipe_handler took 8.900 ?s [05Nov2024 14:11:33.462] [Render thread/INFO] [mezz.jei.library.load.PluginCaller/]: Sending ConfigManager: twilightdelight:main ... [05Nov2024 14:11:33.462] [Render thread/INFO] [mezz.jei.library.load.PluginCaller/]: Sending ConfigManager: twilightdelight:main took 16.10 ?s [05Nov2024 14:11:33.462] [Render thread/INFO] [mezz.jei.library.load.PluginCaller/]: Sending ConfigManager: ftblibrary:jei ... [05Nov2024 14:11:33.463] [Render thread/INFO] [mezz.jei.library.load.PluginCaller/]: Sending ConfigManager: ftblibrary:jei took 11.70 ?s [05Nov2024 14:11:33.463] [Render thread/INFO] [mezz.jei.library.load.PluginCaller/]: Sending ConfigManager: moreoverlays:jei_module ... [05Nov2024 14:11:33.463] [Render thread/INFO] [mezz.jei.library.load.PluginCaller/]: Sending ConfigManager: moreoverlays:jei_module took 24.60 ?s [05Nov2024 14:11:33.463] [Render thread/INFO] [mezz.jei.library.load.PluginCaller/]: Sending ConfigManager: bigreactors:jeiplugin ... [05Nov2024 14:11:33.463] [Render thread/INFO] [mezz.jei.library.load.PluginCaller/]: Sending ConfigManager: bigreactors:jeiplugin took 5.700 ?s [05Nov2024 14:11:33.463] [Render thread/INFO] [mezz.jei.library.load.PluginCaller/]: Sending ConfigManager: trashcans:jei_plugin ... [05Nov2024 14:11:33.463] [Render thread/INFO] [mezz.jei.library.load.PluginCaller/]: Sending ConfigManager: trashcans:jei_plugin took 6.500 ?s [05Nov2024 14:11:33.464] [Render thread/INFO] [mezz.jei.library.load.PluginCaller/]: Sending ConfigManager: enchanted:jei_plugin ... [05Nov2024 14:11:33.464] [Render thread/INFO] [mezz.jei.library.load.PluginCaller/]: Sending ConfigManager: enchanted:jei_plugin took 6.200 ?s [05Nov2024 14:11:33.464] [Render thread/INFO] [mezz.jei.library.load.PluginCaller/]: Sending ConfigManager: kubejs:jei ... [05Nov2024 14:11:33.464] [Render thread/INFO] [mezz.jei.library.load.PluginCaller/]: Sending ConfigManager: kubejs:jei took 6.900 ?s [05Nov2024 14:11:33.464] [Render thread/INFO] [mezz.jei.library.load.PluginCaller/]: Sending ConfigManager: ae2wtlib:core ... [05Nov2024 14:11:33.464] [Render thread/INFO] [mezz.jei.library.load.PluginCaller/]: Sending ConfigManager: ae2wtlib:core took 6.900 ?s [05Nov2024 14:11:33.465] [Render thread/INFO] [mezz.jei.library.load.PluginCaller/]: Sending ConfigManager: trashslot:trashslot ... [05Nov2024 14:11:33.465] [Render thread/INFO] [mezz.jei.library.load.PluginCaller/]: Sending ConfigManager: trashslot:trashslot took 5.900 ?s [05Nov2024 14:11:33.465] [Render thread/INFO] [mezz.jei.library.load.PluginCaller/]: Sending ConfigManager: ftbxmodcompat:ftbquests_jei ... [05Nov2024 14:11:33.465] [Render thread/INFO] [mezz.jei.library.load.PluginCaller/]: Sending ConfigManager: ftbxmodcompat:ftbquests_jei took 4.800 ?s [05Nov2024 14:11:33.465] [Render thread/INFO] [mezz.jei.library.load.PluginCaller/]: Sending ConfigManager: tacz:jei ... [05Nov2024 14:11:33.465] [Render thread/INFO] [mezz.jei.library.load.PluginCaller/]: Sending ConfigManager: tacz:jei took 4.400 ?s [05Nov2024 14:11:33.465] [Render thread/INFO] [mezz.jei.library.load.PluginCaller/]: Sending ConfigManager: create:jei_plugin ... [05Nov2024 14:11:33.465] [Render thread/INFO] [mezz.jei.library.load.PluginCaller/]: Sending ConfigManager: create:jei_plugin took 4.200 ?s [05Nov2024 14:11:33.465] [Render thread/INFO] [mezz.jei.library.load.PluginCaller/]: Sending ConfigManager: waystones:jei ... [05Nov2024 14:11:33.466] [Render thread/INFO] [mezz.jei.library.load.PluginCaller/]: Sending ConfigManager: waystones:jei took 4.300 ?s [05Nov2024 14:11:33.466] [Render thread/INFO] [mezz.jei.library.load.PluginCaller/]: Sending ConfigManager: endergetic:endergetic ... [05Nov2024 14:11:33.466] [Render thread/INFO] [mezz.jei.library.load.PluginCaller/]: Sending ConfigManager: endergetic:endergetic took 4.100 ?s [05Nov2024 14:11:33.466] [Render thread/INFO] [mezz.jei.library.load.PluginCaller/]: Sending ConfigManager: mysticalagriculture:jei_plugin ... [05Nov2024 14:11:33.466] [Render thread/INFO] [mezz.jei.library.load.PluginCaller/]: Sending ConfigManager: mysticalagriculture:jei_plugin took 4.100 ?s [05Nov2024 14:11:33.466] [Render thread/INFO] [mezz.jei.library.load.PluginCaller/]: Sending ConfigManager: mysticalagradditions:jei_plugin ... [05Nov2024 14:11:33.466] [Render thread/INFO] [mezz.jei.library.load.PluginCaller/]: Sending ConfigManager: mysticalagradditions:jei_plugin took 4.300 ?s [05Nov2024 14:11:33.468] [Render thread/INFO] [mezz.jei.library.load.PluginCaller/]: Sending ConfigManager: tconstruct:jei_plugin ... [05Nov2024 14:11:33.468] [Render thread/INFO] [mezz.jei.library.load.PluginCaller/]: Sending ConfigManager: tconstruct:jei_plugin took 12.20 ?s [05Nov2024 14:11:33.468] [Render thread/INFO] [mezz.jei.library.load.PluginCaller/]: Sending ConfigManager: titanium:default ... [05Nov2024 14:11:33.468] [Render thread/INFO] [mezz.jei.library.load.PluginCaller/]: Sending ConfigManager: titanium:default took 5.400 ?s [05Nov2024 14:11:33.468] [Render thread/INFO] [mezz.jei.library.load.PluginCaller/]: Sending ConfigManager: nethersdelight:jei_plugin ... [05Nov2024 14:11:33.469] [Render thread/INFO] [mezz.jei.library.load.PluginCaller/]: Sending ConfigManager: nethersdelight:jei_plugin took 10.70 ?s [05Nov2024 14:11:33.469] [Render thread/INFO] [mezz.jei.library.load.PluginCaller/]: Sending ConfigManager: quark:quark ... [05Nov2024 14:11:33.469] [Render thread/INFO] [mezz.jei.library.load.PluginCaller/]: Sending ConfigManager: quark:quark took 10.10 ?s [05Nov2024 14:11:33.469] [Render thread/INFO] [mezz.jei.library.load.PluginCaller/]: Sending ConfigManager: survivalistessentials:jei_plugin ... [05Nov2024 14:11:33.470] [Render thread/INFO] [mezz.jei.library.load.PluginCaller/]: Sending ConfigManager: survivalistessentials:jei_plugin took 9.300 ?s [05Nov2024 14:11:33.470] [Render thread/INFO] [mezz.jei.library.load.PluginCaller/]: Sending ConfigManager: ars_elemental:main ... [05Nov2024 14:11:33.470] [Render thread/INFO] [mezz.jei.library.load.PluginCaller/]: Sending ConfigManager: ars_elemental:main took 6.300 ?s [05Nov2024 14:11:33.470] [Render thread/INFO] [mezz.jei.library.load.PluginCaller/]: Sending ConfigManager: modonomicon:modonomicon ... [05Nov2024 14:11:33.470] [Render thread/INFO] [mezz.jei.library.load.PluginCaller/]: Sending ConfigManager: modonomicon:modonomicon took 6.200 ?s [05Nov2024 14:11:33.470] [Render thread/INFO] [mezz.jei.library.load.PluginCaller/]: Sending ConfigManager: createaddition:jei_plugin ... [05Nov2024 14:11:33.470] [Render thread/INFO] [mezz.jei.library.load.PluginCaller/]: Sending ConfigManager: createaddition:jei_plugin took 7.100 ?s [05Nov2024 14:11:33.471] [Render thread/INFO] [mezz.jei.library.load.PluginCaller/]: Sending ConfigManager: jei:internal ... [05Nov2024 14:11:33.471] [Render thread/INFO] [mezz.jei.library.load.PluginCaller/]: Sending ConfigManager: jei:internal took 6.400 ?s [05Nov2024 14:11:33.522] [Render thread/INFO] [quark/]: Dispatching Module Step SETUP_CLIENT [05Nov2024 14:11:33.755] [Render thread/INFO] [quark/]: Registering model layer quark:crab#main [05Nov2024 14:11:33.755] [Render thread/INFO] [quark/]: Registering model layer quark:shiba#main [05Nov2024 14:11:33.755] [Render thread/INFO] [quark/]: Registering model layer quark:quark_boat_chest#main [05Nov2024 14:11:33.755] [Render thread/INFO] [quark/]: Registering model layer quark:wraith#main [05Nov2024 14:11:33.755] [Render thread/INFO] [quark/]: Registering model layer quark:forgotten_hat#main [05Nov2024 14:11:33.755] [Render thread/INFO] [quark/]: Registering model layer quark:stoneling#main [05Nov2024 14:11:33.755] [Render thread/INFO] [quark/]: Registering model layer quark:toretoise#main [05Nov2024 14:11:33.755] [Render thread/INFO] [quark/]: Registering model layer quark:quark_boat#main [05Nov2024 14:11:33.755] [Render thread/INFO] [quark/]: Registering model layer quark:foxhound#main [05Nov2024 14:11:33.755] [Render thread/INFO] [quark/]: Registering model layer quark:backpack#main [05Nov2024 14:11:33.993] [Render thread/INFO] [com.confusedparrotfish.difusement.Difusement/]: Registered Block Entity Renderers (Tile Entity Renderers) for difusement [05Nov2024 14:11:34.311] [Render thread/INFO] [quark/]: Dispatching Module Step REGISTER_TOOLTIP_COMPONENT_FACTORIES [05Nov2024 14:11:34.343] [Render thread/INFO] [journeymap/]: Registering Keybinds [05Nov2024 14:11:34.344] [Render thread/INFO] [quark/]: Dispatching Module Step REGISTER_KEYBINDS [05Nov2024 14:11:34.545] [Render thread/INFO] [ModernFix/]: Invalidating pack caches [05Nov2024 14:11:34.545] [Render thread/INFO] [net.minecraft.server.packs.resources.ReloadableResourceManager/]: Reloading ResourceManager: Default, Mod Resources, hordes, Everycomp Generated Pack, quark-emote-pack, KubeJS Resource Pack [assets] [05Nov2024 14:11:36.246] [Render thread/INFO] [net.mehvahdjukaar.every_compat.EveryCompat/]: Generated runtime CLIENT_RESOURCES for pack Everycomp Generated Pack in: 1658 ms [05Nov2024 14:11:37.074] [Worker-ResourceReload-3/WARN] [net.minecraft.client.sounds.SoundManager/]: File minecraft:sounds/block/chest/close1.ogg does not exist, cannot add it to event graveyard:block.coffin.close [05Nov2024 14:11:37.080] [Worker-ResourceReload-3/WARN] [net.minecraft.client.sounds.SoundManager/]: File endergetic:sounds/entity/eetle/leetle_transform.ogg does not exist, cannot add it to event endergetic:entity.eetle.leetle_transform [05Nov2024 14:11:37.080] [Worker-ResourceReload-3/WARN] [net.minecraft.client.sounds.SoundManager/]: File endergetic:sounds/block/eetle_egg_step.ogg does not exist, cannot add it to event endergetic:block.eetle_egg.step [05Nov2024 14:11:37.080] [Worker-ResourceReload-3/WARN] [net.minecraft.client.sounds.SoundManager/]: File endergetic:sounds/block/eetle_egg_hit.ogg does not exist, cannot add it to event endergetic:block.eetle_egg.hit [05Nov2024 14:11:37.081] [Worker-ResourceReload-3/WARN] [net.minecraft.client.sounds.SoundManager/]: File endergetic:sounds/block/eetle_egg_fall.ogg does not exist, cannot add it to event endergetic:block.eetle_egg.fall [05Nov2024 14:11:37.113] [Worker-ResourceReload-1/INFO] [HammerLib/]: Registered a new model with loader "hammerlib:block/test" [05Nov2024 14:11:37.337] [Worker-ResourceReload-5/INFO] [quark/]: Dispatching Module Step TEXTURE_STITCH [05Nov2024 14:11:37.681] [Worker-ResourceReload-6/INFO] [quark/]: Dispatching Module Step TEXTURE_STITCH [05Nov2024 14:11:37.848] [Worker-ResourceReload-4/INFO] [quark/]: Dispatching Module Step TEXTURE_STITCH [05Nov2024 14:11:38.074] [Worker-ResourceReload-0/INFO] [quark/]: Dispatching Module Step TEXTURE_STITCH [05Nov2024 14:11:38.277] [modloading-worker-0/INFO] [PluginManager/]: Executing phase CONFIG_LOAD for plugin class CuriosPlugin [05Nov2024 14:11:38.291] [modloading-worker-0/INFO] [PluginManager/]: Executing phase CONFIG_LOAD for plugin class CuriosPlugin [05Nov2024 14:11:38.311] [modloading-worker-0/INFO] [PluginManager/]: Executing phase CONFIG_LOAD for plugin class CuriosPlugin [05Nov2024 14:11:38.324] [modloading-worker-0/INFO] [PluginManager/]: Executing phase CONFIG_LOAD for plugin class CuriosPlugin [05Nov2024 14:11:38.326] [Worker-ResourceReload-1/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Exception loading blockstate definition: 'industrialforegoing:blockstates/machine_frame_pity.json' missing model for variant: 'industrialforegoing:machine_frame_pity#' [05Nov2024 14:11:38.326] [Worker-ResourceReload-1/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Exception loading blockstate definition: 'industrialforegoing:blockstates/machine_frame_simple.json' missing model for variant: 'industrialforegoing:machine_frame_simple#' [05Nov2024 14:11:38.327] [Worker-ResourceReload-1/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Exception loading blockstate definition: 'industrialforegoing:blockstates/machine_frame_advanced.json' missing model for variant: 'industrialforegoing:machine_frame_advanced#' [05Nov2024 14:11:38.327] [Worker-ResourceReload-1/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Exception loading blockstate definition: 'industrialforegoing:blockstates/machine_frame_supreme.json' missing model for variant: 'industrialforegoing:machine_frame_supreme#' [05Nov2024 14:11:38.328] [Worker-ResourceReload-1/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Exception loading blockstate definition: 'industrialforegoing:blockstates/latex.json' missing model for variant: 'industrialforegoing:latex#level=12' [05Nov2024 14:11:38.329] [Worker-ResourceReload-1/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Exception loading blockstate definition: 'industrialforegoing:blockstates/latex.json' missing model for variant: 'industrialforegoing:latex#level=11' [05Nov2024 14:11:38.329] [Worker-ResourceReload-1/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Exception loading blockstate definition: 'industrialforegoing:blockstates/latex.json' missing model for variant: 'industrialforegoing:latex#level=14' [05Nov2024 14:11:38.329] [Worker-ResourceReload-1/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Exception loading blockstate definition: 'industrialforegoing:blockstates/latex.json' missing model for variant: 'industrialforegoing:latex#level=13' [05Nov2024 14:11:38.329] [Worker-ResourceReload-1/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Exception loading blockstate definition: 'industrialforegoing:blockstates/latex.json' missing model for variant: 'industrialforegoing:latex#level=6' [05Nov2024 14:11:38.329] [Worker-ResourceReload-1/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Exception loading blockstate definition: 'industrialforegoing:blockstates/latex.json' missing model for variant: 'industrialforegoing:latex#level=7' [05Nov2024 14:11:38.329] [Worker-ResourceReload-1/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Exception loading blockstate definition: 'industrialforegoing:blockstates/latex.json' missing model for variant: 'industrialforegoing:latex#level=8' [05Nov2024 14:11:38.329] [Worker-ResourceReload-1/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Exception loading blockstate definition: 'industrialforegoing:blockstates/latex.json' missing model for variant: 'industrialforegoing:latex#level=10' [05Nov2024 14:11:38.330] [Worker-ResourceReload-1/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Exception loading blockstate definition: 'industrialforegoing:blockstates/latex.json' missing model for variant: 'industrialforegoing:latex#level=9' [05Nov2024 14:11:38.330] [Worker-ResourceReload-1/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Exception loading blockstate definition: 'industrialforegoing:blockstates/latex.json' missing model for variant: 'industrialforegoing:latex#level=2' [05Nov2024 14:11:38.330] [Worker-ResourceReload-1/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Exception loading blockstate definition: 'industrialforegoing:blockstates/latex.json' missing model for variant: 'industrialforegoing:latex#level=3' [05Nov2024 14:11:38.330] [Worker-ResourceReload-1/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Exception loading blockstate definition: 'industrialforegoing:blockstates/latex.json' missing model for variant: 'industrialforegoing:latex#level=4' [05Nov2024 14:11:38.330] [Worker-ResourceReload-1/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Exception loading blockstate definition: 'industrialforegoing:blockstates/latex.json' missing model for variant: 'industrialforegoing:latex#level=5' [05Nov2024 14:11:38.330] [Worker-ResourceReload-1/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Exception loading blockstate definition: 'industrialforegoing:blockstates/latex.json' missing model for variant: 'industrialforegoing:latex#level=15' [05Nov2024 14:11:38.330] [Worker-ResourceReload-1/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Exception loading blockstate definition: 'industrialforegoing:blockstates/latex.json' missing model for variant: 'industrialforegoing:latex#level=0' [05Nov2024 14:11:38.330] [Worker-ResourceReload-1/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Exception loading blockstate definition: 'industrialforegoing:blockstates/latex.json' missing model for variant: 'industrialforegoing:latex#level=1' [05Nov2024 14:11:38.331] [Worker-ResourceReload-1/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Exception loading blockstate definition: 'industrialforegoing:blockstates/meat.json' missing model for variant: 'industrialforegoing:meat#level=2' [05Nov2024 14:11:38.331] [Worker-ResourceReload-1/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Exception loading blockstate definition: 'industrialforegoing:blockstates/meat.json' missing model for variant: 'industrialforegoing:meat#level=1' [05Nov2024 14:11:38.331] [Worker-ResourceReload-1/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Exception loading blockstate definition: 'industrialforegoing:blockstates/meat.json' missing model for variant: 'industrialforegoing:meat#level=0' [05Nov2024 14:11:38.331] [Worker-ResourceReload-1/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Exception loading blockstate definition: 'industrialforegoing:blockstates/meat.json' missing model for variant: 'industrialforegoing:meat#level=6' [05Nov2024 14:11:38.331] [Worker-ResourceReload-1/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Exception loading blockstate definition: 'industrialforegoing:blockstates/meat.json' missing model for variant: 'industrialforegoing:meat#level=5' [05Nov2024 14:11:38.331] [Worker-ResourceReload-1/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Exception loading blockstate definition: 'industrialforegoing:blockstates/meat.json' missing model for variant: 'industrialforegoing:meat#level=4' [05Nov2024 14:11:38.331] [Worker-ResourceReload-1/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Exception loading blockstate definition: 'industrialforegoing:blockstates/meat.json' missing model for variant: 'industrialforegoing:meat#level=3' [05Nov2024 14:11:38.332] [Worker-ResourceReload-1/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Exception loading blockstate definition: 'industrialforegoing:blockstates/meat.json' missing model for variant: 'industrialforegoing:meat#level=12' [05Nov2024 14:11:38.332] [Worker-ResourceReload-1/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Exception loading blockstate definition: 'industrialforegoing:blockstates/meat.json' missing model for variant: 'industrialforegoing:meat#level=9' [05Nov2024 14:11:38.332] [Worker-ResourceReload-1/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Exception loading blockstate definition: 'industrialforegoing:blockstates/meat.json' missing model for variant: 'industrialforegoing:meat#level=13' [05Nov2024 14:11:38.332] [Worker-ResourceReload-1/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Exception loading blockstate definition: 'industrialforegoing:blockstates/meat.json' missing model for variant: 'industrialforegoing:meat#level=8' [05Nov2024 14:11:38.332] [Worker-ResourceReload-1/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Exception loading blockstate definition: 'industrialforegoing:blockstates/meat.json' missing model for variant: 'industrialforegoing:meat#level=14' [05Nov2024 14:11:38.332] [Worker-ResourceReload-1/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Exception loading blockstate definition: 'industrialforegoing:blockstates/meat.json' missing model for variant: 'industrialforegoing:meat#level=7' [05Nov2024 14:11:38.332] [Worker-ResourceReload-1/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Exception loading blockstate definition: 'industrialforegoing:blockstates/meat.json' missing model for variant: 'industrialforegoing:meat#level=15' [05Nov2024 14:11:38.332] [Worker-ResourceReload-1/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Exception loading blockstate definition: 'industrialforegoing:blockstates/meat.json' missing model for variant: 'industrialforegoing:meat#level=10' [05Nov2024 14:11:38.332] [Worker-ResourceReload-1/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Exception loading blockstate definition: 'industrialforegoing:blockstates/meat.json' missing model for variant: 'industrialforegoing:meat#level=11' [05Nov2024 14:11:38.333] [Worker-ResourceReload-1/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Exception loading blockstate definition: 'industrialforegoing:blockstates/sewage.json' missing model for variant: 'industrialforegoing:sewage#level=2' [05Nov2024 14:11:38.333] [Worker-ResourceReload-1/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Exception loading blockstate definition: 'industrialforegoing:blockstates/sewage.json' missing model for variant: 'industrialforegoing:sewage#level=3' [05Nov2024 14:11:38.333] [Worker-ResourceReload-1/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Exception loading blockstate definition: 'industrialforegoing:blockstates/sewage.json' missing model for variant: 'industrialforegoing:sewage#level=4' [05Nov2024 14:11:38.333] [Worker-ResourceReload-1/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Exception loading blockstate definition: 'industrialforegoing:blockstates/sewage.json' missing model for variant: 'industrialforegoing:sewage#level=5' [05Nov2024 14:11:38.333] [Worker-ResourceReload-1/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Exception loading blockstate definition: 'industrialforegoing:blockstates/sewage.json' missing model for variant: 'industrialforegoing:sewage#level=15' [05Nov2024 14:11:38.333] [Worker-ResourceReload-1/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Exception loading blockstate definition: 'industrialforegoing:blockstates/sewage.json' missing model for variant: 'industrialforegoing:sewage#level=0' [05Nov2024 14:11:38.333] [Worker-ResourceReload-1/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Exception loading blockstate definition: 'industrialforegoing:blockstates/sewage.json' missing model for variant: 'industrialforegoing:sewage#level=1' [05Nov2024 14:11:38.333] [Worker-ResourceReload-1/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Exception loading blockstate definition: 'industrialforegoing:blockstates/sewage.json' missing model for variant: 'industrialforegoing:sewage#level=12' [05Nov2024 14:11:38.333] [Worker-ResourceReload-1/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Exception loading blockstate definition: 'industrialforegoing:blockstates/sewage.json' missing model for variant: 'industrialforegoing:sewage#level=11' [05Nov2024 14:11:38.333] [Worker-ResourceReload-1/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Exception loading blockstate definition: 'industrialforegoing:blockstates/sewage.json' missing model for variant: 'industrialforegoing:sewage#level=14' [05Nov2024 14:11:38.334] [Worker-ResourceReload-1/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Exception loading blockstate definition: 'industrialforegoing:blockstates/sewage.json' missing model for variant: 'industrialforegoing:sewage#level=13' [05Nov2024 14:11:38.334] [Worker-ResourceReload-1/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Exception loading blockstate definition: 'industrialforegoing:blockstates/sewage.json' missing model for variant: 'industrialforegoing:sewage#level=6' [05Nov2024 14:11:38.334] [Worker-ResourceReload-1/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Exception loading blockstate definition: 'industrialforegoing:blockstates/sewage.json' missing model for variant: 'industrialforegoing:sewage#level=7' [05Nov2024 14:11:38.334] [Worker-ResourceReload-1/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Exception loading blockstate definition: 'industrialforegoing:blockstates/sewage.json' missing model for variant: 'industrialforegoing:sewage#level=8' [05Nov2024 14:11:38.334] [Worker-ResourceReload-1/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Exception loading blockstate definition: 'industrialforegoing:blockstates/sewage.json' missing model for variant: 'industrialforegoing:sewage#level=10' [05Nov2024 14:11:38.334] [Worker-ResourceReload-1/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Exception loading blockstate definition: 'industrialforegoing:blockstates/sewage.json' missing model for variant: 'industrialforegoing:sewage#level=9' [05Nov2024 14:11:38.334] [Worker-ResourceReload-1/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Exception loading blockstate definition: 'industrialforegoing:blockstates/essence.json' missing model for variant: 'industrialforegoing:essence#level=13' [05Nov2024 14:11:38.334] [Worker-ResourceReload-1/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Exception loading blockstate definition: 'industrialforegoing:blockstates/essence.json' missing model for variant: 'industrialforegoing:essence#level=14' [05Nov2024 14:11:38.334] [Worker-ResourceReload-1/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Exception loading blockstate definition: 'industrialforegoing:blockstates/essence.json' missing model for variant: 'industrialforegoing:essence#level=15' [05Nov2024 14:11:38.335] [Worker-ResourceReload-1/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Exception loading blockstate definition: 'industrialforegoing:blockstates/essence.json' missing model for variant: 'industrialforegoing:essence#level=3' [05Nov2024 14:11:38.335] [Worker-ResourceReload-1/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Exception loading blockstate definition: 'industrialforegoing:blockstates/essence.json' missing model for variant: 'industrialforegoing:essence#level=2' [05Nov2024 14:11:38.335] [Worker-ResourceReload-1/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Exception loading blockstate definition: 'industrialforegoing:blockstates/essence.json' missing model for variant: 'industrialforegoing:essence#level=1' [05Nov2024 14:11:38.335] [Worker-ResourceReload-1/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Exception loading blockstate definition: 'industrialforegoing:blockstates/essence.json' missing model for variant: 'industrialforegoing:essence#level=0' [05Nov2024 14:11:38.335] [Worker-ResourceReload-1/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Exception loading blockstate definition: 'industrialforegoing:blockstates/essence.json' missing model for variant: 'industrialforegoing:essence#level=9' [05Nov2024 14:11:38.335] [Worker-ResourceReload-1/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Exception loading blockstate definition: 'industrialforegoing:blockstates/essence.json' missing model for variant: 'industrialforegoing:essence#level=8' [05Nov2024 14:11:38.335] [Worker-ResourceReload-1/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Exception loading blockstate definition: 'industrialforegoing:blockstates/essence.json' missing model for variant: 'industrialforegoing:essence#level=7' [05Nov2024 14:11:38.335] [Worker-ResourceReload-1/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Exception loading blockstate definition: 'industrialforegoing:blockstates/essence.json' missing model for variant: 'industrialforegoing:essence#level=6' [05Nov2024 14:11:38.335] [Worker-ResourceReload-1/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Exception loading blockstate definition: 'industrialforegoing:blockstates/essence.json' missing model for variant: 'industrialforegoing:essence#level=5' [05Nov2024 14:11:38.335] [Worker-ResourceReload-1/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Exception loading blockstate definition: 'industrialforegoing:blockstates/essence.json' missing model for variant: 'industrialforegoing:essence#level=4' [05Nov2024 14:11:38.335] [Worker-ResourceReload-1/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Exception loading blockstate definition: 'industrialforegoing:blockstates/essence.json' missing model for variant: 'industrialforegoing:essence#level=10' [05Nov2024 14:11:38.336] [Worker-ResourceReload-1/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Exception loading blockstate definition: 'industrialforegoing:blockstates/essence.json' missing model for variant: 'industrialforegoing:essence#level=11' [05Nov2024 14:11:38.336] [Worker-ResourceReload-1/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Exception loading blockstate definition: 'industrialforegoing:blockstates/essence.json' missing model for variant: 'industrialforegoing:essence#level=12' [05Nov2024 14:11:38.336] [Worker-ResourceReload-1/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Exception loading blockstate definition: 'industrialforegoing:blockstates/sludge.json' missing model for variant: 'industrialforegoing:sludge#level=5' [05Nov2024 14:11:38.336] [Worker-ResourceReload-1/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Exception loading blockstate definition: 'industrialforegoing:blockstates/sludge.json' missing model for variant: 'industrialforegoing:sludge#level=4' [05Nov2024 14:11:38.336] [Worker-ResourceReload-1/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Exception loading blockstate definition: 'industrialforegoing:blockstates/sludge.json' missing model for variant: 'industrialforegoing:sludge#level=3' [05Nov2024 14:11:38.336] [Worker-ResourceReload-1/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Exception loading blockstate definition: 'industrialforegoing:blockstates/sludge.json' missing model for variant: 'industrialforegoing:sludge#level=2' [05Nov2024 14:11:38.336] [Worker-ResourceReload-1/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Exception loading blockstate definition: 'industrialforegoing:blockstates/sludge.json' missing model for variant: 'industrialforegoing:sludge#level=9' [05Nov2024 14:11:38.336] [Worker-ResourceReload-1/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Exception loading blockstate definition: 'industrialforegoing:blockstates/sludge.json' missing model for variant: 'industrialforegoing:sludge#level=8' [05Nov2024 14:11:38.336] [Worker-ResourceReload-1/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Exception loading blockstate definition: 'industrialforegoing:blockstates/sludge.json' missing model for variant: 'industrialforegoing:sludge#level=7' [05Nov2024 14:11:38.337] [Worker-ResourceReload-1/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Exception loading blockstate definition: 'industrialforegoing:blockstates/sludge.json' missing model for variant: 'industrialforegoing:sludge#level=6' [05Nov2024 14:11:38.337] [Worker-ResourceReload-1/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Exception loading blockstate definition: 'industrialforegoing:blockstates/sludge.json' missing model for variant: 'industrialforegoing:sludge#level=1' [05Nov2024 14:11:38.337] [Worker-ResourceReload-1/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Exception loading blockstate definition: 'industrialforegoing:blockstates/sludge.json' missing model for variant: 'industrialforegoing:sludge#level=0' [05Nov2024 14:11:38.337] [Worker-ResourceReload-1/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Exception loading blockstate definition: 'industrialforegoing:blockstates/sludge.json' missing model for variant: 'industrialforegoing:sludge#level=10' [05Nov2024 14:11:38.337] [Worker-ResourceReload-1/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Exception loading blockstate definition: 'industrialforegoing:blockstates/sludge.json' missing model for variant: 'industrialforegoing:sludge#level=15' [05Nov2024 14:11:38.337] [Worker-ResourceReload-1/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Exception loading blockstate definition: 'industrialforegoing:blockstates/sludge.json' missing model for variant: 'industrialforegoing:sludge#level=11' [05Nov2024 14:11:38.337] [Worker-ResourceReload-1/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Exception loading blockstate definition: 'industrialforegoing:blockstates/sludge.json' missing model for variant: 'industrialforegoing:sludge#level=12' [05Nov2024 14:11:38.337] [Worker-ResourceReload-1/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Exception loading blockstate definition: 'industrialforegoing:blockstates/sludge.json' missing model for variant: 'industrialforegoing:sludge#level=13' [05Nov2024 14:11:38.337] [Worker-ResourceReload-1/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Exception loading blockstate definition: 'industrialforegoing:blockstates/sludge.json' missing model for variant: 'industrialforegoing:sludge#level=14' [05Nov2024 14:11:38.338] [Worker-ResourceReload-1/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Exception loading blockstate definition: 'industrialforegoing:blockstates/pink_slime.json' missing model for variant: 'industrialforegoing:pink_slime#level=9' [05Nov2024 14:11:38.338] [Worker-ResourceReload-1/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Exception loading blockstate definition: 'industrialforegoing:blockstates/pink_slime.json' missing model for variant: 'industrialforegoing:pink_slime#level=8' [05Nov2024 14:11:38.338] [Worker-ResourceReload-1/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Exception loading blockstate definition: 'industrialforegoing:blockstates/pink_slime.json' missing model for variant: 'industrialforegoing:pink_slime#level=7' [05Nov2024 14:11:38.338] [Worker-ResourceReload-1/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Exception loading blockstate definition: 'industrialforegoing:blockstates/pink_slime.json' missing model for variant: 'industrialforegoing:pink_slime#level=6' [05Nov2024 14:11:38.338] [Worker-ResourceReload-1/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Exception loading blockstate definition: 'industrialforegoing:blockstates/pink_slime.json' missing model for variant: 'industrialforegoing:pink_slime#level=5' [05Nov2024 14:11:38.338] [Worker-ResourceReload-1/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Exception loading blockstate definition: 'industrialforegoing:blockstates/pink_slime.json' missing model for variant: 'industrialforegoing:pink_slime#level=4' [05Nov2024 14:11:38.338] [Worker-ResourceReload-1/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Exception loading blockstate definition: 'industrialforegoing:blockstates/pink_slime.json' missing model for variant: 'industrialforegoing:pink_slime#level=3' [05Nov2024 14:11:38.338] [Worker-ResourceReload-1/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Exception loading blockstate definition: 'industrialforegoing:blockstates/pink_slime.json' missing model for variant: 'industrialforegoing:pink_slime#level=10' [05Nov2024 14:11:38.339] [Worker-ResourceReload-1/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Exception loading blockstate definition: 'industrialforegoing:blockstates/pink_slime.json' missing model for variant: 'industrialforegoing:pink_slime#level=11' [05Nov2024 14:11:38.339] [Worker-ResourceReload-1/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Exception loading blockstate definition: 'industrialforegoing:blockstates/pink_slime.json' missing model for variant: 'industrialforegoing:pink_slime#level=12' [05Nov2024 14:11:38.339] [Worker-ResourceReload-1/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Exception loading blockstate definition: 'industrialforegoing:blockstates/pink_slime.json' missing model for variant: 'industrialforegoing:pink_slime#level=13' [05Nov2024 14:11:38.339] [Worker-ResourceReload-1/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Exception loading blockstate definition: 'industrialforegoing:blockstates/pink_slime.json' missing model for variant: 'industrialforegoing:pink_slime#level=14' [05Nov2024 14:11:38.339] [Worker-ResourceReload-1/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Exception loading blockstate definition: 'industrialforegoing:blockstates/pink_slime.json' missing model for variant: 'industrialforegoing:pink_slime#level=15' [05Nov2024 14:11:38.339] [Worker-ResourceReload-1/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Exception loading blockstate definition: 'industrialforegoing:blockstates/pink_slime.json' missing model for variant: 'industrialforegoing:pink_slime#level=2' [05Nov2024 14:11:38.339] [Worker-ResourceReload-1/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Exception loading blockstate definition: 'industrialforegoing:blockstates/pink_slime.json' missing model for variant: 'industrialforegoing:pink_slime#level=1' [05Nov2024 14:11:38.339] [Worker-ResourceReload-1/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Exception loading blockstate definition: 'industrialforegoing:blockstates/pink_slime.json' missing model for variant: 'industrialforegoing:pink_slime#level=0' [05Nov2024 14:11:38.340] [Worker-ResourceReload-1/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Exception loading blockstate definition: 'industrialforegoing:blockstates/biofuel.json' missing model for variant: 'industrialforegoing:biofuel#level=5' [05Nov2024 14:11:38.340] [Worker-ResourceReload-1/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Exception loading blockstate definition: 'industrialforegoing:blockstates/biofuel.json' missing model for variant: 'industrialforegoing:biofuel#level=4' [05Nov2024 14:11:38.340] [Worker-ResourceReload-1/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Exception loading blockstate definition: 'industrialforegoing:blockstates/biofuel.json' missing model for variant: 'industrialforegoing:biofuel#level=3' [05Nov2024 14:11:38.340] [Worker-ResourceReload-1/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Exception loading blockstate definition: 'industrialforegoing:blockstates/biofuel.json' missing model for variant: 'industrialforegoing:biofuel#level=2' [05Nov2024 14:11:38.340] [Worker-ResourceReload-1/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Exception loading blockstate definition: 'industrialforegoing:blockstates/biofuel.json' missing model for variant: 'industrialforegoing:biofuel#level=9' [05Nov2024 14:11:38.340] [Worker-ResourceReload-1/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Exception loading blockstate definition: 'industrialforegoing:blockstates/biofuel.json' missing model for variant: 'industrialforegoing:biofuel#level=8' [05Nov2024 14:11:38.340] [Worker-ResourceReload-1/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Exception loading blockstate definition: 'industrialforegoing:blockstates/biofuel.json' missing model for variant: 'industrialforegoing:biofuel#level=7' [05Nov2024 14:11:38.341] [Worker-ResourceReload-1/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Exception loading blockstate definition: 'industrialforegoing:blockstates/biofuel.json' missing model for variant: 'industrialforegoing:biofuel#level=6' [05Nov2024 14:11:38.341] [Worker-ResourceReload-1/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Exception loading blockstate definition: 'industrialforegoing:blockstates/biofuel.json' missing model for variant: 'industrialforegoing:biofuel#level=15' [05Nov2024 14:11:38.341] [Worker-ResourceReload-1/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Exception loading blockstate definition: 'industrialforegoing:blockstates/biofuel.json' missing model for variant: 'industrialforegoing:biofuel#level=11' [05Nov2024 14:11:38.341] [Worker-ResourceReload-1/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Exception loading blockstate definition: 'industrialforegoing:blockstates/biofuel.json' missing model for variant: 'industrialforegoing:biofuel#level=12' [05Nov2024 14:11:38.341] [Worker-ResourceReload-1/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Exception loading blockstate definition: 'industrialforegoing:blockstates/biofuel.json' missing model for variant: 'industrialforegoing:biofuel#level=13' [05Nov2024 14:11:38.341] [Worker-ResourceReload-1/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Exception loading blockstate definition: 'industrialforegoing:blockstates/biofuel.json' missing model for variant: 'industrialforegoing:biofuel#level=14' [05Nov2024 14:11:38.341] [Worker-ResourceReload-1/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Exception loading blockstate definition: 'industrialforegoing:blockstates/biofuel.json' missing model for variant: 'industrialforegoing:biofuel#level=10' [05Nov2024 14:11:38.341] [Worker-ResourceReload-1/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Exception loading blockstate definition: 'industrialforegoing:blockstates/biofuel.json' missing model for variant: 'industrialforegoing:biofuel#level=1' [05Nov2024 14:11:38.341] [Worker-ResourceReload-1/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Exception loading blockstate definition: 'industrialforegoing:blockstates/biofuel.json' missing model for variant: 'industrialforegoing:biofuel#level=0' [05Nov2024 14:11:38.342] [Worker-ResourceReload-1/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Exception loading blockstate definition: 'industrialforegoing:blockstates/ether_gas.json' missing model for variant: 'industrialforegoing:ether_gas#level=7' [05Nov2024 14:11:38.342] [Worker-ResourceReload-1/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Exception loading blockstate definition: 'industrialforegoing:blockstates/ether_gas.json' missing model for variant: 'industrialforegoing:ether_gas#level=6' [05Nov2024 14:11:38.342] [Worker-ResourceReload-1/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Exception loading blockstate definition: 'industrialforegoing:blockstates/ether_gas.json' missing model for variant: 'industrialforegoing:ether_gas#level=5' [05Nov2024 14:11:38.342] [Worker-ResourceReload-1/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Exception loading blockstate definition: 'industrialforegoing:blockstates/ether_gas.json' missing model for variant: 'industrialforegoing:ether_gas#level=4' [05Nov2024 14:11:38.342] [Worker-ResourceReload-1/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Exception loading blockstate definition: 'industrialforegoing:blockstates/ether_gas.json' missing model for variant: 'industrialforegoing:ether_gas#level=9' [05Nov2024 14:11:38.342] [Worker-ResourceReload-1/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Exception loading blockstate definition: 'industrialforegoing:blockstates/ether_gas.json' missing model for variant: 'industrialforegoing:ether_gas#level=8' [05Nov2024 14:11:38.342] [Worker-ResourceReload-1/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Exception loading blockstate definition: 'industrialforegoing:blockstates/ether_gas.json' missing model for variant: 'industrialforegoing:ether_gas#level=15' [05Nov2024 14:11:38.343] [Worker-ResourceReload-1/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Exception loading blockstate definition: 'industrialforegoing:blockstates/ether_gas.json' missing model for variant: 'industrialforegoing:ether_gas#level=14' [05Nov2024 14:11:38.343] [Worker-ResourceReload-1/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Exception loading blockstate definition: 'industrialforegoing:blockstates/ether_gas.json' missing model for variant: 'industrialforegoing:ether_gas#level=13' [05Nov2024 14:11:38.343] [Worker-ResourceReload-1/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Exception loading blockstate definition: 'industrialforegoing:blockstates/ether_gas.json' missing model for variant: 'industrialforegoing:ether_gas#level=12' [05Nov2024 14:11:38.343] [Worker-ResourceReload-1/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Exception loading blockstate definition: 'industrialforegoing:blockstates/ether_gas.json' missing model for variant: 'industrialforegoing:ether_gas#level=11' [05Nov2024 14:11:38.343] [Worker-ResourceReload-1/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Exception loading blockstate definition: 'industrialforegoing:blockstates/ether_gas.json' missing model for variant: 'industrialforegoing:ether_gas#level=10' [05Nov2024 14:11:38.343] [Worker-ResourceReload-1/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Exception loading blockstate definition: 'industrialforegoing:blockstates/ether_gas.json' missing model for variant: 'industrialforegoing:ether_gas#level=3' [05Nov2024 14:11:38.343] [Worker-ResourceReload-1/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Exception loading blockstate definition: 'industrialforegoing:blockstates/ether_gas.json' missing model for variant: 'industrialforegoing:ether_gas#level=2' [05Nov2024 14:11:38.344] [Worker-ResourceReload-1/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Exception loading blockstate definition: 'industrialforegoing:blockstates/ether_gas.json' missing model for variant: 'industrialforegoing:ether_gas#level=1' [05Nov2024 14:11:38.344] [Worker-ResourceReload-1/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Exception loading blockstate definition: 'industrialforegoing:blockstates/ether_gas.json' missing model for variant: 'industrialforegoing:ether_gas#level=0' [05Nov2024 14:11:38.344] [Worker-ResourceReload-1/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Exception loading blockstate definition: 'industrialforegoing:blockstates/raw_ore_meat.json' missing model for variant: 'industrialforegoing:raw_ore_meat#level=10' [05Nov2024 14:11:38.344] [Worker-ResourceReload-1/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Exception loading blockstate definition: 'industrialforegoing:blockstates/raw_ore_meat.json' missing model for variant: 'industrialforegoing:raw_ore_meat#level=11' [05Nov2024 14:11:38.344] [Worker-ResourceReload-1/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Exception loading blockstate definition: 'industrialforegoing:blockstates/raw_ore_meat.json' missing model for variant: 'industrialforegoing:raw_ore_meat#level=9' [05Nov2024 14:11:38.344] [Worker-ResourceReload-1/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Exception loading blockstate definition: 'industrialforegoing:blockstates/raw_ore_meat.json' missing model for variant: 'industrialforegoing:raw_ore_meat#level=8' [05Nov2024 14:11:38.344] [Worker-ResourceReload-1/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Exception loading blockstate definition: 'industrialforegoing:blockstates/raw_ore_meat.json' missing model for variant: 'industrialforegoing:raw_ore_meat#level=7' [05Nov2024 14:11:38.345] [Worker-ResourceReload-1/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Exception loading blockstate definition: 'industrialforegoing:blockstates/raw_ore_meat.json' missing model for variant: 'industrialforegoing:raw_ore_meat#level=6' [05Nov2024 14:11:38.345] [Worker-ResourceReload-1/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Exception loading blockstate definition: 'industrialforegoing:blockstates/raw_ore_meat.json' missing model for variant: 'industrialforegoing:raw_ore_meat#level=5' [05Nov2024 14:11:38.345] [Worker-ResourceReload-1/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Exception loading blockstate definition: 'industrialforegoing:blockstates/raw_ore_meat.json' missing model for variant: 'industrialforegoing:raw_ore_meat#level=4' [05Nov2024 14:11:38.345] [Worker-ResourceReload-1/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Exception loading blockstate definition: 'industrialforegoing:blockstates/raw_ore_meat.json' missing model for variant: 'industrialforegoing:raw_ore_meat#level=3' [05Nov2024 14:11:38.345] [Worker-ResourceReload-1/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Exception loading blockstate definition: 'industrialforegoing:blockstates/raw_ore_meat.json' missing model for variant: 'industrialforegoing:raw_ore_meat#level=2' [05Nov2024 14:11:38.345] [Worker-ResourceReload-1/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Exception loading blockstate definition: 'industrialforegoing:blockstates/raw_ore_meat.json' missing model for variant: 'industrialforegoing:raw_ore_meat#level=1' [05Nov2024 14:11:38.345] [Worker-ResourceReload-1/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Exception loading blockstate definition: 'industrialforegoing:blockstates/raw_ore_meat.json' missing model for variant: 'industrialforegoing:raw_ore_meat#level=0' [05Nov2024 14:11:38.345] [Worker-ResourceReload-1/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Exception loading blockstate definition: 'industrialforegoing:blockstates/raw_ore_meat.json' missing model for variant: 'industrialforegoing:raw_ore_meat#level=12' [05Nov2024 14:11:38.345] [Worker-ResourceReload-1/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Exception loading blockstate definition: 'industrialforegoing:blockstates/raw_ore_meat.json' missing model for variant: 'industrialforegoing:raw_ore_meat#level=13' [05Nov2024 14:11:38.346] [Worker-ResourceReload-1/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Exception loading blockstate definition: 'industrialforegoing:blockstates/raw_ore_meat.json' missing model for variant: 'industrialforegoing:raw_ore_meat#level=14' [05Nov2024 14:11:38.346] [Worker-ResourceReload-1/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Exception loading blockstate definition: 'industrialforegoing:blockstates/raw_ore_meat.json' missing model for variant: 'industrialforegoing:raw_ore_meat#level=15' [05Nov2024 14:11:38.346] [Worker-ResourceReload-1/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Exception loading blockstate definition: 'industrialforegoing:blockstates/fermented_ore_meat.json' missing model for variant: 'industrialforegoing:fermented_ore_meat#level=14' [05Nov2024 14:11:38.346] [Worker-ResourceReload-1/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Exception loading blockstate definition: 'industrialforegoing:blockstates/fermented_ore_meat.json' missing model for variant: 'industrialforegoing:fermented_ore_meat#level=15' [05Nov2024 14:11:38.346] [Worker-ResourceReload-1/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Exception loading blockstate definition: 'industrialforegoing:blockstates/fermented_ore_meat.json' missing model for variant: 'industrialforegoing:fermented_ore_meat#level=12' [05Nov2024 14:11:38.346] [Worker-ResourceReload-1/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Exception loading blockstate definition: 'industrialforegoing:blockstates/fermented_ore_meat.json' missing model for variant: 'industrialforegoing:fermented_ore_meat#level=13' [05Nov2024 14:11:38.346] [Worker-ResourceReload-1/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Exception loading blockstate definition: 'industrialforegoing:blockstates/fermented_ore_meat.json' missing model for variant: 'industrialforegoing:fermented_ore_meat#level=1' [05Nov2024 14:11:38.347] [Worker-ResourceReload-1/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Exception loading blockstate definition: 'industrialforegoing:blockstates/fermented_ore_meat.json' missing model for variant: 'industrialforegoing:fermented_ore_meat#level=2' [05Nov2024 14:11:38.347] [Worker-ResourceReload-1/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Exception loading blockstate definition: 'industrialforegoing:blockstates/fermented_ore_meat.json' missing model for variant: 'industrialforegoing:fermented_ore_meat#level=0' [05Nov2024 14:11:38.347] [Worker-ResourceReload-1/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Exception loading blockstate definition: 'industrialforegoing:blockstates/fermented_ore_meat.json' missing model for variant: 'industrialforegoing:fermented_ore_meat#level=5' [05Nov2024 14:11:38.347] [Worker-ResourceReload-1/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Exception loading blockstate definition: 'industrialforegoing:blockstates/fermented_ore_meat.json' missing model for variant: 'industrialforegoing:fermented_ore_meat#level=6' [05Nov2024 14:11:38.347] [Worker-ResourceReload-1/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Exception loading blockstate definition: 'industrialforegoing:blockstates/fermented_ore_meat.json' missing model for variant: 'industrialforegoing:fermented_ore_meat#level=3' [05Nov2024 14:11:38.347] [Worker-ResourceReload-1/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Exception loading blockstate definition: 'industrialforegoing:blockstates/fermented_ore_meat.json' missing model for variant: 'industrialforegoing:fermented_ore_meat#level=4' [05Nov2024 14:11:38.347] [Worker-ResourceReload-1/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Exception loading blockstate definition: 'industrialforegoing:blockstates/fermented_ore_meat.json' missing model for variant: 'industrialforegoing:fermented_ore_meat#level=9' [05Nov2024 14:11:38.347] [Worker-ResourceReload-1/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Exception loading blockstate definition: 'industrialforegoing:blockstates/fermented_ore_meat.json' missing model for variant: 'industrialforegoing:fermented_ore_meat#level=10' [05Nov2024 14:11:38.348] [Worker-ResourceReload-1/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Exception loading blockstate definition: 'industrialforegoing:blockstates/fermented_ore_meat.json' missing model for variant: 'industrialforegoing:fermented_ore_meat#level=11' [05Nov2024 14:11:38.348] [Worker-ResourceReload-1/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Exception loading blockstate definition: 'industrialforegoing:blockstates/fermented_ore_meat.json' missing model for variant: 'industrialforegoing:fermented_ore_meat#level=7' [05Nov2024 14:11:38.348] [Worker-ResourceReload-1/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Exception loading blockstate definition: 'industrialforegoing:blockstates/fermented_ore_meat.json' missing model for variant: 'industrialforegoing:fermented_ore_meat#level=8' [05Nov2024 14:11:38.411] [modloading-worker-0/INFO] [PluginManager/]: Executing phase CONFIG_LOAD for plugin class CuriosPlugin [05Nov2024 14:11:38.566] [Worker-ResourceReload-1/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Unable to load model: 'minecraft:fallen_leave' referenced from: theabyss:blaru_leave_carpet#: java.io.FileNotFoundException: minecraft:models/fallen_leave.json [05Nov2024 14:11:38.573] [Worker-ResourceReload-1/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Unable to load model: 'minecraft:raptor_egg' referenced from: theabyss:raptor_egg#: java.io.FileNotFoundException: minecraft:models/raptor_egg.json [05Nov2024 14:11:39.334] [Worker-ResourceReload-3/WARN] [net.minecraft.client.sounds.SoundManager/]: File minecraft:sounds/block/chest/close1.ogg does not exist, cannot add it to event aether:entity.mimic.death [05Nov2024 14:11:40.204] [Worker-ResourceReload-3/ERROR] [ModernFix/]: Using missing texture, unable to load deep_aether:mob_effect/moa_bonus_jumps [05Nov2024 14:11:40.206] [Worker-ResourceReload-3/ERROR] [ModernFix/]: Using missing texture, unable to load survive:mob_effect/well_fed [05Nov2024 14:11:40.534] [modloading-worker-0/INFO] [quark/]: Dispatching Module Step CONFIG_CHANGED [05Nov2024 14:11:40.603] [modloading-worker-0/INFO] [quark/]: Dispatching Module Step CONFIG_CHANGED_CLIENT [05Nov2024 14:11:40.756] [Worker-ResourceReload-0/INFO] [net.uknownymous.overhauledstructures.OverhauledStructures/]: Epic! [05Nov2024 14:11:40.770] [Worker-ResourceReload-0/INFO] [HammerLib/]: Setup HammerLib networking! [05Nov2024 14:11:40.772] [Worker-ResourceReload-5/INFO] [com.tristankechlo.toolleveling.ToolLeveling/]: Created README.txt in config folder. [05Nov2024 14:11:40.783] [Render thread/INFO] [HammerLib/]: Reloading 0 variable shader programs. [05Nov2024 14:11:40.802] [Worker-ResourceReload-6/INFO] [moze_intel.projecte.PECore/]: Found and loaded EMC mapper: CraftingMapper, with priority 0 [05Nov2024 14:11:40.806] [Worker-ResourceReload-0/INFO] [PluginManager/]: Executing phase COMMON_SETUP for plugin class CuriosPlugin [05Nov2024 14:11:40.812] [Worker-ResourceReload-4/INFO] [dev.wuffs.bcc.BCC/]: Better Compatibility Checker setting up [05Nov2024 14:11:40.824] [Worker-ResourceReload-5/INFO] [com.tristankechlo.toolleveling.ToolLeveling/]: Config 'tool_leveling_table.json' was successfully loaded. [05Nov2024 14:11:40.827] [Worker-ResourceReload-5/INFO] [com.tristankechlo.toolleveling.ToolLeveling/]: Saved the checked/corrected config: tool_leveling_table.json [05Nov2024 14:11:40.842] [Worker-ResourceReload-5/INFO] [com.tristankechlo.toolleveling.ToolLeveling/]: Config 'item_values.json' was successfully loaded. [05Nov2024 14:11:40.843] [Worker-ResourceReload-5/INFO] [com.tristankechlo.toolleveling.ToolLeveling/]: Saved the checked/corrected config: item_values.json [05Nov2024 14:11:40.852] [Worker-ResourceReload-5/INFO] [com.tristankechlo.toolleveling.ToolLeveling/]: Config 'command_config.json' was successfully loaded. [05Nov2024 14:11:40.853] [Worker-ResourceReload-5/INFO] [com.tristankechlo.toolleveling.ToolLeveling/]: Saved the checked/corrected config: command_config.json [05Nov2024 14:11:40.868] [Worker-ResourceReload-5/INFO] [io.github.jamalam360.rightclickharvest.RightClickHarvestModInit/]: Initialized [05Nov2024 14:11:40.872] [Worker-ResourceReload-6/INFO] [moze_intel.projecte.PECore/]: Found and loaded EMC mapper: CustomConversionMapper, with priority 0 [05Nov2024 14:11:40.873] [Worker-ResourceReload-5/INFO] [toms_trading_network/]: Tom's Trading Network Setup starting [05Nov2024 14:11:40.877] [Worker-ResourceReload-6/INFO] [moze_intel.projecte.PECore/]: Found and loaded EMC mapper: WeatheredCopperMapper, with priority 0 [05Nov2024 14:11:40.879] [Worker-ResourceReload-6/INFO] [moze_intel.projecte.PECore/]: Found and loaded EMC mapper: TippedArrowMapper, with priority 0 [05Nov2024 14:11:40.882] [Worker-ResourceReload-6/INFO] [moze_intel.projecte.PECore/]: Found and loaded EMC mapper: RawOresBlacklistMapper, with priority 0 [05Nov2024 14:11:40.882] [Worker-ResourceReload-5/INFO] [toms_trading_network/]: Initilaized Network Handler [05Nov2024 14:11:40.886] [Worker-ResourceReload-6/INFO] [moze_intel.projecte.PECore/]: Found and loaded EMC mapper: OresBlacklistMapper, with priority 0 [05Nov2024 14:11:40.889] [Worker-ResourceReload-6/INFO] [moze_intel.projecte.PECore/]: Found and loaded EMC mapper: CustomEMCMapper, with priority 0 [05Nov2024 14:11:40.892] [Worker-ResourceReload-6/INFO] [moze_intel.projecte.PECore/]: Found and loaded EMC mapper: BrewingMapper, with priority 0 [05Nov2024 14:11:40.899] [Worker-ResourceReload-6/INFO] [moze_intel.projecte.PECore/]: Found and loaded EMC mapper: APICustomEMCMapper, with priority 0 [05Nov2024 14:11:40.954] [Worker-ResourceReload-5/INFO] [elocindev.create_questing.forge.CreateQuesting/]: Loaded Create Questing Config [05Nov2024 14:11:40.961] [Worker-ResourceReload-6/INFO] [moze_intel.projecte.PECore/]: Found and loaded RecipeType Mapper: VanillaRecipeTypes, with priority 0 [05Nov2024 14:11:40.963] [Worker-ResourceReload-6/INFO] [moze_intel.projecte.PECore/]: Found and loaded RecipeType Mapper: Smithing, with priority 0 [05Nov2024 14:11:40.966] [Worker-ResourceReload-6/INFO] [moze_intel.projecte.PECore/]: Found and loaded RecipeType Mapper: FallbackRecipeType, with priority -2147483648 [05Nov2024 14:11:40.969] [Worker-ResourceReload-4/INFO] [voicechat/]: [voicechat] Compatibility version 18 [05Nov2024 14:11:40.979] [Worker-ResourceReload-5/INFO] [studio.lunareclipse.watching.Init/]: From The Fog Loaded Successfully! [05Nov2024 14:11:41.007] [Worker-ResourceReload-6/INFO] [moze_intel.projecte.PECore/]: Found and loaded NBT Processor: StoredEMCProcessor, with priority 0 [05Nov2024 14:11:41.014] [Worker-ResourceReload-6/INFO] [moze_intel.projecte.PECore/]: Found and loaded NBT Processor: EnchantmentProcessor, with priority 0 [05Nov2024 14:11:41.020] [Worker-ResourceReload-6/INFO] [moze_intel.projecte.PECore/]: Found and loaded NBT Processor: DamageProcessor, with priority 2147483647 [05Nov2024 14:11:41.223] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [saturn] Starting version check at https://github.com/AbdElAziz333/Saturn/raw/mc1.20.1/dev/updates.json [05Nov2024 14:11:41.301] [Worker-ResourceReload-4/INFO] [voicechat/]: [voicechat] Loading plugins [05Nov2024 14:11:41.351] [Worker-ResourceReload-4/INFO] [voicechat/]: [voicechat] Loaded 1 plugin(s) [05Nov2024 14:11:41.352] [Worker-ResourceReload-4/INFO] [voicechat/]: [voicechat] Initializing plugins [05Nov2024 14:11:41.375] [Worker-ResourceReload-4/INFO] [Sound Physics - General/]: Initializing Simple Voice Chat integration [05Nov2024 14:11:41.376] [Worker-ResourceReload-4/INFO] [voicechat/]: [voicechat] Initialized 1 plugin(s) [05Nov2024 14:11:41.378] [Worker-ResourceReload-4/INFO] [voicechat/]: [voicechat] Registering events for 'sound_physics_remastered' [05Nov2024 14:11:41.570] [Worker-ResourceReload-6/INFO] [com.klikli_dev.occultism.Occultism/]: Registered compostable Items [05Nov2024 14:11:41.609] [Worker-ResourceReload-4/INFO] [cn.foggyhillside.endsdelight.EndsDelight/]: HELLO FROM PREINIT [05Nov2024 14:11:41.609] [Worker-ResourceReload-4/INFO] [cn.foggyhillside.endsdelight.EndsDelight/]: DIRT BLOCK >> translation{key='block.minecraft.dirt', args=[]} [05Nov2024 14:11:41.623] [Worker-ResourceReload-6/INFO] [com.klikli_dev.occultism.Occultism/]: Common setup complete. [05Nov2024 14:11:41.667] [Worker-ResourceReload-5/INFO] [com.blocklegend001.craftableenchantedgoldenapple.CraftableEnchantedGoldenApple/]: Mod Loaded! [05Nov2024 14:11:41.766] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [saturn] Found status: AHEAD Current: 0.1.4 Target: null [05Nov2024 14:11:41.766] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [hammerlib] Starting version check at https://api.modrinth.com/updates/PlkSuVtM/forge_updates.json [05Nov2024 14:11:41.793] [Worker-ResourceReload-5/INFO] [net.tejty.lemoned.Lemoned/]: HELLO FROM COMMON SETUP [05Nov2024 14:11:41.794] [Worker-ResourceReload-5/INFO] [net.tejty.lemoned.Lemoned/]: DIRT BLOCK >> minecraft:dirt [05Nov2024 14:11:41.821] [Worker-ResourceReload-4/INFO] [FTB Quests Optimizer/]: Enabling FTB Quests Optimizer [05Nov2024 14:11:41.842] [Worker-ResourceReload-4/INFO] [bno/]: Setup Method Registered (PreInit) [05Nov2024 14:11:41.844] [Worker-ResourceReload-4/INFO] [net.mehvahdjukaar.every_compat.EveryCompat/]: Registered 3643 compat blocks making up 27.69% of total blocks registered [05Nov2024 14:11:41.877] [Worker-ResourceReload-3/INFO] [com.rajhab.morevanillashields_mod.morevanillashields/]: morevanillashields: This mod now runs with a config file. Feel free to use it! [05Nov2024 14:11:41.879] [Worker-ResourceReload-5/INFO] [journeymap/]: Found @Ljourneymap/client/api/ClientPlugin;: net.blay09.mods.waystones.compat.JourneyMapAddon [05Nov2024 14:11:42.023] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [hammerlib] Found status: UP_TO_DATE Current: 19.3.82 Target: null [05Nov2024 14:11:42.024] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [projecte] Starting version check at https://raw.githubusercontent.com/sinkillerj/ProjectE/mc1.19.x/update.json [05Nov2024 14:11:42.051] [Worker-ResourceReload-5/ERROR] [survivalistessentials/]: Unable to infer primary tools for 34 blocks with unknown materials. These blocks will not be enforce correct tool. [05Nov2024 14:11:42.053] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [projecte] Found status: UP_TO_DATE Current: 1.1.0 Target: null [05Nov2024 14:11:42.054] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [hordes] Starting version check at https://raw.githubusercontent.com/SmileycorpMC/The-Hordes/1.19/update.json [05Nov2024 14:11:42.055] [Worker-ResourceReload-5/WARN] [survivalistessentials/]: Block{create:belt} [05Nov2024 14:11:42.055] [Worker-ResourceReload-5/WARN] [survivalistessentials/]: Block{byg:therium_crystal_cluster} [05Nov2024 14:11:42.055] [Worker-ResourceReload-5/WARN] [survivalistessentials/]: Block{byg:large_therium_crystal_bud} [05Nov2024 14:11:42.055] [Worker-ResourceReload-5/WARN] [survivalistessentials/]: Block{byg:medium_therium_crystal_bud} [05Nov2024 14:11:42.056] [Worker-ResourceReload-5/WARN] [survivalistessentials/]: Block{byg:small_therium_crystal_bud} [05Nov2024 14:11:42.056] [Worker-ResourceReload-5/WARN] [survivalistessentials/]: Block{byg:subzero_crystal_cluster} [05Nov2024 14:11:42.056] [Worker-ResourceReload-5/WARN] [survivalistessentials/]: Block{byg:large_subzero_crystal_bud} [05Nov2024 14:11:42.056] [Worker-ResourceReload-5/WARN] [survivalistessentials/]: Block{byg:medium_subzero_crystal_bud} [05Nov2024 14:11:42.056] [Worker-ResourceReload-5/WARN] [survivalistessentials/]: Block{byg:small_subzero_crystal_bud} [05Nov2024 14:11:42.056] [Worker-ResourceReload-5/WARN] [survivalistessentials/]: Block{enchanted:chalk_gold} [05Nov2024 14:11:42.056] [Worker-ResourceReload-5/WARN] [survivalistessentials/]: Block{enchanted:chalk_white} [05Nov2024 14:11:42.056] [Worker-ResourceReload-5/WARN] [survivalistessentials/]: Block{enchanted:chalk_red} [05Nov2024 14:11:42.056] [Worker-ResourceReload-5/WARN] [survivalistessentials/]: Block{enchanted:chalk_purple} [05Nov2024 14:11:42.056] [Worker-ResourceReload-5/WARN] [survivalistessentials/]: Block{gravestone:gravestone} [05Nov2024 14:11:42.056] [Worker-ResourceReload-5/WARN] [survivalistessentials/]: Block{biomesoplenty:blood} [05Nov2024 14:11:42.056] [Worker-ResourceReload-5/WARN] [survivalistessentials/]: Block{enchanted:altar} [05Nov2024 14:11:42.056] [Worker-ResourceReload-5/WARN] [survivalistessentials/]: Block{byg:lament_vine} [05Nov2024 14:11:42.056] [Worker-ResourceReload-5/WARN] [survivalistessentials/]: Block{byg:lament_vine_plant} [05Nov2024 14:11:42.056] [Worker-ResourceReload-5/WARN] [survivalistessentials/]: Block{occultism:chalk_glyph_white} [05Nov2024 14:11:42.056] [Worker-ResourceReload-5/WARN] [survivalistessentials/]: Block{occultism:chalk_glyph_gold} [05Nov2024 14:11:42.056] [Worker-ResourceReload-5/WARN] [survivalistessentials/]: Block{occultism:chalk_glyph_purple} [05Nov2024 14:11:42.056] [Worker-ResourceReload-5/WARN] [survivalistessentials/]: Block{occultism:chalk_glyph_red} [05Nov2024 14:11:42.057] [Worker-ResourceReload-5/WARN] [survivalistessentials/]: Block{endertanks:ender_tank} [05Nov2024 14:11:42.057] [Worker-ResourceReload-5/WARN] [survivalistessentials/]: LightDetectorBlock[light_detector] [05Nov2024 14:11:42.057] [Worker-ResourceReload-5/WARN] [survivalistessentials/]: Block{byg:ametrine_cluster} [05Nov2024 14:11:42.057] [Worker-ResourceReload-5/WARN] [survivalistessentials/]: MatrixFrameBlock[matrix_frame] [05Nov2024 14:11:42.057] [Worker-ResourceReload-5/WARN] [survivalistessentials/]: Block{quark:bamboo_mat_carpet} [05Nov2024 14:11:42.058] [Worker-ResourceReload-5/WARN] [survivalistessentials/]: WirelessBlock[wireless_access_point] [05Nov2024 14:11:42.058] [Worker-ResourceReload-5/WARN] [survivalistessentials/]: QuantumLinkChamberBlock[quantum_link] [05Nov2024 14:11:42.058] [Worker-ResourceReload-5/WARN] [survivalistessentials/]: SpatialPylonBlock[spatial_pylon] [05Nov2024 14:11:42.058] [Worker-ResourceReload-5/WARN] [survivalistessentials/]: EnergyCellBlock[energy_cell] [05Nov2024 14:11:42.058] [Worker-ResourceReload-5/WARN] [survivalistessentials/]: EnergyCellBlock[dense_energy_cell] [05Nov2024 14:11:42.058] [Worker-ResourceReload-5/WARN] [survivalistessentials/]: CreativeEnergyCellBlock[creative_energy_cell] [05Nov2024 14:11:42.058] [Worker-ResourceReload-5/WARN] [survivalistessentials/]: CableBusBlock[cable_bus] [05Nov2024 14:11:42.064] [Worker-ResourceReload-5/WARN] [survivalistessentials/]: Material: [isLiquid=false, isSolid=true, blocksMotion=true, isFlammable=false, isReplaceable=false, isSolidBlocking=true, getPushReaction=NORMAL, getColor=[id=21, col=java.awt.Color[r=76,g=76,b=76]]] | Blocks: Block{create:belt} [05Nov2024 14:11:42.065] [Worker-ResourceReload-5/WARN] [survivalistessentials/]: Material: [isLiquid=false, isSolid=false, blocksMotion=true, isFlammable=false, isReplaceable=false, isSolidBlocking=true, getPushReaction=NORMAL, getColor=[id=17, col=java.awt.Color[r=102,g=153,b=216]]] | Blocks: Block{byg:therium_crystal_cluster}, Block{byg:large_therium_crystal_bud}, Block{byg:medium_therium_crystal_bud}, Block{byg:small_therium_crystal_bud}, Block{byg:subzero_crystal_cluster}, Block{byg:large_subzero_crystal_bud}, Block{byg:medium_subzero_crystal_bud}, Block{byg:small_subzero_crystal_bud} [05Nov2024 14:11:42.065] [Worker-ResourceReload-5/WARN] [survivalistessentials/]: Material: [isLiquid=false, isSolid=false, blocksMotion=false, isFlammable=false, isReplaceable=false, isSolidBlocking=true, getPushReaction=NORMAL, getColor=[id=0, col=java.awt.Color[r=0,g=0,b=0]]] | Blocks: Block{enchanted:chalk_gold}, Block{enchanted:chalk_white}, Block{enchanted:chalk_red}, Block{enchanted:chalk_purple} [05Nov2024 14:11:42.065] [Worker-ResourceReload-5/WARN] [survivalistessentials/]: Material: [isLiquid=false, isSolid=true, blocksMotion=true, isFlammable=false, isReplaceable=false, isSolidBlocking=false, getPushReaction=BLOCK, getColor=[id=10, col=java.awt.Color[r=151,g=109,b=77]]] | Blocks: Block{gravestone:gravestone} [05Nov2024 14:11:42.065] [Worker-ResourceReload-5/WARN] [survivalistessentials/]: Material: [isLiquid=true, isSolid=false, blocksMotion=false, isFlammable=false, isReplaceable=true, isSolidBlocking=false, getPushReaction=DESTROY, getColor=[id=28, col=java.awt.Color[r=153,g=51,b=51]]] | Blocks: Block{biomesoplenty:blood} [05Nov2024 14:11:42.065] [Worker-ResourceReload-5/WARN] [survivalistessentials/]: Material: [isLiquid=false, isSolid=true, blocksMotion=true, isFlammable=false, isReplaceable=false, isSolidBlocking=true, getPushReaction=BLOCK, getColor=[id=11, col=java.awt.Color[r=112,g=112,b=112]]] | Blocks: Block{enchanted:altar} [05Nov2024 14:11:42.066] [Worker-ResourceReload-5/WARN] [survivalistessentials/]: Material: [isLiquid=false, isSolid=true, blocksMotion=true, isFlammable=false, isReplaceable=false, isSolidBlocking=false, getPushReaction=DESTROY, getColor=[id=7, col=java.awt.Color[r=0,g=124,b=0]]] | Blocks: Block{byg:lament_vine}, Block{byg:lament_vine_plant} [05Nov2024 14:11:42.066] [Worker-ResourceReload-5/WARN] [survivalistessentials/]: Material: [isLiquid=false, isSolid=false, blocksMotion=false, isFlammable=false, isReplaceable=true, isSolidBlocking=true, getPushReaction=DESTROY, getColor=[id=0, col=java.awt.Color[r=0,g=0,b=0]]] | Blocks: Block{occultism:chalk_glyph_white}, Block{occultism:chalk_glyph_gold}, Block{occultism:chalk_glyph_purple}, Block{occultism:chalk_glyph_red} [05Nov2024 14:11:42.066] [Worker-ResourceReload-5/WARN] [survivalistessentials/]: Material: [isLiquid=false, isSolid=true, blocksMotion=true, isFlammable=false, isReplaceable=false, isSolidBlocking=false, getPushReaction=IGNORE, getColor=[id=9, col=java.awt.Color[r=164,g=168,b=184]]] | Blocks: Block{endertanks:ender_tank} [05Nov2024 14:11:42.066] [Worker-ResourceReload-5/WARN] [survivalistessentials/]: Material: [isLiquid=false, isSolid=false, blocksMotion=false, isFlammable=false, isReplaceable=false, isSolidBlocking=false, getPushReaction=DESTROY, getColor=[id=6, col=java.awt.Color[r=167,g=167,b=167]]] | Blocks: LightDetectorBlock[light_detector] [05Nov2024 14:11:42.066] [Worker-ResourceReload-5/WARN] [survivalistessentials/]: Material: [isLiquid=false, isSolid=false, blocksMotion=true, isFlammable=false, isReplaceable=false, isSolidBlocking=true, getPushReaction=NORMAL, getColor=[id=20, col=java.awt.Color[r=242,g=127,b=165]]] | Blocks: Block{byg:ametrine_cluster} [05Nov2024 14:11:42.066] [Worker-ResourceReload-5/WARN] [survivalistessentials/]: Material: [isLiquid=false, isSolid=true, blocksMotion=true, isFlammable=false, isReplaceable=false, isSolidBlocking=false, getPushReaction=PUSH_ONLY, getColor=[id=0, col=java.awt.Color[r=0,g=0,b=0]]] | Blocks: MatrixFrameBlock[matrix_frame] [05Nov2024 14:11:42.066] [Worker-ResourceReload-5/WARN] [survivalistessentials/]: Material: [isLiquid=false, isSolid=false, blocksMotion=false, isFlammable=true, isReplaceable=false, isSolidBlocking=false, getPushReaction=DESTROY, getColor=[id=13, col=java.awt.Color[r=143,g=119,b=72]]] | Blocks: Block{quark:bamboo_mat_carpet} [05Nov2024 14:11:42.067] [Worker-ResourceReload-5/WARN] [survivalistessentials/]: Material: [isLiquid=false, isSolid=false, blocksMotion=true, isFlammable=false, isReplaceable=false, isSolidBlocking=false, getPushReaction=NORMAL, getColor=[id=0, col=java.awt.Color[r=0,g=0,b=0]]] | Blocks: WirelessBlock[wireless_access_point], QuantumLinkChamberBlock[quantum_link], SpatialPylonBlock[spatial_pylon], EnergyCellBlock[energy_cell], EnergyCellBlock[dense_energy_cell], CreativeEnergyCellBlock[creative_energy_cell], CableBusBlock[cable_bus] [05Nov2024 14:11:42.097] [Worker-ResourceReload-5/INFO] [corgitaco.enhancedcelestials.EnhancedCelestials/]: Initialized enhancedcelestials network! [05Nov2024 14:11:42.104] [Worker-ResourceReload-5/INFO] [CorgiLib/]: Initializing network... [05Nov2024 14:11:42.111] [Worker-ResourceReload-5/INFO] [CorgiLib/]: Initialized network! [05Nov2024 14:11:42.115] [Worker-ResourceReload-3/INFO] [quark/]: Dispatching Module Step CONFIG_CHANGED [05Nov2024 14:11:42.130] [Worker-ResourceReload-3/INFO] [quark/]: Dispatching Module Step CONFIG_CHANGED_CLIENT [05Nov2024 14:11:42.134] [Worker-ResourceReload-3/INFO] [quark/]: Dispatching Module Step SETUP [05Nov2024 14:11:42.134] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [hordes] Found status: UP_TO_DATE Current: 1.5.4 Target: null [05Nov2024 14:11:42.136] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [squarry] Starting version check at http://dccg.herokuapp.com/api/fmluc/247393 [05Nov2024 14:11:42.164] [Worker-ResourceReload-4/INFO] [com.klikli_dev.modonomicon.Modonomicon/]: Common setup complete. [05Nov2024 14:11:42.320] [Forge Version Check/WARN] [net.minecraftforge.fml.VersionChecker/]: Failed to process update information com.google.gson.JsonSyntaxException: java.lang.IllegalStateException: Expected BEGIN_OBJECT but was STRING at line 1 column 1 path $ at com.google.gson.Gson.fromJson(Gson.java:975) ~[gson-2.8.9.jar%2399!/:?] at com.google.gson.Gson.fromJson(Gson.java:928) ~[gson-2.8.9.jar%2399!/:?] at com.google.gson.Gson.fromJson(Gson.java:877) ~[gson-2.8.9.jar%2399!/:?] at com.google.gson.Gson.fromJson(Gson.java:848) ~[gson-2.8.9.jar%2399!/:?] at net.minecraftforge.fml.VersionChecker$1.process(VersionChecker.java:183) ~[fmlcore-1.19.2-43.4.2.jar%23650!/:?] at java.lang.Iterable.forEach(Unknown Source) [?:?] at net.minecraftforge.fml.VersionChecker$1.run(VersionChecker.java:114) [fmlcore-1.19.2-43.4.2.jar%23650!/:?] Caused by: java.lang.IllegalStateException: Expected BEGIN_OBJECT but was STRING at line 1 column 1 path $ at com.google.gson.stream.JsonReader.beginObject(JsonReader.java:384) ~[gson-2.8.9.jar%2399!/:?] at com.google.gson.internal.bind.MapTypeAdapterFactory$Adapter.read(MapTypeAdapterFactory.java:183) ~[gson-2.8.9.jar%2399!/:?] at com.google.gson.internal.bind.MapTypeAdapterFactory$Adapter.read(MapTypeAdapterFactory.java:145) ~[gson-2.8.9.jar%2399!/:?] at com.google.gson.Gson.fromJson(Gson.java:963) ~[gson-2.8.9.jar%2399!/:?] ... 6 more [05Nov2024 14:11:42.325] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [toms_trading_network] Starting version check at https://raw.githubusercontent.com/tom5454/Toms-Trading-Network/main/version-check.json [05Nov2024 14:11:42.349] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [toms_trading_network] Found status: BETA Current: 0.2.3 Target: 0.2.3 [05Nov2024 14:11:42.365] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [atlaslib] Starting version check at https://raw.githubusercontent.com/SmileycorpMC/Atlas-Lib/1.19/update.json [05Nov2024 14:11:42.437] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [atlaslib] Found status: OUTDATED Current: 1.1.5a Target: 1.1.6 [05Nov2024 14:11:42.437] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [cumulus_menus] Starting version check at https://github.com/The-Aether-Team/Cumulus/raw/1.19.2-develop/update.json [05Nov2024 14:11:42.476] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [cumulus_menus] Found status: OUTDATED Current: 0.0NONE Target: 1.19.2-1.0.0-forge [05Nov2024 14:11:42.476] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [cfm] Starting version check at https://mrcrayfish.com/modupdatejson?id=cfm [05Nov2024 14:11:42.546] [Worker-ResourceReload-1/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Exception loading blockstate definition: 'ars_nouveau:blockstates/magelight_torch.json' missing model for variant: 'ars_nouveau:magelight_torch#facing=east,floor=true,level=1,roof=true' [05Nov2024 14:11:42.547] [Worker-ResourceReload-1/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Exception loading blockstate definition: 'ars_nouveau:blockstates/magelight_torch.json' missing model for variant: 'ars_nouveau:magelight_torch#facing=east,floor=true,level=0,roof=true' [05Nov2024 14:11:42.547] [Worker-ResourceReload-1/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Exception loading blockstate definition: 'ars_nouveau:blockstates/magelight_torch.json' missing model for variant: 'ars_nouveau:magelight_torch#facing=east,floor=true,level=3,roof=true' [05Nov2024 14:11:42.547] [Worker-ResourceReload-1/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Exception loading blockstate definition: 'ars_nouveau:blockstates/magelight_torch.json' missing model for variant: 'ars_nouveau:magelight_torch#facing=north,floor=true,level=10,roof=true' [05Nov2024 14:11:42.547] [Worker-ResourceReload-1/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Exception loading blockstate definition: 'ars_nouveau:blockstates/magelight_torch.json' missing model for variant: 'ars_nouveau:magelight_torch#facing=north,floor=true,level=11,roof=true' [05Nov2024 14:11:42.547] [Worker-ResourceReload-1/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Exception loading blockstate definition: 'ars_nouveau:blockstates/magelight_torch.json' missing model for variant: 'ars_nouveau:magelight_torch#facing=north,floor=true,level=9,roof=true' [05Nov2024 14:11:42.547] [Worker-ResourceReload-1/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Exception loading blockstate definition: 'ars_nouveau:blockstates/magelight_torch.json' missing model for variant: 'ars_nouveau:magelight_torch#facing=east,floor=true,level=2,roof=true' [05Nov2024 14:11:42.547] [Worker-ResourceReload-1/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Exception loading blockstate definition: 'ars_nouveau:blockstates/magelight_torch.json' missing model for variant: 'ars_nouveau:magelight_torch#facing=east,floor=true,level=7,roof=true' [05Nov2024 14:11:42.548] [Worker-ResourceReload-1/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Exception loading blockstate definition: 'ars_nouveau:blockstates/magelight_torch.json' missing model for variant: 'ars_nouveau:magelight_torch#facing=north,floor=true,level=4,roof=true' [05Nov2024 14:11:42.548] [Worker-ResourceReload-1/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Exception loading blockstate definition: 'ars_nouveau:blockstates/magelight_torch.json' missing model for variant: 'ars_nouveau:magelight_torch#facing=east,floor=true,level=8,roof=true' [05Nov2024 14:11:42.548] [Worker-ResourceReload-1/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Exception loading blockstate definition: 'ars_nouveau:blockstates/magelight_torch.json' missing model for variant: 'ars_nouveau:magelight_torch#facing=north,floor=true,level=14,roof=true' [05Nov2024 14:11:42.548] [Worker-ResourceReload-1/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Exception loading blockstate definition: 'ars_nouveau:blockstates/magelight_torch.json' missing model for variant: 'ars_nouveau:magelight_torch#facing=east,floor=true,level=12,roof=true' [05Nov2024 14:11:42.548] [Worker-ResourceReload-1/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Exception loading blockstate definition: 'ars_nouveau:blockstates/magelight_torch.json' missing model for variant: 'ars_nouveau:magelight_torch#facing=east,floor=true,level=13,roof=true' [05Nov2024 14:11:42.548] [Worker-ResourceReload-1/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Exception loading blockstate definition: 'ars_nouveau:blockstates/magelight_torch.json' missing model for variant: 'ars_nouveau:magelight_torch#facing=north,floor=true,level=13,roof=true' [05Nov2024 14:11:42.548] [Worker-ResourceReload-1/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Exception loading blockstate definition: 'ars_nouveau:blockstates/magelight_torch.json' missing model for variant: 'ars_nouveau:magelight_torch#facing=north,floor=true,level=3,roof=true' [05Nov2024 14:11:42.548] [Worker-ResourceReload-1/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Exception loading blockstate definition: 'ars_nouveau:blockstates/magelight_torch.json' missing model for variant: 'ars_nouveau:magelight_torch#facing=east,floor=true,level=14,roof=true' [05Nov2024 14:11:42.548] [Worker-ResourceReload-1/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Exception loading blockstate definition: 'ars_nouveau:blockstates/magelight_torch.json' missing model for variant: 'ars_nouveau:magelight_torch#facing=east,floor=true,level=11,roof=true' [05Nov2024 14:11:42.549] [Worker-ResourceReload-1/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Exception loading blockstate definition: 'ars_nouveau:blockstates/magelight_torch.json' missing model for variant: 'ars_nouveau:magelight_torch#facing=north,floor=true,level=2,roof=true' [05Nov2024 14:11:42.549] [Worker-ResourceReload-1/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Exception loading blockstate definition: 'ars_nouveau:blockstates/magelight_torch.json' missing model for variant: 'ars_nouveau:magelight_torch#facing=north,floor=true,level=5,roof=true' [05Nov2024 14:11:42.549] [Worker-ResourceReload-1/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Exception loading blockstate definition: 'ars_nouveau:blockstates/magelight_torch.json' missing model for variant: 'ars_nouveau:magelight_torch#facing=east,floor=true,level=15,roof=true' [05Nov2024 14:11:42.549] [Worker-ResourceReload-1/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Exception loading blockstate definition: 'ars_nouveau:blockstates/magelight_torch.json' missing model for variant: 'ars_nouveau:magelight_torch#facing=east,floor=true,level=9,roof=true' [05Nov2024 14:11:42.549] [Worker-ResourceReload-1/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Exception loading blockstate definition: 'ars_nouveau:blockstates/magelight_torch.json' missing model for variant: 'ars_nouveau:magelight_torch#facing=north,floor=true,level=15,roof=true' [05Nov2024 14:11:42.549] [Worker-ResourceReload-1/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Exception loading blockstate definition: 'ars_nouveau:blockstates/magelight_torch.json' missing model for variant: 'ars_nouveau:magelight_torch#facing=east,floor=true,level=6,roof=true' [05Nov2024 14:11:42.549] [Worker-ResourceReload-1/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Exception loading blockstate definition: 'ars_nouveau:blockstates/magelight_torch.json' missing model for variant: 'ars_nouveau:magelight_torch#facing=north,floor=true,level=12,roof=true' [05Nov2024 14:11:42.549] [Worker-ResourceReload-1/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Exception loading blockstate definition: 'ars_nouveau:blockstates/magelight_torch.json' missing model for variant: 'ars_nouveau:magelight_torch#facing=north,floor=true,level=8,roof=true' [05Nov2024 14:11:42.549] [Worker-ResourceReload-1/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Exception loading blockstate definition: 'ars_nouveau:blockstates/magelight_torch.json' missing model for variant: 'ars_nouveau:magelight_torch#facing=north,floor=true,level=0,roof=true' [05Nov2024 14:11:42.550] [Worker-ResourceReload-1/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Exception loading blockstate definition: 'ars_nouveau:blockstates/magelight_torch.json' missing model for variant: 'ars_nouveau:magelight_torch#facing=north,floor=true,level=7,roof=true' [05Nov2024 14:11:42.550] [Worker-ResourceReload-1/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Exception loading blockstate definition: 'ars_nouveau:blockstates/magelight_torch.json' missing model for variant: 'ars_nouveau:magelight_torch#facing=east,floor=true,level=4,roof=true' [05Nov2024 14:11:42.550] [Worker-ResourceReload-1/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Exception loading blockstate definition: 'ars_nouveau:blockstates/magelight_torch.json' missing model for variant: 'ars_nouveau:magelight_torch#facing=east,floor=true,level=5,roof=true' [05Nov2024 14:11:42.550] [Worker-ResourceReload-1/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Exception loading blockstate definition: 'ars_nouveau:blockstates/magelight_torch.json' missing model for variant: 'ars_nouveau:magelight_torch#facing=north,floor=true,level=6,roof=true' [05Nov2024 14:11:42.550] [Worker-ResourceReload-1/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Exception loading blockstate definition: 'ars_nouveau:blockstates/magelight_torch.json' missing model for variant: 'ars_nouveau:magelight_torch#facing=east,floor=true,level=10,roof=true' [05Nov2024 14:11:42.550] [Worker-ResourceReload-1/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Exception loading blockstate definition: 'ars_nouveau:blockstates/magelight_torch.json' missing model for variant: 'ars_nouveau:magelight_torch#facing=north,floor=true,level=1,roof=true' [05Nov2024 14:11:42.784] [Render thread/INFO] [Framework/SYNCED_ENTITY_DATA]: Registered synced data key cgm:aiming for minecraft:player [05Nov2024 14:11:42.785] [Render thread/INFO] [Framework/SYNCED_ENTITY_DATA]: Registered synced data key cgm:reloading for minecraft:player [05Nov2024 14:11:42.785] [Render thread/INFO] [Framework/SYNCED_ENTITY_DATA]: Registered synced data key cgm:shooting for minecraft:player [05Nov2024 14:11:42.816] [Render thread/INFO] [terrablender/]: Registered region minecraft:overworld to index 0 for type OVERWORLD [05Nov2024 14:11:42.816] [Render thread/INFO] [terrablender/]: Registered region minecraft:nether to index 0 for type NETHER [05Nov2024 14:11:42.816] [Render thread/INFO] [terrablender/]: Registered region aether:the_aether to index 0 for type THE_AETHER [05Nov2024 14:11:42.817] [Render thread/INFO] [terrablender/]: Registered region biomesoplenty:overworld_primary to index 1 for type OVERWORLD [05Nov2024 14:11:42.817] [Render thread/INFO] [terrablender/]: Registered region biomesoplenty:overworld_secondary to index 2 for type OVERWORLD [05Nov2024 14:11:42.817] [Render thread/INFO] [terrablender/]: Registered region biomesoplenty:overworld_rare to index 3 for type OVERWORLD [05Nov2024 14:11:42.817] [Render thread/INFO] [terrablender/]: Registered region biomesoplenty:nether_common to index 1 for type NETHER [05Nov2024 14:11:42.817] [Render thread/INFO] [terrablender/]: Registered region biomesoplenty:nether_rare to index 2 for type NETHER [05Nov2024 14:11:42.871] [Render thread/INFO] [terrablender/]: Registered region deep_aether:deep_aether to index 1 for type THE_AETHER [05Nov2024 14:11:43.016] [Render thread/INFO] [tacz/SYNCED_ENTITY_DATA_TAC_COPY]: Registered synced data key tacz:shoot_cool_down for minecraft:living_entity [05Nov2024 14:11:43.017] [Render thread/INFO] [tacz/SYNCED_ENTITY_DATA_TAC_COPY]: Registered synced data key tacz:melee_cool_down for minecraft:living_entity [05Nov2024 14:11:43.017] [Render thread/INFO] [tacz/SYNCED_ENTITY_DATA_TAC_COPY]: Registered synced data key tacz:reload_state for minecraft:living_entity [05Nov2024 14:11:43.017] [Render thread/INFO] [tacz/SYNCED_ENTITY_DATA_TAC_COPY]: Registered synced data key tacz:aiming_progress for minecraft:living_entity [05Nov2024 14:11:43.017] [Render thread/INFO] [tacz/SYNCED_ENTITY_DATA_TAC_COPY]: Registered synced data key tacz:draw_cool_down for minecraft:living_entity [05Nov2024 14:11:43.017] [Render thread/INFO] [tacz/SYNCED_ENTITY_DATA_TAC_COPY]: Registered synced data key tacz:is_aiming for minecraft:living_entity [05Nov2024 14:11:43.017] [Render thread/INFO] [tacz/SYNCED_ENTITY_DATA_TAC_COPY]: Registered synced data key tacz:sprint_time for minecraft:living_entity [05Nov2024 14:11:43.017] [Render thread/INFO] [tacz/SYNCED_ENTITY_DATA_TAC_COPY]: Registered synced data key tacz:bolt_cool_down for minecraft:living_entity [05Nov2024 14:11:43.101] [Render thread/INFO] [journeymap/]: Initializing Packet Registries [05Nov2024 14:11:43.129] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [cfm] Found status: BETA Current: 7.0.0-pre35 Target: 7.0.0-pre35 [05Nov2024 14:11:43.130] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [dynamic_fps] Starting version check at https://api.lostluma.net/updates/dynamic-fps?platform=forge [05Nov2024 14:11:43.280] [Render thread/INFO] [moonlight/]: Initialized color sets in 132ms [05Nov2024 14:11:43.401] [Render thread/INFO] [moonlight/]: Initialized color sets in 119ms [05Nov2024 14:11:43.504] [Render thread/INFO] [terrablender/]: Registered region ars_nouveau:overworld to index 4 for type OVERWORLD [05Nov2024 14:11:43.546] [Render thread/INFO] [terrablender/]: Registered region byg:region_0 to index 5 for type OVERWORLD [05Nov2024 14:11:43.547] [Render thread/INFO] [terrablender/]: Registered region byg:region_1 to index 6 for type OVERWORLD [05Nov2024 14:11:43.548] [Render thread/INFO] [terrablender/]: Registered region byg:region_2 to index 7 for type OVERWORLD [05Nov2024 14:11:43.548] [Render thread/INFO] [terrablender/]: Registered region byg:region_3 to index 8 for type OVERWORLD [05Nov2024 14:11:43.551] [Worker-ResourceReload-3/INFO] [net.uknownymous.overhauledstructures.OverhauledStructures/]: Hey! [05Nov2024 14:11:43.551] [Worker-ResourceReload-4/INFO] [HammerLib/]: Registering TESR for tile hammerlib:test_machine [05Nov2024 14:11:43.557] [Worker-ResourceReload-6/INFO] [PluginManager/]: Executing phase CLIENT_SETUP for plugin class CuriosPlugin [05Nov2024 14:11:43.567] [Worker-ResourceReload-5/INFO] [Rubidium/]: Retrieving block renderers [05Nov2024 14:11:43.570] [Worker-ResourceReload-5/INFO] [Rubidium/]: Retrieving fluid renderers [05Nov2024 14:11:43.570] [Worker-ResourceReload-5/INFO] [Rubidium/]: Retrieving global renderers [05Nov2024 14:11:43.594] [Worker-ResourceReload-3/INFO] [Sound Physics - General/]: Reloading reverb parameters [05Nov2024 14:11:43.611] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [dynamic_fps] Found status: OUTDATED Current: 3.7.3 Target: 3.7.6 [05Nov2024 14:11:43.611] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [unsafe_world_random_access_detector] Starting version check at https://api.modrinth.com/updates/MsGuTgPJ/forge_updates.json [05Nov2024 14:11:43.696] [Worker-ResourceReload-5/INFO] [com.klikli_dev.occultism.Occultism/]: Client setup complete. [05Nov2024 14:11:43.700] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [unsafe_world_random_access_detector] Found status: UP_TO_DATE Current: 1.1.0+forge Target: null [05Nov2024 14:11:43.700] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [codechickenlib] Starting version check at https://version-check.covers1624.net/check/?mod=CodeChickenLib&mc=1.19.2 [05Nov2024 14:11:43.733] [Worker-ResourceReload-4/INFO] [voicechat/]: [voicechat] Using Cloth Config GUI [05Nov2024 14:11:43.735] [Worker-ResourceReload-4/INFO] [voicechat/]: [voicechat] Loading Opus [05Nov2024 14:11:43.744] [Worker-ResourceReload-3/WARN] [Sound Physics - General/]: Sound event eyesinthedarkness:mob.eyes.disappear not found [05Nov2024 14:11:43.747] [Worker-ResourceReload-3/WARN] [Sound Physics - General/]: Sound event eyesinthedarkness:mob.eyes.jumpscare not found [05Nov2024 14:11:43.748] [Worker-ResourceReload-3/WARN] [Sound Physics - General/]: Sound event eyesinthedarkness:mob.eyes.laugh not found [05Nov2024 14:11:43.833] [Worker-ResourceReload-3/INFO] [Sound Physics - General/]: Using Cloth Config GUI [05Nov2024 14:11:43.959] [Worker-ResourceReload-4/INFO] [de.keksuccino.konkrete.Konkrete/]: [KONKRETE] Client-side libs ready to use! [05Nov2024 14:11:43.984] [Worker-ResourceReload-5/INFO] [net.tejty.lemoned.Lemoned/]: HELLO FROM CLIENT SETUP [05Nov2024 14:11:43.984] [Worker-ResourceReload-5/INFO] [net.tejty.lemoned.Lemoned/]: MINECRAFT NAME >> LEGENDARYSHARK07 [05Nov2024 14:11:44.031] [Worker-ResourceReload-3/INFO] [bno/]: Client Registries Method Registered (Client Side) [05Nov2024 14:11:44.039] [Worker-ResourceReload-4/INFO] [dev.architectury.networking.forge.NetworkManagerImpl/]: Registering S2C receiver with id ae2wtlib:update_wut [05Nov2024 14:11:44.039] [Worker-ResourceReload-4/INFO] [dev.architectury.networking.forge.NetworkManagerImpl/]: Registering S2C receiver with id ae2wtlib:update_restock [05Nov2024 14:11:44.040] [Worker-ResourceReload-4/INFO] [dev.architectury.networking.forge.NetworkManagerImpl/]: Registering S2C receiver with id ae2wtlib:restock_amounts [05Nov2024 14:11:44.099] [Worker-ResourceReload-4/INFO] [quark/]: Dispatching Module Step SETUP_CLIENT [05Nov2024 14:11:44.123] [Worker-ResourceReload-0/INFO] [com.klikli_dev.modonomicon.Modonomicon/]: Client setup complete. [05Nov2024 14:11:44.559] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [codechickenlib] Found status: UP_TO_DATE Current: 4.3.2.490 Target: null [05Nov2024 14:11:44.559] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [enchantinginfuser] Starting version check at https://raw.githubusercontent.com/Fuzss/modresources/main/update/enchantinginfuser.json [05Nov2024 14:11:44.578] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [enchantinginfuser] Found status: UP_TO_DATE Current: 4.2.2 Target: null [05Nov2024 14:11:44.578] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [sliceanddice] Starting version check at https://api.modrinth.com/updates/slice-and-dice/forge_updates.json [05Nov2024 14:11:44.673] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [sliceanddice] Found status: UP_TO_DATE Current: 2.4.0 Target: null [05Nov2024 14:11:44.673] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [fastload] Starting version check at https://github.com/BumbleSoftware/Fastload/raw/Forge-1.20.1/updates.json [05Nov2024 14:11:44.699] [Render thread/WARN] [mixin/]: Method overwrite conflict for setSelected in balm.mixins.json:CheckboxAccessor, previously written by net.valhelsia.valhelsia_core.core.mixin.client.CheckboxMixin. Skipping method. [05Nov2024 14:11:44.718] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [fastload] Found status: UP_TO_DATE Current: 3.4.0 Target: null [05Nov2024 14:11:44.718] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [cgm] Starting version check at https://raw.githubusercontent.com/MrCrayfish/ModUpdates/master/cgm/update.json [05Nov2024 14:11:44.731] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [cgm] Found status: BETA Current: 1.3.7 Target: null [05Nov2024 14:11:44.731] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [mr_edf_remastered] Starting version check at https://api.modrinth.com/updates/HQsBdHGd/forge_updates.json [05Nov2024 14:11:45.068] [Render thread/WARN] [com.github.alexthe666.iceandfire.IceAndFire/]: Could not load /assets/iceandfire/models/tabula/firedragon/firedragon_swimming.tbl: in is null [05Nov2024 14:11:45.140] [Render thread/WARN] [com.github.alexthe666.iceandfire.IceAndFire/]: Could not load /assets/iceandfire/models/tabula/firedragon/firedragon_swim5.tbl: in is null [05Nov2024 14:11:45.270] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [mr_edf_remastered] Found status: OUTDATED Current: 4.3 Target: 4.3+mod [05Nov2024 14:11:45.270] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [attributefix] Starting version check at https://updates.blamejared.com/get?n=attributefix&gv=1.19.2 [05Nov2024 14:11:45.722] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [attributefix] Found status: BETA_OUTDATED Current: 17.2.7 Target: 17.2.8 [05Nov2024 14:11:45.722] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [aethersteel] Starting version check at https://raw.githubusercontent.com/Ross2750/Aethersteel/main/updatechecker.json [05Nov2024 14:11:45.761] [Render thread/INFO] [zerocore/]: Initializing Patchouli custom templates... [05Nov2024 14:11:45.804] [Render thread/INFO] [journeymap/]: Journeymap Initializing [05Nov2024 14:11:45.804] [Forge Version Check/WARN] [net.minecraftforge.fml.VersionChecker/]: Failed to process update information com.google.gson.JsonSyntaxException: com.google.gson.stream.MalformedJsonException: Expected name at line 7 column 4 path $..1.20.1-latest at com.google.gson.Gson.fromJson(Gson.java:978) ~[gson-2.8.9.jar%2399!/:?] at com.google.gson.Gson.fromJson(Gson.java:928) ~[gson-2.8.9.jar%2399!/:?] at com.google.gson.Gson.fromJson(Gson.java:877) ~[gson-2.8.9.jar%2399!/:?] at com.google.gson.Gson.fromJson(Gson.java:848) ~[gson-2.8.9.jar%2399!/:?] at net.minecraftforge.fml.VersionChecker$1.process(VersionChecker.java:183) ~[fmlcore-1.19.2-43.4.2.jar%23650!/:?] at java.lang.Iterable.forEach(Unknown Source) [?:?] at net.minecraftforge.fml.VersionChecker$1.run(VersionChecker.java:114) [fmlcore-1.19.2-43.4.2.jar%23650!/:?] Caused by: com.google.gson.stream.MalformedJsonException: Expected name at line 7 column 4 path $..1.20.1-latest at com.google.gson.stream.JsonReader.syntaxError(JsonReader.java:1562) ~[gson-2.8.9.jar%2399!/:?] at com.google.gson.stream.JsonReader.doPeek(JsonReader.java:504) ~[gson-2.8.9.jar%2399!/:?] at com.google.gson.stream.JsonReader.hasNext(JsonReader.java:413) ~[gson-2.8.9.jar%2399!/:?] at com.google.gson.internal.bind.ObjectTypeAdapter.read(ObjectTypeAdapter.java:88) ~[gson-2.8.9.jar%2399!/:?] at com.google.gson.internal.bind.TypeAdapterRuntimeTypeWrapper.read(TypeAdapterRuntimeTypeWrapper.java:41) ~[gson-2.8.9.jar%2399!/:?] at com.google.gson.internal.bind.MapTypeAdapterFactory$Adapter.read(MapTypeAdapterFactory.java:187) ~[gson-2.8.9.jar%2399!/:?] at com.google.gson.internal.bind.MapTypeAdapterFactory$Adapter.read(MapTypeAdapterFactory.java:145) ~[gson-2.8.9.jar%2399!/:?] at com.google.gson.Gson.fromJson(Gson.java:963) ~[gson-2.8.9.jar%2399!/:?] ... 6 more [05Nov2024 14:11:45.805] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [aether_treasure_reforging] Starting version check at https://github.com/The-Aether-Team/Treasure-Reforging/raw/1.19.2-develop/update.json [05Nov2024 14:11:45.838] [Render thread/INFO] [journeymap/]: JourneyMap log initialized. [05Nov2024 14:11:45.839] [Render thread/INFO] [journeymap/]: initialize ENTER [05Nov2024 14:11:45.882] [Render thread/INFO] [journeymap/]: [ClientAPI] built with JourneyMap API 1.9-SNAPSHOT [05Nov2024 14:11:45.883] [Render thread/INFO] [journeymap/]: Initializing plugins with Client API: journeymap.client.api.impl.ClientAPI [05Nov2024 14:11:45.886] [Render thread/INFO] [journeymap/]: Initialized IClientPlugin: net.blay09.mods.waystones.compat.JourneyMapAddon [05Nov2024 14:11:45.969] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [aether_treasure_reforging] Found status: UP_TO_DATE Current: 1.19.2-1.0.1-forge Target: null [05Nov2024 14:11:45.977] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [forge] Starting version check at https://files.minecraftforge.net/net/minecraftforge/forge/promotions_slim.json [05Nov2024 14:11:46.052] [Render thread/WARN] [journeymap/]: core (Initialized) Bad configField entry during updateFrom(): optionsManagerViewed=null [05Nov2024 14:11:46.053] [Render thread/WARN] [journeymap/]: core (Initialized) Bad configField entry during updateFrom(): splashViewed=null [05Nov2024 14:11:46.154] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [forge] Found status: OUTDATED Current: 43.4.2 Target: 43.4.4 [05Nov2024 14:11:46.154] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [mr_construct_andbettercombat] Starting version check at https://api.modrinth.com/updates/EHyfipTl/forge_updates.json [05Nov2024 14:11:46.229] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [mr_construct_andbettercombat] Found status: UP_TO_DATE Current: 1 Target: null [05Nov2024 14:11:46.229] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [zerocore] Starting version check at https://raw.githubusercontent.com/ZeroNoRyouki/ModUpdates/master/ZeroCore2.json [05Nov2024 14:11:46.254] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [zerocore] Found status: AHEAD Current: 1.19.2-2.1.39 Target: null [05Nov2024 14:11:46.254] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [voicechat] Starting version check at https://update.maxhenkel.de/forge/voicechat [05Nov2024 14:11:46.324] [Render thread/INFO] [journeymap/]: initialize EXIT, elapsed count 1 avg 515.22ms [05Nov2024 14:11:46.739] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [voicechat] Found status: OUTDATED Current: 1.19.2-2.5.24 Target: 1.19.2-2.5.25 [05Nov2024 14:11:46.740] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [sound_physics_remastered] Starting version check at https://update.maxhenkel.de/forge/sound_physics_remastered [05Nov2024 14:11:46.855] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [sound_physics_remastered] Found status: AHEAD Current: 1.19.2-1.4.5 Target: null [05Nov2024 14:11:46.856] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [pcf] Starting version check at https://api.modrinth.com/updates/proxy-compatible-forge/forge_updates.json [05Nov2024 14:11:47.037] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [pcf] Found status: OUTDATED Current: 1.1.5 Target: 1.1.7 [05Nov2024 14:11:47.038] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [flywheel] Starting version check at https://api.modrinth.com/updates/flywheel/forge_updates.json [05Nov2024 14:11:47.126] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [flywheel] Found status: AHEAD Current: 0.6.11-22 Target: null [05Nov2024 14:11:47.126] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [gravestone] Starting version check at https://update.maxhenkel.de/forge/gravestone [05Nov2024 14:11:47.239] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [gravestone] Found status: AHEAD Current: 1.19.2-1.0.24 Target: null [05Nov2024 14:11:47.239] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [securitycraft] Starting version check at https://www.github.com/Geforce132/SecurityCraft/raw/master/Updates/Forge.json [05Nov2024 14:11:47.434] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [securitycraft] Found status: UP_TO_DATE Current: 1.9.6.1 Target: null [05Nov2024 14:11:47.434] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [occultism] Starting version check at https://raw.githubusercontent.com/klikli-dev/occultism/meta/updates.json [05Nov2024 14:11:47.451] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [occultism] Found status: AHEAD Current: 1.90.0 Target: null [05Nov2024 14:11:47.452] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [puzzleslib] Starting version check at https://raw.githubusercontent.com/Fuzss/modresources/main/update/puzzleslib.json [05Nov2024 14:11:47.467] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [puzzleslib] Found status: UP_TO_DATE Current: 4.4.3 Target: null [05Nov2024 14:11:47.467] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [parry] Starting version check at https://raw.githubusercontent.com/Drullkus/Shield-Parry/1.19.x/update.json [05Nov2024 14:11:47.492] [Worker-ResourceReload-1/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Unable to load model: 'industrialforegoing:transporter#inventory' referenced from: industrialforegoing:transporter#inventory: java.io.FileNotFoundException: industrialforegoing:models/item/transporter.json [05Nov2024 14:11:47.493] [Worker-ResourceReload-1/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Unable to load model: 'industrialforegoing:item_transporter_type#inventory' referenced from: industrialforegoing:item_transporter_type#inventory: java.io.FileNotFoundException: industrialforegoing:models/item/item_transporter_type.json [05Nov2024 14:11:47.493] [Worker-ResourceReload-1/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Unable to load model: 'industrialforegoing:fluid_transporter_type#inventory' referenced from: industrialforegoing:fluid_transporter_type#inventory: java.io.FileNotFoundException: industrialforegoing:models/item/fluid_transporter_type.json [05Nov2024 14:11:47.493] [Worker-ResourceReload-1/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Unable to load model: 'industrialforegoing:world_transporter_type#inventory' referenced from: industrialforegoing:world_transporter_type#inventory: java.io.FileNotFoundException: industrialforegoing:models/item/world_transporter_type.json [05Nov2024 14:11:47.549] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [parry] Found status: BETA Current: 2.4.1.1 Target: null [05Nov2024 14:11:47.549] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [unionlib] Starting version check at https://raw.githubusercontent.com/Stereowalker/My-Home-Page/main/update_files/unionlib.json [05Nov2024 14:11:47.566] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [unionlib] Found status: BETA Current: 9.0.3.1 Target: 9.0.2.1 [05Nov2024 14:11:47.566] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [unionlib_potionfluid] Starting version check at https://raw.githubusercontent.com/Stereowalker/My-Home-Page/main/update_files/unionlib-potions-fluids.json [05Nov2024 14:11:47.601] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [unionlib_potionfluid] Found status: BETA Current: 1.0.0 Target: null [05Nov2024 14:11:47.601] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [aether] Starting version check at https://github.com/The-Aether-Team/The-Aether/raw/1.19.2-develop/update.json [05Nov2024 14:11:47.653] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [aether] Found status: OUTDATED Current: 0.0NONE Target: 1.19.2-1.5.0-forge [05Nov2024 14:11:47.653] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [controlling] Starting version check at https://updates.blamejared.com/get?n=controlling&gv=1.19.2 [05Nov2024 14:11:47.774] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [controlling] Found status: BETA Current: 10.0+7 Target: 10.0+7 [05Nov2024 14:11:47.774] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [mr_better_deepslateoredrops] Starting version check at https://api.modrinth.com/updates/gmNwzHiE/forge_updates.json [05Nov2024 14:11:47.837] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [mr_better_deepslateoredrops] Found status: AHEAD Current: 2 Target: null [05Nov2024 14:11:47.837] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [bookshelf] Starting version check at https://updates.blamejared.com/get?n=bookshelf&gv=1.19.2 [05Nov2024 14:11:47.838] [Worker-ResourceReload-1/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Unable to load model: 'occultism:lighted_air#inventory' referenced from: occultism:lighted_air#inventory: java.io.FileNotFoundException: occultism:models/item/lighted_air.json [05Nov2024 14:11:47.954] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [bookshelf] Found status: BETA Current: 16.3.20 Target: 16.3.20 [05Nov2024 14:11:47.954] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [shieldexp] Starting version check at https://infernalstudios.org/api/mods/shieldexpansion/forge [05Nov2024 14:11:48.001] [Worker-ResourceReload-1/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Unable to load model: 'tconstruct:item/slimestaff/earth/blocking_5' referenced from: tinkers_thinking:clay_staff#inventory: java.io.FileNotFoundException: tconstruct:models/item/slimestaff/earth/blocking_5.json [05Nov2024 14:11:48.001] [Worker-ResourceReload-1/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Unable to load model: 'tconstruct:item/slimestaff/earth/blocking_2' referenced from: tinkers_thinking:clay_staff#inventory: java.io.FileNotFoundException: tconstruct:models/item/slimestaff/earth/blocking_2.json [05Nov2024 14:11:48.001] [Worker-ResourceReload-1/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Unable to load model: 'tconstruct:item/slimestaff/earth/blocking_1' referenced from: tinkers_thinking:clay_staff#inventory: java.io.FileNotFoundException: tconstruct:models/item/slimestaff/earth/blocking_1.json [05Nov2024 14:11:48.001] [Worker-ResourceReload-1/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Unable to load model: 'tconstruct:item/slimestaff/earth/blocking_4' referenced from: tinkers_thinking:clay_staff#inventory: java.io.FileNotFoundException: tconstruct:models/item/slimestaff/earth/blocking_4.json [05Nov2024 14:11:48.001] [Worker-ResourceReload-1/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Unable to load model: 'tconstruct:item/slimestaff/earth/blocking_3' referenced from: tinkers_thinking:clay_staff#inventory: java.io.FileNotFoundException: tconstruct:models/item/slimestaff/earth/blocking_3.json [05Nov2024 14:11:48.002] [Worker-ResourceReload-1/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Unable to load model: 'tconstruct:item/slimestaff/earth/charging_4' referenced from: tinkers_thinking:clay_staff#inventory: java.io.FileNotFoundException: tconstruct:models/item/slimestaff/earth/charging_4.json [05Nov2024 14:11:48.002] [Worker-ResourceReload-1/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Unable to load model: 'tconstruct:item/slimestaff/earth/charging_3' referenced from: tinkers_thinking:clay_staff#inventory: java.io.FileNotFoundException: tconstruct:models/item/slimestaff/earth/charging_3.json [05Nov2024 14:11:48.002] [Worker-ResourceReload-1/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Unable to load model: 'tconstruct:item/slimestaff/earth/charging_2' referenced from: tinkers_thinking:clay_staff#inventory: java.io.FileNotFoundException: tconstruct:models/item/slimestaff/earth/charging_2.json [05Nov2024 14:11:48.002] [Worker-ResourceReload-1/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Unable to load model: 'tconstruct:item/slimestaff/earth/charging_1' referenced from: tinkers_thinking:clay_staff#inventory: java.io.FileNotFoundException: tconstruct:models/item/slimestaff/earth/charging_1.json [05Nov2024 14:11:48.002] [Worker-ResourceReload-1/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Unable to load model: 'tconstruct:item/slimestaff/earth/charging_5' referenced from: tinkers_thinking:clay_staff#inventory: java.io.FileNotFoundException: tconstruct:models/item/slimestaff/earth/charging_5.json [05Nov2024 14:11:48.002] [Worker-ResourceReload-1/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Unable to load model: 'tconstruct:item/slimestaff/earth/blocking' referenced from: tinkers_thinking:clay_staff#inventory: java.io.FileNotFoundException: tconstruct:models/item/slimestaff/earth/blocking.json [05Nov2024 14:11:48.089] [Worker-ResourceReload-1/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Unable to load model: 'ars_nouveau:temporary_block#inventory' referenced from: ars_nouveau:temporary_block#inventory: java.io.FileNotFoundException: ars_nouveau:models/item/temporary_block.json [05Nov2024 14:11:48.114] [Worker-ResourceReload-1/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Unable to load model: 'enchanted:demon_heart#inventory' referenced from: enchanted:demon_heart#inventory: java.io.FileNotFoundException: enchanted:models/item/demon_heart.json [05Nov2024 14:11:48.133] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [shieldexp] Found status: BETA Current: 1.1.7a Target: null [05Nov2024 14:11:48.133] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [twilightforest] Starting version check at https://gh.tamaized.com/TeamTwilight/twilightforest/update.json [05Nov2024 14:11:48.491] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [twilightforest] Found status: BETA Current: 4.2.1518 Target: null [05Nov2024 14:11:48.491] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [survive] Starting version check at https://www.stereowalker.com/update_files/survive.json [05Nov2024 14:11:48.600] [Worker-ResourceReload-1/INFO] [slimeknights.tconstruct.library.client.materials.MaterialRenderInfoLoader/]: 120 material render infos loaded [05Nov2024 14:11:48.601] [Worker-ResourceReload-1/INFO] [quark/]: Dispatching Module Step REGISTER_ADDITIONAL_MODELS [05Nov2024 14:11:48.684] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [survive] Found status: BETA Current: 1.19.2-8.0.8.2 Target: null [05Nov2024 14:11:48.684] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [bigreactors] Starting version check at https://raw.githubusercontent.com/ZeroNoRyouki/ModUpdates/master/ExtremeReactors2.json [05Nov2024 14:11:48.706] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [bigreactors] Found status: AHEAD Current: 1.19.2-2.0.71 Target: null [05Nov2024 14:11:48.706] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [framework] Starting version check at https://mrcrayfish.com/modupdatejson?id=framework [05Nov2024 14:11:49.455] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [framework] Found status: BETA_OUTDATED Current: 0.6.16 Target: 0.7.12 [05Nov2024 14:11:49.455] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [obscure_api] Starting version check at https://raw.githubusercontent.com/ObscuriaLithium/Home/main/obscure_api/versions.json [05Nov2024 14:11:49.467] [Forge Version Check/WARN] [net.minecraftforge.fml.VersionChecker/]: Failed to process update information com.google.gson.JsonSyntaxException: java.lang.IllegalStateException: Expected BEGIN_OBJECT but was NUMBER at line 1 column 4 path $ at com.google.gson.Gson.fromJson(Gson.java:975) ~[gson-2.8.9.jar%2399!/:?] at com.google.gson.Gson.fromJson(Gson.java:928) ~[gson-2.8.9.jar%2399!/:?] at com.google.gson.Gson.fromJson(Gson.java:877) ~[gson-2.8.9.jar%2399!/:?] at com.google.gson.Gson.fromJson(Gson.java:848) ~[gson-2.8.9.jar%2399!/:?] at net.minecraftforge.fml.VersionChecker$1.process(VersionChecker.java:183) ~[fmlcore-1.19.2-43.4.2.jar%23650!/:?] at java.lang.Iterable.forEach(Unknown Source) [?:?] at net.minecraftforge.fml.VersionChecker$1.run(VersionChecker.java:114) [fmlcore-1.19.2-43.4.2.jar%23650!/:?] Caused by: java.lang.IllegalStateException: Expected BEGIN_OBJECT but was NUMBER at line 1 column 4 path $ at com.google.gson.stream.JsonReader.beginObject(JsonReader.java:384) ~[gson-2.8.9.jar%2399!/:?] at com.google.gson.internal.bind.MapTypeAdapterFactory$Adapter.read(MapTypeAdapterFactory.java:183) ~[gson-2.8.9.jar%2399!/:?] at com.google.gson.internal.bind.MapTypeAdapterFactory$Adapter.read(MapTypeAdapterFactory.java:145) ~[gson-2.8.9.jar%2399!/:?] at com.google.gson.Gson.fromJson(Gson.java:963) ~[gson-2.8.9.jar%2399!/:?] ... 6 more [05Nov2024 14:11:49.468] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [clumps] Starting version check at https://updates.blamejared.com/get?n=clumps&gv=1.19.2 [05Nov2024 14:11:49.581] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [clumps] Found status: BETA Current: 9.0.0+14 Target: 9.0.0+14 [05Nov2024 14:11:49.581] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [journeymap] Starting version check at https://forge.curseupdate.com/32274/journeymap [05Nov2024 14:11:49.744] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [journeymap] Found status: UP_TO_DATE Current: 5.9.8 Target: null [05Nov2024 14:11:49.744] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [configured] Starting version check at https://mrcrayfish.com/modupdatejson?id=configured [05Nov2024 14:11:50.142] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [configured] Found status: BETA Current: 2.1.1 Target: 2.1.1 [05Nov2024 14:11:50.143] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [mr_enderite_upgrade] Starting version check at https://api.modrinth.com/updates/rUMMUMK4/forge_updates.json [05Nov2024 14:11:50.215] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [mr_enderite_upgrade] Found status: AHEAD Current: 1-v5 Target: null [05Nov2024 14:11:50.216] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [morevanillashields] Starting version check at https://raw.githubusercontent.com/Rajhab/MoreVanillaShields-UpdateChecker/main/update.json [05Nov2024 14:11:50.263] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [morevanillashields] Found status: OUTDATED Current: 1.0.2-1.19.2 Target: 1.0.6-1.19.2 [05Nov2024 14:11:50.263] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [enderstorage] Starting version check at https://version-check.covers1624.net/check/?mod=EnderStorage&mc=1.19.2 [05Nov2024 14:11:50.487] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [enderstorage] Found status: UP_TO_DATE Current: 2.10.1.181 Target: null [05Nov2024 14:11:50.488] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [enchdesc] Starting version check at https://updates.blamejared.com/get?n=enchdesc&gv=1.19.2 [05Nov2024 14:11:50.599] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [enchdesc] Found status: BETA_OUTDATED Current: 13.0.14 Target: 13.0.20 [05Nov2024 14:11:50.599] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [moonlight] Starting version check at https://raw.githubusercontent.com/MehVahdJukaar/Moonlight/multi-loader/forge/update.json [05Nov2024 14:11:50.613] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [moonlight] Found status: UP_TO_DATE Current: 1.19.2-2.3.7 Target: null [05Nov2024 14:11:50.613] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [iceberg] Starting version check at https://mc-update-check.anthonyhilyard.com/520110 [05Nov2024 14:11:50.935] [Forge Version Check/WARN] [net.minecraftforge.fml.VersionChecker/]: Failed to process update information com.google.gson.JsonSyntaxException: java.lang.IllegalStateException: Expected BEGIN_OBJECT but was STRING at line 1 column 1 path $ at com.google.gson.Gson.fromJson(Gson.java:975) ~[gson-2.8.9.jar%2399!/:?] at com.google.gson.Gson.fromJson(Gson.java:928) ~[gson-2.8.9.jar%2399!/:?] at com.google.gson.Gson.fromJson(Gson.java:877) ~[gson-2.8.9.jar%2399!/:?] at com.google.gson.Gson.fromJson(Gson.java:848) ~[gson-2.8.9.jar%2399!/:?] at net.minecraftforge.fml.VersionChecker$1.process(VersionChecker.java:183) ~[fmlcore-1.19.2-43.4.2.jar%23650!/:?] at java.lang.Iterable.forEach(Unknown Source) [?:?] at net.minecraftforge.fml.VersionChecker$1.run(VersionChecker.java:114) [fmlcore-1.19.2-43.4.2.jar%23650!/:?] Caused by: java.lang.IllegalStateException: Expected BEGIN_OBJECT but was STRING at line 1 column 1 path $ at com.google.gson.stream.JsonReader.beginObject(JsonReader.java:384) ~[gson-2.8.9.jar%2399!/:?] at com.google.gson.internal.bind.MapTypeAdapterFactory$Adapter.read(MapTypeAdapterFactory.java:183) ~[gson-2.8.9.jar%2399!/:?] at com.google.gson.internal.bind.MapTypeAdapterFactory$Adapter.read(MapTypeAdapterFactory.java:145) ~[gson-2.8.9.jar%2399!/:?] at com.google.gson.Gson.fromJson(Gson.java:963) ~[gson-2.8.9.jar%2399!/:?] ... 6 more [05Nov2024 14:11:50.935] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [survivalistessentials] Starting version check at https://raw.githubusercontent.com/wendall911/SurvivalistEssentials/1.18.2/files/updates.json [05Nov2024 14:11:51.041] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [survivalistessentials] Found status: BETA Current: 1.19.2-4.2.0.18 Target: null [05Nov2024 14:11:51.042] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [tinkersurvival] Starting version check at https://raw.githubusercontent.com/wendall911/TinkerSurvival/1.18.2/files/updates.json [05Nov2024 14:11:51.156] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [tinkersurvival] Found status: BETA Current: 1.19.2-4.1.1.7 Target: null [05Nov2024 14:11:51.156] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [betterf3] Starting version check at https://api.modrinth.com/updates/betterf3/forge_updates.json [05Nov2024 14:11:51.267] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [betterf3] Found status: UP_TO_DATE Current: 4.0.1 Target: null [05Nov2024 14:11:53.274] [Worker-ResourceReload-1/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Unable to resolve texture reference: #3 in ars_nouveau:block/alteration_table [05Nov2024 14:11:53.274] [Worker-ResourceReload-1/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Unable to resolve texture reference: #down in ars_nouveau:block/redstone_relay [05Nov2024 14:11:53.274] [Worker-ResourceReload-1/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Unable to resolve texture reference: #up in ars_nouveau:block/redstone_relay [05Nov2024 14:11:53.274] [Worker-ResourceReload-1/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Unable to resolve texture reference: #north in ars_nouveau:block/redstone_relay [05Nov2024 14:11:53.274] [Worker-ResourceReload-1/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Unable to resolve texture reference: #south in ars_nouveau:block/redstone_relay [05Nov2024 14:11:53.274] [Worker-ResourceReload-1/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Unable to resolve texture reference: #west in ars_nouveau:block/redstone_relay [05Nov2024 14:11:53.275] [Worker-ResourceReload-1/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Unable to resolve texture reference: #east in ars_nouveau:block/redstone_relay [05Nov2024 14:11:53.275] [Worker-ResourceReload-1/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Unable to resolve texture reference: #missing in industrialforegoing:item/infinity_launcher_empty [05Nov2024 14:11:53.275] [Worker-ResourceReload-1/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Unable to resolve texture reference: #missing in industrialforegoing:item/infinity_launcher_full [05Nov2024 14:11:53.275] [Worker-ResourceReload-1/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Unable to resolve texture reference: #missing in byg:block/clover_patch [05Nov2024 14:11:53.275] [Worker-ResourceReload-1/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Unable to resolve texture reference: #missing in byg:block/clover_patch2 [05Nov2024 14:11:53.275] [Worker-ResourceReload-1/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Unable to resolve texture reference: #missing in byg:block/clover_patch3 [05Nov2024 14:11:53.275] [Worker-ResourceReload-1/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Unable to resolve texture reference: #missing in byg:block/clover_patch4 [05Nov2024 14:11:53.275] [Worker-ResourceReload-1/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Unable to resolve texture reference: #missing in nzgmaddon:item/solid_stock [05Nov2024 14:11:53.275] [Worker-ResourceReload-1/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Unable to resolve texture reference: #missing in byg:block/flower_patch [05Nov2024 14:11:53.275] [Worker-ResourceReload-1/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Unable to resolve texture reference: #missing in byg:block/flower_patch2 [05Nov2024 14:11:53.275] [Worker-ResourceReload-1/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Unable to resolve texture reference: #missing in byg:block/flower_patch3 [05Nov2024 14:11:53.275] [Worker-ResourceReload-1/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Unable to resolve texture reference: #missing in nzgmaddon:special/hunting_shotgun_base [05Nov2024 14:11:53.275] [Worker-ResourceReload-1/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Unable to resolve texture reference: #missing in nzgmaddon:item/marksman_stock [05Nov2024 14:11:53.275] [Worker-ResourceReload-1/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Unable to resolve texture reference: #missing in lemoned:block/lemon_crop0 [05Nov2024 14:11:53.275] [Worker-ResourceReload-1/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Unable to resolve texture reference: #missing in lemoned:block/lemon_crop1 [05Nov2024 14:11:53.276] [Worker-ResourceReload-1/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Unable to resolve texture reference: #missing in lemoned:block/lemon_crop2 [05Nov2024 14:11:53.276] [Worker-ResourceReload-1/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Unable to resolve texture reference: #missing in lemoned:block/lemon_crop3 [05Nov2024 14:11:53.276] [Worker-ResourceReload-1/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Unable to resolve texture reference: #missing in lemoned:block/lemon_crop4 [05Nov2024 14:11:53.276] [Worker-ResourceReload-1/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Unable to resolve texture reference: #missing in lemoned:block/lemon_crop5 [05Nov2024 14:11:53.276] [Worker-ResourceReload-1/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Unable to resolve texture reference: #missing in lemoned:block/lemon_crop6 [05Nov2024 14:11:53.276] [Worker-ResourceReload-1/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Unable to resolve texture reference: #missing in lemoned:block/lemon_crop7 [05Nov2024 14:11:53.276] [Worker-ResourceReload-1/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Unable to resolve texture reference: #missing in industrialforegoing:item/infinity_backpack [05Nov2024 14:11:53.276] [Worker-ResourceReload-1/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Unable to resolve texture reference: #missing in createaddition:block/connector/small_light [05Nov2024 14:11:53.328] [Worker-ResourceReload-1/INFO] [Mantle/]: Loaded 62 fluid textures in 32.7805 ms [05Nov2024 14:11:53.374] [Worker-ResourceReload-1/INFO] [quark/]: Dispatching Module Step TEXTURE_STITCH [05Nov2024 14:11:53.380] [Worker-ResourceReload-6/ERROR] [ModernFix/]: Using missing texture, unable to load minecraft:trims/items/boots_trim_iron [05Nov2024 14:11:53.398] [Worker-ResourceReload-4/ERROR] [ModernFix/]: Using missing texture, unable to load theabyss:items/jump_scare_eye [05Nov2024 14:11:53.403] [Worker-ResourceReload-4/ERROR] [ModernFix/]: Using missing texture, unable to load minecraft:trims/items/boots_trim_diamond [05Nov2024 14:11:53.427] [Worker-ResourceReload-6/ERROR] [ModernFix/]: Using missing texture, unable to load minecraft:trims/items/boots_trim_gold [05Nov2024 14:11:53.518] [Worker-ResourceReload-5/ERROR] [ModernFix/]: Using missing texture, unable to load minecraft:trims/items/boots_trim_quartz [05Nov2024 14:11:53.562] [Worker-ResourceReload-5/ERROR] [ModernFix/]: Using missing texture, unable to load aether:trims/items/gloves_trim_copper [05Nov2024 14:11:53.597] [Worker-ResourceReload-2/ERROR] [ModernFix/]: Using missing texture, unable to load minecraft:trims/items/helmet_trim_quartz [05Nov2024 14:11:53.618] [Worker-ResourceReload-4/ERROR] [ModernFix/]: Using missing texture, unable to load minecraft:trims/items/boots_trim_emerald [05Nov2024 14:11:53.620] [Worker-ResourceReload-6/ERROR] [ModernFix/]: Using missing texture, unable to load create:block/chute_block [05Nov2024 14:11:53.646] [Worker-ResourceReload-0/ERROR] [ModernFix/]: Using missing texture, unable to load minecraft:trims/items/helmet_trim_redstone [05Nov2024 14:11:53.688] [Worker-ResourceReload-6/ERROR] [ModernFix/]: Using missing texture, unable to load minecraft:trims/items/boots_trim_netherite [05Nov2024 14:11:53.709] [Worker-ResourceReload-5/ERROR] [ModernFix/]: Using missing texture, unable to load minecraft:trims/items/chestplate_trim_quartz [05Nov2024 14:11:53.714] [Worker-ResourceReload-6/ERROR] [ModernFix/]: Using missing texture, unable to load minecraft:trims/items/helmet_trim_lapis [05Nov2024 14:11:53.736] [Worker-ResourceReload-0/ERROR] [ModernFix/]: Using missing texture, unable to load minecraft:trims/items/leggings_trim_quartz [05Nov2024 14:11:53.746] [Worker-ResourceReload-3/ERROR] [ModernFix/]: Using missing texture, unable to load minecraft:trims/items/boots_trim_copper [05Nov2024 14:11:53.747] [Worker-ResourceReload-3/ERROR] [ModernFix/]: Using missing texture, unable to load minecraft:trims/items/leggings_trim_redstone [05Nov2024 14:11:53.751] [Worker-ResourceReload-5/ERROR] [ModernFix/]: Using missing texture, unable to load aether:trims/items/gloves_trim_diamond [05Nov2024 14:11:53.754] [Worker-ResourceReload-5/ERROR] [ModernFix/]: Using missing texture, unable to load minecraft:trims/items/chestplate_trim_gold [05Nov2024 14:11:53.784] [Worker-ResourceReload-3/ERROR] [ModernFix/]: Using missing texture, unable to load minecraft:trims/items/boots_trim_amethyst [05Nov2024 14:11:53.794] [Worker-ResourceReload-3/ERROR] [ModernFix/]: Using missing texture, unable to load minecraft:trims/items/helmet_trim_copper [05Nov2024 14:11:53.809] [Worker-ResourceReload-3/ERROR] [ModernFix/]: Using missing texture, unable to load minecraft:trims/items/chestplate_trim_amethyst [05Nov2024 14:11:53.824] [Worker-ResourceReload-4/ERROR] [ModernFix/]: Using missing texture, unable to load aether:trims/items/gloves_trim_redstone [05Nov2024 14:11:53.846] [Worker-ResourceReload-4/ERROR] [ModernFix/]: Using missing texture, unable to load aether:trims/items/gloves_trim_iron [05Nov2024 14:11:53.853] [Worker-ResourceReload-5/ERROR] [ModernFix/]: Using missing texture, unable to load minecraft:trims/items/leggings_trim_emerald [05Nov2024 14:11:53.856] [Worker-ResourceReload-5/ERROR] [ModernFix/]: Using missing texture, unable to load minecraft:trims/items/chestplate_trim_iron [05Nov2024 14:11:53.889] [Worker-ResourceReload-4/ERROR] [ModernFix/]: Using missing texture, unable to load minecraft:trims/items/leggings_trim_diamond [05Nov2024 14:11:53.904] [Worker-ResourceReload-3/ERROR] [ModernFix/]: Using missing texture, unable to load minecraft:trims/items/leggings_trim_gold [05Nov2024 14:11:53.907] [Worker-ResourceReload-2/ERROR] [ModernFix/]: Using missing texture, unable to load aether:trims/items/gloves_trim_netherite [05Nov2024 14:11:53.918] [Worker-ResourceReload-5/ERROR] [ModernFix/]: Using missing texture, unable to load minecraft:trims/items/leggings_trim_iron [05Nov2024 14:11:53.929] [Worker-ResourceReload-2/ERROR] [ModernFix/]: Using missing texture, unable to load minecraft:trims/items/helmet_trim_diamond [05Nov2024 14:11:53.937] [Worker-ResourceReload-5/ERROR] [ModernFix/]: Using missing texture, unable to load minecraft:trims/items/chestplate_trim_redstone [05Nov2024 14:11:53.951] [Worker-ResourceReload-5/ERROR] [ModernFix/]: Using missing texture, unable to load minecraft:trims/items/boots_trim_redstone [05Nov2024 14:11:53.966] [Worker-ResourceReload-2/ERROR] [ModernFix/]: Using missing texture, unable to load minecraft:trims/items/leggings_trim_amethyst [05Nov2024 14:11:53.972] [Worker-ResourceReload-2/ERROR] [ModernFix/]: Using missing texture, unable to load aether:trims/items/gloves_trim_amethyst [05Nov2024 14:11:53.978] [Worker-ResourceReload-6/ERROR] [ModernFix/]: Using missing texture, unable to load minecraft:trims/items/chestplate_trim_lapis [05Nov2024 14:11:53.982] [Worker-ResourceReload-5/ERROR] [ModernFix/]: Using missing texture, unable to load minecraft:trims/items/helmet_trim_gold [05Nov2024 14:11:53.991] [Worker-ResourceReload-4/ERROR] [ModernFix/]: Using missing texture, unable to load minecraft:trims/items/leggings_trim_lapis [05Nov2024 14:11:53.994] [Worker-ResourceReload-4/ERROR] [ModernFix/]: Using missing texture, unable to load minecraft:trims/items/helmet_trim_netherite [05Nov2024 14:11:53.996] [Worker-ResourceReload-6/ERROR] [ModernFix/]: Using missing texture, unable to load aether:trims/items/gloves_trim_emerald [05Nov2024 14:11:54.010] [Worker-ResourceReload-3/ERROR] [ModernFix/]: Using missing texture, unable to load minecraft:trims/items/chestplate_trim_emerald [05Nov2024 14:11:54.016] [Worker-ResourceReload-4/ERROR] [ModernFix/]: Using missing texture, unable to load minecraft:trims/items/helmet_trim_iron [05Nov2024 14:11:54.019] [Worker-ResourceReload-4/ERROR] [ModernFix/]: Using missing texture, unable to load minecraft:trims/items/leggings_trim_copper [05Nov2024 14:11:54.021] [Worker-ResourceReload-3/ERROR] [ModernFix/]: Using missing texture, unable to load aether:trims/items/gloves_trim_quartz [05Nov2024 14:11:54.026] [Worker-ResourceReload-5/ERROR] [ModernFix/]: Using missing texture, unable to load aether:trims/items/gloves_trim_lapis [05Nov2024 14:11:54.034] [Worker-ResourceReload-4/ERROR] [ModernFix/]: Using missing texture, unable to load industrialforegoing:textures/blocks/transporters/particle.png [05Nov2024 14:11:54.046] [Worker-ResourceReload-2/ERROR] [ModernFix/]: Using missing texture, unable to load minecraft:trims/items/chestplate_trim_diamond [05Nov2024 14:11:54.068] [Worker-ResourceReload-6/ERROR] [ModernFix/]: Using missing texture, unable to load minecraft:trims/items/chestplate_trim_copper [05Nov2024 14:11:54.104] [Worker-ResourceReload-3/ERROR] [ModernFix/]: Using missing texture, unable to load aether:trims/items/gloves_trim_gold [05Nov2024 14:11:54.105] [Worker-ResourceReload-4/ERROR] [ModernFix/]: Using missing texture, unable to load minecraft:trims/items/helmet_trim_emerald [05Nov2024 14:11:54.108] [Worker-ResourceReload-6/ERROR] [ModernFix/]: Using missing texture, unable to load minecraft:trims/items/boots_trim_lapis [05Nov2024 14:11:54.121] [Worker-ResourceReload-0/ERROR] [ModernFix/]: Using missing texture, unable to load minecraft:trims/items/helmet_trim_amethyst [05Nov2024 14:11:54.121] [Worker-ResourceReload-4/ERROR] [ModernFix/]: Using missing texture, unable to load minecraft:trims/items/chestplate_trim_netherite [05Nov2024 14:11:54.123] [Worker-ResourceReload-6/ERROR] [ModernFix/]: Using missing texture, unable to load cgm:items/pump_shotgun [05Nov2024 14:11:54.126] [Worker-ResourceReload-5/ERROR] [ModernFix/]: Using missing texture, unable to load minecraft:trims/items/leggings_trim_netherite [05Nov2024 14:11:54.241] [Worker-ResourceReload-1/WARN] [net.minecraft.client.renderer.texture.TextureAtlas/]: Texture watching:item/renders/items/name_tag with size 8x8 limits mip level from 4 to 3 [05Nov2024 14:11:54.243] [Worker-ResourceReload-1/WARN] [net.minecraft.client.renderer.texture.TextureAtlas/]: Texture watching:item/renders/particle/flame with size 4x4 limits mip level from 3 to 2 [05Nov2024 14:11:54.245] [Worker-ResourceReload-1/WARN] [net.minecraft.client.renderer.texture.TextureAtlas/]: Texture survivalistessentials:block/loose/9p_loose_stone with size 3x3 limits mip level from 2 to 0 [05Nov2024 14:11:54.694] [Worker-ResourceReload-1/INFO] [quark/]: Dispatching Module Step TEXTURE_STITCH [05Nov2024 14:11:54.704] [Worker-ResourceReload-1/INFO] [quark/]: Dispatching Module Step TEXTURE_STITCH [05Nov2024 14:11:54.708] [Worker-ResourceReload-1/INFO] [quark/]: Dispatching Module Step TEXTURE_STITCH [05Nov2024 14:11:54.717] [Worker-ResourceReload-1/INFO] [quark/]: Dispatching Module Step TEXTURE_STITCH [05Nov2024 14:11:54.749] [Worker-ResourceReload-1/INFO] [quark/]: Dispatching Module Step TEXTURE_STITCH [05Nov2024 14:11:54.754] [Worker-ResourceReload-1/INFO] [quark/]: Dispatching Module Step TEXTURE_STITCH [05Nov2024 14:11:54.868] [Render thread/INFO] [com.jozufozu.flywheel.backend.Backend/]: Loaded all shader sources. [05Nov2024 14:11:54.955] [Worker-ResourceReload-4/INFO] [com.axedgaming.endersdelight.EndersDelight/]: Hello world from the MDK [05Nov2024 14:11:54.956] [Worker-ResourceReload-2/INFO] [HammerLib/]: Performed registerFoil from hammerlib. Determined constant(0xFFFFFF0F) foil provider [05Nov2024 14:11:54.956] [Worker-ResourceReload-4/INFO] [com.axedgaming.endersdelight.EndersDelight/]: Got IMC [Hello world] [05Nov2024 14:11:54.957] [Worker-ResourceReload-2/INFO] [HammerLib/]: Performed registerFoil from hammerlib. Determined dynamic(org.zeith.hammerlib.client.CustomFoilConfigs$$Lambda$43226/0x000001c38589b6e8@1201ab95) foil provider [05Nov2024 14:11:55.021] [Worker-ResourceReload-6/INFO] [quark/]: Dispatching Module Step LOAD_COMPLETE [05Nov2024 14:11:55.022] [Worker-ResourceReload-4/INFO] [AttributeFix/]: Loaded values for 57 compatible attributes. [05Nov2024 14:11:55.033] [Worker-ResourceReload-4/ERROR] [AttributeFix/]: Attribute ID 'cold_sweat:base_temperature_offset' does not belong to a known attribute. This entry will be ignored. [05Nov2024 14:11:55.033] [Worker-ResourceReload-4/ERROR] [AttributeFix/]: Attribute ID 'siren_head:idledespawn' does not belong to a known attribute. This entry will be ignored. [05Nov2024 14:11:55.033] [Worker-ResourceReload-4/ERROR] [AttributeFix/]: Attribute ID 'arsmagicalegacy:burnout_regen' does not belong to a known attribute. This entry will be ignored. [05Nov2024 14:11:55.033] [Worker-ResourceReload-4/ERROR] [AttributeFix/]: Attribute ID 'siren_head:z_des_cord' does not belong to a known attribute. This entry will be ignored. [05Nov2024 14:11:55.033] [Worker-ResourceReload-4/ERROR] [AttributeFix/]: Attribute ID 'siren_head:despawn' does not belong to a known attribute. This entry will be ignored. [05Nov2024 14:11:55.033] [Worker-ResourceReload-4/ERROR] [AttributeFix/]: Attribute ID 'arsmagicalegacy:mana_regen' does not belong to a known attribute. This entry will be ignored. [05Nov2024 14:11:55.033] [Worker-ResourceReload-4/ERROR] [AttributeFix/]: Attribute ID 'arsmagicalegacy:max_burnout' does not belong to a known attribute. This entry will be ignored. [05Nov2024 14:11:55.033] [Worker-ResourceReload-4/ERROR] [AttributeFix/]: Attribute ID 'siren_head:stay' does not belong to a known attribute. This entry will be ignored. [05Nov2024 14:11:55.033] [Worker-ResourceReload-4/ERROR] [AttributeFix/]: Attribute ID 'cold_sweat:heat_resistance' does not belong to a known attribute. This entry will be ignored. [05Nov2024 14:11:55.033] [Worker-ResourceReload-4/ERROR] [AttributeFix/]: Attribute ID 'siren_head:idlesounddel' does not belong to a known attribute. This entry will be ignored. [05Nov2024 14:11:55.033] [Worker-ResourceReload-4/ERROR] [AttributeFix/]: Attribute ID 'siren_head:still' does not belong to a known attribute. This entry will be ignored. [05Nov2024 14:11:55.033] [Worker-ResourceReload-4/ERROR] [AttributeFix/]: Attribute ID 'arsmagicalegacy:max_mana' does not belong to a known attribute. This entry will be ignored. [05Nov2024 14:11:55.033] [Worker-ResourceReload-4/ERROR] [AttributeFix/]: Attribute ID 'cold_sweat:burning_point_offset' does not belong to a known attribute. This entry will be ignored. [05Nov2024 14:11:55.033] [Worker-ResourceReload-4/ERROR] [AttributeFix/]: Attribute ID 'skilltree:evasion' does not belong to a known attribute. This entry will be ignored. [05Nov2024 14:11:55.033] [Worker-ResourceReload-4/ERROR] [AttributeFix/]: Attribute ID 'siren_head:horncooldown' does not belong to a known attribute. This entry will be ignored. [05Nov2024 14:11:55.033] [Worker-ResourceReload-4/ERROR] [AttributeFix/]: Attribute ID 'cold_sweat:world_temperature' does not belong to a known attribute. This entry will be ignored. [05Nov2024 14:11:55.034] [Worker-ResourceReload-4/ERROR] [AttributeFix/]: Attribute ID 'arsmagicalegacy:magic_vision' does not belong to a known attribute. This entry will be ignored. [05Nov2024 14:11:55.034] [Worker-ResourceReload-4/ERROR] [AttributeFix/]: Attribute ID 'siren_head:stroll_cooldown' does not belong to a known attribute. This entry will be ignored. [05Nov2024 14:11:55.034] [Worker-ResourceReload-4/ERROR] [AttributeFix/]: Attribute ID 'siren_head:detectionrange' does not belong to a known attribute. This entry will be ignored. [05Nov2024 14:11:55.034] [Worker-ResourceReload-4/ERROR] [AttributeFix/]: Attribute ID 'siren_head:noescapemotion' does not belong to a known attribute. This entry will be ignored. [05Nov2024 14:11:55.034] [Worker-ResourceReload-4/ERROR] [AttributeFix/]: Attribute ID 'cold_sweat:freezing_point_offset' does not belong to a known attribute. This entry will be ignored. [05Nov2024 14:11:55.034] [Worker-ResourceReload-4/ERROR] [AttributeFix/]: Attribute ID 'botania:pixie_spawn_chance' does not belong to a known attribute. This entry will be ignored. [05Nov2024 14:11:55.034] [Worker-ResourceReload-4/ERROR] [AttributeFix/]: Attribute ID 'siren_head:chasetime' does not belong to a known attribute. This entry will be ignored. [05Nov2024 14:11:55.034] [Worker-ResourceReload-4/ERROR] [AttributeFix/]: Attribute ID 'skilltree:stealth' does not belong to a known attribute. This entry will be ignored. [05Nov2024 14:11:55.034] [Worker-ResourceReload-4/ERROR] [AttributeFix/]: Attribute ID 'siren_head:y_des_cord' does not belong to a known attribute. This entry will be ignored. [05Nov2024 14:11:55.034] [Worker-ResourceReload-4/ERROR] [AttributeFix/]: Attribute ID 'cold_sweat:core_temperature_offset' does not belong to a known attribute. This entry will be ignored. [05Nov2024 14:11:55.034] [Worker-ResourceReload-4/ERROR] [AttributeFix/]: Attribute ID 'cold_sweat:base_temperature' does not belong to a known attribute. This entry will be ignored. [05Nov2024 14:11:55.034] [Worker-ResourceReload-4/ERROR] [AttributeFix/]: Attribute ID 'skilltree:exp_per_minute' does not belong to a known attribute. This entry will be ignored. [05Nov2024 14:11:55.034] [Worker-ResourceReload-4/ERROR] [AttributeFix/]: Attribute ID 'arsmagicalegacy:scale' does not belong to a known attribute. This entry will be ignored. [05Nov2024 14:11:55.034] [Worker-ResourceReload-4/ERROR] [AttributeFix/]: Attribute ID 'cold_sweat:cold_dampening' does not belong to a known attribute. This entry will be ignored. [05Nov2024 14:11:55.034] [Worker-ResourceReload-4/ERROR] [AttributeFix/]: Attribute ID 'siren_head:attackrange' does not belong to a known attribute. This entry will be ignored. [05Nov2024 14:11:55.034] [Worker-ResourceReload-4/ERROR] [AttributeFix/]: Attribute ID 'siren_head:idleanim' does not belong to a known attribute. This entry will be ignored. [05Nov2024 14:11:55.035] [Worker-ResourceReload-4/ERROR] [AttributeFix/]: Attribute ID 'cold_sweat:heat_dampening' does not belong to a known attribute. This entry will be ignored. [05Nov2024 14:11:55.035] [Worker-ResourceReload-4/ERROR] [AttributeFix/]: Attribute ID 'cold_sweat:freezing_point' does not belong to a known attribute. This entry will be ignored. [05Nov2024 14:11:55.035] [Worker-ResourceReload-4/ERROR] [AttributeFix/]: Attribute ID 'skilltree:regeneration' does not belong to a known attribute. This entry will be ignored. [05Nov2024 14:11:55.035] [Worker-ResourceReload-4/ERROR] [AttributeFix/]: Attribute ID 'siren_head:runaway' does not belong to a known attribute. This entry will be ignored. [05Nov2024 14:11:55.035] [Worker-ResourceReload-4/ERROR] [AttributeFix/]: Attribute ID 'siren_head:hunt' does not belong to a known attribute. This entry will be ignored. [05Nov2024 14:11:55.035] [Worker-ResourceReload-4/ERROR] [AttributeFix/]: Attribute ID 'siren_head:x_des_cord' does not belong to a known attribute. This entry will be ignored. [05Nov2024 14:11:55.035] [Worker-ResourceReload-4/ERROR] [AttributeFix/]: Attribute ID 'siren_head:faku' does not belong to a known attribute. This entry will be ignored. [05Nov2024 14:11:55.035] [Worker-ResourceReload-4/ERROR] [AttributeFix/]: Attribute ID 'cold_sweat:core_temperature' does not belong to a known attribute. This entry will be ignored. [05Nov2024 14:11:55.035] [Worker-ResourceReload-4/ERROR] [AttributeFix/]: Attribute ID 'siren_head:stalktime' does not belong to a known attribute. This entry will be ignored. [05Nov2024 14:11:55.035] [Worker-ResourceReload-4/ERROR] [AttributeFix/]: Attribute ID 'cold_sweat:cold_resistance' does not belong to a known attribute. This entry will be ignored. [05Nov2024 14:11:55.035] [Worker-ResourceReload-4/ERROR] [AttributeFix/]: Attribute ID 'siren_head:attackid' does not belong to a known attribute. This entry will be ignored. [05Nov2024 14:11:55.035] [Worker-ResourceReload-4/ERROR] [AttributeFix/]: Attribute ID 'cold_sweat:burning_point' does not belong to a known attribute. This entry will be ignored. [05Nov2024 14:11:55.035] [Worker-ResourceReload-4/ERROR] [AttributeFix/]: Attribute ID 'skilltree:blocking' does not belong to a known attribute. This entry will be ignored. [05Nov2024 14:11:55.035] [Worker-ResourceReload-4/ERROR] [AttributeFix/]: Attribute ID 'cold_sweat:world_temperature_offset' does not belong to a known attribute. This entry will be ignored. [05Nov2024 14:11:55.035] [Worker-ResourceReload-4/INFO] [AttributeFix/]: Loaded 103 values from config. [05Nov2024 14:11:55.040] [Worker-ResourceReload-4/INFO] [AttributeFix/]: Saving config file. 103 entries. [05Nov2024 14:11:55.040] [Worker-ResourceReload-4/INFO] [AttributeFix/]: Applying changes for 103 attributes. [05Nov2024 14:11:55.125] [Render thread/INFO] [journeymap/]: Journeymap PostInit [05Nov2024 14:11:55.129] [Render thread/ERROR] [journeymap/]: Couldn't locate icons for flat: C:\Users\hstoe\AppData\Roaming\ModrinthApp\profiles\The%20Haunted%20SMP%202.0%201.5.1\mods\journeymap-1.19.2-5.9.8-forge.jar\assets\journeymap\theme\flat [05Nov2024 14:11:55.153] [Render thread/INFO] [journeymap/]: Preloaded theme textures: 0 [05Nov2024 14:11:55.156] [Render thread/INFO] [journeymap/]: postInitialize EXIT, elapsed count 1 avg 30.13ms [05Nov2024 14:11:55.158] [Render thread/INFO] [configured/]: Successfully loaded config provider: com.mrcrayfish.configured.impl.forge.ForgeConfigProvider [05Nov2024 14:11:55.158] [Render thread/INFO] [configured/]: Successfully loaded config provider: com.mrcrayfish.configured.impl.simple.SimpleConfigProvider [05Nov2024 14:11:55.159] [Render thread/INFO] [configured/]: Successfully loaded config provider: com.anthonyhilyard.iceberg.compat.configured.IcebergConfigProvider [05Nov2024 14:11:55.159] [Render thread/INFO] [configured/]: Creating config GUI factories... [05Nov2024 14:11:55.173] [Render thread/INFO] [configured/]: Registering config factory for mod configured. Found 2 config(s) [05Nov2024 14:11:55.176] [Render thread/INFO] [terrablender/]: Registered region quark:biome_provider to index 9 for type OVERWORLD [05Nov2024 14:11:55.745] [Render thread/WARN] [net.minecraft.client.sounds.SoundEngine/]: Missing sound for event: minecraft:item.goat_horn.play [05Nov2024 14:11:55.746] [Render thread/WARN] [net.minecraft.client.sounds.SoundEngine/]: Missing sound for event: minecraft:entity.goat.screaming.horn_break [05Nov2024 14:11:55.746] [Render thread/WARN] [net.minecraft.client.sounds.SoundEngine/]: Missing sound for event: aether:entity.sentry.ambient [05Nov2024 14:11:55.747] [Render thread/WARN] [net.minecraft.client.sounds.SoundEngine/]: Missing sound for event: nzgmaddon:item.bullpup.fire [05Nov2024 14:11:55.747] [Render thread/WARN] [net.minecraft.client.sounds.SoundEngine/]: Missing sound for event: nzgmaddon:item.bullpup.enchanted_fire [05Nov2024 14:11:55.747] [Render thread/WARN] [net.minecraft.client.sounds.SoundEngine/]: Missing sound for event: nzgmaddon:item.bullpup.silenced_fire [05Nov2024 14:11:55.747] [Render thread/WARN] [net.minecraft.client.sounds.SoundEngine/]: Missing sound for event: nzgmaddon:item.bullpup.cock [05Nov2024 14:11:56.144] [Render thread/INFO] [com.mojang.blaze3d.audio.Library/]: OpenAL initialized on device OpenAL Soft on Speakers (USB Audio) [05Nov2024 14:11:56.145] [Render thread/INFO] [Sound Physics - General/]: Initializing Sound Physics [05Nov2024 14:11:56.145] [Render thread/INFO] [Sound Physics - General/]: EFX Extension recognized [05Nov2024 14:11:56.145] [Render thread/INFO] [Sound Physics - General/]: Max auxiliary sends: 4 [05Nov2024 14:11:56.147] [Render thread/INFO] [Sound Physics - General/]: Aux slot 1 created [05Nov2024 14:11:56.147] [Render thread/INFO] [Sound Physics - General/]: Aux slot 2 created [05Nov2024 14:11:56.148] [Render thread/INFO] [Sound Physics - General/]: Aux slot 3 created [05Nov2024 14:11:56.148] [Render thread/INFO] [Sound Physics - General/]: Aux slot 4 created [05Nov2024 14:11:56.155] [Render thread/INFO] [Sound Physics - General/]: EFX ready [05Nov2024 14:11:56.156] [Render thread/INFO] [net.minecraft.client.sounds.SoundEngine/SOUNDS]: Sound engine started [05Nov2024 14:11:56.282] [Render thread/INFO] [com.teamabnormals.blueprint.core.Blueprint/]: Endimation Loader has loaded 45 endimations [05Nov2024 14:11:56.287] [Render thread/INFO] [net.minecraft.client.renderer.texture.TextureAtlas/]: Created: 8192x4096x4 minecraft:textures/atlas/blocks.png-atlas [05Nov2024 14:12:17.151] [Render thread/INFO] [quark/]: Dispatching Module Step POST_TEXTURE_STITCH [05Nov2024 14:12:17.151] [Render thread/INFO] [net.minecraft.client.renderer.texture.TextureAtlas/]: Created: 1024x512x4 minecraft:textures/atlas/signs.png-atlas [05Nov2024 14:12:17.155] [Render thread/INFO] [quark/]: Dispatching Module Step POST_TEXTURE_STITCH [05Nov2024 14:12:17.155] [Render thread/INFO] [net.minecraft.client.renderer.texture.TextureAtlas/]: Created: 512x512x4 minecraft:textures/atlas/shield_patterns.png-atlas [05Nov2024 14:12:17.158] [Render thread/INFO] [quark/]: Dispatching Module Step POST_TEXTURE_STITCH [05Nov2024 14:12:17.158] [Render thread/INFO] [net.minecraft.client.renderer.texture.TextureAtlas/]: Created: 512x512x4 minecraft:textures/atlas/banner_patterns.png-atlas [05Nov2024 14:12:17.160] [Render thread/INFO] [quark/]: Dispatching Module Step POST_TEXTURE_STITCH [05Nov2024 14:12:17.160] [Render thread/INFO] [net.minecraft.client.renderer.texture.TextureAtlas/]: Created: 2048x1024x4 minecraft:textures/atlas/chest.png-atlas [05Nov2024 14:12:17.169] [Render thread/INFO] [quark/]: Dispatching Module Step POST_TEXTURE_STITCH [05Nov2024 14:12:17.169] [Render thread/INFO] [net.minecraft.client.renderer.texture.TextureAtlas/]: Created: 512x256x4 minecraft:textures/atlas/shulker_boxes.png-atlas [05Nov2024 14:12:17.172] [Render thread/INFO] [quark/]: Dispatching Module Step POST_TEXTURE_STITCH [05Nov2024 14:12:17.173] [Render thread/INFO] [net.minecraft.client.renderer.texture.TextureAtlas/]: Created: 512x256x4 minecraft:textures/atlas/beds.png-atlas [05Nov2024 14:12:17.174] [Render thread/INFO] [quark/]: Dispatching Module Step POST_TEXTURE_STITCH [05Nov2024 14:12:19.690] [Render thread/WARN] [net.minecraftforge.client.model.DynamicFluidContainerModel/]: Model "industrialforegoing:sludge_bucket#inventory" is using the deprecated loader "forge:bucket" instead of "forge:fluid_container". This loader will be removed in 1.20. [05Nov2024 14:12:19.751] [Render thread/WARN] [net.minecraftforge.client.model.DynamicFluidContainerModel/]: Model "industrialforegoing:sewage_bucket#inventory" is using the deprecated loader "forge:bucket" instead of "forge:fluid_container". This loader will be removed in 1.20. [05Nov2024 14:12:20.006] [Render thread/WARN] [net.minecraftforge.client.model.DynamicFluidContainerModel/]: Model "industrialforegoing:ether_gas_bucket#inventory" is using the deprecated loader "forge:bucket" instead of "forge:fluid_container". This loader will be removed in 1.20. [05Nov2024 14:12:20.365] [Render thread/WARN] [net.minecraftforge.client.model.DynamicFluidContainerModel/]: Model "industrialforegoing:biofuel_bucket#inventory" is using the deprecated loader "forge:bucket" instead of "forge:fluid_container". This loader will be removed in 1.20. [05Nov2024 14:12:20.530] [Render thread/WARN] [net.minecraftforge.client.model.DynamicFluidContainerModel/]: Model "bigreactors:steam_bucket#inventory" is using the deprecated loader "forge:bucket" instead of "forge:fluid_container". This loader will be removed in 1.20. [05Nov2024 14:12:20.605] [Render thread/WARN] [net.minecraftforge.client.model.DynamicFluidContainerModel/]: Model "industrialforegoing:fermented_ore_meat_bucket#inventory" is using the deprecated loader "forge:bucket" instead of "forge:fluid_container". This loader will be removed in 1.20. [05Nov2024 14:12:20.871] [Render thread/WARN] [net.minecraftforge.client.model.DynamicFluidContainerModel/]: Model "bigreactors:rossinite_bucket#inventory" is using the deprecated loader "forge:bucket" instead of "forge:fluid_container". This loader will be removed in 1.20. [05Nov2024 14:12:21.100] [Render thread/WARN] [net.minecraftforge.client.model.DynamicFluidContainerModel/]: Model "bigreactors:blutonium_bucket#inventory" is using the deprecated loader "forge:bucket" instead of "forge:fluid_container". This loader will be removed in 1.20. [05Nov2024 14:12:21.128] [Render thread/WARN] [net.minecraftforge.client.model.DynamicFluidContainerModel/]: Model "bigreactors:cyanite_bucket#inventory" is using the deprecated loader "forge:bucket" instead of "forge:fluid_container". This loader will be removed in 1.20. [05Nov2024 14:12:21.133] [Render thread/WARN] [net.minecraftforge.client.model.DynamicFluidContainerModel/]: Model "industrialforegoing:pink_slime_bucket#inventory" is using the deprecated loader "forge:bucket" instead of "forge:fluid_container". This loader will be removed in 1.20. [05Nov2024 14:12:21.300] [Render thread/WARN] [net.minecraftforge.client.model.DynamicFluidContainerModel/]: Model "bigreactors:redfrigium_bucket#inventory" is using the deprecated loader "forge:bucket" instead of "forge:fluid_container". This loader will be removed in 1.20. [05Nov2024 14:12:21.419] [Render thread/WARN] [net.minecraftforge.client.model.DynamicFluidContainerModel/]: Model "industrialforegoing:essence_bucket#inventory" is using the deprecated loader "forge:bucket" instead of "forge:fluid_container". This loader will be removed in 1.20. [05Nov2024 14:12:21.530] [Render thread/WARN] [net.minecraftforge.client.model.DynamicFluidContainerModel/]: Model "bigreactors:verderium_bucket#inventory" is using the deprecated loader "forge:bucket" instead of "forge:fluid_container". This loader will be removed in 1.20. [05Nov2024 14:12:21.565] [Render thread/WARN] [net.minecraftforge.client.model.DynamicFluidContainerModel/]: Model "bigreactors:tangerium_bucket#inventory" is using the deprecated loader "forge:bucket" instead of "forge:fluid_container". This loader will be removed in 1.20. [05Nov2024 14:12:21.818] [Render thread/WARN] [Mantle/]: Using deprecated 'luminosity' field on ColoredBlockModel color data for tinkers_things:hematite_block#inventory, this will be removed in 1.20 in favor of Forge's 'emissivity'. [05Nov2024 14:12:21.818] [Render thread/WARN] [net.minecraftforge.client.model.DynamicFluidContainerModel/]: Model "bigreactors:magentite_bucket#inventory" is using the deprecated loader "forge:bucket" instead of "forge:fluid_container". This loader will be removed in 1.20. [05Nov2024 14:12:21.947] [Render thread/WARN] [Mantle/]: Using deprecated 'luminosity' field on ColoredBlockModel color data for tinkers_things:block/hematite, this will be removed in 1.20 in favor of Forge's 'emissivity'. [05Nov2024 14:12:22.246] [Render thread/WARN] [net.minecraftforge.client.model.DynamicFluidContainerModel/]: Model "industrialforegoing:raw_ore_meat_bucket#inventory" is using the deprecated loader "forge:bucket" instead of "forge:fluid_container". This loader will be removed in 1.20. [05Nov2024 14:12:22.316] [Render thread/WARN] [net.minecraftforge.client.model.DynamicFluidContainerModel/]: Model "industrialforegoing:meat_bucket#inventory" is using the deprecated loader "forge:bucket" instead of "forge:fluid_container". This loader will be removed in 1.20. [05Nov2024 14:12:22.378] [Render thread/WARN] [net.minecraftforge.client.model.DynamicFluidContainerModel/]: Model "bigreactors:cryomisi_bucket#inventory" is using the deprecated loader "forge:bucket" instead of "forge:fluid_container". This loader will be removed in 1.20. [05Nov2024 14:12:22.504] [Render thread/WARN] [net.minecraftforge.client.model.obj.ObjModel/]: Model "industrialforegoing:block/catears" is using the deprecated "ambientToFullbright" field in its OBJ model instead of "emissive_ambient". This field will be removed in 1.20. [05Nov2024 14:12:22.541] [Render thread/WARN] [net.minecraftforge.client.model.DynamicFluidContainerModel/]: Model "industrialforegoing:latex_bucket#inventory" is using the deprecated loader "forge:bucket" instead of "forge:fluid_container". This loader will be removed in 1.20. [05Nov2024 14:12:22.863] [Render thread/WARN] [Mantle/]: Using deprecated 'luminosity' field on ColoredBlockModel color data for tconstruct:queens_slime_block#inventory, this will be removed in 1.20 in favor of Forge's 'emissivity'. [05Nov2024 14:12:22.921] [Render thread/WARN] [net.minecraftforge.client.model.DynamicFluidContainerModel/]: Model "bigreactors:yellorium_bucket#inventory" is using the deprecated loader "forge:bucket" instead of "forge:fluid_container". This loader will be removed in 1.20. [05Nov2024 14:12:22.959] [Render thread/WARN] [Mantle/]: Using deprecated 'luminosity' field on ColoredBlockModel color data for tconstruct:block/storage/queens_slime, this will be removed in 1.20 in favor of Forge's 'emissivity'. [05Nov2024 14:12:23.526] [Render thread/INFO] [Mystical Agriculture/]: Model replacement took 3 ms [05Nov2024 14:12:23.527] [Render thread/INFO] [quark/]: Dispatching Module Step MODEL_BAKE [05Nov2024 14:12:24.768] [Render thread/INFO] [quark/]: Dispatching Module Step MODEL_LAYERS [05Nov2024 14:12:24.804] [Render thread/WARN] [net.minecraft.client.renderer.ShaderInstance/]: Shader rendertype_entity_translucent_emissive could not find sampler named Sampler2 in the specified shader program. [05Nov2024 14:12:24.913] [Render thread/INFO] [net.minecraft.client.renderer.texture.TextureAtlas/]: Created: 2048x1024x0 minecraft:textures/atlas/particles.png-atlas [05Nov2024 14:12:24.921] [Render thread/INFO] [quark/]: Dispatching Module Step POST_TEXTURE_STITCH [05Nov2024 14:12:24.922] [Render thread/INFO] [net.minecraft.client.renderer.texture.TextureAtlas/]: Created: 256x256x0 minecraft:textures/atlas/paintings.png-atlas [05Nov2024 14:12:24.924] [Render thread/INFO] [quark/]: Dispatching Module Step POST_TEXTURE_STITCH [05Nov2024 14:12:24.924] [Render thread/INFO] [net.minecraft.client.renderer.texture.TextureAtlas/]: Created: 256x256x0 minecraft:textures/atlas/mob_effects.png-atlas [05Nov2024 14:12:24.926] [Render thread/INFO] [quark/]: Dispatching Module Step POST_TEXTURE_STITCH [05Nov2024 14:12:24.969] [Render thread/INFO] [net.minecraft.client.renderer.texture.TextureAtlas/]: Created: 256x128x0 jei:textures/atlas/gui.png-atlas [05Nov2024 14:12:24.972] [Render thread/INFO] [quark/]: Dispatching Module Step POST_TEXTURE_STITCH [05Nov2024 14:12:24.974] [Render thread/WARN] [appeng.client.guidebook.indices.ItemIndex/]: Page ae2:features/crystals.md references an unknown item ae2:quartz_ore in its item_ids frontmatter [05Nov2024 14:12:24.975] [Render thread/WARN] [appeng.client.guidebook.indices.UniqueIndex/]: Key conflict in index Item Index: ae2:fluix_pearl is used by pages ae2:materials/fluix_pearl.md (from Mod Resources) and Record[pageId=ae2:features/me-network/wireless-access.md, value=PageAnchor[pageId=ae2:features/me-network/wireless-access.md, anchor=null]] [05Nov2024 14:12:24.981] [Render thread/INFO] [slimeknights.mantle.fluid.tooltip.FluidTooltipHandler/]: Loaded 18 fluid unit lists in 0.6506 ms [05Nov2024 14:12:24.987] [Render thread/INFO] [patchouli/]: BookContentResourceListenerLoader preloaded 91 jsons [05Nov2024 14:12:24.987] [Render thread/INFO] [patchouli/]: Not reloading resource pack-based books as client world is missing [05Nov2024 14:12:24.991] [Render thread/INFO] [com.teamabnormals.blueprint.core.Blueprint/]: Blueprint Splash Manager has loaded 0 splashes [05Nov2024 14:12:25.025] [Render thread/INFO] [tconstruct/]: Loaded 5 armor models in 32.7811 ms [05Nov2024 14:12:25.182] [Render thread/INFO] [unionlib/]: Initializing mod on client: survive [05Nov2024 14:12:25.182] [Render thread/INFO] [unionlib/]: Initializing mod on client: unionlib [05Nov2024 14:12:25.193] [Render thread/INFO] [unionlib/]: survive's Clientbound packets registered [05Nov2024 14:12:25.195] [Render thread/INFO] [unionlib/]: unionlib's Clientbound packets registered [05Nov2024 14:12:25.245] [Render thread/INFO] [ambientsounds/]: Loaded AmbientEngine 'basic' v2.3.4. 11 dimension(s), 10 features, 11 groups, 35 regions, 62 sounds, 4 solids and 2 biome types [05Nov2024 14:12:25.278] [Render thread/INFO] [quark/]: Dispatching Module Step FIRST_CLIENT_TICK [05Nov2024 14:12:27.073] [Render thread/WARN] [ModernFix/]: Game took 111.313 seconds to start [05Nov2024 14:12:40.140] [Render thread/INFO] [mixin/]: Mixing client.MixinOnlineServerEntry from nochatreports.mixins.json into net.minecraft.client.gui.screens.multiplayer.ServerSelectionList$OnlineServerEntry [05Nov2024 14:12:40.140] [Render thread/INFO] [mixin/]: Renaming synthetic method lambda$onRender$0()Ljava/util/ArrayList; to md49b64c$lambda$onRender$0$0 in nochatreports.mixins.json:client.MixinOnlineServerEntry [05Nov2024 14:12:40.630] [Server Pinger #0/INFO] [mixin/]: Mixing client.MixinServerStatusPinger$1 from nochatreports.mixins.json into net.minecraft.client.multiplayer.ServerStatusPinger$1 [05Nov2024 14:12:40.739] [Server Pinger #0/INFO] [mixin/]: Mixing server.MixinServerboundChatPacket from nochatreports.mixins.json into net.minecraft.network.protocol.game.ServerboundChatPacket [05Nov2024 14:12:40.768] [Server Pinger #0/INFO] [mixin/]: Mixing client.MixinClientboundHelloPacket from nochatreports.mixins.json into net.minecraft.network.protocol.login.ClientboundHelloPacket [05Nov2024 14:12:40.978] [Netty Client IO #0/INFO] [mixin/]: Mixing common.MixinServerStatusSerializer from nochatreports.mixins.json into net.minecraft.network.protocol.status.ServerStatus$Serializer [05Nov2024 14:12:41.077] [Netty Client IO #0/INFO] [mixin/]: Mixing forge.client.MixinClientHandshakePacketListenerImpl from nochatreports.mixins.json into net.minecraft.client.multiplayer.ClientHandshakePacketListenerImpl [05Nov2024 14:12:48.601] [Render thread/INFO] [mixin/]: Mixing client.MixinConnectScreen from nochatreports.mixins.json into net.minecraft.client.gui.screens.ConnectScreen [05Nov2024 14:12:48.652] [Render thread/INFO] [net.minecraft.client.gui.screens.ConnectScreen/]: Connecting to 194.164.122.72, 25553 [05Nov2024 14:12:54.126] [Netty Client IO #1/INFO] [journeymap/]: Loading JourneyMap Forge Configs [05Nov2024 14:12:58.179] [Netty Client IO #1/INFO] [Puzzles Lib/]: Reloading server config for enchantinginfuser [05Nov2024 14:12:59.279] [Netty Client IO #1/INFO] [de.cadentem.pale_hound.PaleHound/]: Server configuration has been reloaded [05Nov2024 14:12:59.746] [Netty Client IO #1/INFO] [Calio/]: CDRM Initialized with 15 registries [05Nov2024 14:13:00.685] [Netty Client IO #1/INFO] [net.minecraftforge.network.NetworkHooks/]: Connected to a modded server. [05Nov2024 14:13:01.142] [Render thread/INFO] [CheckedThreadLocalRandom/]: Enforcing safe world random access [05Nov2024 14:13:01.328] [Render thread/INFO] [BatchExecutor/]: Started 2 worker threads [05Nov2024 14:13:01.392] [Render thread/INFO] [ChunkBuilder/]: Started 2 worker threads [05Nov2024 14:13:01.556] [Render thread/INFO] [mezz.jei.forge.startup.StartEventObserver/]: JEI StartEventObserver received class net.minecraftforge.client.event.ClientPlayerNetworkEvent$LoggingIn [05Nov2024 14:13:01.556] [Render thread/INFO] [mezz.jei.forge.startup.StartEventObserver/]: JEI StartEventObserver transitioning state from DISABLED to ENABLED [05Nov2024 14:13:01.556] [Render thread/INFO] [voicechat/]: [voicechat] Sending secret request to the server [05Nov2024 14:13:01.559] [Render thread/WARN] [voicechat/]: [voicechat] Failed to open audio channel 'OpenAL Soft on Speakers (High Definition Audio Device)', falling back to default [05Nov2024 14:13:01.559] [Render thread/ERROR] [voicechat/]: [voicechat] Voicechat sound manager ALC error: de.maxhenkel.voicechat.voice.client.SoundManager.canEnumerate[192] Invalid value [05Nov2024 14:13:01.586] [Render thread/INFO] [Sound Physics - General/]: Initializing sound physics for voice chat audio [05Nov2024 14:13:01.586] [Render thread/INFO] [Sound Physics - General/]: Initializing Sound Physics [05Nov2024 14:13:01.586] [Render thread/INFO] [Sound Physics - General/]: EFX Extension recognized [05Nov2024 14:13:01.586] [Render thread/INFO] [Sound Physics - General/]: Max auxiliary sends: 2 [05Nov2024 14:13:01.586] [Render thread/INFO] [Sound Physics - General/]: Aux slot 1 created [05Nov2024 14:13:01.586] [Render thread/INFO] [Sound Physics - General/]: Aux slot 2 created [05Nov2024 14:13:01.586] [Render thread/INFO] [Sound Physics - General/]: Aux slot 3 created [05Nov2024 14:13:01.586] [Render thread/INFO] [Sound Physics - General/]: Aux slot 4 created [05Nov2024 14:13:01.587] [Render thread/INFO] [Sound Physics - General/]: EFX ready [05Nov2024 14:13:01.645] [Render thread/INFO] [Calio/]: CDRM Initialized with 15 registries [05Nov2024 14:13:01.836] [Render thread/INFO] [ChunkBuilder/]: Stopping worker threads [05Nov2024 14:13:01.837] [Render thread/INFO] [ChunkBuilder/]: Started 2 worker threads [05Nov2024 14:13:01.957] [Render thread/INFO] [HammerLib/]: Registered custom glint render buffers. [05Nov2024 14:13:02.117] [Render thread/INFO] [mixin/]: Mixing client.MixinGuiMessageTag from nochatreports.mixins.json into net.minecraft.client.GuiMessageTag [05Nov2024 14:13:02.118] [Render thread/INFO] [net.minecraft.client.gui.components.ChatComponent/]: [CHAT] WARNING: HammerLib has limited some of it's functions due to Rubidium. We recommend using Embeddium instead, as it does causes less issues. [05Nov2024 14:13:02.193] [Render thread/INFO] [configured/]: Unloading synced configs from server [05Nov2024 14:13:02.193] [Render thread/INFO] [mezz.jei.forge.startup.StartEventObserver/]: JEI StartEventObserver received class net.minecraftforge.client.event.ClientPlayerNetworkEvent$LoggingOut [05Nov2024 14:13:02.193] [Render thread/INFO] [mezz.jei.forge.startup.StartEventObserver/]: JEI StartEventObserver transitioning state from ENABLED to DISABLED [05Nov2024 14:13:02.194] [Render thread/INFO] [Framework/]: Unloading synced configs from server [05Nov2024 14:13:02.205] [Render thread/INFO] [voicechat/]: [voicechat] Clearing audio channels [05Nov2024 14:13:02.443] [Render thread/INFO] [ChunkBuilder/]: Stopping worker threads [05Nov2024 14:13:02.448] [Render thread/INFO] [HammerLib/]: Reset 0 configs to their client-side state. Server [05Nov2024 19:10:49.380] [main/INFO] [cpw.mods.modlauncher.Launcher/MODLAUNCHER]: ModLauncher running: args [--launchTarget, forgeserver, --fml.forgeVersion, 43.4.0, --fml.mcVersion, 1.19.2, --fml.forgeGroup, net.minecraftforge, --fml.mcpVersion, 20220805.130853] [05Nov2024 19:10:49.383] [main/INFO] [cpw.mods.modlauncher.Launcher/MODLAUNCHER]: ModLauncher 10.0.8+10.0.8+main.0ef7e830 starting: java version 17.0.11 by Eclipse Adoptium; OS Linux arch amd64 version 6.1.0-22-amd64 [05Nov2024 19:10:50.304] [main/INFO] [mixin/]: SpongePowered MIXIN Subsystem Version=0.8.5 Source=union:/home/container/libraries/org/spongepowered/mixin/0.8.5/mixin-0.8.5.jar%2363!/ Service=ModLauncher Env=SERVER [05Nov2024 19:10:50.723] [main/WARN] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Mod file /home/container/libraries/net/minecraftforge/fmlcore/1.19.2-43.4.0/fmlcore-1.19.2-43.4.0.jar is missing mods.toml file [05Nov2024 19:10:50.723] [main/WARN] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Mod file /home/container/libraries/net/minecraftforge/javafmllanguage/1.19.2-43.4.0/javafmllanguage-1.19.2-43.4.0.jar is missing mods.toml file [05Nov2024 19:10:50.724] [main/WARN] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Mod file /home/container/libraries/net/minecraftforge/lowcodelanguage/1.19.2-43.4.0/lowcodelanguage-1.19.2-43.4.0.jar is missing mods.toml file [05Nov2024 19:10:50.724] [main/WARN] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Mod file /home/container/libraries/net/minecraftforge/mclanguage/1.19.2-43.4.0/mclanguage-1.19.2-43.4.0.jar is missing mods.toml file [05Nov2024 19:10:50.985] [main/WARN] [net.minecraftforge.jarjar.selection.JarSelector/]: Attempted to select two dependency jars from JarJar which have the same identification: Mod File: and Mod File: . Using Mod File: [05Nov2024 19:10:50.985] [main/WARN] [net.minecraftforge.jarjar.selection.JarSelector/]: Attempted to select two dependency jars from JarJar which have the same identification: Mod File: and Mod File: . Using Mod File: [05Nov2024 19:10:50.987] [main/WARN] [net.minecraftforge.jarjar.selection.JarSelector/]: Attempted to select a dependency jar for JarJar which was passed in as source: calio. Using Mod File: /home/container/mods/calio-forge-1.19.2-1.7.0.4.jar [05Nov2024 19:10:50.987] [main/WARN] [net.minecraftforge.jarjar.selection.JarSelector/]: Attempted to select a dependency jar for JarJar which was passed in as source: curios. Using Mod File: /home/container/mods/curios-forge-1.19.2-5.1.6.3.jar [05Nov2024 19:10:50.987] [main/WARN] [net.minecraftforge.jarjar.selection.JarSelector/]: Attempted to select a dependency jar for JarJar which was passed in as source: l2library. Using Mod File: /home/container/mods/l2library-1.10.0.jar [05Nov2024 19:10:50.987] [main/INFO] [net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator/]: Found 21 dependencies adding them to mods collection [05Nov2024 19:10:53.560] [main/INFO] [mixin/]: Compatibility level set to JAVA_17 [05Nov2024 19:10:53.658] [main/ERROR] [mixin/]: Mixin config geckoanimfix.forge.mixins.json does not specify "minVersion" property [05Nov2024 19:10:53.663] [main/ERROR] [mixin/]: Mixin config forge-projectiles-common.mixins.json does not specify "minVersion" property [05Nov2024 19:10:53.663] [main/ERROR] [mixin/]: Mixin config forge-projectiles.mixins.json does not specify "minVersion" property [05Nov2024 19:10:53.700] [main/INFO] [mixin/]: Successfully loaded Mixin Connector [com.sonicether.soundphysics.MixinConnector] [05Nov2024 19:10:53.700] [main/INFO] [mixin/]: Successfully loaded Mixin Connector [shetiphian.core.mixins.MixinConnector] [05Nov2024 19:10:53.701] [main/INFO] [mixin/]: Successfully loaded Mixin Connector [de.erdbeerbaerlp.dcintegration.forge.DCMixinConnector] [05Nov2024 19:10:53.701] [main/INFO] [mixin/]: Successfully loaded Mixin Connector [com.aizistral.nochatreports.MixinConnector] [05Nov2024 19:10:53.702] [main/INFO] [mixin/]: Successfully loaded Mixin Connector [shetiphian.endertanks.mixins.MixinConnector] [05Nov2024 19:10:53.703] [main/INFO] [cpw.mods.modlauncher.LaunchServiceHandler/MODLAUNCHER]: Launching target 'forgeserver' with arguments [] [05Nov2024 19:10:53.712] [main/INFO] [com.abdelaziz.saturn.common.Saturn/]: Loaded Saturn config file with 4 configurable options [05Nov2024 19:10:53.727] [main/INFO] [Rubidium/]: Loaded configuration file for Rubidium: 30 options available, 0 override(s) found [05Nov2024 19:10:53.761] [main/WARN] [ModernFixConfig/]: ModelDataManager bugfixes have been disabled to prevent broken rendering with Rubidium installed. Please migrate to Embeddium. [05Nov2024 19:10:53.763] [main/INFO] [ModernFix/]: Loaded configuration file for ModernFix 5.18.1+mc1.19.2: 87 options available, 1 override(s) found [05Nov2024 19:10:53.764] [main/WARN] [ModernFix/]: Option 'mixin.bugfix.model_data_manager_cme' overriden (by mods [rubidium]) to 'false' [05Nov2024 19:10:53.764] [main/INFO] [ModernFix/]: Applying Nashorn fix [05Nov2024 19:10:53.771] [main/INFO] [ModernFix/]: Applied Forge config corruption patch [05Nov2024 19:10:53.831] [main/WARN] [mixin/]: Reference map 'flib.refmap.json' for flib.mixins.json could not be read. If this is a development environment you can ignore this message [05Nov2024 19:10:53.834] [main/WARN] [mixin/]: Reference map 'nitrogen_internals.refmap.json' for nitrogen_internals.mixins.json could not be read. If this is a development environment you can ignore this message [05Nov2024 19:10:53.849] [main/WARN] [mixin/]: Reference map 'create_questing.refmap.json' for create_questing.mixins.json could not be read. If this is a development environment you can ignore this message [05Nov2024 19:10:53.912] [main/WARN] [mixin/]: Reference map 'FTBQuestsOptimizer.refmap.json' for ftbqoptimizer.mixins.json could not be read. If this is a development environment you can ignore this message [05Nov2024 19:10:53.916] [main/WARN] [mixin/]: Reference map 'betterfarmland-1.19.2-forge-forge-refmap.json' for betterfarmland.mixins.json could not be read. If this is a development environment you can ignore this message [05Nov2024 19:10:53.917] [main/WARN] [mixin/]: Reference map '${refmap_target}refmap.json' for corgilib.forge.mixins.json could not be read. If this is a development environment you can ignore this message [05Nov2024 19:10:53.954] [main/WARN] [mixin/]: Reference map 'ambientsounds.mixins.refmap.json' for ambientsounds.mixins.json could not be read. If this is a development environment you can ignore this message [05Nov2024 19:10:53.964] [main/WARN] [mixin/]: Reference map 'createappliedkinetics.refmap.json' for createappliedkinetics.mixins.json could not be read. If this is a development environment you can ignore this message [05Nov2024 19:10:53.965] [main/WARN] [mixin/]: Reference map 'xlpackets.refmap.json' for xlpackets.mixins.json could not be read. If this is a development environment you can ignore this message [05Nov2024 19:10:53.969] [main/WARN] [mixin/]: Reference map 'Projectiles-forge-refmap.json' for forge-projectiles.mixins.json could not be read. If this is a development environment you can ignore this message [05Nov2024 19:10:53.975] [main/WARN] [mixin/]: Reference map 'mes-forge-refmap.json' for mes-forge.mixins.json could not be read. If this is a development environment you can ignore this message [05Nov2024 19:10:53.976] [main/WARN] [mixin/]: Reference map 'coroutil.refmap.json' for coroutil.mixins.json could not be read. If this is a development environment you can ignore this message [05Nov2024 19:10:53.977] [main/WARN] [mixin/]: Reference map 'mvs-forge-refmap.json' for mvs-forge.mixins.json could not be read. If this is a development environment you can ignore this message [05Nov2024 19:10:53.990] [main/INFO] [BadOptimizations/]: Loading config from /home/container/config/badoptimizations.txt [05Nov2024 19:10:53.990] [main/INFO] [BadOptimizations/]: Config version: 3 [05Nov2024 19:10:53.990] [main/INFO] [BadOptimizations/]: BadOptimizations config dump: [05Nov2024 19:10:53.990] [main/INFO] [BadOptimizations/]: enable_toast_optimizations: true [05Nov2024 19:10:53.990] [main/INFO] [BadOptimizations/]: ignore_mod_incompatibilities: false [05Nov2024 19:10:53.990] [main/INFO] [BadOptimizations/]: lightmap_time_change_needed_for_update: 80 [05Nov2024 19:10:53.990] [main/INFO] [BadOptimizations/]: enable_lightmap_caching: true [05Nov2024 19:10:53.990] [main/INFO] [BadOptimizations/]: enable_particle_manager_optimization: true [05Nov2024 19:10:53.990] [main/INFO] [BadOptimizations/]: enable_entity_renderer_caching: true [05Nov2024 19:10:53.990] [main/INFO] [BadOptimizations/]: log_config: true [05Nov2024 19:10:53.990] [main/INFO] [BadOptimizations/]: enable_remove_redundant_fov_calculations: true [05Nov2024 19:10:53.991] [main/INFO] [BadOptimizations/]: config_version: 3 [05Nov2024 19:10:53.991] [main/INFO] [BadOptimizations/]: enable_sky_angle_caching_in_worldrenderer: true [05Nov2024 19:10:53.991] [main/INFO] [BadOptimizations/]: enable_block_entity_renderer_caching: true [05Nov2024 19:10:53.991] [main/INFO] [BadOptimizations/]: skycolor_time_change_needed_for_update: 3 [05Nov2024 19:10:53.991] [main/INFO] [BadOptimizations/]: enable_entity_flag_caching: true [05Nov2024 19:10:53.991] [main/INFO] [BadOptimizations/]: enable_debug_renderer_disable_if_not_needed: true [05Nov2024 19:10:53.991] [main/INFO] [BadOptimizations/]: enable_sky_color_caching: true [05Nov2024 19:10:53.991] [main/INFO] [BadOptimizations/]: enable_remove_tutorial_if_not_demo: true [05Nov2024 19:10:53.991] [main/INFO] [BadOptimizations/]: show_f3_text: true [05Nov2024 19:10:53.991] [main/INFO] [BadOptimizations/]: Disabled entity_renderer_caching because Twilight Forest is present [05Nov2024 19:10:54.314] [main/WARN] [mixin/]: Error loading class: com/simibubi/create/content/contraptions/components/fan/AirCurrent (java.lang.ClassNotFoundException: com.simibubi.create.content.contraptions.components.fan.AirCurrent) [05Nov2024 19:10:54.859] [main/WARN] [mixin/]: Error loading class: net/minecraft/client/tutorial/PunchTreeTutorialStepInstance (java.lang.ClassNotFoundException: net.minecraft.client.tutorial.PunchTreeTutorialStepInstance) [05Nov2024 19:10:54.859] [main/WARN] [mixin/]: @Mixin target net.minecraft.client.tutorial.PunchTreeTutorialStepInstance was not found survivalistessentials.mixins.json:PunchTreeTutorialStepMixin [05Nov2024 19:10:54.860] [main/WARN] [mixin/]: Error loading class: net/minecraft/client/tutorial/CraftPlanksTutorialStep (java.lang.ClassNotFoundException: net.minecraft.client.tutorial.CraftPlanksTutorialStep) [05Nov2024 19:10:54.860] [main/WARN] [mixin/]: @Mixin target net.minecraft.client.tutorial.CraftPlanksTutorialStep was not found survivalistessentials.mixins.json:CraftPlanksTutorialStepMixin [05Nov2024 19:10:54.923] [main/WARN] [mixin/]: Error loading class: net/minecraft/client/multiplayer/resolver/ServerAddressResolver (java.lang.ClassNotFoundException: net.minecraft.client.multiplayer.resolver.ServerAddressResolver) [05Nov2024 19:10:54.923] [main/WARN] [mixin/]: @Mixin target net.minecraft.client.multiplayer.resolver.ServerAddressResolver was not found fastipping.mixins.json:AddressResolverMixin [05Nov2024 19:10:54.924] [main/WARN] [mixin/]: Error loading class: snownee/jade/addon/forge/ForgeFluidProvider (java.lang.ClassNotFoundException: snownee.jade.addon.forge.ForgeFluidProvider) [05Nov2024 19:10:54.924] [main/WARN] [mixin/]: @Mixin target snownee.jade.addon.forge.ForgeFluidProvider was not found mixins.endertanks.json:ET_HideFluidBars$_Jade_19_0 [05Nov2024 19:10:54.925] [main/WARN] [mixin/]: Error loading class: snownee/jade/addon/universal/FluidStorageProvider (java.lang.ClassNotFoundException: snownee.jade.addon.universal.FluidStorageProvider) [05Nov2024 19:10:54.925] [main/WARN] [mixin/]: @Mixin target snownee.jade.addon.universal.FluidStorageProvider was not found mixins.endertanks.json:ET_HideFluidBars$_Jade_19_1 [05Nov2024 19:10:54.926] [main/WARN] [mixin/]: Error loading class: mcjty/theoneprobe/apiimpl/providers/DefaultProbeInfoProvider (java.lang.ClassNotFoundException: mcjty.theoneprobe.apiimpl.providers.DefaultProbeInfoProvider) [05Nov2024 19:10:54.926] [main/WARN] [mixin/]: @Mixin target mcjty.theoneprobe.apiimpl.providers.DefaultProbeInfoProvider was not found mixins.endertanks.json:ET_HideFluidBars$_TheOneProbe [05Nov2024 19:10:54.926] [main/WARN] [mixin/]: Error loading class: mekanism/common/integration/lookingat/LookingAtUtils (java.lang.ClassNotFoundException: mekanism.common.integration.lookingat.LookingAtUtils) [05Nov2024 19:10:54.926] [main/WARN] [mixin/]: @Mixin target mekanism.common.integration.lookingat.LookingAtUtils was not found mixins.endertanks.json:ET_HideFluidBars$_Mekanism [05Nov2024 19:10:54.931] [main/WARN] [mixin/]: Error loading class: shadows/apotheosis/ench/table/ApothEnchantContainer (java.lang.ClassNotFoundException: shadows.apotheosis.ench.table.ApothEnchantContainer) [05Nov2024 19:10:54.931] [main/WARN] [mixin/]: @Mixin target shadows.apotheosis.ench.table.ApothEnchantContainer was not found origins_classes.mixins.json:common.apotheosis.ApotheosisEnchantmentMenuMixin [05Nov2024 19:10:54.933] [main/WARN] [mixin/]: Error loading class: se/mickelus/tetra/blocks/workbench/WorkbenchTile (java.lang.ClassNotFoundException: se.mickelus.tetra.blocks.workbench.WorkbenchTile) [05Nov2024 19:10:54.933] [main/WARN] [mixin/]: @Mixin target se.mickelus.tetra.blocks.workbench.WorkbenchTile was not found origins_classes.mixins.json:common.tetra.WorkbenchTileMixin [05Nov2024 19:10:54.949] [main/WARN] [mixin/]: Error loading class: net/minecraft/client/renderer/entity/PhantomRenderer (java.lang.ClassNotFoundException: net.minecraft.client.renderer.entity.PhantomRenderer) [05Nov2024 19:10:54.949] [main/WARN] [mixin/]: @Mixin target net.minecraft.client.renderer.entity.PhantomRenderer was not found mixins.deeperdarker.json:PhantomRendererMixin [05Nov2024 19:10:54.993] [main/WARN] [mixin/]: Error loading class: noobanidus/mods/lootr/config/ConfigManager (java.lang.ClassNotFoundException: noobanidus.mods.lootr.config.ConfigManager) [05Nov2024 19:10:55.017] [main/INFO] [memoryleakfix/]: [MemoryLeakFix] Will be applying 2 memory leak fixes! [05Nov2024 19:10:55.017] [main/INFO] [memoryleakfix/]: [MemoryLeakFix] Currently enabled memory leak fixes: [entityMemoriesLeak, biomeTemperatureLeak] [05Nov2024 19:10:55.073] [main/ERROR] [net.minecraftforge.fml.loading.RuntimeDistCleaner/DISTXFORM]: Attempted to load class net/minecraft/client/renderer/texture/TextureAtlas for invalid dist DEDICATED_SERVER [05Nov2024 19:10:55.074] [main/WARN] [mixin/]: Error loading class: net/minecraft/client/renderer/texture/TextureAtlas (java.lang.RuntimeException: Attempted to load class net/minecraft/client/renderer/texture/TextureAtlas for invalid dist DEDICATED_SERVER) [05Nov2024 19:10:55.074] [main/WARN] [mixin/]: @Mixin target net.minecraft.client.renderer.texture.TextureAtlas was not found fusion.mixins.json:modernfix.TextureAtlasMixinModernFix [05Nov2024 19:10:55.142] [main/INFO] [MixinExtras|Service/]: Initializing MixinExtras via com.llamalad7.mixinextras.service.MixinExtrasServiceImpl(version=0.4.1). [05Nov2024 19:10:55.378] [main/INFO] [mixin/]: Mixing server.MixinDedicatedServer from nochatreports.mixins.json into net.minecraft.server.dedicated.DedicatedServer [05Nov2024 19:10:55.451] [main/WARN] [mixin/]: Static binding violation: PRIVATE @Overwrite method m_216202_ in modernfix-forge.mixins.json:perf.tag_id_caching.TagOrElementLocationMixin cannot reduce visibiliy of PUBLIC target method, visibility will be upgraded. [05Nov2024 19:10:55.608] [main/INFO] [net.minecraft.server.Bootstrap/]: ModernFix reached bootstrap stage (7.291 s after launch) [05Nov2024 19:10:55.649] [main/WARN] [mixin/]: @Final field delegatesByName:Ljava/util/Map; in modernfix-forge.mixins.json:perf.forge_registry_alloc.ForgeRegistryMixin should be final [05Nov2024 19:10:55.649] [main/WARN] [mixin/]: @Final field delegatesByValue:Ljava/util/Map; in modernfix-forge.mixins.json:perf.forge_registry_alloc.ForgeRegistryMixin should be final [05Nov2024 19:10:55.697] [main/WARN] [mixin/]: @Inject(@At("INVOKE")) Shift.BY=2 on everycomp-common.mixins.json:LootTableHackMixin::handler$chk000$everyCompat$addSimpleFastDrops exceeds the maximum allowed value: 0. Increase the value of maxShiftBy to suppress this warning. [05Nov2024 19:10:55.918] [main/INFO] [mixin/]: Mixing server.MixinPlayer from nochatreports.mixins.json into net.minecraft.world.entity.player.Player [05Nov2024 19:10:56.806] [main/INFO] [net.minecraft.server.Bootstrap/]: Vanilla bootstrap took 1196 milliseconds [05Nov2024 19:10:57.926] [main/WARN] [net.minecraft.network.syncher.SynchedEntityData/]: defineId called for: class net.minecraft.world.entity.Entity from interface com.stereowalker.survive.needs.IRoastedEntity [05Nov2024 19:10:58.305] [main/WARN] [mixin/]: Static binding violation: PRIVATE @Overwrite method m_47505_ in modernfix-common.mixins.json:perf.remove_biome_temperature_cache.BiomeMixin cannot reduce visibiliy of PUBLIC target method, visibility will be upgraded. [05Nov2024 19:10:59.224] [modloading-worker-0/INFO] [dev.wuffs.bcc.BCC/]: Better Compatibility Checker loading [05Nov2024 19:10:59.228] [modloading-worker-0/INFO] [io.github.apace100.origins.Origins/]: Origins 1.19.2-1.7.1.7 is initializing. Have fun! [05Nov2024 19:10:59.232] [modloading-worker-0/INFO] [hordes/]: Trying to load common config [05Nov2024 19:10:59.234] [modloading-worker-0/WARN] [mixin/]: Static binding violation: PRIVATE @Overwrite method m_215924_ in modernfix-forge.mixins.json:perf.tag_id_caching.TagEntryMixin cannot reduce visibiliy of PUBLIC target method, visibility will be upgraded. [05Nov2024 19:10:59.239] [modloading-worker-0/INFO] [hordes/]: Trying to load client config [05Nov2024 19:10:59.243] [modloading-worker-0/INFO] [com.aetherteam.cumulus.Cumulus/]: Disabling Cumulus as it is on server. [05Nov2024 19:10:59.251] [modloading-worker-0/INFO] [mixin/]: Mixing server.MixinPlayerList from nochatreports.mixins.json into net.minecraft.server.players.PlayerList [05Nov2024 19:10:59.267] [modloading-worker-0/INFO] [hordes/]: Config files are up to date, skipping data/asset generation [05Nov2024 19:10:59.268] [modloading-worker-0/INFO] [PluginManager/]: Scanning classes for industrialforegoing [05Nov2024 19:10:59.272] [modloading-worker-0/INFO] [PluginManager/]: Found FeaturePluginInstance for class CuriosPlugin for plugin curios [05Nov2024 19:10:59.273] [modloading-worker-0/INFO] [PluginManager/]: Constructed class CuriosPlugin for plugin curios for mod industrialforegoing [05Nov2024 19:10:59.274] [modloading-worker-0/INFO] [dev.limonblaze.oriacs.common.Oriacs/]: Origins: Accessibilities 1.1.0 has initialized. Ready to make your Origins life easier! [05Nov2024 19:10:59.274] [modloading-worker-0/INFO] [PluginManager/]: Executing phase CONSTRUCTION for plugin class CuriosPlugin [05Nov2024 19:10:59.289] [modloading-worker-0/INFO] [me.wesley1808.servercore.common.ServerCore/]: [ServerCore] Loaded V1.3.6+1.19.2! [05Nov2024 19:10:59.293] [modloading-worker-0/INFO] [PluginManager/]: Executing phase PRE_INIT for plugin class CuriosPlugin [05Nov2024 19:10:59.339] [modloading-worker-0/INFO] [Discord Integration/]: Version is 3.0.5 [05Nov2024 19:10:59.468] [modloading-worker-0/WARN] [fallingleaves/]: Falling Leaves is a client only mod and should be removed from the mods list [05Nov2024 19:10:59.523] [modloading-worker-0/INFO] [Puzzles Lib/]: Constructing common components for mod enchantinginfuser [05Nov2024 19:10:59.561] [modloading-worker-0/INFO] [net.minecraftforge.common.ForgeMod/FORGEMOD]: Forge mod loading, version 43.4.0, for MC 1.19.2 with MCP 20220805.130853 [05Nov2024 19:10:59.561] [modloading-worker-0/INFO] [net.minecraftforge.common.MinecraftForge/FORGE]: MinecraftForge v43.4.0 Initialized [05Nov2024 19:10:59.623] [modloading-worker-0/INFO] [com.aizistral.nochatreports.NoChatReports/]: KONNICHIWA ZA WARUDO! [05Nov2024 19:10:59.623] [modloading-worker-0/INFO] [com.aizistral.nochatreports.NoChatReports/]: Default JVM text encoding is: UTF-8 [05Nov2024 19:10:59.628] [modloading-worker-0/INFO] [betterfarmland/]: Loading BetterFarmland version 1.0.3 [05Nov2024 19:10:59.637] [modloading-worker-0/WARN] [mixin/]: Method overwrite conflict for extractPools in enhancedcelestials.mixins.json:MixinLootTableManager, previously written by potionstudios.byg.mixin.common.world.level.storage.loot.MixinLootTableManager. Skipping method. [05Nov2024 19:10:59.649] [modloading-worker-0/INFO] [com.aizistral.nochatreports.NoChatReports/]: Reading config file NoChatReports/NCR-Common.json... [05Nov2024 19:10:59.650] [modloading-worker-0/INFO] [com.aizistral.nochatreports.NoChatReports/]: Writing config file NoChatReports/NCR-Common.json... [05Nov2024 19:10:59.653] [modloading-worker-0/INFO] [pcf/]: Initializing Proxy Compatible Forge on Minecraft 1.19.2 (Forge 43.4.0) [05Nov2024 19:10:59.655] [modloading-worker-0/INFO] [betterfarmland/]: The config loaded in 1 cycles. [05Nov2024 19:10:59.656] [modloading-worker-0/INFO] [Calio/]: Calio 1.19.2-1.7.0.4 initializing... [05Nov2024 19:10:59.689] [modloading-worker-0/INFO] [Puzzles Lib/]: Constructing common components for mod puzzleslib [05Nov2024 19:10:59.785] [modloading-worker-0/INFO] [unionlib/]: Starting up: unionlib [05Nov2024 19:10:59.799] [modloading-worker-0/INFO] [mixin/]: Mixing server.MixinServerGamePacketListenerImpl from nochatreports.mixins.json into net.minecraft.server.network.ServerGamePacketListenerImpl [05Nov2024 19:10:59.835] [modloading-worker-0/INFO] [PluginManager/]: Executing phase INIT for plugin class CuriosPlugin [05Nov2024 19:10:59.850] [modloading-worker-0/INFO] [Bookshelf/]: Fixing MC-151457. Crafting remainder for minecraft:pufferfish_bucket is now minecraft:bucket. [05Nov2024 19:10:59.850] [modloading-worker-0/INFO] [Bookshelf/]: Fixing MC-151457. Crafting remainder for minecraft:salmon_bucket is now minecraft:bucket. [05Nov2024 19:10:59.850] [modloading-worker-0/INFO] [de.keksuccino.konkrete.Konkrete/]: [KONKRETE] Successfully initialized! [05Nov2024 19:10:59.851] [modloading-worker-0/INFO] [de.keksuccino.konkrete.Konkrete/]: [KONKRETE] Server-side libs ready to use! [05Nov2024 19:10:59.851] [modloading-worker-0/INFO] [Bookshelf/]: Fixing MC-151457. Crafting remainder for minecraft:cod_bucket is now minecraft:bucket. [05Nov2024 19:10:59.851] [modloading-worker-0/INFO] [Bookshelf/]: Fixing MC-151457. Crafting remainder for minecraft:tropical_fish_bucket is now minecraft:bucket. [05Nov2024 19:10:59.851] [modloading-worker-0/INFO] [Bookshelf/]: Fixing MC-151457. Crafting remainder for minecraft:axolotl_bucket is now minecraft:bucket. [05Nov2024 19:10:59.851] [modloading-worker-0/INFO] [Bookshelf/]: Fixing MC-151457. Crafting remainder for minecraft:powder_snow_bucket is now minecraft:bucket. [05Nov2024 19:10:59.851] [modloading-worker-0/INFO] [Bookshelf/]: Fixing MC-151457. Crafting remainder for minecraft:tadpole_bucket is now minecraft:bucket. [05Nov2024 19:10:59.874] [modloading-worker-0/INFO] [me.fallenbreath.fastipping.FastIpPingMod/]: ping & connect fast! [05Nov2024 19:10:59.938] [modloading-worker-0/INFO] [PluginManager/]: Executing phase POST_INIT for plugin class CuriosPlugin [05Nov2024 19:11:00.045] [modloading-worker-0/INFO] [Collective/]: Loading Collective version 7.64. [05Nov2024 19:11:00.069] [modloading-worker-0/INFO] [HammerLib/]: Registered charge handler for type org.zeith.hammerlib.util.charging.fluid.FluidCharge - org.zeith.hammerlib.util.charging.impl.FluidChargeHandler@71467d0 [05Nov2024 19:11:00.071] [modloading-worker-0/INFO] [HammerLib/]: Registered charge handler for type org.zeith.hammerlib.util.charging.fe.FECharge - org.zeith.hammerlib.util.charging.impl.FEChargeHandler@7bbd3c23 [05Nov2024 19:11:00.082] [modloading-worker-0/INFO] [dev.limonblaze.originsclasses.OriginsClasses/]: Origins:Classes 1.2.1 has initialized. Time for work! [05Nov2024 19:11:00.090] [modloading-worker-0/INFO] [HammerLib/]: Registered inventory lister org.zeith.hammerlib.util.charging.impl.VanillaPlayerInvLister [05Nov2024 19:11:00.102] [modloading-worker-0/INFO] [io.github.apace100.apoli.Apoli/]: Apoli 1.19.2-2.6.1.7 has initialized. Ready to power up your game! [05Nov2024 19:11:00.112] [modloading-worker-0/INFO] [thedarkcolour.kotlinforforge.test.KotlinForForge/]: Kotlin For Forge Enabled! [05Nov2024 19:11:00.143] [modloading-worker-0/INFO] [UnionLib Registry/]: Registering Attributes in class com.stereowalker.unionlib.world.entity.ai.UAttributes [05Nov2024 19:11:00.144] [modloading-worker-0/INFO] [HammerLib/]: Hooked Lorg/zeith/hammerlib/core/test/machine/TileTestMachine; from hammerlib to register it's stuff. [05Nov2024 19:11:00.145] [modloading-worker-0/INFO] [HammerLib/]: Hooked Lorg/zeith/hammerlib/core/test/machine/RecipeTestMachine; from hammerlib to register it's stuff. [05Nov2024 19:11:00.145] [modloading-worker-0/INFO] [HammerLib/]: Hooked Lorg/zeith/hammerlib/core/test/machine/BlockTestMachine; from hammerlib to register it's stuff. [05Nov2024 19:11:00.145] [modloading-worker-0/INFO] [HammerLib/]: Hooked Lorg/zeith/hammerlib/core/items/ItemWrench; from hammerlib to register it's stuff. [05Nov2024 19:11:00.145] [modloading-worker-0/INFO] [HammerLib/]: Hooked Lorg/zeith/hammerlib/core/init/SourceTypesHL; from hammerlib to register it's stuff. [05Nov2024 19:11:00.145] [modloading-worker-0/INFO] [HammerLib/]: Hooked Lorg/zeith/hammerlib/core/init/LevelActionTypesHL; from hammerlib to register it's stuff. [05Nov2024 19:11:00.145] [modloading-worker-0/INFO] [HammerLib/]: Hooked Lorg/zeith/hammerlib/api/forge/ContainerAPI; from hammerlib to register it's stuff. [05Nov2024 19:11:00.145] [modloading-worker-0/INFO] [dev.architectury.networking.forge.NetworkManagerImpl/]: Registering C2S receiver with id architectury:sync_ids [05Nov2024 19:11:00.145] [modloading-worker-0/INFO] [HammerLib/]: Hooked Lorg/zeith/squarry/items/ItemSilkUpgrade; from squarry to register it's stuff. [05Nov2024 19:11:00.145] [modloading-worker-0/INFO] [HammerLib/]: Hooked Lorg/zeith/squarry/inventory/ContainerFilter; from squarry to register it's stuff. [05Nov2024 19:11:00.145] [modloading-worker-0/INFO] [HammerLib/]: Hooked Lorg/zeith/squarry/init/ItemsSQ; from squarry to register it's stuff. [05Nov2024 19:11:00.145] [modloading-worker-0/INFO] [HammerLib/]: Hooked Lorg/zeith/squarry/blocks/entity/TilePoweredQuarry; from squarry to register it's stuff. [05Nov2024 19:11:00.145] [modloading-worker-0/INFO] [HammerLib/]: Hooked Lorg/zeith/squarry/blocks/entity/TileFuelQuarry; from squarry to register it's stuff. [05Nov2024 19:11:00.145] [modloading-worker-0/INFO] [HammerLib/]: Hooked Lorg/zeith/squarry/blocks/BlockPoweredQuarry; from squarry to register it's stuff. [05Nov2024 19:11:00.145] [modloading-worker-0/INFO] [HammerLib/]: Hooked Lorg/zeith/squarry/blocks/BlockFuelQuarry; from squarry to register it's stuff. [05Nov2024 19:11:00.146] [modloading-worker-0/INFO] [UnionLib Registry/]: Registering Items in class com.stereowalker.unionlib.world.item.UItems [05Nov2024 19:11:00.146] [modloading-worker-0/INFO] [dev.architectury.networking.forge.NetworkManagerImpl/]: Registering C2S receiver with id ftblibrary:edit_nbt_response [05Nov2024 19:11:00.150] [modloading-worker-0/INFO] [UnionLib Registry/]: Registering MenuTypes in class com.stereowalker.unionlib.world.inventory.UMenuType [05Nov2024 19:11:00.151] [modloading-worker-0/INFO] [UnionLib Registry/]: Registering RecipeSerializers in class com.stereowalker.unionlib.world.item.crafting.URecipeSerializer [05Nov2024 19:11:00.155] [modloading-worker-0/INFO] [dev.architectury.networking.forge.NetworkManagerImpl/]: Registering C2S receiver with id ftbteams:open_gui [05Nov2024 19:11:00.157] [modloading-worker-0/INFO] [dev.architectury.networking.forge.NetworkManagerImpl/]: Registering C2S receiver with id ftbteams:update_settings [05Nov2024 19:11:00.159] [modloading-worker-0/INFO] [UnionLib Registry/]: Registering Blocks in class com.stereowalker.survive.world.level.block.SBlocks [05Nov2024 19:11:00.160] [modloading-worker-0/INFO] [dev.architectury.networking.forge.NetworkManagerImpl/]: Registering C2S receiver with id ftbteams:send_message [05Nov2024 19:11:00.163] [modloading-worker-0/INFO] [dev.architectury.networking.forge.NetworkManagerImpl/]: Registering C2S receiver with id ftbteams:create_party [05Nov2024 19:11:00.164] [modloading-worker-0/INFO] [UnionLib Registry/]: Registering Fluids in class com.stereowalker.survive.world.level.material.SFluids [05Nov2024 19:11:00.165] [modloading-worker-0/INFO] [dev.architectury.networking.forge.NetworkManagerImpl/]: Registering C2S receiver with id ftbteams:player_gui_operation [05Nov2024 19:11:00.168] [modloading-worker-0/INFO] [UnionLib Registry/]: Registering Items in class com.stereowalker.survive.world.item.SItems [05Nov2024 19:11:00.176] [modloading-worker-0/INFO] [UnionLib Registry/]: Registering Items in class com.stereowalker.survive.world.item.HygieneItems [05Nov2024 19:11:00.177] [modloading-worker-0/INFO] [KubeJS/]: Looking for KubeJS plugins... [05Nov2024 19:11:00.180] [modloading-worker-0/INFO] [UnionLib Registry/]: Registering RecipeSerializers in class com.stereowalker.survive.world.item.crafting.SRecipeSerializer [05Nov2024 19:11:00.182] [modloading-worker-0/INFO] [UnionLib Registry/]: Registering Attributes in class com.stereowalker.survive.world.entity.ai.attributes.SAttributes [05Nov2024 19:11:00.183] [modloading-worker-0/INFO] [UnionLib Registry/]: Registering MobEffects in class com.stereowalker.survive.world.effect.SMobEffects [05Nov2024 19:11:00.188] [modloading-worker-0/INFO] [unionlib/]: Starting up: survive [05Nov2024 19:11:00.197] [modloading-worker-0/INFO] [KubeJS/]: Found plugin source kubejs [05Nov2024 19:11:00.200] [modloading-worker-0/INFO] [FTB Library/]: Setting game stages provider implementation to: KubeJS Stages [05Nov2024 19:11:00.201] [modloading-worker-0/INFO] [FTB XMod Compat/]: Chose [KubeJS Stages] as the active game stages implementation [05Nov2024 19:11:00.203] [modloading-worker-0/INFO] [FTB XMod Compat/]: Chose [FALLBACK] as the active permissions implementation [05Nov2024 19:11:00.205] [modloading-worker-0/INFO] [FTB XMod Compat/]: [FTB Quests] recipe helper provider is [JEI] [05Nov2024 19:11:00.208] [modloading-worker-0/INFO] [KubeJS/]: Loaded common.properties [05Nov2024 19:11:00.208] [modloading-worker-0/INFO] [KubeJS/]: Loaded dev.properties [05Nov2024 19:11:00.208] [modloading-worker-0/WARN] [KubeJS/]: Plugin dev.latvian.mods.kubejs.forge.BuiltinKubeJSForgeClientPlugin does not load on server side, skipping [05Nov2024 19:11:00.209] [modloading-worker-0/WARN] [KubeJS/]: Plugin dev.latvian.mods.kubejs.integration.forge.gamestages.GameStagesIntegration does not have required mod gamestages loaded, skipping [05Nov2024 19:11:00.209] [modloading-worker-0/INFO] [KubeJS/]: Found plugin source ftbxmodcompat [05Nov2024 19:11:00.210] [modloading-worker-0/WARN] [net.minecraftforge.common.ForgeConfigSpec/CORE]: Configuration file /home/container/config/Survive Configs/stamina-server.toml is not correct. Correcting [05Nov2024 19:11:00.212] [modloading-worker-0/WARN] [net.minecraftforge.common.ForgeConfigSpec/CORE]: Incorrect key Ideal Amount Of Sleep was corrected from 6000 to its default, 6000. [05Nov2024 19:11:00.214] [modloading-worker-0/WARN] [KubeJS/]: Plugin dev.ftb.mods.ftbxmodcompat.ftbchunks.kubejs.FTBChunksKubeJSPlugin does not have required mod ftbchunks loaded, skipping [05Nov2024 19:11:00.234] [modloading-worker-0/INFO] [HammerLib/]: Injecting setup into org.zeith.hammerlib.net.Network [05Nov2024 19:11:00.237] [modloading-worker-0/ERROR] [net.minecraftforge.eventbus.EventSubclassTransformer/EVENTBUS]: Could not find parent net/minecraft/client/renderer/entity/layers/RenderLayer for class com/obscuria/obscureapi/client/renderer/PatreonLayer in classloader cpw.mods.modlauncher.TransformingClassLoader@f4f843f on thread Thread[modloading-worker-0,5,main] [05Nov2024 19:11:00.237] [modloading-worker-0/ERROR] [net.minecraftforge.eventbus.EventSubclassTransformer/EVENTBUS]: An error occurred building event handler java.lang.ClassNotFoundException: net.minecraft.client.renderer.entity.layers.RenderLayer at cpw.mods.cl.ModuleClassLoader.loadClass(ModuleClassLoader.java:141) ~[securejarhandler-2.1.4.jar:?] at java.lang.ClassLoader.loadClass(ClassLoader.java:525) ~[?:?] at net.minecraftforge.eventbus.EventSubclassTransformer.buildEvents(EventSubclassTransformer.java:92) ~[eventbus-6.0.3.jar%2351!/:?] at net.minecraftforge.eventbus.EventSubclassTransformer.transform(EventSubclassTransformer.java:44) ~[eventbus-6.0.3.jar%2351!/:?] at net.minecraftforge.eventbus.EventBusEngine.processClass(EventBusEngine.java:26) ~[eventbus-6.0.3.jar%2351!/:?] at net.minecraftforge.eventbus.service.ModLauncherService.processClassWithFlags(ModLauncherService.java:32) ~[eventbus-6.0.3.jar%2351!/:6.0.3+6.0.3+master.039e4ea9] at cpw.mods.modlauncher.LaunchPluginHandler.offerClassNodeToPlugins(LaunchPluginHandler.java:88) ~[modlauncher-10.0.8.jar%2354!/:?] at cpw.mods.modlauncher.ClassTransformer.transform(ClassTransformer.java:120) ~[modlauncher-10.0.8.jar%2354!/:?] at cpw.mods.modlauncher.TransformingClassLoader.maybeTransformClassBytes(TransformingClassLoader.java:50) ~[modlauncher-10.0.8.jar%2354!/:?] at cpw.mods.cl.ModuleClassLoader.readerToClass(ModuleClassLoader.java:113) ~[securejarhandler-2.1.4.jar:?] at cpw.mods.cl.ModuleClassLoader.lambda$findClass$15(ModuleClassLoader.java:219) ~[securejarhandler-2.1.4.jar:?] at cpw.mods.cl.ModuleClassLoader.loadFromModule(ModuleClassLoader.java:229) ~[securejarhandler-2.1.4.jar:?] at cpw.mods.cl.ModuleClassLoader.findClass(ModuleClassLoader.java:219) ~[securejarhandler-2.1.4.jar:?] at cpw.mods.cl.ModuleClassLoader.loadClass(ModuleClassLoader.java:135) ~[securejarhandler-2.1.4.jar:?] at java.lang.ClassLoader.loadClass(ClassLoader.java:525) ~[?:?] at java.lang.ClassLoader.defineClass0(Native Method) ~[?:?] at java.lang.System$2.defineClass(System.java:2311) ~[?:?] at java.lang.invoke.MethodHandles$Lookup$ClassDefiner.defineClass(MethodHandles.java:2439) ~[?:?] at java.lang.invoke.MethodHandles$Lookup$ClassDefiner.defineClassAsLookup(MethodHandles.java:2420) ~[?:?] at java.lang.invoke.MethodHandles$Lookup.defineHiddenClass(MethodHandles.java:2127) ~[?:?] at java.lang.invoke.InnerClassLambdaMetafactory.generateInnerClass(InnerClassLambdaMetafactory.java:407) ~[?:?] at java.lang.invoke.InnerClassLambdaMetafactory.spinInnerClass(InnerClassLambdaMetafactory.java:315) ~[?:?] at java.lang.invoke.InnerClassLambdaMetafactory.buildCallSite(InnerClassLambdaMetafactory.java:228) ~[?:?] at java.lang.invoke.LambdaMetafactory.metafactory(LambdaMetafactory.java:341) ~[?:?] at java.lang.invoke.BootstrapMethodInvoker.invoke(BootstrapMethodInvoker.java:134) ~[?:?] at java.lang.invoke.CallSite.makeSite(CallSite.java:315) ~[?:?] at java.lang.invoke.MethodHandleNatives.linkCallSiteImpl(MethodHandleNatives.java:281) ~[?:?] at java.lang.invoke.MethodHandleNatives.linkCallSite(MethodHandleNatives.java:271) ~[?:?] at com.obscuria.obscureapi.client.renderer.PatreonLayer$Mode.<clinit>(PatreonLayer.java:55) ~[obscure_api-15.jar%23510!/:15] at com.obscuria.obscureapi.ObscureAPIConfig$Client.<clinit>(ObscureAPIConfig.java:26) ~[obscure_api-15.jar%23510!/:15] at com.obscuria.obscureapi.ObscureAPIConfig.register(ObscureAPIConfig.java:42) ~[obscure_api-15.jar%23510!/:15] at com.obscuria.obscureapi.ObscureAPI.<init>(ObscureAPI.java:68) ~[obscure_api-15.jar%23510!/:15] at jdk.internal.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method) ~[?:?] at jdk.internal.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:77) ~[?:?] at jdk.internal.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45) ~[?:?] at java.lang.reflect.Constructor.newInstanceWithCaller(Constructor.java:499) ~[?:?] at java.lang.reflect.Constructor.newInstance(Constructor.java:480) ~[?:?] at net.minecraftforge.fml.javafmlmod.FMLModContainer.constructMod(FMLModContainer.java:70) ~[javafmllanguage-1.19.2-43.4.0.jar%23599!/:?] at net.minecraftforge.fml.ModContainer.lambda$buildTransitionHandler$4(ModContainer.java:122) ~[fmlcore-1.19.2-43.4.0.jar%23598!/:?] at java.util.concurrent.CompletableFuture$AsyncRun.run(CompletableFuture.java:1804) [?:?] at java.util.concurrent.CompletableFuture$AsyncRun.exec(CompletableFuture.java:1796) [?:?] at java.util.concurrent.ForkJoinTask.doExec(ForkJoinTask.java:373) [?:?] at java.util.concurrent.ForkJoinPool$WorkQueue.topLevelExec(ForkJoinPool.java:1182) [?:?] at java.util.concurrent.ForkJoinPool.scan(ForkJoinPool.java:1655) [?:?] at java.util.concurrent.ForkJoinPool.runWorker(ForkJoinPool.java:1622) [?:?] at java.util.concurrent.ForkJoinWorkerThread.run(ForkJoinWorkerThread.java:165) [?:?] [05Nov2024 19:11:00.241] [modloading-worker-0/ERROR] [net.minecraftforge.fml.loading.RuntimeDistCleaner/DISTXFORM]: Attempted to load class com/obscuria/obscureapi/client/renderer/PatreonLayer for invalid dist DEDICATED_SERVER [05Nov2024 19:11:00.242] [modloading-worker-0/INFO] [KubeJS/]: Found plugin source modonomicon [05Nov2024 19:11:00.280] [modloading-worker-0/INFO] [dev.architectury.networking.forge.NetworkManagerImpl/]: Registering C2S receiver with id itemfilters:main/14e7fa1454283aec8ae811ef844ada28 [05Nov2024 19:11:00.282] [modloading-worker-0/INFO] [dev.architectury.networking.forge.NetworkManagerImpl/]: Registering C2S receiver with id itemfilters:main/8f6a899247753217b9d86ab427a2b279 [05Nov2024 19:11:00.338] [modloading-worker-0/INFO] [dev.architectury.networking.forge.NetworkManagerImpl/]: Registering C2S receiver with id ftbquests:submit_task [05Nov2024 19:11:00.340] [modloading-worker-0/INFO] [dev.architectury.networking.forge.NetworkManagerImpl/]: Registering C2S receiver with id ftbquests:claim_reward [05Nov2024 19:11:00.352] [modloading-worker-0/INFO] [dev.architectury.networking.forge.NetworkManagerImpl/]: Registering C2S receiver with id ftbquests:get_emergency_items [05Nov2024 19:11:00.353] [modloading-worker-0/INFO] [KubeJS/]: Done in 175.7 ms [05Nov2024 19:11:00.360] [modloading-worker-0/INFO] [dev.architectury.networking.forge.NetworkManagerImpl/]: Registering C2S receiver with id ftbquests:claim_all_rewards [05Nov2024 19:11:00.375] [modloading-worker-0/INFO] [dev.architectury.networking.forge.NetworkManagerImpl/]: Registering C2S receiver with id ftbquests:claim_choice_reward [05Nov2024 19:11:00.388] [modloading-worker-0/INFO] [dev.architectury.networking.forge.NetworkManagerImpl/]: Registering C2S receiver with id ftbquests:toggle_pinned [05Nov2024 19:11:00.398] [modloading-worker-0/INFO] [dev.architectury.networking.forge.NetworkManagerImpl/]: Registering C2S receiver with id ftbquests:toggle_chapter_pinned [05Nov2024 19:11:00.406] [modloading-worker-0/INFO] [dev.architectury.networking.forge.NetworkManagerImpl/]: Registering C2S receiver with id ftbquests:toggle_editing_mode [05Nov2024 19:11:00.407] [modloading-worker-0/INFO] [dev.architectury.networking.forge.NetworkManagerImpl/]: Registering C2S receiver with id ftbquests:force_save [05Nov2024 19:11:00.414] [modloading-worker-0/INFO] [dev.architectury.networking.forge.NetworkManagerImpl/]: Registering C2S receiver with id ftbquests:set_custom_image [05Nov2024 19:11:00.431] [modloading-worker-0/INFO] [dev.architectury.networking.forge.NetworkManagerImpl/]: Registering C2S receiver with id ftbquests:task_screen_config_resp [05Nov2024 19:11:00.445] [modloading-worker-0/INFO] [dev.architectury.networking.forge.NetworkManagerImpl/]: Registering C2S receiver with id ftbquests:change_progress [05Nov2024 19:11:00.459] [modloading-worker-0/INFO] [dev.architectury.networking.forge.NetworkManagerImpl/]: Registering C2S receiver with id ftbquests:create_object [05Nov2024 19:11:00.462] [modloading-worker-0/INFO] [dev.architectury.networking.forge.NetworkManagerImpl/]: Registering C2S receiver with id ftbquests:create_task_at [05Nov2024 19:11:00.463] [modloading-worker-0/INFO] [dev.architectury.networking.forge.NetworkManagerImpl/]: Registering C2S receiver with id ftbquests:delete_object [05Nov2024 19:11:00.471] [modloading-worker-0/INFO] [dev.architectury.networking.forge.NetworkManagerImpl/]: Registering C2S receiver with id ftbquests:edit_object [05Nov2024 19:11:00.474] [modloading-worker-0/INFO] [dev.architectury.networking.forge.NetworkManagerImpl/]: Registering C2S receiver with id ftbquests:move_chapter [05Nov2024 19:11:00.476] [modloading-worker-0/INFO] [dev.architectury.networking.forge.NetworkManagerImpl/]: Registering C2S receiver with id ftbquests:move_quest [05Nov2024 19:11:00.477] [modloading-worker-0/INFO] [PluginManager/]: Scanning classes for titanium [05Nov2024 19:11:00.492] [modloading-worker-0/INFO] [dev.architectury.networking.forge.NetworkManagerImpl/]: Registering C2S receiver with id ftbquests:change_chapter_group [05Nov2024 19:11:00.495] [modloading-worker-0/INFO] [dev.architectury.networking.forge.NetworkManagerImpl/]: Registering C2S receiver with id ftbquests:move_chapter_group [05Nov2024 19:11:00.499] [modloading-worker-0/INFO] [dev.architectury.networking.forge.NetworkManagerImpl/]: Registering C2S receiver with id ftbquests:copy_quest [05Nov2024 19:11:00.504] [modloading-worker-0/INFO] [dev.architectury.networking.forge.NetworkManagerImpl/]: Registering C2S receiver with id ftbquests:copy_chapter_image [05Nov2024 19:11:00.510] [modloading-worker-0/INFO] [dev.architectury.networking.forge.NetworkManagerImpl/]: Registering C2S receiver with id ftbquests:sync_structures_request [05Nov2024 19:11:00.582] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.experimental.module.VariantSelectorModule [05Nov2024 19:11:00.585] [modloading-worker-0/INFO] [coroutil/]: forge loader environment detected [05Nov2024 19:11:00.603] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.experimental.module.NarratorReadoutModule [05Nov2024 19:11:00.603] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.experimental.module.ClimateControlRemoverModule [05Nov2024 19:11:00.604] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.experimental.module.EnchantmentsBegoneModule [05Nov2024 19:11:00.620] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.experimental.module.GameNerfsModule [05Nov2024 19:11:00.621] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.experimental.module.SpawnerReplacerModule [05Nov2024 19:11:00.622] [modloading-worker-0/INFO] [FTB XMod Compat/]: FTB Quests: Enabled KubeJS integration [05Nov2024 19:11:00.634] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.experimental.module.AdjustableChatModule [05Nov2024 19:11:00.634] [modloading-worker-0/INFO] [me.treyruffy.betterf3.BetterF3Forge/]: [BetterF3] Starting... [05Nov2024 19:11:00.635] [modloading-worker-0/WARN] [me.treyruffy.betterf3.BetterF3Forge/]: [BetterF3] Not supported on dedicated server! [05Nov2024 19:11:00.636] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.experimental.module.VillagerRerollingReworkModule [05Nov2024 19:11:00.642] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.experimental.module.OverlayShaderModule [05Nov2024 19:11:00.642] [modloading-worker-0/ERROR] [net.minecraft.Util/]: Registry 'enhancedcelestials:lunar/event' was empty after loading [05Nov2024 19:11:00.642] [modloading-worker-0/ERROR] [net.minecraft.Util/]: Registry 'enhancedcelestials:lunar/dimension_settings' was empty after loading [05Nov2024 19:11:00.643] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.experimental.module.EnchantmentPredicatesModule [05Nov2024 19:11:00.662] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.building.module.VariantLaddersModule [05Nov2024 19:11:00.665] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.building.module.VariantBookshelvesModule [05Nov2024 19:11:00.671] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.building.module.BambooBackportModule [05Nov2024 19:11:00.673] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.building.module.CompressedBlocksModule [05Nov2024 19:11:00.690] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.building.module.MorePottedPlantsModule [05Nov2024 19:11:00.691] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.building.module.DuskboundBlocksModule [05Nov2024 19:11:00.692] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.building.module.WoodenPostsModule [05Nov2024 19:11:00.696] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.building.module.ThatchModule [05Nov2024 19:11:00.736] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.building.module.MoreStoneVariantsModule [05Nov2024 19:11:00.737] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.building.module.ShearVinesModule [05Nov2024 19:11:00.740] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.building.module.NetherBrickFenceGateModule [05Nov2024 19:11:00.740] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.building.module.GoldBarsModule [05Nov2024 19:11:00.742] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.building.module.RopeModule [05Nov2024 19:11:00.747] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.building.module.CelebratoryLampsModule [05Nov2024 19:11:00.748] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.building.module.SoulSandstoneModule [05Nov2024 19:11:00.753] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.building.module.VariantChestsModule [05Nov2024 19:11:00.760] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.building.module.LeafCarpetModule [05Nov2024 19:11:00.765] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.building.module.FramedGlassModule [05Nov2024 19:11:00.765] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.building.module.VerticalPlanksModule [05Nov2024 19:11:00.766] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.building.module.VariantFurnacesModule [05Nov2024 19:11:00.769] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.building.module.HedgesModule [05Nov2024 19:11:00.769] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.building.module.HollowLogsModule [05Nov2024 19:11:00.770] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.building.module.MidoriModule [05Nov2024 19:11:00.771] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.building.module.RainbowLampsModule [05Nov2024 19:11:00.773] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.building.module.VerticalSlabsModule [05Nov2024 19:11:00.778] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.building.module.ShinglesModule [05Nov2024 19:11:00.780] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.building.module.SturdyStoneModule [05Nov2024 19:11:00.782] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.building.module.StoolsModule [05Nov2024 19:11:00.782] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.building.module.RawMetalBricksModule [05Nov2024 19:11:00.783] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.building.module.MoreMudBlocksModule [05Nov2024 19:11:00.784] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.building.module.GrateModule [05Nov2024 19:11:00.786] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.building.module.JapanesePaletteModule [05Nov2024 19:11:00.787] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.building.module.MoreBrickTypesModule [05Nov2024 19:11:00.789] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.building.module.GlassItemFrameModule [05Nov2024 19:11:00.792] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.building.module.IndustrialPaletteModule [05Nov2024 19:11:00.794] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.world.module.NetherObsidianSpikesModule [05Nov2024 19:11:00.795] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.world.module.PermafrostModule [05Nov2024 19:11:00.796] [modloading-worker-0/INFO] [Rhino Script Remapper/]: Loading Rhino Minecraft remapper... [05Nov2024 19:11:00.797] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.world.module.FairyRingsModule [05Nov2024 19:11:00.798] [modloading-worker-0/INFO] [dev.latvian.mods.rhino.mod.util.RhinoProperties/]: Rhino properties loaded. [05Nov2024 19:11:00.798] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.world.module.BigStoneClustersModule [05Nov2024 19:11:00.800] [modloading-worker-0/INFO] [Rhino Script Remapper/]: Loading mappings for 1.19.2 [05Nov2024 19:11:00.807] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.world.module.SpiralSpiresModule [05Nov2024 19:11:00.816] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.world.module.AncientWoodModule [05Nov2024 19:11:00.819] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.world.module.NewStoneTypesModule [05Nov2024 19:11:00.820] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.world.module.BlossomTreesModule [05Nov2024 19:11:00.822] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.world.module.GlimmeringWealdModule [05Nov2024 19:11:00.827] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.world.module.MonsterBoxModule [05Nov2024 19:11:00.828] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.world.module.AzaleaWoodModule [05Nov2024 19:11:00.829] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.world.module.NoMoreLavaPocketsModule [05Nov2024 19:11:00.829] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.world.module.CorundumModule [05Nov2024 19:11:00.831] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.world.module.ChorusVegetationModule [05Nov2024 19:11:00.833] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.client.module.CameraModule [05Nov2024 19:11:00.839] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.client.module.ElytraIndicatorModule [05Nov2024 19:11:00.840] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.client.module.ImprovedTooltipsModule [05Nov2024 19:11:00.841] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.client.module.GreenerGrassModule [05Nov2024 19:11:00.843] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.client.module.BucketsShowInhabitantsModule [05Nov2024 19:11:00.844] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.client.module.SoulCandlesModule [05Nov2024 19:11:00.844] [modloading-worker-0/INFO] [Mystical Agriculture/]: Registered plugin: com.blakebr0.mysticalagriculture.lib.ModCorePlugin [05Nov2024 19:11:00.845] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.client.module.AutoWalkKeybindModule [05Nov2024 19:11:00.846] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.client.module.VariantAnimalTexturesModule [05Nov2024 19:11:00.847] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.client.module.MicrocraftingHelperModule [05Nov2024 19:11:00.849] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.client.module.UsesForCursesModule [05Nov2024 19:11:00.850] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.client.module.WoolShutsUpMinecartsModule [05Nov2024 19:11:00.851] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.client.module.BackButtonKeybindModule [05Nov2024 19:11:00.853] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.client.module.ChestSearchingModule [05Nov2024 19:11:00.855] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.client.module.LongRangePickBlockModule [05Nov2024 19:11:00.855] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.client.module.UsageTickerModule [05Nov2024 19:11:00.857] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.automation.module.PistonsMoveTileEntitiesModule [05Nov2024 19:11:00.858] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.automation.module.EnderWatcherModule [05Nov2024 19:11:00.859] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.automation.module.RedstoneRandomizerModule [05Nov2024 19:11:00.861] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.automation.module.FeedingTroughModule [05Nov2024 19:11:00.863] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.automation.module.MetalButtonsModule [05Nov2024 19:11:00.864] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.automation.module.IronRodModule [05Nov2024 19:11:00.865] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.automation.module.ObsidianPlateModule [05Nov2024 19:11:00.865] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.automation.module.ChainsConnectBlocksModule [05Nov2024 19:11:00.866] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.automation.module.GravisandModule [05Nov2024 19:11:00.867] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.automation.module.JukeboxAutomationModule [05Nov2024 19:11:00.868] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.automation.module.DispensersPlaceBlocksModule [05Nov2024 19:11:00.868] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.automation.module.ChuteModule [05Nov2024 19:11:00.869] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.management.module.QuickArmorSwappingModule [05Nov2024 19:11:00.870] [modloading-worker-0/INFO] [Rhino Script Remapper/]: Done in 0.074 s [05Nov2024 19:11:00.871] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.management.module.ItemSharingModule [05Nov2024 19:11:00.872] [modloading-worker-0/INFO] [Mystical Agriculture/]: Registered plugin: com.blakebr0.mysticalagradditions.lib.ModCorePlugin [05Nov2024 19:11:00.872] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.management.module.AutomaticToolRestockModule [05Nov2024 19:11:00.876] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.management.module.ExpandedItemInteractionsModule [05Nov2024 19:11:00.876] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.management.module.InventorySortingModule [05Nov2024 19:11:00.877] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.management.module.HotbarChangerModule [05Nov2024 19:11:00.878] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.management.module.EasyTransferingModule [05Nov2024 19:11:00.879] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.tweaks.module.GoldToolsHaveFortuneModule [05Nov2024 19:11:00.880] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.tweaks.module.AutomaticRecipeUnlockModule [05Nov2024 19:11:00.880] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.tweaks.module.UtilityRecipesModule [05Nov2024 19:11:00.881] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.tweaks.module.PoisonPotatoUsageModule [05Nov2024 19:11:00.882] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.tweaks.module.BetterElytraRocketModule [05Nov2024 19:11:00.882] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.tweaks.module.RenewableSporeBlossomsModule [05Nov2024 19:11:00.882] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.tweaks.module.CoralOnCactusModule [05Nov2024 19:11:00.883] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.tweaks.module.GlassShardModule [05Nov2024 19:11:00.884] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.tweaks.module.PigLittersModule [05Nov2024 19:11:00.884] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.tweaks.module.CampfiresBoostElytraModule [05Nov2024 19:11:00.885] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.tweaks.module.DyeableItemFramesModule [05Nov2024 19:11:00.887] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.tweaks.module.SlabsToBlocksModule [05Nov2024 19:11:00.887] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.tweaks.module.MapWashingModule [05Nov2024 19:11:00.889] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.tweaks.module.EnhancedLaddersModule [05Nov2024 19:11:00.890] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.tweaks.module.ReacharoundPlacingModule [05Nov2024 19:11:00.891] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.tweaks.module.HorsesSwimModule [05Nov2024 19:11:00.891] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.tweaks.module.SpongeOnWaterPlacementModule [05Nov2024 19:11:00.891] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.tweaks.module.ArmedArmorStandsModule [05Nov2024 19:11:00.892] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.tweaks.module.DoubleDoorOpeningModule [05Nov2024 19:11:00.893] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.tweaks.module.ZombieVillagersOnNormalModule [05Nov2024 19:11:00.894] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.tweaks.module.HoeHarvestingModule [05Nov2024 19:11:00.895] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.tweaks.module.EmotesModule [05Nov2024 19:11:00.895] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.tweaks.module.SlimesToMagmaCubesModule [05Nov2024 19:11:00.896] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.tweaks.module.SnowGolemPlayerHeadsModule [05Nov2024 19:11:00.896] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.tweaks.module.VexesDieWithTheirMastersModule [05Nov2024 19:11:00.897] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.tweaks.module.MoreNoteBlockSoundsModule [05Nov2024 19:11:00.897] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.tweaks.module.PatTheDogsModule [05Nov2024 19:11:00.899] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.tweaks.module.GrabChickensModule [05Nov2024 19:11:00.900] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.tweaks.module.MoreBannerLayersModule [05Nov2024 19:11:00.900] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.tweaks.module.ReplaceScaffoldingModule [05Nov2024 19:11:00.901] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.tweaks.module.DiamondRepairModule [05Nov2024 19:11:00.905] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.tweaks.module.SaferCreaturesModule [05Nov2024 19:11:00.907] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.tweaks.module.LockRotationModule [05Nov2024 19:11:00.907] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.tweaks.module.VillagersFollowEmeraldsModule [05Nov2024 19:11:00.908] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.tweaks.module.CompassesWorkEverywhereModule [05Nov2024 19:11:00.912] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.tweaks.module.NoDurabilityOnCosmeticsModule [05Nov2024 19:11:00.912] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.tweaks.module.SpongesBetterModule [05Nov2024 19:11:00.913] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.tweaks.module.SignEditingModule [05Nov2024 19:11:00.915] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.tweaks.module.SimpleHarvestModule [05Nov2024 19:11:00.916] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.tweaks.module.DragonScalesModule [05Nov2024 19:11:00.916] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.tweaks.module.ShulkerPackingModule [05Nov2024 19:11:00.917] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.mobs.module.FoxhoundModule [05Nov2024 19:11:00.919] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.mobs.module.WraithModule [05Nov2024 19:11:00.920] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.mobs.module.CrabsModule [05Nov2024 19:11:00.922] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.mobs.module.ForgottenModule [05Nov2024 19:11:00.925] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.mobs.module.ShibaModule [05Nov2024 19:11:00.926] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.mobs.module.StonelingsModule [05Nov2024 19:11:00.927] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.mobs.module.ToretoiseModule [05Nov2024 19:11:00.928] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.tools.module.BeaconRedirectionModule [05Nov2024 19:11:00.929] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.tools.module.AmbientDiscsModule [05Nov2024 19:11:00.930] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.tools.module.PathfinderMapsModule [05Nov2024 19:11:00.933] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.tools.module.ColorRunesModule [05Nov2024 19:11:00.935] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.tools.module.PickarangModule [05Nov2024 19:11:00.939] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.tools.module.ParrotEggsModule [05Nov2024 19:11:00.939] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.tools.module.TrowelModule [05Nov2024 19:11:00.942] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.tools.module.AbacusModule [05Nov2024 19:11:00.943] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.tools.module.BottledCloudModule [05Nov2024 19:11:00.944] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.tools.module.TorchArrowModule [05Nov2024 19:11:00.946] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.tools.module.BundleRecipeModule [05Nov2024 19:11:00.948] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.tools.module.AncientTomesModule [05Nov2024 19:11:00.949] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.tools.module.EndermoshMusicDiscModule [05Nov2024 19:11:00.950] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.tools.module.SeedPouchModule [05Nov2024 19:11:00.952] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.tools.module.SkullPikesModule [05Nov2024 19:11:00.954] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.tools.module.SlimeInABucketModule [05Nov2024 19:11:00.956] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.addons.oddities.module.PipesModule [05Nov2024 19:11:00.959] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.addons.oddities.module.BackpackModule [05Nov2024 19:11:00.964] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.addons.oddities.module.TinyPotatoModule [05Nov2024 19:11:00.966] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.addons.oddities.module.MatrixEnchantingModule [05Nov2024 19:11:00.968] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.addons.oddities.module.TotemOfHoldingModule [05Nov2024 19:11:00.970] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.addons.oddities.module.CrateModule [05Nov2024 19:11:00.971] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.addons.oddities.module.MagnetsModule [05Nov2024 19:11:00.973] [modloading-worker-0/INFO] [quark/]: Dispatching Module Step CONSTRUCT [05Nov2024 19:11:01.016] [modloading-worker-0/ERROR] [net.minecraftforge.fml.loading.RuntimeDistCleaner/DISTXFORM]: Attempted to load class com/mojang/blaze3d/vertex/PoseStack for invalid dist DEDICATED_SERVER [05Nov2024 19:11:01.047] [modloading-worker-0/INFO] [quark/]: Loading Module Pistons Move Tile Entities [05Nov2024 19:11:01.048] [modloading-worker-0/INFO] [quark/]: Loading Module Ender Watcher [05Nov2024 19:11:01.048] [modloading-worker-0/INFO] [quark/]: Loading Module Redstone Randomizer [05Nov2024 19:11:01.048] [modloading-worker-0/INFO] [quark/]: Loading Module Feeding Trough [05Nov2024 19:11:01.049] [modloading-worker-0/INFO] [quark/]: Loading Module Metal Buttons [05Nov2024 19:11:01.049] [modloading-worker-0/INFO] [quark/]: Loading Module Iron Rod [05Nov2024 19:11:01.049] [modloading-worker-0/INFO] [quark/]: Loading Module Obsidian Plate [05Nov2024 19:11:01.049] [modloading-worker-0/INFO] [quark/]: Loading Module Chains Connect Blocks [05Nov2024 19:11:01.050] [modloading-worker-0/INFO] [quark/]: Loading Module Gravisand [05Nov2024 19:11:01.050] [modloading-worker-0/INFO] [quark/]: Loading Module Jukebox Automation [05Nov2024 19:11:01.052] [modloading-worker-0/INFO] [quark/]: Loading Module Dispensers Place Blocks [05Nov2024 19:11:01.052] [modloading-worker-0/INFO] [quark/]: Loading Module Chute [05Nov2024 19:11:01.052] [modloading-worker-0/INFO] [quark/]: Loading Module Variant Ladders [05Nov2024 19:11:01.052] [modloading-worker-0/INFO] [quark/]: Loading Module Variant Bookshelves [05Nov2024 19:11:01.052] [modloading-worker-0/INFO] [quark/]: Loading Module Bamboo Backport [05Nov2024 19:11:01.052] [modloading-worker-0/INFO] [quark/]: Loading Module Compressed Blocks [05Nov2024 19:11:01.052] [modloading-worker-0/INFO] [quark/]: Loading Module More Potted Plants [05Nov2024 19:11:01.052] [modloading-worker-0/INFO] [quark/]: Loading Module Duskbound Blocks [05Nov2024 19:11:01.052] [modloading-worker-0/INFO] [quark/]: Loading Module Wooden Posts [05Nov2024 19:11:01.052] [modloading-worker-0/INFO] [quark/]: Loading Module Thatch [05Nov2024 19:11:01.052] [modloading-worker-0/INFO] [quark/]: Loading Module More Stone Variants [05Nov2024 19:11:01.052] [modloading-worker-0/INFO] [quark/]: Loading Module Shear Vines [05Nov2024 19:11:01.053] [modloading-worker-0/INFO] [quark/]: Loading Module Nether Brick Fence Gate [05Nov2024 19:11:01.053] [modloading-worker-0/INFO] [quark/]: Loading Module Gold Bars [05Nov2024 19:11:01.053] [modloading-worker-0/INFO] [quark/]: Loading Module Rope [05Nov2024 19:11:01.053] [modloading-worker-0/INFO] [quark/]: Loading Module Celebratory Lamps [05Nov2024 19:11:01.053] [modloading-worker-0/INFO] [quark/]: Loading Module Soul Sandstone [05Nov2024 19:11:01.053] [modloading-worker-0/INFO] [quark/]: Loading Module Variant Chests [05Nov2024 19:11:01.055] [modloading-worker-0/INFO] [quark/]: Loading Module Leaf Carpet [05Nov2024 19:11:01.055] [modloading-worker-0/INFO] [quark/]: Loading Module Framed Glass [05Nov2024 19:11:01.055] [modloading-worker-0/INFO] [quark/]: Loading Module Vertical Planks [05Nov2024 19:11:01.055] [modloading-worker-0/INFO] [quark/]: Loading Module Variant Furnaces [05Nov2024 19:11:01.055] [modloading-worker-0/INFO] [quark/]: Loading Module Hedges [05Nov2024 19:11:01.055] [modloading-worker-0/INFO] [quark/]: Loading Module Hollow Logs [05Nov2024 19:11:01.057] [modloading-worker-0/INFO] [quark/]: Loading Module Midori [05Nov2024 19:11:01.057] [modloading-worker-0/INFO] [quark/]: Loading Module Rainbow Lamps [05Nov2024 19:11:01.057] [modloading-worker-0/INFO] [quark/]: Loading Module Vertical Slabs [05Nov2024 19:11:01.057] [modloading-worker-0/INFO] [quark/]: Loading Module Shingles [05Nov2024 19:11:01.057] [modloading-worker-0/INFO] [quark/]: Loading Module Sturdy Stone [05Nov2024 19:11:01.057] [modloading-worker-0/INFO] [quark/]: Loading Module Stools [05Nov2024 19:11:01.058] [modloading-worker-0/INFO] [quark/]: Loading Module Raw Metal Bricks [05Nov2024 19:11:01.058] [modloading-worker-0/INFO] [quark/]: Loading Module More Mud Blocks [05Nov2024 19:11:01.058] [modloading-worker-0/INFO] [quark/]: Loading Module Grate [05Nov2024 19:11:01.058] [modloading-worker-0/INFO] [quark/]: Loading Module Japanese Palette [05Nov2024 19:11:01.058] [modloading-worker-0/INFO] [quark/]: Loading Module More Brick Types [05Nov2024 19:11:01.058] [modloading-worker-0/INFO] [quark/]: Loading Module Glass Item Frame [05Nov2024 19:11:01.058] [modloading-worker-0/INFO] [quark/]: Loading Module Industrial Palette [05Nov2024 19:11:01.058] [modloading-worker-0/INFO] [quark/]: Loading Module Quick Armor Swapping [05Nov2024 19:11:01.059] [modloading-worker-0/INFO] [quark/]: Loading Module Item Sharing [05Nov2024 19:11:01.059] [modloading-worker-0/INFO] [quark/]: Loading Module Automatic Tool Restock [05Nov2024 19:11:01.060] [modloading-worker-0/INFO] [quark/]: Loading Module Expanded Item Interactions [05Nov2024 19:11:01.060] [modloading-worker-0/INFO] [quark/]: Loading Module Inventory Sorting [05Nov2024 19:11:01.060] [modloading-worker-0/INFO] [quark/]: Loading Module Hotbar Changer [05Nov2024 19:11:01.060] [modloading-worker-0/INFO] [quark/]: Loading Module Easy Transfering [05Nov2024 19:11:01.060] [modloading-worker-0/INFO] [quark/]: Loading Module Beacon Redirection [05Nov2024 19:11:01.060] [modloading-worker-0/INFO] [quark/]: Loading Module Ambient Discs [05Nov2024 19:11:01.060] [modloading-worker-0/INFO] [quark/]: Loading Module Pathfinder Maps [05Nov2024 19:11:01.062] [modloading-worker-0/INFO] [quark/]: Loading Module Color Runes [05Nov2024 19:11:01.063] [modloading-worker-0/INFO] [quark/]: Loading Module Pickarang [05Nov2024 19:11:01.063] [modloading-worker-0/INFO] [quark/]: Loading Module Parrot Eggs [05Nov2024 19:11:01.065] [modloading-worker-0/INFO] [quark/]: Loading Module Trowel [05Nov2024 19:11:01.065] [modloading-worker-0/INFO] [quark/]: Loading Module Abacus [05Nov2024 19:11:01.065] [modloading-worker-0/INFO] [quark/]: Loading Module Bottled Cloud [05Nov2024 19:11:01.065] [modloading-worker-0/INFO] [quark/]: Loading Module Torch Arrow [05Nov2024 19:11:01.065] [modloading-worker-0/INFO] [quark/]: Loading Module Bundle Recipe [05Nov2024 19:11:01.065] [modloading-worker-0/INFO] [quark/]: Loading Module Ancient Tomes [05Nov2024 19:11:01.067] [modloading-worker-0/INFO] [quark/]: Loading Module Endermosh Music Disc [05Nov2024 19:11:01.067] [modloading-worker-0/INFO] [quark/]: Loading Module Seed Pouch [05Nov2024 19:11:01.068] [modloading-worker-0/INFO] [quark/]: Loading Module Skull Pikes [05Nov2024 19:11:01.069] [modloading-worker-0/INFO] [quark/]: Loading Module Slime In A Bucket [05Nov2024 19:11:01.069] [modloading-worker-0/INFO] [quark/]: Loading Module Gold Tools Have Fortune [05Nov2024 19:11:01.069] [modloading-worker-0/INFO] [quark/]: Loading Module Automatic Recipe Unlock [05Nov2024 19:11:01.070] [modloading-worker-0/INFO] [quark/]: Loading Module Utility Recipes [05Nov2024 19:11:01.070] [modloading-worker-0/INFO] [quark/]: Loading Module Poison Potato Usage [05Nov2024 19:11:01.071] [modloading-worker-0/INFO] [quark/]: Loading Module Better Elytra Rocket [05Nov2024 19:11:01.071] [modloading-worker-0/INFO] [quark/]: Loading Module Renewable Spore Blossoms [05Nov2024 19:11:01.071] [modloading-worker-0/INFO] [quark/]: Loading Module Coral On Cactus [05Nov2024 19:11:01.071] [modloading-worker-0/INFO] [quark/]: Loading Module Glass Shard [05Nov2024 19:11:01.072] [modloading-worker-0/INFO] [quark/]: Loading Module Pig Litters [05Nov2024 19:11:01.073] [modloading-worker-0/INFO] [quark/]: Loading Module Campfires Boost Elytra [05Nov2024 19:11:01.073] [modloading-worker-0/INFO] [quark/]: Loading Module Dyeable Item Frames [05Nov2024 19:11:01.074] [modloading-worker-0/INFO] [quark/]: Loading Module Slabs To Blocks [05Nov2024 19:11:01.075] [modloading-worker-0/INFO] [quark/]: Loading Module Map Washing [05Nov2024 19:11:01.075] [modloading-worker-0/INFO] [quark/]: Loading Module Enhanced Ladders [05Nov2024 19:11:01.076] [modloading-worker-0/INFO] [quark/]: Loading Module Reacharound Placing [05Nov2024 19:11:01.076] [modloading-worker-0/INFO] [quark/]: Loading Module Horses Swim [05Nov2024 19:11:01.077] [modloading-worker-0/INFO] [quark/]: Loading Module Sponge On Water Placement [05Nov2024 19:11:01.077] [modloading-worker-0/INFO] [quark/]: Loading Module Armed Armor Stands [05Nov2024 19:11:01.077] [modloading-worker-0/INFO] [quark/]: Loading Module Double Door Opening [05Nov2024 19:11:01.077] [modloading-worker-0/INFO] [quark/]: Loading Module Zombie Villagers On Normal [05Nov2024 19:11:01.078] [modloading-worker-0/INFO] [quark/]: Loading Module Hoe Harvesting [05Nov2024 19:11:01.079] [modloading-worker-0/INFO] [quark/]: Loading Module Emotes [05Nov2024 19:11:01.079] [modloading-worker-0/INFO] [quark/]: Loading Module Slimes To Magma Cubes [05Nov2024 19:11:01.079] [modloading-worker-0/INFO] [quark/]: Loading Module Snow Golem Player Heads [05Nov2024 19:11:01.080] [modloading-worker-0/INFO] [quark/]: Loading Module Vexes Die With Their Masters [05Nov2024 19:11:01.080] [modloading-worker-0/INFO] [quark/]: Loading Module More Note Block Sounds [05Nov2024 19:11:01.080] [modloading-worker-0/INFO] [quark/]: Loading Module Pat The Dogs [05Nov2024 19:11:01.081] [modloading-worker-0/INFO] [quark/]: Loading Module Grab Chickens [05Nov2024 19:11:01.081] [modloading-worker-0/INFO] [quark/]: Loading Module More Banner Layers [05Nov2024 19:11:01.081] [modloading-worker-0/INFO] [quark/]: Loading Module Replace Scaffolding [05Nov2024 19:11:01.082] [modloading-worker-0/INFO] [quark/]: Loading Module Diamond Repair [05Nov2024 19:11:01.082] [modloading-worker-0/INFO] [quark/]: Loading Module Safer Creatures [05Nov2024 19:11:01.082] [modloading-worker-0/INFO] [quark/]: Loading Module Lock Rotation [05Nov2024 19:11:01.083] [modloading-worker-0/INFO] [quark/]: Loading Module Villagers Follow Emeralds [05Nov2024 19:11:01.084] [modloading-worker-0/INFO] [quark/]: Loading Module Compasses Work Everywhere [05Nov2024 19:11:01.084] [modloading-worker-0/INFO] [quark/]: Loading Module No Durability On Cosmetics [05Nov2024 19:11:01.084] [modloading-worker-0/INFO] [quark/]: Loading Module Sponges Better [05Nov2024 19:11:01.084] [modloading-worker-0/INFO] [quark/]: Loading Module Sign Editing [05Nov2024 19:11:01.085] [modloading-worker-0/INFO] [quark/]: Loading Module Simple Harvest [05Nov2024 19:11:01.085] [modloading-worker-0/INFO] [quark/]: Loading Module Dragon Scales [05Nov2024 19:11:01.086] [modloading-worker-0/INFO] [quark/]: Loading Module Shulker Packing [05Nov2024 19:11:01.086] [modloading-worker-0/INFO] [quark/]: Loading Module Nether Obsidian Spikes [05Nov2024 19:11:01.086] [modloading-worker-0/INFO] [quark/]: Loading Module Permafrost [05Nov2024 19:11:01.086] [modloading-worker-0/INFO] [quark/]: Loading Module Fairy Rings [05Nov2024 19:11:01.086] [modloading-worker-0/INFO] [quark/]: Loading Module Big Stone Clusters [05Nov2024 19:11:01.087] [modloading-worker-0/INFO] [quark/]: Loading Module Spiral Spires [05Nov2024 19:11:01.087] [modloading-worker-0/INFO] [quark/]: Loading Module Ancient Wood [05Nov2024 19:11:01.087] [modloading-worker-0/INFO] [quark/]: Loading Module New Stone Types [05Nov2024 19:11:01.088] [modloading-worker-0/INFO] [quark/]: Loading Module Blossom Trees [05Nov2024 19:11:01.088] [modloading-worker-0/INFO] [quark/]: Loading Module Glimmering Weald [05Nov2024 19:11:01.088] [modloading-worker-0/INFO] [quark/]: Loading Module Monster Box [05Nov2024 19:11:01.088] [modloading-worker-0/INFO] [quark/]: Loading Module Azalea Wood [05Nov2024 19:11:01.088] [modloading-worker-0/INFO] [quark/]: Loading Module No More Lava Pockets [05Nov2024 19:11:01.088] [modloading-worker-0/INFO] [quark/]: Loading Module Corundum [05Nov2024 19:11:01.088] [modloading-worker-0/INFO] [quark/]: Loading Module Chorus Vegetation [05Nov2024 19:11:01.088] [modloading-worker-0/INFO] [quark/]: Loading Module Foxhound [05Nov2024 19:11:01.092] [modloading-worker-0/INFO] [quark/]: Loading Module Wraith [05Nov2024 19:11:01.092] [modloading-worker-0/INFO] [quark/]: Loading Module Crabs [05Nov2024 19:11:01.094] [modloading-worker-0/INFO] [quark/]: Loading Module Forgotten [05Nov2024 19:11:01.095] [modloading-worker-0/INFO] [quark/]: Loading Module Shiba [05Nov2024 19:11:01.095] [modloading-worker-0/INFO] [quark/]: Loading Module Stonelings [05Nov2024 19:11:01.097] [modloading-worker-0/INFO] [quark/]: Loading Module Toretoise [05Nov2024 19:11:01.099] [modloading-worker-0/INFO] [quark/]: Loading Module Camera [05Nov2024 19:11:01.100] [modloading-worker-0/INFO] [quark/]: Loading Module Elytra Indicator [05Nov2024 19:11:01.100] [modloading-worker-0/INFO] [quark/]: Loading Module Improved Tooltips [05Nov2024 19:11:01.100] [modloading-worker-0/INFO] [quark/]: Loading Module Greener Grass [05Nov2024 19:11:01.100] [modloading-worker-0/INFO] [quark/]: Loading Module Buckets Show Inhabitants [05Nov2024 19:11:01.100] [modloading-worker-0/INFO] [quark/]: Loading Module Soul Candles [05Nov2024 19:11:01.100] [modloading-worker-0/INFO] [quark/]: Loading Module Auto Walk Keybind [05Nov2024 19:11:01.100] [modloading-worker-0/INFO] [quark/]: Loading Module Variant Animal Textures [05Nov2024 19:11:01.100] [modloading-worker-0/INFO] [quark/]: Loading Module Microcrafting Helper [05Nov2024 19:11:01.100] [modloading-worker-0/INFO] [quark/]: Loading Module Uses For Curses [05Nov2024 19:11:01.100] [modloading-worker-0/INFO] [quark/]: Loading Module Wool Shuts Up Minecarts [05Nov2024 19:11:01.100] [modloading-worker-0/INFO] [quark/]: Loading Module Back Button Keybind [05Nov2024 19:11:01.100] [modloading-worker-0/INFO] [quark/]: Loading Module Chest Searching [05Nov2024 19:11:01.100] [modloading-worker-0/INFO] [quark/]: Loading Module Long Range Pick Block [05Nov2024 19:11:01.100] [modloading-worker-0/INFO] [quark/]: Loading Module Usage Ticker [05Nov2024 19:11:01.100] [modloading-worker-0/INFO] [quark/]: Loading Module Variant Selector [05Nov2024 19:11:01.100] [modloading-worker-0/INFO] [quark/]: Loading Module Narrator Readout [05Nov2024 19:11:01.100] [modloading-worker-0/INFO] [quark/]: Loading Module Climate Control Remover [05Nov2024 19:11:01.100] [modloading-worker-0/INFO] [quark/]: Loading Module Enchantments Begone [05Nov2024 19:11:01.100] [modloading-worker-0/INFO] [quark/]: Loading Module Game Nerfs [05Nov2024 19:11:01.100] [modloading-worker-0/INFO] [quark/]: Loading Module Spawner Replacer [05Nov2024 19:11:01.100] [modloading-worker-0/INFO] [quark/]: Loading Module Adjustable Chat [05Nov2024 19:11:01.100] [modloading-worker-0/INFO] [quark/]: Loading Module Villager Rerolling Rework [05Nov2024 19:11:01.101] [modloading-worker-0/INFO] [quark/]: Loading Module Overlay Shader [05Nov2024 19:11:01.101] [modloading-worker-0/INFO] [quark/]: Loading Module Enchantment Predicates [05Nov2024 19:11:01.101] [modloading-worker-0/INFO] [quark/]: Loading Module Pipes [05Nov2024 19:11:01.101] [modloading-worker-0/INFO] [quark/]: Loading Module Backpack [05Nov2024 19:11:01.101] [modloading-worker-0/INFO] [quark/]: Loading Module Tiny Potato [05Nov2024 19:11:01.101] [modloading-worker-0/INFO] [quark/]: Loading Module Matrix Enchanting [05Nov2024 19:11:01.101] [modloading-worker-0/INFO] [quark/]: Loading Module Totem Of Holding [05Nov2024 19:11:01.101] [modloading-worker-0/INFO] [quark/]: Loading Module Crate [05Nov2024 19:11:01.101] [modloading-worker-0/INFO] [quark/]: Loading Module Magnets [05Nov2024 19:11:01.108] [modloading-worker-0/INFO] [KubeJS Startup/]: example.js#5: Hello, World! (Loaded startup scripts) [05Nov2024 19:11:01.110] [modloading-worker-0/INFO] [KubeJS Startup/]: Loaded script startup_scripts:example.js in 0.036 s [05Nov2024 19:11:01.113] [modloading-worker-0/INFO] [KubeJS Startup/]: Loaded 1/1 KubeJS startup scripts in 0.239 s [05Nov2024 19:11:01.137] [modloading-worker-0/INFO] [dev.architectury.networking.forge.NetworkManagerImpl/]: Registering C2S receiver with id kubejs:send_data_from_client [05Nov2024 19:11:01.138] [modloading-worker-0/INFO] [dev.architectury.networking.forge.NetworkManagerImpl/]: Registering C2S receiver with id kubejs:first_click [05Nov2024 19:11:01.485] [modloading-worker-0/INFO] [mixin/]: Mixing common.MixinServerStatus from nochatreports.mixins.json into net.minecraft.network.protocol.status.ServerStatus [05Nov2024 19:11:01.554] [main/INFO] [ModernFix/]: Invalidating pack caches [05Nov2024 19:11:01.554] [main/INFO] [net.minecraft.server.packs.resources.ReloadableResourceManager/]: Reloading ResourceManager: hordes, Above_and_Below-1.1.1-1.19.2.jar, additionalentityattributes-forge-1.19-1.0.1+1.19.jar, appliedenergistics2-forge-12.9.9.jar, AE2WTLib-12.9.7.jar, aeroblender-1.19.2-1.0.1.jar, aether-1.19.2-1.5.0-forge.jar, aether_treasure_reforging-1.19.2-1.0.1-forge.jar, Aethersteel-v5.5-1.19.2.jar, AI-Improvements-1.19.2-0.5.2.jar, AmbientSounds_FORGE_v5.3.9_mc1.19.2.jar, Amplified_Nether_1.19.3_v1.2.1.jar, AngelRing2-1.19.2-2.1.8.jar, apoli-forge-1.19.2-2.6.1.7.jar, appleskin-forge-mc1.19-2.4.2.jar, architectury-6.6.92-forge.jar, ars_elemental-1.19.2-0.5.9.4.1.jar, ars_nouveau-1.19.2-3.22.3.jar, ars_ocultas-1.19.2-0.1.1-all.jar, arseng-1.0.1.jar, Atlas-Lib-1.19.2-1.1.6.jar, AttributeFix-Forge-1.19.2-17.2.7.jar, AutoRegLib-1.8.2-55.jar, BadOptimizations-2.1.4-1.19.1-19.2.jar, badpackets-forge-0.2.3.jar, balm-forge-1.19.2-4.6.0.jar, BetterCompatibilityChecker-1.0.7-build.35+mc1.19.2.jar, BasicEndOres-1.19.2-3.2.2.jar, betternetherite_0.4.jar, bettercombat-forge-1.7.1+1.19.jar, YungsBetterDungeons-1.19.2-Forge-3.2.2.jar, YungsBetterEndIsland-1.19.2-Forge-1.0.jar, BetterF3-4.0.1-Forge-1.19.2.jar, betterfarmland-1.19.2-forge-1.0.3.jar, YungsBetterNetherFortresses-1.19.2-Forge-1.0.6.jar, YungsBetterMineshafts-1.19.2-Forge-3.2.1.jar, YungsBetterOceanMonuments-1.19.2-Forge-2.1.1.jar, YungsBetterStrongholds-1.19.2-Forge-3.2.0.jar, baubley-heart-canisters-1.19.2-2.1.0.jar, ExtremeReactors2-1.19.2-2.0.71.jar, BiomesOPlenty-1.19.2-17.1.2.492.jar, blueprint-1.19.2-6.2.0.jar, BasicNetherOres-1.19.2-8.2.1.jar, Bookshelf-Forge-1.19.2-16.3.20.jar, botarium-forge-1.19.2-1.9.2.jar, brightnessslider-forge-1.0-1.19.jar, bwncr-forge-1.19.2-3.14.1.jar, Oh_The_Biomes_You'll_Go-forge-1.19.2-2.0.1.6.jar, bygonefortress-1.0.0-1.19.2.jar, bygonenether-1.3.2-1.19.2.jar, caelus-forge-1.19.2-3.0.0.6.jar, calio-forge-1.19.2-1.7.0.4.jar, CarbonConfig-1.19.2-1.2.6.jar, cfm-7.0.0-pre35-1.19.2.jar, cgm-forge-1.19.2-1.3.7.jar, chat_heads-0.13.3-forge-1.19.2.jar, chunkloaders-1.2.8a-forge-mc1.19.jar, Chunky-1.3.38.jar, citadel-2.1.4-1.19.jar, cloth-config-8.3.134-forge.jar, Clumps-forge-1.19.2-9.0.0+14.jar, CodeChickenLib-1.19.2-4.3.2.490-universal.jar, collective-1.19.2-7.64.jar, configured-2.1.1-1.19.2.jar, Controlling-forge-1.19.2-10.0+7.jar, cookingforblockheads-forge-1.19.2-13.3.4.jar, CorgiLib-forge-1.19.2-1.0.0.34.jar, coroutil-forge-1.19.2-1.3.6.jar, CraftableEnchantedGoldenApple-1.19.2-Forge.jar, create-1.19.2-0.5.1.i.jar, Create_Questing-FORGE-1.19.2-1.0.0.jar, createaddition-1.19.2-1.2.2.jar, createappliedkinetics-1.4-1.19.2.jar, CreativeCore_FORGE_v2.11.28_mc1.19.2.jar, Croptopia-1.19.2-FORGE-2.2.2.jar, CroptopiaDelight-1.19.2_1.2.2-forge.jar, Cucumber-1.19.2-6.0.11.jar, cullleaves-forge-3.0.1.jar, cumulus_menus-1.19.2-1.0.0-forge.jar, curios-forge-1.19.2-5.1.6.3.jar, dcintegration-forge-3.0.5-1.19.2.jar, deep_aether-1.19.2-1.0.2.jar, deeperdarker-forge-1.19.2-1.2.2.jar, difusement-v1.19.2_alpha_1.empatch_1.jar, dimensionalsycnfixes-1.19.2-0.0.1.jar, dragonmounts-1.19.2-1.2.3-beta.jar, dynamic-fps-3.7.3+minecraft-1.19.0-forge.jar, elevatorid-1.19.2-1.8.10.jar, elytraslot-forge-6.1.2+1.19.2.jar, emc-interface-1.19.2.2.jar, Enchanted-forge-1.19.2-2.0.3.jar, EnchantingInfuser-v4.2.2-1.19.2-Forge.jar, EnchantmentDescriptions-Forge-1.19.2-13.0.14.jar, endergetic-1.19.2-4.0.0.jar, endersdelight-1.19-1.2.2.jar, EnderStorage-1.19.2-2.10.1.181-universal.jar, endertanks-forge-1.19-1.12.10.jar, endofherobrine-1.19.2-1.0.8.2.jar, endrem_forge-5.2.1-R-1.19.X.jar, ends_delight-1.19.2-2.1.jar, Enhanced_Celestials-forge-1.19.2-2.1.0.5.jar, entityculling-forge-1.6.1-mc1.19.2.jar, EuphoriaPatcher-1.4.1-r5.3-forge.jar, everycomp-1.19.2-2.5.26.jar, EyesInTheDarkness-1.19.2-1.3.10.jar, Fallingleaves-1.19.1-1.3.1.jar, FarmersDelight-1.19.2-1.2.4.jar, fast-ip-ping-v1.0.5-mc1.19.4-forge.jar, Fastload-Reforged-mc1.19.2-3.4.0.jar, ferritecore-5.0.3-forge.jar, flib-1.19.2-0.0.3.jar, flywheel-forge-1.19.2-0.6.11-22.jar, forge-1.19.2-43.4.0-universal.jar, framework-forge-1.19.2-0.6.16.jar, ftb-library-forge-1902.4.1-build.236.jar, FTBQLocalKeys-forge-1.1.0+1.19.2.jar, FTBQuestsOptimizer-forge-1.2.1-1.19.2.jar, ftb-quests-forge-1902.5.9-build.399.jar, ftb-teams-forge-1902.2.14-build.123.jar, ftb-xmod-compat-forge-1.2.4.jar, fusion-1.1.1-forge-mc1.19.2.jar, GeckoLibOculusCompat-Forge-1.0.1.jar, geckolib-forge-1.19-3.1.40.jar, GPUTape-1.0.0-1.18-1.20.4.jar, gravestone-forge-1.19.2-1.0.24.jar, The_Graveyard_2.5.2_(FORGE)_for_1.19.2.jar, HammerLib-1.19.2-19.3.82.jar, The-Hordes-1.19.2-1.5.4.jar, iceandfire-1.19.2-2.1.13-beta-2.jar, Iceberg-1.19.2-forge-1.1.4.jar, ImmediatelyFast-Forge-1.2.21+1.19.2.jar, Incendium_1.19.3_v5.1.6.jar, industrial-foregoing-1.19.2-3.3.2.3-5.jar, item-filters-forge-1902.2.9-build.51.jar, jei-1.19.2-forge-11.8.1.1033.jar, journeymap-1.19.2-5.9.8-forge.jar, JsonThings-1.19.2-0.7.15.jar, keebszs_battle_towers-0.5.0-1.19.x.jar, konkrete_forge_1.8.0_MC_1.19-1.19.2.jar, kffmod-3.12.0.jar, kubejs-forge-1902.6.2-build.73.jar, l2library-1.10.0.jar, lemoned-1.0.0-1.19.jar, Log-Begone-Forge-1.19-1.0.6.jar, luckytntlib-1.19.2-43.3.13.0.jar, luckytntmod-1.19.2-1.4.jar, The-Man-From-The-Fog-1.3-1.19.2.jar, Mantle-1.19.2-1.10.36.jar, matc-1.3.1.jar, minecraft-comes-alive-7.5.14+1.19.2-universal.jar, memoryleakfix-forge-1.17+-1.1.5.jar, mes-1.3.1-1.19.2-forge.jar, midnightlib-1.0.0-forge.jar, the_midnight_lurker_3.3.5.jar, mixinextras-forge-0.2.0-beta.9.jar, mixinsquared-forge-0.1.2-beta.6.jar, modernfix-forge-5.18.1+mc1.19.2.jar, modonomicon-1.19.2-1.34.0.jar, moonlight-1.19.2-2.3.7-forge.jar, moredelight-24.09.27-1.19-forge.jar, moreoverlays-1.21.10-mc1.19.2.jar, morevanillashields-1.0.2-1.19.2.jar, better-deepslate-ore-drops-2.jar, construct-and-better-combat-1.jar, edf-remastered-4.3.jar, enderite-upgrade-v5.jar, mvs-4.1.2-1.19.2-forge.jar, MyNethersDelight-1.19-1.7.jar, MyServerIsCompatible-1.19-1.0.jar, MysticalAgradditions-1.19.2-6.0.5.jar, MysticalAgriculture-1.19.2-6.0.15.jar, netherportalfix-forge-1.19-10.0.2.jar, NethersDelight-1.19-3.1.jar, nitrogen_internals-1.19.2-1.0.7-forge.jar, NoChatReports-FORGE-1.19.2-v1.5.1.jar, notenoughcrashes-5.0.0+1.19.2-forge.jar, Nullscape_1.19.3_v1.2.2.jar, nzgExpansion-1.4.4-1.19.2.jar, obscure_api-15.jar, occultism-1.19.2-1.90.0.jar, origins-accessbilities-1.19.2-1.1.1.jar, origins-forge-1.19.2-1.7.1.7-all.jar, origins-classes-forge-1.2.1.jar, Epic Dungeons-0.1.04-Forge-1.19-1.20.1.jar, Pale_Hound-1.19.2-1.9.5.jar, parry-2.4.1.1.jar, Patchouli-1.19.2-77.jar, proxy-compatible-forge-1.1.5.jar, Pehkui-3.8.2+1.19.2-forge.jar, player-animation-lib-forge-1.0.2.jar, polymorph-forge-0.46.6+1.19.2.jar, ProjectE-1.19.2-PE1.1.0.jar, Projectiles-1.0.0-1.19.2-Multi.jar, PuzzlesLib-v4.4.3-1.19.2-Forge.jar, Quark-3.4-418.jar, rechiseled-1.1.6-forge-mc1.19.2.jar, resourcefullib-forge-1.19.2-1.1.24.jar, rhino-forge-1902.2.3-build.284.jar, right-click-harvest-3.2.3+1.19.2-forge.jar, rubidium-mc1.19.2-0.6.2c.jar, saturn-mc1.19.2-0.1.4.jar, [1.19.2] SecurityCraft v1.9.6.1.jar, SereneSeasons-1.19.2-8.1.0.24.jar, servercore-forge-1.3.6+1.19.2.jar, shetiphiancore-forge-1.19-3.11.11.jar, ShieldExpansion-1.19.2-1.1.7a.jar, sliceanddice-forge-2.4.0.jar, SmartBrainLib-forge-1.19.2-1.9.jar, sophisticatedbackpacks-1.19.2-3.20.2.1035.jar, sophisticatedcore-1.19.2-0.6.4.605.jar, sound-physics-remastered-forge-1.19.2-1.4.5.jar, spark-1.10.37-forge.jar, spectrelib-forge-0.12.8+1.19.2.jar, spiderstpo-1.19.2-2.0.4.jar, SimpleQuarry-1.19.2-19.2.1.jar, StateObserver-forge-1.19.2-1.3.1.jar, supermartijn642configlib-1.1.8-forge-mc1.19.jar, supermartijn642corelib-1.1.17a-forge-mc1.19.2.jar, SurvivalistEssentials-1.19.2-4.2.0.18.jar, Survive-1.19.2-8.0.8.2.jar, tacz-1.19.2-1.0.3-all.jar, TConstruct-1.19.2-3.8.4.50.jar, tectonic-forge-1.19-2.3.5a.jar, teleportcraft-1.1.2-1.19.2.jar, TerraBlender-forge-1.19.2-2.0.1.166.jar, the_knocker-1.3.0b-forge-1.19.2.jar, TA-0.9.5-1.19.2.jar, thestarvedstalker.jar, 3rdLife+(1.19.X) 1.0.6.jar, Tinker-Things-1.19.2-1.2.1.jar, Tinkers-Thinking-0.1.3.3.2.jar, TinkerSurvival-1.19.2-4.1.1.7.jar, titanium-1.19.2-3.7.3-27.jar, tleveling-0.2.0-1.19.2.jar, toms_trading_network-1.19-0.2.3.jar, toolleveling-forge-1.19.2-1.4.1.jar, totw_additions-1.2.3-1.19.x-forge.jar, totw_modded-forge-1.19.2-1.0.5.jar, trashcans-1.0.18-forge-mc1.19.jar, trashslot-forge-1.19.2-12.1.0.jar, treeharvester-1.19.2-8.7.jar, twilightaether-1.19.2-1.0.0.jar, Twilight Flavors & Delight-1.3.1.jar, twilightforest-1.19.2-4.2.1518-universal (1).jar, UnionLib-1.19.2-9.0.3.1-Forge.jar, unknownnull-1.19.2-1.0.3.jar, unsafe-world-random-access-detector-1.1.0+forge.jar, valhelsia_core-forge-1.19.2-0.5.0.jar, voicechat-forge-1.19.2-2.5.24.jar, From-The-Fog-1.19-v1.9.1-Forge-Fabric.jar, waveycapes-forge-1.4.10-mc1.19.2.jar, waystones-forge-1.19.2-11.4.2.jar, Whispers_of_the_Wendigo_0.1.1_1.19.2.jar, xlpackets-1.0.4-1.19.4.jar, xptome-1.19-2.1.7.jar, YungsApi-1.19.2-Forge-3.8.10.jar, ZeroCore2-1.19.2-2.1.39.jar [05Nov2024 19:11:01.873] [main/INFO] [quark/]: Dispatching Module Step REGISTER [05Nov2024 19:11:02.072] [main/INFO] [quark/]: Dispatching Module Step POST_REGISTER [05Nov2024 19:11:02.744] [main/INFO] [dev.gigaherz.jsonthings.things.parsers.BlockParser/]: Started registering Block things, errors about unexpected registry domains are harmless... [05Nov2024 19:11:02.748] [main/INFO] [dev.gigaherz.jsonthings.things.parsers.BlockParser/]: Done processing thingpack Blocks. [05Nov2024 19:11:03.593] [main/INFO] [dev.gigaherz.jsonthings.things.parsers.FluidParser/]: Started registering Fluid things, errors about unexpected registry domains are harmless... [05Nov2024 19:11:03.596] [main/INFO] [dev.gigaherz.jsonthings.things.parsers.FluidParser/]: Done processing thingpack Fluids. [05Nov2024 19:11:03.605] [main/WARN] [moonlight/]: Failed to find custom wood type byg:embur [05Nov2024 19:11:03.630] [main/INFO] [moonlight/]: Initialized block sets in 26ms [05Nov2024 19:11:03.635] [main/INFO] [net.mehvahdjukaar.every_compat.EveryCompat/]: Registering Compat Wood Blocks [05Nov2024 19:11:05.188] [main/INFO] [net.mehvahdjukaar.every_compat.EveryCompat/]: Registering Compat Leaves Blocks [05Nov2024 19:11:06.093] [main/INFO] [dev.gigaherz.jsonthings.things.parsers.ItemParser/]: Started registering Item things, errors about unexpected registry domains are harmless... [05Nov2024 19:11:06.109] [main/INFO] [dev.gigaherz.jsonthings.things.parsers.ItemParser/]: Done processing thingpack Items. [05Nov2024 19:11:06.284] [main/INFO] [dev.architectury.networking.forge.NetworkManagerImpl/]: Registering C2S receiver with id ae2wtlib:cycle_terminal [05Nov2024 19:11:06.451] [main/INFO] [dev.gigaherz.jsonthings.things.parsers.EnchantmentParser/]: Started registering Enchantment things, errors about unexpected registry domains are harmless... [05Nov2024 19:11:06.451] [main/INFO] [dev.gigaherz.jsonthings.things.parsers.EnchantmentParser/]: Done processing thingpack Enchantments. [05Nov2024 19:11:06.532] [main/INFO] [ModernFix/]: Bypassed Mojang DFU [05Nov2024 19:11:06.532] [main/INFO] [ModernFix/]: Instantiating Mojang DFU [05Nov2024 19:11:06.752] [main/INFO] [net.minecraft.util.datafix.DataFixers/]: Building unoptimized datafixer [05Nov2024 19:11:07.805] [main/INFO] [dev.gigaherz.jsonthings.things.parsers.FluidTypeParser/]: Started registering FluidType things, errors about unexpected registry domains are harmless... [05Nov2024 19:11:07.806] [main/INFO] [dev.gigaherz.jsonthings.things.parsers.FluidTypeParser/]: Done processing thingpack FluidTypes. [05Nov2024 19:11:08.000] [main/WARN] [net.minecraft.network.syncher.SynchedEntityData/]: defineId called for: class forge.net.mca.entity.VillagerEntityMCA from class forge.net.mca.util.network.datasync.CDataParameter [05Nov2024 19:11:08.000] [main/WARN] [net.minecraft.network.syncher.SynchedEntityData/]: defineId called for: class forge.net.mca.entity.VillagerEntityMCA from class forge.net.mca.util.network.datasync.CDataParameter [05Nov2024 19:11:08.000] [main/WARN] [net.minecraft.network.syncher.SynchedEntityData/]: defineId called for: class forge.net.mca.entity.VillagerEntityMCA from class forge.net.mca.util.network.datasync.CDataParameter [05Nov2024 19:11:08.001] [main/WARN] [net.minecraft.network.syncher.SynchedEntityData/]: defineId called for: class forge.net.mca.entity.VillagerEntityMCA from class forge.net.mca.util.network.datasync.CDataParameter [05Nov2024 19:11:08.001] [main/WARN] [net.minecraft.network.syncher.SynchedEntityData/]: defineId called for: class forge.net.mca.entity.VillagerEntityMCA from class forge.net.mca.util.network.datasync.CDataParameter [05Nov2024 19:11:08.001] [main/WARN] [net.minecraft.network.syncher.SynchedEntityData/]: defineId called for: class forge.net.mca.entity.VillagerEntityMCA from class forge.net.mca.util.network.datasync.CDataParameter [05Nov2024 19:11:08.001] [main/WARN] [net.minecraft.network.syncher.SynchedEntityData/]: defineId called for: class forge.net.mca.entity.VillagerEntityMCA from class forge.net.mca.util.network.datasync.CDataParameter [05Nov2024 19:11:08.001] [main/WARN] [net.minecraft.network.syncher.SynchedEntityData/]: defineId called for: class forge.net.mca.entity.VillagerEntityMCA from class forge.net.mca.util.network.datasync.CEnumParameter [05Nov2024 19:11:08.002] [main/WARN] [net.minecraft.network.syncher.SynchedEntityData/]: defineId called for: class forge.net.mca.entity.VillagerEntityMCA from class forge.net.mca.util.network.datasync.CDataParameter [05Nov2024 19:11:08.002] [main/WARN] [net.minecraft.network.syncher.SynchedEntityData/]: defineId called for: class forge.net.mca.entity.VillagerEntityMCA from class forge.net.mca.util.network.datasync.CDataParameter [05Nov2024 19:11:08.002] [main/WARN] [net.minecraft.network.syncher.SynchedEntityData/]: defineId called for: class forge.net.mca.entity.VillagerEntityMCA from class forge.net.mca.util.network.datasync.CDataParameter [05Nov2024 19:11:08.002] [main/WARN] [net.minecraft.network.syncher.SynchedEntityData/]: defineId called for: class forge.net.mca.entity.VillagerEntityMCA from class forge.net.mca.util.network.datasync.CDataParameter [05Nov2024 19:11:08.002] [main/WARN] [net.minecraft.network.syncher.SynchedEntityData/]: defineId called for: class forge.net.mca.entity.VillagerEntityMCA from class forge.net.mca.util.network.datasync.CDataParameter [05Nov2024 19:11:08.002] [main/WARN] [net.minecraft.network.syncher.SynchedEntityData/]: defineId called for: class forge.net.mca.entity.VillagerEntityMCA from class forge.net.mca.util.network.datasync.CDataParameter [05Nov2024 19:11:08.002] [main/WARN] [net.minecraft.network.syncher.SynchedEntityData/]: defineId called for: class forge.net.mca.entity.VillagerEntityMCA from class forge.net.mca.util.network.datasync.CDataParameter [05Nov2024 19:11:08.002] [main/WARN] [net.minecraft.network.syncher.SynchedEntityData/]: defineId called for: class forge.net.mca.entity.VillagerEntityMCA from class forge.net.mca.util.network.datasync.CDataParameter [05Nov2024 19:11:08.002] [main/WARN] [net.minecraft.network.syncher.SynchedEntityData/]: defineId called for: class forge.net.mca.entity.VillagerEntityMCA from class forge.net.mca.util.network.datasync.CDataParameter [05Nov2024 19:11:08.002] [main/WARN] [net.minecraft.network.syncher.SynchedEntityData/]: defineId called for: class forge.net.mca.entity.VillagerEntityMCA from class forge.net.mca.util.network.datasync.CDataParameter [05Nov2024 19:11:08.002] [main/WARN] [net.minecraft.network.syncher.SynchedEntityData/]: defineId called for: class forge.net.mca.entity.VillagerEntityMCA from class forge.net.mca.util.network.datasync.CDataParameter [05Nov2024 19:11:08.002] [main/WARN] [net.minecraft.network.syncher.SynchedEntityData/]: defineId called for: class forge.net.mca.entity.VillagerEntityMCA from class forge.net.mca.util.network.datasync.CEnumParameter [05Nov2024 19:11:08.003] [main/WARN] [net.minecraft.network.syncher.SynchedEntityData/]: defineId called for: class forge.net.mca.entity.VillagerEntityMCA from class forge.net.mca.util.network.datasync.CDataParameter [05Nov2024 19:11:08.005] [main/WARN] [net.minecraft.network.syncher.SynchedEntityData/]: defineId called for: class forge.net.mca.entity.VillagerEntityMCA from class forge.net.mca.util.network.datasync.CDataParameter [05Nov2024 19:11:08.005] [main/WARN] [net.minecraft.network.syncher.SynchedEntityData/]: defineId called for: class forge.net.mca.entity.VillagerEntityMCA from class forge.net.mca.util.network.datasync.CEnumParameter [05Nov2024 19:11:08.005] [main/WARN] [net.minecraft.network.syncher.SynchedEntityData/]: defineId called for: class forge.net.mca.entity.VillagerEntityMCA from class forge.net.mca.util.network.datasync.CDataParameter [05Nov2024 19:11:08.005] [main/WARN] [net.minecraft.network.syncher.SynchedEntityData/]: defineId called for: class forge.net.mca.entity.VillagerEntityMCA from class forge.net.mca.util.network.datasync.CEnumParameter [05Nov2024 19:11:08.005] [main/WARN] [net.minecraft.network.syncher.SynchedEntityData/]: defineId called for: class forge.net.mca.entity.VillagerEntityMCA from class forge.net.mca.util.network.datasync.CEnumParameter [05Nov2024 19:11:08.005] [main/WARN] [net.minecraft.network.syncher.SynchedEntityData/]: defineId called for: class forge.net.mca.entity.VillagerEntityMCA from class forge.net.mca.util.network.datasync.CDataParameter [05Nov2024 19:11:08.005] [main/WARN] [net.minecraft.network.syncher.SynchedEntityData/]: defineId called for: class forge.net.mca.entity.VillagerEntityMCA from class forge.net.mca.util.network.datasync.CDataParameter [05Nov2024 19:11:08.005] [main/WARN] [net.minecraft.network.syncher.SynchedEntityData/]: defineId called for: class forge.net.mca.entity.VillagerEntityMCA from class forge.net.mca.util.network.datasync.CDataParameter [05Nov2024 19:11:08.005] [main/WARN] [net.minecraft.network.syncher.SynchedEntityData/]: defineId called for: class forge.net.mca.entity.VillagerEntityMCA from class forge.net.mca.util.network.datasync.CDataParameter [05Nov2024 19:11:08.006] [main/WARN] [net.minecraft.network.syncher.SynchedEntityData/]: defineId called for: class forge.net.mca.entity.VillagerEntityMCA from class forge.net.mca.util.network.datasync.CDataParameter [05Nov2024 19:11:08.007] [main/WARN] [net.minecraft.network.syncher.SynchedEntityData/]: defineId called for: class forge.net.mca.entity.VillagerEntityMCA from class forge.net.mca.util.network.datasync.CDataParameter [05Nov2024 19:11:08.010] [main/WARN] [net.minecraft.network.syncher.SynchedEntityData/]: defineId called for: class forge.net.mca.entity.VillagerEntityMCA from class forge.net.mca.util.network.datasync.CDataParameter [05Nov2024 19:11:08.010] [main/WARN] [net.minecraft.network.syncher.SynchedEntityData/]: defineId called for: class forge.net.mca.entity.VillagerEntityMCA from class forge.net.mca.util.network.datasync.CDataParameter [05Nov2024 19:11:08.010] [main/WARN] [net.minecraft.network.syncher.SynchedEntityData/]: defineId called for: class forge.net.mca.entity.VillagerEntityMCA from class forge.net.mca.util.network.datasync.CDataParameter [05Nov2024 19:11:08.010] [main/WARN] [net.minecraft.network.syncher.SynchedEntityData/]: defineId called for: class forge.net.mca.entity.VillagerEntityMCA from class forge.net.mca.util.network.datasync.CDataParameter [05Nov2024 19:11:08.011] [main/WARN] [net.minecraft.network.syncher.SynchedEntityData/]: defineId called for: class forge.net.mca.entity.VillagerEntityMCA from class forge.net.mca.util.network.datasync.CDataParameter [05Nov2024 19:11:08.011] [main/WARN] [net.minecraft.network.syncher.SynchedEntityData/]: defineId called for: class forge.net.mca.entity.GrimReaperEntity from class forge.net.mca.util.network.datasync.CEnumParameter [05Nov2024 19:11:08.056] [main/INFO] [PluginManager/]: Executing phase CONFIG_LOAD for plugin class CuriosPlugin [05Nov2024 19:11:08.056] [main/INFO] [PluginManager/]: Executing phase CONFIG_LOAD for plugin class CuriosPlugin [05Nov2024 19:11:08.057] [main/INFO] [PluginManager/]: Executing phase CONFIG_LOAD for plugin class CuriosPlugin [05Nov2024 19:11:08.057] [main/INFO] [PluginManager/]: Executing phase CONFIG_LOAD for plugin class CuriosPlugin [05Nov2024 19:11:08.058] [main/INFO] [PluginManager/]: Executing phase CONFIG_LOAD for plugin class CuriosPlugin [05Nov2024 19:11:08.078] [main/INFO] [quark/]: Dispatching Module Step CONFIG_CHANGED [05Nov2024 19:11:08.100] [modloading-worker-0/INFO] [net.uknownymous.overhauledstructures.OverhauledStructures/]: Epic! [05Nov2024 19:11:08.102] [modloading-worker-0/INFO] [com.tristankechlo.toolleveling.ToolLeveling/]: Created README.txt in config folder. [05Nov2024 19:11:08.104] [modloading-worker-0/INFO] [PluginManager/]: Executing phase COMMON_SETUP for plugin class CuriosPlugin [05Nov2024 19:11:08.104] [modloading-worker-0/INFO] [dev.wuffs.bcc.BCC/]: Better Compatibility Checker setting up [05Nov2024 19:11:08.104] [modloading-worker-0/INFO] [toms_trading_network/]: Tom's Trading Network Setup starting [05Nov2024 19:11:08.106] [modloading-worker-0/INFO] [io.github.jamalam360.rightclickharvest.RightClickHarvestModInit/]: Initialized [05Nov2024 19:11:08.109] [modloading-worker-0/INFO] [voicechat/]: [voicechat] Compatibility version 18 [05Nov2024 19:11:08.110] [modloading-worker-0/INFO] [HammerLib/]: Setup HammerLib networking! [05Nov2024 19:11:08.110] [modloading-worker-0/INFO] [studio.lunareclipse.watching.Init/]: From The Fog Loaded Successfully! [05Nov2024 19:11:08.111] [modloading-worker-0/INFO] [toms_trading_network/]: Initilaized Network Handler [05Nov2024 19:11:08.113] [modloading-worker-0/INFO] [elocindev.create_questing.forge.CreateQuesting/]: Loaded Create Questing Config [05Nov2024 19:11:08.117] [modloading-worker-0/INFO] [moze_intel.projecte.PECore/]: Found and loaded EMC mapper: CraftingMapper, with priority 0 [05Nov2024 19:11:08.122] [modloading-worker-0/INFO] [com.tristankechlo.toolleveling.ToolLeveling/]: Config 'tool_leveling_table.json' was successfully loaded. [05Nov2024 19:11:08.124] [modloading-worker-0/INFO] [com.tristankechlo.toolleveling.ToolLeveling/]: Saved the checked/corrected config: tool_leveling_table.json [05Nov2024 19:11:08.124] [modloading-worker-0/INFO] [cn.foggyhillside.endsdelight.EndsDelight/]: HELLO FROM PREINIT [05Nov2024 19:11:08.124] [modloading-worker-0/INFO] [moze_intel.projecte.PECore/]: Found and loaded EMC mapper: CustomConversionMapper, with priority 0 [05Nov2024 19:11:08.125] [modloading-worker-0/INFO] [cn.foggyhillside.endsdelight.EndsDelight/]: DIRT BLOCK >> translation{key='block.minecraft.dirt', args=[]} [05Nov2024 19:11:08.125] [modloading-worker-0/INFO] [moze_intel.projecte.PECore/]: Found and loaded EMC mapper: WeatheredCopperMapper, with priority 0 [05Nov2024 19:11:08.126] [modloading-worker-0/INFO] [moze_intel.projecte.PECore/]: Found and loaded EMC mapper: TippedArrowMapper, with priority 0 [05Nov2024 19:11:08.126] [modloading-worker-0/INFO] [com.tristankechlo.toolleveling.ToolLeveling/]: Config 'item_values.json' was successfully loaded. [05Nov2024 19:11:08.127] [modloading-worker-0/INFO] [moze_intel.projecte.PECore/]: Found and loaded EMC mapper: RawOresBlacklistMapper, with priority 0 [05Nov2024 19:11:08.127] [modloading-worker-0/INFO] [moze_intel.projecte.PECore/]: Found and loaded EMC mapper: OresBlacklistMapper, with priority 0 [05Nov2024 19:11:08.128] [modloading-worker-0/INFO] [moze_intel.projecte.PECore/]: Found and loaded EMC mapper: CustomEMCMapper, with priority 0 [05Nov2024 19:11:08.128] [modloading-worker-0/INFO] [com.tristankechlo.toolleveling.ToolLeveling/]: Saved the checked/corrected config: item_values.json [05Nov2024 19:11:08.128] [modloading-worker-0/INFO] [com.tristankechlo.toolleveling.ToolLeveling/]: Config 'command_config.json' was successfully loaded. [05Nov2024 19:11:08.129] [modloading-worker-0/INFO] [com.tristankechlo.toolleveling.ToolLeveling/]: Saved the checked/corrected config: command_config.json [05Nov2024 19:11:08.129] [modloading-worker-0/INFO] [moze_intel.projecte.PECore/]: Found and loaded EMC mapper: BrewingMapper, with priority 0 [05Nov2024 19:11:08.130] [modloading-worker-0/INFO] [com.blocklegend001.craftableenchantedgoldenapple.CraftableEnchantedGoldenApple/]: Mod Loaded! [05Nov2024 19:11:08.131] [modloading-worker-0/INFO] [moze_intel.projecte.PECore/]: Found and loaded EMC mapper: APICustomEMCMapper, with priority 0 [05Nov2024 19:11:08.140] [modloading-worker-0/INFO] [net.tejty.lemoned.Lemoned/]: HELLO FROM COMMON SETUP [05Nov2024 19:11:08.140] [modloading-worker-0/INFO] [net.tejty.lemoned.Lemoned/]: DIRT BLOCK >> minecraft:dirt [05Nov2024 19:11:08.142] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [saturn] Starting version check at https://github.com/AbdElAziz333/Saturn/raw/mc1.20.1/dev/updates.json [05Nov2024 19:11:08.147] [modloading-worker-0/INFO] [FTB Quests Optimizer/]: Enabling FTB Quests Optimizer [05Nov2024 19:11:08.150] [modloading-worker-0/INFO] [net.mehvahdjukaar.every_compat.EveryCompat/]: Registered 3643 compat blocks making up 27.69% of total blocks registered [05Nov2024 19:11:08.151] [modloading-worker-0/INFO] [bno/]: Setup Method Registered (PreInit) [05Nov2024 19:11:08.152] [modloading-worker-0/INFO] [com.rajhab.morevanillashields_mod.morevanillashields/]: morevanillashields: This mod now runs with a config file. Feel free to use it! [05Nov2024 19:11:08.155] [modloading-worker-0/INFO] [moze_intel.projecte.PECore/]: Found and loaded RecipeType Mapper: VanillaRecipeTypes, with priority 0 [05Nov2024 19:11:08.156] [modloading-worker-0/INFO] [moze_intel.projecte.PECore/]: Found and loaded RecipeType Mapper: Smithing, with priority 0 [05Nov2024 19:11:08.156] [modloading-worker-0/INFO] [moze_intel.projecte.PECore/]: Found and loaded RecipeType Mapper: FallbackRecipeType, with priority -2147483648 [05Nov2024 19:11:08.166] [modloading-worker-0/INFO] [CorgiLib/]: Initializing network... [05Nov2024 19:11:08.168] [modloading-worker-0/INFO] [corgitaco.enhancedcelestials.EnhancedCelestials/]: Initialized enhancedcelestials network! [05Nov2024 19:11:08.171] [modloading-worker-0/INFO] [CorgiLib/]: Initialized network! [05Nov2024 19:11:08.179] [modloading-worker-0/INFO] [moze_intel.projecte.PECore/]: Found and loaded NBT Processor: StoredEMCProcessor, with priority 0 [05Nov2024 19:11:08.180] [modloading-worker-0/INFO] [moze_intel.projecte.PECore/]: Found and loaded NBT Processor: EnchantmentProcessor, with priority 0 [05Nov2024 19:11:08.180] [modloading-worker-0/INFO] [com.klikli_dev.occultism.Occultism/]: Registered compostable Items [05Nov2024 19:11:08.180] [modloading-worker-0/INFO] [moze_intel.projecte.PECore/]: Found and loaded NBT Processor: DamageProcessor, with priority 2147483647 [05Nov2024 19:11:08.181] [modloading-worker-0/INFO] [voicechat/]: [voicechat] Loading plugins [05Nov2024 19:11:08.183] [modloading-worker-0/INFO] [com.klikli_dev.occultism.Occultism/]: Common setup complete. [05Nov2024 19:11:08.185] [modloading-worker-0/INFO] [quark/]: Dispatching Module Step CONFIG_CHANGED [05Nov2024 19:11:08.200] [modloading-worker-0/INFO] [quark/]: Dispatching Module Step SETUP [05Nov2024 19:11:08.205] [modloading-worker-0/INFO] [voicechat/]: [voicechat] Loaded 1 plugin(s) [05Nov2024 19:11:08.205] [modloading-worker-0/INFO] [voicechat/]: [voicechat] Initializing plugins [05Nov2024 19:11:08.211] [modloading-worker-0/INFO] [Sound Physics - General/]: Initializing Simple Voice Chat integration [05Nov2024 19:11:08.211] [modloading-worker-0/INFO] [voicechat/]: [voicechat] Initialized 1 plugin(s) [05Nov2024 19:11:08.212] [modloading-worker-0/INFO] [com.klikli_dev.modonomicon.Modonomicon/]: Common setup complete. [05Nov2024 19:11:08.213] [modloading-worker-0/INFO] [voicechat/]: [voicechat] Registering events for 'sound_physics_remastered' [05Nov2024 19:11:08.223] [Thread-0/INFO] [ModernFix/]: Please use /mfsrc to reload any changed mod config files [05Nov2024 19:11:08.240] [modloading-worker-0/ERROR] [survivalistessentials/]: Unable to infer primary tools for 34 blocks with unknown materials. These blocks will not be enforce correct tool. [05Nov2024 19:11:08.240] [modloading-worker-0/WARN] [survivalistessentials/]: Block{create:belt} [05Nov2024 19:11:08.240] [modloading-worker-0/WARN] [survivalistessentials/]: Block{byg:lament_vine} [05Nov2024 19:11:08.240] [modloading-worker-0/WARN] [survivalistessentials/]: Block{byg:lament_vine_plant} [05Nov2024 19:11:08.241] [modloading-worker-0/WARN] [survivalistessentials/]: Block{enchanted:altar} [05Nov2024 19:11:08.241] [modloading-worker-0/WARN] [survivalistessentials/]: Block{enchanted:chalk_gold} [05Nov2024 19:11:08.241] [modloading-worker-0/WARN] [survivalistessentials/]: Block{enchanted:chalk_white} [05Nov2024 19:11:08.241] [modloading-worker-0/WARN] [survivalistessentials/]: Block{enchanted:chalk_red} [05Nov2024 19:11:08.241] [modloading-worker-0/WARN] [survivalistessentials/]: Block{enchanted:chalk_purple} [05Nov2024 19:11:08.241] [modloading-worker-0/WARN] [survivalistessentials/]: Block{endertanks:ender_tank} [05Nov2024 19:11:08.241] [modloading-worker-0/WARN] [survivalistessentials/]: MatrixFrameBlock[matrix_frame] [05Nov2024 19:11:08.241] [modloading-worker-0/WARN] [survivalistessentials/]: Block{gravestone:gravestone} [05Nov2024 19:11:08.241] [modloading-worker-0/WARN] [survivalistessentials/]: LightDetectorBlock[light_detector] [05Nov2024 19:11:08.241] [modloading-worker-0/WARN] [survivalistessentials/]: Block{biomesoplenty:blood} [05Nov2024 19:11:08.241] [modloading-worker-0/WARN] [survivalistessentials/]: Block{byg:therium_crystal_cluster} [05Nov2024 19:11:08.241] [modloading-worker-0/WARN] [survivalistessentials/]: Block{byg:large_therium_crystal_bud} [05Nov2024 19:11:08.241] [modloading-worker-0/WARN] [survivalistessentials/]: Block{byg:medium_therium_crystal_bud} [05Nov2024 19:11:08.241] [modloading-worker-0/WARN] [survivalistessentials/]: Block{byg:small_therium_crystal_bud} [05Nov2024 19:11:08.241] [modloading-worker-0/WARN] [survivalistessentials/]: Block{byg:subzero_crystal_cluster} [05Nov2024 19:11:08.241] [modloading-worker-0/WARN] [survivalistessentials/]: Block{byg:large_subzero_crystal_bud} [05Nov2024 19:11:08.241] [modloading-worker-0/WARN] [survivalistessentials/]: Block{byg:medium_subzero_crystal_bud} [05Nov2024 19:11:08.241] [modloading-worker-0/WARN] [survivalistessentials/]: Block{byg:small_subzero_crystal_bud} [05Nov2024 19:11:08.241] [modloading-worker-0/WARN] [survivalistessentials/]: WirelessBlock[wireless_access_point] [05Nov2024 19:11:08.241] [modloading-worker-0/WARN] [survivalistessentials/]: QuantumLinkChamberBlock[quantum_link] [05Nov2024 19:11:08.241] [modloading-worker-0/WARN] [survivalistessentials/]: SpatialPylonBlock[spatial_pylon] [05Nov2024 19:11:08.241] [modloading-worker-0/WARN] [survivalistessentials/]: EnergyCellBlock[energy_cell] [05Nov2024 19:11:08.241] [modloading-worker-0/WARN] [survivalistessentials/]: EnergyCellBlock[dense_energy_cell] [05Nov2024 19:11:08.241] [modloading-worker-0/WARN] [survivalistessentials/]: CreativeEnergyCellBlock[creative_energy_cell] [05Nov2024 19:11:08.241] [modloading-worker-0/WARN] [survivalistessentials/]: CableBusBlock[cable_bus] [05Nov2024 19:11:08.242] [modloading-worker-0/WARN] [survivalistessentials/]: Block{byg:ametrine_cluster} [05Nov2024 19:11:08.242] [modloading-worker-0/WARN] [survivalistessentials/]: Block{quark:bamboo_mat_carpet} [05Nov2024 19:11:08.242] [modloading-worker-0/WARN] [survivalistessentials/]: Block{occultism:chalk_glyph_white} [05Nov2024 19:11:08.242] [modloading-worker-0/WARN] [survivalistessentials/]: Block{occultism:chalk_glyph_gold} [05Nov2024 19:11:08.242] [modloading-worker-0/WARN] [survivalistessentials/]: Block{occultism:chalk_glyph_purple} [05Nov2024 19:11:08.242] [modloading-worker-0/WARN] [survivalistessentials/]: Block{occultism:chalk_glyph_red} [05Nov2024 19:11:08.243] [modloading-worker-0/WARN] [survivalistessentials/]: Material: [isLiquid=false, isSolid=true, blocksMotion=true, isFlammable=false, isReplaceable=false, isSolidBlocking=true, getPushReaction=NORMAL, getColor=[id=21, col=java.awt.Color[r=76,g=76,b=76]]] | Blocks: Block{create:belt} [05Nov2024 19:11:08.243] [modloading-worker-0/WARN] [survivalistessentials/]: Material: [isLiquid=false, isSolid=true, blocksMotion=true, isFlammable=false, isReplaceable=false, isSolidBlocking=false, getPushReaction=DESTROY, getColor=[id=7, col=java.awt.Color[r=0,g=124,b=0]]] | Blocks: Block{byg:lament_vine}, Block{byg:lament_vine_plant} [05Nov2024 19:11:08.243] [modloading-worker-0/WARN] [survivalistessentials/]: Material: [isLiquid=false, isSolid=true, blocksMotion=true, isFlammable=false, isReplaceable=false, isSolidBlocking=true, getPushReaction=BLOCK, getColor=[id=11, col=java.awt.Color[r=112,g=112,b=112]]] | Blocks: Block{enchanted:altar} [05Nov2024 19:11:08.243] [modloading-worker-0/WARN] [survivalistessentials/]: Material: [isLiquid=false, isSolid=false, blocksMotion=false, isFlammable=false, isReplaceable=false, isSolidBlocking=true, getPushReaction=NORMAL, getColor=[id=0, col=java.awt.Color[r=0,g=0,b=0]]] | Blocks: Block{enchanted:chalk_gold}, Block{enchanted:chalk_white}, Block{enchanted:chalk_red}, Block{enchanted:chalk_purple} [05Nov2024 19:11:08.243] [modloading-worker-0/WARN] [survivalistessentials/]: Material: [isLiquid=false, isSolid=true, blocksMotion=true, isFlammable=false, isReplaceable=false, isSolidBlocking=false, getPushReaction=IGNORE, getColor=[id=9, col=java.awt.Color[r=164,g=168,b=184]]] | Blocks: Block{endertanks:ender_tank} [05Nov2024 19:11:08.243] [modloading-worker-0/WARN] [survivalistessentials/]: Material: [isLiquid=false, isSolid=true, blocksMotion=true, isFlammable=false, isReplaceable=false, isSolidBlocking=false, getPushReaction=PUSH_ONLY, getColor=[id=0, col=java.awt.Color[r=0,g=0,b=0]]] | Blocks: MatrixFrameBlock[matrix_frame] [05Nov2024 19:11:08.243] [modloading-worker-0/WARN] [survivalistessentials/]: Material: [isLiquid=false, isSolid=true, blocksMotion=true, isFlammable=false, isReplaceable=false, isSolidBlocking=false, getPushReaction=BLOCK, getColor=[id=10, col=java.awt.Color[r=151,g=109,b=77]]] | Blocks: Block{gravestone:gravestone} [05Nov2024 19:11:08.243] [modloading-worker-0/WARN] [survivalistessentials/]: Material: [isLiquid=false, isSolid=false, blocksMotion=false, isFlammable=false, isReplaceable=false, isSolidBlocking=false, getPushReaction=DESTROY, getColor=[id=6, col=java.awt.Color[r=167,g=167,b=167]]] | Blocks: LightDetectorBlock[light_detector] [05Nov2024 19:11:08.243] [modloading-worker-0/WARN] [survivalistessentials/]: Material: [isLiquid=true, isSolid=false, blocksMotion=false, isFlammable=false, isReplaceable=true, isSolidBlocking=false, getPushReaction=DESTROY, getColor=[id=28, col=java.awt.Color[r=153,g=51,b=51]]] | Blocks: Block{biomesoplenty:blood} [05Nov2024 19:11:08.243] [modloading-worker-0/WARN] [survivalistessentials/]: Material: [isLiquid=false, isSolid=false, blocksMotion=true, isFlammable=false, isReplaceable=false, isSolidBlocking=true, getPushReaction=NORMAL, getColor=[id=17, col=java.awt.Color[r=102,g=153,b=216]]] | Blocks: Block{byg:therium_crystal_cluster}, Block{byg:large_therium_crystal_bud}, Block{byg:medium_therium_crystal_bud}, Block{byg:small_therium_crystal_bud}, Block{byg:subzero_crystal_cluster}, Block{byg:large_subzero_crystal_bud}, Block{byg:medium_subzero_crystal_bud}, Block{byg:small_subzero_crystal_bud} [05Nov2024 19:11:08.243] [modloading-worker-0/WARN] [survivalistessentials/]: Material: [isLiquid=false, isSolid=false, blocksMotion=true, isFlammable=false, isReplaceable=false, isSolidBlocking=false, getPushReaction=NORMAL, getColor=[id=0, col=java.awt.Color[r=0,g=0,b=0]]] | Blocks: WirelessBlock[wireless_access_point], QuantumLinkChamberBlock[quantum_link], SpatialPylonBlock[spatial_pylon], EnergyCellBlock[energy_cell], EnergyCellBlock[dense_energy_cell], CreativeEnergyCellBlock[creative_energy_cell], CableBusBlock[cable_bus] [05Nov2024 19:11:08.244] [modloading-worker-0/WARN] [survivalistessentials/]: Material: [isLiquid=false, isSolid=false, blocksMotion=true, isFlammable=false, isReplaceable=false, isSolidBlocking=true, getPushReaction=NORMAL, getColor=[id=20, col=java.awt.Color[r=242,g=127,b=165]]] | Blocks: Block{byg:ametrine_cluster} [05Nov2024 19:11:08.244] [modloading-worker-0/WARN] [survivalistessentials/]: Material: [isLiquid=false, isSolid=false, blocksMotion=false, isFlammable=true, isReplaceable=false, isSolidBlocking=false, getPushReaction=DESTROY, getColor=[id=13, col=java.awt.Color[r=143,g=119,b=72]]] | Blocks: Block{quark:bamboo_mat_carpet} [05Nov2024 19:11:08.244] [modloading-worker-0/WARN] [survivalistessentials/]: Material: [isLiquid=false, isSolid=false, blocksMotion=false, isFlammable=false, isReplaceable=true, isSolidBlocking=true, getPushReaction=DESTROY, getColor=[id=0, col=java.awt.Color[r=0,g=0,b=0]]] | Blocks: Block{occultism:chalk_glyph_white}, Block{occultism:chalk_glyph_gold}, Block{occultism:chalk_glyph_purple}, Block{occultism:chalk_glyph_red} [05Nov2024 19:11:08.380] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [saturn] Found status: AHEAD Current: 0.1.4 Target: null [05Nov2024 19:11:08.380] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [hammerlib] Starting version check at https://api.modrinth.com/updates/PlkSuVtM/forge_updates.json [05Nov2024 19:11:08.598] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [hammerlib] Found status: UP_TO_DATE Current: 19.3.82 Target: null [05Nov2024 19:11:08.598] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [projecte] Starting version check at https://raw.githubusercontent.com/sinkillerj/ProjectE/mc1.19.x/update.json [05Nov2024 19:11:08.684] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [projecte] Found status: UP_TO_DATE Current: 1.1.0 Target: null [05Nov2024 19:11:08.684] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [hordes] Starting version check at https://raw.githubusercontent.com/SmileycorpMC/The-Hordes/1.19/update.json [05Nov2024 19:11:08.820] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [hordes] Found status: UP_TO_DATE Current: 1.5.4 Target: null [05Nov2024 19:11:08.820] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [squarry] Starting version check at http://dccg.herokuapp.com/api/fmluc/247393 [05Nov2024 19:11:08.891] [Forge Version Check/WARN] [net.minecraftforge.fml.VersionChecker/]: Failed to process update information com.google.gson.JsonSyntaxException: java.lang.IllegalStateException: Expected BEGIN_OBJECT but was STRING at line 1 column 1 path $ at com.google.gson.Gson.fromJson(Gson.java:975) ~[gson-2.8.9.jar%2370!/:?] at com.google.gson.Gson.fromJson(Gson.java:928) ~[gson-2.8.9.jar%2370!/:?] at com.google.gson.Gson.fromJson(Gson.java:877) ~[gson-2.8.9.jar%2370!/:?] at com.google.gson.Gson.fromJson(Gson.java:848) ~[gson-2.8.9.jar%2370!/:?] at net.minecraftforge.fml.VersionChecker$1.process(VersionChecker.java:183) ~[fmlcore-1.19.2-43.4.0.jar%23598!/:?] at java.lang.Iterable.forEach(Iterable.java:75) [?:?] at net.minecraftforge.fml.VersionChecker$1.run(VersionChecker.java:114) [fmlcore-1.19.2-43.4.0.jar%23598!/:?] Caused by: java.lang.IllegalStateException: Expected BEGIN_OBJECT but was STRING at line 1 column 1 path $ at com.google.gson.stream.JsonReader.beginObject(JsonReader.java:384) ~[gson-2.8.9.jar%2370!/:?] at com.google.gson.internal.bind.MapTypeAdapterFactory$Adapter.read(MapTypeAdapterFactory.java:183) ~[gson-2.8.9.jar%2370!/:?] at com.google.gson.internal.bind.MapTypeAdapterFactory$Adapter.read(MapTypeAdapterFactory.java:145) ~[gson-2.8.9.jar%2370!/:?] at com.google.gson.Gson.fromJson(Gson.java:963) ~[gson-2.8.9.jar%2370!/:?] ... 6 more [05Nov2024 19:11:08.891] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [toms_trading_network] Starting version check at https://raw.githubusercontent.com/tom5454/Toms-Trading-Network/main/version-check.json [05Nov2024 19:11:08.901] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [toms_trading_network] Found status: BETA Current: 0.2.3 Target: 0.2.3 [05Nov2024 19:11:08.901] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [atlaslib] Starting version check at https://raw.githubusercontent.com/SmileycorpMC/Atlas-Lib/1.19/update.json [05Nov2024 19:11:09.032] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [atlaslib] Found status: OUTDATED Current: 1.1.5a Target: 1.1.6 [05Nov2024 19:11:09.032] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [cumulus_menus] Starting version check at https://github.com/The-Aether-Team/Cumulus/raw/1.19.2-develop/update.json [05Nov2024 19:11:09.054] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [cumulus_menus] Found status: OUTDATED Current: 0.0NONE Target: 1.19.2-1.0.0-forge [05Nov2024 19:11:09.054] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [cfm] Starting version check at https://mrcrayfish.com/modupdatejson?id=cfm [05Nov2024 19:11:09.918] [main/INFO] [Framework/SYNCED_ENTITY_DATA]: Registered synced data key cgm:aiming for minecraft:player [05Nov2024 19:11:09.918] [main/INFO] [Framework/SYNCED_ENTITY_DATA]: Registered synced data key cgm:reloading for minecraft:player [05Nov2024 19:11:09.918] [main/INFO] [Framework/SYNCED_ENTITY_DATA]: Registered synced data key cgm:shooting for minecraft:player [05Nov2024 19:11:09.931] [main/INFO] [terrablender/]: Registered region minecraft:overworld to index 0 for type OVERWORLD [05Nov2024 19:11:09.931] [main/INFO] [terrablender/]: Registered region minecraft:nether to index 0 for type NETHER [05Nov2024 19:11:09.931] [main/INFO] [terrablender/]: Registered region aether:the_aether to index 0 for type THE_AETHER [05Nov2024 19:11:09.931] [main/INFO] [terrablender/]: Registered region biomesoplenty:overworld_primary to index 1 for type OVERWORLD [05Nov2024 19:11:09.932] [main/INFO] [terrablender/]: Registered region biomesoplenty:overworld_secondary to index 2 for type OVERWORLD [05Nov2024 19:11:09.932] [main/INFO] [terrablender/]: Registered region biomesoplenty:overworld_rare to index 3 for type OVERWORLD [05Nov2024 19:11:09.932] [main/INFO] [terrablender/]: Registered region biomesoplenty:nether_common to index 1 for type NETHER [05Nov2024 19:11:09.932] [main/INFO] [terrablender/]: Registered region biomesoplenty:nether_rare to index 2 for type NETHER [05Nov2024 19:11:09.946] [main/INFO] [terrablender/]: Registered region deep_aether:deep_aether to index 1 for type THE_AETHER [05Nov2024 19:11:09.968] [main/INFO] [journeymap/]: Initializing Packet Registries [05Nov2024 19:11:09.982] [main/INFO] [tacz/SYNCED_ENTITY_DATA_TAC_COPY]: Registered synced data key tacz:shoot_cool_down for minecraft:living_entity [05Nov2024 19:11:09.982] [main/INFO] [tacz/SYNCED_ENTITY_DATA_TAC_COPY]: Registered synced data key tacz:melee_cool_down for minecraft:living_entity [05Nov2024 19:11:09.982] [main/INFO] [tacz/SYNCED_ENTITY_DATA_TAC_COPY]: Registered synced data key tacz:reload_state for minecraft:living_entity [05Nov2024 19:11:09.982] [main/INFO] [tacz/SYNCED_ENTITY_DATA_TAC_COPY]: Registered synced data key tacz:aiming_progress for minecraft:living_entity [05Nov2024 19:11:09.982] [main/INFO] [tacz/SYNCED_ENTITY_DATA_TAC_COPY]: Registered synced data key tacz:draw_cool_down for minecraft:living_entity [05Nov2024 19:11:09.982] [main/INFO] [tacz/SYNCED_ENTITY_DATA_TAC_COPY]: Registered synced data key tacz:is_aiming for minecraft:living_entity [05Nov2024 19:11:09.983] [main/INFO] [tacz/SYNCED_ENTITY_DATA_TAC_COPY]: Registered synced data key tacz:sprint_time for minecraft:living_entity [05Nov2024 19:11:09.983] [main/INFO] [tacz/SYNCED_ENTITY_DATA_TAC_COPY]: Registered synced data key tacz:bolt_cool_down for minecraft:living_entity [05Nov2024 19:11:10.084] [main/INFO] [moonlight/]: Initialized color sets in 71ms [05Nov2024 19:11:10.141] [main/INFO] [moonlight/]: Initialized color sets in 57ms [05Nov2024 19:11:10.201] [main/INFO] [terrablender/]: Registered region ars_nouveau:overworld to index 4 for type OVERWORLD [05Nov2024 19:11:10.229] [main/INFO] [terrablender/]: Registered region byg:region_0 to index 5 for type OVERWORLD [05Nov2024 19:11:10.230] [main/INFO] [terrablender/]: Registered region byg:region_1 to index 6 for type OVERWORLD [05Nov2024 19:11:10.230] [main/INFO] [terrablender/]: Registered region byg:region_2 to index 7 for type OVERWORLD [05Nov2024 19:11:10.231] [main/INFO] [terrablender/]: Registered region byg:region_3 to index 8 for type OVERWORLD [05Nov2024 19:11:10.258] [modloading-worker-0/INFO] [com.klikli_dev.occultism.Occultism/]: Dedicated server setup complete. [05Nov2024 19:11:10.260] [modloading-worker-0/INFO] [com.klikli_dev.modonomicon.Modonomicon/]: Dedicated server setup complete. [05Nov2024 19:11:10.285] [modloading-worker-0/INFO] [Discord Integration/]: Waiting for JDA to initialize to send starting message... (max 5 seconds before skipping) [05Nov2024 19:11:10.552] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [cfm] Found status: BETA Current: 7.0.0-pre35 Target: 7.0.0-pre35 [05Nov2024 19:11:10.552] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [dynamic_fps] Starting version check at https://api.lostluma.net/updates/dynamic-fps?platform=forge [05Nov2024 19:11:10.747] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [dynamic_fps] Found status: OUTDATED Current: 3.7.3 Target: 3.7.6 [05Nov2024 19:11:10.747] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [unsafe_world_random_access_detector] Starting version check at https://api.modrinth.com/updates/MsGuTgPJ/forge_updates.json [05Nov2024 19:11:10.887] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [unsafe_world_random_access_detector] Found status: UP_TO_DATE Current: 1.1.0+forge Target: null [05Nov2024 19:11:10.887] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [codechickenlib] Starting version check at https://version-check.covers1624.net/check/?mod=CodeChickenLib&mc=1.19.2 [05Nov2024 19:11:11.542] [DiscordIntegration Launch Thread/INFO] [Discord Integration/]: Bot ready [05Nov2024 19:11:11.547] [DiscordIntegration Launch Thread/INFO] [Discord Integration/]: Loading DiscordIntegration Addons... [05Nov2024 19:11:11.551] [DiscordIntegration Launch Thread/INFO] [Discord Integration/]: Addon loading complete! [05Nov2024 19:11:11.551] [DiscordIntegration Launch Thread/INFO] [Discord Integration/]: Loading Linking Database... [05Nov2024 19:11:11.551] [DiscordIntegration Launch Thread/INFO] [Discord Integration/]: Linking Database initialized! [05Nov2024 19:11:11.554] [DiscordIntegration Launch Thread/INFO] [Discord Integration/]: LinkManager load | cache: [] [05Nov2024 19:11:11.739] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [codechickenlib] Found status: UP_TO_DATE Current: 4.3.2.490 Target: null [05Nov2024 19:11:11.740] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [enchantinginfuser] Starting version check at https://raw.githubusercontent.com/Fuzss/modresources/main/update/enchantinginfuser.json [05Nov2024 19:11:11.748] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [enchantinginfuser] Found status: UP_TO_DATE Current: 4.2.2 Target: null [05Nov2024 19:11:11.748] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [sliceanddice] Starting version check at https://api.modrinth.com/updates/slice-and-dice/forge_updates.json [05Nov2024 19:11:11.882] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [sliceanddice] Found status: UP_TO_DATE Current: 2.4.0 Target: null [05Nov2024 19:11:11.882] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [fastload] Starting version check at https://github.com/BumbleSoftware/Fastload/raw/Forge-1.20.1/updates.json [05Nov2024 19:11:11.900] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [fastload] Found status: UP_TO_DATE Current: 3.4.0 Target: null [05Nov2024 19:11:11.900] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [cgm] Starting version check at https://raw.githubusercontent.com/MrCrayfish/ModUpdates/master/cgm/update.json [05Nov2024 19:11:11.909] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [cgm] Found status: BETA Current: 1.3.7 Target: null [05Nov2024 19:11:11.909] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [mr_edf_remastered] Starting version check at https://api.modrinth.com/updates/HQsBdHGd/forge_updates.json [05Nov2024 19:11:12.061] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [mr_edf_remastered] Found status: OUTDATED Current: 4.3 Target: 4.3+mod [05Nov2024 19:11:12.061] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [attributefix] Starting version check at https://updates.blamejared.com/get?n=attributefix&gv=1.19.2 [05Nov2024 19:11:12.171] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [attributefix] Found status: BETA_OUTDATED Current: 17.2.7 Target: 17.2.8 [05Nov2024 19:11:12.172] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [aethersteel] Starting version check at https://raw.githubusercontent.com/Ross2750/Aethersteel/main/updatechecker.json [05Nov2024 19:11:12.309] [Forge Version Check/WARN] [net.minecraftforge.fml.VersionChecker/]: Failed to process update information com.google.gson.JsonSyntaxException: com.google.gson.stream.MalformedJsonException: Expected name at line 7 column 4 path $..1.20.1-latest at com.google.gson.Gson.fromJson(Gson.java:978) ~[gson-2.8.9.jar%2370!/:?] at com.google.gson.Gson.fromJson(Gson.java:928) ~[gson-2.8.9.jar%2370!/:?] at com.google.gson.Gson.fromJson(Gson.java:877) ~[gson-2.8.9.jar%2370!/:?] at com.google.gson.Gson.fromJson(Gson.java:848) ~[gson-2.8.9.jar%2370!/:?] at net.minecraftforge.fml.VersionChecker$1.process(VersionChecker.java:183) ~[fmlcore-1.19.2-43.4.0.jar%23598!/:?] at java.lang.Iterable.forEach(Iterable.java:75) [?:?] at net.minecraftforge.fml.VersionChecker$1.run(VersionChecker.java:114) [fmlcore-1.19.2-43.4.0.jar%23598!/:?] Caused by: com.google.gson.stream.MalformedJsonException: Expected name at line 7 column 4 path $..1.20.1-latest at com.google.gson.stream.JsonReader.syntaxError(JsonReader.java:1562) ~[gson-2.8.9.jar%2370!/:?] at com.google.gson.stream.JsonReader.doPeek(JsonReader.java:504) ~[gson-2.8.9.jar%2370!/:?] at com.google.gson.stream.JsonReader.hasNext(JsonReader.java:413) ~[gson-2.8.9.jar%2370!/:?] at com.google.gson.internal.bind.ObjectTypeAdapter.read(ObjectTypeAdapter.java:88) ~[gson-2.8.9.jar%2370!/:?] at com.google.gson.internal.bind.TypeAdapterRuntimeTypeWrapper.read(TypeAdapterRuntimeTypeWrapper.java:41) ~[gson-2.8.9.jar%2370!/:?] at com.google.gson.internal.bind.MapTypeAdapterFactory$Adapter.read(MapTypeAdapterFactory.java:187) ~[gson-2.8.9.jar%2370!/:?] at com.google.gson.internal.bind.MapTypeAdapterFactory$Adapter.read(MapTypeAdapterFactory.java:145) ~[gson-2.8.9.jar%2370!/:?] at com.google.gson.Gson.fromJson(Gson.java:963) ~[gson-2.8.9.jar%2370!/:?] ... 6 more [05Nov2024 19:11:12.309] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [aether_treasure_reforging] Starting version check at https://github.com/The-Aether-Team/Treasure-Reforging/raw/1.19.2-develop/update.json [05Nov2024 19:11:12.566] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [aether_treasure_reforging] Found status: UP_TO_DATE Current: 1.19.2-1.0.1-forge Target: null [05Nov2024 19:11:12.566] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [forge] Starting version check at https://files.minecraftforge.net/net/minecraftforge/forge/promotions_slim.json [05Nov2024 19:11:12.716] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [forge] Found status: UP_TO_DATE Current: 43.4.0 Target: null [05Nov2024 19:11:12.717] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [mr_construct_andbettercombat] Starting version check at https://api.modrinth.com/updates/EHyfipTl/forge_updates.json [05Nov2024 19:11:12.943] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [mr_construct_andbettercombat] Found status: UP_TO_DATE Current: 1 Target: null [05Nov2024 19:11:12.943] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [zerocore] Starting version check at https://raw.githubusercontent.com/ZeroNoRyouki/ModUpdates/master/ZeroCore2.json [05Nov2024 19:11:12.952] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [zerocore] Found status: AHEAD Current: 1.19.2-2.1.39 Target: null [05Nov2024 19:11:12.952] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [voicechat] Starting version check at https://update.maxhenkel.de/forge/voicechat [05Nov2024 19:11:13.112] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [voicechat] Found status: OUTDATED Current: 1.19.2-2.5.24 Target: 1.19.2-2.5.25 [05Nov2024 19:11:13.112] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [sound_physics_remastered] Starting version check at https://update.maxhenkel.de/forge/sound_physics_remastered [05Nov2024 19:11:13.138] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [sound_physics_remastered] Found status: AHEAD Current: 1.19.2-1.4.5 Target: null [05Nov2024 19:11:13.138] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [pcf] Starting version check at https://api.modrinth.com/updates/proxy-compatible-forge/forge_updates.json [05Nov2024 19:11:13.303] [modloading-worker-0/INFO] [Discord Integration/]: Finished registering! Registered 8 commands [05Nov2024 19:11:13.328] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [pcf] Found status: OUTDATED Current: 1.1.5 Target: 1.1.7 [05Nov2024 19:11:13.328] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [flywheel] Starting version check at https://api.modrinth.com/updates/flywheel/forge_updates.json [05Nov2024 19:11:13.402] [modloading-worker-0/INFO] [com.axedgaming.endersdelight.EndersDelight/]: Hello world from the MDK [05Nov2024 19:11:13.402] [modloading-worker-0/INFO] [com.axedgaming.endersdelight.EndersDelight/]: Got IMC [Hello world] [05Nov2024 19:11:13.405] [modloading-worker-0/INFO] [HammerLib/]: Performed registerFoil from hammerlib. Determined constant(0xFFFFFF0F) foil provider [05Nov2024 19:11:13.405] [modloading-worker-0/INFO] [HammerLib/]: Performed registerFoil from hammerlib. Determined dynamic(org.zeith.hammerlib.client.CustomFoilConfigs$$Lambda$37125/0x00007fbe3bdcf258@560e85e1) foil provider [05Nov2024 19:11:13.473] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [flywheel] Found status: AHEAD Current: 0.6.11-22 Target: null [05Nov2024 19:11:13.473] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [gravestone] Starting version check at https://update.maxhenkel.de/forge/gravestone [05Nov2024 19:11:13.499] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [gravestone] Found status: AHEAD Current: 1.19.2-1.0.24 Target: null [05Nov2024 19:11:13.499] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [securitycraft] Starting version check at https://www.github.com/Geforce132/SecurityCraft/raw/master/Updates/Forge.json [05Nov2024 19:11:13.507] [modloading-worker-0/INFO] [quark/]: Dispatching Module Step LOAD_COMPLETE [05Nov2024 19:11:13.509] [modloading-worker-0/INFO] [AttributeFix/]: Loaded values for 57 compatible attributes. [05Nov2024 19:11:13.510] [modloading-worker-0/ERROR] [AttributeFix/]: Attribute ID 'siren_head:idledespawn' does not belong to a known attribute. This entry will be ignored. [05Nov2024 19:11:13.510] [modloading-worker-0/ERROR] [AttributeFix/]: Attribute ID 'siren_head:z_des_cord' does not belong to a known attribute. This entry will be ignored. [05Nov2024 19:11:13.510] [modloading-worker-0/ERROR] [AttributeFix/]: Attribute ID 'siren_head:despawn' does not belong to a known attribute. This entry will be ignored. [05Nov2024 19:11:13.510] [modloading-worker-0/ERROR] [AttributeFix/]: Attribute ID 'siren_head:stay' does not belong to a known attribute. This entry will be ignored. [05Nov2024 19:11:13.510] [modloading-worker-0/ERROR] [AttributeFix/]: Attribute ID 'siren_head:idlesounddel' does not belong to a known attribute. This entry will be ignored. [05Nov2024 19:11:13.510] [modloading-worker-0/ERROR] [AttributeFix/]: Attribute ID 'siren_head:attackrange' does not belong to a known attribute. This entry will be ignored. [05Nov2024 19:11:13.510] [modloading-worker-0/ERROR] [AttributeFix/]: Attribute ID 'siren_head:idleanim' does not belong to a known attribute. This entry will be ignored. [05Nov2024 19:11:13.510] [modloading-worker-0/ERROR] [AttributeFix/]: Attribute ID 'siren_head:still' does not belong to a known attribute. This entry will be ignored. [05Nov2024 19:11:13.510] [modloading-worker-0/ERROR] [AttributeFix/]: Attribute ID 'siren_head:runaway' does not belong to a known attribute. This entry will be ignored. [05Nov2024 19:11:13.510] [modloading-worker-0/ERROR] [AttributeFix/]: Attribute ID 'siren_head:hunt' does not belong to a known attribute. This entry will be ignored. [05Nov2024 19:11:13.510] [modloading-worker-0/ERROR] [AttributeFix/]: Attribute ID 'siren_head:x_des_cord' does not belong to a known attribute. This entry will be ignored. [05Nov2024 19:11:13.510] [modloading-worker-0/ERROR] [AttributeFix/]: Attribute ID 'siren_head:horncooldown' does not belong to a known attribute. This entry will be ignored. [05Nov2024 19:11:13.510] [modloading-worker-0/ERROR] [AttributeFix/]: Attribute ID 'siren_head:stroll_cooldown' does not belong to a known attribute. This entry will be ignored. [05Nov2024 19:11:13.510] [modloading-worker-0/ERROR] [AttributeFix/]: Attribute ID 'siren_head:detectionrange' does not belong to a known attribute. This entry will be ignored. [05Nov2024 19:11:13.510] [modloading-worker-0/ERROR] [AttributeFix/]: Attribute ID 'siren_head:noescapemotion' does not belong to a known attribute. This entry will be ignored. [05Nov2024 19:11:13.510] [modloading-worker-0/ERROR] [AttributeFix/]: Attribute ID 'siren_head:faku' does not belong to a known attribute. This entry will be ignored. [05Nov2024 19:11:13.510] [modloading-worker-0/ERROR] [AttributeFix/]: Attribute ID 'siren_head:stalktime' does not belong to a known attribute. This entry will be ignored. [05Nov2024 19:11:13.510] [modloading-worker-0/ERROR] [AttributeFix/]: Attribute ID 'siren_head:attackid' does not belong to a known attribute. This entry will be ignored. [05Nov2024 19:11:13.510] [modloading-worker-0/ERROR] [AttributeFix/]: Attribute ID 'siren_head:chasetime' does not belong to a known attribute. This entry will be ignored. [05Nov2024 19:11:13.510] [modloading-worker-0/ERROR] [AttributeFix/]: Attribute ID 'siren_head:y_des_cord' does not belong to a known attribute. This entry will be ignored. [05Nov2024 19:11:13.510] [modloading-worker-0/INFO] [AttributeFix/]: Loaded 77 values from config. [05Nov2024 19:11:13.517] [modloading-worker-0/INFO] [AttributeFix/]: Saving config file. 77 entries. [05Nov2024 19:11:13.517] [modloading-worker-0/INFO] [AttributeFix/]: Applying changes for 77 attributes. [05Nov2024 19:11:13.552] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [securitycraft] Found status: UP_TO_DATE Current: 1.9.6.1 Target: null [05Nov2024 19:11:13.552] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [occultism] Starting version check at https://raw.githubusercontent.com/klikli-dev/occultism/meta/updates.json [05Nov2024 19:11:13.561] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [occultism] Found status: AHEAD Current: 1.90.0 Target: null [05Nov2024 19:11:13.561] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [puzzleslib] Starting version check at https://raw.githubusercontent.com/Fuzss/modresources/main/update/puzzleslib.json [05Nov2024 19:11:13.566] [main/INFO] [terrablender/]: Registered region quark:biome_provider to index 9 for type OVERWORLD [05Nov2024 19:11:13.568] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [puzzleslib] Found status: UP_TO_DATE Current: 4.4.3 Target: null [05Nov2024 19:11:13.568] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [parry] Starting version check at https://raw.githubusercontent.com/Drullkus/Shield-Parry/1.19.x/update.json [05Nov2024 19:11:13.722] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [parry] Found status: BETA Current: 2.4.1.1 Target: null [05Nov2024 19:11:13.723] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [unionlib] Starting version check at https://raw.githubusercontent.com/Stereowalker/My-Home-Page/main/update_files/unionlib.json [05Nov2024 19:11:13.886] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [unionlib] Found status: BETA Current: 9.0.3.1 Target: 9.0.2.1 [05Nov2024 19:11:13.887] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [unionlib_potionfluid] Starting version check at https://raw.githubusercontent.com/Stereowalker/My-Home-Page/main/update_files/unionlib-potions-fluids.json [05Nov2024 19:11:13.895] [main/INFO] [com.mojang.authlib.yggdrasil.YggdrasilAuthenticationService/]: Environment: authHost='https://authserver.mojang.com', accountsHost='https://api.mojang.com', sessionHost='https://sessionserver.mojang.com', servicesHost='https://api.minecraftservices.com', name='PROD' [05Nov2024 19:11:14.016] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [unionlib_potionfluid] Found status: BETA Current: 1.0.0 Target: null [05Nov2024 19:11:14.016] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [aether] Starting version check at https://github.com/The-Aether-Team/The-Aether/raw/1.19.2-develop/update.json [05Nov2024 19:11:14.110] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [aether] Found status: OUTDATED Current: 0.0NONE Target: 1.19.2-1.5.0-forge [05Nov2024 19:11:14.111] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [controlling] Starting version check at https://updates.blamejared.com/get?n=controlling&gv=1.19.2 [05Nov2024 19:11:14.140] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [controlling] Found status: BETA Current: 10.0+7 Target: 10.0+7 [05Nov2024 19:11:14.140] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [mr_better_deepslateoredrops] Starting version check at https://api.modrinth.com/updates/gmNwzHiE/forge_updates.json [05Nov2024 19:11:14.298] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [mr_better_deepslateoredrops] Found status: AHEAD Current: 2 Target: null [05Nov2024 19:11:14.298] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [bookshelf] Starting version check at https://updates.blamejared.com/get?n=bookshelf&gv=1.19.2 [05Nov2024 19:11:14.328] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [bookshelf] Found status: BETA Current: 16.3.20 Target: 16.3.20 [05Nov2024 19:11:14.328] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [shieldexp] Starting version check at https://infernalstudios.org/api/mods/shieldexpansion/forge [05Nov2024 19:11:14.380] [main/WARN] [net.minecraft.server.packs.VanillaPackResources/]: Assets URL 'union:/home/container/libraries/net/minecraft/server/1.19.2-20220805.130853/server-1.19.2-20220805.130853-srg.jar%23597!/assets/.mcassetsroot' uses unexpected schema [05Nov2024 19:11:14.380] [main/WARN] [net.minecraft.server.packs.VanillaPackResources/]: Assets URL 'union:/home/container/libraries/net/minecraft/server/1.19.2-20220805.130853/server-1.19.2-20220805.130853-srg.jar%23597!/data/.mcassetsroot' uses unexpected schema [05Nov2024 19:11:14.380] [main/ERROR] [net.minecraft.server.packs.VanillaPackResources/]: File /things/.mcassetsroot does not exist in classpath [05Nov2024 19:11:14.407] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [shieldexp] Found status: BETA Current: 1.1.7a Target: null [05Nov2024 19:11:14.407] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [twilightforest] Starting version check at https://gh.tamaized.com/TeamTwilight/twilightforest/update.json [05Nov2024 19:11:14.855] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [twilightforest] Found status: BETA Current: 4.2.1518 Target: null [05Nov2024 19:11:14.856] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [survive] Starting version check at https://www.stereowalker.com/update_files/survive.json [05Nov2024 19:11:14.871] [main/ERROR] [net.mehvahdjukaar.every_compat.EveryCompat/]: Failed to generate recipe for cfm/iceandfire/stripped_dreadwood_upgraded_fence: recipe template returned null [05Nov2024 19:11:14.871] [main/ERROR] [net.mehvahdjukaar.every_compat.EveryCompat/]: Failed to generate recipe for cfm/enchanted/stripped_rowan_upgraded_fence: recipe template returned null [05Nov2024 19:11:14.871] [main/ERROR] [net.mehvahdjukaar.every_compat.EveryCompat/]: Failed to generate recipe for cfm/ars_nouveau/stripped_archwood_upgraded_fence: recipe template returned null [05Nov2024 19:11:14.871] [main/ERROR] [net.mehvahdjukaar.every_compat.EveryCompat/]: Failed to generate recipe for cfm/byg/stripped_imparius_upgraded_fence: recipe template returned null [05Nov2024 19:11:14.872] [main/ERROR] [net.mehvahdjukaar.every_compat.EveryCompat/]: Failed to generate recipe for cfm/enchanted/stripped_hawthorn_upgraded_fence: recipe template returned null [05Nov2024 19:11:14.872] [main/ERROR] [net.mehvahdjukaar.every_compat.EveryCompat/]: Failed to generate recipe for cfm/quark/stripped_bamboo_upgraded_fence: recipe template returned null [05Nov2024 19:11:14.872] [main/ERROR] [net.mehvahdjukaar.every_compat.EveryCompat/]: Failed to generate recipe for cfm/enchanted/stripped_alder_upgraded_fence: recipe template returned null [05Nov2024 19:11:14.872] [main/ERROR] [net.mehvahdjukaar.every_compat.EveryCompat/]: Failed to generate recipe for cfm/theabyss/stripped_vigilant_upgraded_fence: recipe template returned null [05Nov2024 19:11:14.903] [main/ERROR] [net.mehvahdjukaar.every_compat.EveryCompat/]: Failed to generate recipe for cfm/iceandfire/stripped_dreadwood_upgraded_gate: recipe template returned null [05Nov2024 19:11:14.904] [main/ERROR] [net.mehvahdjukaar.every_compat.EveryCompat/]: Failed to generate recipe for cfm/enchanted/stripped_rowan_upgraded_gate: recipe template returned null [05Nov2024 19:11:14.904] [main/ERROR] [net.mehvahdjukaar.every_compat.EveryCompat/]: Failed to generate recipe for cfm/ars_nouveau/stripped_archwood_upgraded_gate: recipe template returned null [05Nov2024 19:11:14.904] [main/ERROR] [net.mehvahdjukaar.every_compat.EveryCompat/]: Failed to generate recipe for cfm/byg/stripped_imparius_upgraded_gate: recipe template returned null [05Nov2024 19:11:14.904] [main/ERROR] [net.mehvahdjukaar.every_compat.EveryCompat/]: Failed to generate recipe for cfm/enchanted/stripped_hawthorn_upgraded_gate: recipe template returned null [05Nov2024 19:11:14.904] [main/ERROR] [net.mehvahdjukaar.every_compat.EveryCompat/]: Failed to generate recipe for cfm/quark/stripped_bamboo_upgraded_gate: recipe template returned null [05Nov2024 19:11:14.904] [main/ERROR] [net.mehvahdjukaar.every_compat.EveryCompat/]: Failed to generate recipe for cfm/enchanted/stripped_alder_upgraded_gate: recipe template returned null [05Nov2024 19:11:14.904] [main/ERROR] [net.mehvahdjukaar.every_compat.EveryCompat/]: Failed to generate recipe for cfm/theabyss/stripped_vigilant_upgraded_gate: recipe template returned null [05Nov2024 19:11:14.923] [main/ERROR] [net.mehvahdjukaar.every_compat.EveryCompat/]: Failed to generate recipe for cfm/croptopia/cinnamon_hedge: recipe template returned null [05Nov2024 19:11:15.000] [main/ERROR] [net.mehvahdjukaar.every_compat.EveryCompat/]: Failed to generate recipe for fd/iceandfire/dreadwood_cabinet: recipe template returned null [05Nov2024 19:11:15.045] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [survive] Found status: BETA Current: 1.19.2-8.0.8.2 Target: null [05Nov2024 19:11:15.045] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [bigreactors] Starting version check at https://raw.githubusercontent.com/ZeroNoRyouki/ModUpdates/master/ExtremeReactors2.json [05Nov2024 19:11:15.054] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [bigreactors] Found status: AHEAD Current: 1.19.2-2.0.71 Target: null [05Nov2024 19:11:15.054] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [framework] Starting version check at https://mrcrayfish.com/modupdatejson?id=framework [05Nov2024 19:11:15.060] [main/ERROR] [net.mehvahdjukaar.every_compat.EveryCompat/]: Failed to generate recipe for q/theabyss/frozen_post: recipe template returned null [05Nov2024 19:11:15.060] [main/ERROR] [net.mehvahdjukaar.every_compat.EveryCompat/]: Failed to generate recipe for q/theabyss/slimed_post: recipe template returned null [05Nov2024 19:11:15.060] [main/ERROR] [net.mehvahdjukaar.every_compat.EveryCompat/]: Failed to generate recipe for q/ars_nouveau/archwood_post: recipe template returned null [05Nov2024 19:11:15.061] [main/ERROR] [net.mehvahdjukaar.every_compat.EveryCompat/]: Failed to generate recipe for q/mynethersdelight/powdery_post: recipe template returned null [05Nov2024 19:11:15.061] [main/ERROR] [net.mehvahdjukaar.every_compat.EveryCompat/]: Failed to generate recipe for q/theabyss/vigilant_post: recipe template returned null [05Nov2024 19:11:15.061] [main/ERROR] [net.mehvahdjukaar.every_compat.EveryCompat/]: Failed to generate recipe for q/theabyss/blaru_post: recipe template returned null [05Nov2024 19:11:15.074] [main/ERROR] [net.mehvahdjukaar.every_compat.EveryCompat/]: Failed to generate recipe for q/theabyss/stripped_frozen_post: recipe template returned null [05Nov2024 19:11:15.075] [main/ERROR] [net.mehvahdjukaar.every_compat.EveryCompat/]: Failed to generate recipe for q/theabyss/stripped_slimed_post: recipe template returned null [05Nov2024 19:11:15.075] [main/ERROR] [net.mehvahdjukaar.every_compat.EveryCompat/]: Failed to generate recipe for q/mynethersdelight/stripped_powdery_post: recipe template returned null [05Nov2024 19:11:15.075] [main/ERROR] [net.mehvahdjukaar.every_compat.EveryCompat/]: Failed to generate recipe for q/theabyss/stripped_blaru_post: recipe template returned null [05Nov2024 19:11:15.150] [main/ERROR] [net.mehvahdjukaar.every_compat.EveryCompat/]: Failed to generate recipe for q/croptopia/cinnamon_hedge: recipe template returned null [05Nov2024 19:11:15.166] [main/ERROR] [net.mehvahdjukaar.every_compat.EveryCompat/]: Failed to generate recipe for q/croptopia/cinnamon_leaf_carpet: recipe template returned null [05Nov2024 19:11:15.186] [main/ERROR] [net.mehvahdjukaar.every_compat.EveryCompat/]: Failed to generate recipe for tf/iceandfire/dreadwood_banister: recipe template returned null [05Nov2024 19:11:15.191] [main/INFO] [net.mehvahdjukaar.every_compat.EveryCompat/]: Generated runtime SERVER_DATA for pack Everycomp Generated Pack in: 688 ms [05Nov2024 19:11:15.879] [main/ERROR] [net.mehvahdjukaar.every_compat.EveryCompat/]: Failed to generate recipe for cfm/iceandfire/stripped_dreadwood_upgraded_fence: recipe template returned null [05Nov2024 19:11:15.879] [main/ERROR] [net.mehvahdjukaar.every_compat.EveryCompat/]: Failed to generate recipe for cfm/enchanted/stripped_rowan_upgraded_fence: recipe template returned null [05Nov2024 19:11:15.879] [main/ERROR] [net.mehvahdjukaar.every_compat.EveryCompat/]: Failed to generate recipe for cfm/ars_nouveau/stripped_archwood_upgraded_fence: recipe template returned null [05Nov2024 19:11:15.879] [main/ERROR] [net.mehvahdjukaar.every_compat.EveryCompat/]: Failed to generate recipe for cfm/byg/stripped_imparius_upgraded_fence: recipe template returned null [05Nov2024 19:11:15.879] [main/ERROR] [net.mehvahdjukaar.every_compat.EveryCompat/]: Failed to generate recipe for cfm/enchanted/stripped_hawthorn_upgraded_fence: recipe template returned null [05Nov2024 19:11:15.879] [main/ERROR] [net.mehvahdjukaar.every_compat.EveryCompat/]: Failed to generate recipe for cfm/quark/stripped_bamboo_upgraded_fence: recipe template returned null [05Nov2024 19:11:15.880] [main/ERROR] [net.mehvahdjukaar.every_compat.EveryCompat/]: Failed to generate recipe for cfm/enchanted/stripped_alder_upgraded_fence: recipe template returned null [05Nov2024 19:11:15.880] [main/ERROR] [net.mehvahdjukaar.every_compat.EveryCompat/]: Failed to generate recipe for cfm/theabyss/stripped_vigilant_upgraded_fence: recipe template returned null [05Nov2024 19:11:15.924] [main/ERROR] [net.mehvahdjukaar.every_compat.EveryCompat/]: Failed to generate recipe for cfm/iceandfire/stripped_dreadwood_upgraded_gate: recipe template returned null [05Nov2024 19:11:15.924] [main/ERROR] [net.mehvahdjukaar.every_compat.EveryCompat/]: Failed to generate recipe for cfm/enchanted/stripped_rowan_upgraded_gate: recipe template returned null [05Nov2024 19:11:15.924] [main/ERROR] [net.mehvahdjukaar.every_compat.EveryCompat/]: Failed to generate recipe for cfm/ars_nouveau/stripped_archwood_upgraded_gate: recipe template returned null [05Nov2024 19:11:15.924] [main/ERROR] [net.mehvahdjukaar.every_compat.EveryCompat/]: Failed to generate recipe for cfm/byg/stripped_imparius_upgraded_gate: recipe template returned null [05Nov2024 19:11:15.925] [main/ERROR] [net.mehvahdjukaar.every_compat.EveryCompat/]: Failed to generate recipe for cfm/enchanted/stripped_hawthorn_upgraded_gate: recipe template returned null [05Nov2024 19:11:15.925] [main/ERROR] [net.mehvahdjukaar.every_compat.EveryCompat/]: Failed to generate recipe for cfm/quark/stripped_bamboo_upgraded_gate: recipe template returned null [05Nov2024 19:11:15.925] [main/ERROR] [net.mehvahdjukaar.every_compat.EveryCompat/]: Failed to generate recipe for cfm/enchanted/stripped_alder_upgraded_gate: recipe template returned null [05Nov2024 19:11:15.925] [main/ERROR] [net.mehvahdjukaar.every_compat.EveryCompat/]: Failed to generate recipe for cfm/theabyss/stripped_vigilant_upgraded_gate: recipe template returned null [05Nov2024 19:11:15.934] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [framework] Found status: BETA_OUTDATED Current: 0.6.16 Target: 0.7.12 [05Nov2024 19:11:15.934] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [obscure_api] Starting version check at https://raw.githubusercontent.com/ObscuriaLithium/Home/main/obscure_api/versions.json [05Nov2024 19:11:15.948] [main/ERROR] [net.mehvahdjukaar.every_compat.EveryCompat/]: Failed to generate recipe for cfm/croptopia/cinnamon_hedge: recipe template returned null [05Nov2024 19:11:15.956] [main/ERROR] [net.mehvahdjukaar.every_compat.EveryCompat/]: Failed to generate recipe for fd/iceandfire/dreadwood_cabinet: recipe template returned null [05Nov2024 19:11:15.991] [main/ERROR] [net.mehvahdjukaar.every_compat.EveryCompat/]: Failed to generate recipe for q/theabyss/frozen_post: recipe template returned null [05Nov2024 19:11:15.991] [main/ERROR] [net.mehvahdjukaar.every_compat.EveryCompat/]: Failed to generate recipe for q/theabyss/slimed_post: recipe template returned null [05Nov2024 19:11:15.991] [main/ERROR] [net.mehvahdjukaar.every_compat.EveryCompat/]: Failed to generate recipe for q/ars_nouveau/archwood_post: recipe template returned null [05Nov2024 19:11:15.991] [main/ERROR] [net.mehvahdjukaar.every_compat.EveryCompat/]: Failed to generate recipe for q/mynethersdelight/powdery_post: recipe template returned null [05Nov2024 19:11:15.991] [main/ERROR] [net.mehvahdjukaar.every_compat.EveryCompat/]: Failed to generate recipe for q/theabyss/vigilant_post: recipe template returned null [05Nov2024 19:11:15.991] [main/ERROR] [net.mehvahdjukaar.every_compat.EveryCompat/]: Failed to generate recipe for q/theabyss/blaru_post: recipe template returned null [05Nov2024 19:11:16.007] [main/ERROR] [net.mehvahdjukaar.every_compat.EveryCompat/]: Failed to generate recipe for q/theabyss/stripped_frozen_post: recipe template returned null [05Nov2024 19:11:16.007] [main/ERROR] [net.mehvahdjukaar.every_compat.EveryCompat/]: Failed to generate recipe for q/theabyss/stripped_slimed_post: recipe template returned null [05Nov2024 19:11:16.007] [main/ERROR] [net.mehvahdjukaar.every_compat.EveryCompat/]: Failed to generate recipe for q/mynethersdelight/stripped_powdery_post: recipe template returned null [05Nov2024 19:11:16.007] [main/ERROR] [net.mehvahdjukaar.every_compat.EveryCompat/]: Failed to generate recipe for q/theabyss/stripped_blaru_post: recipe template returned null [05Nov2024 19:11:16.022] [Forge Version Check/WARN] [net.minecraftforge.fml.VersionChecker/]: Failed to process update information com.google.gson.JsonSyntaxException: java.lang.IllegalStateException: Expected BEGIN_OBJECT but was NUMBER at line 1 column 4 path $ at com.google.gson.Gson.fromJson(Gson.java:975) ~[gson-2.8.9.jar%2370!/:?] at com.google.gson.Gson.fromJson(Gson.java:928) ~[gson-2.8.9.jar%2370!/:?] at com.google.gson.Gson.fromJson(Gson.java:877) ~[gson-2.8.9.jar%2370!/:?] at com.google.gson.Gson.fromJson(Gson.java:848) ~[gson-2.8.9.jar%2370!/:?] at net.minecraftforge.fml.VersionChecker$1.process(VersionChecker.java:183) ~[fmlcore-1.19.2-43.4.0.jar%23598!/:?] at java.lang.Iterable.forEach(Iterable.java:75) [?:?] at net.minecraftforge.fml.VersionChecker$1.run(VersionChecker.java:114) [fmlcore-1.19.2-43.4.0.jar%23598!/:?] Caused by: java.lang.IllegalStateException: Expected BEGIN_OBJECT but was NUMBER at line 1 column 4 path $ at com.google.gson.stream.JsonReader.beginObject(JsonReader.java:384) ~[gson-2.8.9.jar%2370!/:?] at com.google.gson.internal.bind.MapTypeAdapterFactory$Adapter.read(MapTypeAdapterFactory.java:183) ~[gson-2.8.9.jar%2370!/:?] at com.google.gson.internal.bind.MapTypeAdapterFactory$Adapter.read(MapTypeAdapterFactory.java:145) ~[gson-2.8.9.jar%2370!/:?] at com.google.gson.Gson.fromJson(Gson.java:963) ~[gson-2.8.9.jar%2370!/:?] ... 6 more [05Nov2024 19:11:16.023] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [clumps] Starting version check at https://updates.blamejared.com/get?n=clumps&gv=1.19.2 [05Nov2024 19:11:16.052] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [clumps] Found status: BETA Current: 9.0.0+14 Target: 9.0.0+14 [05Nov2024 19:11:16.053] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [journeymap] Starting version check at https://forge.curseupdate.com/32274/journeymap [05Nov2024 19:11:16.095] [main/ERROR] [net.mehvahdjukaar.every_compat.EveryCompat/]: Failed to generate recipe for q/croptopia/cinnamon_hedge: recipe template returned null [05Nov2024 19:11:16.112] [main/ERROR] [net.mehvahdjukaar.every_compat.EveryCompat/]: Failed to generate recipe for q/croptopia/cinnamon_leaf_carpet: recipe template returned null [05Nov2024 19:11:16.114] [main/ERROR] [net.mehvahdjukaar.every_compat.EveryCompat/]: Failed to generate recipe for tf/iceandfire/dreadwood_banister: recipe template returned null [05Nov2024 19:11:16.118] [main/INFO] [net.mehvahdjukaar.every_compat.EveryCompat/]: Generated runtime SERVER_DATA for pack Everycomp Generated Pack in: 911 ms [05Nov2024 19:11:16.339] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [journeymap] Found status: UP_TO_DATE Current: 5.9.8 Target: null [05Nov2024 19:11:16.339] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [configured] Starting version check at https://mrcrayfish.com/modupdatejson?id=configured [05Nov2024 19:11:16.569] [main/ERROR] [net.minecraftforge.fml.loading.RuntimeDistCleaner/DISTXFORM]: Attempted to load class com/mojang/blaze3d/vertex/PoseStack for invalid dist DEDICATED_SERVER [05Nov2024 19:11:16.576] [main/INFO] [KubeJS Server/]: example.js#5: Hello, World! (Loaded server scripts) [05Nov2024 19:11:16.576] [main/INFO] [KubeJS Server/]: Loaded script server_scripts:example.js in 0.0 s [05Nov2024 19:11:16.576] [main/INFO] [KubeJS Server/]: Loaded 1/1 KubeJS server scripts in 0.01 s [05Nov2024 19:11:16.576] [main/INFO] [KubeJS Server/]: Scripts loaded [05Nov2024 19:11:17.942] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [configured] Found status: BETA Current: 2.1.1 Target: 2.1.1 [05Nov2024 19:11:17.942] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [mr_enderite_upgrade] Starting version check at https://api.modrinth.com/updates/rUMMUMK4/forge_updates.json [05Nov2024 19:11:18.108] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [mr_enderite_upgrade] Found status: AHEAD Current: 1-v5 Target: null [05Nov2024 19:11:18.108] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [morevanillashields] Starting version check at https://raw.githubusercontent.com/Rajhab/MoreVanillaShields-UpdateChecker/main/update.json [05Nov2024 19:11:18.263] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [morevanillashields] Found status: OUTDATED Current: 1.0.2-1.19.2 Target: 1.0.6-1.19.2 [05Nov2024 19:11:18.263] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [enderstorage] Starting version check at https://version-check.covers1624.net/check/?mod=EnderStorage&mc=1.19.2 [05Nov2024 19:11:18.540] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [enderstorage] Found status: UP_TO_DATE Current: 2.10.1.181 Target: null [05Nov2024 19:11:18.540] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [enchdesc] Starting version check at https://updates.blamejared.com/get?n=enchdesc&gv=1.19.2 [05Nov2024 19:11:18.570] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [enchdesc] Found status: BETA_OUTDATED Current: 13.0.14 Target: 13.0.20 [05Nov2024 19:11:18.570] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [moonlight] Starting version check at https://raw.githubusercontent.com/MehVahdJukaar/Moonlight/multi-loader/forge/update.json [05Nov2024 19:11:18.576] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [moonlight] Found status: UP_TO_DATE Current: 1.19.2-2.3.7 Target: null [05Nov2024 19:11:18.576] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [iceberg] Starting version check at https://mc-update-check.anthonyhilyard.com/520110 [05Nov2024 19:11:18.822] [main/INFO] [Calio/]: CDRM Initialized with 15 registries [05Nov2024 19:11:18.987] [Worker-Main-3/WARN] [HammerLib/]: Unable to find registry for tag directory tags/enhancedcelestials/lunar/event [05Nov2024 19:11:18.989] [ForkJoinPool.commonPool-worker-1/ERROR] [net.minecraftforge.eventbus.EventSubclassTransformer/EVENTBUS]: Could not find parent com/stereowalker/survive/json/ConsummableJsonHolder for class com/stereowalker/survive/json/FoodJsonHolder in classloader jdk.internal.loader.ClassLoaders$AppClassLoader@5a07e868 on thread Thread[ForkJoinPool.commonPool-worker-1,5,main] [05Nov2024 19:11:18.987] [Worker-Main-14/WARN] [HammerLib/]: Unable to find registry for tag directory tags/worldgen/configured_feature [05Nov2024 19:11:18.989] [Worker-Main-1/WARN] [HammerLib/]: Unable to find registry for tag directory tags/chat_type [05Nov2024 19:11:18.990] [Worker-Main-5/WARN] [HammerLib/]: Unable to find registry for tag directory tags/worldgen/density_function [05Nov2024 19:11:18.990] [Worker-Main-4/WARN] [HammerLib/]: Unable to find registry for tag directory tags/enhancedcelestials/lunar/dimension_settings [05Nov2024 19:11:18.990] [Worker-Main-7/WARN] [HammerLib/]: Unable to find registry for tag directory tags/worldgen/template_pool [05Nov2024 19:11:18.991] [Worker-Main-17/WARN] [HammerLib/]: Unable to find registry for tag directory tags/worldgen/structure_set [05Nov2024 19:11:18.990] [Worker-Main-10/WARN] [HammerLib/]: Unable to find registry for tag directory tags/worldgen/flat_level_generator_preset [05Nov2024 19:11:18.991] [Worker-Main-8/WARN] [HammerLib/]: Unable to find registry for tag directory tags/worldgen/processor_list [05Nov2024 19:11:18.995] [Worker-Main-2/WARN] [HammerLib/]: Unable to find registry for tag directory tags/worldgen/noise [05Nov2024 19:11:18.995] [Worker-Main-15/WARN] [HammerLib/]: Unable to find registry for tag directory tags/dimension_type [05Nov2024 19:11:19.002] [Worker-Main-19/WARN] [HammerLib/]: Unable to find registry for tag directory tags/worldgen/noise_settings [05Nov2024 19:11:19.003] [Worker-Main-20/WARN] [HammerLib/]: Unable to find registry for tag directory tags/worldgen/world_preset [05Nov2024 19:11:19.012] [ForkJoinPool.commonPool-worker-2/ERROR] [net.minecraftforge.eventbus.EventSubclassTransformer/EVENTBUS]: Could not find parent com/stereowalker/survive/json/ConsummableJsonHolder for class com/stereowalker/survive/json/PotionJsonHolder in classloader jdk.internal.loader.ClassLoaders$AppClassLoader@5a07e868 on thread Thread[ForkJoinPool.commonPool-worker-2,5,main] [05Nov2024 19:11:19.013] [Worker-Main-22/WARN] [HammerLib/]: Unable to find registry for tag directory tags/worldgen/placed_feature [05Nov2024 19:11:19.015] [ForkJoinPool.commonPool-worker-3/INFO] [survive/]: Found armor modifier for the item minecraft:chainmail_boots [05Nov2024 19:11:19.015] [ForkJoinPool.commonPool-worker-3/INFO] [survive/]: Found armor modifier for the item minecraft:chainmail_chestplate [05Nov2024 19:11:19.016] [ForkJoinPool.commonPool-worker-3/INFO] [survive/]: Found armor modifier for the item minecraft:chainmail_helmet [05Nov2024 19:11:19.016] [ForkJoinPool.commonPool-worker-3/INFO] [survive/]: Found armor modifier for the item minecraft:chainmail_leggings [05Nov2024 19:11:19.016] [ForkJoinPool.commonPool-worker-3/INFO] [survive/]: Found armor modifier for the item minecraft:diamond_boots [05Nov2024 19:11:19.016] [ForkJoinPool.commonPool-worker-3/INFO] [survive/]: Found armor modifier for the item minecraft:diamond_chestplate [05Nov2024 19:11:19.016] [ForkJoinPool.commonPool-worker-3/INFO] [survive/]: Found armor modifier for the item minecraft:diamond_helmet [05Nov2024 19:11:19.016] [ForkJoinPool.commonPool-worker-3/INFO] [survive/]: Found armor modifier for the item minecraft:diamond_leggings [05Nov2024 19:11:19.016] [ForkJoinPool.commonPool-worker-3/INFO] [survive/]: Found armor modifier for the item minecraft:golden_boots [05Nov2024 19:11:19.017] [ForkJoinPool.commonPool-worker-3/INFO] [survive/]: Found armor modifier for the item minecraft:golden_chestplate [05Nov2024 19:11:19.017] [ForkJoinPool.commonPool-worker-3/INFO] [survive/]: Found armor modifier for the item minecraft:golden_helmet [05Nov2024 19:11:19.017] [ForkJoinPool.commonPool-worker-3/INFO] [survive/]: Found armor modifier for the item minecraft:golden_leggings [05Nov2024 19:11:19.018] [ForkJoinPool.commonPool-worker-3/INFO] [survive/]: Found armor modifier for the item minecraft:iron_boots [05Nov2024 19:11:19.019] [Worker-Main-21/WARN] [HammerLib/]: Unable to find registry for tag directory tags/worldgen/configured_carver [05Nov2024 19:11:19.019] [ForkJoinPool.commonPool-worker-3/INFO] [survive/]: Found armor modifier for the item minecraft:iron_chestplate [05Nov2024 19:11:19.019] [ForkJoinPool.commonPool-worker-3/INFO] [survive/]: Found armor modifier for the item minecraft:iron_helmet [05Nov2024 19:11:19.019] [Worker-Main-2/WARN] [HammerLib/]: Unable to find registry for tag directory tags/custom_stat [05Nov2024 19:11:19.020] [Worker-Main-13/WARN] [HammerLib/]: Unable to find registry for tag directory tags/rule_test [05Nov2024 19:11:19.022] [ForkJoinPool.commonPool-worker-5/INFO] [survive/]: Found biome temperature modifier for the biome minecraft:birch_forest [05Nov2024 19:11:19.022] [ForkJoinPool.commonPool-worker-5/INFO] [survive/]: Found biome temperature modifier for the biome minecraft:cold_ocean [05Nov2024 19:11:19.012] [ForkJoinPool.commonPool-worker-4/INFO] [survive/]: Found block temperature modifier for the item minecraft:blast_furnace [05Nov2024 19:11:19.022] [ForkJoinPool.commonPool-worker-4/INFO] [survive/]: Found block temperature modifier for the item minecraft:blue_ice [05Nov2024 19:11:19.022] [Worker-Main-23/WARN] [HammerLib/]: Unable to find registry for tag directory tags/game_events [05Nov2024 19:11:19.023] [ForkJoinPool.commonPool-worker-4/INFO] [survive/]: Found block temperature modifier for the item minecraft:campfire [05Nov2024 19:11:19.023] [ForkJoinPool.commonPool-worker-4/INFO] [survive/]: Found block temperature modifier for the item minecraft:fire [05Nov2024 19:11:19.023] [ForkJoinPool.commonPool-worker-4/INFO] [survive/]: Found block temperature modifier for the item minecraft:furnace [05Nov2024 19:11:19.023] [ForkJoinPool.commonPool-worker-4/INFO] [survive/]: Found block temperature modifier for the item minecraft:ice [05Nov2024 19:11:19.023] [ForkJoinPool.commonPool-worker-4/INFO] [survive/]: Found block temperature modifier for the item minecraft:lantern [05Nov2024 19:11:19.023] [ForkJoinPool.commonPool-worker-4/INFO] [survive/]: Found block temperature modifier for the item minecraft:lava [05Nov2024 19:11:19.022] [ForkJoinPool.commonPool-worker-5/INFO] [survive/]: Found biome temperature modifier for the biome minecraft:deep_cold_ocean [05Nov2024 19:11:19.023] [ForkJoinPool.commonPool-worker-4/INFO] [survive/]: Found block temperature modifier for the item minecraft:magma_block [05Nov2024 19:11:19.023] [ForkJoinPool.commonPool-worker-4/INFO] [survive/]: Found block temperature modifier for the item minecraft:packed_ice [05Nov2024 19:11:19.023] [ForkJoinPool.commonPool-worker-5/INFO] [survive/]: Found biome temperature modifier for the biome minecraft:deep_frozen_ocean [05Nov2024 19:11:19.024] [ForkJoinPool.commonPool-worker-4/INFO] [survive/]: Found block temperature modifier for the item minecraft:smoker [05Nov2024 19:11:19.024] [ForkJoinPool.commonPool-worker-5/INFO] [survive/]: Found biome temperature modifier for the biome minecraft:desert [05Nov2024 19:11:19.024] [ForkJoinPool.commonPool-worker-5/INFO] [survive/]: Found biome temperature modifier for the biome minecraft:frozen_ocean [05Nov2024 19:11:19.024] [ForkJoinPool.commonPool-worker-5/INFO] [survive/]: Found biome temperature modifier for the biome minecraft:frozen_peaks [05Nov2024 19:11:19.024] [ForkJoinPool.commonPool-worker-4/INFO] [survive/]: Found block temperature modifier for the item minecraft:snow [05Nov2024 19:11:19.024] [ForkJoinPool.commonPool-worker-5/INFO] [survive/]: Found biome temperature modifier for the biome minecraft:frozen_river [05Nov2024 19:11:19.024] [ForkJoinPool.commonPool-worker-4/INFO] [survive/]: Found block temperature modifier for the item minecraft:snow_block [05Nov2024 19:11:19.024] [ForkJoinPool.commonPool-worker-5/INFO] [survive/]: Found biome temperature modifier for the biome minecraft:ice_spikes [05Nov2024 19:11:19.024] [ForkJoinPool.commonPool-worker-4/INFO] [survive/]: Found block temperature modifier for the item minecraft:soul_fire [05Nov2024 19:11:19.025] [ForkJoinPool.commonPool-worker-4/INFO] [survive/]: Found block temperature modifier for the item minecraft:soul_lantern [05Nov2024 19:11:19.025] [ForkJoinPool.commonPool-worker-5/INFO] [survive/]: Found biome temperature modifier for the biome minecraft:snowy_beach [05Nov2024 19:11:19.025] [ForkJoinPool.commonPool-worker-4/INFO] [survive/]: Found block temperature modifier for the item minecraft:soul_torch [05Nov2024 19:11:19.025] [ForkJoinPool.commonPool-worker-5/INFO] [survive/]: Found biome temperature modifier for the biome minecraft:snowy_plains [05Nov2024 19:11:19.025] [ForkJoinPool.commonPool-worker-4/INFO] [survive/]: Found block temperature modifier for the item minecraft:soul_wall_torch [05Nov2024 19:11:19.025] [ForkJoinPool.commonPool-worker-4/INFO] [survive/]: Found block temperature modifier for the item minecraft:torch [05Nov2024 19:11:19.025] [ForkJoinPool.commonPool-worker-5/INFO] [survive/]: Found biome temperature modifier for the biome minecraft:snowy_slopes [05Nov2024 19:11:19.025] [ForkJoinPool.commonPool-worker-4/INFO] [survive/]: Found block temperature modifier for the item minecraft:wall_torch [05Nov2024 19:11:19.025] [ForkJoinPool.commonPool-worker-5/INFO] [survive/]: Found biome temperature modifier for the biome minecraft:snowy_taiga [05Nov2024 19:11:19.025] [ForkJoinPool.commonPool-worker-4/INFO] [survive/]: Found block temperature modifier for the item minecraft:water [05Nov2024 19:11:19.013] [ForkJoinPool.commonPool-worker-2/ERROR] [net.minecraftforge.eventbus.EventSubclassTransformer/EVENTBUS]: An error occurred building event handler java.lang.ClassNotFoundException: com.stereowalker.survive.json.ConsummableJsonHolder at jdk.internal.loader.BuiltinClassLoader.loadClass(BuiltinClassLoader.java:641) ~[?:?] at jdk.internal.loader.ClassLoaders$AppClassLoader.loadClass(ClassLoaders.java:188) ~[?:?] at java.lang.ClassLoader.loadClass(ClassLoader.java:525) ~[?:?] at net.minecraftforge.eventbus.EventSubclassTransformer.buildEvents(EventSubclassTransformer.java:92) ~[eventbus-6.0.3.jar%2351!/:?] at net.minecraftforge.eventbus.EventSubclassTransformer.transform(EventSubclassTransformer.java:44) ~[eventbus-6.0.3.jar%2351!/:?] at net.minecraftforge.eventbus.EventBusEngine.processClass(EventBusEngine.java:26) ~[eventbus-6.0.3.jar%2351!/:?] at net.minecraftforge.eventbus.service.ModLauncherService.processClassWithFlags(ModLauncherService.java:32) ~[eventbus-6.0.3.jar%2351!/:6.0.3+6.0.3+master.039e4ea9] at cpw.mods.modlauncher.LaunchPluginHandler.offerClassNodeToPlugins(LaunchPluginHandler.java:88) ~[modlauncher-10.0.8.jar%2354!/:?] at cpw.mods.modlauncher.ClassTransformer.transform(ClassTransformer.java:120) ~[modlauncher-10.0.8.jar%2354!/:?] at cpw.mods.modlauncher.TransformingClassLoader.maybeTransformClassBytes(TransformingClassLoader.java:50) ~[modlauncher-10.0.8.jar%2354!/:?] at cpw.mods.cl.ModuleClassLoader.readerToClass(ModuleClassLoader.java:113) ~[securejarhandler-2.1.4.jar:?] at cpw.mods.cl.ModuleClassLoader.lambda$findClass$15(ModuleClassLoader.java:219) ~[securejarhandler-2.1.4.jar:?] at cpw.mods.cl.ModuleClassLoader.loadFromModule(ModuleClassLoader.java:229) ~[securejarhandler-2.1.4.jar:?] at cpw.mods.cl.ModuleClassLoader.findClass(ModuleClassLoader.java:219) ~[securejarhandler-2.1.4.jar:?] at cpw.mods.cl.ModuleClassLoader.loadClass(ModuleClassLoader.java:135) ~[securejarhandler-2.1.4.jar:?] at java.lang.ClassLoader.loadClass(ClassLoader.java:525) ~[?:?] at com.stereowalker.survive.resource.PotionDrinkDataManager.lambda$load$1(PotionDrinkDataManager.java:45) ~[?:?] at java.util.concurrent.CompletableFuture$AsyncSupply.run(CompletableFuture.java:1768) [?:?] at java.util.concurrent.CompletableFuture$AsyncSupply.exec(CompletableFuture.java:1760) [?:?] at java.util.concurrent.ForkJoinTask.doExec(ForkJoinTask.java:373) [?:?] at java.util.concurrent.ForkJoinPool$WorkQueue.topLevelExec(ForkJoinPool.java:1182) [?:?] at java.util.concurrent.ForkJoinPool.scan(ForkJoinPool.java:1655) [?:?] at java.util.concurrent.ForkJoinPool.runWorker(ForkJoinPool.java:1622) [?:?] at java.util.concurrent.ForkJoinWorkerThread.run(ForkJoinWorkerThread.java:165) [?:?] [05Nov2024 19:11:19.029] [ForkJoinPool.commonPool-worker-2/INFO] [survive/]: Found potion drink data for survive:purified_water [05Nov2024 19:11:19.029] [ForkJoinPool.commonPool-worker-2/INFO] [survive/]: Found potion drink data for minecraft:water [05Nov2024 19:11:19.027] [ForkJoinPool.commonPool-worker-3/INFO] [survive/]: Found armor modifier for the item minecraft:iron_leggings [05Nov2024 19:11:19.030] [ForkJoinPool.commonPool-worker-3/INFO] [survive/]: Found armor modifier for the item minecraft:leather_boots [05Nov2024 19:11:18.989] [ForkJoinPool.commonPool-worker-1/ERROR] [net.minecraftforge.eventbus.EventSubclassTransformer/EVENTBUS]: An error occurred building event handler java.lang.ClassNotFoundException: com.stereowalker.survive.json.ConsummableJsonHolder at jdk.internal.loader.BuiltinClassLoader.loadClass(BuiltinClassLoader.java:641) ~[?:?] at jdk.internal.loader.ClassLoaders$AppClassLoader.loadClass(ClassLoaders.java:188) ~[?:?] at java.lang.ClassLoader.loadClass(ClassLoader.java:525) ~[?:?] at net.minecraftforge.eventbus.EventSubclassTransformer.buildEvents(EventSubclassTransformer.java:92) ~[eventbus-6.0.3.jar%2351!/:?] at net.minecraftforge.eventbus.EventSubclassTransformer.transform(EventSubclassTransformer.java:44) ~[eventbus-6.0.3.jar%2351!/:?] at net.minecraftforge.eventbus.EventBusEngine.processClass(EventBusEngine.java:26) ~[eventbus-6.0.3.jar%2351!/:?] at net.minecraftforge.eventbus.service.ModLauncherService.processClassWithFlags(ModLauncherService.java:32) ~[eventbus-6.0.3.jar%2351!/:6.0.3+6.0.3+master.039e4ea9] at cpw.mods.modlauncher.LaunchPluginHandler.offerClassNodeToPlugins(LaunchPluginHandler.java:88) ~[modlauncher-10.0.8.jar%2354!/:?] at cpw.mods.modlauncher.ClassTransformer.transform(ClassTransformer.java:120) ~[modlauncher-10.0.8.jar%2354!/:?] at cpw.mods.modlauncher.TransformingClassLoader.maybeTransformClassBytes(TransformingClassLoader.java:50) ~[modlauncher-10.0.8.jar%2354!/:?] at cpw.mods.cl.ModuleClassLoader.readerToClass(ModuleClassLoader.java:113) ~[securejarhandler-2.1.4.jar:?] at cpw.mods.cl.ModuleClassLoader.lambda$findClass$15(ModuleClassLoader.java:219) ~[securejarhandler-2.1.4.jar:?] at cpw.mods.cl.ModuleClassLoader.loadFromModule(ModuleClassLoader.java:229) ~[securejarhandler-2.1.4.jar:?] at cpw.mods.cl.ModuleClassLoader.findClass(ModuleClassLoader.java:219) ~[securejarhandler-2.1.4.jar:?] at cpw.mods.cl.ModuleClassLoader.loadClass(ModuleClassLoader.java:135) ~[securejarhandler-2.1.4.jar:?] at java.lang.ClassLoader.loadClass(ClassLoader.java:525) ~[?:?] at com.stereowalker.survive.resource.ItemConsummableDataManager.lambda$load$2(ItemConsummableDataManager.java:50) ~[?:?] at java.util.concurrent.CompletableFuture$AsyncSupply.run(CompletableFuture.java:1768) [?:?] at java.util.concurrent.CompletableFuture$AsyncSupply.exec(CompletableFuture.java:1760) [?:?] at java.util.concurrent.ForkJoinTask.doExec(ForkJoinTask.java:373) [?:?] at java.util.concurrent.ForkJoinPool$WorkQueue.topLevelExec(ForkJoinPool.java:1182) [?:?] at java.util.concurrent.ForkJoinPool.scan(ForkJoinPool.java:1655) [?:?] at java.util.concurrent.ForkJoinPool.runWorker(ForkJoinPool.java:1622) [?:?] at java.util.concurrent.ForkJoinWorkerThread.run(ForkJoinWorkerThread.java:165) [?:?] [05Nov2024 19:11:19.030] [ForkJoinPool.commonPool-worker-3/INFO] [survive/]: Found armor modifier for the item minecraft:leather_chestplate [05Nov2024 19:11:19.030] [ForkJoinPool.commonPool-worker-6/INFO] [survive/]: Found entity temperature modifier for the entity minecraft:fireball [05Nov2024 19:11:19.030] [ForkJoinPool.commonPool-worker-3/INFO] [survive/]: Found armor modifier for the item minecraft:leather_helmet [05Nov2024 19:11:19.030] [ForkJoinPool.commonPool-worker-3/INFO] [survive/]: Found armor modifier for the item minecraft:leather_leggings [05Nov2024 19:11:19.030] [ForkJoinPool.commonPool-worker-6/INFO] [survive/]: Found entity temperature modifier for the entity minecraft:small_fireball [05Nov2024 19:11:19.030] [ForkJoinPool.commonPool-worker-3/INFO] [survive/]: Found armor modifier for the item minecraft:netherite_boots [05Nov2024 19:11:19.030] [ForkJoinPool.commonPool-worker-3/INFO] [survive/]: Found armor modifier for the item minecraft:netherite_chestplate [05Nov2024 19:11:19.031] [ForkJoinPool.commonPool-worker-3/INFO] [survive/]: Found armor modifier for the item minecraft:netherite_helmet [05Nov2024 19:11:19.031] [ForkJoinPool.commonPool-worker-3/INFO] [survive/]: Found armor modifier for the item minecraft:netherite_leggings [05Nov2024 19:11:19.031] [ForkJoinPool.commonPool-worker-3/INFO] [survive/]: Found armor modifier for the item survive:stiffened_honey_boots [05Nov2024 19:11:19.031] [ForkJoinPool.commonPool-worker-3/INFO] [survive/]: Found armor modifier for the item survive:stiffened_honey_chestplate [05Nov2024 19:11:19.031] [ForkJoinPool.commonPool-worker-3/INFO] [survive/]: Found armor modifier for the item survive:stiffened_honey_helmet [05Nov2024 19:11:19.031] [ForkJoinPool.commonPool-worker-3/INFO] [survive/]: Found armor modifier for the item survive:stiffened_honey_leggings [05Nov2024 19:11:19.033] [Worker-Main-12/WARN] [HammerLib/]: Unable to find registry for tag directory tags/worldgen/structure [05Nov2024 19:11:19.046] [ForkJoinPool.commonPool-worker-3/INFO] [survive/]: Found armor modifier for the item minecraft:turtle_helmet [05Nov2024 19:11:19.046] [ForkJoinPool.commonPool-worker-3/INFO] [survive/]: Found armor modifier for the item survive:wool_boots [05Nov2024 19:11:19.046] [ForkJoinPool.commonPool-worker-3/INFO] [survive/]: Found armor modifier for the item survive:wool_hat [05Nov2024 19:11:19.046] [ForkJoinPool.commonPool-worker-3/INFO] [survive/]: Found armor modifier for the item survive:wool_jacket [05Nov2024 19:11:19.046] [ForkJoinPool.commonPool-worker-3/INFO] [survive/]: Found armor modifier for the item survive:wool_pants [05Nov2024 19:11:19.046] [ForkJoinPool.commonPool-worker-1/INFO] [survive/]: Found item consummable data for minecraft:apple [05Nov2024 19:11:19.046] [ForkJoinPool.commonPool-worker-1/INFO] [survive/]: Found item consummable data for minecraft:beetroot_soup [05Nov2024 19:11:19.047] [ForkJoinPool.commonPool-worker-1/INFO] [survive/]: Found item consummable data for minecraft:enchanted_golden_apple [05Nov2024 19:11:19.047] [ForkJoinPool.commonPool-worker-1/WARN] [survive/]: No such item exists with the id survive:example_consumable_item! [05Nov2024 19:11:19.047] [ForkJoinPool.commonPool-worker-1/INFO] [survive/]: Found item consummable data for minecraft:golden_apple [05Nov2024 19:11:19.047] [ForkJoinPool.commonPool-worker-1/INFO] [survive/]: Found item consummable data for minecraft:honey_bottle [05Nov2024 19:11:19.047] [ForkJoinPool.commonPool-worker-1/INFO] [survive/]: Found item consummable data for minecraft:melon_slice [05Nov2024 19:11:19.047] [ForkJoinPool.commonPool-worker-1/INFO] [survive/]: Found item consummable data for minecraft:poisonous_potato [05Nov2024 19:11:19.047] [ForkJoinPool.commonPool-worker-1/INFO] [survive/]: Found item consummable data for minecraft:potion [05Nov2024 19:11:19.047] [ForkJoinPool.commonPool-worker-1/INFO] [survive/]: Found item consummable data for minecraft:pufferfish [05Nov2024 19:11:19.048] [ForkJoinPool.commonPool-worker-1/INFO] [survive/]: Found item consummable data for minecraft:pumpkin_pie [05Nov2024 19:11:19.048] [ForkJoinPool.commonPool-worker-1/INFO] [survive/]: Found item consummable data for survive:purified_water_bowl [05Nov2024 19:11:19.048] [ForkJoinPool.commonPool-worker-1/INFO] [survive/]: Found item consummable data for minecraft:rotten_flesh [05Nov2024 19:11:19.048] [ForkJoinPool.commonPool-worker-1/INFO] [survive/]: Found item consummable data for survive:sugar_water_bottle [05Nov2024 19:11:19.048] [ForkJoinPool.commonPool-worker-1/INFO] [survive/]: Found item consummable data for minecraft:sweet_berries [05Nov2024 19:11:19.048] [ForkJoinPool.commonPool-worker-1/INFO] [survive/]: Found item consummable data for survive:water_bowl [05Nov2024 19:11:19.059] [Worker-Main-19/WARN] [HammerLib/]: Unable to find registry for tag directory tags/pos_rule_test [05Nov2024 19:11:19.059] [ForkJoinPool.commonPool-worker-7/INFO] [survive/]: Found fluid data for survive:flowing_purified_water [05Nov2024 19:11:19.060] [ForkJoinPool.commonPool-worker-7/INFO] [survive/]: Found fluid data for minecraft:flowing_water [05Nov2024 19:11:19.060] [ForkJoinPool.commonPool-worker-7/INFO] [survive/]: Found fluid data for survive:purified_water [05Nov2024 19:11:19.060] [ForkJoinPool.commonPool-worker-7/INFO] [survive/]: Found fluid data for minecraft:water [05Nov2024 19:11:19.124] [Worker-Main-21/WARN] [HammerLib/]: Unable to find registry for tag directory tags/position_source_type [05Nov2024 19:11:19.125] [Worker-Main-6/ERROR] [net.minecraft.tags.TagLoader/]: Couldn't load tag [blue_skies:unorthodox_valley (from totw_modded-forge-1.19.2-1.0.5.jar), blue_skies:shaded_woodlands (from totw_modded-forge-1.19.2-1.0.5.jar), blue_skies:crystal_dunes (from totw_modded-forge-1.19.2-1.0.5.jar), blue_skies:crystal_dunes_spikes (from totw_modded-forge-1.19.2-1.0.5.jar), blue_skies:sunset_maple_forest (from totw_modded-forge-1.19.2-1.0.5.jar), blue_skies:rising_creek (from totw_modded-forge-1.19.2-1.0.5.jar), blue_skies:crystal_roughs (from totw_modded-forge-1.19.2-1.0.5.jar), blue_skies:searing_grassland (from totw_modded-forge-1.19.2-1.0.5.jar), blue_skies:crescent_orchard (from totw_modded-forge-1.19.2-1.0.5.jar)] as it is missing following references: blue_skies:unorthodox_valley (from totw_modded-forge-1.19.2-1.0.5.jar), blue_skies:shaded_woodlands (from totw_modded-forge-1.19.2-1.0.5.jar), blue_skies:crystal_dunes (from totw_modded-forge-1.19.2-1.0.5.jar), blue_skies:crystal_dunes_spikes (from totw_modded-forge-1.19.2-1.0.5.jar), blue_skies:sunset_maple_forest (from totw_modded-forge-1.19.2-1.0.5.jar), blue_skies:rising_creek (from totw_modded-forge-1.19.2-1.0.5.jar), blue_skies:crystal_roughs (from totw_modded-forge-1.19.2-1.0.5.jar), blue_skies:searing_grassland (from totw_modded-forge-1.19.2-1.0.5.jar), blue_skies:crescent_orchard (from totw_modded-forge-1.19.2-1.0.5.jar) [05Nov2024 19:11:19.126] [Worker-Main-6/ERROR] [net.minecraft.tags.TagLoader/]: Couldn't load tag [the_bumblezone:crystal_canyon (from totw_modded-forge-1.19.2-1.0.5.jar), the_bumblezone:pollinated_fields (from totw_modded-forge-1.19.2-1.0.5.jar)] as it is missing following references: the_bumblezone:crystal_canyon (from totw_modded-forge-1.19.2-1.0.5.jar), the_bumblezone:pollinated_fields (from totw_modded-forge-1.19.2-1.0.5.jar) [05Nov2024 19:11:19.127] [Worker-Main-6/ERROR] [net.minecraft.tags.TagLoader/]: Couldn't load tag [minecraft:cherry_grove (from mvs-4.1.2-1.19.2-forge.jar)] as it is missing following references: minecraft:cherry_grove (from mvs-4.1.2-1.19.2-forge.jar) [05Nov2024 19:11:19.127] [Worker-Main-6/ERROR] [net.minecraft.tags.TagLoader/]: Couldn't load tag [ad_astra:infernal_venus_barrens (from totw_modded-forge-1.19.2-1.0.5.jar)] as it is missing following references: ad_astra:infernal_venus_barrens (from totw_modded-forge-1.19.2-1.0.5.jar) [05Nov2024 19:11:19.127] [Worker-Main-6/ERROR] [net.minecraft.tags.TagLoader/]: Couldn't load tag [ad_astra:lunar_wastelands (from totw_modded-forge-1.19.2-1.0.5.jar)] as it is missing following references: ad_astra:lunar_wastelands (from totw_modded-forge-1.19.2-1.0.5.jar) [05Nov2024 19:11:19.128] [Worker-Main-6/ERROR] [net.minecraft.tags.TagLoader/]: Couldn't load tag [rats:ratlantis (from totw_modded-forge-1.19.2-1.0.5.jar)] as it is missing following references: rats:ratlantis (from totw_modded-forge-1.19.2-1.0.5.jar) [05Nov2024 19:11:19.128] [Worker-Main-6/ERROR] [net.minecraft.tags.TagLoader/]: Couldn't load tag [blue_skies:calming_skies (from totw_modded-forge-1.19.2-1.0.5.jar), blue_skies:brightlands (from totw_modded-forge-1.19.2-1.0.5.jar), blue_skies:slushlands (from totw_modded-forge-1.19.2-1.0.5.jar), blue_skies:frostbitten_forest (from totw_modded-forge-1.19.2-1.0.5.jar), blue_skies:frostbitten_forest_clearing (from totw_modded-forge-1.19.2-1.0.5.jar), blue_skies:snow_covered_pines (from totw_modded-forge-1.19.2-1.0.5.jar), blue_skies:brisk_meadow (from totw_modded-forge-1.19.2-1.0.5.jar), blue_skies:polar_highland (from totw_modded-forge-1.19.2-1.0.5.jar)] as it is missing following references: blue_skies:calming_skies (from totw_modded-forge-1.19.2-1.0.5.jar), blue_skies:brightlands (from totw_modded-forge-1.19.2-1.0.5.jar), blue_skies:slushlands (from totw_modded-forge-1.19.2-1.0.5.jar), blue_skies:frostbitten_forest (from totw_modded-forge-1.19.2-1.0.5.jar), blue_skies:frostbitten_forest_clearing (from totw_modded-forge-1.19.2-1.0.5.jar), blue_skies:snow_covered_pines (from totw_modded-forge-1.19.2-1.0.5.jar), blue_skies:brisk_meadow (from totw_modded-forge-1.19.2-1.0.5.jar), blue_skies:polar_highland (from totw_modded-forge-1.19.2-1.0.5.jar) [05Nov2024 19:11:19.129] [Worker-Main-6/ERROR] [net.minecraft.tags.TagLoader/]: Couldn't load tag [ad_astra:martian_canyon_creek (from totw_modded-forge-1.19.2-1.0.5.jar), ad_astra:martian_wastelands (from totw_modded-forge-1.19.2-1.0.5.jar)] as it is missing following references: ad_astra:martian_canyon_creek (from totw_modded-forge-1.19.2-1.0.5.jar), ad_astra:martian_wastelands (from totw_modded-forge-1.19.2-1.0.5.jar) [05Nov2024 19:11:19.129] [Worker-Main-6/ERROR] [net.minecraft.tags.TagLoader/]: Couldn't load tag [ad_astra:glacio_snowy_barrens (from totw_modded-forge-1.19.2-1.0.5.jar), ad_astra:glacio_ice_peaks (from totw_modded-forge-1.19.2-1.0.5.jar)] as it is missing following references: ad_astra:glacio_snowy_barrens (from totw_modded-forge-1.19.2-1.0.5.jar), ad_astra:glacio_ice_peaks (from totw_modded-forge-1.19.2-1.0.5.jar) [05Nov2024 19:11:19.129] [Worker-Main-6/ERROR] [net.minecraft.tags.TagLoader/]: Couldn't load tag [ad_astra:mercury_deltas (from totw_modded-forge-1.19.2-1.0.5.jar)] as it is missing following references: ad_astra:mercury_deltas (from totw_modded-forge-1.19.2-1.0.5.jar) [05Nov2024 19:11:19.160] [Worker-Main-9/WARN] [HammerLib/]: Unable to find registry for tag directory tags/loot_pool_entry_type [05Nov2024 19:11:19.171] [Worker-Main-15/WARN] [HammerLib/]: Unable to find registry for tag directory tags/loot_condition_type [05Nov2024 19:11:19.175] [Worker-Main-7/WARN] [HammerLib/]: Unable to find registry for tag directory tags/loot_score_provider_type [05Nov2024 19:11:19.192] [Worker-Main-19/WARN] [HammerLib/]: Unable to find registry for tag directory tags/loot_number_provider_type [05Nov2024 19:11:19.192] [Worker-Main-8/WARN] [HammerLib/]: Unable to find registry for tag directory tags/float_provider_type [05Nov2024 19:11:19.194] [Worker-Main-10/WARN] [HammerLib/]: Unable to find registry for tag directory tags/loot_function_type [05Nov2024 19:11:19.213] [Worker-Main-1/WARN] [HammerLib/]: Unable to find registry for tag directory tags/villager_type [05Nov2024 19:11:19.219] [Worker-Main-22/WARN] [HammerLib/]: Unable to find registry for tag directory tags/height_provider_type [05Nov2024 19:11:19.220] [Worker-Main-20/WARN] [HammerLib/]: Unable to find registry for tag directory tags/int_provider_type [05Nov2024 19:11:19.219] [Worker-Main-21/WARN] [HammerLib/]: Unable to find registry for tag directory tags/worldgen/structure_placement [05Nov2024 19:11:19.222] [Worker-Main-23/WARN] [HammerLib/]: Unable to find registry for tag directory tags/block_predicate_type [05Nov2024 19:11:19.230] [Worker-Main-16/WARN] [HammerLib/]: Unable to find registry for tag directory tags/worldgen/placement_modifier_type [05Nov2024 19:11:19.231] [Worker-Main-10/WARN] [HammerLib/]: Unable to find registry for tag directory tags/worldgen/material_rule [05Nov2024 19:11:19.231] [Worker-Main-4/WARN] [HammerLib/]: Unable to find registry for tag directory tags/worldgen/material_condition [05Nov2024 19:11:19.231] [Worker-Main-12/WARN] [HammerLib/]: Unable to find registry for tag directory tags/worldgen/root_placer_type [05Nov2024 19:11:19.231] [Worker-Main-7/WARN] [HammerLib/]: Unable to find registry for tag directory tags/worldgen/feature_size_type [05Nov2024 19:11:19.231] [Worker-Main-9/WARN] [HammerLib/]: Unable to find registry for tag directory tags/worldgen/trunk_placer_type [05Nov2024 19:11:19.235] [Worker-Main-3/WARN] [HammerLib/]: Unable to find registry for tag directory tags/loot_nbt_provider_type [05Nov2024 19:11:19.239] [Worker-Main-6/WARN] [HammerLib/]: Unable to find registry for tag directory tags/worldgen/structure_piece [05Nov2024 19:11:19.244] [Forge Version Check/WARN] [net.minecraftforge.fml.VersionChecker/]: Failed to process update information com.google.gson.JsonSyntaxException: java.lang.IllegalStateException: Expected BEGIN_OBJECT but was STRING at line 1 column 1 path $ at com.google.gson.Gson.fromJson(Gson.java:975) ~[gson-2.8.9.jar%2370!/:?] at com.google.gson.Gson.fromJson(Gson.java:928) ~[gson-2.8.9.jar%2370!/:?] at com.google.gson.Gson.fromJson(Gson.java:877) ~[gson-2.8.9.jar%2370!/:?] at com.google.gson.Gson.fromJson(Gson.java:848) ~[gson-2.8.9.jar%2370!/:?] at net.minecraftforge.fml.VersionChecker$1.process(VersionChecker.java:183) ~[fmlcore-1.19.2-43.4.0.jar%23598!/:?] at java.lang.Iterable.forEach(Iterable.java:75) [?:?] at net.minecraftforge.fml.VersionChecker$1.run(VersionChecker.java:114) [fmlcore-1.19.2-43.4.0.jar%23598!/:?] Caused by: java.lang.IllegalStateException: Expected BEGIN_OBJECT but was STRING at line 1 column 1 path $ at com.google.gson.stream.JsonReader.beginObject(JsonReader.java:384) ~[gson-2.8.9.jar%2370!/:?] at com.google.gson.internal.bind.MapTypeAdapterFactory$Adapter.read(MapTypeAdapterFactory.java:183) ~[gson-2.8.9.jar%2370!/:?] at com.google.gson.internal.bind.MapTypeAdapterFactory$Adapter.read(MapTypeAdapterFactory.java:145) ~[gson-2.8.9.jar%2370!/:?] at com.google.gson.Gson.fromJson(Gson.java:963) ~[gson-2.8.9.jar%2370!/:?] ... 6 more [05Nov2024 19:11:19.245] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [survivalistessentials] Starting version check at https://raw.githubusercontent.com/wendall911/SurvivalistEssentials/1.18.2/files/updates.json [05Nov2024 19:11:19.245] [Worker-Main-19/WARN] [HammerLib/]: Unable to find registry for tag directory tags/worldgen/biome_source [05Nov2024 19:11:19.248] [Worker-Main-13/WARN] [HammerLib/]: Unable to find registry for tag directory tags/worldgen/structure_type [05Nov2024 19:11:19.255] [Worker-Main-8/WARN] [HammerLib/]: Unable to find registry for tag directory tags/worldgen/chunk_generator [05Nov2024 19:11:19.256] [Worker-Main-20/WARN] [HammerLib/]: Unable to find registry for tag directory tags/cat_variant [05Nov2024 19:11:19.256] [Worker-Main-22/WARN] [HammerLib/]: Unable to find registry for tag directory tags/worldgen/structure_processor [05Nov2024 19:11:19.256] [Worker-Main-16/WARN] [HammerLib/]: Unable to find registry for tag directory tags/instrument [05Nov2024 19:11:19.256] [Worker-Main-21/WARN] [HammerLib/]: Unable to find registry for tag directory tags/worldgen/structure_pool_element [05Nov2024 19:11:19.257] [Worker-Main-2/WARN] [HammerLib/]: Unable to find registry for tag directory tags/frog_variant [05Nov2024 19:11:19.257] [Worker-Main-14/WARN] [HammerLib/]: Unable to find registry for tag directory tags/corgilib/condition [05Nov2024 19:11:19.258] [Worker-Main-23/WARN] [HammerLib/]: Unable to find registry for tag directory tags/banner_pattern [05Nov2024 19:11:19.257] [Worker-Main-15/WARN] [HammerLib/]: Unable to find registry for tag directory tags/corgilib/villager_trades_item_listing [05Nov2024 19:11:19.264] [Worker-Main-1/WARN] [HammerLib/]: Unable to find registry for tag directory tags/worldgen/density_function_type [05Nov2024 19:11:19.270] [Worker-Main-17/WARN] [HammerLib/]: Unable to find registry for tag directory tags/corgilib/blending_function [05Nov2024 19:11:19.353] [Worker-Main-5/ERROR] [net.minecraft.tags.TagLoader/]: Not a JSON object: null [05Nov2024 19:11:19.354] [Worker-Main-5/ERROR] [net.minecraft.tags.TagLoader/]: Couldn't read tag list minecraft:mineable/hoe from minecraft:tags/blocks/mineable/hoe.json in data pack lemoned-1.0.0-1.19.jar java.lang.RuntimeException: Not a JSON object: null at com.mojang.serialization.DataResult.lambda$getOrThrow$4(DataResult.java:100) ~[datafixerupper-5.0.28.jar%2375!/:?] at com.mojang.datafixers.util.Either$Right.map(Either.java:99) ~[datafixerupper-5.0.28.jar%2375!/:?] at com.mojang.serialization.DataResult.getOrThrow(DataResult.java:93) ~[datafixerupper-5.0.28.jar%2375!/:?] at net.minecraft.tags.TagLoader.m_144495_(TagLoader.java:62) ~[server-1.19.2-20220805.130853-srg.jar%23597!/:?] at net.minecraft.tags.TagLoader.m_203900_(TagLoader.java:177) ~[server-1.19.2-20220805.130853-srg.jar%23597!/:?] at net.minecraft.tags.TagManager.m_203920_(TagManager.java:54) ~[server-1.19.2-20220805.130853-srg.jar%23597!/:?] at java.util.concurrent.CompletableFuture$AsyncSupply.run(CompletableFuture.java:1768) [?:?] at java.util.concurrent.CompletableFuture$AsyncSupply.exec(CompletableFuture.java:1760) [?:?] at java.util.concurrent.ForkJoinTask.doExec(ForkJoinTask.java:373) [?:?] at java.util.concurrent.ForkJoinPool$WorkQueue.topLevelExec(ForkJoinPool.java:1182) [?:?] at java.util.concurrent.ForkJoinPool.scan(ForkJoinPool.java:1655) [?:?] at java.util.concurrent.ForkJoinPool.runWorker(ForkJoinPool.java:1622) [?:?] at java.util.concurrent.ForkJoinWorkerThread.run(ForkJoinWorkerThread.java:165) [?:?] [05Nov2024 19:11:19.391] [Worker-Main-5/ERROR] [net.minecraft.tags.TagLoader/]: Not a JSON object: null [05Nov2024 19:11:19.391] [Worker-Main-5/ERROR] [net.minecraft.tags.TagLoader/]: Couldn't read tag list minecraft:mineable/pickaxe from minecraft:tags/blocks/mineable/pickaxe.json in data pack lemoned-1.0.0-1.19.jar java.lang.RuntimeException: Not a JSON object: null at com.mojang.serialization.DataResult.lambda$getOrThrow$4(DataResult.java:100) ~[datafixerupper-5.0.28.jar%2375!/:?] at com.mojang.datafixers.util.Either$Right.map(Either.java:99) ~[datafixerupper-5.0.28.jar%2375!/:?] at com.mojang.serialization.DataResult.getOrThrow(DataResult.java:93) ~[datafixerupper-5.0.28.jar%2375!/:?] at net.minecraft.tags.TagLoader.m_144495_(TagLoader.java:62) ~[server-1.19.2-20220805.130853-srg.jar%23597!/:?] at net.minecraft.tags.TagLoader.m_203900_(TagLoader.java:177) ~[server-1.19.2-20220805.130853-srg.jar%23597!/:?] at net.minecraft.tags.TagManager.m_203920_(TagManager.java:54) ~[server-1.19.2-20220805.130853-srg.jar%23597!/:?] at java.util.concurrent.CompletableFuture$AsyncSupply.run(CompletableFuture.java:1768) [?:?] at java.util.concurrent.CompletableFuture$AsyncSupply.exec(CompletableFuture.java:1760) [?:?] at java.util.concurrent.ForkJoinTask.doExec(ForkJoinTask.java:373) [?:?] at java.util.concurrent.ForkJoinPool$WorkQueue.topLevelExec(ForkJoinPool.java:1182) [?:?] at java.util.concurrent.ForkJoinPool.scan(ForkJoinPool.java:1655) [?:?] at java.util.concurrent.ForkJoinPool.runWorker(ForkJoinPool.java:1622) [?:?] at java.util.concurrent.ForkJoinWorkerThread.run(ForkJoinWorkerThread.java:165) [?:?] [05Nov2024 19:11:19.422] [Worker-Main-5/ERROR] [net.minecraft.tags.TagLoader/]: Not a JSON object: null [05Nov2024 19:11:19.423] [Worker-Main-5/ERROR] [net.minecraft.tags.TagLoader/]: Couldn't read tag list minecraft:mineable/shovel from minecraft:tags/blocks/mineable/shovel.json in data pack lemoned-1.0.0-1.19.jar java.lang.RuntimeException: Not a JSON object: null at com.mojang.serialization.DataResult.lambda$getOrThrow$4(DataResult.java:100) ~[datafixerupper-5.0.28.jar%2375!/:?] at com.mojang.datafixers.util.Either$Right.map(Either.java:99) ~[datafixerupper-5.0.28.jar%2375!/:?] at com.mojang.serialization.DataResult.getOrThrow(DataResult.java:93) ~[datafixerupper-5.0.28.jar%2375!/:?] at net.minecraft.tags.TagLoader.m_144495_(TagLoader.java:62) ~[server-1.19.2-20220805.130853-srg.jar%23597!/:?] at net.minecraft.tags.TagLoader.m_203900_(TagLoader.java:177) ~[server-1.19.2-20220805.130853-srg.jar%23597!/:?] at net.minecraft.tags.TagManager.m_203920_(TagManager.java:54) ~[server-1.19.2-20220805.130853-srg.jar%23597!/:?] at java.util.concurrent.CompletableFuture$AsyncSupply.run(CompletableFuture.java:1768) [?:?] at java.util.concurrent.CompletableFuture$AsyncSupply.exec(CompletableFuture.java:1760) [?:?] at java.util.concurrent.ForkJoinTask.doExec(ForkJoinTask.java:373) [?:?] at java.util.concurrent.ForkJoinPool$WorkQueue.topLevelExec(ForkJoinPool.java:1182) [?:?] at java.util.concurrent.ForkJoinPool.scan(ForkJoinPool.java:1655) [?:?] at java.util.concurrent.ForkJoinPool.runWorker(ForkJoinPool.java:1622) [?:?] at java.util.concurrent.ForkJoinWorkerThread.run(ForkJoinWorkerThread.java:165) [?:?] [05Nov2024 19:11:19.428] [Worker-Main-5/ERROR] [net.minecraft.tags.TagLoader/]: Not a JSON object: null [05Nov2024 19:11:19.428] [Worker-Main-5/ERROR] [net.minecraft.tags.TagLoader/]: Couldn't read tag list minecraft:needs_diamond_tool from minecraft:tags/blocks/needs_diamond_tool.json in data pack lemoned-1.0.0-1.19.jar java.lang.RuntimeException: Not a JSON object: null at com.mojang.serialization.DataResult.lambda$getOrThrow$4(DataResult.java:100) ~[datafixerupper-5.0.28.jar%2375!/:?] at com.mojang.datafixers.util.Either$Right.map(Either.java:99) ~[datafixerupper-5.0.28.jar%2375!/:?] at com.mojang.serialization.DataResult.getOrThrow(DataResult.java:93) ~[datafixerupper-5.0.28.jar%2375!/:?] at net.minecraft.tags.TagLoader.m_144495_(TagLoader.java:62) ~[server-1.19.2-20220805.130853-srg.jar%23597!/:?] at net.minecraft.tags.TagLoader.m_203900_(TagLoader.java:177) ~[server-1.19.2-20220805.130853-srg.jar%23597!/:?] at net.minecraft.tags.TagManager.m_203920_(TagManager.java:54) ~[server-1.19.2-20220805.130853-srg.jar%23597!/:?] at java.util.concurrent.CompletableFuture$AsyncSupply.run(CompletableFuture.java:1768) [?:?] at java.util.concurrent.CompletableFuture$AsyncSupply.exec(CompletableFuture.java:1760) [?:?] at java.util.concurrent.ForkJoinTask.doExec(ForkJoinTask.java:373) [?:?] at java.util.concurrent.ForkJoinPool$WorkQueue.topLevelExec(ForkJoinPool.java:1182) [?:?] at java.util.concurrent.ForkJoinPool.scan(ForkJoinPool.java:1655) [?:?] at java.util.concurrent.ForkJoinPool.runWorker(ForkJoinPool.java:1622) [?:?] at java.util.concurrent.ForkJoinWorkerThread.run(ForkJoinWorkerThread.java:165) [?:?] [05Nov2024 19:11:19.431] [Worker-Main-5/ERROR] [net.minecraft.tags.TagLoader/]: Not a JSON object: null [05Nov2024 19:11:19.432] [Worker-Main-5/ERROR] [net.minecraft.tags.TagLoader/]: Couldn't read tag list minecraft:needs_iron_tool from minecraft:tags/blocks/needs_iron_tool.json in data pack lemoned-1.0.0-1.19.jar java.lang.RuntimeException: Not a JSON object: null at com.mojang.serialization.DataResult.lambda$getOrThrow$4(DataResult.java:100) ~[datafixerupper-5.0.28.jar%2375!/:?] at com.mojang.datafixers.util.Either$Right.map(Either.java:99) ~[datafixerupper-5.0.28.jar%2375!/:?] at com.mojang.serialization.DataResult.getOrThrow(DataResult.java:93) ~[datafixerupper-5.0.28.jar%2375!/:?] at net.minecraft.tags.TagLoader.m_144495_(TagLoader.java:62) ~[server-1.19.2-20220805.130853-srg.jar%23597!/:?] at net.minecraft.tags.TagLoader.m_203900_(TagLoader.java:177) ~[server-1.19.2-20220805.130853-srg.jar%23597!/:?] at net.minecraft.tags.TagManager.m_203920_(TagManager.java:54) ~[server-1.19.2-20220805.130853-srg.jar%23597!/:?] at java.util.concurrent.CompletableFuture$AsyncSupply.run(CompletableFuture.java:1768) [?:?] at java.util.concurrent.CompletableFuture$AsyncSupply.exec(CompletableFuture.java:1760) [?:?] at java.util.concurrent.ForkJoinTask.doExec(ForkJoinTask.java:373) [?:?] at java.util.concurrent.ForkJoinPool$WorkQueue.topLevelExec(ForkJoinPool.java:1182) [?:?] at java.util.concurrent.ForkJoinPool.scan(ForkJoinPool.java:1655) [?:?] at java.util.concurrent.ForkJoinPool.runWorker(ForkJoinPool.java:1622) [?:?] at java.util.concurrent.ForkJoinWorkerThread.run(ForkJoinWorkerThread.java:165) [?:?] [05Nov2024 19:11:19.436] [Worker-Main-5/ERROR] [net.minecraft.tags.TagLoader/]: Not a JSON object: null [05Nov2024 19:11:19.436] [Worker-Main-5/ERROR] [net.minecraft.tags.TagLoader/]: Couldn't read tag list minecraft:needs_stone_tool from minecraft:tags/blocks/needs_stone_tool.json in data pack lemoned-1.0.0-1.19.jar java.lang.RuntimeException: Not a JSON object: null at com.mojang.serialization.DataResult.lambda$getOrThrow$4(DataResult.java:100) ~[datafixerupper-5.0.28.jar%2375!/:?] at com.mojang.datafixers.util.Either$Right.map(Either.java:99) ~[datafixerupper-5.0.28.jar%2375!/:?] at com.mojang.serialization.DataResult.getOrThrow(DataResult.java:93) ~[datafixerupper-5.0.28.jar%2375!/:?] at net.minecraft.tags.TagLoader.m_144495_(TagLoader.java:62) ~[server-1.19.2-20220805.130853-srg.jar%23597!/:?] at net.minecraft.tags.TagLoader.m_203900_(TagLoader.java:177) ~[server-1.19.2-20220805.130853-srg.jar%23597!/:?] at net.minecraft.tags.TagManager.m_203920_(TagManager.java:54) ~[server-1.19.2-20220805.130853-srg.jar%23597!/:?] at java.util.concurrent.CompletableFuture$AsyncSupply.run(CompletableFuture.java:1768) [?:?] at java.util.concurrent.CompletableFuture$AsyncSupply.exec(CompletableFuture.java:1760) [?:?] at java.util.concurrent.ForkJoinTask.doExec(ForkJoinTask.java:373) [?:?] at java.util.concurrent.ForkJoinPool$WorkQueue.topLevelExec(ForkJoinPool.java:1182) [?:?] at java.util.concurrent.ForkJoinPool.scan(ForkJoinPool.java:1655) [?:?] at java.util.concurrent.ForkJoinPool.runWorker(ForkJoinPool.java:1622) [?:?] at java.util.concurrent.ForkJoinWorkerThread.run(ForkJoinWorkerThread.java:165) [?:?] [05Nov2024 19:11:19.459] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [survivalistessentials] Found status: BETA Current: 1.19.2-4.2.0.18 Target: null [05Nov2024 19:11:19.459] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [tinkersurvival] Starting version check at https://raw.githubusercontent.com/wendall911/TinkerSurvival/1.18.2/files/updates.json [05Nov2024 19:11:19.550] [Worker-Main-18/ERROR] [net.minecraft.tags.TagLoader/]: Couldn't load tag [farmersrespite:coffee_beans (from CroptopiaDelight-1.19.2_1.2.2-forge.jar)] as it is missing following references: farmersrespite:coffee_beans (from CroptopiaDelight-1.19.2_1.2.2-forge.jar) [05Nov2024 19:11:19.553] [Worker-Main-18/ERROR] [net.minecraft.tags.TagLoader/]: Couldn't load tag [#forge:coffee_beans (from Croptopia-1.19.2-FORGE-2.2.2.jar)] as it is missing following references: #forge:coffee_beans (from Croptopia-1.19.2-FORGE-2.2.2.jar) [05Nov2024 19:11:19.592] [Worker-Main-18/ERROR] [net.minecraft.tags.TagLoader/]: Couldn't load tag [mynethersdelight:powdery_hanging_sign (from MyNethersDelight-1.19-1.7.jar)] as it is missing following references: mynethersdelight:powdery_hanging_sign (from MyNethersDelight-1.19-1.7.jar) [05Nov2024 19:11:19.603] [Worker-Main-18/ERROR] [net.minecraft.tags.TagLoader/]: Couldn't load tag [farmersrespite:coffee (from CroptopiaDelight-1.19.2_1.2.2-forge.jar)] as it is missing following references: farmersrespite:coffee (from CroptopiaDelight-1.19.2_1.2.2-forge.jar) [05Nov2024 19:11:19.604] [Worker-Main-18/ERROR] [net.minecraft.tags.TagLoader/]: Couldn't load tag [farmersrespite:green_tea_leaves (from CroptopiaDelight-1.19.2_1.2.2-forge.jar), farmersrespite:yellow_tea_leaves (from CroptopiaDelight-1.19.2_1.2.2-forge.jar), farmersrespite:black_tea_leaves (from CroptopiaDelight-1.19.2_1.2.2-forge.jar)] as it is missing following references: farmersrespite:green_tea_leaves (from CroptopiaDelight-1.19.2_1.2.2-forge.jar), farmersrespite:yellow_tea_leaves (from CroptopiaDelight-1.19.2_1.2.2-forge.jar), farmersrespite:black_tea_leaves (from CroptopiaDelight-1.19.2_1.2.2-forge.jar) [05Nov2024 19:11:19.608] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [tinkersurvival] Found status: BETA Current: 1.19.2-4.1.1.7 Target: null [05Nov2024 19:11:19.608] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [betterf3] Starting version check at https://api.modrinth.com/updates/betterf3/forge_updates.json [05Nov2024 19:11:19.630] [Worker-Main-18/ERROR] [net.minecraft.tags.TagLoader/]: Couldn't load tag [mynethersdelight:powdery_hanging_sign (from MyNethersDelight-1.19-1.7.jar)] as it is missing following references: mynethersdelight:powdery_hanging_sign (from MyNethersDelight-1.19-1.7.jar) [05Nov2024 19:11:19.657] [Worker-Main-5/ERROR] [net.minecraft.tags.TagLoader/]: Couldn't load tag [twilightdelight:aurora_candle_cake (from Twilight Flavors & Delight-1.3.1.jar), twilightdelight:white_aurora_candle_cake (from Twilight Flavors & Delight-1.3.1.jar), twilightdelight:orange_aurora_candle_cake (from Twilight Flavors & Delight-1.3.1.jar), twilightdelight:magenta_aurora_candle_cake (from Twilight Flavors & Delight-1.3.1.jar), twilightdelight:light_blue_aurora_candle_cake (from Twilight Flavors & Delight-1.3.1.jar), twilightdelight:yellow_aurora_candle_cake (from Twilight Flavors & Delight-1.3.1.jar), twilightdelight:lime_aurora_candle_cake (from Twilight Flavors & Delight-1.3.1.jar), twilightdelight:pink_aurora_candle_cake (from Twilight Flavors & Delight-1.3.1.jar), twilightdelight:gray_aurora_candle_cake (from Twilight Flavors & Delight-1.3.1.jar), twilightdelight:light_gray_aurora_candle_cake (from Twilight Flavors & Delight-1.3.1.jar), twilightdelight:cyan_aurora_candle_cake (from Twilight Flavors & Delight-1.3.1.jar), twilightdelight:purple_aurora_candle_cake (from Twilight Flavors & Delight-1.3.1.jar), twilightdelight:blue_aurora_candle_cake (from Twilight Flavors & Delight-1.3.1.jar), twilightdelight:brown_aurora_candle_cake (from Twilight Flavors & Delight-1.3.1.jar), twilightdelight:green_aurora_candle_cake (from Twilight Flavors & Delight-1.3.1.jar), twilightdelight:red_aurora_candle_cake (from Twilight Flavors & Delight-1.3.1.jar), twilightdelight:black_aurora_candle_cake (from Twilight Flavors & Delight-1.3.1.jar), twilightdelight:torchberry_candle_cake (from Twilight Flavors & Delight-1.3.1.jar), twilightdelight:white_torchberry_candle_cake (from Twilight Flavors & Delight-1.3.1.jar), twilightdelight:orange_torchberry_candle_cake (from Twilight Flavors & Delight-1.3.1.jar), twilightdelight:magenta_torchberry_candle_cake (from Twilight Flavors & Delight-1.3.1.jar), twilightdelight:light_blue_torchberry_candle_cake (from Twilight Flavors & Delight-1.3.1.jar), twilightdelight:yellow_torchberry_candle_cake (from Twilight Flavors & Delight-1.3.1.jar), twilightdelight:lime_torchberry_candle_cake (from Twilight Flavors & Delight-1.3.1.jar), twilightdelight:pink_torchberry_candle_cake (from Twilight Flavors & Delight-1.3.1.jar), twilightdelight:gray_torchberry_candle_cake (from Twilight Flavors & Delight-1.3.1.jar), twilightdelight:light_gray_torchberry_candle_cake (from Twilight Flavors & Delight-1.3.1.jar), twilightdelight:cyan_torchberry_candle_cake (from Twilight Flavors & Delight-1.3.1.jar), twilightdelight:purple_torchberry_candle_cake (from Twilight Flavors & Delight-1.3.1.jar), twilightdelight:blue_torchberry_candle_cake (from Twilight Flavors & Delight-1.3.1.jar), twilightdelight:brown_torchberry_candle_cake (from Twilight Flavors & Delight-1.3.1.jar), twilightdelight:green_torchberry_candle_cake (from Twilight Flavors & Delight-1.3.1.jar), twilightdelight:red_torchberry_candle_cake (from Twilight Flavors & Delight-1.3.1.jar), twilightdelight:black_torchberry_candle_cake (from Twilight Flavors & Delight-1.3.1.jar), twilightdelight:phytochemical_candle_cake (from Twilight Flavors & Delight-1.3.1.jar), twilightdelight:white_phytochemical_candle_cake (from Twilight Flavors & Delight-1.3.1.jar), twilightdelight:orange_phytochemical_candle_cake (from Twilight Flavors & Delight-1.3.1.jar), twilightdelight:magenta_phytochemical_candle_cake (from Twilight Flavors & Delight-1.3.1.jar), twilightdelight:light_blue_phytochemical_candle_cake (from Twilight Flavors & Delight-1.3.1.jar), twilightdelight:yellow_phytochemical_candle_cake (from Twilight Flavors & Delight-1.3.1.jar), twilightdelight:lime_phytochemical_candle_cake (from Twilight Flavors & Delight-1.3.1.jar), twilightdelight:pink_phytochemical_candle_cake (from Twilight Flavors & Delight-1.3.1.jar), twilightdelight:gray_phytochemical_candle_cake (from Twilight Flavors & Delight-1.3.1.jar), twilightdelight:light_gray_phytochemical_candle_cake (from Twilight Flavors & Delight-1.3.1.jar), twilightdelight:cyan_phytochemical_candle_cake (from Twilight Flavors & Delight-1.3.1.jar), twilightdelight:purple_phytochemical_candle_cake (from Twilight Flavors & Delight-1.3.1.jar), twilightdelight:blue_phytochemical_candle_cake (from Twilight Flavors & Delight-1.3.1.jar), twilightdelight:brown_phytochemical_candle_cake (from Twilight Flavors & Delight-1.3.1.jar), twilightdelight:green_phytochemical_candle_cake (from Twilight Flavors & Delight-1.3.1.jar), twilightdelight:red_phytochemical_candle_cake (from Twilight Flavors & Delight-1.3.1.jar), twilightdelight:black_phytochemical_candle_cake (from Twilight Flavors & Delight-1.3.1.jar), twilightdelight:glacier_candle_cake (from Twilight Flavors & Delight-1.3.1.jar), twilightdelight:white_glacier_candle_cake (from Twilight Flavors & Delight-1.3.1.jar), twilightdelight:orange_glacier_candle_cake (from Twilight Flavors & Delight-1.3.1.jar), twilightdelight:magenta_glacier_candle_cake (from Twilight Flavors & Delight-1.3.1.jar), twilightdelight:light_blue_glacier_candle_cake (from Twilight Flavors & Delight-1.3.1.jar), twilightdelight:yellow_glacier_candle_cake (from Twilight Flavors & Delight-1.3.1.jar), twilightdelight:lime_glacier_candle_cake (from Twilight Flavors & Delight-1.3.1.jar), twilightdelight:pink_glacier_candle_cake (from Twilight Flavors & Delight-1.3.1.jar), twilightdelight:gray_glacier_candle_cake (from Twilight Flavors & Delight-1.3.1.jar), twilightdelight:light_gray_glacier_candle_cake (from Twilight Flavors & Delight-1.3.1.jar), twilightdelight:cyan_glacier_candle_cake (from Twilight Flavors & Delight-1.3.1.jar), twilightdelight:purple_glacier_candle_cake (from Twilight Flavors & Delight-1.3.1.jar), twilightdelight:blue_glacier_candle_cake (from Twilight Flavors & Delight-1.3.1.jar), twilightdelight:brown_glacier_candle_cake (from Twilight Flavors & Delight-1.3.1.jar), twilightdelight:green_glacier_candle_cake (from Twilight Flavors & Delight-1.3.1.jar), twilightdelight:red_glacier_candle_cake (from Twilight Flavors & Delight-1.3.1.jar), twilightdelight:black_glacier_candle_cake (from Twilight Flavors & Delight-1.3.1.jar)] as it is missing following references: twilightdelight:aurora_candle_cake (from Twilight Flavors & Delight-1.3.1.jar), twilightdelight:white_aurora_candle_cake (from Twilight Flavors & Delight-1.3.1.jar), twilightdelight:orange_aurora_candle_cake (from Twilight Flavors & Delight-1.3.1.jar), twilightdelight:magenta_aurora_candle_cake (from Twilight Flavors & Delight-1.3.1.jar), twilightdelight:light_blue_aurora_candle_cake (from Twilight Flavors & Delight-1.3.1.jar), twilightdelight:yellow_aurora_candle_cake (from Twilight Flavors & Delight-1.3.1.jar), twilightdelight:lime_aurora_candle_cake (from Twilight Flavors & Delight-1.3.1.jar), twilightdelight:pink_aurora_candle_cake (from Twilight Flavors & Delight-1.3.1.jar), twilightdelight:gray_aurora_candle_cake (from Twilight Flavors & Delight-1.3.1.jar), twilightdelight:light_gray_aurora_candle_cake (from Twilight Flavors & Delight-1.3.1.jar), twilightdelight:cyan_aurora_candle_cake (from Twilight Flavors & Delight-1.3.1.jar), twilightdelight:purple_aurora_candle_cake (from Twilight Flavors & Delight-1.3.1.jar), twilightdelight:blue_aurora_candle_cake (from Twilight Flavors & Delight-1.3.1.jar), twilightdelight:brown_aurora_candle_cake (from Twilight Flavors & Delight-1.3.1.jar), twilightdelight:green_aurora_candle_cake (from Twilight Flavors & Delight-1.3.1.jar), twilightdelight:red_aurora_candle_cake (from Twilight Flavors & Delight-1.3.1.jar), twilightdelight:black_aurora_candle_cake (from Twilight Flavors & Delight-1.3.1.jar), twilightdelight:torchberry_candle_cake (from Twilight Flavors & Delight-1.3.1.jar), twilightdelight:white_torchberry_candle_cake (from Twilight Flavors & Delight-1.3.1.jar), twilightdelight:orange_torchberry_candle_cake (from Twilight Flavors & Delight-1.3.1.jar), twilightdelight:magenta_torchberry_candle_cake (from Twilight Flavors & Delight-1.3.1.jar), twilightdelight:light_blue_torchberry_candle_cake (from Twilight Flavors & Delight-1.3.1.jar), twilightdelight:yellow_torchberry_candle_cake (from Twilight Flavors & Delight-1.3.1.jar), twilightdelight:lime_torchberry_candle_cake (from Twilight Flavors & Delight-1.3.1.jar), twilightdelight:pink_torchberry_candle_cake (from Twilight Flavors & Delight-1.3.1.jar), twilightdelight:gray_torchberry_candle_cake (from Twilight Flavors & Delight-1.3.1.jar), twilightdelight:light_gray_torchberry_candle_cake (from Twilight Flavors & Delight-1.3.1.jar), twilightdelight:cyan_torchberry_candle_cake (from Twilight Flavors & Delight-1.3.1.jar), twilightdelight:purple_torchberry_candle_cake (from Twilight Flavors & Delight-1.3.1.jar), twilightdelight:blue_torchberry_candle_cake (from Twilight Flavors & Delight-1.3.1.jar), twilightdelight:brown_torchberry_candle_cake (from Twilight Flavors & Delight-1.3.1.jar), twilightdelight:green_torchberry_candle_cake (from Twilight Flavors & Delight-1.3.1.jar), twilightdelight:red_torchberry_candle_cake (from Twilight Flavors & Delight-1.3.1.jar), twilightdelight:black_torchberry_candle_cake (from Twilight Flavors & Delight-1.3.1.jar), twilightdelight:phytochemical_candle_cake (from Twilight Flavors & Delight-1.3.1.jar), twilightdelight:white_phytochemical_candle_cake (from Twilight Flavors & Delight-1.3.1.jar), twilightdelight:orange_phytochemical_candle_cake (from Twilight Flavors & Delight-1.3.1.jar), twilightdelight:magenta_phytochemical_candle_cake (from Twilight Flavors & Delight-1.3.1.jar), twilightdelight:light_blue_phytochemical_candle_cake (from Twilight Flavors & Delight-1.3.1.jar), twilightdelight:yellow_phytochemical_candle_cake (from Twilight Flavors & Delight-1.3.1.jar), twilightdelight:lime_phytochemical_candle_cake (from Twilight Flavors & Delight-1.3.1.jar), twilightdelight:pink_phytochemical_candle_cake (from Twilight Flavors & Delight-1.3.1.jar), twilightdelight:gray_phytochemical_candle_cake (from Twilight Flavors & Delight-1.3.1.jar), twilightdelight:light_gray_phytochemical_candle_cake (from Twilight Flavors & Delight-1.3.1.jar), twilightdelight:cyan_phytochemical_candle_cake (from Twilight Flavors & Delight-1.3.1.jar), twilightdelight:purple_phytochemical_candle_cake (from Twilight Flavors & Delight-1.3.1.jar), twilightdelight:blue_phytochemical_candle_cake (from Twilight Flavors & Delight-1.3.1.jar), twilightdelight:brown_phytochemical_candle_cake (from Twilight Flavors & Delight-1.3.1.jar), twilightdelight:green_phytochemical_candle_cake (from Twilight Flavors & Delight-1.3.1.jar), twilightdelight:red_phytochemical_candle_cake (from Twilight Flavors & Delight-1.3.1.jar), twilightdelight:black_phytochemical_candle_cake (from Twilight Flavors & Delight-1.3.1.jar), twilightdelight:glacier_candle_cake (from Twilight Flavors & Delight-1.3.1.jar), twilightdelight:white_glacier_candle_cake (from Twilight Flavors & Delight-1.3.1.jar), twilightdelight:orange_glacier_candle_cake (from Twilight Flavors & Delight-1.3.1.jar), twilightdelight:magenta_glacier_candle_cake (from Twilight Flavors & Delight-1.3.1.jar), twilightdelight:light_blue_glacier_candle_cake (from Twilight Flavors & Delight-1.3.1.jar), twilightdelight:yellow_glacier_candle_cake (from Twilight Flavors & Delight-1.3.1.jar), twilightdelight:lime_glacier_candle_cake (from Twilight Flavors & Delight-1.3.1.jar), twilightdelight:pink_glacier_candle_cake (from Twilight Flavors & Delight-1.3.1.jar), twilightdelight:gray_glacier_candle_cake (from Twilight Flavors & Delight-1.3.1.jar), twilightdelight:light_gray_glacier_candle_cake (from Twilight Flavors & Delight-1.3.1.jar), twilightdelight:cyan_glacier_candle_cake (from Twilight Flavors & Delight-1.3.1.jar), twilightdelight:purple_glacier_candle_cake (from Twilight Flavors & Delight-1.3.1.jar), twilightdelight:blue_glacier_candle_cake (from Twilight Flavors & Delight-1.3.1.jar), twilightdelight:brown_glacier_candle_cake (from Twilight Flavors & Delight-1.3.1.jar), twilightdelight:green_glacier_candle_cake (from Twilight Flavors & Delight-1.3.1.jar), twilightdelight:red_glacier_candle_cake (from Twilight Flavors & Delight-1.3.1.jar), twilightdelight:black_glacier_candle_cake (from Twilight Flavors & Delight-1.3.1.jar) [05Nov2024 19:11:19.660] [Worker-Main-5/ERROR] [net.minecraft.tags.TagLoader/]: Couldn't load tag [#minecraft:candle_cakes (from MyNethersDelight-1.19-1.7.jar)] as it is missing following references: #minecraft:candle_cakes (from MyNethersDelight-1.19-1.7.jar) [05Nov2024 19:11:19.672] [Worker-Main-5/ERROR] [net.minecraft.tags.TagLoader/]: Couldn't load tag [#minecraft:candle_cakes (from FarmersDelight-1.19.2-1.2.4.jar)] as it is missing following references: #minecraft:candle_cakes (from FarmersDelight-1.19.2-1.2.4.jar) [05Nov2024 19:11:19.673] [Worker-Main-5/ERROR] [net.minecraft.tags.TagLoader/]: Couldn't load tag [#minecraft:candle_cakes (from tleveling-0.2.0-1.19.2.jar)] as it is missing following references: #minecraft:candle_cakes (from tleveling-0.2.0-1.19.2.jar) [05Nov2024 19:11:19.673] [Worker-Main-5/ERROR] [net.minecraft.tags.TagLoader/]: Couldn't load tag [quark:soul_stone (from bygonenether-1.3.2-1.19.2.jar)] as it is missing following references: quark:soul_stone (from bygonenether-1.3.2-1.19.2.jar) [05Nov2024 19:11:19.676] [Worker-Main-5/ERROR] [net.minecraft.tags.TagLoader/]: Couldn't load tag [mynethersdelight:powdery_hanging_sign (from MyNethersDelight-1.19-1.7.jar)] as it is missing following references: mynethersdelight:powdery_hanging_sign (from MyNethersDelight-1.19-1.7.jar) [05Nov2024 19:11:19.676] [Worker-Main-5/ERROR] [net.minecraft.tags.TagLoader/]: Couldn't load tag [#minecraft:candle_cakes (from Tinkers-Thinking-0.1.3.3.2.jar)] as it is missing following references: #minecraft:candle_cakes (from Tinkers-Thinking-0.1.3.3.2.jar) [05Nov2024 19:11:19.677] [Worker-Main-5/ERROR] [net.minecraft.tags.TagLoader/]: Couldn't load tag [mynethersdelight:powdery_wall_hanging_sign (from MyNethersDelight-1.19-1.7.jar)] as it is missing following references: mynethersdelight:powdery_wall_hanging_sign (from MyNethersDelight-1.19-1.7.jar) [05Nov2024 19:11:19.856] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [betterf3] Found status: UP_TO_DATE Current: 4.0.1 Target: null [05Nov2024 19:11:20.266] [main/INFO] [Cucumber Library/]: Cucumber registered 0 recipes in 0 ms [05Nov2024 19:11:20.278] [main/ERROR] [net.minecraft.world.item.crafting.RecipeManager/]: Parsing error loading recipe create:crushing/compat/ae2/deepslate_quartz_ore: com.google.gson.JsonSyntaxException: Unknown item 'ae2:deepslate_quartz_ore' [05Nov2024 19:11:20.292] [main/ERROR] [net.minecraft.world.item.crafting.RecipeManager/]: Parsing error loading recipe ends_delight:brewing/chorus_fruit_milk_tea: com.google.gson.JsonSyntaxException: Invalid or unsupported recipe type 'farmersrespite:brewing' [05Nov2024 19:11:20.305] [main/INFO] [net.minecraft.world.item.crafting.RecipeManager/]: Skipping loading recipe bigreactors:turbine/reinforced/casing_upgrade as it's serializer returned null [05Nov2024 19:11:20.306] [main/INFO] [net.minecraft.world.item.crafting.RecipeManager/]: Skipping loading recipe bigreactors:reactor/reinforced/fuelrod_ingots_uranium as it's serializer returned null [05Nov2024 19:11:20.308] [main/INFO] [net.minecraft.world.item.crafting.RecipeManager/]: Skipping loading recipe bigreactors:reactor/reinforced/passivefluidport_mekanism as it's serializer returned null [05Nov2024 19:11:20.310] [main/INFO] [net.minecraft.world.item.crafting.RecipeManager/]: Skipping loading recipe industrialforegoing:laser_drill_ore/ores/fluorite as it's serializer returned null [05Nov2024 19:11:20.318] [main/WARN] [Mantle/]: Using deprecated key 'name' for fluid ingredient, use 'fluid' instead. This will be removed in the future [05Nov2024 19:11:20.327] [main/WARN] [Mantle/]: Using deprecated key 'name' for fluid ingredient, use 'fluid' instead. This will be removed in the future [05Nov2024 19:11:20.332] [main/WARN] [Mantle/]: Using deprecated key 'name' for fluid ingredient, use 'fluid' instead. This will be removed in the future [05Nov2024 19:11:20.358] [main/ERROR] [net.minecraft.world.item.crafting.RecipeManager/]: Parsing error loading recipe twilightdelight:neapolitan/phytochemical_cake_slice: com.google.gson.JsonSyntaxException: Unknown item 'twilightdelight:phytochemical_cake' [05Nov2024 19:11:20.365] [main/ERROR] [net.minecraft.world.item.crafting.RecipeManager/]: Parsing error loading recipe ends_delight:brewing/chorus_flower_tea: com.google.gson.JsonSyntaxException: Invalid or unsupported recipe type 'farmersrespite:brewing' [05Nov2024 19:11:20.368] [main/INFO] [net.minecraft.world.item.crafting.RecipeManager/]: Skipping loading recipe twilightforest:jeed/hunger as it's serializer returned null [05Nov2024 19:11:20.369] [main/WARN] [com.simibubi.create.Create/]: Your custom createaddition:rolling/brass_ingot recipe (createaddition:rolling/brass_ingot) specified a duration. Durations have no impact on this type of recipe. [05Nov2024 19:11:20.369] [main/INFO] [net.minecraft.world.item.crafting.RecipeManager/]: Skipping loading recipe mysticalagriculture:supremium_essence as it's serializer returned null [05Nov2024 19:11:20.378] [main/ERROR] [net.minecraft.world.item.crafting.RecipeManager/]: Parsing error loading recipe twilightdelight:rainbow_ice_cream: com.google.gson.JsonSyntaxException: Unknown item 'twilightdelight:aurora_ice_cream' [05Nov2024 19:11:20.378] [main/WARN] [Mantle/]: Using deprecated key 'name' for fluid ingredient, use 'fluid' instead. This will be removed in the future [05Nov2024 19:11:20.378] [main/WARN] [Mantle/]: Using deprecated key 'name' for fluid ingredient, use 'fluid' instead. This will be removed in the future [05Nov2024 19:11:20.379] [main/WARN] [Mantle/]: Using deprecated key 'name' for fluid ingredient, use 'fluid' instead. This will be removed in the future [05Nov2024 19:11:20.388] [main/INFO] [net.minecraft.world.item.crafting.RecipeManager/]: Skipping loading recipe bigreactors:reactor/reinforced/fuelrod_ingots_yellorium as it's serializer returned null [05Nov2024 19:11:20.404] [main/INFO] [net.minecraft.world.item.crafting.RecipeManager/]: Skipping loading recipe ars_elemental:jeed/life_link as it's serializer returned null [05Nov2024 19:11:20.406] [main/WARN] [Mantle/]: Using deprecated key 'name' for fluid ingredient, use 'fluid' instead. This will be removed in the future [05Nov2024 19:11:20.407] [main/ERROR] [net.minecraft.world.item.crafting.RecipeManager/]: Parsing error loading recipe theabyss:jungle_planks_rcp_2: com.google.gson.JsonSyntaxException: Unknown item 'theabyss:deleted_mod_element' [05Nov2024 19:11:20.408] [main/WARN] [com.simibubi.create.Create/]: Your custom createaddition:rolling/copper_ingot recipe (createaddition:rolling/copper_ingot) specified a duration. Durations have no impact on this type of recipe. [05Nov2024 19:11:20.408] [main/INFO] [net.minecraft.world.item.crafting.RecipeManager/]: Skipping loading recipe industrialforegoing:laser_drill_ore/ores/sulfur as it's serializer returned null [05Nov2024 19:11:20.409] [main/INFO] [net.minecraft.world.item.crafting.RecipeManager/]: Skipping loading recipe industrialforegoing:laser_drill_ore/raw_materials/tetrahedrite as it's serializer returned null [05Nov2024 19:11:20.410] [main/WARN] [Mantle/]: Using deprecated key 'name' for fluid ingredient, use 'fluid' instead. This will be removed in the future [05Nov2024 19:11:20.410] [main/WARN] [Mantle/]: Using deprecated key 'name' for fluid ingredient, use 'fluid' instead. This will be removed in the future [05Nov2024 19:11:20.412] [main/INFO] [net.minecraft.world.item.crafting.RecipeManager/]: Skipping loading recipe projecte:tome as it's serializer returned null [05Nov2024 19:11:20.412] [main/INFO] [net.minecraft.world.item.crafting.RecipeManager/]: Skipping loading recipe ars_elemental:jeed/entrhalled as it's serializer returned null [05Nov2024 19:11:20.421] [main/ERROR] [net.minecraft.world.item.crafting.RecipeManager/]: Parsing error loading recipe better_netherite:raw_netherite: com.google.gson.JsonSyntaxException: Unknown item 'better_netherite:raw_netherite' [05Nov2024 19:11:20.431] [main/INFO] [net.minecraft.world.item.crafting.RecipeManager/]: Skipping loading recipe bigreactors:reactor/reinforced/controlrod as it's serializer returned null [05Nov2024 19:11:20.435] [main/INFO] [net.minecraft.world.item.crafting.RecipeManager/]: Skipping loading recipe mysticalagriculture:prudentium_essence as it's serializer returned null [05Nov2024 19:11:20.436] [main/INFO] [net.minecraft.world.item.crafting.RecipeManager/]: Skipping loading recipe bigreactors:turbine/reinforced/casing as it's serializer returned null [05Nov2024 19:11:20.444] [main/INFO] [net.minecraft.world.item.crafting.RecipeManager/]: Skipping loading recipe endergetic:large_poise_boat as it's serializer returned null [05Nov2024 19:11:20.449] [main/INFO] [net.minecraft.world.item.crafting.RecipeManager/]: Skipping loading recipe bigreactors:turbine/reinforced/redstoneport as it's serializer returned null [05Nov2024 19:11:20.450] [main/ERROR] [net.minecraft.world.item.crafting.RecipeManager/]: Parsing error loading recipe create:milling/compat/byg/compat/byg/white_sage: com.google.gson.JsonSyntaxException: Unknown item 'byg:compat/byg/white_sage' [05Nov2024 19:11:20.460] [main/INFO] [net.minecraft.world.item.crafting.RecipeManager/]: Skipping loading recipe twilightforest:jeed/poison as it's serializer returned null [05Nov2024 19:11:20.470] [main/ERROR] [net.minecraft.world.item.crafting.RecipeManager/]: Parsing error loading recipe create:pressing/compat/byg/lush_grass_path: com.google.gson.JsonSyntaxException: Unknown item 'byg:lush_grass' [05Nov2024 19:11:20.473] [main/INFO] [net.minecraft.world.item.crafting.RecipeManager/]: Skipping loading recipe industrialforegoing:laser_drill_ore/ores/ruby as it's serializer returned null [05Nov2024 19:11:20.487] [main/INFO] [net.minecraft.world.item.crafting.RecipeManager/]: Skipping loading recipe projecte:tome_alt as it's serializer returned null [05Nov2024 19:11:20.495] [main/INFO] [net.minecraft.world.item.crafting.RecipeManager/]: Skipping loading recipe industrialforegoing:laser_drill_ore/raw_materials/iridium as it's serializer returned null [05Nov2024 19:11:20.497] [main/WARN] [Mantle/]: Using deprecated key 'name' for fluid ingredient, use 'fluid' instead. This will be removed in the future [05Nov2024 19:11:20.498] [main/INFO] [net.minecraft.world.item.crafting.RecipeManager/]: Skipping loading recipe ars_elemental:jeed/watery_grave as it's serializer returned null [05Nov2024 19:11:20.498] [main/WARN] [Mantle/]: Using deprecated key 'name' for fluid ingredient, use 'fluid' instead. This will be removed in the future [05Nov2024 19:11:20.500] [main/WARN] [Mantle/]: Using deprecated key 'name' for fluid ingredient, use 'fluid' instead. This will be removed in the future [05Nov2024 19:11:20.500] [main/WARN] [com.simibubi.create.Create/]: Your custom createaddition:rolling/electrum_plate recipe (createaddition:rolling/electrum_plate) specified a duration. Durations have no impact on this type of recipe. [05Nov2024 19:11:20.501] [main/ERROR] [net.minecraft.world.item.crafting.RecipeManager/]: Parsing error loading recipe create:milling/compat/byg/purple_rose: com.google.gson.JsonSyntaxException: Unknown item 'byg:purple_rose' [05Nov2024 19:11:20.503] [main/WARN] [Mantle/]: Using deprecated key 'name' for fluid ingredient, use 'fluid' instead. This will be removed in the future [05Nov2024 19:11:20.505] [main/WARN] [Mantle/]: Using deprecated key 'name' for fluid ingredient, use 'fluid' instead. This will be removed in the future [05Nov2024 19:11:20.514] [main/INFO] [net.minecraft.world.item.crafting.RecipeManager/]: Skipping loading recipe bigreactors:reactor/reinforced/solidaccessport as it's serializer returned null [05Nov2024 19:11:20.516] [main/INFO] [net.minecraft.world.item.crafting.RecipeManager/]: Skipping loading recipe industrialforegoing:laser_drill_ore/ores/cinnabar as it's serializer returned null [05Nov2024 19:11:20.518] [main/INFO] [net.minecraft.world.item.crafting.RecipeManager/]: Skipping loading recipe bigreactors:turbine/reinforced/shaft as it's serializer returned null [05Nov2024 19:11:20.519] [main/INFO] [net.minecraft.world.item.crafting.RecipeManager/]: Skipping loading recipe industrialforegoing:laser_drill_ore/raw_materials/galena as it's serializer returned null [05Nov2024 19:11:20.520] [main/INFO] [net.minecraft.world.item.crafting.RecipeManager/]: Skipping loading recipe industrialforegoing:laser_drill_ore/raw_materials/tungsten as it's serializer returned null [05Nov2024 19:11:20.526] [main/WARN] [com.simibubi.create.Create/]: Your custom createaddition:rolling/iron_plate recipe (createaddition:rolling/iron_plate) specified a duration. Durations have no impact on this type of recipe. [05Nov2024 19:11:20.528] [main/ERROR] [net.minecraft.world.item.crafting.RecipeManager/]: Parsing error loading recipe farmersrespite:chilidog_alt: com.google.gson.JsonSyntaxException: Unknown item 'farmersrespite:blazing_chili' [05Nov2024 19:11:20.530] [main/INFO] [net.minecraft.world.item.crafting.RecipeManager/]: Skipping loading recipe ars_elemental:jeed/mana_shield as it's serializer returned null [05Nov2024 19:11:20.530] [main/INFO] [net.minecraft.world.item.crafting.RecipeManager/]: Skipping loading recipe industrialforegoing:laser_drill_ore/ores/sapphire as it's serializer returned null [05Nov2024 19:11:20.534] [main/ERROR] [net.minecraft.world.item.crafting.RecipeManager/]: Parsing error loading recipe create:milling/compat/byg/lolipop_flower: com.google.gson.JsonSyntaxException: Unknown item 'byg:lolipop_flower' [05Nov2024 19:11:20.534] [main/ERROR] [net.minecraft.world.item.crafting.RecipeManager/]: Parsing error loading recipe croptopia:pumpkin_spice_latte: com.google.gson.JsonSyntaxException: Invalid or unsupported recipe type 'farmersrespite:brewing' [05Nov2024 19:11:20.538] [main/ERROR] [net.minecraft.world.item.crafting.RecipeManager/]: Parsing error loading recipe mynethersdelight:powdery_hanging_sign: com.google.gson.JsonSyntaxException: Unknown item 'mynethersdelight:powdery_hanging_sign' [05Nov2024 19:11:20.539] [main/WARN] [Mantle/]: Using deprecated key 'name' for fluid ingredient, use 'fluid' instead. This will be removed in the future [05Nov2024 19:11:20.540] [main/WARN] [Mantle/]: Using deprecated key 'name' for fluid ingredient, use 'fluid' instead. This will be removed in the future [05Nov2024 19:11:20.542] [main/INFO] [net.minecraft.world.item.crafting.RecipeManager/]: Skipping loading recipe twilightforest:jeed/regeneration as it's serializer returned null [05Nov2024 19:11:20.543] [main/WARN] [com.simibubi.create.Create/]: Your custom createaddition:rolling/gold_plate recipe (createaddition:rolling/gold_plate) specified a duration. Durations have no impact on this type of recipe. [05Nov2024 19:11:20.549] [main/INFO] [net.minecraft.world.item.crafting.RecipeManager/]: Skipping loading recipe twilightforest:jeed/fire_resistance as it's serializer returned null [05Nov2024 19:11:20.549] [main/INFO] [net.minecraft.world.item.crafting.RecipeManager/]: Skipping loading recipe industrialforegoing:laser_drill_fluid/oil as it's serializer returned null [05Nov2024 19:11:20.553] [main/ERROR] [net.minecraft.world.item.crafting.RecipeManager/]: Parsing error loading recipe better_netherite:netherite_plating: com.google.gson.JsonSyntaxException: Unknown item 'better_netherite:netherite_plating' [05Nov2024 19:11:20.556] [main/WARN] [Mantle/]: Using deprecated key 'name' for fluid ingredient, use 'fluid' instead. This will be removed in the future [05Nov2024 19:11:20.556] [main/WARN] [com.simibubi.create.Create/]: Your custom createaddition:rolling/electrum_ingot recipe (createaddition:rolling/electrum_ingot) specified a duration. Durations have no impact on this type of recipe. [05Nov2024 19:11:20.557] [main/INFO] [net.minecraft.world.item.crafting.RecipeManager/]: Skipping loading recipe bigreactors:reactor/reinforced/casing as it's serializer returned null [05Nov2024 19:11:20.559] [main/INFO] [net.minecraft.world.item.crafting.RecipeManager/]: Skipping loading recipe ars_elemental:jeed/hellfire_burn as it's serializer returned null [05Nov2024 19:11:20.560] [main/INFO] [net.minecraft.world.item.crafting.RecipeManager/]: Skipping loading recipe bigreactors:turbine/reinforced/computerport as it's serializer returned null [05Nov2024 19:11:20.563] [main/INFO] [net.minecraft.world.item.crafting.RecipeManager/]: Skipping loading recipe industrialforegoing:laser_drill_ore/raw_materials/cinnabar as it's serializer returned null [05Nov2024 19:11:20.566] [main/ERROR] [net.minecraft.world.item.crafting.RecipeManager/]: Parsing error loading recipe mynethersdelight:chilidog_alt: com.google.gson.JsonSyntaxException: Unknown item 'farmersrespite:blazing_chili' [05Nov2024 19:11:20.570] [main/WARN] [Mantle/]: Using deprecated key 'name' for fluid ingredient, use 'fluid' instead. This will be removed in the future [05Nov2024 19:11:20.570] [main/INFO] [net.minecraft.world.item.crafting.RecipeManager/]: Skipping loading recipe mysticalagriculture:tertium_essence as it's serializer returned null [05Nov2024 19:11:20.574] [main/WARN] [Mantle/]: Using deprecated key 'name' for fluid ingredient, use 'fluid' instead. This will be removed in the future [05Nov2024 19:11:20.580] [main/INFO] [net.minecraft.world.item.crafting.RecipeManager/]: Skipping loading recipe endergetic:poise_furnace_boat as it's serializer returned null [05Nov2024 19:11:20.580] [main/INFO] [net.minecraft.world.item.crafting.RecipeManager/]: Skipping loading recipe bigreactors:turbine/reinforced/bearing as it's serializer returned null [05Nov2024 19:11:20.581] [main/INFO] [net.minecraft.world.item.crafting.RecipeManager/]: Skipping loading recipe twilightforest:jeed/frosted as it's serializer returned null [05Nov2024 19:11:20.584] [main/INFO] [net.minecraft.world.item.crafting.RecipeManager/]: Skipping loading recipe mysticalagriculture:master_infusion_crystal as it's serializer returned null [05Nov2024 19:11:20.588] [main/INFO] [net.minecraft.world.item.crafting.RecipeManager/]: Skipping loading recipe industrialforegoing:laser_drill_ore/raw_materials/yellorium as it's serializer returned null [05Nov2024 19:11:20.589] [main/INFO] [net.minecraft.world.item.crafting.RecipeManager/]: Skipping loading recipe industrialforegoing:laser_drill_ore/raw_materials/yellorite as it's serializer returned null [05Nov2024 19:11:20.589] [main/ERROR] [net.minecraft.world.item.crafting.RecipeManager/]: Parsing error loading recipe create:milling/compat/byg/orchid: com.google.gson.JsonSyntaxException: Unknown item 'byg:orchid' [05Nov2024 19:11:20.590] [main/INFO] [net.minecraft.world.item.crafting.RecipeManager/]: Skipping loading recipe industrialforegoing:laser_drill_ore/raw_materials/platinum as it's serializer returned null [05Nov2024 19:11:20.590] [main/ERROR] [net.minecraft.world.item.crafting.RecipeManager/]: Parsing error loading recipe twilightdelight:neapolitan/aurora_cake_slice: com.google.gson.JsonSyntaxException: Unknown item 'twilightdelight:aurora_cake' [05Nov2024 19:11:20.591] [main/INFO] [net.minecraft.world.item.crafting.RecipeManager/]: Skipping loading recipe botany_pots:ars_elemental/flashing_archwood as it's serializer returned null [05Nov2024 19:11:20.598] [main/WARN] [com.simibubi.create.Create/]: Your custom createaddition:rolling/iron_ingot recipe (createaddition:rolling/iron_ingot) specified a duration. Durations have no impact on this type of recipe. [05Nov2024 19:11:20.600] [main/INFO] [net.minecraft.world.item.crafting.RecipeManager/]: Skipping loading recipe industrialforegoing:laser_drill_ore/ores/niter as it's serializer returned null [05Nov2024 19:11:20.612] [main/WARN] [Mantle/]: Using deprecated key 'name' for fluid ingredient, use 'fluid' instead. This will be removed in the future [05Nov2024 19:11:20.613] [main/ERROR] [net.minecraft.world.item.crafting.RecipeManager/]: Parsing error loading recipe twilightdelight:refreshing_ice_cream: com.google.gson.JsonSyntaxException: Unknown item 'twilightdelight:glacier_ice_cream' [05Nov2024 19:11:20.613] [main/ERROR] [net.minecraft.world.item.crafting.RecipeManager/]: Parsing error loading recipe create:milling/compat/byg/compat/byg/winter_cyclamen: com.google.gson.JsonSyntaxException: Unknown item 'byg:compat/byg/winter_cyclamen' [05Nov2024 19:11:20.614] [main/WARN] [Mantle/]: Using deprecated key 'name' for fluid ingredient, use 'fluid' instead. This will be removed in the future [05Nov2024 19:11:20.615] [main/WARN] [Mantle/]: Using deprecated key 'name' for fluid ingredient, use 'fluid' instead. This will be removed in the future [05Nov2024 19:11:20.617] [main/WARN] [com.simibubi.create.Create/]: Your custom create:mixing recipe (createaddition:compat/tconstruct/pig_iron_2) has more item inputs (13) than supported (9). [05Nov2024 19:11:20.624] [main/WARN] [Mantle/]: Using deprecated key 'name' for fluid ingredient, use 'fluid' instead. This will be removed in the future [05Nov2024 19:11:20.625] [main/INFO] [net.minecraft.world.item.crafting.RecipeManager/]: Skipping loading recipe industrialforegoing:laser_drill_ore/raw_materials/ardite as it's serializer returned null [05Nov2024 19:11:20.630] [main/WARN] [com.simibubi.create.Create/]: Your custom createaddition:rolling/gold_ingot recipe (createaddition:rolling/gold_ingot) specified a duration. Durations have no impact on this type of recipe. [05Nov2024 19:11:20.631] [main/INFO] [net.minecraft.world.item.crafting.RecipeManager/]: Skipping loading recipe twilightforest:jeed/blindness as it's serializer returned null [05Nov2024 19:11:20.631] [main/WARN] [com.simibubi.create.Create/]: Your custom createaddition:rolling/straw recipe (createaddition:rolling/straw) specified a duration. Durations have no impact on this type of recipe. [05Nov2024 19:11:20.631] [main/WARN] [Mantle/]: Using deprecated key 'name' for fluid ingredient, use 'fluid' instead. This will be removed in the future [05Nov2024 19:11:20.637] [main/WARN] [Mantle/]: Using deprecated key 'name' for fluid ingredient, use 'fluid' instead. This will be removed in the future [05Nov2024 19:11:20.645] [main/ERROR] [net.minecraft.world.item.crafting.RecipeManager/]: Parsing error loading recipe aethersteel:aethersteel_bookshelf_recipe: com.google.gson.JsonSyntaxException: Unknown item 'ironbookshelves:netherite_bookshelf' [05Nov2024 19:11:20.647] [main/ERROR] [net.minecraft.world.item.crafting.RecipeManager/]: Parsing error loading recipe create:crushing/compat/ae2/quartz_ore: com.google.gson.JsonSyntaxException: Unknown item 'ae2:quartz_ore' [05Nov2024 19:11:20.647] [main/INFO] [net.minecraft.world.item.crafting.RecipeManager/]: Skipping loading recipe industrialforegoing:laser_drill_ore/ores/peridot as it's serializer returned null [05Nov2024 19:11:20.648] [main/WARN] [Mantle/]: Using deprecated key 'name' for fluid ingredient, use 'fluid' instead. This will be removed in the future [05Nov2024 19:11:20.649] [main/INFO] [net.minecraft.world.item.crafting.RecipeManager/]: Skipping loading recipe mysticalagradditions:insanium_essence as it's serializer returned null [05Nov2024 19:11:20.650] [main/ERROR] [net.minecraft.world.item.crafting.RecipeManager/]: Parsing error loading recipe twilightdelight:jeed/temporal_sadness: com.google.gson.JsonSyntaxException: Invalid or unsupported recipe type 'jeed:effect_provider' [05Nov2024 19:11:20.652] [main/ERROR] [net.minecraft.world.item.crafting.RecipeManager/]: Parsing error loading recipe twilightdelight:neapolitan/glacier_cake_slice: com.google.gson.JsonSyntaxException: Unknown item 'twilightdelight:glacier_cake' [05Nov2024 19:11:20.652] [main/INFO] [net.minecraft.world.item.crafting.RecipeManager/]: Skipping loading recipe endergetic:poise_beehive as it's serializer returned null [05Nov2024 19:11:20.658] [main/INFO] [net.minecraft.world.item.crafting.RecipeManager/]: Skipping loading recipe bigreactors:reactor/reinforced/casing_upgrade as it's serializer returned null [05Nov2024 19:11:20.658] [main/INFO] [net.minecraft.world.item.crafting.RecipeManager/]: Skipping loading recipe industrialforegoing:laser_drill_ore/ores/arcane as it's serializer returned null [05Nov2024 19:11:20.658] [main/INFO] [net.minecraft.world.item.crafting.RecipeManager/]: Skipping loading recipe industrialforegoing:laser_drill_ore/ores/bitumen as it's serializer returned null [05Nov2024 19:11:20.667] [main/INFO] [net.minecraft.world.item.crafting.RecipeManager/]: Skipping loading recipe industrialforegoing:laser_drill_ore/raw_materials/pyrite as it's serializer returned null [05Nov2024 19:11:20.675] [main/WARN] [Mantle/]: Using deprecated key 'name' for fluid ingredient, use 'fluid' instead. This will be removed in the future [05Nov2024 19:11:20.677] [main/INFO] [net.minecraft.world.item.crafting.RecipeManager/]: Skipping loading recipe bigreactors:reactor/reinforced/computerport as it's serializer returned null [05Nov2024 19:11:20.677] [main/WARN] [Mantle/]: Using deprecated key 'name' for fluid ingredient, use 'fluid' instead. This will be removed in the future [05Nov2024 19:11:20.677] [main/INFO] [net.minecraft.world.item.crafting.RecipeManager/]: Skipping loading recipe bigreactors:reactor/reinforced/redstoneport as it's serializer returned null [05Nov2024 19:11:20.677] [main/INFO] [net.minecraft.world.item.crafting.RecipeManager/]: Skipping loading recipe bigreactors:reactor/reinforced/fluidaccessport as it's serializer returned null [05Nov2024 19:11:20.677] [main/INFO] [net.minecraft.world.item.crafting.RecipeManager/]: Skipping loading recipe bigreactors:turbine/reinforced/blade as it's serializer returned null [05Nov2024 19:11:20.680] [main/INFO] [net.minecraft.world.item.crafting.RecipeManager/]: Skipping loading recipe industrialforegoing:laser_drill_ore/ores/draconium as it's serializer returned null [05Nov2024 19:11:20.689] [main/INFO] [net.minecraft.world.item.crafting.RecipeManager/]: Skipping loading recipe industrialforegoing:laser_drill_ore/raw_materials/bauxite as it's serializer returned null [05Nov2024 19:11:20.689] [main/ERROR] [net.minecraft.world.item.crafting.RecipeManager/]: Parsing error loading recipe croptopia:coffee: com.google.gson.JsonSyntaxException: Invalid or unsupported recipe type 'farmersrespite:brewing' [05Nov2024 19:11:20.689] [main/INFO] [net.minecraft.world.item.crafting.RecipeManager/]: Skipping loading recipe twilightforest:jeed/resistance as it's serializer returned null [05Nov2024 19:11:20.690] [main/WARN] [Mantle/]: Using deprecated key 'name' for fluid ingredient, use 'fluid' instead. This will be removed in the future [05Nov2024 19:11:20.691] [main/INFO] [net.minecraft.world.item.crafting.RecipeManager/]: Skipping loading recipe industrialforegoing:laser_drill_ore/raw_materials/sheldonite as it's serializer returned null [05Nov2024 19:11:20.693] [main/INFO] [net.minecraft.world.item.crafting.RecipeManager/]: Skipping loading recipe industrialforegoing:laser_drill_ore/ores/sodalite as it's serializer returned null [05Nov2024 19:11:20.696] [main/WARN] [Mantle/]: Using deprecated key 'name' for fluid ingredient, use 'fluid' instead. This will be removed in the future [05Nov2024 19:11:20.698] [main/WARN] [com.simibubi.create.Create/]: Your custom createaddition:rolling/copper_plate recipe (createaddition:rolling/copper_plate) specified a duration. Durations have no impact on this type of recipe. [05Nov2024 19:11:20.699] [main/WARN] [Mantle/]: Using deprecated key 'name' for fluid ingredient, use 'fluid' instead. This will be removed in the future [05Nov2024 19:11:20.699] [main/ERROR] [net.minecraft.world.item.crafting.RecipeManager/]: Parsing error loading recipe twilightdelight:neapolitan/torchberry_cake_slice: com.google.gson.JsonSyntaxException: Unknown item 'twilightdelight:torchberry_cake' [05Nov2024 19:11:20.701] [main/WARN] [Mantle/]: Using deprecated key 'name' for fluid ingredient, use 'fluid' instead. This will be removed in the future [05Nov2024 19:11:20.701] [main/WARN] [Mantle/]: Using deprecated key 'name' for fluid ingredient, use 'fluid' instead. This will be removed in the future [05Nov2024 19:11:20.702] [main/INFO] [net.minecraft.world.item.crafting.RecipeManager/]: Skipping loading recipe endergetic:poise_boards as it's serializer returned null [05Nov2024 19:11:20.703] [main/ERROR] [net.minecraft.world.item.crafting.RecipeManager/]: Parsing error loading recipe ends_delight:brewing/bubble_tea: com.google.gson.JsonSyntaxException: Invalid or unsupported recipe type 'farmersrespite:brewing' [05Nov2024 19:11:20.703] [main/ERROR] [net.minecraft.world.item.crafting.RecipeManager/]: Parsing error loading recipe better_netherite:netheritecooking: com.google.gson.JsonSyntaxException: Unknown item 'better_netherite:war_netherite' [05Nov2024 19:11:20.705] [main/ERROR] [net.minecraft.world.item.crafting.RecipeManager/]: Parsing error loading recipe croptopia:shaped_tea: com.google.gson.JsonSyntaxException: Invalid or unsupported recipe type 'farmersrespite:brewing' [05Nov2024 19:11:20.705] [main/WARN] [Mantle/]: Using deprecated key 'name' for fluid ingredient, use 'fluid' instead. This will be removed in the future [05Nov2024 19:11:20.706] [main/INFO] [net.minecraft.world.item.crafting.RecipeManager/]: Skipping loading recipe mysticalagriculture:infusion_crystal as it's serializer returned null [05Nov2024 19:11:20.707] [main/ERROR] [net.minecraft.world.item.crafting.RecipeManager/]: Parsing error loading recipe miningmaster:forging/paragon_shield: com.google.gson.JsonSyntaxException: Invalid or unsupported recipe type 'miningmaster:forging_recipe' [05Nov2024 19:11:20.707] [main/WARN] [Mantle/]: Using deprecated key 'name' for fluid ingredient, use 'fluid' instead. This will be removed in the future [05Nov2024 19:11:20.708] [main/ERROR] [net.minecraft.world.item.crafting.RecipeManager/]: Parsing error loading recipe twilightdelight:twilight_ice_cream: com.google.gson.JsonSyntaxException: Unknown item 'twilightdelight:torchberry_ice_cream' [05Nov2024 19:11:20.715] [main/INFO] [net.minecraft.world.item.crafting.RecipeManager/]: Skipping loading recipe twilightforest:jeed/slowness as it's serializer returned null [05Nov2024 19:11:20.716] [main/INFO] [net.minecraft.world.item.crafting.RecipeManager/]: Skipping loading recipe industrialforegoing:laser_drill_ore/raw_materials/cobalt as it's serializer returned null [05Nov2024 19:11:20.716] [main/INFO] [net.minecraft.world.item.crafting.RecipeManager/]: Skipping loading recipe mysticalagriculture:imperium_essence as it's serializer returned null [05Nov2024 19:11:20.717] [main/ERROR] [net.minecraft.world.item.crafting.RecipeManager/]: Parsing error loading recipe shieldexp:griefer_shield: com.google.gson.JsonSyntaxException: Unknown item 'savage_and_ravage:blast_proof_plating' [05Nov2024 19:11:20.724] [main/INFO] [net.minecraft.world.item.crafting.RecipeManager/]: Loaded 103 recipes [05Nov2024 19:11:20.793] [main/INFO] [HammerLib/]: Reloading HammerLib recipes... [05Nov2024 19:11:20.793] [main/INFO] [HammerLib/]: HammerLib injected 14 recipes into recipe map. Removed 0 recipes from the game. [05Nov2024 19:11:20.793] [main/INFO] [HammerLib/]: Reloading 0 custom registries. [05Nov2024 19:11:20.793] [main/INFO] [HammerLib/]: 0 custom registries reloaded, added 0 total recipes. [05Nov2024 19:11:20.798] [main/INFO] [HammerLib/]: Registered 14 additional recipes. [05Nov2024 19:11:20.801] [main/INFO] [com.possible_triangle.sliceanddice.SliceAndDice/]: Injecting recipes [05Nov2024 19:11:20.844] [main/INFO] [com.teamabnormals.blueprint.core.Blueprint/]: Loot Modification Manager has loaded 1 modifier groups [05Nov2024 19:11:20.871] [main/WARN] [net.minecraft.world.level.storage.loot.LootTables/]: Datapack tried to redefine minecraft:empty loot table, ignoring [05Nov2024 19:11:20.905] [main/ERROR] [net.minecraft.world.level.storage.loot.LootTables/]: Couldn't parse loot table twilightdelight:blocks/phytochemical_cake: com.google.gson.JsonSyntaxException: Expected name to be an item, was unknown string 'twilightdelight:phytochemical_cake_slice' [05Nov2024 19:11:20.983] [main/ERROR] [net.minecraft.world.level.storage.loot.LootTables/]: Couldn't parse loot table theabyss:entities/end_spider: com.google.gson.JsonSyntaxException: Expected name to be an item, was unknown string 'theabyss:nether_nugget' [05Nov2024 19:11:20.988] [main/ERROR] [net.minecraft.world.level.storage.loot.LootTables/]: Couldn't parse loot table twilightdelight:blocks/aurora_cake: com.google.gson.JsonSyntaxException: Expected name to be an item, was unknown string 'twilightdelight:aurora_cake_slice' [05Nov2024 19:11:20.991] [main/ERROR] [net.minecraft.world.level.storage.loot.LootTables/]: Couldn't parse loot table mynethersdelight:blocks/blackstone_cooking_pot: com.google.gson.JsonSyntaxException: Unknown type 'mynethersdelight:copy_meal' [05Nov2024 19:11:21.001] [main/ERROR] [net.minecraft.world.level.storage.loot.LootTables/]: Couldn't parse loot table mynethersdelight:blocks/powdery_hanging_sign: com.google.gson.JsonSyntaxException: Expected name to be an item, was unknown string 'mynethersdelight:powdery_hanging_sign' [05Nov2024 19:11:21.028] [main/ERROR] [net.minecraft.world.level.storage.loot.LootTables/]: Couldn't parse loot table twilightdelight:blocks/glacier_cake: com.google.gson.JsonSyntaxException: Expected name to be an item, was unknown string 'twilightdelight:glacier_cake_slice' [05Nov2024 19:11:21.060] [main/ERROR] [net.minecraft.world.level.storage.loot.LootTables/]: Couldn't parse loot table mynethersdelight:blocks/block_of_powdery_cannon: com.google.gson.JsonSyntaxException: Expected name to be an item, was unknown string 'mynethersdelight:block_of_powdery_cannon' [05Nov2024 19:11:21.069] [main/ERROR] [net.minecraft.world.level.storage.loot.LootTables/]: Couldn't parse loot table mynethersdelight:blocks/block_of_stripped_powdery_cannon: com.google.gson.JsonSyntaxException: Expected name to be an item, was unknown string 'mynethersdelight:block_of_stripped_powdery_cannon' [05Nov2024 19:11:21.097] [main/ERROR] [net.minecraft.world.level.storage.loot.LootTables/]: Couldn't parse loot table theabyss:entities/slime_spider: com.google.gson.JsonSyntaxException: Expected name to be an item, was unknown string 'theabyss:slime_stage_1' [05Nov2024 19:11:21.141] [main/ERROR] [net.minecraft.world.level.storage.loot.LootTables/]: Couldn't parse loot table twilightdelight:blocks/torchberry_cake: com.google.gson.JsonSyntaxException: Expected name to be an item, was unknown string 'twilightdelight:torchberry_cake_slice' [05Nov2024 19:11:21.217] [main/INFO] [com.teamabnormals.blueprint.core.Blueprint/]: Advancement Modification Manager has loaded 5 modifier groups [05Nov2024 19:11:21.219] [main/ERROR] [net.minecraft.server.ServerFunctionLibrary/]: Failed to load function watching:check java.util.concurrent.CompletionException: java.lang.IllegalArgumentException: Whilst parsing command on line 1: Unknown or incomplete command, see below for error at position 0: <--[HERE] at java.util.concurrent.CompletableFuture.encodeThrowable(CompletableFuture.java:315) ~[?:?] at java.util.concurrent.CompletableFuture.completeThrowable(CompletableFuture.java:320) ~[?:?] at java.util.concurrent.CompletableFuture$AsyncSupply.run(CompletableFuture.java:1770) ~[?:?] at java.util.concurrent.CompletableFuture$AsyncSupply.exec(CompletableFuture.java:1760) ~[?:?] at java.util.concurrent.ForkJoinTask.doExec(ForkJoinTask.java:373) ~[?:?] at java.util.concurrent.ForkJoinPool$WorkQueue.topLevelExec(ForkJoinPool.java:1182) ~[?:?] at java.util.concurrent.ForkJoinPool.scan(ForkJoinPool.java:1655) ~[?:?] at java.util.concurrent.ForkJoinPool.runWorker(ForkJoinPool.java:1622) ~[?:?] at java.util.concurrent.ForkJoinWorkerThread.run(ForkJoinWorkerThread.java:165) ~[?:?] Caused by: java.lang.IllegalArgumentException: Whilst parsing command on line 1: Unknown or incomplete command, see below for error at position 0: <--[HERE] at net.minecraft.commands.CommandFunction.m_77984_(CommandFunction.java:63) ~[server-1.19.2-20220805.130853-srg.jar%23597!/:?] at net.minecraft.server.ServerFunctionLibrary.m_214320_(ServerFunctionLibrary.java:85) ~[server-1.19.2-20220805.130853-srg.jar%23597!/:?] at java.util.concurrent.CompletableFuture$AsyncSupply.run(CompletableFuture.java:1768) ~[?:?] ... 6 more [05Nov2024 19:11:21.220] [main/WARN] [HammerLib/]: Unable to find registry for tag directory tags/functions [05Nov2024 19:11:21.258] [main/ERROR] [net.minecraft.server.ServerAdvancementManager/]: Parsing error loading custom advancement survivalistessentials:recipes/building_blocks/planks_from_driftwood: Unknown item id 'aquaculture:driftwood' [05Nov2024 19:11:21.260] [main/ERROR] [net.minecraft.server.ServerAdvancementManager/]: Parsing error loading custom advancement man:thetear: Non [a-z0-9/._-] character in path of location: man:tearoftheman [05Nov2024 19:11:21.261] [main/ERROR] [net.minecraft.server.ServerAdvancementManager/]: Parsing error loading custom advancement twilightdelight:recipes/tab.twilightdelight/neapolitan/aurora_cake_assemble: Unknown item id 'twilightdelight:aurora_cake_slice' [05Nov2024 19:11:21.277] [main/ERROR] [net.minecraft.server.ServerAdvancementManager/]: Parsing error loading custom advancement twilightdelight:recipes/tab.twilightdelight/neapolitan/glacier_cake_assemble: Unknown item id 'twilightdelight:glacier_cake_slice' [05Nov2024 19:11:21.331] [main/ERROR] [net.minecraft.server.ServerAdvancementManager/]: Parsing error loading custom advancement aquaculture:recipes/building_blocks/planks_from_driftwood: Unknown item id 'aquaculture:driftwood' [05Nov2024 19:11:21.333] [main/ERROR] [net.minecraft.server.ServerAdvancementManager/]: Parsing error loading custom advancement twilightdelight:recipes/tab.twilightdelight/neapolitan/torchberry_cake_assemble: Unknown item id 'twilightdelight:torchberry_cake_slice' [05Nov2024 19:11:21.336] [main/ERROR] [net.minecraft.server.ServerAdvancementManager/]: Parsing error loading custom advancement twilightdelight:recipes/tab.twilightdelight/neapolitan/phytochemical_cake_assemble: Unknown item id 'twilightdelight:phytochemical_cake_slice' [05Nov2024 19:11:21.370] [main/INFO] [quark/]: [Automatic Recipe Unlock] Removed 10155 recipe advancements [05Nov2024 19:11:21.383] [main/INFO] [net.minecraft.advancements.AdvancementList/]: Loaded 1063 advancements [05Nov2024 19:11:21.391] [main/WARN] [net.minecraftforge.common.loot.LootModifierManager/]: Could not decode GlobalLootModifier with json id occultism:tallow_from_sheeps - error: Not a JSON object: null [05Nov2024 19:11:21.391] [main/WARN] [net.minecraftforge.common.loot.LootModifierManager/]: Could not decode GlobalLootModifier with json id deep_aether:silver_loot_modifiers - error: Unknown registry key in ResourceKey[minecraft:root / forge:global_loot_modifier_serializers]: deep_aether:aether_dungeon_loot_no_replacement [05Nov2024 19:11:21.391] [main/WARN] [net.minecraftforge.common.loot.LootModifierManager/]: Could not decode GlobalLootModifier with json id deep_aether:silver_loot_reward_modifiers - error: Unknown registry key in ResourceKey[minecraft:root / forge:global_loot_modifier_serializers]: deep_aether:aether_dungeon_loot_no_replacement [05Nov2024 19:11:21.391] [main/WARN] [net.minecraftforge.common.loot.LootModifierManager/]: Could not decode GlobalLootModifier with json id deep_aether:gold_loot_modifiers - error: Unknown registry key in ResourceKey[minecraft:root / forge:global_loot_modifier_serializers]: deep_aether:aether_dungeon_loot_no_replacement [05Nov2024 19:11:21.392] [main/WARN] [net.minecraftforge.common.loot.LootModifierManager/]: Could not decode GlobalLootModifier with json id deep_aether:gold_loot_stratus_upgrade - error: Not a JSON object: null [05Nov2024 19:11:21.392] [main/WARN] [net.minecraftforge.common.loot.LootModifierManager/]: Could not decode GlobalLootModifier with json id bygonenether:soul_stone_from_block - error: Unknown registry key in ResourceKey[minecraft:root / forge:global_loot_modifier_serializers]: bygonenether:replace_item [05Nov2024 19:11:21.392] [main/WARN] [net.minecraftforge.common.loot.LootModifierManager/]: Could not decode GlobalLootModifier with json id bygonenether:soul_stone_in_catacombs - error: Unknown registry key in ResourceKey[minecraft:root / forge:global_loot_modifier_serializers]: bygonenether:replace_item [05Nov2024 19:11:21.398] [main/INFO] [slimeknights.mantle.fluid.transfer.FluidContainerTransferManager/]: Loaded 24 dynamic modifiers in 1.530035 ms [05Nov2024 19:11:21.782] [main/INFO] [rechiseled/]: Loaded 42 chiseling recipes [05Nov2024 19:11:21.783] [main/INFO] [twilightforest/]: Loaded 9 Stalactite configs! [05Nov2024 19:11:21.881] [main/WARN] [com.klikli_dev.modonomicon.Modonomicon/]: BookErrorManager.error() called for book: occultism:dictionary_of_spirits with error: BookErrorInfo{ errorMessage='Failed to load entry 'occultism:dictionary_of_spirits/entries/getting_started/theurgy_divination_rod'', context='Page Index: 0', exception='com.google.gson.JsonSyntaxException: Unknown item 'theurgy:divination_rod_t1'' } [05Nov2024 19:11:21.885] [main/INFO] [com.teamabnormals.blueprint.core.Blueprint/]: Structure Repaletter Manager has loaded 0 repaletters [05Nov2024 19:11:21.891] [main/INFO] [com.teamabnormals.blueprint.core.Blueprint/]: Modded Biome Slice Manager has loaded 2 slices [05Nov2024 19:11:21.893] [main/INFO] [com.teamabnormals.blueprint.core.Blueprint/]: Chunk Generator Modification Manager has loaded 1 modifier groups [05Nov2024 19:11:21.918] [main/INFO] [slimeknights.tconstruct.library.modifiers.ModifierManager/]: Loaded 145 dynamic modifiers and 0 modifier redirects in 25.746456 ms [05Nov2024 19:11:21.933] [main/WARN] [HammerLib/]: Unable to find registry for tag directory tinkering/tags/modifiers [05Nov2024 19:11:21.936] [main/INFO] [slimeknights.tconstruct.library.modifiers.ModifierManager/]: Loaded 38 modifier tags for 154 modifiers in 17.470795 ms [05Nov2024 19:11:21.936] [main/INFO] [slimeknights.tconstruct.library.modifiers.ModifierManager/]: Loaded 51 enchantment to modifier mappings in 0.410421 ms [05Nov2024 19:11:21.937] [main/WARN] [Mantle/]: Using deprecated key 'name' for fluid ingredient, use 'fluid' instead. This will be removed in the future [05Nov2024 19:11:21.938] [main/INFO] [tconstruct/]: Loaded 51 spilling fluids in 1.206615 ms [05Nov2024 19:11:21.938] [main/INFO] [quark/]: Modified advancement minecraft:husbandry/wax_on with 2 patches [05Nov2024 19:11:21.938] [main/INFO] [quark/]: Modified advancement minecraft:adventure/kill_a_mob with 3 patches [05Nov2024 19:11:21.938] [main/INFO] [quark/]: Modified advancement minecraft:husbandry/bred_all_animals with 3 patches [05Nov2024 19:11:21.938] [main/INFO] [quark/]: Modified advancement minecraft:adventure/kill_all_mobs with 3 patches [05Nov2024 19:11:21.939] [main/INFO] [quark/]: Modified advancement minecraft:husbandry/balanced_diet with 2 patches [05Nov2024 19:11:21.939] [main/INFO] [quark/]: Modified advancement minecraft:nether/all_effects with 1 patches [05Nov2024 19:11:21.939] [main/INFO] [quark/]: Modified advancement minecraft:husbandry/wax_off with 2 patches [05Nov2024 19:11:21.939] [main/INFO] [quark/]: Modified advancement minecraft:adventure/adventuring_time with 1 patches [05Nov2024 19:11:21.939] [main/INFO] [quark/]: Modified advancement minecraft:nether/all_potions with 1 patches [05Nov2024 19:11:21.944] [main/INFO] [hordes/]: Loaded entity minecraft:zombie as entity.minecraft.zombie with weight 35, min day 0 and max day 20 [05Nov2024 19:11:21.944] [main/INFO] [hordes/]: Loaded entity minecraft:zombie_villager as entity.minecraft.zombie_villager with weight 1, min day 0 and max day 20 [05Nov2024 19:11:21.944] [main/INFO] [hordes/]: Loaded entity minecraft:zombie_horse as entity.minecraft.zombie_horse with weight 3, min day 20 and max day 40 [05Nov2024 19:11:21.944] [main/INFO] [hordes/]: Loaded entity minecraft:husk as entity.minecraft.husk with weight 40, min day 20 and max day 40 [05Nov2024 19:11:21.944] [main/INFO] [hordes/]: Loaded entity minecraft:drowned as entity.minecraft.drowned with weight 3, min day 30 and max day 40 [05Nov2024 19:11:21.944] [main/INFO] [hordes/]: Loaded entity minecraft:zoglin as entity.minecraft.zoglin with weight 3, min day 40 and max day 40 [05Nov2024 19:11:21.944] [main/INFO] [hordes/]: Loaded entity minecraft:zombified_piglin as entity.minecraft.zombified_piglin with weight 10, min day 40 and max day 0 [05Nov2024 19:11:21.944] [main/INFO] [hordes/]: Loaded entity minecraft:husk as entity.minecraft.husk with weight 25, min day 50 and max day 0 [05Nov2024 19:11:21.944] [main/INFO] [hordes/]: Loaded entity minecraft:zoglin as entity.minecraft.zoglin with weight 3, min day 50 and max day 0 [05Nov2024 19:11:21.944] [main/INFO] [hordes/]: Loaded entity minecraft:zombie_horse as entity.minecraft.zombie_horse with weight 3, min day 50 and max day 0 [05Nov2024 19:11:21.944] [main/INFO] [hordes/]: loaded horde table hordes:default [05Nov2024 19:11:21.944] [main/INFO] [hordes/]: Loaded entity minecraft:drowned as entity.minecraft.drowned with weight 40, min day 0 and max day 20 [05Nov2024 19:11:21.944] [main/INFO] [hordes/]: Loaded entity minecraft:drowned as entity.minecraft.drowned with weight 3, min day 30 and max day 40 [05Nov2024 19:11:21.944] [main/INFO] [hordes/]: loaded horde table hordes:drowned [05Nov2024 19:11:21.945] [main/INFO] [hordes/]: Loaded entity minecraft:zombie as entity.minecraft.zombie with weight 20, min day 0 and max day 20 [05Nov2024 19:11:21.945] [main/INFO] [hordes/]: Loaded entity minecraft:skeleton as entity.minecraft.skeleton with weight 10, min day 20 and max day 30 [05Nov2024 19:11:21.945] [main/INFO] [hordes/]: Loaded entity minecraft:spider as entity.minecraft.spider with weight 15, min day 20 and max day 30 [05Nov2024 19:11:21.945] [main/INFO] [hordes/]: Loaded entity minecraft:creeper as entity.minecraft.creeper with weight 5, min day 30 and max day 30 [05Nov2024 19:11:21.945] [main/INFO] [hordes/]: Loaded entity minecraft:husk as entity.minecraft.husk with weight 20, min day 30 and max day 50 [05Nov2024 19:11:21.945] [main/INFO] [hordes/]: Loaded entity minecraft:stray as entity.minecraft.stray with weight 10, min day 40 and max day 50 [05Nov2024 19:11:21.945] [main/INFO] [hordes/]: Loaded entity minecraft:cave_spider as entity.minecraft.cave_spider with weight 10, min day 40 and max day 50 [05Nov2024 19:11:21.945] [main/INFO] [hordes/]: Loaded entity minecraft:witch as entity.minecraft.witch with weight 5, min day 40 and max day 50 [05Nov2024 19:11:21.945] [main/INFO] [hordes/]: Loaded entity minecraft:pillager as entity.minecraft.pillager with weight 10, min day 40 and max day 50 [05Nov2024 19:11:21.945] [main/INFO] [hordes/]: Loaded entity minecraft:zombified_piglin as entity.minecraft.zombified_piglin with weight 10, min day 40 and max day 50 [05Nov2024 19:11:21.945] [main/INFO] [hordes/]: Loaded entity minecraft:zombie_horse as entity.minecraft.zombie_horse with weight 3, min day 40 and max day 50 [05Nov2024 19:11:21.945] [main/INFO] [hordes/]: Loaded entity minecraft:wither_skeleton as entity.minecraft.wither_skeleton with weight 10, min day 50 and max day 0 [05Nov2024 19:11:21.945] [main/INFO] [hordes/]: Loaded entity minecraft:phantom as entity.minecraft.phantom with weight 5, min day 50 and max day 50 [05Nov2024 19:11:21.945] [main/INFO] [hordes/]: Loaded entity minecraft:vindicator as entity.minecraft.vindicator with weight 10, min day 50 and max day 50 [05Nov2024 19:11:21.945] [main/INFO] [hordes/]: Loaded entity minecraft:zoglin as entity.minecraft.zoglin with weight 5, min day 40 and max day 40 [05Nov2024 19:11:21.945] [main/INFO] [hordes/]: Loaded entity minecraft:ravager as entity.minecraft.ravager with weight 5, min day 50 and max day 50 [05Nov2024 19:11:21.945] [main/INFO] [hordes/]: Loaded entity minecraft:evoker as entity.minecraft.evoker with weight 5, min day 50 and max day 50 [05Nov2024 19:11:21.945] [main/INFO] [hordes/]: Loaded entity minecraft:piglin_brute as entity.minecraft.piglin_brute with weight 10, min day 60 and max day 0 [05Nov2024 19:11:21.945] [main/INFO] [hordes/]: Loaded entity minecraft:cave_spider as entity.minecraft.cave_spider with weight 15, min day 60 and max day 0 [05Nov2024 19:11:21.945] [main/INFO] [hordes/]: Loaded entity minecraft:zombie_horse as entity.minecraft.zombie_horse with weight 5, min day 60 and max day 0 [05Nov2024 19:11:21.945] [main/INFO] [hordes/]: Loaded entity minecraft:ravager as entity.minecraft.ravager with weight 3, min day 60 and max day 0 [05Nov2024 19:11:21.946] [main/INFO] [hordes/]: Loaded entity minecraft:phantom as entity.minecraft.phantom with weight 3, min day 60 and max day 0 [05Nov2024 19:11:21.946] [main/INFO] [hordes/]: loaded horde table hordes:mixed_mobs [05Nov2024 19:11:21.946] [main/INFO] [hordes/]: Loaded entity minecraft:pillager as entity.minecraft.pillager with weight 15, min day 0 and max day 0 [05Nov2024 19:11:21.946] [main/INFO] [hordes/]: Loaded entity minecraft:vindicator as entity.minecraft.vindicator with weight 10, min day 0 and max day 0 [05Nov2024 19:11:21.946] [main/INFO] [hordes/]: Loaded entity minecraft:witch as entity.minecraft.witch with weight 5, min day 20 and max day 0 [05Nov2024 19:11:21.946] [main/INFO] [hordes/]: Loaded entity minecraft:ravager as entity.minecraft.ravager with weight 5, min day 30 and max day 40 [05Nov2024 19:11:21.946] [main/INFO] [hordes/]: Loaded entity minecraft:evoker as entity.minecraft.evoker with weight 3, min day 40 and max day 40 [05Nov2024 19:11:21.946] [main/INFO] [hordes/]: Loaded entity minecraft:illusioner as entity.minecraft.illusioner with weight 5, min day 50 and max day 0 [05Nov2024 19:11:21.946] [main/INFO] [hordes/]: Loaded entity minecraft:ravager as entity.minecraft.ravager with weight 3, min day 50 and max day 0 [05Nov2024 19:11:21.946] [main/INFO] [hordes/]: Loaded entity minecraft:ravager as entity.minecraft.ravager with weight 5, min day 50 and max day 0 [05Nov2024 19:11:21.946] [main/INFO] [hordes/]: loaded horde table hordes:illagers [05Nov2024 19:11:21.946] [main/INFO] [hordes/]: Loaded entity minecraft:skeleton as entity.minecraft.skeleton with weight 10, min day 0 and max day 20 [05Nov2024 19:11:21.946] [main/INFO] [hordes/]: Loaded entity minecraft:skeleton as entity.minecraft.skeleton with weight 20, min day 0 and max day 30 [05Nov2024 19:11:21.946] [main/INFO] [hordes/]: Loaded entity minecraft:skeleton_horse as entity.minecraft.skeleton_horse with weight 5, min day 20 and max day 50 [05Nov2024 19:11:21.946] [main/INFO] [hordes/]: Loaded entity minecraft:stray as entity.minecraft.stray with weight 10, min day 20 and max day 0 [05Nov2024 19:11:21.946] [main/INFO] [hordes/]: Loaded entity minecraft:wither_skeleton as entity.minecraft.wither_skeleton with weight 10, min day 40 and max day 0 [05Nov2024 19:11:21.946] [main/INFO] [hordes/]: Loaded entity minecraft:skeleton_horse as entity.minecraft.skeleton_horse with weight 5, min day 40 and max day 0 [05Nov2024 19:11:21.946] [main/INFO] [hordes/]: loaded horde table hordes:skeletons [05Nov2024 19:11:21.946] [main/INFO] [hordes/]: Loaded entity minecraft:zombie as entity.minecraft.zombie with weight 30, min day 0 and max day 0 [05Nov2024 19:11:21.946] [main/INFO] [hordes/]: loaded horde table hordes:fallback [05Nov2024 19:11:21.949] [main/INFO] [hordes/]: loaded horde script hordes:default [05Nov2024 19:11:21.952] [main/INFO] [slimeknights.tconstruct.library.materials.definition.MaterialManager/]: Loaded 84 materials in 2.605409 ms [05Nov2024 19:11:21.965] [main/WARN] [HammerLib/]: Unable to find registry for tag directory tinkering/tags/materials [05Nov2024 19:11:21.965] [main/INFO] [slimeknights.tconstruct.library.materials.definition.MaterialManager/]: Loaded 1 material tags for 19 materials in 13.50762 ms [05Nov2024 19:11:21.980] [main/INFO] [slimeknights.tconstruct.library.materials.stats.MaterialStatsManager/]: 559 stats loaded for 90 materials in 15.248996 ms [05Nov2024 19:11:21.999] [main/INFO] [slimeknights.tconstruct.library.materials.traits.MaterialTraitsManager/]: 312 traits loaded for 90 materials in 18.032167 ms [05Nov2024 19:11:22.008] [main/INFO] [slimeknights.tconstruct.library.tools.definition.ToolDefinitionLoader/]: Loaded 60 tool definitions in 8.922973 ms [05Nov2024 19:11:22.008] [main/INFO] [hordes/]: Loading conversion tables [05Nov2024 19:11:22.008] [main/INFO] [hordes/]: Loading conversion table hordes:infection_conversions [05Nov2024 19:11:22.009] [main/INFO] [hordes/]: Loaded conversion entity.minecraft.horse to entity.minecraft.zombie_horse with chance of 0.65 [05Nov2024 19:11:22.009] [main/INFO] [hordes/]: Loaded conversion entity.minecraft.piglin to entity.minecraft.zombified_piglin with chance of 0.75 [05Nov2024 19:11:22.009] [main/INFO] [hordes/]: Loaded conversion entity.minecraft.piglin_brute to entity.minecraft.zombified_piglin{Attributes:[{Base:50.0f,Name:"generic.max_health"}],chat_name:"entity.hordes.ZombifiedPiglinBrute.name",texture:"hordes:textures/entity/zombified_piglin_brute.png"} with chance of 0.35 [05Nov2024 19:11:22.009] [main/INFO] [hordes/]: Loaded conversion entity.minecraft.hoglin to entity.minecraft.zoglin with chance of 0.15 [05Nov2024 19:11:22.009] [main/INFO] [hordes/]: Loaded conversion entity.minecraft.wandering_trader to entity.minecraft.zombie_villager{VillagerData:{type:"none"},chat_name:"entity.hordes.ZombieWanderingTrader.name",texture:"hordes:textures/entity/zombie_wandering_trader.png"} with chance of 0.75 [05Nov2024 19:11:22.009] [main/INFO] [hordes/]: Loaded conversion entity.minecraft.pillager to entity.minecraft.zombie_villager{Attributes:[{Base:24.0f,Name:"generic.max_health"}],VillagerData:{type:"none"},chat_name:"entity.hordes.ZombiePillager.name",texture:"hordes:textures/entity/zombie_pillager.png"} with chance of 0.75 [05Nov2024 19:11:22.010] [main/INFO] [hordes/]: Loaded conversion entity.minecraft.vindicator to entity.minecraft.zombie_villager{Attributes:[{Base:24.0f,Name:"generic.max_health"}],VillagerData:{type:"none"},chat_name:"entity.hordes.ZombieVindicator.name",texture:"hordes:textures/entity/zombie_vindicator.png"} with chance of 0.35 [05Nov2024 19:11:22.010] [main/INFO] [hordes/]: Loaded conversion entity.minecraft.evoker to entity.minecraft.zombie_villager{Attributes:[{Base:24.0f,Name:"generic.max_health"}],VillagerData:{type:"none"},chat_name:"entity.hordes.ZombieEvoker.name",texture:"hordes:textures/entity/zombie_evoker.png"} with chance of 0.5 [05Nov2024 19:11:22.010] [main/INFO] [hordes/]: Loaded conversion entity.minecraft.illusioner to entity.minecraft.zombie_villager{Attributes:[{Base:32.0f,Name:"generic.max_health"}],VillagerData:{type:"none"},chat_name:"entity.hordes.ZombieIllusioner.name",texture:"hordes:textures/entity/zombie_illusioner.png"} with chance of 0.15 [05Nov2024 19:11:22.010] [main/INFO] [hordes/]: Loaded conversion entity.minecraft.witch to entity.minecraft.zombie_villager{Attributes:[{Base:26.0f,Name:"generic.max_health"}],VillagerData:{type:"none"},chat_name:"entity.hordes.ZombieWitch.name",texture:"hordes:textures/entity/zombie_witch.png"} with chance of 0.25 [05Nov2024 19:11:22.010] [main/INFO] [hordes/]: Loading immunity item list [05Nov2024 19:11:22.010] [main/INFO] [hordes/]: Loading immunity item list hordes:immunity_items [05Nov2024 19:11:22.010] [main/INFO] [hordes/]: Loaded immunity item minecraft:enchanted_golden_apple with duration 150 [05Nov2024 19:11:22.010] [main/INFO] [hordes/]: Loading wearables protection list [05Nov2024 19:11:22.010] [main/INFO] [hordes/]: Loading wearables protection list hordes:immune_wearables [05Nov2024 19:11:22.011] [main/INFO] [hordes/]: Loaded wearable protection minecraft:leather_boots with modifier 0.95 [05Nov2024 19:11:22.011] [main/INFO] [hordes/]: Loaded wearable protection minecraft:leather_leggings with modifier 0.95 [05Nov2024 19:11:22.011] [main/INFO] [hordes/]: Loaded wearable protection minecraft:leather_chestplate with modifier 0.95 [05Nov2024 19:11:22.011] [main/INFO] [hordes/]: Loaded wearable protection minecraft:leather_helmet with modifier 0.95 [05Nov2024 19:11:22.011] [main/INFO] [hordes/]: Loaded wearable protection minecraft:chainmail_boots with modifier 0.95 [05Nov2024 19:11:22.011] [main/INFO] [hordes/]: Loaded wearable protection minecraft:chainmail_leggings with modifier 0.95 [05Nov2024 19:11:22.011] [main/INFO] [hordes/]: Loaded wearable protection minecraft:chainmail_chestplate with modifier 0.95 [05Nov2024 19:11:22.011] [main/INFO] [hordes/]: Loaded wearable protection minecraft:chainmail_helmet with modifier 0.95 [05Nov2024 19:11:22.011] [main/INFO] [hordes/]: Loaded wearable protection minecraft:iron_boots with modifier 0.9 [05Nov2024 19:11:22.011] [main/INFO] [hordes/]: Loaded wearable protection minecraft:iron_leggings with modifier 0.9 [05Nov2024 19:11:22.011] [main/INFO] [hordes/]: Loaded wearable protection minecraft:iron_chestplate with modifier 0.9 [05Nov2024 19:11:22.011] [main/INFO] [hordes/]: Loaded wearable protection minecraft:iron_helmet with modifier 0.9 [05Nov2024 19:11:22.011] [main/INFO] [hordes/]: Loaded wearable protection minecraft:golden_boots with modifier 0.9 [05Nov2024 19:11:22.011] [main/INFO] [hordes/]: Loaded wearable protection minecraft:golden_leggings with modifier 0.9 [05Nov2024 19:11:22.011] [main/INFO] [hordes/]: Loaded wearable protection minecraft:golden_chestplate with modifier 0.9 [05Nov2024 19:11:22.011] [main/INFO] [hordes/]: Loaded wearable protection minecraft:golden_helmet with modifier 0.9 [05Nov2024 19:11:22.011] [main/INFO] [hordes/]: Loaded wearable protection minecraft:diamond_boots with modifier 0.86 [05Nov2024 19:11:22.012] [main/INFO] [hordes/]: Loaded wearable protection minecraft:diamond_leggings with modifier 0.86 [05Nov2024 19:11:22.012] [main/INFO] [hordes/]: Loaded wearable protection minecraft:diamond_chestplate with modifier 0.86 [05Nov2024 19:11:22.012] [main/INFO] [hordes/]: Loaded wearable protection minecraft:diamond_helmet with modifier 0.86 [05Nov2024 19:11:22.012] [main/INFO] [hordes/]: Loaded wearable protection minecraft:netherite_boots with modifier 0.82 [05Nov2024 19:11:22.012] [main/INFO] [hordes/]: Loaded wearable protection minecraft:netherite_leggings with modifier 0.82 [05Nov2024 19:11:22.012] [main/INFO] [hordes/]: Loaded wearable protection minecraft:netherite_chestplate with modifier 0.82 [05Nov2024 19:11:22.012] [main/INFO] [hordes/]: Loaded wearable protection minecraft:netherite_helmet with modifier 0.82 [05Nov2024 19:11:22.012] [main/INFO] [hordes/]: Loaded wearable protection minecraft:turtle_helmet with modifier 0.75 [05Nov2024 19:11:22.017] [main/INFO] [slimeknights.tconstruct.library.tools.layout.StationSlotLayoutLoader/]: Loaded 31 station slot layouts in 5.35347 ms [05Nov2024 19:11:22.023] [main/WARN] [net.minecraft.core.MappedRegistry/]: Not all defined tags for registry ResourceKey[minecraft:root / minecraft:worldgen/biome] are present in data pack: mvs:has_structure/cherry_biomes, totw_modded:has_structure/everbright_tower, totw_modded:has_structure/everdawn_tower, totw_modded:has_structure/glacio_tower, totw_modded:has_structure/mars_tower, totw_modded:has_structure/mercury_tower, totw_modded:has_structure/moon_tower, totw_modded:has_structure/ratlantis_tower, totw_modded:has_structure/venus_tower [05Nov2024 19:11:22.040] [main/WARN] [net.minecraftforge.registries.NamespacedHolderHelper/]: Not all defined tags for registry ResourceKey[minecraft:root / minecraft:block] are present in data pack: c:bookshelves, c:chests, c:glass_blocks, c:glass_panes, c:ores, c:quartz_ores, minecraft:cauldons, theabyss:tree_branch_replaceable [05Nov2024 19:11:22.114] [main/ERROR] [moze_intel.projecte.PECore/FATAL]: Error mapping recipe survivalistessentials:twilightforest_transformation_planks. Item: tinkersurvival:saw reported that it has a container item, but errors when trying to get the container item based on the stack in the recipe. Please report this to tinkersurvival. java.lang.IllegalArgumentException: Can't make NSSItem with empty stack at moze_intel.projecte.api.nss.NSSItem.createItem(NSSItem.java:34) ~[ProjectE-1.19.2-PE1.1.0.jar%23522!/:1.1.0] at moze_intel.projecte.emc.mappers.recipe.BaseRecipeTypeMapper.addIngredient(BaseRecipeTypeMapper.java:167) ~[ProjectE-1.19.2-PE1.1.0.jar%23522!/:1.1.0] at moze_intel.projecte.emc.mappers.recipe.BaseRecipeTypeMapper.handleRecipe(BaseRecipeTypeMapper.java:108) ~[ProjectE-1.19.2-PE1.1.0.jar%23522!/:1.1.0] at moze_intel.projecte.emc.mappers.recipe.CraftingMapper.addMappings(CraftingMapper.java:75) ~[ProjectE-1.19.2-PE1.1.0.jar%23522!/:1.1.0] at moze_intel.projecte.emc.EMCMappingHandler.map(EMCMappingHandler.java:117) ~[ProjectE-1.19.2-PE1.1.0.jar%23522!/:1.1.0] at moze_intel.projecte.PECore.tagsUpdated(PECore.java:336) ~[ProjectE-1.19.2-PE1.1.0.jar%23522!/:1.1.0] at net.minecraftforge.eventbus.EventBus.doCastFilter(EventBus.java:260) ~[eventbus-6.0.3.jar%2351!/:?] at net.minecraftforge.eventbus.EventBus.lambda$addListener$11(EventBus.java:252) ~[eventbus-6.0.3.jar%2351!/:?] at net.minecraftforge.eventbus.EventBus.post(EventBus.java:315) ~[eventbus-6.0.3.jar%2351!/:?] at net.minecraftforge.eventbus.EventBus.post(EventBus.java:296) ~[eventbus-6.0.3.jar%2351!/:?] at net.minecraft.server.ReloadableServerResources.m_206868_(ReloadableServerResources.java:101) ~[server-1.19.2-20220805.130853-srg.jar%23597!/:?] at net.minecraft.server.WorldLoader.m_214372_(WorldLoader.java:35) ~[server-1.19.2-20220805.130853-srg.jar%23597!/:?] at java.util.concurrent.CompletableFuture$UniApply.tryFire(CompletableFuture.java:646) ~[?:?] at java.util.concurrent.CompletableFuture$Completion.run(CompletableFuture.java:482) ~[?:?] at net.minecraft.Util.m_214652_(Util.java:781) ~[server-1.19.2-20220805.130853-srg.jar%23597!/:?] at net.minecraft.Util.m_214679_(Util.java:770) ~[server-1.19.2-20220805.130853-srg.jar%23597!/:?] at net.minecraft.server.Main.main(Main.java:157) ~[server-1.19.2-20220805.130853-srg.jar%23597!/:?] at jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:?] at jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) ~[?:?] at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:?] at java.lang.reflect.Method.invoke(Method.java:568) ~[?:?] at net.minecraftforge.fml.loading.targets.CommonServerLaunchHandler.lambda$launchService$0(CommonServerLaunchHandler.java:29) ~[fmlloader-1.19.2-43.4.0.jar%2367!/:?] at cpw.mods.modlauncher.LaunchServiceHandlerDecorator.launch(LaunchServiceHandlerDecorator.java:30) [modlauncher-10.0.8.jar%2354!/:?] at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:53) [modlauncher-10.0.8.jar%2354!/:?] at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:71) [modlauncher-10.0.8.jar%2354!/:?] at cpw.mods.modlauncher.Launcher.run(Launcher.java:106) [modlauncher-10.0.8.jar%2354!/:?] at cpw.mods.modlauncher.Launcher.main(Launcher.java:77) [modlauncher-10.0.8.jar%2354!/:?] at cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:26) [modlauncher-10.0.8.jar%2354!/:?] at cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:23) [modlauncher-10.0.8.jar%2354!/:?] at cpw.mods.bootstraplauncher.BootstrapLauncher.main(BootstrapLauncher.java:141) [bootstraplauncher-1.1.2.jar:?] [05Nov2024 19:11:22.155] [main/ERROR] [moze_intel.projecte.PECore/FATAL]: Error mapping recipe minecraft:stick. Item: tinkersurvival:saw reported that it has a container item, but errors when trying to get the container item based on the stack in the recipe. Please report this to tinkersurvival. java.lang.IllegalArgumentException: Can't make NSSItem with empty stack at moze_intel.projecte.api.nss.NSSItem.createItem(NSSItem.java:34) ~[ProjectE-1.19.2-PE1.1.0.jar%23522!/:1.1.0] at moze_intel.projecte.emc.mappers.recipe.BaseRecipeTypeMapper.addIngredient(BaseRecipeTypeMapper.java:167) ~[ProjectE-1.19.2-PE1.1.0.jar%23522!/:1.1.0] at moze_intel.projecte.emc.mappers.recipe.BaseRecipeTypeMapper.handleRecipe(BaseRecipeTypeMapper.java:108) ~[ProjectE-1.19.2-PE1.1.0.jar%23522!/:1.1.0] at moze_intel.projecte.emc.mappers.recipe.CraftingMapper.addMappings(CraftingMapper.java:75) ~[ProjectE-1.19.2-PE1.1.0.jar%23522!/:1.1.0] at moze_intel.projecte.emc.EMCMappingHandler.map(EMCMappingHandler.java:117) ~[ProjectE-1.19.2-PE1.1.0.jar%23522!/:1.1.0] at moze_intel.projecte.PECore.tagsUpdated(PECore.java:336) ~[ProjectE-1.19.2-PE1.1.0.jar%23522!/:1.1.0] at net.minecraftforge.eventbus.EventBus.doCastFilter(EventBus.java:260) ~[eventbus-6.0.3.jar%2351!/:?] at net.minecraftforge.eventbus.EventBus.lambda$addListener$11(EventBus.java:252) ~[eventbus-6.0.3.jar%2351!/:?] at net.minecraftforge.eventbus.EventBus.post(EventBus.java:315) ~[eventbus-6.0.3.jar%2351!/:?] at net.minecraftforge.eventbus.EventBus.post(EventBus.java:296) ~[eventbus-6.0.3.jar%2351!/:?] at net.minecraft.server.ReloadableServerResources.m_206868_(ReloadableServerResources.java:101) ~[server-1.19.2-20220805.130853-srg.jar%23597!/:?] at net.minecraft.server.WorldLoader.m_214372_(WorldLoader.java:35) ~[server-1.19.2-20220805.130853-srg.jar%23597!/:?] at java.util.concurrent.CompletableFuture$UniApply.tryFire(CompletableFuture.java:646) ~[?:?] at java.util.concurrent.CompletableFuture$Completion.run(CompletableFuture.java:482) ~[?:?] at net.minecraft.Util.m_214652_(Util.java:781) ~[server-1.19.2-20220805.130853-srg.jar%23597!/:?] at net.minecraft.Util.m_214679_(Util.java:770) ~[server-1.19.2-20220805.130853-srg.jar%23597!/:?] at net.minecraft.server.Main.main(Main.java:157) ~[server-1.19.2-20220805.130853-srg.jar%23597!/:?] at jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:?] at jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) ~[?:?] at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:?] at java.lang.reflect.Method.invoke(Method.java:568) ~[?:?] at net.minecraftforge.fml.loading.targets.CommonServerLaunchHandler.lambda$launchService$0(CommonServerLaunchHandler.java:29) ~[fmlloader-1.19.2-43.4.0.jar%2367!/:?] at cpw.mods.modlauncher.LaunchServiceHandlerDecorator.launch(LaunchServiceHandlerDecorator.java:30) [modlauncher-10.0.8.jar%2354!/:?] at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:53) [modlauncher-10.0.8.jar%2354!/:?] at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:71) [modlauncher-10.0.8.jar%2354!/:?] at cpw.mods.modlauncher.Launcher.run(Launcher.java:106) [modlauncher-10.0.8.jar%2354!/:?] at cpw.mods.modlauncher.Launcher.main(Launcher.java:77) [modlauncher-10.0.8.jar%2354!/:?] at cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:26) [modlauncher-10.0.8.jar%2354!/:?] at cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:23) [modlauncher-10.0.8.jar%2354!/:?] at cpw.mods.bootstraplauncher.BootstrapLauncher.main(BootstrapLauncher.java:141) [bootstraplauncher-1.1.2.jar:?] [05Nov2024 19:11:22.177] [main/ERROR] [moze_intel.projecte.PECore/FATAL]: Error mapping recipe survivalistessentials:stick_from_sapling. Item: tinkersurvival:knife reported that it has a container item, but errors when trying to get the container item based on the stack in the recipe. Please report this to tinkersurvival. java.lang.IllegalArgumentException: Can't make NSSItem with empty stack at moze_intel.projecte.api.nss.NSSItem.createItem(NSSItem.java:34) ~[ProjectE-1.19.2-PE1.1.0.jar%23522!/:1.1.0] at moze_intel.projecte.emc.mappers.recipe.BaseRecipeTypeMapper.addIngredient(BaseRecipeTypeMapper.java:167) ~[ProjectE-1.19.2-PE1.1.0.jar%23522!/:1.1.0] at moze_intel.projecte.emc.mappers.recipe.BaseRecipeTypeMapper.handleRecipe(BaseRecipeTypeMapper.java:108) ~[ProjectE-1.19.2-PE1.1.0.jar%23522!/:1.1.0] at moze_intel.projecte.emc.mappers.recipe.CraftingMapper.addMappings(CraftingMapper.java:75) ~[ProjectE-1.19.2-PE1.1.0.jar%23522!/:1.1.0] at moze_intel.projecte.emc.EMCMappingHandler.map(EMCMappingHandler.java:117) ~[ProjectE-1.19.2-PE1.1.0.jar%23522!/:1.1.0] at moze_intel.projecte.PECore.tagsUpdated(PECore.java:336) ~[ProjectE-1.19.2-PE1.1.0.jar%23522!/:1.1.0] at net.minecraftforge.eventbus.EventBus.doCastFilter(EventBus.java:260) ~[eventbus-6.0.3.jar%2351!/:?] at net.minecraftforge.eventbus.EventBus.lambda$addListener$11(EventBus.java:252) ~[eventbus-6.0.3.jar%2351!/:?] at net.minecraftforge.eventbus.EventBus.post(EventBus.java:315) ~[eventbus-6.0.3.jar%2351!/:?] at net.minecraftforge.eventbus.EventBus.post(EventBus.java:296) ~[eventbus-6.0.3.jar%2351!/:?] at net.minecraft.server.ReloadableServerResources.m_206868_(ReloadableServerResources.java:101) ~[server-1.19.2-20220805.130853-srg.jar%23597!/:?] at net.minecraft.server.WorldLoader.m_214372_(WorldLoader.java:35) ~[server-1.19.2-20220805.130853-srg.jar%23597!/:?] at java.util.concurrent.CompletableFuture$UniApply.tryFire(CompletableFuture.java:646) ~[?:?] at java.util.concurrent.CompletableFuture$Completion.run(CompletableFuture.java:482) ~[?:?] at net.minecraft.Util.m_214652_(Util.java:781) ~[server-1.19.2-20220805.130853-srg.jar%23597!/:?] at net.minecraft.Util.m_214679_(Util.java:770) ~[server-1.19.2-20220805.130853-srg.jar%23597!/:?] at net.minecraft.server.Main.main(Main.java:157) ~[server-1.19.2-20220805.130853-srg.jar%23597!/:?] at jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:?] at jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) ~[?:?] at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:?] at java.lang.reflect.Method.invoke(Method.java:568) ~[?:?] at net.minecraftforge.fml.loading.targets.CommonServerLaunchHandler.lambda$launchService$0(CommonServerLaunchHandler.java:29) ~[fmlloader-1.19.2-43.4.0.jar%2367!/:?] at cpw.mods.modlauncher.LaunchServiceHandlerDecorator.launch(LaunchServiceHandlerDecorator.java:30) [modlauncher-10.0.8.jar%2354!/:?] at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:53) [modlauncher-10.0.8.jar%2354!/:?] at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:71) [modlauncher-10.0.8.jar%2354!/:?] at cpw.mods.modlauncher.Launcher.run(Launcher.java:106) [modlauncher-10.0.8.jar%2354!/:?] at cpw.mods.modlauncher.Launcher.main(Launcher.java:77) [modlauncher-10.0.8.jar%2354!/:?] at cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:26) [modlauncher-10.0.8.jar%2354!/:?] at cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:23) [modlauncher-10.0.8.jar%2354!/:?] at cpw.mods.bootstraplauncher.BootstrapLauncher.main(BootstrapLauncher.java:141) [bootstraplauncher-1.1.2.jar:?] [05Nov2024 19:11:22.223] [main/ERROR] [moze_intel.projecte.PECore/FATAL]: Error mapping recipe survivalistessentials:string_from_wool_advanced. Item: tinkersurvival:knife reported that it has a container item, but errors when trying to get the container item based on the stack in the recipe. Please report this to tinkersurvival. java.lang.IllegalArgumentException: Can't make NSSItem with empty stack at moze_intel.projecte.api.nss.NSSItem.createItem(NSSItem.java:34) ~[ProjectE-1.19.2-PE1.1.0.jar%23522!/:1.1.0] at moze_intel.projecte.emc.mappers.recipe.BaseRecipeTypeMapper.addIngredient(BaseRecipeTypeMapper.java:167) ~[ProjectE-1.19.2-PE1.1.0.jar%23522!/:1.1.0] at moze_intel.projecte.emc.mappers.recipe.BaseRecipeTypeMapper.handleRecipe(BaseRecipeTypeMapper.java:108) ~[ProjectE-1.19.2-PE1.1.0.jar%23522!/:1.1.0] at moze_intel.projecte.emc.mappers.recipe.CraftingMapper.addMappings(CraftingMapper.java:75) ~[ProjectE-1.19.2-PE1.1.0.jar%23522!/:1.1.0] at moze_intel.projecte.emc.EMCMappingHandler.map(EMCMappingHandler.java:117) ~[ProjectE-1.19.2-PE1.1.0.jar%23522!/:1.1.0] at moze_intel.projecte.PECore.tagsUpdated(PECore.java:336) ~[ProjectE-1.19.2-PE1.1.0.jar%23522!/:1.1.0] at net.minecraftforge.eventbus.EventBus.doCastFilter(EventBus.java:260) ~[eventbus-6.0.3.jar%2351!/:?] at net.minecraftforge.eventbus.EventBus.lambda$addListener$11(EventBus.java:252) ~[eventbus-6.0.3.jar%2351!/:?] at net.minecraftforge.eventbus.EventBus.post(EventBus.java:315) ~[eventbus-6.0.3.jar%2351!/:?] at net.minecraftforge.eventbus.EventBus.post(EventBus.java:296) ~[eventbus-6.0.3.jar%2351!/:?] at net.minecraft.server.ReloadableServerResources.m_206868_(ReloadableServerResources.java:101) ~[server-1.19.2-20220805.130853-srg.jar%23597!/:?] at net.minecraft.server.WorldLoader.m_214372_(WorldLoader.java:35) ~[server-1.19.2-20220805.130853-srg.jar%23597!/:?] at java.util.concurrent.CompletableFuture$UniApply.tryFire(CompletableFuture.java:646) ~[?:?] at java.util.concurrent.CompletableFuture$Completion.run(CompletableFuture.java:482) ~[?:?] at net.minecraft.Util.m_214652_(Util.java:781) ~[server-1.19.2-20220805.130853-srg.jar%23597!/:?] at net.minecraft.Util.m_214679_(Util.java:770) ~[server-1.19.2-20220805.130853-srg.jar%23597!/:?] at net.minecraft.server.Main.main(Main.java:157) ~[server-1.19.2-20220805.130853-srg.jar%23597!/:?] at jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:?] at jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) ~[?:?] at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:?] at java.lang.reflect.Method.invoke(Method.java:568) ~[?:?] at net.minecraftforge.fml.loading.targets.CommonServerLaunchHandler.lambda$launchService$0(CommonServerLaunchHandler.java:29) ~[fmlloader-1.19.2-43.4.0.jar%2367!/:?] at cpw.mods.modlauncher.LaunchServiceHandlerDecorator.launch(LaunchServiceHandlerDecorator.java:30) [modlauncher-10.0.8.jar%2354!/:?] at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:53) [modlauncher-10.0.8.jar%2354!/:?] at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:71) [modlauncher-10.0.8.jar%2354!/:?] at cpw.mods.modlauncher.Launcher.run(Launcher.java:106) [modlauncher-10.0.8.jar%2354!/:?] at cpw.mods.modlauncher.Launcher.main(Launcher.java:77) [modlauncher-10.0.8.jar%2354!/:?] at cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:26) [modlauncher-10.0.8.jar%2354!/:?] at cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:23) [modlauncher-10.0.8.jar%2354!/:?] at cpw.mods.bootstraplauncher.BootstrapLauncher.main(BootstrapLauncher.java:141) [bootstraplauncher-1.1.2.jar:?] [05Nov2024 19:11:22.239] [main/ERROR] [moze_intel.projecte.PECore/FATAL]: Error mapping recipe survivalistessentials:crude_saw. Item: survivalistessentials:saw_handle reported that it has a container item, but errors when trying to get the container item based on the stack in the recipe. Please report this to survivalistessentials. java.lang.IllegalArgumentException: Can't make NSSItem with empty stack at moze_intel.projecte.api.nss.NSSItem.createItem(NSSItem.java:34) ~[ProjectE-1.19.2-PE1.1.0.jar%23522!/:1.1.0] at moze_intel.projecte.emc.mappers.recipe.BaseRecipeTypeMapper.addIngredient(BaseRecipeTypeMapper.java:167) ~[ProjectE-1.19.2-PE1.1.0.jar%23522!/:1.1.0] at moze_intel.projecte.emc.mappers.recipe.BaseRecipeTypeMapper.handleRecipe(BaseRecipeTypeMapper.java:65) ~[ProjectE-1.19.2-PE1.1.0.jar%23522!/:1.1.0] at moze_intel.projecte.emc.mappers.recipe.CraftingMapper.addMappings(CraftingMapper.java:75) ~[ProjectE-1.19.2-PE1.1.0.jar%23522!/:1.1.0] at moze_intel.projecte.emc.EMCMappingHandler.map(EMCMappingHandler.java:117) ~[ProjectE-1.19.2-PE1.1.0.jar%23522!/:1.1.0] at moze_intel.projecte.PECore.tagsUpdated(PECore.java:336) ~[ProjectE-1.19.2-PE1.1.0.jar%23522!/:1.1.0] at net.minecraftforge.eventbus.EventBus.doCastFilter(EventBus.java:260) ~[eventbus-6.0.3.jar%2351!/:?] at net.minecraftforge.eventbus.EventBus.lambda$addListener$11(EventBus.java:252) ~[eventbus-6.0.3.jar%2351!/:?] at net.minecraftforge.eventbus.EventBus.post(EventBus.java:315) ~[eventbus-6.0.3.jar%2351!/:?] at net.minecraftforge.eventbus.EventBus.post(EventBus.java:296) ~[eventbus-6.0.3.jar%2351!/:?] at net.minecraft.server.ReloadableServerResources.m_206868_(ReloadableServerResources.java:101) ~[server-1.19.2-20220805.130853-srg.jar%23597!/:?] at net.minecraft.server.WorldLoader.m_214372_(WorldLoader.java:35) ~[server-1.19.2-20220805.130853-srg.jar%23597!/:?] at java.util.concurrent.CompletableFuture$UniApply.tryFire(CompletableFuture.java:646) ~[?:?] at java.util.concurrent.CompletableFuture$Completion.run(CompletableFuture.java:482) ~[?:?] at net.minecraft.Util.m_214652_(Util.java:781) ~[server-1.19.2-20220805.130853-srg.jar%23597!/:?] at net.minecraft.Util.m_214679_(Util.java:770) ~[server-1.19.2-20220805.130853-srg.jar%23597!/:?] at net.minecraft.server.Main.main(Main.java:157) ~[server-1.19.2-20220805.130853-srg.jar%23597!/:?] at jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:?] at jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) ~[?:?] at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:?] at java.lang.reflect.Method.invoke(Method.java:568) ~[?:?] at net.minecraftforge.fml.loading.targets.CommonServerLaunchHandler.lambda$launchService$0(CommonServerLaunchHandler.java:29) ~[fmlloader-1.19.2-43.4.0.jar%2367!/:?] at cpw.mods.modlauncher.LaunchServiceHandlerDecorator.launch(LaunchServiceHandlerDecorator.java:30) [modlauncher-10.0.8.jar%2354!/:?] at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:53) [modlauncher-10.0.8.jar%2354!/:?] at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:71) [modlauncher-10.0.8.jar%2354!/:?] at cpw.mods.modlauncher.Launcher.run(Launcher.java:106) [modlauncher-10.0.8.jar%2354!/:?] at cpw.mods.modlauncher.Launcher.main(Launcher.java:77) [modlauncher-10.0.8.jar%2354!/:?] at cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:26) [modlauncher-10.0.8.jar%2354!/:?] at cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:23) [modlauncher-10.0.8.jar%2354!/:?] at cpw.mods.bootstraplauncher.BootstrapLauncher.main(BootstrapLauncher.java:141) [bootstraplauncher-1.1.2.jar:?] [05Nov2024 19:11:22.361] [main/INFO] [moze_intel.projecte.PECore/]: Considering file projecte:pe_custom_conversions/defaults.json, ID projecte:defaults [05Nov2024 19:11:22.371] [main/INFO] [moze_intel.projecte.PECore/]: Considering file projecte:pe_custom_conversions/metals.json, ID projecte:metals [05Nov2024 19:11:22.372] [main/INFO] [moze_intel.projecte.PECore/]: Considering file securitycraft:pe_custom_conversions/password_protected.json, ID securitycraft:password_protected [05Nov2024 19:11:22.372] [main/INFO] [moze_intel.projecte.PECore/]: Considering file securitycraft:pe_custom_conversions/reinforced_blocks.json, ID securitycraft:reinforced_blocks [05Nov2024 19:11:22.518] [main/WARN] [moze_intel.projecte.PECore/]: EMC Exploit: "0 + 9*Item: bno:osmium_nugget => 1*Item: bno:osmium_ingot" ingredient cost: 504 value of result: 512 setValueFromConversion: 0 + 2*Item Tag: forge:ingots/iron => 1*Item: bno:osmium_ingot [05Nov2024 19:11:22.519] [main/WARN] [moze_intel.projecte.PECore/]: EMC Exploit: "0 + 4*Item: securitycraft:reinforced_red_sand => 4*Item: securitycraft:reinforced_red_sandstone" ingredient cost: 4 value of result: 4 setValueFromConversion: 0 + 1*Item: minecraft:red_sandstone => 1*Item: securitycraft:reinforced_red_sandstone [05Nov2024 19:11:22.521] [main/WARN] [moze_intel.projecte.PECore/]: EMC Exploit: ingredients (0 + 1*Item Tag: minecraft:small_flowers => 1*Item: byg:foxglove) cost 16 but output value is 32 [05Nov2024 19:11:22.522] [main/WARN] [moze_intel.projecte.PECore/]: EMC Exploit: "0 + 9*Item: beo:copper_nugget => 1*Item: minecraft:copper_ingot" ingredient cost: 126 value of result: 128 setValueFromConversion: 0 + 1*Item Tag: forge:ingots/iron => 2*Item: minecraft:copper_ingot [05Nov2024 19:11:22.522] [main/WARN] [moze_intel.projecte.PECore/]: EMC Exploit: "0 + 8*NSSFAKE:craftingMapper/174 + 1*Item: tconstruct:copper_nugget => 1*Item: minecraft:copper_ingot" ingredient cost: 126 value of result: 128 setValueFromConversion: 0 + 1*Item Tag: forge:ingots/iron => 2*Item: minecraft:copper_ingot [05Nov2024 19:11:22.522] [main/WARN] [moze_intel.projecte.PECore/]: EMC Exploit: "0 + 9*Item: bno:copper_nugget => 1*Item: minecraft:copper_ingot" ingredient cost: 126 value of result: 128 setValueFromConversion: 0 + 1*Item Tag: forge:ingots/iron => 2*Item: minecraft:copper_ingot [05Nov2024 19:11:22.522] [main/WARN] [moze_intel.projecte.PECore/]: EMC Exploit: "0 + 9*NSSFAKE:craftingMapper/174 => 1*Item: minecraft:copper_ingot" ingredient cost: 126 value of result: 128 setValueFromConversion: 0 + 1*Item Tag: forge:ingots/iron => 2*Item: minecraft:copper_ingot [05Nov2024 19:11:22.522] [main/WARN] [moze_intel.projecte.PECore/]: EMC Exploit: "0 + 9*Item: iceandfire:copper_nugget => 1*Item: minecraft:copper_ingot" ingredient cost: 126 value of result: 128 setValueFromConversion: 0 + 1*Item Tag: forge:ingots/iron => 2*Item: minecraft:copper_ingot [05Nov2024 19:11:22.522] [main/WARN] [moze_intel.projecte.PECore/]: EMC Exploit: ingredients (0 + 9*Item: bigreactors:yellorium_nugget => 1*Item: bigreactors:yellorium_ingot) cost 4095 but output value is 4096 [05Nov2024 19:11:22.525] [main/WARN] [moze_intel.projecte.PECore/]: EMC Exploit: "0 + 9*Item: iceandfire:silver_nugget => 1*Item: iceandfire:silver_ingot" ingredient cost: 504 value of result: 512 setValueFromConversion: 0 + 2*Item Tag: forge:ingots/iron => 1*Item: iceandfire:silver_ingot [05Nov2024 19:11:22.526] [main/WARN] [moze_intel.projecte.PECore/]: EMC Exploit: "0 + 9*Item: beo:nickel_nugget => 1*Item: beo:nickel_ingot" ingredient cost: 1017 value of result: 1024 setValueFromConversion: 0 + 4*Item Tag: forge:ingots/iron => 1*Item: beo:nickel_ingot [05Nov2024 19:11:22.528] [main/WARN] [moze_intel.projecte.PECore/]: EMC Exploit: "0 + 9*Item: beo:osmium_nugget => 1*Item: beo:osmium_ingot" ingredient cost: 504 value of result: 512 setValueFromConversion: 0 + 2*Item Tag: forge:ingots/iron => 1*Item: beo:osmium_ingot [05Nov2024 19:11:22.531] [main/WARN] [moze_intel.projecte.PECore/]: EMC Exploit: "0 + 9*Item: minecraft:gold_nugget => 1*Item: minecraft:gold_ingot" ingredient cost: 2043 value of result: 2048 setValueFromConversion: 0 + 8*Item Tag: forge:ingots/iron => 1*Item: minecraft:gold_ingot [05Nov2024 19:11:22.533] [main/WARN] [moze_intel.projecte.PECore/]: EMC Exploit: "0 + 4*Item: securitycraft:reinforced_sand => 4*Item: securitycraft:reinforced_sandstone" ingredient cost: 4 value of result: 4 setValueFromConversion: 0 + 1*Item: minecraft:sandstone => 1*Item: securitycraft:reinforced_sandstone [05Nov2024 19:11:22.533] [main/WARN] [moze_intel.projecte.PECore/]: EMC Exploit: ingredients (0 + 9*Item: minecraft:iron_nugget => 1*Item: minecraft:iron_ingot) cost 252 but output value is 256 [05Nov2024 19:11:22.534] [main/WARN] [moze_intel.projecte.PECore/]: EMC Exploit: "0 + 1*Item: securitycraft:reinforced_diorite + 1*NSSFAKE:craftingMapper/173 => 2*Item: securitycraft:reinforced_andesite" ingredient cost: 17 value of result: 16 setValueFromConversion: 0 + 1*Item: minecraft:andesite => 1*Item: securitycraft:reinforced_andesite [05Nov2024 19:11:22.534] [main/WARN] [moze_intel.projecte.PECore/]: EMC Exploit: ingredients (0 + 1*Item: minecraft:cobblestone + 1*Item: minecraft:diorite => 2*Item: minecraft:andesite) cost 17 but output value is 16 [05Nov2024 19:11:22.535] [main/WARN] [moze_intel.projecte.PECore/]: EMC Exploit: "0 + 9*Item: bno:nickel_nugget => 1*Item: bno:nickel_ingot" ingredient cost: 1017 value of result: 1024 setValueFromConversion: 0 + 4*Item Tag: forge:ingots/iron => 1*Item: bno:nickel_ingot [05Nov2024 19:11:22.537] [main/WARN] [moze_intel.projecte.PECore/]: EMC Exploit: "0 + 9*Item: bno:lead_nugget => 1*Item: bno:lead_ingot" ingredient cost: 504 value of result: 512 setValueFromConversion: 0 + 2*Item Tag: forge:ingots/iron => 1*Item: bno:lead_ingot [05Nov2024 19:11:22.539] [main/WARN] [moze_intel.projecte.PECore/]: EMC Exploit: ingredients (0 + 3*Item: minecraft:charcoal + 2*Item: minecraft:sugar + 1*Item: minecraft:flint => 3*Item: minecraft:gunpowder) cost 130 but output value is 192 [05Nov2024 19:11:22.542] [main/WARN] [moze_intel.projecte.PECore/]: EMC Exploit: "0 + 9*Item: bno:tin_nugget => 1*Item: bno:tin_ingot" ingredient cost: 252 value of result: 256 setValueFromConversion: 0 + 1*Item Tag: forge:ingots/iron => 1*Item: bno:tin_ingot [05Nov2024 19:11:22.542] [main/WARN] [moze_intel.projecte.PECore/]: EMC Exploit: "0 + 9*Item: bno:aluminum_nugget => 1*Item: bno:aluminum_ingot" ingredient cost: 126 value of result: 128 setValueFromConversion: 0 + 1*Item Tag: forge:ingots/iron => 2*Item: bno:aluminum_ingot [05Nov2024 19:11:22.544] [main/WARN] [moze_intel.projecte.PECore/]: EMC Exploit: "0 + 9*Item: beo:silver_nugget => 1*Item: beo:silver_ingot" ingredient cost: 504 value of result: 512 setValueFromConversion: 0 + 2*Item Tag: forge:ingots/iron => 1*Item: beo:silver_ingot [05Nov2024 19:11:22.547] [main/WARN] [moze_intel.projecte.PECore/]: EMC Exploit: "0 + 9*Item: beo:lead_nugget => 1*Item: beo:lead_ingot" ingredient cost: 504 value of result: 512 setValueFromConversion: 0 + 2*Item Tag: forge:ingots/iron => 1*Item: beo:lead_ingot [05Nov2024 19:11:22.547] [main/WARN] [moze_intel.projecte.PECore/]: EMC Exploit: "0 + 9*NSSFAKE:craftingMapper/291 => 1*Item: occultism:silver_ingot" ingredient cost: 504 value of result: 512 setValueFromConversion: 0 + 2*Item Tag: forge:ingots/iron => 1*Item: occultism:silver_ingot [05Nov2024 19:11:22.547] [main/WARN] [moze_intel.projecte.PECore/]: EMC Exploit: ingredients (0 + 9*Item: minecraft:disc_fragment_5 => 1*Item: minecraft:music_disc_5) cost 2043 but output value is 2048 [05Nov2024 19:11:22.550] [main/WARN] [moze_intel.projecte.PECore/]: EMC Exploit: "0 + 9*Item: beo:tin_nugget => 1*Item: beo:tin_ingot" ingredient cost: 252 value of result: 256 setValueFromConversion: 0 + 1*Item Tag: forge:ingots/iron => 1*Item: beo:tin_ingot [05Nov2024 19:11:22.550] [main/WARN] [moze_intel.projecte.PECore/]: EMC Exploit: "0 + 9*Item: bno:silver_nugget => 1*Item: bno:silver_ingot" ingredient cost: 504 value of result: 512 setValueFromConversion: 0 + 2*Item Tag: forge:ingots/iron => 1*Item: bno:silver_ingot [05Nov2024 19:11:22.550] [main/WARN] [moze_intel.projecte.PECore/]: EMC Exploit: "0 + 9*Item: beo:aluminum_nugget => 1*Item: beo:aluminum_ingot" ingredient cost: 126 value of result: 128 setValueFromConversion: 0 + 1*Item Tag: forge:ingots/iron => 2*Item: beo:aluminum_ingot [05Nov2024 19:11:22.574] [main/INFO] [moze_intel.projecte.PECore/]: Registered 9085 EMC values. (took 482 ms) [05Nov2024 19:11:22.577] [main/INFO] [Cucumber Library/]: Loaded cucumber-tags.json in 0 ms [05Nov2024 19:11:22.577] [main/INFO] [Mystical Agriculture/]: Recipe ingredient caching done in 0 ms [05Nov2024 19:11:22.788] [Server thread/INFO] [net.minecraft.server.dedicated.DedicatedServer/]: Starting minecraft server version 1.19.2 [05Nov2024 19:11:22.788] [Server thread/INFO] [net.minecraft.server.dedicated.DedicatedServer/]: Loading properties [05Nov2024 19:11:22.788] [Server thread/INFO] [net.minecraft.server.dedicated.DedicatedServer/]: Default game type: SURVIVAL [05Nov2024 19:11:22.788] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: Generating keypair [05Nov2024 19:11:22.817] [Server thread/INFO] [net.minecraft.server.dedicated.DedicatedServer/]: Starting Minecraft server on 0.0.0.0:25553 [05Nov2024 19:11:22.843] [Server thread/INFO] [net.minecraft.server.network.ServerConnectionListener/]: Using epoll channel type [05Nov2024 19:11:22.941] [Server thread/INFO] [Puzzles Lib/]: Loading server config for enchantinginfuser [05Nov2024 19:11:22.958] [Server thread/WARN] [net.minecraftforge.common.ForgeConfigSpec/CORE]: Configuration file ./world/serverconfig/Survive Configs/stamina-server.toml is not correct. Correcting [05Nov2024 19:11:22.958] [Server thread/WARN] [net.minecraftforge.common.ForgeConfigSpec/CORE]: Incorrect key Ideal Amount Of Sleep was corrected from 6000 to its default, 6000. [05Nov2024 19:11:22.990] [Server thread/INFO] [journeymap/]: Loading JourneyMap Forge Configs [05Nov2024 19:11:23.129] [Server thread/INFO] [FTB Teams/]: loaded team data: 1 known players, 1 teams total [05Nov2024 19:11:23.188] [Server thread/INFO] [spark/]: Starting background profiler... [05Nov2024 19:11:23.516] [Server thread/WARN] [potionstudios.byg.BYG/]: "minecraft:none" is not a registered villager profession, skipping trade entry... [05Nov2024 19:11:23.518] [Server thread/WARN] [potionstudios.byg.BYG/]: "minecraft:nitwit" is not a registered villager profession, skipping trade entry... [05Nov2024 19:11:23.525] [Server thread/INFO] [Framework/]: Loading server configs... [05Nov2024 19:11:23.528] [Server thread/INFO] [configured/]: Loading server configs... [05Nov2024 19:11:23.936] [Server thread/INFO] [terrablender/]: Initialized TerraBlender biomes for level stem minecraft:overworld [05Nov2024 19:11:23.937] [Server thread/INFO] [terrablender/]: Initialized TerraBlender biomes for level stem aether:the_aether [05Nov2024 19:11:23.937] [Server thread/INFO] [net.minecraft.server.dedicated.DedicatedServer/]: Preparing level "world" [05Nov2024 19:11:23.943] [Server thread/INFO] [unionlib/]: Initializing mod on server: unionlib [05Nov2024 19:11:23.943] [Server thread/INFO] [unionlib/]: Initializing mod on server: survive [05Nov2024 19:11:23.953] [Server thread/INFO] [CheckedThreadLocalRandom/]: Enforcing safe world random access [05Nov2024 19:11:24.116] [Server thread/INFO] [shetiphian.core.ShetiPhianCore/]: Loading Teams Data [05Nov2024 19:11:24.117] [Server thread/INFO] [shetiphian.core.ShetiPhianCore/]: Finished Loading Teams Data [05Nov2024 19:11:24.973] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: Preparing start region for dimension minecraft:overworld [05Nov2024 19:11:26.382] [Server thread/INFO] [net.minecraft.server.level.progress.LoggerChunkProgressListener/]: Time elapsed: 10135170920 ms [05Nov2024 19:11:26.383] [Server thread/INFO] [net.minecraft.server.dedicated.DedicatedServer/]: Done (3.461s)! For help, type "help" [05Nov2024 19:11:26.440] [Server thread/INFO] [net.minecraftforge.server.permission.PermissionAPI/]: Successfully initialized permission handler forge:default_handler [05Nov2024 19:11:26.440] [Server thread/INFO] [net.uknownymous.overhauledstructures.OverhauledStructures/]: Hey! Epic Dungeons is currently active. Thanks for using it. [05Nov2024 19:11:26.440] [Server thread/INFO] [net.stardustlabs.amplifiednether.AmplifiedNether/]: Thanks for choosing AmplifiedNether! [05Nov2024 19:11:26.440] [Server thread/WARN] [dev.denismasterherobrine.angelring.AngelRing/]: Tinkers' Construct is loaded! Slime Boots doesn't work with Angel Ring at the moment. [05Nov2024 19:11:26.449] [Server thread/INFO] [net.stardustlabs.incendium.Incendium/]: Thanks for choosing Incendium! [05Nov2024 19:11:26.450] [Server thread/INFO] [com.axedgaming.endersdelight.EndersDelight/]: HELLO from server starting [05Nov2024 19:11:26.467] [Server thread/INFO] [net.tejty.lemoned.Lemoned/]: HELLO from server starting [05Nov2024 19:11:26.493] [Server thread/INFO] [com.rajhab.morevanillashields_mod.morevanillashields/]: morevanillashields: This mod is now running on a server. Please report any error or bugs. [05Nov2024 19:11:26.495] [Server thread/INFO] [HammerLib/]: Reloading recipes in 0 HL recipe registries. [05Nov2024 19:11:26.495] [Server thread/INFO] [net.stardustlabs.nullscape.Nullscape/]: Thanks for choosing Nullscape! [05Nov2024 19:11:26.506] [Server thread/INFO] [Discord Integration/]: Started [05Nov2024 19:11:26.617] [Server thread/INFO] [com.github.alexthe666.iceandfire.IceAndFire/]: {iceandfire:fire_dragon_roost=true, iceandfire:fire_lily=true, iceandfire:spawn_dragon_skeleton_fire=true, iceandfire:lightning_dragon_roost=true, iceandfire:spawn_dragon_skeleton_lightning=true, iceandfire:ice_dragon_roost=true, iceandfire:ice_dragon_cave=true, iceandfire:lightning_dragon_cave=true, iceandfire:cyclops_cave=true, iceandfire:spawn_wandering_cyclops=true, iceandfire:spawn_sea_serpent=true, iceandfire:frost_lily=true, iceandfire:hydra_cave=true, iceandfire:lightning_lily=true, iceandfire:pixie_village=true, iceandfire:myrmex_hive_jungle=true, iceandfire:myrmex_hive_desert=true, iceandfire:silver_ore=true, iceandfire:siren_island=true, iceandfire:spawn_dragon_skeleton_ice=true, iceandfire:spawn_stymphalian_bird=true, iceandfire:fire_dragon_cave=true, iceandfire:sapphire_ore=true, iceandfire:spawn_hippocampus=true, iceandfire:spawn_death_worm=true} [05Nov2024 19:11:26.617] [Server thread/INFO] [com.github.alexthe666.iceandfire.IceAndFire/]: {TROLL_S=true, HIPPOGRYPH=true, AMPHITHERE=true, COCKATRICE=true, TROLL_M=true, DREAD_LICH=true, TROLL_F=true} [05Nov2024 19:11:26.690] [Server thread/INFO] [net.bettercombat.logic.WeaponRegistry/]: Encoded Weapon Attribute registry size (with package overhead): 136194 bytes (in 14 string chunks with the size of 10000) [05Nov2024 19:11:26.692] [Server thread/INFO] [shetiphian.endertanks.EnderTanks/]: Loading EnderTank Data [05Nov2024 19:11:26.693] [Server thread/INFO] [shetiphian.endertanks.EnderTanks/]: Finished Loading EnderTank Data [05Nov2024 19:11:26.741] [Server thread/INFO] [patchouli/]: Sending reload packet to clients [05Nov2024 19:11:26.750] [VoiceChatServerThread/INFO] [voicechat/]: [voicechat] Using server-ip as bind address: 0.0.0.0 [05Nov2024 19:11:26.751] [Server thread/WARN] [ModernFix/]: Dedicated server took 38.434 seconds to load [05Nov2024 19:11:26.757] [VoiceChatServerThread/INFO] [voicechat/]: [voicechat] Voice chat server started at 0.0.0.0:24454 [05Nov2024 19:11:27.036] [DiscordIntegration-Core WorkerThread/INFO] [Discord Integration/]: No need to regenerate local commands [05Nov2024 19:11:27.036] [DiscordIntegration-Core WorkerThread/INFO] [Discord Integration/]: No need to regenerate global commands [05Nov2024 19:11:27.038] [DiscordIntegration-Core WorkerThread/INFO] [Discord Integration/]: Added command list with ID 1221938933810724967 [05Nov2024 19:11:27.038] [DiscordIntegration-Core WorkerThread/INFO] [Discord Integration/]: Added command uptime with ID 1221938933810724969 [05Nov2024 19:11:27.038] [DiscordIntegration-Core WorkerThread/INFO] [Discord Integration/]: Added command settings with ID 1221938933810724970 [05Nov2024 19:11:27.038] [DiscordIntegration-Core WorkerThread/INFO] [Discord Integration/]: Added command linkcheck with ID 1221938933810724971 [05Nov2024 19:11:27.038] [DiscordIntegration-Core WorkerThread/INFO] [Discord Integration/]: Added command link with ID 1221938933810724972 [05Nov2024 19:11:27.038] [DiscordIntegration-Core WorkerThread/INFO] [Discord Integration/]: Added command kick with ID 1221938933810724973 [05Nov2024 19:11:27.038] [DiscordIntegration-Core WorkerThread/INFO] [Discord Integration/]: Added command stop with ID 1221938933810724974 [05Nov2024 19:11:27.038] [DiscordIntegration-Core WorkerThread/INFO] [Discord Integration/]: Added command kill with ID 1221938934305521774 [05Nov2024 19:12:40.818] [Netty Epoll Server IO #1/INFO] [mixin/]: Mixing server.MixinServerboundChatPacket from nochatreports.mixins.json into net.minecraft.network.protocol.game.ServerboundChatPacket [05Nov2024 19:12:40.985] [Netty Epoll Server IO #1/INFO] [mixin/]: Mixing common.MixinServerStatusSerializer from nochatreports.mixins.json into net.minecraft.network.protocol.status.ServerStatus$Serializer [05Nov2024 19:12:49.507] [User Authenticator #1/INFO] [net.minecraft.server.network.ServerLoginPacketListenerImpl/]: UUID of player LEGENDARYSHARK07 is f7bf6892-da78-4736-a9ff-656abda9663b [05Nov2024 19:12:59.861] [Netty Epoll Server IO #2/INFO] [Calio/]: Received acknowledgment for login packet with id 204 [05Nov2024 19:12:59.892] [Netty Epoll Server IO #2/INFO] [Calio/]: Received acknowledgment for login packet with id 205 [05Nov2024 19:12:59.940] [Netty Epoll Server IO #2/INFO] [Calio/]: Received acknowledgment for login packet with id 206 [05Nov2024 19:12:59.996] [Netty Epoll Server IO #2/INFO] [Calio/]: Received acknowledgment for login packet with id 207 [05Nov2024 19:13:00.041] [Netty Epoll Server IO #2/INFO] [Calio/]: Received acknowledgment for login packet with id 208 [05Nov2024 19:13:00.092] [Netty Epoll Server IO #2/INFO] [Calio/]: Received acknowledgment for login packet with id 209 [05Nov2024 19:13:00.141] [Netty Epoll Server IO #2/INFO] [Calio/]: Received acknowledgment for login packet with id 210 [05Nov2024 19:13:00.191] [Netty Epoll Server IO #2/INFO] [Calio/]: Received acknowledgment for login packet with id 211 [05Nov2024 19:13:00.242] [Netty Epoll Server IO #2/INFO] [Calio/]: Received acknowledgment for login packet with id 212 [05Nov2024 19:13:00.292] [Netty Epoll Server IO #2/INFO] [Calio/]: Received acknowledgment for login packet with id 213 [05Nov2024 19:13:00.340] [Netty Epoll Server IO #2/INFO] [Calio/]: Received acknowledgment for login packet with id 214 [05Nov2024 19:13:00.391] [Netty Epoll Server IO #2/INFO] [Calio/]: Received acknowledgment for login packet with id 215 [05Nov2024 19:13:00.583] [Netty Epoll Server IO #2/INFO] [Calio/]: Received acknowledgment for login packet with id 216 [05Nov2024 19:13:00.587] [Netty Epoll Server IO #2/INFO] [Calio/]: Received acknowledgment for login packet with id 217 [05Nov2024 19:13:00.619] [Netty Epoll Server IO #2/INFO] [Calio/]: Received acknowledgment for login packet with id 218 [05Nov2024 19:13:00.756] [Server thread/INFO] [net.minecraftforge.common.AdvancementLoadFix/]: Using new advancement loading for net.minecraft.server.PlayerAdvancements@1027bacf [05Nov2024 19:13:00.873] [Server thread/INFO] [net.minecraft.server.players.PlayerList/]: LEGENDARYSHARK07[/194.164.122.72:34174] logged in with entity id 7 at (-1404.5, 65.0, -339.5) [05Nov2024 19:13:00.936] [Server thread/INFO] [com.klikli_dev.modonomicon.Modonomicon/]: Building books ... [05Nov2024 19:13:00.940] [Server thread/WARN] [com.klikli_dev.modonomicon.Modonomicon/]: Recipe minecraft:netherite_axe_smithing_does_not_exist (of type minecraft:smithing) not found. [05Nov2024 19:13:00.940] [Server thread/INFO] [com.klikli_dev.modonomicon.Modonomicon/]: Books built. [05Nov2024 19:13:00.940] [Server thread/INFO] [com.klikli_dev.modonomicon.Modonomicon/]: Adding read conditions ... [05Nov2024 19:13:00.940] [Server thread/INFO] [com.klikli_dev.modonomicon.Modonomicon/]: Read conditions added. [05Nov2024 19:13:01.021] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: LEGENDARYSHARK07 joined the game [05Nov2024 19:13:01.137] [Server thread/INFO] [com.tristankechlo.toolleveling.ToolLeveling/]: Sending config to client: 'toolleveling:general' [05Nov2024 19:13:01.137] [Server thread/INFO] [com.tristankechlo.toolleveling.ToolLeveling/]: Sending config to client: 'toolleveling:item_values' [05Nov2024 19:13:01.137] [Server thread/INFO] [com.tristankechlo.toolleveling.ToolLeveling/]: Sending config to client: 'toolleveling:commands' [05Nov2024 19:13:01.423] [Server thread/INFO] [net.minecraft.server.network.ServerGamePacketListenerImpl/]: LEGENDARYSHARK07 lost connection: Internal Exception: io.netty.handler.codec.EncoderException: java.lang.NullPointerException: Cannot invoke "java.lang.Enum.ordinal()" because "p_130069_" is null [05Nov2024 19:13:01.424] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: LEGENDARYSHARK07 left the game [05Nov2024 19:13:01.428] [Server thread/INFO] [voicechat/]: [voicechat] Disconnecting client LEGENDARYSHARK07 [05Nov2024 19:13:01.485] [Server thread/WARN] [net.minecraft.network.Connection/]: handleDisconnection() called twice [05Nov2024 19:17:27.304] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: Stopping the server [05Nov2024 19:17:27.357] [Server thread/INFO] [HammerLib/]: Purging cache from 0 HL recipe registries. [05Nov2024 19:17:27.362] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: Stopping server [05Nov2024 19:17:27.363] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: Saving players [05Nov2024 19:17:27.363] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: Saving worlds [05Nov2024 19:17:27.753] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: Saving chunks for level 'ServerLevel[world]'/minecraft:overworld [05Nov2024 19:17:30.914] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: Saving chunks for level 'ServerLevel[world]'/deeperdarker:otherside [05Nov2024 19:17:30.915] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: Saving chunks for level 'ServerLevel[world]'/theabyss:the_abyss [05Nov2024 19:17:30.915] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: Saving chunks for level 'ServerLevel[world]'/l2library:maze [05Nov2024 19:17:30.916] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: Saving chunks for level 'ServerLevel[world]'/twilightforest:twilight_forest [05Nov2024 19:17:30.917] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: Saving chunks for level 'ServerLevel[world]'/minecraft:the_end [05Nov2024 19:17:31.003] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: Saving chunks for level 'ServerLevel[world]'/theabyss:pocket_dimension [05Nov2024 19:17:31.003] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: Saving chunks for level 'ServerLevel[world]'/minecraft:the_nether [05Nov2024 19:17:31.004] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: Saving chunks for level 'ServerLevel[world]'/theabyss:frost_world [05Nov2024 19:17:31.005] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: Saving chunks for level 'ServerLevel[world]'/man:halucination [05Nov2024 19:17:31.006] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: Saving chunks for level 'ServerLevel[world]'/aether:the_aether [05Nov2024 19:17:31.006] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: Saving chunks for level 'ServerLevel[world]'/ae2:spatial_storage [05Nov2024 19:17:31.115] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: ThreadedAnvilChunkStorage (world): All chunks are saved [05Nov2024 19:17:31.115] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: ThreadedAnvilChunkStorage (otherside): All chunks are saved [05Nov2024 19:17:31.115] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: ThreadedAnvilChunkStorage (the_abyss): All chunks are saved [05Nov2024 19:17:31.115] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: ThreadedAnvilChunkStorage (maze): All chunks are saved [05Nov2024 19:17:31.115] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: ThreadedAnvilChunkStorage (twilight_forest): All chunks are saved [05Nov2024 19:17:31.115] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: ThreadedAnvilChunkStorage (DIM1): All chunks are saved [05Nov2024 19:17:31.115] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: ThreadedAnvilChunkStorage (pocket_dimension): All chunks are saved [05Nov2024 19:17:31.115] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: ThreadedAnvilChunkStorage (DIM-1): All chunks are saved [05Nov2024 19:17:31.115] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: ThreadedAnvilChunkStorage (frost_world): All chunks are saved [05Nov2024 19:17:31.115] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: ThreadedAnvilChunkStorage (halucination): All chunks are saved [05Nov2024 19:17:31.115] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: ThreadedAnvilChunkStorage (the_aether): All chunks are saved [05Nov2024 19:17:31.115] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: ThreadedAnvilChunkStorage (spatial_storage): All chunks are saved [05Nov2024 19:17:31.115] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: ThreadedAnvilChunkStorage: All dimensions are saved [05Nov2024 19:17:31.648] [Server thread/INFO] [Discord Integration/]: Unloading addons... [05Nov2024 19:17:31.648] [Server thread/INFO] [Discord Integration/]: Unloaded addons [05Nov2024 19:17:31.648] [Server thread/INFO] [Discord Integration/]: Unloading instance: net.dv8tion.jda.internal.JDAImpl@1b5f8a1f [05Nov2024 19:17:31.648] [Server thread/INFO] [Discord Integration/]: Unloading listener: de.erdbeerbaerlp.dcintegration.common.DiscordEventListener@64b25486 [05Nov2024 19:17:31.651] [Server thread/INFO] [Discord Integration/]: Waiting for JDA to shut-down... [05Nov2024 19:17:31.773] [Server thread/INFO] [Discord Integration/]: JDA shut-down gracefully [05Nov2024 19:17:31.774] [Server thread/INFO] [Discord Integration/]: Shut-down successfully! [05Nov2024 19:17:31.774] [Server thread/INFO] [Calio/]: Removing Dynamic Registries for: net.minecraft.server.dedicated.DedicatedServer@5376142c [05Nov2024 19:17:31.774] [Server thread/INFO] [shetiphian.endertanks.EnderTanks/]: Unloading EnderTank Data [05Nov2024 19:17:31.774] [Server thread/INFO] [shetiphian.endertanks.EnderTanks/]: Finished Unloading EnderTank Data [05Nov2024 19:17:31.775] [Server thread/INFO] [Framework/]: Unloading server configs... [05Nov2024 19:17:31.775] [Server thread/INFO] [configured/]: Unloading server configs... [05Nov2024 19:17:31.776] [Server thread/INFO] [configured/]: Sending config unload event for configured.developer.toml
  22. my runClient no longer works. here are the logs: 17:20:32: Executing 'runClient --warning-mode all --info --stacktrace'... The client will now receive all logging from the daemon (pid: 18820). The daemon log file: C:\Users\Jojo\.gradle\daemon\8.8\daemon-18820.out.log Starting 38th build in daemon [uptime: 57 mins 39.704 secs, performance: 99%, GC rate: 0.00/s, heap usage: 0% of 3 GiB] Using 24 worker leases. Now considering [C:\Users\Jojo\Desktop\modujem mc] as hierarchies to watch Watching the file system is configured to be enabled if available File system watching is active Starting Build Transforming foojay-resolver-0.7.0.jar (org.gradle.toolchains:foojay-resolver:0.7.0) with InstrumentationAnalysisTransform Transforming gson-2.9.1.jar (com.google.code.gson:gson:2.9.1) with InstrumentationAnalysisTransform Transforming foojay-resolver-0.7.0.jar (org.gradle.toolchains:foojay-resolver:0.7.0) with InstrumentationAnalysisTransform Transforming foojay-resolver-0.7.0.jar (org.gradle.toolchains:foojay-resolver:0.7.0) with MergeInstrumentationAnalysisTransform Transforming gson-2.9.1.jar (com.google.code.gson:gson:2.9.1) with InstrumentationAnalysisTransform Transforming gson-2.9.1.jar (com.google.code.gson:gson:2.9.1) with MergeInstrumentationAnalysisTransform Transforming foojay-resolver-0.7.0.jar (org.gradle.toolchains:foojay-resolver:0.7.0) with ExternalDependencyInstrumentingArtifactTransform Transforming gson-2.9.1.jar (com.google.code.gson:gson:2.9.1) with ExternalDependencyInstrumentingArtifactTransform Settings evaluated using settings file 'C:\Users\Jojo\Desktop\modujem mc\settings.gradle'. Projects loaded. Root project using build file 'C:\Users\Jojo\Desktop\modujem mc\build.gradle'. Included projects: [root project 'modujem mc'] > Configure project : Evaluating root project 'modujem mc' using build file 'C:\Users\Jojo\Desktop\modujem mc\build.gradle'. Transforming ForgeGradle-6.0.29.jar (net.minecraftforge.gradle:ForgeGradle:6.0.29) with InstrumentationAnalysisTransform Transforming librarian-1.2.0.7-dev-SNAPSHOT.jar (org.parchmentmc:librarian:1.2.0.7-dev-SNAPSHOT:20230909.081143-1) with InstrumentationAnalysisTransform Transforming commons-io-2.11.0.jar (commons-io:commons-io:2.11.0) with InstrumentationAnalysisTransform Transforming JarJarSelector-0.3.19.jar (net.minecraftforge:JarJarSelector:0.3.19) with InstrumentationAnalysisTransform Transforming JarJarMetadata-0.3.19.jar (net.minecraftforge:JarJarMetadata:0.3.19) with InstrumentationAnalysisTransform Transforming io-gson-0.6.5.jar (org.parchmentmc.feather:io-gson:0.6.5) with InstrumentationAnalysisTransform Transforming gson-2.10.1.jar (com.google.code.gson:gson:2.10.1) with InstrumentationAnalysisTransform Transforming feather-0.6.5.jar (org.parchmentmc:feather:0.6.5) with InstrumentationAnalysisTransform Transforming guava-31.1-jre.jar (com.google.guava:guava:31.1-jre) with InstrumentationAnalysisTransform Transforming fastcsv-2.2.1.jar (de.siegmar:fastcsv:2.2.1) with InstrumentationAnalysisTransform Transforming artifactural-3.0.19.jar (net.minecraftforge:artifactural:3.0.19) with InstrumentationAnalysisTransform Transforming unsafe-0.2.0.jar (net.minecraftforge:unsafe:0.2.0) with InstrumentationAnalysisTransform Transforming maven-artifact-3.9.1.jar (org.apache.maven:maven-artifact:3.9.1) with InstrumentationAnalysisTransform Transforming httpclient-4.5.14.jar (org.apache.httpcomponents:httpclient:4.5.14) with InstrumentationAnalysisTransform Transforming srgutils-0.5.10.jar (net.minecraftforge:srgutils:0.5.10) with InstrumentationAnalysisTransform Transforming DiffPatch-2.0.12-all.jar (net.minecraftforge:DiffPatch:2.0.12) with InstrumentationAnalysisTransform Transforming failureaccess-1.0.1.jar (com.google.guava:failureaccess:1.0.1) with InstrumentationAnalysisTransform Transforming listenablefuture-9999.0-empty-to-avoid-conflict-with-guava.jar (com.google.guava:listenablefuture:9999.0-empty-to-avoid-conflict-with-guava) with InstrumentationAnalysisTransform Transforming jsr305-3.0.2.jar (com.google.code.findbugs:jsr305:3.0.2) with InstrumentationAnalysisTransform Transforming checker-qual-3.13.0.jar (org.checkerframework:checker-qual:3.13.0) with InstrumentationAnalysisTransform Transforming error_prone_annotations-2.11.0.jar (com.google.errorprone:error_prone_annotations:2.11.0) with InstrumentationAnalysisTransform Transforming j2objc-annotations-1.3.jar (com.google.j2objc:j2objc-annotations:1.3) with InstrumentationAnalysisTransform Transforming plexus-utils-3.5.1.jar (org.codehaus.plexus:plexus-utils:3.5.1) with InstrumentationAnalysisTransform Transforming commons-lang3-3.9.jar (org.apache.commons:commons-lang3:3.9) with InstrumentationAnalysisTransform Transforming httpcore-4.4.16.jar (org.apache.httpcomponents:httpcore:4.4.16) with InstrumentationAnalysisTransform Transforming commons-logging-1.2.jar (commons-logging:commons-logging:1.2) with InstrumentationAnalysisTransform Transforming commons-codec-1.11.jar (commons-codec:commons-codec:1.11) with InstrumentationAnalysisTransform Transforming fastutil-8.3.1.jar (it.unimi.dsi:fastutil:8.3.1) with InstrumentationAnalysisTransform Transforming commons-compress-1.18.jar (org.apache.commons:commons-compress:1.18) with InstrumentationAnalysisTransform Transforming xz-1.8.jar (org.tukaani:xz:1.8) with InstrumentationAnalysisTransform Transforming jopt-simple-5.0.4.jar (net.sf.jopt-simple:jopt-simple:5.0.4) with InstrumentationAnalysisTransform Transforming noexception-1.7.1.jar (com.machinezoo.noexception:noexception:1.7.1) with InstrumentationAnalysisTransform Transforming slf4j-simple-1.7.30.jar (org.slf4j:slf4j-simple:1.7.30) with InstrumentationAnalysisTransform Transforming slf4j-api-1.7.30.jar (org.slf4j:slf4j-api:1.7.30) with InstrumentationAnalysisTransform Transforming ForgeGradle-6.0.29.jar (net.minecraftforge.gradle:ForgeGradle:6.0.29) with InstrumentationAnalysisTransform Transforming ForgeGradle-6.0.29.jar (net.minecraftforge.gradle:ForgeGradle:6.0.29) with MergeInstrumentationAnalysisTransform Transforming librarian-1.2.0.7-dev-SNAPSHOT.jar (org.parchmentmc:librarian:1.2.0.7-dev-SNAPSHOT:20230909.081143-1) with InstrumentationAnalysisTransform Transforming librarian-1.2.0.7-dev-SNAPSHOT.jar (org.parchmentmc:librarian:1.2.0.7-dev-SNAPSHOT:20230909.081143-1) with MergeInstrumentationAnalysisTransform Transforming commons-io-2.11.0.jar (commons-io:commons-io:2.11.0) with InstrumentationAnalysisTransform Transforming commons-io-2.11.0.jar (commons-io:commons-io:2.11.0) with MergeInstrumentationAnalysisTransform Transforming ForgeGradle-6.0.29.jar (net.minecraftforge.gradle:ForgeGradle:6.0.29) with ExternalDependencyInstrumentingArtifactTransform Transforming JarJarSelector-0.3.19.jar (net.minecraftforge:JarJarSelector:0.3.19) with InstrumentationAnalysisTransform Transforming librarian-1.2.0.7-dev-SNAPSHOT.jar (org.parchmentmc:librarian:1.2.0.7-dev-SNAPSHOT:20230909.081143-1) with ExternalDependencyInstrumentingArtifactTransform Transforming commons-io-2.11.0.jar (commons-io:commons-io:2.11.0) with ExternalDependencyInstrumentingArtifactTransform Transforming JarJarSelector-0.3.19.jar (net.minecraftforge:JarJarSelector:0.3.19) with MergeInstrumentationAnalysisTransform Transforming JarJarMetadata-0.3.19.jar (net.minecraftforge:JarJarMetadata:0.3.19) with InstrumentationAnalysisTransform Transforming JarJarMetadata-0.3.19.jar (net.minecraftforge:JarJarMetadata:0.3.19) with MergeInstrumentationAnalysisTransform Transforming JarJarSelector-0.3.19.jar (net.minecraftforge:JarJarSelector:0.3.19) with ExternalDependencyInstrumentingArtifactTransform Transforming io-gson-0.6.5.jar (org.parchmentmc.feather:io-gson:0.6.5) with InstrumentationAnalysisTransform Transforming io-gson-0.6.5.jar (org.parchmentmc.feather:io-gson:0.6.5) with MergeInstrumentationAnalysisTransform Transforming JarJarMetadata-0.3.19.jar (net.minecraftforge:JarJarMetadata:0.3.19) with ExternalDependencyInstrumentingArtifactTransform Transforming gson-2.10.1.jar (com.google.code.gson:gson:2.10.1) with InstrumentationAnalysisTransform Transforming gson-2.10.1.jar (com.google.code.gson:gson:2.10.1) with MergeInstrumentationAnalysisTransform Transforming io-gson-0.6.5.jar (org.parchmentmc.feather:io-gson:0.6.5) with ExternalDependencyInstrumentingArtifactTransform Transforming feather-0.6.5.jar (org.parchmentmc:feather:0.6.5) with InstrumentationAnalysisTransform Transforming feather-0.6.5.jar (org.parchmentmc:feather:0.6.5) with MergeInstrumentationAnalysisTransform Transforming gson-2.10.1.jar (com.google.code.gson:gson:2.10.1) with ExternalDependencyInstrumentingArtifactTransform Transforming guava-31.1-jre.jar (com.google.guava:guava:31.1-jre) with InstrumentationAnalysisTransform Transforming guava-31.1-jre.jar (com.google.guava:guava:31.1-jre) with MergeInstrumentationAnalysisTransform Transforming feather-0.6.5.jar (org.parchmentmc:feather:0.6.5) with ExternalDependencyInstrumentingArtifactTransform Transforming fastcsv-2.2.1.jar (de.siegmar:fastcsv:2.2.1) with InstrumentationAnalysisTransform Transforming fastcsv-2.2.1.jar (de.siegmar:fastcsv:2.2.1) with MergeInstrumentationAnalysisTransform Transforming guava-31.1-jre.jar (com.google.guava:guava:31.1-jre) with ExternalDependencyInstrumentingArtifactTransform Transforming artifactural-3.0.19.jar (net.minecraftforge:artifactural:3.0.19) with InstrumentationAnalysisTransform Transforming artifactural-3.0.19.jar (net.minecraftforge:artifactural:3.0.19) with MergeInstrumentationAnalysisTransform Transforming fastcsv-2.2.1.jar (de.siegmar:fastcsv:2.2.1) with ExternalDependencyInstrumentingArtifactTransform Transforming unsafe-0.2.0.jar (net.minecraftforge:unsafe:0.2.0) with InstrumentationAnalysisTransform Transforming unsafe-0.2.0.jar (net.minecraftforge:unsafe:0.2.0) with MergeInstrumentationAnalysisTransform Transforming artifactural-3.0.19.jar (net.minecraftforge:artifactural:3.0.19) with ExternalDependencyInstrumentingArtifactTransform Transforming maven-artifact-3.9.1.jar (org.apache.maven:maven-artifact:3.9.1) with InstrumentationAnalysisTransform Transforming maven-artifact-3.9.1.jar (org.apache.maven:maven-artifact:3.9.1) with MergeInstrumentationAnalysisTransform Transforming unsafe-0.2.0.jar (net.minecraftforge:unsafe:0.2.0) with ExternalDependencyInstrumentingArtifactTransform Transforming httpclient-4.5.14.jar (org.apache.httpcomponents:httpclient:4.5.14) with InstrumentationAnalysisTransform Transforming httpclient-4.5.14.jar (org.apache.httpcomponents:httpclient:4.5.14) with MergeInstrumentationAnalysisTransform Transforming maven-artifact-3.9.1.jar (org.apache.maven:maven-artifact:3.9.1) with ExternalDependencyInstrumentingArtifactTransform Transforming srgutils-0.5.10.jar (net.minecraftforge:srgutils:0.5.10) with InstrumentationAnalysisTransform Transforming httpclient-4.5.14.jar (org.apache.httpcomponents:httpclient:4.5.14) with ExternalDependencyInstrumentingArtifactTransform Transforming srgutils-0.5.10.jar (net.minecraftforge:srgutils:0.5.10) with MergeInstrumentationAnalysisTransform Transforming DiffPatch-2.0.12-all.jar (net.minecraftforge:DiffPatch:2.0.12) with InstrumentationAnalysisTransform Transforming DiffPatch-2.0.12-all.jar (net.minecraftforge:DiffPatch:2.0.12) with MergeInstrumentationAnalysisTransform Transforming srgutils-0.5.10.jar (net.minecraftforge:srgutils:0.5.10) with ExternalDependencyInstrumentingArtifactTransform Transforming failureaccess-1.0.1.jar (com.google.guava:failureaccess:1.0.1) with InstrumentationAnalysisTransform Transforming failureaccess-1.0.1.jar (com.google.guava:failureaccess:1.0.1) with MergeInstrumentationAnalysisTransform Transforming DiffPatch-2.0.12-all.jar (net.minecraftforge:DiffPatch:2.0.12) with ExternalDependencyInstrumentingArtifactTransform Transforming listenablefuture-9999.0-empty-to-avoid-conflict-with-guava.jar (com.google.guava:listenablefuture:9999.0-empty-to-avoid-conflict-with-guava) with InstrumentationAnalysisTransform Transforming listenablefuture-9999.0-empty-to-avoid-conflict-with-guava.jar (com.google.guava:listenablefuture:9999.0-empty-to-avoid-conflict-with-guava) with MergeInstrumentationAnalysisTransform Transforming failureaccess-1.0.1.jar (com.google.guava:failureaccess:1.0.1) with ExternalDependencyInstrumentingArtifactTransform Transforming jsr305-3.0.2.jar (com.google.code.findbugs:jsr305:3.0.2) with InstrumentationAnalysisTransform Transforming jsr305-3.0.2.jar (com.google.code.findbugs:jsr305:3.0.2) with MergeInstrumentationAnalysisTransform Transforming listenablefuture-9999.0-empty-to-avoid-conflict-with-guava.jar (com.google.guava:listenablefuture:9999.0-empty-to-avoid-conflict-with-guava) with ExternalDependencyInstrumentingArtifactTransform Transforming checker-qual-3.13.0.jar (org.checkerframework:checker-qual:3.13.0) with InstrumentationAnalysisTransform Transforming checker-qual-3.13.0.jar (org.checkerframework:checker-qual:3.13.0) with MergeInstrumentationAnalysisTransform Transforming jsr305-3.0.2.jar (com.google.code.findbugs:jsr305:3.0.2) with ExternalDependencyInstrumentingArtifactTransform Transforming error_prone_annotations-2.11.0.jar (com.google.errorprone:error_prone_annotations:2.11.0) with InstrumentationAnalysisTransform Transforming error_prone_annotations-2.11.0.jar (com.google.errorprone:error_prone_annotations:2.11.0) with MergeInstrumentationAnalysisTransform Transforming checker-qual-3.13.0.jar (org.checkerframework:checker-qual:3.13.0) with ExternalDependencyInstrumentingArtifactTransform Transforming j2objc-annotations-1.3.jar (com.google.j2objc:j2objc-annotations:1.3) with InstrumentationAnalysisTransform Transforming j2objc-annotations-1.3.jar (com.google.j2objc:j2objc-annotations:1.3) with MergeInstrumentationAnalysisTransform Transforming error_prone_annotations-2.11.0.jar (com.google.errorprone:error_prone_annotations:2.11.0) with ExternalDependencyInstrumentingArtifactTransform Transforming plexus-utils-3.5.1.jar (org.codehaus.plexus:plexus-utils:3.5.1) with InstrumentationAnalysisTransform Transforming plexus-utils-3.5.1.jar (org.codehaus.plexus:plexus-utils:3.5.1) with MergeInstrumentationAnalysisTransform Transforming j2objc-annotations-1.3.jar (com.google.j2objc:j2objc-annotations:1.3) with ExternalDependencyInstrumentingArtifactTransform Transforming commons-lang3-3.9.jar (org.apache.commons:commons-lang3:3.9) with InstrumentationAnalysisTransform Transforming commons-lang3-3.9.jar (org.apache.commons:commons-lang3:3.9) with MergeInstrumentationAnalysisTransform Transforming plexus-utils-3.5.1.jar (org.codehaus.plexus:plexus-utils:3.5.1) with ExternalDependencyInstrumentingArtifactTransform Transforming httpcore-4.4.16.jar (org.apache.httpcomponents:httpcore:4.4.16) with InstrumentationAnalysisTransform Transforming commons-lang3-3.9.jar (org.apache.commons:commons-lang3:3.9) with ExternalDependencyInstrumentingArtifactTransform Transforming httpcore-4.4.16.jar (org.apache.httpcomponents:httpcore:4.4.16) with MergeInstrumentationAnalysisTransform Transforming commons-logging-1.2.jar (commons-logging:commons-logging:1.2) with InstrumentationAnalysisTransform Transforming commons-logging-1.2.jar (commons-logging:commons-logging:1.2) with MergeInstrumentationAnalysisTransform Transforming commons-codec-1.11.jar (commons-codec:commons-codec:1.11) with InstrumentationAnalysisTransform Transforming httpcore-4.4.16.jar (org.apache.httpcomponents:httpcore:4.4.16) with ExternalDependencyInstrumentingArtifactTransform Transforming commons-codec-1.11.jar (commons-codec:commons-codec:1.11) with MergeInstrumentationAnalysisTransform Transforming commons-logging-1.2.jar (commons-logging:commons-logging:1.2) with ExternalDependencyInstrumentingArtifactTransform Transforming fastutil-8.3.1.jar (it.unimi.dsi:fastutil:8.3.1) with InstrumentationAnalysisTransform Transforming commons-codec-1.11.jar (commons-codec:commons-codec:1.11) with ExternalDependencyInstrumentingArtifactTransform Transforming fastutil-8.3.1.jar (it.unimi.dsi:fastutil:8.3.1) with MergeInstrumentationAnalysisTransform Transforming commons-compress-1.18.jar (org.apache.commons:commons-compress:1.18) with InstrumentationAnalysisTransform Transforming commons-compress-1.18.jar (org.apache.commons:commons-compress:1.18) with MergeInstrumentationAnalysisTransform Transforming xz-1.8.jar (org.tukaani:xz:1.8) with InstrumentationAnalysisTransform Transforming fastutil-8.3.1.jar (it.unimi.dsi:fastutil:8.3.1) with ExternalDependencyInstrumentingArtifactTransform Transforming xz-1.8.jar (org.tukaani:xz:1.8) with MergeInstrumentationAnalysisTransform Transforming commons-compress-1.18.jar (org.apache.commons:commons-compress:1.18) with ExternalDependencyInstrumentingArtifactTransform Transforming jopt-simple-5.0.4.jar (net.sf.jopt-simple:jopt-simple:5.0.4) with InstrumentationAnalysisTransform Transforming jopt-simple-5.0.4.jar (net.sf.jopt-simple:jopt-simple:5.0.4) with MergeInstrumentationAnalysisTransform Transforming xz-1.8.jar (org.tukaani:xz:1.8) with ExternalDependencyInstrumentingArtifactTransform Transforming noexception-1.7.1.jar (com.machinezoo.noexception:noexception:1.7.1) with InstrumentationAnalysisTransform Transforming jopt-simple-5.0.4.jar (net.sf.jopt-simple:jopt-simple:5.0.4) with ExternalDependencyInstrumentingArtifactTransform Transforming noexception-1.7.1.jar (com.machinezoo.noexception:noexception:1.7.1) with MergeInstrumentationAnalysisTransform Transforming slf4j-simple-1.7.30.jar (org.slf4j:slf4j-simple:1.7.30) with InstrumentationAnalysisTransform Transforming slf4j-simple-1.7.30.jar (org.slf4j:slf4j-simple:1.7.30) with MergeInstrumentationAnalysisTransform Transforming slf4j-api-1.7.30.jar (org.slf4j:slf4j-api:1.7.30) with InstrumentationAnalysisTransform Transforming noexception-1.7.1.jar (com.machinezoo.noexception:noexception:1.7.1) with ExternalDependencyInstrumentingArtifactTransform Transforming slf4j-api-1.7.30.jar (org.slf4j:slf4j-api:1.7.30) with MergeInstrumentationAnalysisTransform Transforming slf4j-simple-1.7.30.jar (org.slf4j:slf4j-simple:1.7.30) with ExternalDependencyInstrumentingArtifactTransform Transforming slf4j-api-1.7.30.jar (org.slf4j:slf4j-api:1.7.30) with ExternalDependencyInstrumentingArtifactTransform Java: 17.0.6, JVM: 17.0.6+10 (Eclipse Adoptium), Arch: amd64 Downloading net.minecraftforge:forge:1.20.1-47.3.0:userdev Downloading net.minecraftforge:forge:1.20.1-47.3.0:universal@jar Downloading net.minecraftforge:forge:1.20.1-47.3.0:sources@jar Downloading de.oceanlabs.mcp:mcp_config:1.20.1-20230612.114412@zip Downloading de.oceanlabs.mcp:mcp_config:1.20.1@zip Downloading de.oceanlabs.mcp:mcp_config:1.20.1@zip Creating reobfuscation task for JarJar task: jarJar All projects evaluated. The runtimeClasspathCopy configuration has been deprecated for dependency declaration. This will fail with an error in Gradle 9.0. Please use another configuration instead. For more information, please refer to https://docs.gradle.org/8.8/userguide/declaring_dependencies.html#sec:deprecated-configurations in the Gradle documentation. at org.gradle.internal.deprecation.DeprecatableConfiguration.maybeEmitDeclarationDeprecation(DeprecatableConfiguration.java:92) at org.gradle.api.internal.artifacts.DefaultDependencySet.add(DefaultDependencySet.java:64) at org.gradle.api.internal.artifacts.DefaultDependencySet.add(DefaultDependencySet.java:35) at org.gradle.api.internal.artifacts.configurations.DefaultConfiguration.createCopy(DefaultConfiguration.java:1253) at org.gradle.api.internal.artifacts.configurations.DefaultConfiguration.copyRecursive(DefaultConfiguration.java:1183) at net.minecraftforge.gradle.common.util.runs.RunConfigGenerator.getArtifactFiles(RunConfigGenerator.java:205) at net.minecraftforge.gradle.common.util.runs.RunConfigGenerator.getRuntimeClasspathArtifacts(RunConfigGenerator.java:220) at net.minecraftforge.gradle.common.util.runs.RunConfigGenerator.lambda$createRunTask$21(RunConfigGenerator.java:240) at org.gradle.api.internal.DefaultMutationGuard$1.execute(DefaultMutationGuard.java:45) at org.gradle.api.internal.DefaultMutationGuard$1.execute(DefaultMutationGuard.java:45) at org.gradle.internal.code.DefaultUserCodeApplicationContext$CurrentApplication$1.execute(DefaultUserCodeApplicationContext.java:123) at org.gradle.api.internal.DefaultCollectionCallbackActionDecorator$BuildOperationEmittingAction$1.run(DefaultCollectionCallbackActionDecorator.java:110) at org.gradle.internal.operations.DefaultBuildOperationRunner$1.execute(DefaultBuildOperationRunner.java:29) at org.gradle.internal.operations.DefaultBuildOperationRunner$1.execute(DefaultBuildOperationRunner.java:26) at org.gradle.internal.operations.DefaultBuildOperationRunner$2.execute(DefaultBuildOperationRunner.java:66) at org.gradle.internal.operations.DefaultBuildOperationRunner$2.execute(DefaultBuildOperationRunner.java:59) at org.gradle.internal.operations.DefaultBuildOperationRunner.execute(DefaultBuildOperationRunner.java:166) at org.gradle.internal.operations.DefaultBuildOperationRunner.execute(DefaultBuildOperationRunner.java:59) at org.gradle.internal.operations.DefaultBuildOperationRunner.run(DefaultBuildOperationRunner.java:47) at org.gradle.api.internal.DefaultCollectionCallbackActionDecorator$BuildOperationEmittingAction.execute(DefaultCollectionCallbackActionDecorator.java:107) at org.gradle.internal.ImmutableActionSet$SetWithManyActions.execute(ImmutableActionSet.java:329) at org.gradle.api.internal.DefaultDomainObjectCollection.doAdd(DefaultDomainObjectCollection.java:262) at org.gradle.api.internal.DefaultNamedDomainObjectCollection.doAdd(DefaultNamedDomainObjectCollection.java:125) at org.gradle.api.internal.DefaultDomainObjectCollection.add(DefaultDomainObjectCollection.java:256) at org.gradle.api.internal.DefaultNamedDomainObjectCollection$AbstractDomainObjectCreatingProvider.tryCreate(DefaultNamedDomainObjectCollection.java:1011) at org.gradle.api.internal.tasks.DefaultTaskContainer$TaskCreatingProvider.access$1401(DefaultTaskContainer.java:656) at org.gradle.api.internal.tasks.DefaultTaskContainer$TaskCreatingProvider$1.run(DefaultTaskContainer.java:682) at org.gradle.internal.operations.DefaultBuildOperationRunner$1.execute(DefaultBuildOperationRunner.java:29) at org.gradle.internal.operations.DefaultBuildOperationRunner$1.execute(DefaultBuildOperationRunner.java:26) at org.gradle.internal.operations.DefaultBuildOperationRunner$2.execute(DefaultBuildOperationRunner.java:66) at org.gradle.internal.operations.DefaultBuildOperationRunner$2.execute(DefaultBuildOperationRunner.java:59) at org.gradle.internal.operations.DefaultBuildOperationRunner.execute(DefaultBuildOperationRunner.java:166) at org.gradle.internal.operations.DefaultBuildOperationRunner.execute(DefaultBuildOperationRunner.java:59) at org.gradle.internal.operations.DefaultBuildOperationRunner.run(DefaultBuildOperationRunner.java:47) at org.gradle.api.internal.tasks.DefaultTaskContainer$TaskCreatingProvider.tryCreate(DefaultTaskContainer.java:678) at org.gradle.api.internal.DefaultNamedDomainObjectCollection$AbstractDomainObjectCreatingProvider.calculateOwnValue(DefaultNamedDomainObjectCollection.java:991) at org.gradle.api.internal.provider.AbstractMinimalProvider.getOrNull(AbstractMinimalProvider.java:105) at org.gradle.api.internal.DefaultNamedDomainObjectCollection.findByName(DefaultNamedDomainObjectCollection.java:320) at org.gradle.api.internal.tasks.DefaultTaskContainer.findByName(DefaultTaskContainer.java:560) at org.gradle.api.internal.tasks.DefaultTaskContainer.findByName(DefaultTaskContainer.java:77) at org.gradle.api.internal.DefaultNamedDomainObjectCollection.getByName(DefaultNamedDomainObjectCollection.java:356) at org.gradle.api.internal.tasks.DefaultTaskCollection.getByName(DefaultTaskCollection.java:47) at org.gradle.execution.TaskNameResolver.getExistingTask(TaskNameResolver.java:116) at org.gradle.execution.TaskNameResolver.access$000(TaskNameResolver.java:34) at org.gradle.execution.TaskNameResolver$MultiProjectTaskSelectionResult.collect(TaskNameResolver.java:179) at org.gradle.execution.TaskNameResolver$MultiProjectTaskSelectionResult.collectTasks(TaskNameResolver.java:171) at org.gradle.execution.TaskNameResolver.selectWithName(TaskNameResolver.java:57) at org.gradle.execution.DefaultTaskSelector.getSelection(DefaultTaskSelector.java:76) at org.gradle.execution.selection.DefaultBuildTaskSelector.resolveTaskName(DefaultBuildTaskSelector.java:98) at org.gradle.execution.commandline.CommandLineTaskParser.parseTasks(CommandLineTaskParser.java:49) at org.gradle.execution.TaskNameResolvingBuildTaskScheduler.scheduleRequestedTasks(TaskNameResolvingBuildTaskScheduler.java:51) at org.gradle.execution.DefaultTasksBuildTaskScheduler.scheduleRequestedTasks(DefaultTasksBuildTaskScheduler.java:72) at org.gradle.initialization.DefaultTaskExecutionPreparer.lambda$scheduleRequestedTasks$0(DefaultTaskExecutionPreparer.java:46) at org.gradle.internal.Factories$1.create(Factories.java:31) at org.gradle.internal.work.DefaultWorkerLeaseService.withReplacedLocks(DefaultWorkerLeaseService.java:360) at org.gradle.api.internal.project.DefaultProjectStateRegistry$DefaultBuildProjectRegistry.withMutableStateOfAllProjects(DefaultProjectStateRegistry.java:240) at org.gradle.api.internal.project.DefaultProjectStateRegistry$DefaultBuildProjectRegistry.withMutableStateOfAllProjects(DefaultProjectStateRegistry.java:233) at org.gradle.initialization.DefaultTaskExecutionPreparer.scheduleRequestedTasks(DefaultTaskExecutionPreparer.java:45) at org.gradle.initialization.VintageBuildModelController.lambda$scheduleRequestedTasks$0(VintageBuildModelController.java:76) at org.gradle.internal.model.StateTransitionController.lambda$inState$1(StateTransitionController.java:99) at org.gradle.internal.model.StateTransitionController.lambda$inState$2(StateTransitionController.java:114) at org.gradle.internal.work.DefaultSynchronizer.withLock(DefaultSynchronizer.java:44) at org.gradle.internal.model.StateTransitionController.inState(StateTransitionController.java:110) at org.gradle.internal.model.StateTransitionController.inState(StateTransitionController.java:98) at org.gradle.initialization.VintageBuildModelController.scheduleRequestedTasks(VintageBuildModelController.java:76) at org.gradle.internal.build.DefaultBuildLifecycleController$DefaultWorkGraphBuilder.addRequestedTasks(DefaultBuildLifecycleController.java:404) at org.gradle.internal.buildtree.DefaultBuildTreeWorkPreparer.lambda$scheduleRequestedTasks$0(DefaultBuildTreeWorkPreparer.java:41) at org.gradle.internal.build.DefaultBuildLifecycleController.lambda$populateWorkGraph$7(DefaultBuildLifecycleController.java:189) at org.gradle.internal.build.DefaultBuildWorkPreparer.populateWorkGraph(DefaultBuildWorkPreparer.java:42) at org.gradle.internal.build.BuildOperationFiringBuildWorkPreparer$PopulateWorkGraph.populateTaskGraph(BuildOperationFiringBuildWorkPreparer.java:106) at org.gradle.internal.build.BuildOperationFiringBuildWorkPreparer$PopulateWorkGraph.run(BuildOperationFiringBuildWorkPreparer.java:92) at org.gradle.internal.operations.DefaultBuildOperationRunner$1.execute(DefaultBuildOperationRunner.java:29) at org.gradle.internal.operations.DefaultBuildOperationRunner$1.execute(DefaultBuildOperationRunner.java:26) at org.gradle.internal.operations.DefaultBuildOperationRunner$2.execute(DefaultBuildOperationRunner.java:66) at org.gradle.internal.operations.DefaultBuildOperationRunner$2.execute(DefaultBuildOperationRunner.java:59) at org.gradle.internal.operations.DefaultBuildOperationRunner.execute(DefaultBuildOperationRunner.java:166) at org.gradle.internal.operations.DefaultBuildOperationRunner.execute(DefaultBuildOperationRunner.java:59) at org.gradle.internal.operations.DefaultBuildOperationRunner.run(DefaultBuildOperationRunner.java:47) at org.gradle.internal.build.BuildOperationFiringBuildWorkPreparer.populateWorkGraph(BuildOperationFiringBuildWorkPreparer.java:67) at org.gradle.internal.build.DefaultBuildLifecycleController.lambda$populateWorkGraph$8(DefaultBuildLifecycleController.java:189) at org.gradle.internal.model.StateTransitionController.lambda$inState$1(StateTransitionController.java:99) at org.gradle.internal.model.StateTransitionController.lambda$inState$2(StateTransitionController.java:114) at org.gradle.internal.work.DefaultSynchronizer.withLock(DefaultSynchronizer.java:44) at org.gradle.internal.model.StateTransitionController.inState(StateTransitionController.java:110) at org.gradle.internal.model.StateTransitionController.inState(StateTransitionController.java:98) at org.gradle.internal.build.DefaultBuildLifecycleController.populateWorkGraph(DefaultBuildLifecycleController.java:189) at org.gradle.internal.build.DefaultBuildWorkGraphController$DefaultBuildWorkGraph.populateWorkGraph(DefaultBuildWorkGraphController.java:169) at org.gradle.composite.internal.DefaultBuildController.populateWorkGraph(DefaultBuildController.java:76) at org.gradle.composite.internal.DefaultIncludedBuildTaskGraph$DefaultBuildTreeWorkGraphBuilder.withWorkGraph(DefaultIncludedBuildTaskGraph.java:153) at org.gradle.internal.buildtree.DefaultBuildTreeWorkPreparer.lambda$scheduleRequestedTasks$1(DefaultBuildTreeWorkPreparer.java:41) at org.gradle.composite.internal.DefaultIncludedBuildTaskGraph$DefaultBuildTreeWorkGraph$1.run(DefaultIncludedBuildTaskGraph.java:209) at org.gradle.internal.operations.DefaultBuildOperationRunner$1.execute(DefaultBuildOperationRunner.java:29) at org.gradle.internal.operations.DefaultBuildOperationRunner$1.execute(DefaultBuildOperationRunner.java:26) at org.gradle.internal.operations.DefaultBuildOperationRunner$2.execute(DefaultBuildOperationRunner.java:66) at org.gradle.internal.operations.DefaultBuildOperationRunner$2.execute(DefaultBuildOperationRunner.java:59) at org.gradle.internal.operations.DefaultBuildOperationRunner.execute(DefaultBuildOperationRunner.java:166) at org.gradle.internal.operations.DefaultBuildOperationRunner.execute(DefaultBuildOperationRunner.java:59) at org.gradle.internal.operations.DefaultBuildOperationRunner.run(DefaultBuildOperationRunner.java:47) at org.gradle.composite.internal.DefaultIncludedBuildTaskGraph$DefaultBuildTreeWorkGraph.scheduleWork(DefaultIncludedBuildTaskGraph.java:204) at org.gradle.internal.buildtree.DefaultBuildTreeWorkPreparer.scheduleRequestedTasks(DefaultBuildTreeWorkPreparer.java:37) at org.gradle.configurationcache.VintageBuildTreeWorkController$scheduleAndRunRequestedTasks$1.apply(VintageBuildTreeWorkController.kt:36) at org.gradle.configurationcache.VintageBuildTreeWorkController$scheduleAndRunRequestedTasks$1.apply(VintageBuildTreeWorkController.kt:35) at org.gradle.composite.internal.DefaultIncludedBuildTaskGraph.withNewWorkGraph(DefaultIncludedBuildTaskGraph.java:112) at org.gradle.configurationcache.VintageBuildTreeWorkController.scheduleAndRunRequestedTasks(VintageBuildTreeWorkController.kt:35) at org.gradle.internal.buildtree.DefaultBuildTreeLifecycleController.lambda$scheduleAndRunTasks$1(DefaultBuildTreeLifecycleController.java:77) at org.gradle.internal.buildtree.DefaultBuildTreeLifecycleController.lambda$runBuild$4(DefaultBuildTreeLifecycleController.java:120) at org.gradle.internal.model.StateTransitionController.lambda$transition$6(StateTransitionController.java:169) at org.gradle.internal.model.StateTransitionController.doTransition(StateTransitionController.java:266) at org.gradle.internal.model.StateTransitionController.lambda$transition$7(StateTransitionController.java:169) at org.gradle.internal.work.DefaultSynchronizer.withLock(DefaultSynchronizer.java:44) at org.gradle.internal.model.StateTransitionController.transition(StateTransitionController.java:169) at org.gradle.internal.buildtree.DefaultBuildTreeLifecycleController.runBuild(DefaultBuildTreeLifecycleController.java:117) at org.gradle.internal.buildtree.DefaultBuildTreeLifecycleController.scheduleAndRunTasks(DefaultBuildTreeLifecycleController.java:77) at org.gradle.internal.buildtree.DefaultBuildTreeLifecycleController.scheduleAndRunTasks(DefaultBuildTreeLifecycleController.java:72) at org.gradle.tooling.internal.provider.runner.BuildModelActionRunner.run(BuildModelActionRunner.java:53) at org.gradle.launcher.exec.ChainingBuildActionRunner.run(ChainingBuildActionRunner.java:35) at org.gradle.internal.buildtree.ProblemReportingBuildActionRunner.run(ProblemReportingBuildActionRunner.java:49) at org.gradle.launcher.exec.BuildOutcomeReportingBuildActionRunner.run(BuildOutcomeReportingBuildActionRunner.java:65) at org.gradle.tooling.internal.provider.FileSystemWatchingBuildActionRunner.run(FileSystemWatchingBuildActionRunner.java:140) at org.gradle.launcher.exec.BuildCompletionNotifyingBuildActionRunner.run(BuildCompletionNotifyingBuildActionRunner.java:41) at org.gradle.launcher.exec.RootBuildLifecycleBuildActionExecutor.lambda$execute$0(RootBuildLifecycleBuildActionExecutor.java:40) at org.gradle.composite.internal.DefaultRootBuildState.run(DefaultRootBuildState.java:123) at org.gradle.launcher.exec.RootBuildLifecycleBuildActionExecutor.execute(RootBuildLifecycleBuildActionExecutor.java:40) at org.gradle.internal.buildtree.InitDeprecationLoggingActionExecutor.execute(InitDeprecationLoggingActionExecutor.java:66) at org.gradle.internal.buildtree.InitProblems.execute(InitProblems.java:36) at org.gradle.internal.buildtree.DefaultBuildTreeContext.execute(DefaultBuildTreeContext.java:40) at org.gradle.launcher.exec.BuildTreeLifecycleBuildActionExecutor.lambda$execute$0(BuildTreeLifecycleBuildActionExecutor.java:71) at org.gradle.internal.buildtree.BuildTreeState.run(BuildTreeState.java:60) at org.gradle.launcher.exec.BuildTreeLifecycleBuildActionExecutor.execute(BuildTreeLifecycleBuildActionExecutor.java:71) at org.gradle.launcher.exec.RunAsBuildOperationBuildActionExecutor$3.call(RunAsBuildOperationBuildActionExecutor.java:61) at org.gradle.launcher.exec.RunAsBuildOperationBuildActionExecutor$3.call(RunAsBuildOperationBuildActionExecutor.java:57) at org.gradle.internal.operations.DefaultBuildOperationRunner$CallableBuildOperationWorker.execute(DefaultBuildOperationRunner.java:209) at org.gradle.internal.operations.DefaultBuildOperationRunner$CallableBuildOperationWorker.execute(DefaultBuildOperationRunner.java:204) at org.gradle.internal.operations.DefaultBuildOperationRunner$2.execute(DefaultBuildOperationRunner.java:66) at org.gradle.internal.operations.DefaultBuildOperationRunner$2.execute(DefaultBuildOperationRunner.java:59) at org.gradle.internal.operations.DefaultBuildOperationRunner.execute(DefaultBuildOperationRunner.java:166) at org.gradle.internal.operations.DefaultBuildOperationRunner.execute(DefaultBuildOperationRunner.java:59) at org.gradle.internal.operations.DefaultBuildOperationRunner.call(DefaultBuildOperationRunner.java:53) at org.gradle.launcher.exec.RunAsBuildOperationBuildActionExecutor.execute(RunAsBuildOperationBuildActionExecutor.java:57) at org.gradle.launcher.exec.RunAsWorkerThreadBuildActionExecutor.lambda$execute$0(RunAsWorkerThreadBuildActionExecutor.java:36) at org.gradle.internal.work.DefaultWorkerLeaseService.withLocks(DefaultWorkerLeaseService.java:264) at org.gradle.internal.work.DefaultWorkerLeaseService.runAsWorkerThread(DefaultWorkerLeaseService.java:128) at org.gradle.launcher.exec.RunAsWorkerThreadBuildActionExecutor.execute(RunAsWorkerThreadBuildActionExecutor.java:36) at org.gradle.tooling.internal.provider.continuous.ContinuousBuildActionExecutor.execute(ContinuousBuildActionExecutor.java:110) at org.gradle.tooling.internal.provider.SubscribableBuildActionExecutor.execute(SubscribableBuildActionExecutor.java:64) at org.gradle.internal.session.DefaultBuildSessionContext.execute(DefaultBuildSessionContext.java:46) at org.gradle.tooling.internal.provider.BuildSessionLifecycleBuildActionExecuter$ActionImpl.apply(BuildSessionLifecycleBuildActionExecuter.java:92) at org.gradle.tooling.internal.provider.BuildSessionLifecycleBuildActionExecuter$ActionImpl.apply(BuildSessionLifecycleBuildActionExecuter.java:80) at org.gradle.internal.session.BuildSessionState.run(BuildSessionState.java:71) at org.gradle.tooling.internal.provider.BuildSessionLifecycleBuildActionExecuter.execute(BuildSessionLifecycleBuildActionExecuter.java:62) at org.gradle.tooling.internal.provider.BuildSessionLifecycleBuildActionExecuter.execute(BuildSessionLifecycleBuildActionExecuter.java:41) at org.gradle.tooling.internal.provider.StartParamsValidatingActionExecuter.execute(StartParamsValidatingActionExecuter.java:64) at org.gradle.tooling.internal.provider.StartParamsValidatingActionExecuter.execute(StartParamsValidatingActionExecuter.java:32) at org.gradle.tooling.internal.provider.SessionFailureReportingActionExecuter.execute(SessionFailureReportingActionExecuter.java:51) at org.gradle.tooling.internal.provider.SessionFailureReportingActionExecuter.execute(SessionFailureReportingActionExecuter.java:39) at org.gradle.tooling.internal.provider.SetupLoggingActionExecuter.execute(SetupLoggingActionExecuter.java:47) at org.gradle.tooling.internal.provider.SetupLoggingActionExecuter.execute(SetupLoggingActionExecuter.java:31) at org.gradle.launcher.daemon.server.exec.ExecuteBuild.doBuild(ExecuteBuild.java:65) at org.gradle.launcher.daemon.server.exec.BuildCommandOnly.execute(BuildCommandOnly.java:37) at org.gradle.launcher.daemon.server.api.DaemonCommandExecution.proceed(DaemonCommandExecution.java:104) at org.gradle.launcher.daemon.server.exec.WatchForDisconnection.execute(WatchForDisconnection.java:39) at org.gradle.launcher.daemon.server.api.DaemonCommandExecution.proceed(DaemonCommandExecution.java:104) at org.gradle.launcher.daemon.server.exec.ResetDeprecationLogger.execute(ResetDeprecationLogger.java:29) at org.gradle.launcher.daemon.server.api.DaemonCommandExecution.proceed(DaemonCommandExecution.java:104) at org.gradle.launcher.daemon.server.exec.RequestStopIfSingleUsedDaemon.execute(RequestStopIfSingleUsedDaemon.java:35) at org.gradle.launcher.daemon.server.api.DaemonCommandExecution.proceed(DaemonCommandExecution.java:104) at org.gradle.launcher.daemon.server.exec.ForwardClientInput.lambda$execute$0(ForwardClientInput.java:39) at org.gradle.launcher.daemon.server.clientinput.ClientInputForwarder.forwardInput(ClientInputForwarder.java:88) at org.gradle.launcher.daemon.server.exec.ForwardClientInput.execute(ForwardClientInput.java:36) at org.gradle.launcher.daemon.server.api.DaemonCommandExecution.proceed(DaemonCommandExecution.java:104) at org.gradle.launcher.daemon.server.exec.LogAndCheckHealth.execute(LogAndCheckHealth.java:64) at org.gradle.launcher.daemon.server.api.DaemonCommandExecution.proceed(DaemonCommandExecution.java:104) at org.gradle.launcher.daemon.server.exec.LogToClient.doBuild(LogToClient.java:63) at org.gradle.launcher.daemon.server.exec.BuildCommandOnly.execute(BuildCommandOnly.java:37) at org.gradle.launcher.daemon.server.api.DaemonCommandExecution.proceed(DaemonCommandExecution.java:104) at org.gradle.launcher.daemon.server.exec.EstablishBuildEnvironment.doBuild(EstablishBuildEnvironment.java:84) at org.gradle.launcher.daemon.server.exec.BuildCommandOnly.execute(BuildCommandOnly.java:37) at org.gradle.launcher.daemon.server.api.DaemonCommandExecution.proceed(DaemonCommandExecution.java:104) at org.gradle.launcher.daemon.server.exec.StartBuildOrRespondWithBusy$1.run(StartBuildOrRespondWithBusy.java:52) at org.gradle.launcher.daemon.server.DaemonStateCoordinator$1.run(DaemonStateCoordinator.java:297) at org.gradle.internal.concurrent.ExecutorPolicy$CatchAndRecordFailures.onExecute(ExecutorPolicy.java:64) at org.gradle.internal.concurrent.AbstractManagedExecutor$1.run(AbstractManagedExecutor.java:47) at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) at java.base/java.lang.Thread.run(Thread.java:833) Task name matched 'runClient' Selected primary task 'runClient' from project : Tasks to be executed: [task ':compileJava', task ':processResources', task ':classes', task ':downloadMcpConfig', task ':extractSrg', task ':createSrgToMcp', task ':downloadMCMeta', task ':downloadAssets', task ':extractNatives', task ':makeSrcDirs', task ':prepareRuns', task ':prepareRunClient', task ':prepareRunClientCompile', task ':runClient'] Tasks that were excluded: [] Resolve mutations for :compileJava (Thread[Execution worker,5,main]) started. :compileJava (Thread[Execution worker Thread 12,5,main]) started. > Task :compileJava UP-TO-DATE The ResolvedConfiguration.getFirstLevelModuleDependencies(Spec) method has been deprecated. This is scheduled to be removed in Gradle 9.0. Use getFirstLevelModuleDependencies() instead. Consult the upgrading guide for further information: https://docs.gradle.org/8.8/userguide/upgrading_version_8.html#deprecate_filtered_configuration_file_and_filecollection_methods at org.gradle.api.internal.artifacts.ivyservice.DefaultResolvedConfiguration.getFirstLevelModuleDependencies(DefaultResolvedConfiguration.java:110) at net.minecraftforge.gradle.userdev.util.DeobfuscatingRepo.findArtifactFile(DeobfuscatingRepo.java:112) at net.minecraftforge.gradle.userdev.util.DeobfuscatingRepo.findPom(DeobfuscatingRepo.java:90) at net.minecraftforge.gradle.userdev.util.DeobfuscatingRepo.findFile(DeobfuscatingRepo.java:76) at net.minecraftforge.gradle.common.util.BaseRepo.getArtifact(BaseRepo.java:72) at net.minecraftforge.gradle.common.util.BaseRepo.getArtifact(BaseRepo.java:29) at net.minecraftforge.gradle.common.util.BaseRepo$Builder.lambda$null$0(BaseRepo.java:125) at java.base/java.util.stream.ReferencePipeline$3$1.accept(ReferencePipeline.java:197) at java.base/java.util.ArrayList$ArrayListSpliterator.tryAdvance(ArrayList.java:1602) at java.base/java.util.stream.ReferencePipeline.forEachWithCancel(ReferencePipeline.java:129) at java.base/java.util.stream.AbstractPipeline.copyIntoWithCancel(AbstractPipeline.java:527) at java.base/java.util.stream.AbstractPipeline.copyInto(AbstractPipeline.java:513) at java.base/java.util.stream.AbstractPipeline.wrapAndCopyInto(AbstractPipeline.java:499) at java.base/java.util.stream.FindOps$FindOp.evaluateSequential(FindOps.java:150) at java.base/java.util.stream.AbstractPipeline.evaluate(AbstractPipeline.java:234) at java.base/java.util.stream.ReferencePipeline.findFirst(ReferencePipeline.java:647) at net.minecraftforge.gradle.common.util.BaseRepo$Builder.lambda$attach$2(BaseRepo.java:127) at net.minecraftforge.artifactural.base.repository.ArtifactProviderBuilder$Complete.getArtifact(ArtifactProviderBuilder.java:92) at net.minecraftforge.artifactural.base.repository.SimpleRepository.getArtifact(SimpleRepository.java:41) at net.minecraftforge.artifactural.gradle.GradleRepositoryAdapter$GeneratingFileResourceRepository.findArtifact(GradleRepositoryAdapter.java:373) at net.minecraftforge.artifactural.gradle.GradleRepositoryAdapter$GeneratingFileResourceRepository.resource(GradleRepositoryAdapter.java:352) at net.minecraftforge.artifactural.gradle.GradleRepositoryAdapter$GeneratingFileResourceRepository.resource(GradleRepositoryAdapter.java:346) at org.gradle.internal.resource.transport.file.FileTransport$FileCacheAwareExternalResourceAccessor.getResource(FileTransport.java:74) at org.gradle.api.internal.artifacts.repositories.resolver.DefaultExternalResourceArtifactResolver.downloadByCoords(DefaultExternalResourceArtifactResolver.java:149) at org.gradle.api.internal.artifacts.repositories.resolver.DefaultExternalResourceArtifactResolver.downloadStaticResource(DefaultExternalResourceArtifactResolver.java:94) at org.gradle.api.internal.artifacts.repositories.resolver.DefaultExternalResourceArtifactResolver.resolveArtifact(DefaultExternalResourceArtifactResolver.java:60) at org.gradle.api.internal.artifacts.repositories.metadata.AbstractRepositoryMetadataSource.parseMetaDataFromArtifact(AbstractRepositoryMetadataSource.java:79) at org.gradle.api.internal.artifacts.repositories.metadata.AbstractRepositoryMetadataSource.create(AbstractRepositoryMetadataSource.java:69) at org.gradle.api.internal.artifacts.repositories.metadata.DefaultMavenPomMetadataSource.create(DefaultMavenPomMetadataSource.java:40) at org.gradle.api.internal.artifacts.repositories.metadata.RedirectingGradleMetadataModuleMetadataSource.create(RedirectingGradleMetadataModuleMetadataSource.java:52) at org.gradle.api.internal.artifacts.repositories.resolver.ExternalResourceResolver.resolveStaticDependency(ExternalResourceResolver.java:234) at org.gradle.api.internal.artifacts.repositories.resolver.MavenResolver.doResolveComponentMetaData(MavenResolver.java:113) at org.gradle.api.internal.artifacts.repositories.resolver.ExternalResourceResolver$RemoteRepositoryAccess.resolveComponentMetaData(ExternalResourceResolver.java:415) at net.minecraftforge.artifactural.gradle.GradleRepositoryAdapter$1$1.resolveComponentMetaData(GradleRepositoryAdapter.java:204) at org.gradle.api.internal.artifacts.ivyservice.ivyresolve.CachingModuleComponentRepository$ResolveAndCacheRepositoryAccess.resolveComponentMetaDataAndCache(CachingModuleComponentRepository.java:396) at org.gradle.api.internal.artifacts.ivyservice.ivyresolve.CachingModuleComponentRepository$ResolveAndCacheRepositoryAccess.resolveComponentMetaData(CachingModuleComponentRepository.java:390) at org.gradle.api.internal.artifacts.ivyservice.ivyresolve.LocalModuleComponentRepository$LocalAccess.resolveComponentMetaData(LocalModuleComponentRepository.java:75) at org.gradle.api.internal.artifacts.ivyservice.ivyresolve.ErrorHandlingModuleComponentRepository$ErrorHandlingModuleComponentRepositoryAccess.lambda$resolveComponentMetaData$5(ErrorHandlingModuleComponentRepository.java:150) at org.gradle.api.internal.artifacts.ivyservice.ivyresolve.ErrorHandlingModuleComponentRepository$ErrorHandlingModuleComponentRepositoryAccess.lambda$tryResolveAndMaybeDisable$15(ErrorHandlingModuleComponentRepository.java:220) at org.gradle.api.internal.artifacts.ivyservice.ivyresolve.ErrorHandlingModuleComponentRepository$ErrorHandlingModuleComponentRepositoryAccess.tryResolveAndMaybeDisable(ErrorHandlingModuleComponentRepository.java:236) at org.gradle.api.internal.artifacts.ivyservice.ivyresolve.ErrorHandlingModuleComponentRepository$ErrorHandlingModuleComponentRepositoryAccess.tryResolveAndMaybeDisable(ErrorHandlingModuleComponentRepository.java:219) at org.gradle.api.internal.artifacts.ivyservice.ivyresolve.ErrorHandlingModuleComponentRepository$ErrorHandlingModuleComponentRepositoryAccess.performOperationWithRetries(ErrorHandlingModuleComponentRepository.java:203) at org.gradle.api.internal.artifacts.ivyservice.ivyresolve.ErrorHandlingModuleComponentRepository$ErrorHandlingModuleComponentRepositoryAccess.resolveComponentMetaData(ErrorHandlingModuleComponentRepository.java:149) at org.gradle.api.internal.artifacts.ivyservice.ivyresolve.FilteredModuleComponentRepository$FilteringAccess.lambda$resolveComponentMetaData$2(FilteredModuleComponentRepository.java:106) at org.gradle.api.internal.artifacts.ivyservice.ivyresolve.FilteredModuleComponentRepository$FilteringAccess.whenModulePresent(FilteredModuleComponentRepository.java:133) at org.gradle.api.internal.artifacts.ivyservice.ivyresolve.FilteredModuleComponentRepository$FilteringAccess.resolveComponentMetaData(FilteredModuleComponentRepository.java:105) at org.gradle.api.internal.artifacts.ivyservice.ivyresolve.ComponentMetaDataResolveState.process(ComponentMetaDataResolveState.java:70) at org.gradle.api.internal.artifacts.ivyservice.ivyresolve.ComponentMetaDataResolveState.resolve(ComponentMetaDataResolveState.java:49) at org.gradle.api.internal.artifacts.ivyservice.ivyresolve.RepositoryChainComponentMetaDataResolver.findBestMatch(RepositoryChainComponentMetaDataResolver.java:167) at org.gradle.api.internal.artifacts.ivyservice.ivyresolve.RepositoryChainComponentMetaDataResolver.findBestMatch(RepositoryChainComponentMetaDataResolver.java:147) at org.gradle.api.internal.artifacts.ivyservice.ivyresolve.RepositoryChainComponentMetaDataResolver.resolveModule(RepositoryChainComponentMetaDataResolver.java:117) at org.gradle.api.internal.artifacts.ivyservice.ivyresolve.RepositoryChainComponentMetaDataResolver.lambda$createValueContainerFor$1(RepositoryChainComponentMetaDataResolver.java:87) at org.gradle.internal.model.CalculatedValueContainerFactory$SupplierBackedCalculator.calculateValue(CalculatedValueContainerFactory.java:74) at org.gradle.internal.model.CalculatedValueContainer$CalculationState.lambda$attachValue$0(CalculatedValueContainer.java:229) at org.gradle.internal.Try.ofFailable(Try.java:41) at org.gradle.internal.model.CalculatedValueContainer$CalculationState.attachValue(CalculatedValueContainer.java:224) at org.gradle.internal.model.CalculatedValueContainer.finalizeIfNotAlready(CalculatedValueContainer.java:197) at org.gradle.internal.model.CalculatedValueContainer.finalizeIfNotAlready(CalculatedValueContainer.java:188) at org.gradle.api.internal.artifacts.ivyservice.ivyresolve.RepositoryChainComponentMetaDataResolver.resolve(RepositoryChainComponentMetaDataResolver.java:78) at org.gradle.api.internal.artifacts.ivyservice.resolveengine.ComponentResolversChain$ComponentMetaDataResolverChain.resolve(ComponentResolversChain.java:90) at org.gradle.api.internal.artifacts.ivyservice.clientmodule.ClientModuleResolver.resolve(ClientModuleResolver.java:70) at org.gradle.api.internal.artifacts.ivyservice.resolveengine.graph.builder.ComponentState.resolve(ComponentState.java:227) at org.gradle.api.internal.artifacts.ivyservice.resolveengine.graph.builder.ComponentState.getResolveStateOrNull(ComponentState.java:171) at org.gradle.api.internal.artifacts.ivyservice.resolveengine.graph.builder.EdgeState.calculateTargetConfigurations(EdgeState.java:218) at org.gradle.api.internal.artifacts.ivyservice.resolveengine.graph.builder.EdgeState.attachToTargetConfigurations(EdgeState.java:147) at org.gradle.api.internal.artifacts.ivyservice.resolveengine.graph.builder.DependencyGraphBuilder.attachToTargetRevisionsSerially(DependencyGraphBuilder.java:367) at org.gradle.api.internal.artifacts.ivyservice.resolveengine.graph.builder.DependencyGraphBuilder.resolveEdges(DependencyGraphBuilder.java:259) at org.gradle.api.internal.artifacts.ivyservice.resolveengine.graph.builder.DependencyGraphBuilder.traverseGraph(DependencyGraphBuilder.java:194) at org.gradle.api.internal.artifacts.ivyservice.resolveengine.graph.builder.DependencyGraphBuilder.resolve(DependencyGraphBuilder.java:164) at org.gradle.api.internal.artifacts.ivyservice.resolveengine.DependencyGraphResolver.resolve(DependencyGraphResolver.java:121) at org.gradle.api.internal.artifacts.ivyservice.DefaultConfigurationResolver.doResolve(DefaultConfigurationResolver.java:392) at org.gradle.api.internal.artifacts.ivyservice.DefaultConfigurationResolver.resolveGraph(DefaultConfigurationResolver.java:287) at org.gradle.api.internal.artifacts.ivyservice.ShortCircuitEmptyConfigurationResolver.resolveGraph(ShortCircuitEmptyConfigurationResolver.java:91) at org.gradle.api.internal.artifacts.configurations.DefaultConfiguration$1.call(DefaultConfiguration.java:757) at org.gradle.api.internal.artifacts.configurations.DefaultConfiguration$1.call(DefaultConfiguration.java:749) at org.gradle.internal.operations.DefaultBuildOperationRunner$CallableBuildOperationWorker.execute(DefaultBuildOperationRunner.java:209) at org.gradle.internal.operations.DefaultBuildOperationRunner$CallableBuildOperationWorker.execute(DefaultBuildOperationRunner.java:204) at org.gradle.internal.operations.DefaultBuildOperationRunner$2.execute(DefaultBuildOperationRunner.java:66) at org.gradle.internal.operations.DefaultBuildOperationRunner$2.execute(DefaultBuildOperationRunner.java:59) at org.gradle.internal.operations.DefaultBuildOperationRunner.execute(DefaultBuildOperationRunner.java:166) at org.gradle.internal.operations.DefaultBuildOperationRunner.execute(DefaultBuildOperationRunner.java:59) at org.gradle.internal.operations.DefaultBuildOperationRunner.call(DefaultBuildOperationRunner.java:53) at org.gradle.api.internal.artifacts.configurations.DefaultConfiguration.resolveGraphInBuildOperation(DefaultConfiguration.java:749) at org.gradle.api.internal.artifacts.configurations.DefaultConfiguration.lambda$resolveExclusivelyIfRequired$7(DefaultConfiguration.java:741) at org.gradle.api.internal.project.DefaultProjectStateRegistry$CalculatedModelValueImpl.update(DefaultProjectStateRegistry.java:505) at org.gradle.api.internal.artifacts.configurations.DefaultConfiguration.resolveExclusivelyIfRequired(DefaultConfiguration.java:736) at org.gradle.api.internal.artifacts.configurations.DefaultConfiguration.resolveGraphIfRequired(DefaultConfiguration.java:729) at org.gradle.api.internal.artifacts.configurations.DefaultConfiguration.access$500(DefaultConfiguration.java:156) at org.gradle.api.internal.artifacts.configurations.DefaultConfiguration$ResolverResultsResolutionResultProvider.getValue(DefaultConfiguration.java:703) at org.gradle.api.internal.artifacts.configurations.DefaultConfiguration$ResolverResultsResolutionResultProvider.getValue(DefaultConfiguration.java:664) at org.gradle.api.internal.artifacts.configurations.ResolutionResultProvider$1.getValue(ResolutionResultProvider.java:53) at org.gradle.api.internal.artifacts.configurations.ResolutionBackedFileCollection.getSelectedArtifacts(ResolutionBackedFileCollection.java:95) at org.gradle.api.internal.artifacts.configurations.ResolutionBackedFileCollection.visitContents(ResolutionBackedFileCollection.java:73) at org.gradle.api.internal.file.AbstractFileCollection.visitStructure(AbstractFileCollection.java:361) at org.gradle.api.internal.artifacts.configurations.DefaultConfiguration.visitContents(DefaultConfiguration.java:526) at org.gradle.api.internal.file.AbstractFileCollection.visitStructure(AbstractFileCollection.java:361) at org.gradle.api.internal.file.CompositeFileCollection.lambda$visitContents$0(CompositeFileCollection.java:113) at org.gradle.api.internal.file.collections.UnpackingVisitor.add(UnpackingVisitor.java:67) at org.gradle.api.internal.file.collections.UnpackingVisitor.add(UnpackingVisitor.java:92) at org.gradle.api.internal.file.DefaultFileCollectionFactory$ResolvingFileCollection.visitChildren(DefaultFileCollectionFactory.java:285) at org.gradle.api.internal.file.CompositeFileCollection.visitContents(CompositeFileCollection.java:113) at org.gradle.api.internal.file.AbstractFileCollection.visitStructure(AbstractFileCollection.java:361) at org.gradle.api.internal.file.CompositeFileCollection.lambda$visitContents$0(CompositeFileCollection.java:113) at org.gradle.api.internal.tasks.PropertyFileCollection.visitChildren(PropertyFileCollection.java:48) at org.gradle.api.internal.file.CompositeFileCollection.visitContents(CompositeFileCollection.java:113) at org.gradle.api.internal.file.AbstractFileCollection.visitStructure(AbstractFileCollection.java:361) at org.gradle.internal.fingerprint.impl.DefaultFileCollectionSnapshotter.snapshot(DefaultFileCollectionSnapshotter.java:47) at org.gradle.internal.execution.impl.DefaultInputFingerprinter$InputCollectingVisitor.visitInputFileProperty(DefaultInputFingerprinter.java:133) at org.gradle.api.internal.tasks.execution.TaskExecution.visitRegularInputs(TaskExecution.java:324) at org.gradle.internal.execution.impl.DefaultInputFingerprinter.fingerprintInputProperties(DefaultInputFingerprinter.java:63) at org.gradle.internal.execution.steps.AbstractCaptureStateBeforeExecutionStep.captureExecutionStateWithOutputs(AbstractCaptureStateBeforeExecutionStep.java:109) at org.gradle.internal.execution.steps.AbstractCaptureStateBeforeExecutionStep.lambda$captureExecutionState$0(AbstractCaptureStateBeforeExecutionStep.java:74) at org.gradle.internal.execution.steps.BuildOperationStep$1.call(BuildOperationStep.java:37) at org.gradle.internal.operations.DefaultBuildOperationRunner$CallableBuildOperationWorker.execute(DefaultBuildOperationRunner.java:209) at org.gradle.internal.operations.DefaultBuildOperationRunner$CallableBuildOperationWorker.execute(DefaultBuildOperationRunner.java:204) at org.gradle.internal.operations.DefaultBuildOperationRunner$2.execute(DefaultBuildOperationRunner.java:66) at org.gradle.internal.operations.DefaultBuildOperationRunner$2.execute(DefaultBuildOperationRunner.java:59) at org.gradle.internal.operations.DefaultBuildOperationRunner.execute(DefaultBuildOperationRunner.java:166) at org.gradle.internal.operations.DefaultBuildOperationRunner.execute(DefaultBuildOperationRunner.java:59) at org.gradle.internal.operations.DefaultBuildOperationRunner.call(DefaultBuildOperationRunner.java:53) at org.gradle.internal.execution.steps.BuildOperationStep.operation(BuildOperationStep.java:34) at org.gradle.internal.execution.steps.AbstractCaptureStateBeforeExecutionStep.captureExecutionState(AbstractCaptureStateBeforeExecutionStep.java:69) at org.gradle.internal.execution.steps.AbstractCaptureStateBeforeExecutionStep.execute(AbstractCaptureStateBeforeExecutionStep.java:62) at org.gradle.internal.execution.steps.AbstractCaptureStateBeforeExecutionStep.execute(AbstractCaptureStateBeforeExecutionStep.java:43) at org.gradle.internal.execution.steps.AbstractSkipEmptyWorkStep.executeWithNonEmptySources(AbstractSkipEmptyWorkStep.java:125) at org.gradle.internal.execution.steps.AbstractSkipEmptyWorkStep.execute(AbstractSkipEmptyWorkStep.java:61) at org.gradle.internal.execution.steps.AbstractSkipEmptyWorkStep.execute(AbstractSkipEmptyWorkStep.java:36) at org.gradle.internal.execution.steps.legacy.MarkSnapshottingInputsStartedStep.execute(MarkSnapshottingInputsStartedStep.java:38) at org.gradle.internal.execution.steps.LoadPreviousExecutionStateStep.execute(LoadPreviousExecutionStateStep.java:36) at org.gradle.internal.execution.steps.LoadPreviousExecutionStateStep.execute(LoadPreviousExecutionStateStep.java:23) at org.gradle.internal.execution.steps.HandleStaleOutputsStep.execute(HandleStaleOutputsStep.java:75) at org.gradle.internal.execution.steps.HandleStaleOutputsStep.execute(HandleStaleOutputsStep.java:41) at org.gradle.internal.execution.steps.AssignMutableWorkspaceStep.lambda$execute$0(AssignMutableWorkspaceStep.java:35) at org.gradle.api.internal.tasks.execution.TaskExecution$4.withWorkspace(TaskExecution.java:289) at org.gradle.internal.execution.steps.AssignMutableWorkspaceStep.execute(AssignMutableWorkspaceStep.java:31) at org.gradle.internal.execution.steps.AssignMutableWorkspaceStep.execute(AssignMutableWorkspaceStep.java:22) at org.gradle.internal.execution.steps.ChoosePipelineStep.execute(ChoosePipelineStep.java:40) at org.gradle.internal.execution.steps.ChoosePipelineStep.execute(ChoosePipelineStep.java:23) at org.gradle.internal.execution.steps.ExecuteWorkBuildOperationFiringStep.lambda$execute$2(ExecuteWorkBuildOperationFiringStep.java:67) at java.base/java.util.Optional.orElseGet(Optional.java:364) at org.gradle.internal.execution.steps.ExecuteWorkBuildOperationFiringStep.execute(ExecuteWorkBuildOperationFiringStep.java:67) at org.gradle.internal.execution.steps.ExecuteWorkBuildOperationFiringStep.execute(ExecuteWorkBuildOperationFiringStep.java:39) at org.gradle.internal.execution.steps.IdentityCacheStep.execute(IdentityCacheStep.java:46) at org.gradle.internal.execution.steps.IdentityCacheStep.execute(IdentityCacheStep.java:34) at org.gradle.internal.execution.steps.IdentifyStep.execute(IdentifyStep.java:48) at org.gradle.internal.execution.steps.IdentifyStep.execute(IdentifyStep.java:35) at org.gradle.internal.execution.impl.DefaultExecutionEngine$1.execute(DefaultExecutionEngine.java:61) at org.gradle.api.internal.tasks.execution.ExecuteActionsTaskExecuter.executeIfValid(ExecuteActionsTaskExecuter.java:127) at org.gradle.api.internal.tasks.execution.ExecuteActionsTaskExecuter.execute(ExecuteActionsTaskExecuter.java:116) at org.gradle.api.internal.tasks.execution.FinalizePropertiesTaskExecuter.execute(FinalizePropertiesTaskExecuter.java:46) at org.gradle.api.internal.tasks.execution.ResolveTaskExecutionModeExecuter.execute(ResolveTaskExecutionModeExecuter.java:51) at org.gradle.api.internal.tasks.execution.SkipTaskWithNoActionsExecuter.execute(SkipTaskWithNoActionsExecuter.java:57) at org.gradle.api.internal.tasks.execution.SkipOnlyIfTaskExecuter.execute(SkipOnlyIfTaskExecuter.java:74) at org.gradle.api.internal.tasks.execution.CatchExceptionTaskExecuter.execute(CatchExceptionTaskExecuter.java:36) at org.gradle.api.internal.tasks.execution.EventFiringTaskExecuter$1.executeTask(EventFiringTaskExecuter.java:77) at org.gradle.api.internal.tasks.execution.EventFiringTaskExecuter$1.call(EventFiringTaskExecuter.java:55) at org.gradle.api.internal.tasks.execution.EventFiringTaskExecuter$1.call(EventFiringTaskExecuter.java:52) at org.gradle.internal.operations.DefaultBuildOperationRunner$CallableBuildOperationWorker.execute(DefaultBuildOperationRunner.java:209) at org.gradle.internal.operations.DefaultBuildOperationRunner$CallableBuildOperationWorker.execute(DefaultBuildOperationRunner.java:204) at org.gradle.internal.operations.DefaultBuildOperationRunner$2.execute(DefaultBuildOperationRunner.java:66) at org.gradle.internal.operations.DefaultBuildOperationRunner$2.execute(DefaultBuildOperationRunner.java:59) at org.gradle.internal.operations.DefaultBuildOperationRunner.execute(DefaultBuildOperationRunner.java:166) at org.gradle.internal.operations.DefaultBuildOperationRunner.execute(DefaultBuildOperationRunner.java:59) at org.gradle.internal.operations.DefaultBuildOperationRunner.call(DefaultBuildOperationRunner.java:53) at org.gradle.api.internal.tasks.execution.EventFiringTaskExecuter.execute(EventFiringTaskExecuter.java:52) at org.gradle.execution.plan.LocalTaskNodeExecutor.execute(LocalTaskNodeExecutor.java:42) at org.gradle.execution.taskgraph.DefaultTaskExecutionGraph$InvokeNodeExecutorsAction.execute(DefaultTaskExecutionGraph.java:331) at org.gradle.execution.taskgraph.DefaultTaskExecutionGraph$InvokeNodeExecutorsAction.execute(DefaultTaskExecutionGraph.java:318) at org.gradle.execution.taskgraph.DefaultTaskExecutionGraph$BuildOperationAwareExecutionAction.lambda$execute$0(DefaultTaskExecutionGraph.java:314) at org.gradle.internal.operations.CurrentBuildOperationRef.with(CurrentBuildOperationRef.java:80) at org.gradle.execution.taskgraph.DefaultTaskExecutionGraph$BuildOperationAwareExecutionAction.execute(DefaultTaskExecutionGraph.java:314) at org.gradle.execution.taskgraph.DefaultTaskExecutionGraph$BuildOperationAwareExecutionAction.execute(DefaultTaskExecutionGraph.java:303) at org.gradle.execution.plan.DefaultPlanExecutor$ExecutorWorker.execute(DefaultPlanExecutor.java:463) at org.gradle.execution.plan.DefaultPlanExecutor$ExecutorWorker.run(DefaultPlanExecutor.java:380) at org.gradle.internal.concurrent.ExecutorPolicy$CatchAndRecordFailures.onExecute(ExecutorPolicy.java:64) at org.gradle.internal.concurrent.AbstractManagedExecutor$1.run(AbstractManagedExecutor.java:47) at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) at java.base/java.lang.Thread.run(Thread.java:833) The ResolvedConfiguration.getFirstLevelModuleDependencies(Spec) method has been deprecated. This is scheduled to be removed in Gradle 9.0. Use getFirstLevelModuleDependencies() instead. Consult the upgrading guide for further information: https://docs.gradle.org/8.8/userguide/upgrading_version_8.html#deprecate_filtered_configuration_file_and_filecollection_methods at org.gradle.api.internal.artifacts.ivyservice.DefaultResolvedConfiguration.getFirstLevelModuleDependencies(DefaultResolvedConfiguration.java:110) at net.minecraftforge.gradle.userdev.util.DeobfuscatingRepo.findArtifactFile(DeobfuscatingRepo.java:112) at net.minecraftforge.gradle.userdev.util.DeobfuscatingRepo.findRaw(DeobfuscatingRepo.java:121) at net.minecraftforge.gradle.userdev.util.DeobfuscatingRepo.findFile(DeobfuscatingRepo.java:82) at net.minecraftforge.gradle.common.util.BaseRepo.getArtifact(BaseRepo.java:72) at net.minecraftforge.gradle.common.util.BaseRepo.getArtifact(BaseRepo.java:29) at net.minecraftforge.gradle.common.util.BaseRepo$Builder.lambda$null$0(BaseRepo.java:125) at java.base/java.util.stream.ReferencePipeline$3$1.accept(ReferencePipeline.java:197) at java.base/java.util.ArrayList$ArrayListSpliterator.tryAdvance(ArrayList.java:1602) at java.base/java.util.stream.ReferencePipeline.forEachWithCancel(ReferencePipeline.java:129) at java.base/java.util.stream.AbstractPipeline.copyIntoWithCancel(AbstractPipeline.java:527) at java.base/java.util.stream.AbstractPipeline.copyInto(AbstractPipeline.java:513) at java.base/java.util.stream.AbstractPipeline.wrapAndCopyInto(AbstractPipeline.java:499) at java.base/java.util.stream.FindOps$FindOp.evaluateSequential(FindOps.java:150) at java.base/java.util.stream.AbstractPipeline.evaluate(AbstractPipeline.java:234) at java.base/java.util.stream.ReferencePipeline.findFirst(ReferencePipeline.java:647) at net.minecraftforge.gradle.common.util.BaseRepo$Builder.lambda$attach$2(BaseRepo.java:127) at net.minecraftforge.artifactural.base.repository.ArtifactProviderBuilder$Complete.getArtifact(ArtifactProviderBuilder.java:92) at net.minecraftforge.artifactural.base.repository.SimpleRepository.getArtifact(SimpleRepository.java:41) at net.minecraftforge.artifactural.gradle.GradleRepositoryAdapter$GeneratingFileResourceRepository.findArtifact(GradleRepositoryAdapter.java:373) at net.minecraftforge.artifactural.gradle.GradleRepositoryAdapter$GeneratingFileResourceRepository.resource(GradleRepositoryAdapter.java:352) at net.minecraftforge.artifactural.gradle.GradleRepositoryAdapter$GeneratingFileResourceRepository.resource(GradleRepositoryAdapter.java:318) at org.gradle.api.internal.artifacts.repositories.resolver.DefaultExternalResourceArtifactResolver.staticResourceExists(DefaultExternalResourceArtifactResolver.java:79) at org.gradle.api.internal.artifacts.repositories.resolver.DefaultExternalResourceArtifactResolver.artifactExists(DefaultExternalResourceArtifactResolver.java:67) at org.gradle.api.internal.artifacts.repositories.metadata.DefaultArtifactMetadataSource.create(DefaultArtifactMetadataSource.java:57) at org.gradle.api.internal.artifacts.repositories.resolver.ExternalResourceResolver.resolveStaticDependency(ExternalResourceResolver.java:234) at org.gradle.api.internal.artifacts.repositories.resolver.MavenResolver.doResolveComponentMetaData(MavenResolver.java:113) at org.gradle.api.internal.artifacts.repositories.resolver.ExternalResourceResolver$RemoteRepositoryAccess.resolveComponentMetaData(ExternalResourceResolver.java:415) at net.minecraftforge.artifactural.gradle.GradleRepositoryAdapter$1$1.resolveComponentMetaData(GradleRepositoryAdapter.java:204) at org.gradle.api.internal.artifacts.ivyservice.ivyresolve.CachingModuleComponentRepository$ResolveAndCacheRepositoryAccess.resolveComponentMetaDataAndCache(CachingModuleComponentRepository.java:396) at org.gradle.api.internal.artifacts.ivyservice.ivyresolve.CachingModuleComponentRepository$ResolveAndCacheRepositoryAccess.resolveComponentMetaData(CachingModuleComponentRepository.java:390) at org.gradle.api.internal.artifacts.ivyservice.ivyresolve.LocalModuleComponentRepository$LocalAccess.resolveComponentMetaData(LocalModuleComponentRepository.java:75) at org.gradle.api.internal.artifacts.ivyservice.ivyresolve.ErrorHandlingModuleComponentRepository$ErrorHandlingModuleComponentRepositoryAccess.lambda$resolveComponentMetaData$5(ErrorHandlingModuleComponentRepository.java:150) at org.gradle.api.internal.artifacts.ivyservice.ivyresolve.ErrorHandlingModuleComponentRepository$ErrorHandlingModuleComponentRepositoryAccess.lambda$tryResolveAndMaybeDisable$15(ErrorHandlingModuleComponentRepository.java:220) at org.gradle.api.internal.artifacts.ivyservice.ivyresolve.ErrorHandlingModuleComponentRepository$ErrorHandlingModuleComponentRepositoryAccess.tryResolveAndMaybeDisable(ErrorHandlingModuleComponentRepository.java:236) at org.gradle.api.internal.artifacts.ivyservice.ivyresolve.ErrorHandlingModuleComponentRepository$ErrorHandlingModuleComponentRepositoryAccess.tryResolveAndMaybeDisable(ErrorHandlingModuleComponentRepository.java:219) at org.gradle.api.internal.artifacts.ivyservice.ivyresolve.ErrorHandlingModuleComponentRepository$ErrorHandlingModuleComponentRepositoryAccess.performOperationWithRetries(ErrorHandlingModuleComponentRepository.java:203) at org.gradle.api.internal.artifacts.ivyservice.ivyresolve.ErrorHandlingModuleComponentRepository$ErrorHandlingModuleComponentRepositoryAccess.resolveComponentMetaData(ErrorHandlingModuleComponentRepository.java:149) at org.gradle.api.internal.artifacts.ivyservice.ivyresolve.FilteredModuleComponentRepository$FilteringAccess.lambda$resolveComponentMetaData$2(FilteredModuleComponentRepository.java:106) at org.gradle.api.internal.artifacts.ivyservice.ivyresolve.FilteredModuleComponentRepository$FilteringAccess.whenModulePresent(FilteredModuleComponentRepository.java:133) at org.gradle.api.internal.artifacts.ivyservice.ivyresolve.FilteredModuleComponentRepository$FilteringAccess.resolveComponentMetaData(FilteredModuleComponentRepository.java:105) at org.gradle.api.internal.artifacts.ivyservice.ivyresolve.ComponentMetaDataResolveState.process(ComponentMetaDataResolveState.java:70) at org.gradle.api.internal.artifacts.ivyservice.ivyresolve.ComponentMetaDataResolveState.resolve(ComponentMetaDataResolveState.java:49) at org.gradle.api.internal.artifacts.ivyservice.ivyresolve.RepositoryChainComponentMetaDataResolver.findBestMatch(RepositoryChainComponentMetaDataResolver.java:167) at org.gradle.api.internal.artifacts.ivyservice.ivyresolve.RepositoryChainComponentMetaDataResolver.findBestMatch(RepositoryChainComponentMetaDataResolver.java:147) at org.gradle.api.internal.artifacts.ivyservice.ivyresolve.RepositoryChainComponentMetaDataResolver.resolveModule(RepositoryChainComponentMetaDataResolver.java:117) at org.gradle.api.internal.artifacts.ivyservice.ivyresolve.RepositoryChainComponentMetaDataResolver.lambda$createValueContainerFor$1(RepositoryChainComponentMetaDataResolver.java:87) at org.gradle.internal.model.CalculatedValueContainerFactory$SupplierBackedCalculator.calculateValue(CalculatedValueContainerFactory.java:74) at org.gradle.internal.model.CalculatedValueContainer$CalculationState.lambda$attachValue$0(CalculatedValueContainer.java:229) at org.gradle.internal.Try.ofFailable(Try.java:41) at org.gradle.internal.model.CalculatedValueContainer$CalculationState.attachValue(CalculatedValueContainer.java:224) at org.gradle.internal.model.CalculatedValueContainer.finalizeIfNotAlready(CalculatedValueContainer.java:197) at org.gradle.internal.model.CalculatedValueContainer.finalizeIfNotAlready(CalculatedValueContainer.java:188) at org.gradle.api.internal.artifacts.ivyservice.ivyresolve.RepositoryChainComponentMetaDataResolver.resolve(RepositoryChainComponentMetaDataResolver.java:78) at org.gradle.api.internal.artifacts.ivyservice.resolveengine.ComponentResolversChain$ComponentMetaDataResolverChain.resolve(ComponentResolversChain.java:90) at org.gradle.api.internal.artifacts.ivyservice.clientmodule.ClientModuleResolver.resolve(ClientModuleResolver.java:70) at org.gradle.api.internal.artifacts.ivyservice.resolveengine.graph.builder.ComponentState.resolve(ComponentState.java:227) at org.gradle.api.internal.artifacts.ivyservice.resolveengine.graph.builder.ComponentState.getResolveStateOrNull(ComponentState.java:171) at org.gradle.api.internal.artifacts.ivyservice.resolveengine.graph.builder.EdgeState.calculateTargetConfigurations(EdgeState.java:218) at org.gradle.api.internal.artifacts.ivyservice.resolveengine.graph.builder.EdgeState.attachToTargetConfigurations(EdgeState.java:147) at org.gradle.api.internal.artifacts.ivyservice.resolveengine.graph.builder.DependencyGraphBuilder.attachToTargetRevisionsSerially(DependencyGraphBuilder.java:367) at org.gradle.api.internal.artifacts.ivyservice.resolveengine.graph.builder.DependencyGraphBuilder.resolveEdges(DependencyGraphBuilder.java:259) at org.gradle.api.internal.artifacts.ivyservice.resolveengine.graph.builder.DependencyGraphBuilder.traverseGraph(DependencyGraphBuilder.java:194) at org.gradle.api.internal.artifacts.ivyservice.resolveengine.graph.builder.DependencyGraphBuilder.resolve(DependencyGraphBuilder.java:164) at org.gradle.api.internal.artifacts.ivyservice.resolveengine.DependencyGraphResolver.resolve(DependencyGraphResolver.java:121) at org.gradle.api.internal.artifacts.ivyservice.DefaultConfigurationResolver.doResolve(DefaultConfigurationResolver.java:392) at org.gradle.api.internal.artifacts.ivyservice.DefaultConfigurationResolver.resolveGraph(DefaultConfigurationResolver.java:287) at org.gradle.api.internal.artifacts.ivyservice.ShortCircuitEmptyConfigurationResolver.resolveGraph(ShortCircuitEmptyConfigurationResolver.java:91) at org.gradle.api.internal.artifacts.configurations.DefaultConfiguration$1.call(DefaultConfiguration.java:757) at org.gradle.api.internal.artifacts.configurations.DefaultConfiguration$1.call(DefaultConfiguration.java:749) at org.gradle.internal.operations.DefaultBuildOperationRunner$CallableBuildOperationWorker.execute(DefaultBuildOperationRunner.java:209) at org.gradle.internal.operations.DefaultBuildOperationRunner$CallableBuildOperationWorker.execute(DefaultBuildOperationRunner.java:204) at org.gradle.internal.operations.DefaultBuildOperationRunner$2.execute(DefaultBuildOperationRunner.java:66) at org.gradle.internal.operations.DefaultBuildOperationRunner$2.execute(DefaultBuildOperationRunner.java:59) at org.gradle.internal.operations.DefaultBuildOperationRunner.execute(DefaultBuildOperationRunner.java:166) at org.gradle.internal.operations.DefaultBuildOperationRunner.execute(DefaultBuildOperationRunner.java:59) at org.gradle.internal.operations.DefaultBuildOperationRunner.call(DefaultBuildOperationRunner.java:53) at org.gradle.api.internal.artifacts.configurations.DefaultConfiguration.resolveGraphInBuildOperation(DefaultConfiguration.java:749) at org.gradle.api.internal.artifacts.configurations.DefaultConfiguration.lambda$resolveExclusivelyIfRequired$7(DefaultConfiguration.java:741) at org.gradle.api.internal.project.DefaultProjectStateRegistry$CalculatedModelValueImpl.update(DefaultProjectStateRegistry.java:505) at org.gradle.api.internal.artifacts.configurations.DefaultConfiguration.resolveExclusivelyIfRequired(DefaultConfiguration.java:736) at org.gradle.api.internal.artifacts.configurations.DefaultConfiguration.resolveGraphIfRequired(DefaultConfiguration.java:729) at org.gradle.api.internal.artifacts.configurations.DefaultConfiguration.access$500(DefaultConfiguration.java:156) at org.gradle.api.internal.artifacts.configurations.DefaultConfiguration$ResolverResultsResolutionResultProvider.getValue(DefaultConfiguration.java:703) at org.gradle.api.internal.artifacts.configurations.DefaultConfiguration$ResolverResultsResolutionResultProvider.getValue(DefaultConfiguration.java:664) at org.gradle.api.internal.artifacts.configurations.ResolutionResultProvider$1.getValue(ResolutionResultProvider.java:53) at org.gradle.api.internal.artifacts.configurations.ResolutionBackedFileCollection.getSelectedArtifacts(ResolutionBackedFileCollection.java:95) at org.gradle.api.internal.artifacts.configurations.ResolutionBackedFileCollection.visitContents(ResolutionBackedFileCollection.java:73) at org.gradle.api.internal.file.AbstractFileCollection.visitStructure(AbstractFileCollection.java:361) at org.gradle.api.internal.artifacts.configurations.DefaultConfiguration.visitContents(DefaultConfiguration.java:526) at org.gradle.api.internal.file.AbstractFileCollection.visitStructure(AbstractFileCollection.java:361) at org.gradle.api.internal.file.CompositeFileCollection.lambda$visitContents$0(CompositeFileCollection.java:113) at org.gradle.api.internal.file.collections.UnpackingVisitor.add(UnpackingVisitor.java:67) at org.gradle.api.internal.file.collections.UnpackingVisitor.add(UnpackingVisitor.java:92) at org.gradle.api.internal.file.DefaultFileCollectionFactory$ResolvingFileCollection.visitChildren(DefaultFileCollectionFactory.java:285) at org.gradle.api.internal.file.CompositeFileCollection.visitContents(CompositeFileCollection.java:113) at org.gradle.api.internal.file.AbstractFileCollection.visitStructure(AbstractFileCollection.java:361) at org.gradle.api.internal.file.CompositeFileCollection.lambda$visitContents$0(CompositeFileCollection.java:113) at org.gradle.api.internal.tasks.PropertyFileCollection.visitChildren(PropertyFileCollection.java:48) at org.gradle.api.internal.file.CompositeFileCollection.visitContents(CompositeFileCollection.java:113) at org.gradle.api.internal.file.AbstractFileCollection.visitStructure(AbstractFileCollection.java:361) at org.gradle.internal.fingerprint.impl.DefaultFileCollectionSnapshotter.snapshot(DefaultFileCollectionSnapshotter.java:47) at org.gradle.internal.execution.impl.DefaultInputFingerprinter$InputCollectingVisitor.visitInputFileProperty(DefaultInputFingerprinter.java:133) at org.gradle.api.internal.tasks.execution.TaskExecution.visitRegularInputs(TaskExecution.java:324) at org.gradle.internal.execution.impl.DefaultInputFingerprinter.fingerprintInputProperties(DefaultInputFingerprinter.java:63) at org.gradle.internal.execution.steps.AbstractCaptureStateBeforeExecutionStep.captureExecutionStateWithOutputs(AbstractCaptureStateBeforeExecutionStep.java:109) at org.gradle.internal.execution.steps.AbstractCaptureStateBeforeExecutionStep.lambda$captureExecutionState$0(AbstractCaptureStateBeforeExecutionStep.java:74) at org.gradle.internal.execution.steps.BuildOperationStep$1.call(BuildOperationStep.java:37) at org.gradle.internal.operations.DefaultBuildOperationRunner$CallableBuildOperationWorker.execute(DefaultBuildOperationRunner.java:209) at org.gradle.internal.operations.DefaultBuildOperationRunner$CallableBuildOperationWorker.execute(DefaultBuildOperationRunner.java:204) at org.gradle.internal.operations.DefaultBuildOperationRunner$2.execute(DefaultBuildOperationRunner.java:66) at org.gradle.internal.operations.DefaultBuildOperationRunner$2.execute(DefaultBuildOperationRunner.java:59) at org.gradle.internal.operations.DefaultBuildOperationRunner.execute(DefaultBuildOperationRunner.java:166) at org.gradle.internal.operations.DefaultBuildOperationRunner.execute(DefaultBuildOperationRunner.java:59) at org.gradle.internal.operations.DefaultBuildOperationRunner.call(DefaultBuildOperationRunner.java:53) at org.gradle.internal.execution.steps.BuildOperationStep.operation(BuildOperationStep.java:34) at org.gradle.internal.execution.steps.AbstractCaptureStateBeforeExecutionStep.captureExecutionState(AbstractCaptureStateBeforeExecutionStep.java:69) at org.gradle.internal.execution.steps.AbstractCaptureStateBeforeExecutionStep.execute(AbstractCaptureStateBeforeExecutionStep.java:62) at org.gradle.internal.execution.steps.AbstractCaptureStateBeforeExecutionStep.execute(AbstractCaptureStateBeforeExecutionStep.java:43) at org.gradle.internal.execution.steps.AbstractSkipEmptyWorkStep.executeWithNonEmptySources(AbstractSkipEmptyWorkStep.java:125) at org.gradle.internal.execution.steps.AbstractSkipEmptyWorkStep.execute(AbstractSkipEmptyWorkStep.java:61) at org.gradle.internal.execution.steps.AbstractSkipEmptyWorkStep.execute(AbstractSkipEmptyWorkStep.java:36) at org.gradle.internal.execution.steps.legacy.MarkSnapshottingInputsStartedStep.execute(MarkSnapshottingInputsStartedStep.java:38) at org.gradle.internal.execution.steps.LoadPreviousExecutionStateStep.execute(LoadPreviousExecutionStateStep.java:36) at org.gradle.internal.execution.steps.LoadPreviousExecutionStateStep.execute(LoadPreviousExecutionStateStep.java:23) at org.gradle.internal.execution.steps.HandleStaleOutputsStep.execute(HandleStaleOutputsStep.java:75) at org.gradle.internal.execution.steps.HandleStaleOutputsStep.execute(HandleStaleOutputsStep.java:41) at org.gradle.internal.execution.steps.AssignMutableWorkspaceStep.lambda$execute$0(AssignMutableWorkspaceStep.java:35) at org.gradle.api.internal.tasks.execution.TaskExecution$4.withWorkspace(TaskExecution.java:289) at org.gradle.internal.execution.steps.AssignMutableWorkspaceStep.execute(AssignMutableWorkspaceStep.java:31) at org.gradle.internal.execution.steps.AssignMutableWorkspaceStep.execute(AssignMutableWorkspaceStep.java:22) at org.gradle.internal.execution.steps.ChoosePipelineStep.execute(ChoosePipelineStep.java:40) at org.gradle.internal.execution.steps.ChoosePipelineStep.execute(ChoosePipelineStep.java:23) at org.gradle.internal.execution.steps.ExecuteWorkBuildOperationFiringStep.lambda$execute$2(ExecuteWorkBuildOperationFiringStep.java:67) at java.base/java.util.Optional.orElseGet(Optional.java:364) at org.gradle.internal.execution.steps.ExecuteWorkBuildOperationFiringStep.execute(ExecuteWorkBuildOperationFiringStep.java:67) at org.gradle.internal.execution.steps.ExecuteWorkBuildOperationFiringStep.execute(ExecuteWorkBuildOperationFiringStep.java:39) at org.gradle.internal.execution.steps.IdentityCacheStep.execute(IdentityCacheStep.java:46) at org.gradle.internal.execution.steps.IdentityCacheStep.execute(IdentityCacheStep.java:34) at org.gradle.internal.execution.steps.IdentifyStep.execute(IdentifyStep.java:48) at org.gradle.internal.execution.steps.IdentifyStep.execute(IdentifyStep.java:35) at org.gradle.internal.execution.impl.DefaultExecutionEngine$1.execute(DefaultExecutionEngine.java:61) at org.gradle.api.internal.tasks.execution.ExecuteActionsTaskExecuter.executeIfValid(ExecuteActionsTaskExecuter.java:127) at org.gradle.api.internal.tasks.execution.ExecuteActionsTaskExecuter.execute(ExecuteActionsTaskExecuter.java:116) at org.gradle.api.internal.tasks.execution.FinalizePropertiesTaskExecuter.execute(FinalizePropertiesTaskExecuter.java:46) at org.gradle.api.internal.tasks.execution.ResolveTaskExecutionModeExecuter.execute(ResolveTaskExecutionModeExecuter.java:51) at org.gradle.api.internal.tasks.execution.SkipTaskWithNoActionsExecuter.execute(SkipTaskWithNoActionsExecuter.java:57) at org.gradle.api.internal.tasks.execution.SkipOnlyIfTaskExecuter.execute(SkipOnlyIfTaskExecuter.java:74) at org.gradle.api.internal.tasks.execution.CatchExceptionTaskExecuter.execute(CatchExceptionTaskExecuter.java:36) at org.gradle.api.internal.tasks.execution.EventFiringTaskExecuter$1.executeTask(EventFiringTaskExecuter.java:77) at org.gradle.api.internal.tasks.execution.EventFiringTaskExecuter$1.call(EventFiringTaskExecuter.java:55) at org.gradle.api.internal.tasks.execution.EventFiringTaskExecuter$1.call(EventFiringTaskExecuter.java:52) at org.gradle.internal.operations.DefaultBuildOperationRunner$CallableBuildOperationWorker.execute(DefaultBuildOperationRunner.java:209) at org.gradle.internal.operations.DefaultBuildOperationRunner$CallableBuildOperationWorker.execute(DefaultBuildOperationRunner.java:204) at org.gradle.internal.operations.DefaultBuildOperationRunner$2.execute(DefaultBuildOperationRunner.java:66) at org.gradle.internal.operations.DefaultBuildOperationRunner$2.execute(DefaultBuildOperationRunner.java:59) at org.gradle.internal.operations.DefaultBuildOperationRunner.execute(DefaultBuildOperationRunner.java:166) at org.gradle.internal.operations.DefaultBuildOperationRunner.execute(DefaultBuildOperationRunner.java:59) at org.gradle.internal.operations.DefaultBuildOperationRunner.call(DefaultBuildOperationRunner.java:53) at org.gradle.api.internal.tasks.execution.EventFiringTaskExecuter.execute(EventFiringTaskExecuter.java:52) at org.gradle.execution.plan.LocalTaskNodeExecutor.execute(LocalTaskNodeExecutor.java:42) at org.gradle.execution.taskgraph.DefaultTaskExecutionGraph$InvokeNodeExecutorsAction.execute(DefaultTaskExecutionGraph.java:331) at org.gradle.execution.taskgraph.DefaultTaskExecutionGraph$InvokeNodeExecutorsAction.execute(DefaultTaskExecutionGraph.java:318) at org.gradle.execution.taskgraph.DefaultTaskExecutionGraph$BuildOperationAwareExecutionAction.lambda$execute$0(DefaultTaskExecutionGraph.java:314) at org.gradle.internal.operations.CurrentBuildOperationRef.with(CurrentBuildOperationRef.java:80) at org.gradle.execution.taskgraph.DefaultTaskExecutionGraph$BuildOperationAwareExecutionAction.execute(DefaultTaskExecutionGraph.java:314) at org.gradle.execution.taskgraph.DefaultTaskExecutionGraph$BuildOperationAwareExecutionAction.execute(DefaultTaskExecutionGraph.java:303) at org.gradle.execution.plan.DefaultPlanExecutor$ExecutorWorker.execute(DefaultPlanExecutor.java:463) at org.gradle.execution.plan.DefaultPlanExecutor$ExecutorWorker.run(DefaultPlanExecutor.java:380) at org.gradle.internal.concurrent.ExecutorPolicy$CatchAndRecordFailures.onExecute(ExecutorPolicy.java:64) at org.gradle.internal.concurrent.AbstractManagedExecutor$1.run(AbstractManagedExecutor.java:47) at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) at java.base/java.lang.Thread.run(Thread.java:833) Downloading net.minecraft:mappings_parchment:2023.09.03-1.20.1@zip Downloading net.minecraft:mappings_parchment:2023.09.03-1.20.1@zip Downloading net.minecraft:mappings_parchment:2023.09.03-1.20.1@zip Downloading net.minecraft:mappings_parchment:2023.09.03-1.20.1@zip Caching disabled for task ':compileJava' because: Build cache is disabled Skipping task ':compileJava' as it is up-to-date. No compile result for :compileJava Resolve mutations for :processResources (Thread[Execution worker Thread 12,5,main]) started. :processResources (Thread[Execution worker Thread 17,5,main]) started. > Task :processResources Caching disabled for task ':processResources' because: Build cache is disabled Not worth caching Task ':processResources' is not up-to-date because: Output property 'destinationDir' file C:\Users\Jojo\Desktop\modujem mc\build\resources\main\META-INF\mods.toml has changed. Resolve mutations for :classes (Thread[Execution worker Thread 17,5,main]) started. :classes (Thread[Execution worker Thread 11,5,main]) started. > Task :classes Skipping task ':classes' as it has no actions. Resolve mutations for :downloadMcpConfig (Thread[Execution worker Thread 11,5,main]) started. :downloadMcpConfig (Thread[Execution worker Thread 14,5,main]) started. > Task :downloadMcpConfig Caching disabled for task ':downloadMcpConfig' because: Build cache is disabled Caching has not been enabled for the task Task ':downloadMcpConfig' is not up-to-date because: Task.upToDateWhen is false. Downloading de.oceanlabs.mcp:mcp_config:1.20.1-20230612.114412@zip Resolve mutations for :extractSrg (Thread[Execution worker Thread 14,5,main]) started. :extractSrg (Thread[Execution worker Thread 14,5,main]) started. > Task :extractSrg UP-TO-DATE Caching disabled for task ':extractSrg' because: Build cache is disabled Caching has not been enabled for the task Skipping task ':extractSrg' as it is up-to-date. Resolve mutations for :createSrgToMcp (Thread[Execution worker Thread 14,5,main]) started. :createSrgToMcp (Thread[Execution worker Thread 17,5,main]) started. > Task :createSrgToMcp UP-TO-DATE Caching disabled for task ':createSrgToMcp' because: Build cache is disabled Caching has not been enabled for the task Skipping task ':createSrgToMcp' as it is up-to-date. Resolve mutations for :downloadMCMeta (Thread[Execution worker Thread 17,5,main]) started. :downloadMCMeta (Thread[Execution worker Thread 21,5,main]) started. > Task :downloadMCMeta UP-TO-DATE Caching disabled for task ':downloadMCMeta' because: Build cache is disabled Caching has not been enabled for the task Skipping task ':downloadMCMeta' as it is up-to-date. Resolve mutations for :downloadAssets (Thread[Execution worker Thread 21,5,main]) started. :downloadAssets (Thread[Execution worker Thread 21,5,main]) started. > Task :downloadAssets UP-TO-DATE Caching disabled for task ':downloadAssets' because: Build cache is disabled Caching has not been enabled for the task Skipping task ':downloadAssets' as it is up-to-date. Resolve mutations for :extractNatives (Thread[Execution worker Thread 21,5,main]) started. :extractNatives (Thread[Execution worker Thread 21,5,main]) started. > Task :extractNatives UP-TO-DATE Caching disabled for task ':extractNatives' because: Build cache is disabled Caching has not been enabled for the task Skipping task ':extractNatives' as it is up-to-date. Resolve mutations for :makeSrcDirs (Thread[Execution worker Thread 21,5,main]) started. :makeSrcDirs (Thread[Execution worker Thread 18,5,main]) started. > Task :makeSrcDirs Caching disabled for task ':makeSrcDirs' because: Build cache is disabled Task ':makeSrcDirs' is not up-to-date because: Task has not declared any outputs despite executing actions. Resolve mutations for :prepareRuns (Thread[Execution worker Thread 18,5,main]) started. :prepareRuns (Thread[Execution worker Thread 18,5,main]) started. > Task :prepareRuns Skipping task ':prepareRuns' as it has no actions. Resolve mutations for :prepareRunClient (Thread[Execution worker Thread 4,5,main]) started. :prepareRunClient (Thread[Execution worker Thread 17,5,main]) started. > Task :prepareRunClient Skipping task ':prepareRunClient' as it has no actions. Resolve mutations for :prepareRunClientCompile (Thread[Execution worker Thread 17,5,main]) started. :prepareRunClientCompile (Thread[Execution worker Thread 17,5,main]) started. > Task :prepareRunClientCompile Skipping task ':prepareRunClientCompile' as it has no actions. Resolve mutations for :runClient (Thread[Execution worker Thread 7,5,main]) started. :runClient (Thread[Execution worker Thread 7,5,main]) started. > Task :runClient Downloading net.minecraft:client:1.20.1:mappings@txt Downloading de.oceanlabs.mcp:mcp_config:1.20.1@zip Downloading net.minecraft:client:1.20.1:mappings@txt Downloading de.oceanlabs.mcp:mcp_config:1.20.1@zip Downloading net.minecraft:mappings_parchment:2023.09.03-1.20.1@zip Caching disabled for task ':runClient' because: Build cache is disabled Task ':runClient' is not up-to-date because: Task has not declared any outputs despite executing actions. Starting process 'command 'C:\Program Files\Eclipse Adoptium\jdk-17.0.6.10-hotspot\bin\java.exe''. Working directory: C:\Users\Jojo\Desktop\modujem mc\run Command: C:\Program Files\Eclipse Adoptium\jdk-17.0.6.10-hotspot\bin\java.exe -Dforge.enableGameTest=true -Dforge.enabledGameTestNamespaces=anytngmod -Dforge.logging.console.level=debug -Dforge.logging.markers=REGISTRIES -DignoreList=bootstraplauncher,securejarhandler,asm-commons,asm-util,asm-analysis,asm-tree,asm,JarJarFileSystems,client-extra,fmlcore,javafmllanguage,lowcodelanguage,mclanguage,forge- -Djava.net.preferIPv6Addresses=system -DlegacyClassPath.file=C:\Users\Jojo\Desktop\modujem mc\build\classpath\runClient_minecraftClasspath.txt -DmergeModules=jna-5.10.0.jar,jna-platform-5.10.0.jar -p C:\Users\Jojo\.gradle\caches\modules-2\files-2.1\cpw.mods\bootstraplauncher\1.1.2\c546e00443d8432cda6baa1c860346980742628\bootstraplauncher-1.1.2.jar;C:\Users\Jojo\.gradle\caches\modules-2\files-2.1\cpw.mods\securejarhandler\2.1.10\51e6a22c6c716beb11e244bf5b8be480f51dd6b5\securejarhandler-2.1.10.jar;C:\Users\Jojo\.gradle\caches\modules-2\files-2.1\org.ow2.asm\asm-commons\9.7\e86dda4696d3c185fcc95d8d311904e7ce38a53f\asm-commons-9.7.jar;C:\Users\Jojo\.gradle\caches\modules-2\files-2.1\org.ow2.asm\asm-util\9.7\c0655519f24d92af2202cb681cd7c1569df6ead6\asm-util-9.7.jar;C:\Users\Jojo\.gradle\caches\modules-2\files-2.1\org.ow2.asm\asm-analysis\9.7\e4a258b7eb96107106c0599f0061cfc1832fe07a\asm-analysis-9.7.jar;C:\Users\Jojo\.gradle\caches\modules-2\files-2.1\org.ow2.asm\asm-tree\9.7\e446a17b175bfb733b87c5c2560ccb4e57d69f1a\asm-tree-9.7.jar;C:\Users\Jojo\.gradle\caches\modules-2\files-2.1\org.ow2.asm\asm\9.7\73d7b3086e14beb604ced229c302feff6449723\asm-9.7.jar;C:\Users\Jojo\.gradle\caches\modules-2\files-2.1\net.minecraftforge\JarJarFileSystems\0.3.19\2464eb7d6b9ddb9db36a82cf8a95193e5c6fe020\JarJarFileSystems-0.3.19.jar --add-modules ALL-MODULE-PATH --add-opens java.base/java.util.jar=cpw.mods.securejarhandler --add-opens java.base/java.lang.invoke=cpw.mods.securejarhandler --add-exports java.base/sun.security.util=cpw.mods.securejarhandler --add-exports jdk.naming.dns/com.sun.jndi.dns=java.naming -XX:HeapDumpPath=MojangTricksIntelDriversForPerformance_javaw.exe_minecraft.exe.heapdump -Dfile.encoding=UTF-8 -Duser.country=US -Duser.language=en -Duser.variant -cp C:\Users\Jojo\Desktop\modujem mc\build\classes\java\main;C:\Users\Jojo\Desktop\modujem mc\build\resources\main;C:\Users\Jojo\.gradle\caches\forge_gradle\minecraft_user_repo\net\minecraftforge\forge\1.20.1-47.3.0_mapped_parchment_2023.09.03-1.20.1\forge-1.20.1-47.3.0_mapped_parchment_2023.09.03-1.20.1.jar;C:\Users\Jojo\.gradle\caches\forge_gradle\deobf_dependencies\top\theillusivec4\curios\curios-forge\5.9.0+1.20.1_mapped_parchment_2023.09.03-1.20.1\curios-forge-5.9.0+1.20.1_mapped_parchment_2023.09.03-1.20.1.jar;C:\Users\Jojo\.gradle\caches\forge_gradle\minecraft_repo\versions\1.20.1\client-extra.jar;C:\Users\Jojo\.gradle\caches\modules-2\files-2.1\net.minecraftforge\fmlearlydisplay\1.20.1-47.3.0\91e33682894f35862e9ce29d633e3258120952f0\fmlearlydisplay-1.20.1-47.3.0.jar;C:\Users\Jojo\.gradle\caches\modules-2\files-2.1\net.minecraftforge\javafmllanguage\1.20.1-47.3.0\d7ebc62120f202109e300e084ca1a31a7b946a62\javafmllanguage-1.20.1-47.3.0.jar;C:\Users\Jojo\.gradle\caches\modules-2\files-2.1\net.minecraftforge\lowcodelanguage\1.20.1-47.3.0\1bf3e845ea0ce750096da8c71c8364b188ab74d4\lowcodelanguage-1.20.1-47.3.0.jar;C:\Users\Jojo\.gradle\caches\modules-2\files-2.1\net.minecraftforge\mclanguage\1.20.1-47.3.0\6093682e943ddccbabf70539319d7f2fe64db2e7\mclanguage-1.20.1-47.3.0.jar;C:\Users\Jojo\.gradle\caches\modules-2\files-2.1\net.minecraftforge\fmlcore\1.20.1-47.3.0\3b6be96aba3e323f3c918e8ef6a96312d82d76ad\fmlcore-1.20.1-47.3.0.jar;C:\Users\Jojo\.gradle\caches\modules-2\files-2.1\net.minecraftforge\fmlloader\1.20.1-47.3.0\547850469c8a336b4c60cb8619f6cd421e9e5f55\fmlloader-1.20.1-47.3.0.jar;C:\Users\Jojo\.gradle\caches\modules-2\files-2.1\net.minecraftforge\JarJarSelector\0.3.19\376cc9c8ea60720cf027c01fc033de915699801c\JarJarSelector-0.3.19.jar;C:\Users\Jojo\.gradle\caches\modules-2\files-2.1\net.minecraftforge\JarJarMetadata\0.3.19\83feaa9b770e6ac0e96ee4fc23fa89325c5fe2\JarJarMetadata-0.3.19.jar;C:\Users\Jojo\.gradle\caches\modules-2\files-2.1\com.google.guava\guava\31.1-jre\60458f877d055d0c9114d9e1a2efb737b4bc282c\guava-31.1-jre.jar;C:\Users\Jojo\.gradle\caches\modules-2\files-2.1\com.google.code.findbugs\jsr305\3.0.2\25ea2e8b0c338a877313bd4672d3fe056ea78f0d\jsr305-3.0.2.jar;C:\Users\Jojo\.gradle\caches\modules-2\files-2.1\ca.weblite\java-objc-bridge\1.1\1227f9e0666314f9de41477e3ec277e542ed7f7b\java-objc-bridge-1.1.jar;C:\Users\Jojo\.gradle\caches\modules-2\files-2.1\net.minecraftforge\forgespi\7.0.1\3b4972a0cdb135853dba219be61a79b22cff1309\forgespi-7.0.1.jar;C:\Users\Jojo\.gradle\caches\modules-2\files-2.1\net.minecraftforge\mergetool\1.1.5\f3da18e12c696d35a47c82cbb2cc8b5aa15e1154\mergetool-1.1.5-api.jar;C:\Users\Jojo\.gradle\caches\modules-2\files-2.1\org.jetbrains\annotations\24.0.1\13c5c75c4206580aa4d683bffee658caae6c9f43\annotations-24.0.1.jar;C:\Users\Jojo\.gradle\caches\parchmentgradle\org\parchmentmc\data\parchment-1.20.1\2023.09.03\parchment-1.20.1-2023.09.03.zip;C:\Users\Jojo\.gradle\caches\modules-2\files-2.1\net.minecraftforge\accesstransformers\8.0.4\272d240aa73f42195b2a68e2ebd8b701ecf41f63\accesstransformers-8.0.4.jar;C:\Users\Jojo\.gradle\caches\modules-2\files-2.1\net.minecraftforge\eventbus\6.0.5\699143dd438431d06b57416944f7cedbe52e1475\eventbus-6.0.5.jar;C:\Users\Jojo\.gradle\caches\modules-2\files-2.1\cpw.mods\modlauncher\10.0.9\6d9443f56f50bb85cea383686ff9c867391458b\modlauncher-10.0.9.jar;C:\Users\Jojo\.gradle\caches\modules-2\files-2.1\cpw.mods\bootstraplauncher\1.1.2\c546e00443d8432cda6baa1c860346980742628\bootstraplauncher-1.1.2.jar;C:\Users\Jojo\.gradle\caches\modules-2\files-2.1\cpw.mods\securejarhandler\2.1.10\51e6a22c6c716beb11e244bf5b8be480f51dd6b5\securejarhandler-2.1.10.jar;C:\Users\Jojo\.gradle\caches\modules-2\files-2.1\net.minecraftforge\coremods\5.1.6\62fab3c3d59d37f8e15af311cb638c6f6123423\coremods-5.1.6.jar;C:\Users\Jojo\.gradle\caches\modules-2\files-2.1\org.openjdk.nashorn\nashorn-core\15.3\43977e804697048fc8d81d333a36c17d07a5b3dd\nashorn-core-15.3.jar;C:\Users\Jojo\.gradle\caches\modules-2\files-2.1\org.ow2.asm\asm-commons\9.7\e86dda4696d3c185fcc95d8d311904e7ce38a53f\asm-commons-9.7.jar;C:\Users\Jojo\.gradle\caches\modules-2\files-2.1\org.ow2.asm\asm-util\9.7\c0655519f24d92af2202cb681cd7c1569df6ead6\asm-util-9.7.jar;C:\Users\Jojo\.gradle\caches\modules-2\files-2.1\org.ow2.asm\asm-analysis\9.7\e4a258b7eb96107106c0599f0061cfc1832fe07a\asm-analysis-9.7.jar;C:\Users\Jojo\.gradle\caches\modules-2\files-2.1\org.ow2.asm\asm-tree\9.7\e446a17b175bfb733b87c5c2560ccb4e57d69f1a\asm-tree-9.7.jar;C:\Users\Jojo\.gradle\caches\modules-2\files-2.1\org.ow2.asm\asm\9.7\73d7b3086e14beb604ced229c302feff6449723\asm-9.7.jar;C:\Users\Jojo\.gradle\caches\modules-2\files-2.1\org.antlr\antlr4\4.9.1\e92af8ab33e428461927b484e90bb155a4f3a052\antlr4-4.9.1.jar;C:\Users\Jojo\.gradle\caches\modules-2\files-2.1\org.antlr\antlr4-runtime\4.9.1\428664f05d2b7f7b7610204b5aa7c1763f62011a\antlr4-runtime-4.9.1.jar;C:\Users\Jojo\.gradle\caches\modules-2\files-2.1\net.minecraftforge\unsafe\0.2.0\54d7a0a5e8fdb71b973025caa46f341ae5904f39\unsafe-0.2.0.jar;C:\Users\Jojo\.gradle\caches\modules-2\files-2.1\com.electronwill.night-config\toml\3.6.4\51d6cefb2b55ee55ee26b16391212fb2c7dfb4f4\toml-3.6.4.jar;C:\Users\Jojo\.gradle\caches\modules-2\files-2.1\com.electronwill.night-config\core\3.6.4\510f174abbf1c947494db50ef2445683bd52c230\core-3.6.4.jar;C:\Users\Jojo\.gradle\caches\modules-2\files-2.1\org.apache.maven\maven-artifact\3.8.5\4433f50c07debefaed0553bd0068f4f48d449313\maven-artifact-3.8.5.jar;C:\Users\Jojo\.gradle\caches\modules-2\files-2.1\net.jodah\typetools\0.6.3\a01aaa6ddaea9ec07ec4f209487b7a46a526283a\typetools-0.6.3.jar;C:\Users\Jojo\.gradle\caches\modules-2\files-2.1\net.minecrell\terminalconsoleappender\1.2.0\96d02cd3b384ff015a8fef4223bcb4ccf1717c95\terminalconsoleappender-1.2.0.jar;C:\Users\Jojo\.gradle\caches\modules-2\files-2.1\org.jline\jline-reader\3.12.1\4382ab1382c7b6f379377ed5f665dc2f6e1218bc\jline-reader-3.12.1.jar;C:\Users\Jojo\.gradle\caches\modules-2\files-2.1\org.jline\jline-terminal\3.12.1\c777448314e050d980a6b697c140f3bfe9eb7416\jline-terminal-3.12.1.jar;C:\Users\Jojo\.gradle\caches\modules-2\files-2.1\org.spongepowered\mixin\0.8.5\9d1c0c3a304ae6697ecd477218fa61b850bf57fc\mixin-0.8.5.jar;C:\Users\Jojo\.gradle\caches\modules-2\files-2.1\net.minecraftforge\JarJarFileSystems\0.3.19\2464eb7d6b9ddb9db36a82cf8a95193e5c6fe020\JarJarFileSystems-0.3.19.jar;C:\Users\Jojo\.gradle\caches\modules-2\files-2.1\com.github.oshi\oshi-core\6.2.2\54f5efc19bca95d709d9a37d19ffcbba3d21c1a6\oshi-core-6.2.2.jar;C:\Users\Jojo\.gradle\caches\modules-2\files-2.1\com.google.code.gson\gson\2.10\dd9b193aef96e973d5a11ab13cd17430c2e4306b\gson-2.10.jar;C:\Users\Jojo\.gradle\caches\modules-2\files-2.1\com.google.guava\failureaccess\1.0.1\1dcf1de382a0bf95a3d8b0849546c88bac1292c9\failureaccess-1.0.1.jar;C:\Users\Jojo\.gradle\caches\modules-2\files-2.1\com.ibm.icu\icu4j\71.1\9e7d3304c23f9ba5cb71915f7cce23231a57a445\icu4j-71.1.jar;C:\Users\Jojo\.gradle\caches\modules-2\files-2.1\com.mojang\authlib\4.0.43\2ff9d747a77570a07a60d32ac77eb6162ad2a2d9\authlib-4.0.43.jar;C:\Users\Jojo\.gradle\caches\modules-2\files-2.1\com.mojang\blocklist\1.0.10\5c685c5ffa94c4cd39496c7184c1d122e515ecef\blocklist-1.0.10.jar;C:\Users\Jojo\.gradle\caches\modules-2\files-2.1\com.mojang\brigadier\1.1.8\5244ce82c3337bba4a196a3ce858bfaecc74404a\brigadier-1.1.8.jar;C:\Users\Jojo\.gradle\caches\modules-2\files-2.1\com.mojang\datafixerupper\6.0.8\3ba4a30557a9b057760af4011f909ba619fc5125\datafixerupper-6.0.8.jar;C:\Users\Jojo\.gradle\caches\modules-2\files-2.1\com.mojang\logging\1.1.1\832b8e6674a9b325a5175a3a6267dfaf34c85139\logging-1.1.1.jar;C:\Users\Jojo\.gradle\caches\modules-2\files-2.1\com.mojang\patchy\2.2.10\da05971b07cbb379d002cf7eaec6a2048211fefc\patchy-2.2.10.jar;C:\Users\Jojo\.gradle\caches\modules-2\files-2.1\com.mojang\text2speech\1.17.9\3cad216e3a7f0c19b4b394388bc9ffc446f13b14\text2speech-1.17.9.jar;C:\Users\Jojo\.gradle\caches\modules-2\files-2.1\org.apache.httpcomponents\httpclient\4.5.13\e5f6cae5ca7ecaac1ec2827a9e2d65ae2869cada\httpclient-4.5.13.jar;C:\Users\Jojo\.gradle\caches\modules-2\files-2.1\commons-codec\commons-codec\1.15\49d94806b6e3dc933dacbd8acb0fdbab8ebd1e5d\commons-codec-1.15.jar;C:\Users\Jojo\.gradle\caches\modules-2\files-2.1\commons-io\commons-io\2.11.0\a2503f302b11ebde7ebc3df41daebe0e4eea3689\commons-io-2.11.0.jar;C:\Users\Jojo\.gradle\caches\modules-2\files-2.1\commons-logging\commons-logging\1.2\4bfc12adfe4842bf07b657f0369c4cb522955686\commons-logging-1.2.jar;C:\Users\Jojo\.gradle\caches\modules-2\files-2.1\io.netty\netty-handler\4.1.82.Final\644041d1fa96a5d3130a29e8978630d716d76e38\netty-handler-4.1.82.Final.jar;C:\Users\Jojo\.gradle\caches\modules-2\files-2.1\io.netty\netty-codec\4.1.82.Final\b77200379acb345a9ffdece1c605e591ac3e4e0a\netty-codec-4.1.82.Final.jar;C:\Users\Jojo\.gradle\caches\modules-2\files-2.1\io.netty\netty-transport-classes-epoll\4.1.82.Final\e7c7dd18deac93105797f30057c912651ea76521\netty-transport-classes-epoll-4.1.82.Final.jar;C:\Users\Jojo\.gradle\caches\modules-2\files-2.1\io.netty\netty-transport-native-unix-common\4.1.82.Final\3e895b35ca1b8a0eca56cacff4c2dde5d2c6abce\netty-transport-native-unix-common-4.1.82.Final.jar;C:\Users\Jojo\.gradle\caches\modules-2\files-2.1\io.netty\netty-transport\4.1.82.Final\e431a218d91acb6476ccad5f5aafde50aa3945ca\netty-transport-4.1.82.Final.jar;C:\Users\Jojo\.gradle\caches\modules-2\files-2.1\io.netty\netty-buffer\4.1.82.Final\a544270cf1ae8b8077082f5036436a9a9971ea71\netty-buffer-4.1.82.Final.jar;C:\Users\Jojo\.gradle\caches\modules-2\files-2.1\io.netty\netty-resolver\4.1.82.Final\38f665ae8dcd29032eea31245ba7806bed2e0fa8\netty-resolver-4.1.82.Final.jar;C:\Users\Jojo\.gradle\caches\modules-2\files-2.1\io.netty\netty-common\4.1.82.Final\22d148e85c3f5ebdacc0ce1f5aabb1d420f73f3\netty-common-4.1.82.Final.jar;C:\Users\Jojo\.gradle\caches\modules-2\files-2.1\it.unimi.dsi\fastutil\8.5.9\bb7ea75ecdb216654237830b3a96d87ad91f8cc5\fastutil-8.5.9.jar;C:\Users\Jojo\.gradle\caches\modules-2\files-2.1\net.java.dev.jna\jna-platform\5.12.1\97406a297c852f4a41e688a176ec675f72e8329\jna-platform-5.12.1.jar;C:\Users\Jojo\.gradle\caches\modules-2\files-2.1\net.java.dev.jna\jna\5.12.1\b1e93a735caea94f503e95e6fe79bf9cdc1e985d\jna-5.12.1.jar;C:\Users\Jojo\.gradle\caches\modules-2\files-2.1\net.sf.jopt-simple\jopt-simple\5.0.4\4fdac2fbe92dfad86aa6e9301736f6b4342a3f5c\jopt-simple-5.0.4.jar;C:\Users\Jojo\.gradle\caches\modules-2\files-2.1\org.apache.commons\commons-compress\1.21\4ec95b60d4e86b5c95a0e919cb172a0af98011ef\commons-compress-1.21.jar;C:\Users\Jojo\.gradle\caches\modules-2\files-2.1\org.apache.commons\commons-lang3\3.12.0\c6842c86792ff03b9f1d1fe2aab8dc23aa6c6f0e\commons-lang3-3.12.0.jar;C:\Users\Jojo\.gradle\caches\modules-2\files-2.1\org.apache.httpcomponents\httpcore\4.4.15\7f2e0c573eaa7a74bac2e89b359e1f73d92a0a1d\httpcore-4.4.15.jar;C:\Users\Jojo\.gradle\caches\modules-2\files-2.1\org.apache.logging.log4j\log4j-core\2.19.0\3b6eeb4de4c49c0fe38a4ee27188ff5fee44d0bb\log4j-core-2.19.0.jar;C:\Users\Jojo\.gradle\caches\modules-2\files-2.1\org.apache.logging.log4j\log4j-slf4j2-impl\2.19.0\5c04bfdd63ce9dceb2e284b81e96b6a70010ee10\log4j-slf4j2-impl-2.19.0.jar;C:\Users\Jojo\.gradle\caches\modules-2\files-2.1\org.apache.logging.log4j\log4j-api\2.19.0\ea1b37f38c327596b216542bc636cfdc0b8036fa\log4j-api-2.19.0.jar;C:\Users\Jojo\.gradle\caches\modules-2\files-2.1\org.joml\joml\1.10.5\22566d58af70ad3d72308bab63b8339906deb649\joml-1.10.5.jar;C:\Users\Jojo\.gradle\caches\modules-2\files-2.1\org.lwjgl\lwjgl-glfw\3.3.1\cbac1b8d30cb4795149c1ef540f912671a8616d0\lwjgl-glfw-3.3.1.jar;C:\Users\Jojo\.gradle\caches\modules-2\files-2.1\org.lwjgl\lwjgl-glfw\3.3.1\ed892f945cf7e79c8756796f32d00fa4ceaf573b\lwjgl-glfw-3.3.1-natives-windows.jar;C:\Users\Jojo\.gradle\caches\modules-2\files-2.1\org.lwjgl\lwjgl-glfw\3.3.1\beda65ee503443e60aa196d58ed31f8d001dc22a\lwjgl-glfw-3.3.1-natives-windows-arm64.jar;C:\Users\Jojo\.gradle\caches\modules-2\files-2.1\org.lwjgl\lwjgl-glfw\3.3.1\b997e3391d6ce8f05487e7335d95c606043884a1\lwjgl-glfw-3.3.1-natives-windows-x86.jar;C:\Users\Jojo\.gradle\caches\modules-2\files-2.1\org.lwjgl\lwjgl-jemalloc\3.3.1\a817bcf213db49f710603677457567c37d53e103\lwjgl-jemalloc-3.3.1.jar;C:\Users\Jojo\.gradle\caches\modules-2\files-2.1\org.lwjgl\lwjgl-jemalloc\3.3.1\948a89b76a16aa324b046ae9308891216ffce5f9\lwjgl-jemalloc-3.3.1-natives-windows.jar;C:\Users\Jojo\.gradle\caches\modules-2\files-2.1\org.lwjgl\lwjgl-jemalloc\3.3.1\cae85c4edb219c88b6a0c26a87955ad98dc9519d\lwjgl-jemalloc-3.3.1-natives-windows-arm64.jar;C:\Users\Jojo\.gradle\caches\modules-2\files-2.1\org.lwjgl\lwjgl-jemalloc\3.3.1\fb476c8ec110e1c137ad3ce8a7f7bfe6b11c6324\lwjgl-jemalloc-3.3.1-natives-windows-x86.jar;C:\Users\Jojo\.gradle\caches\modules-2\files-2.1\org.lwjgl\lwjgl-openal\3.3.1\2623a6b8ae1dfcd880738656a9f0243d2e6840bd\lwjgl-openal-3.3.1.jar;C:\Users\Jojo\.gradle\caches\modules-2\files-2.1\org.lwjgl\lwjgl-openal\3.3.1\30a474d0e57193d7bc128849a3ab66bc9316fdb1\lwjgl-openal-3.3.1-natives-windows.jar;C:\Users\Jojo\.gradle\caches\modules-2\files-2.1\org.lwjgl\lwjgl-openal\3.3.1\40d65f1a7368a2aa47336f9cb69f5a190cf9975a\lwjgl-openal-3.3.1-natives-windows-arm64.jar;C:\Users\Jojo\.gradle\caches\modules-2\files-2.1\org.lwjgl\lwjgl-openal\3.3.1\888349f7b1be6fbae58bf8edfb9ef12def04c4e3\lwjgl-openal-3.3.1-natives-windows-x86.jar;C:\Users\Jojo\.gradle\caches\modules-2\files-2.1\org.lwjgl\lwjgl-opengl\3.3.1\831a5533a21a5f4f81bbc51bb13e9899319b5411\lwjgl-opengl-3.3.1.jar;C:\Users\Jojo\.gradle\caches\modules-2\files-2.1\org.lwjgl\lwjgl-opengl\3.3.1\c1807e9bd571402787d7e37e3029776ae2513bb8\lwjgl-opengl-3.3.1-natives-windows.jar;C:\Users\Jojo\.gradle\caches\modules-2\files-2.1\org.lwjgl\lwjgl-opengl\3.3.1\527d78f1e9056aff3ed02ce93019c73c5e8f1721\lwjgl-opengl-3.3.1-natives-windows-arm64.jar;C:\Users\Jojo\.gradle\caches\modules-2\files-2.1\org.lwjgl\lwjgl-opengl\3.3.1\deef3eb9b178ff2ff3ce893cc72ae741c3a17974\lwjgl-opengl-3.3.1-natives-windows-x86.jar;C:\Users\Jojo\.gradle\caches\modules-2\files-2.1\org.lwjgl\lwjgl-stb\3.3.1\b119297cf8ed01f247abe8685857f8e7fcf5980f\lwjgl-stb-3.3.1.jar;C:\Users\Jojo\.gradle\caches\modules-2\files-2.1\org.lwjgl\lwjgl-stb\3.3.1\86315914ac119efdb02dc9e8e978ade84f1702af\lwjgl-stb-3.3.1-natives-windows.jar;C:\Users\Jojo\.gradle\caches\modules-2\files-2.1\org.lwjgl\lwjgl-stb\3.3.1\fde63cdd2605c00636721a6c8b961e41d1f6b247\lwjgl-stb-3.3.1-natives-windows-arm64.jar;C:\Users\Jojo\.gradle\caches\modules-2\files-2.1\org.lwjgl\lwjgl-stb\3.3.1\a8d41f419eecb430b7c91ea2ce2c5c451cae2091\lwjgl-stb-3.3.1-natives-windows-x86.jar;C:\Users\Jojo\.gradle\caches\modules-2\files-2.1\org.lwjgl\lwjgl-tinyfd\3.3.1\ff1914111ef2e3e0110ef2dabc8d8cdaad82347\lwjgl-tinyfd-3.3.1.jar;C:\Users\Jojo\.gradle\caches\modules-2\files-2.1\org.lwjgl\lwjgl-tinyfd\3.3.1\a5d830475ec0958d9fdba1559efa99aef211e6ff\lwjgl-tinyfd-3.3.1-natives-windows.jar;C:\Users\Jojo\.gradle\caches\modules-2\files-2.1\org.lwjgl\lwjgl-tinyfd\3.3.1\83a5e780df610829ff3a737822b4f931cffecd91\lwjgl-tinyfd-3.3.1-natives-windows-arm64.jar;C:\Users\Jojo\.gradle\caches\modules-2\files-2.1\org.lwjgl\lwjgl-tinyfd\3.3.1\842eedd876fae354abc308c98a263f6bbc9e8a4d\lwjgl-tinyfd-3.3.1-natives-windows-x86.jar;C:\Users\Jojo\.gradle\caches\modules-2\files-2.1\org.lwjgl\lwjgl\3.3.1\ae58664f88e18a9bb2c77b063833ca7aaec484cb\lwjgl-3.3.1.jar;C:\Users\Jojo\.gradle\caches\modules-2\files-2.1\org.lwjgl\lwjgl\3.3.1\36c37f16ab611b3aa11f3bcf80b1d509b4ce6b\lwjgl-3.3.1-natives-windows.jar;C:\Users\Jojo\.gradle\caches\modules-2\files-2.1\org.lwjgl\lwjgl\3.3.1\f46cadcf95675908fd3a550d63d9d709cb68998\lwjgl-3.3.1-natives-windows-arm64.jar;C:\Users\Jojo\.gradle\caches\modules-2\files-2.1\org.lwjgl\lwjgl\3.3.1\3b14f4beae9dd39791ec9e12190a9380cd8a3ce6\lwjgl-3.3.1-natives-windows-x86.jar;C:\Users\Jojo\.gradle\caches\modules-2\files-2.1\com.machinezoo.noexception\noexception\1.7.1\b65330c98e38a1f915fa54a6e5eca496505e3f0a\noexception-1.7.1.jar;C:\Users\Jojo\.gradle\caches\modules-2\files-2.1\org.slf4j\slf4j-simple\1.7.30\e606eac955f55ecf1d8edcccba04eb8ac98088dd\slf4j-simple-1.7.30.jar;C:\Users\Jojo\.gradle\caches\modules-2\files-2.1\org.slf4j\slf4j-api\2.0.1\f48d81adce2abf5ad3cfe463df517952749e03bc\slf4j-api-2.0.1.jar;C:\Users\Jojo\.gradle\caches\modules-2\files-2.1\net.minecraftforge\srgutils\0.4.11\fbad1341ffdb47d276bbdc40ecb06da49e053e74\srgutils-0.4.11.jar;C:\Users\Jojo\.gradle\caches\modules-2\files-2.1\org.codehaus.plexus\plexus-utils\3.3.0\cf43b5391de623b36fe066a21127baef82c64022\plexus-utils-3.3.0.jar;C:\Users\Jojo\.gradle\caches\modules-2\files-2.1\com.google.guava\listenablefuture\9999.0-empty-to-avoid-conflict-with-guava\b421526c5f297295adef1c886e5246c39d4ac629\listenablefuture-9999.0-empty-to-avoid-conflict-with-guava.jar;C:\Users\Jojo\.gradle\caches\modules-2\files-2.1\org.checkerframework\checker-qual\3.12.0\d5692f0526415fcc6de94bb5bfbd3afd9dd3b3e5\checker-qual-3.12.0.jar;C:\Users\Jojo\.gradle\caches\modules-2\files-2.1\com.google.errorprone\error_prone_annotations\2.11.0\c5a0ace696d3f8b1c1d8cc036d8c03cc0cbe6b69\error_prone_annotations-2.11.0.jar;C:\Users\Jojo\.gradle\caches\modules-2\files-2.1\com.google.j2objc\j2objc-annotations\1.3\ba035118bc8bac37d7eff77700720999acd9986d\j2objc-annotations-1.3.jar;C:\Users\Jojo\.gradle\caches\modules-2\files-2.1\org.antlr\ST4\4.3\92f2c1ad8d84abcbeead6cf7f2c53a04166293c2\ST4-4.3.jar;C:\Users\Jojo\.gradle\caches\modules-2\files-2.1\org.antlr\antlr-runtime\3.5.2\cd9cd41361c155f3af0f653009dcecb08d8b4afd\antlr-runtime-3.5.2.jar;C:\Users\Jojo\.gradle\caches\modules-2\files-2.1\org.abego.treelayout\org.abego.treelayout.core\1.0.3\457216e8e6578099ae63667bb1e4439235892028\org.abego.treelayout.core-1.0.3.jar;C:\Users\Jojo\.gradle\caches\modules-2\files-2.1\org.glassfish\javax.json\1.0.4\3178f73569fd7a1e5ffc464e680f7a8cc784b85a\javax.json-1.0.4.jar cpw.mods.bootstraplauncher.BootstrapLauncher --launchTarget forgeclientuserdev --version MOD_DEV --assetIndex 5 --assetsDir C:\Users\Jojo\.gradle\caches\forge_gradle\assets --gameDir . --fml.forgeVersion 47.3.0 --fml.mcVersion 1.20.1 --fml.forgeGroup net.minecraftforge --fml.mcpVersion 20230612.114412 Successfully started process 'command 'C:\Program Files\Eclipse Adoptium\jdk-17.0.6.10-hotspot\bin\java.exe'' 2024-09-18 17:20:36,473 main WARN Advanced terminal features are not available in this environment [17:20:36] [main/INFO] [cp.mo.mo.Launcher/MODLAUNCHER]: ModLauncher running: args [--launchTarget, forgeclientuserdev, --version, MOD_DEV, --assetIndex, 5, --assetsDir, C:\Users\Jojo\.gradle\caches\forge_gradle\assets, --gameDir, ., --fml.forgeVersion, 47.3.0, --fml.mcVersion, 1.20.1, --fml.forgeGroup, net.minecraftforge, --fml.mcpVersion, 20230612.114412] [17:20:36] [main/INFO] [cp.mo.mo.Launcher/MODLAUNCHER]: ModLauncher 10.0.9+10.0.9+main.dcd20f30 starting: java version 17.0.6 by Eclipse Adoptium; OS Windows 11 arch amd64 version 10.0 [17:20:36] [main/DEBUG] [cp.mo.mo.LaunchServiceHandler/MODLAUNCHER]: Found launch services [fmlclientdev,forgeclient,minecraft,forgegametestserverdev,fmlserveruserdev,fmlclient,fmldatauserdev,forgeserverdev,forgeserveruserdev,forgeclientdev,forgeclientuserdev,forgeserver,forgedatadev,fmlserver,fmlclientuserdev,fmlserverdev,forgedatauserdev,testharness,forgegametestserveruserdev] [17:20:36] [main/DEBUG] [cp.mo.mo.NameMappingServiceHandler/MODLAUNCHER]: Found naming services : [srgtomcp] [17:20:36] [main/DEBUG] [cp.mo.mo.LaunchPluginHandler/MODLAUNCHER]: Found launch plugins: [mixin,eventbus,slf4jfixer,object_holder_definalize,runtime_enum_extender,capability_token_subclass,accesstransformer,runtimedistcleaner] [17:20:36] [main/DEBUG] [cp.mo.mo.TransformationServicesHandler/MODLAUNCHER]: Discovering transformation services [17:20:36] [main/DEBUG] [ne.mi.fm.lo.FMLPaths/CORE]: Path GAMEDIR is C:\Users\Jojo\Desktop\modujem mc\run [17:20:36] [main/DEBUG] [ne.mi.fm.lo.FMLPaths/CORE]: Path MODSDIR is C:\Users\Jojo\Desktop\modujem mc\run\mods [17:20:36] [main/DEBUG] [ne.mi.fm.lo.FMLPaths/CORE]: Path CONFIGDIR is C:\Users\Jojo\Desktop\modujem mc\run\config [17:20:36] [main/DEBUG] [ne.mi.fm.lo.FMLPaths/CORE]: Path FMLCONFIG is C:\Users\Jojo\Desktop\modujem mc\run\config\fml.toml [17:20:36] [main/DEBUG] [cp.mo.mo.TransformationServicesHandler/MODLAUNCHER]: Found additional transformation services from discovery services: [17:20:36] [main/INFO] [ne.mi.fm.lo.ImmediateWindowHandler/]: Loading ImmediateWindowProvider fmlearlywindow [17:20:36] [main/INFO] [EARLYDISPLAY/]: Trying GL version 4.6 [17:20:37] [main/INFO] [EARLYDISPLAY/]: Requested GL version 4.6 got version 4.6 [17:20:37] [main/DEBUG] [cp.mo.mo.TransformationServicesHandler/MODLAUNCHER]: Found transformer services : [mixin,fml] [17:20:37] [main/DEBUG] [cp.mo.mo.TransformationServicesHandler/MODLAUNCHER]: Transformation services loading [17:20:37] [main/DEBUG] [cp.mo.mo.TransformationServiceDecorator/MODLAUNCHER]: Loading service mixin [17:20:37] [main/DEBUG] [cp.mo.mo.TransformationServiceDecorator/MODLAUNCHER]: Loaded service mixin [17:20:37] [main/DEBUG] [cp.mo.mo.TransformationServiceDecorator/MODLAUNCHER]: Loading service fml [17:20:37] [main/DEBUG] [ne.mi.fm.lo.LauncherVersion/CORE]: Found FMLLauncher version 1.0 [17:20:37] [main/DEBUG] [ne.mi.fm.lo.FMLLoader/CORE]: FML 1.0 loading [17:20:37] [main/DEBUG] [ne.mi.fm.lo.FMLLoader/CORE]: FML found ModLauncher version : 10.0.9+10.0.9+main.dcd20f30 [17:20:37] [main/DEBUG] [ne.mi.fm.lo.FMLLoader/CORE]: FML found AccessTransformer version : 8.0.4+66+master.c09db6d7 [17:20:37] [main/DEBUG] [ne.mi.fm.lo.FMLLoader/CORE]: FML found EventBus version : 6.0.5+6.0.5+master.eb8e549b [17:20:37] [main/DEBUG] [ne.mi.fm.lo.FMLLoader/CORE]: Found Runtime Dist Cleaner [17:20:37] [main/DEBUG] [ne.mi.fm.lo.FMLLoader/CORE]: FML found CoreMod version : 5.1.6 [17:20:37] [main/DEBUG] [ne.mi.fm.lo.FMLLoader/CORE]: Found ForgeSPI package implementation version 7.0.1+7.0.1+master.d2b38bf6 [17:20:37] [main/DEBUG] [ne.mi.fm.lo.FMLLoader/CORE]: Found ForgeSPI package specification 5 [17:20:37] [main/DEBUG] [cp.mo.mo.TransformationServiceDecorator/MODLAUNCHER]: Loaded service fml [17:20:37] [main/DEBUG] [cp.mo.mo.TransformationServicesHandler/MODLAUNCHER]: Configuring option handling for services [17:20:37] [main/DEBUG] [cp.mo.mo.TransformationServicesHandler/MODLAUNCHER]: Transformation services initializing [17:20:37] [main/DEBUG] [cp.mo.mo.TransformationServiceDecorator/MODLAUNCHER]: Initializing transformation service mixin [17:20:37] [main/DEBUG] [mixin/]: MixinService [ModLauncher] was successfully booted in cpw.mods.cl.ModuleClassLoader@70e8f8e [17:20:37] [main/INFO] [mixin/]: SpongePowered MIXIN Subsystem Version=0.8.5 Source=union:/C:/Users/Jojo/.gradle/caches/modules-2/files-2.1/org.spongepowered/mixin/0.8.5/9d1c0c3a304ae6697ecd477218fa61b850bf57fc/mixin-0.8.5.jar%23128!/ Service=ModLauncher Env=CLIENT [17:20:37] [main/DEBUG] [mixin/]: Initialising Mixin Platform Manager [17:20:37] [main/DEBUG] [mixin/]: Adding mixin platform agents for container ModLauncher Root Container(ModLauncher:4f56a0a2) [17:20:37] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for ModLauncher Root Container(ModLauncher:4f56a0a2) [17:20:37] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container ModLauncher Root Container(ModLauncher:4f56a0a2) [17:20:37] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for ModLauncher Root Container(ModLauncher:4f56a0a2) [17:20:37] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container ModLauncher Root Container(ModLauncher:4f56a0a2) [17:20:37] [main/DEBUG] [cp.mo.mo.TransformationServiceDecorator/MODLAUNCHER]: Initialized transformation service mixin [17:20:37] [main/DEBUG] [cp.mo.mo.TransformationServiceDecorator/MODLAUNCHER]: Initializing transformation service fml [17:20:37] [main/DEBUG] [ne.mi.fm.lo.FMLServiceProvider/CORE]: Setting up basic FML game directories [17:20:37] [main/DEBUG] [ne.mi.fm.lo.FMLPaths/CORE]: Path GAMEDIR is C:\Users\Jojo\Desktop\modujem mc\run [17:20:37] [main/DEBUG] [ne.mi.fm.lo.FMLPaths/CORE]: Path MODSDIR is C:\Users\Jojo\Desktop\modujem mc\run\mods [17:20:37] [main/DEBUG] [ne.mi.fm.lo.FMLPaths/CORE]: Path CONFIGDIR is C:\Users\Jojo\Desktop\modujem mc\run\config [17:20:37] [main/DEBUG] [ne.mi.fm.lo.FMLPaths/CORE]: Path FMLCONFIG is C:\Users\Jojo\Desktop\modujem mc\run\config\fml.toml [17:20:37] [main/DEBUG] [ne.mi.fm.lo.FMLServiceProvider/CORE]: Loading configuration [17:20:37] [pool-2-thread-1/INFO] [EARLYDISPLAY/]: GL info: AMD Radeon RX 6700 XT GL version 4.6.0 Core Profile Context 23.7.2.230718, ATI Technologies Inc. [17:20:37] [main/DEBUG] [ne.mi.fm.lo.FMLServiceProvider/CORE]: Preparing ModFile [17:20:37] [main/DEBUG] [ne.mi.fm.lo.FMLServiceProvider/CORE]: Preparing launch handler [17:20:37] [main/DEBUG] [ne.mi.fm.lo.FMLLoader/CORE]: Using forgeclientuserdev as launch service [17:20:37] [main/DEBUG] [ne.mi.fm.lo.FMLLoader/CORE]: Received command line version data : VersionInfo[forgeVersion=47.3.0, mcVersion=1.20.1, mcpVersion=20230612.114412, forgeGroup=net.minecraftforge] [17:20:37] [main/DEBUG] [cp.mo.mo.TransformationServiceDecorator/MODLAUNCHER]: Initialized transformation service fml [17:20:37] [main/DEBUG] [cp.mo.mo.NameMappingServiceHandler/MODLAUNCHER]: Current naming domain is 'mcp' [17:20:37] [main/DEBUG] [cp.mo.mo.NameMappingServiceHandler/MODLAUNCHER]: Identified name mapping providers {srg=srgtomcp:1234} [17:20:37] [main/DEBUG] [cp.mo.mo.TransformationServicesHandler/MODLAUNCHER]: Transformation services begin scanning [17:20:37] [main/DEBUG] [cp.mo.mo.TransformationServiceDecorator/MODLAUNCHER]: Beginning scan trigger - transformation service mixin [17:20:37] [main/DEBUG] [cp.mo.mo.TransformationServiceDecorator/MODLAUNCHER]: End scan trigger - transformation service mixin [17:20:37] [main/DEBUG] [cp.mo.mo.TransformationServiceDecorator/MODLAUNCHER]: Beginning scan trigger - transformation service fml [17:20:37] [main/DEBUG] [ne.mi.fm.lo.FMLServiceProvider/CORE]: Initiating mod scan [17:20:37] [main/DEBUG] [ne.mi.fm.lo.mo.ModListHandler/CORE]: Found mod coordinates from lists: [] [17:20:37] [main/DEBUG] [ne.mi.fm.lo.mo.ModDiscoverer/CORE]: Found Mod Locators : (mods folder:null),(maven libs:null),(exploded directory:null),(minecraft:null),(userdev classpath:null) [17:20:37] [main/DEBUG] [ne.mi.fm.lo.mo.ModDiscoverer/CORE]: Found Dependency Locators : (JarInJar:null) [17:20:37] [main/DEBUG] [ne.mi.fm.lo.ta.CommonLaunchHandler/CORE]: Got mod coordinates anytngmod%%C:\Users\Jojo\Desktop\modujem mc\build\resources\main;anytngmod%%C:\Users\Jojo\Desktop\modujem mc\build\classes\java\main from env [17:20:37] [main/DEBUG] [ne.mi.fm.lo.ta.CommonLaunchHandler/CORE]: Found supplied mod coordinates [{anytngmod=[C:\Users\Jojo\Desktop\modujem mc\build\resources\main, C:\Users\Jojo\Desktop\modujem mc\build\classes\java\main]}] [17:20:37] [main/DEBUG] [ne.mi.fm.lo.mo.ModFileInfo/LOADING]: Found valid mod file forge-1.20.1-47.3.0_mapped_parchment_2023.09.03-1.20.1.jar with {minecraft} mods - versions {1.20.1} [17:20:37] [main/DEBUG] [ne.mi.fm.lo.mo.ModFileParser/LOADING]: Considering mod file candidate C:\Users\Jojo\.gradle\caches\modules-2\files-2.1\net.minecraftforge\javafmllanguage\1.20.1-47.3.0\d7ebc62120f202109e300e084ca1a31a7b946a62\javafmllanguage-1.20.1-47.3.0.jar [17:20:37] [main/WARN] [ne.mi.fm.lo.mo.ModFileParser/LOADING]: Mod file C:\Users\Jojo\.gradle\caches\modules-2\files-2.1\net.minecraftforge\javafmllanguage\1.20.1-47.3.0\d7ebc62120f202109e300e084ca1a31a7b946a62\javafmllanguage-1.20.1-47.3.0.jar is missing mods.toml file [17:20:37] [main/DEBUG] [ne.mi.fm.lo.mo.ModFileParser/LOADING]: Considering mod file candidate C:\Users\Jojo\.gradle\caches\modules-2\files-2.1\net.minecraftforge\lowcodelanguage\1.20.1-47.3.0\1bf3e845ea0ce750096da8c71c8364b188ab74d4\lowcodelanguage-1.20.1-47.3.0.jar [17:20:37] [main/WARN] [ne.mi.fm.lo.mo.ModFileParser/LOADING]: Mod file C:\Users\Jojo\.gradle\caches\modules-2\files-2.1\net.minecraftforge\lowcodelanguage\1.20.1-47.3.0\1bf3e845ea0ce750096da8c71c8364b188ab74d4\lowcodelanguage-1.20.1-47.3.0.jar is missing mods.toml file [17:20:37] [main/DEBUG] [ne.mi.fm.lo.mo.ModFileParser/LOADING]: Considering mod file candidate C:\Users\Jojo\.gradle\caches\modules-2\files-2.1\net.minecraftforge\mclanguage\1.20.1-47.3.0\6093682e943ddccbabf70539319d7f2fe64db2e7\mclanguage-1.20.1-47.3.0.jar [17:20:37] [main/WARN] [ne.mi.fm.lo.mo.ModFileParser/LOADING]: Mod file C:\Users\Jojo\.gradle\caches\modules-2\files-2.1\net.minecraftforge\mclanguage\1.20.1-47.3.0\6093682e943ddccbabf70539319d7f2fe64db2e7\mclanguage-1.20.1-47.3.0.jar is missing mods.toml file [17:20:37] [main/DEBUG] [ne.mi.fm.lo.mo.ModFileParser/LOADING]: Considering mod file candidate C:\Users\Jojo\.gradle\caches\modules-2\files-2.1\net.minecraftforge\fmlcore\1.20.1-47.3.0\3b6be96aba3e323f3c918e8ef6a96312d82d76ad\fmlcore-1.20.1-47.3.0.jar [17:20:37] [main/WARN] [ne.mi.fm.lo.mo.ModFileParser/LOADING]: Mod file C:\Users\Jojo\.gradle\caches\modules-2\files-2.1\net.minecraftforge\fmlcore\1.20.1-47.3.0\3b6be96aba3e323f3c918e8ef6a96312d82d76ad\fmlcore-1.20.1-47.3.0.jar is missing mods.toml file [17:20:37] [main/DEBUG] [ne.mi.fm.lo.mo.ModFileParser/LOADING]: Considering mod file candidate C:\Users\Jojo\Desktop\modujem mc\build\resources\main Exception in thread "main" com.electronwill.nightconfig.core.io.ParsingException: Invalid character ']' after a table declaration. at MC-BOOTSTRAP/[email protected]/com.electronwill.nightconfig.toml.TableParser.parseTableName(TableParser.java:131) at MC-BOOTSTRAP/[email protected]/com.electronwill.nightconfig.toml.TomlParser.parse(TomlParser.java:51) at MC-BOOTSTRAP/[email protected]/com.electronwill.nightconfig.toml.TomlParser.parse(TomlParser.java:37) at MC-BOOTSTRAP/[email protected]/com.electronwill.nightconfig.core.io.ConfigParser.parse(ConfigParser.java:113) at MC-BOOTSTRAP/[email protected]/com.electronwill.nightconfig.core.io.ConfigParser.parse(ConfigParser.java:219) at MC-BOOTSTRAP/[email protected]/com.electronwill.nightconfig.core.io.ConfigParser.parse(ConfigParser.java:202) at MC-BOOTSTRAP/[email protected]/com.electronwill.nightconfig.core.file.WriteAsyncFileConfig.load(WriteAsyncFileConfig.java:138) at MC-BOOTSTRAP/[email protected]/net.minecraftforge.fml.loading.moddiscovery.ModFileParser.modsTomlParser(ModFileParser.java:44) at MC-BOOTSTRAP/[email protected]/net.minecraftforge.fml.loading.moddiscovery.ModFileParser.readModList(ModFileParser.java:31) at MC-BOOTSTRAP/[email protected]/net.minecraftforge.fml.loading.moddiscovery.ModFile.<init>(ModFile.java:79) at MC-BOOTSTRAP/[email protected]/net.minecraftforge.fml.loading.moddiscovery.ModFile.<init>(ModFile.java:68) at MC-BOOTSTRAP/[email protected]/net.minecraftforge.fml.loading.moddiscovery.AbstractModProvider.createMod(AbstractModProvider.java:52) at MC-BOOTSTRAP/[email protected]/net.minecraftforge.fml.loading.moddiscovery.MinecraftLocator.lambda$scanMods$6(MinecraftLocator.java:43) at java.base/java.util.stream.ReferencePipeline$3$1.accept(ReferencePipeline.java:197) at java.base/java.util.AbstractList$RandomAccessSpliterator.forEachRemaining(AbstractList.java:720) at java.base/java.util.stream.AbstractPipeline.copyInto(AbstractPipeline.java:509) at java.base/java.util.stream.AbstractPipeline.wrapAndCopyInto(AbstractPipeline.java:499) at java.base/java.util.stream.StreamSpliterators$WrappingSpliterator.forEachRemaining(StreamSpliterators.java:310) at java.base/java.util.stream.Streams$ConcatSpliterator.forEachRemaining(Streams.java:735) at java.base/java.util.stream.AbstractPipeline.copyInto(AbstractPipeline.java:509) at java.base/java.util.stream.AbstractPipeline.wrapAndCopyInto(AbstractPipeline.java:499) at java.base/java.util.stream.AbstractPipeline.evaluate(AbstractPipeline.java:575) at java.base/java.util.stream.AbstractPipeline.evaluateToArrayNode(AbstractPipeline.java:260) at java.base/java.util.stream.ReferencePipeline.toArray(ReferencePipeline.java:616) at java.base/java.util.stream.ReferencePipeline.toArray(ReferencePipeline.java:622) at java.base/java.util.stream.ReferencePipeline.toList(ReferencePipeline.java:627) at MC-BOOTSTRAP/[email protected]/net.minecraftforge.fml.loading.moddiscovery.MinecraftLocator.scanMods(MinecraftLocator.java:47) at MC-BOOTSTRAP/[email protected]/net.minecraftforge.fml.loading.moddiscovery.ModDiscoverer.discoverMods(ModDiscoverer.java:75) at MC-BOOTSTRAP/[email protected]/net.minecraftforge.fml.loading.FMLLoader.beginModScan(FMLLoader.java:164) at MC-BOOTSTRAP/[email protected]/net.minecraftforge.fml.loading.FMLServiceProvider.beginScanning(FMLServiceProvider.java:86) at MC-BOOTSTRAP/[email protected]/cpw.mods.modlauncher.TransformationServiceDecorator.runScan(TransformationServiceDecorator.java:112) at MC-BOOTSTRAP/[email protected]/cpw.mods.modlauncher.TransformationServicesHandler.lambda$runScanningTransformationServices$8(TransformationServicesHandler.java:100) at java.base/java.util.stream.ReferencePipeline$3$1.accept(ReferencePipeline.java:197) at java.base/java.util.HashMap$ValueSpliterator.forEachRemaining(HashMap.java:1779) at java.base/java.util.stream.AbstractPipeline.copyInto(AbstractPipeline.java:509) at java.base/java.util.stream.AbstractPipeline.wrapAndCopyInto(AbstractPipeline.java:499) at java.base/java.util.stream.AbstractPipeline.evaluate(AbstractPipeline.java:575) at java.base/java.util.stream.AbstractPipeline.evaluateToArrayNode(AbstractPipeline.java:260) at java.base/java.util.stream.ReferencePipeline.toArray(ReferencePipeline.java:616) at java.base/java.util.stream.ReferencePipeline.toArray(ReferencePipeline.java:622) at java.base/java.util.stream.ReferencePipeline.toList(ReferencePipeline.java:627) at MC-BOOTSTRAP/[email protected]/cpw.mods.modlauncher.TransformationServicesHandler.runScanningTransformationServices(TransformationServicesHandler.java:102) at MC-BOOTSTRAP/[email protected]/cpw.mods.modlauncher.TransformationServicesHandler.initializeTransformationServices(TransformationServicesHandler.java:55) at MC-BOOTSTRAP/[email protected]/cpw.mods.modlauncher.Launcher.run(Launcher.java:88) at MC-BOOTSTRAP/[email protected]/cpw.mods.modlauncher.Launcher.main(Launcher.java:78) at MC-BOOTSTRAP/[email protected]/cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:26) at MC-BOOTSTRAP/[email protected]/cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:23) at [email protected]/cpw.mods.bootstraplauncher.BootstrapLauncher.main(BootstrapLauncher.java:141) > Task :runClient FAILED 10 actionable tasks: 4 executed, 6 up-to-date Watched directory hierarchies: [C:\Users\Jojo\Desktop\modujem mc] FAILURE: Build failed with an exception. * What went wrong: Execution failed for task ':runClient'. > Process 'command 'C:\Program Files\Eclipse Adoptium\jdk-17.0.6.10-hotspot\bin\java.exe'' finished with non-zero exit value 1 * Try: > Run with --debug option to get more log output. > Run with --scan to get full insights. > Get more help at https://help.gradle.org. * Exception is: org.gradle.api.tasks.TaskExecutionException: Execution failed for task ':runClient'. at org.gradle.api.internal.tasks.execution.ExecuteActionsTaskExecuter.lambda$executeIfValid$1(ExecuteActionsTaskExecuter.java:130) at org.gradle.internal.Try$Failure.ifSuccessfulOrElse(Try.java:282) at org.gradle.api.internal.tasks.execution.ExecuteActionsTaskExecuter.executeIfValid(ExecuteActionsTaskExecuter.java:128) at org.gradle.api.internal.tasks.execution.ExecuteActionsTaskExecuter.execute(ExecuteActionsTaskExecuter.java:116) at org.gradle.api.internal.tasks.execution.FinalizePropertiesTaskExecuter.execute(FinalizePropertiesTaskExecuter.java:46) at org.gradle.api.internal.tasks.execution.ResolveTaskExecutionModeExecuter.execute(ResolveTaskExecutionModeExecuter.java:51) at org.gradle.api.internal.tasks.execution.SkipTaskWithNoActionsExecuter.execute(SkipTaskWithNoActionsExecuter.java:57) at org.gradle.api.internal.tasks.execution.SkipOnlyIfTaskExecuter.execute(SkipOnlyIfTaskExecuter.java:74) at org.gradle.api.internal.tasks.execution.CatchExceptionTaskExecuter.execute(CatchExceptionTaskExecuter.java:36) at org.gradle.api.internal.tasks.execution.EventFiringTaskExecuter$1.executeTask(EventFiringTaskExecuter.java:77) at org.gradle.api.internal.tasks.execution.EventFiringTaskExecuter$1.call(EventFiringTaskExecuter.java:55) at org.gradle.api.internal.tasks.execution.EventFiringTaskExecuter$1.call(EventFiringTaskExecuter.java:52) at org.gradle.internal.operations.DefaultBuildOperationRunner$CallableBuildOperationWorker.execute(DefaultBuildOperationRunner.java:209) at org.gradle.internal.operations.DefaultBuildOperationRunner$CallableBuildOperationWorker.execute(DefaultBuildOperationRunner.java:204) at org.gradle.internal.operations.DefaultBuildOperationRunner$2.execute(DefaultBuildOperationRunner.java:66) at org.gradle.internal.operations.DefaultBuildOperationRunner$2.execute(DefaultBuildOperationRunner.java:59) at org.gradle.internal.operations.DefaultBuildOperationRunner.execute(DefaultBuildOperationRunner.java:166) at org.gradle.internal.operations.DefaultBuildOperationRunner.execute(DefaultBuildOperationRunner.java:59) at org.gradle.internal.operations.DefaultBuildOperationRunner.call(DefaultBuildOperationRunner.java:53) at org.gradle.api.internal.tasks.execution.EventFiringTaskExecuter.execute(EventFiringTaskExecuter.java:52) at org.gradle.execution.plan.LocalTaskNodeExecutor.execute(LocalTaskNodeExecutor.java:42) at org.gradle.execution.taskgraph.DefaultTaskExecutionGraph$InvokeNodeExecutorsAction.execute(DefaultTaskExecutionGraph.java:331) at org.gradle.execution.taskgraph.DefaultTaskExecutionGraph$InvokeNodeExecutorsAction.execute(DefaultTaskExecutionGraph.java:318) at org.gradle.execution.taskgraph.DefaultTaskExecutionGraph$BuildOperationAwareExecutionAction.lambda$execute$0(DefaultTaskExecutionGraph.java:314) at org.gradle.internal.operations.CurrentBuildOperationRef.with(CurrentBuildOperationRef.java:80) at org.gradle.execution.taskgraph.DefaultTaskExecutionGraph$BuildOperationAwareExecutionAction.execute(DefaultTaskExecutionGraph.java:314) at org.gradle.execution.taskgraph.DefaultTaskExecutionGraph$BuildOperationAwareExecutionAction.execute(DefaultTaskExecutionGraph.java:303) at org.gradle.execution.plan.DefaultPlanExecutor$ExecutorWorker.execute(DefaultPlanExecutor.java:463) at org.gradle.execution.plan.DefaultPlanExecutor$ExecutorWorker.run(DefaultPlanExecutor.java:380) at org.gradle.internal.concurrent.ExecutorPolicy$CatchAndRecordFailures.onExecute(ExecutorPolicy.java:64) at org.gradle.internal.concurrent.AbstractManagedExecutor$1.run(AbstractManagedExecutor.java:47) Caused by: org.gradle.process.internal.ExecException: Process 'command 'C:\Program Files\Eclipse Adoptium\jdk-17.0.6.10-hotspot\bin\java.exe'' finished with non-zero exit value 1 at org.gradle.process.internal.DefaultExecHandle$ExecResultImpl.assertNormalExitValue(DefaultExecHandle.java:442) at org.gradle.process.internal.DefaultJavaExecAction.execute(DefaultJavaExecAction.java:52) at org.gradle.api.tasks.JavaExec.exec(JavaExec.java:165) at net.minecraftforge.gradle.common.util.runs.MinecraftRunTask.exec(MinecraftRunTask.java:56) at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at org.gradle.internal.reflect.JavaMethod.invoke(JavaMethod.java:125) at org.gradle.api.internal.project.taskfactory.StandardTaskAction.doExecute(StandardTaskAction.java:58) at org.gradle.api.internal.project.taskfactory.StandardTaskAction.execute(StandardTaskAction.java:51) at org.gradle.api.internal.project.taskfactory.StandardTaskAction.execute(StandardTaskAction.java:29) at org.gradle.api.internal.tasks.execution.TaskExecution$3.run(TaskExecution.java:244) at org.gradle.internal.operations.DefaultBuildOperationRunner$1.execute(DefaultBuildOperationRunner.java:29) at org.gradle.internal.operations.DefaultBuildOperationRunner$1.execute(DefaultBuildOperationRunner.java:26) at org.gradle.internal.operations.DefaultBuildOperationRunner$2.execute(DefaultBuildOperationRunner.java:66) at org.gradle.internal.operations.DefaultBuildOperationRunner$2.execute(DefaultBuildOperationRunner.java:59) at org.gradle.internal.operations.DefaultBuildOperationRunner.execute(DefaultBuildOperationRunner.java:166) at org.gradle.internal.operations.DefaultBuildOperationRunner.execute(DefaultBuildOperationRunner.java:59) at org.gradle.internal.operations.DefaultBuildOperationRunner.run(DefaultBuildOperationRunner.java:47) at org.gradle.api.internal.tasks.execution.TaskExecution.executeAction(TaskExecution.java:229) at org.gradle.api.internal.tasks.execution.TaskExecution.executeActions(TaskExecution.java:212) at org.gradle.api.internal.tasks.execution.TaskExecution.executeWithPreviousOutputFiles(TaskExecution.java:195) at org.gradle.api.internal.tasks.execution.TaskExecution.execute(TaskExecution.java:162) at org.gradle.internal.execution.steps.ExecuteStep.executeInternal(ExecuteStep.java:105) at org.gradle.internal.execution.steps.ExecuteStep.access$000(ExecuteStep.java:44) at org.gradle.internal.execution.steps.ExecuteStep$1.call(ExecuteStep.java:59) at org.gradle.internal.execution.steps.ExecuteStep$1.call(ExecuteStep.java:56) at org.gradle.internal.operations.DefaultBuildOperationRunner$CallableBuildOperationWorker.execute(DefaultBuildOperationRunner.java:209) at org.gradle.internal.operations.DefaultBuildOperationRunner$CallableBuildOperationWorker.execute(DefaultBuildOperationRunner.java:204) at org.gradle.internal.operations.DefaultBuildOperationRunner$2.execute(DefaultBuildOperationRunner.java:66) at org.gradle.internal.operations.DefaultBuildOperationRunner$2.execute(DefaultBuildOperationRunner.java:59) at org.gradle.internal.operations.DefaultBuildOperationRunner.execute(DefaultBuildOperationRunner.java:166) at org.gradle.internal.operations.DefaultBuildOperationRunner.execute(DefaultBuildOperationRunner.java:59) at org.gradle.internal.operations.DefaultBuildOperationRunner.call(DefaultBuildOperationRunner.java:53) at org.gradle.internal.execution.steps.ExecuteStep.execute(ExecuteStep.java:56) at org.gradle.internal.execution.steps.ExecuteStep.execute(ExecuteStep.java:44) at org.gradle.internal.execution.steps.CancelExecutionStep.execute(CancelExecutionStep.java:41) at org.gradle.internal.execution.steps.TimeoutStep.executeWithoutTimeout(TimeoutStep.java:74) at org.gradle.internal.execution.steps.TimeoutStep.execute(TimeoutStep.java:55) at org.gradle.internal.execution.steps.PreCreateOutputParentsStep.execute(PreCreateOutputParentsStep.java:50) at org.gradle.internal.execution.steps.PreCreateOutputParentsStep.execute(PreCreateOutputParentsStep.java:28) at org.gradle.internal.execution.steps.RemovePreviousOutputsStep.execute(RemovePreviousOutputsStep.java:67) at org.gradle.internal.execution.steps.RemovePreviousOutputsStep.execute(RemovePreviousOutputsStep.java:37) at org.gradle.internal.execution.steps.BroadcastChangingOutputsStep.execute(BroadcastChangingOutputsStep.java:61) at org.gradle.internal.execution.steps.BroadcastChangingOutputsStep.execute(BroadcastChangingOutputsStep.java:26) at org.gradle.internal.execution.steps.CaptureOutputsAfterExecutionStep.execute(CaptureOutputsAfterExecutionStep.java:67) at org.gradle.internal.execution.steps.CaptureOutputsAfterExecutionStep.execute(CaptureOutputsAfterExecutionStep.java:45) at org.gradle.internal.execution.steps.ResolveInputChangesStep.execute(ResolveInputChangesStep.java:40) at org.gradle.internal.execution.steps.ResolveInputChangesStep.execute(ResolveInputChangesStep.java:29) at org.gradle.internal.execution.steps.BuildCacheStep.executeWithoutCache(BuildCacheStep.java:189) at org.gradle.internal.execution.steps.BuildCacheStep.lambda$execute$1(BuildCacheStep.java:75) at org.gradle.internal.Either$Right.fold(Either.java:175) at org.gradle.internal.execution.caching.CachingState.fold(CachingState.java:62) at org.gradle.internal.execution.steps.BuildCacheStep.execute(BuildCacheStep.java:73) at org.gradle.internal.execution.steps.BuildCacheStep.execute(BuildCacheStep.java:48) at org.gradle.internal.execution.steps.StoreExecutionStateStep.execute(StoreExecutionStateStep.java:46) at org.gradle.internal.execution.steps.StoreExecutionStateStep.execute(StoreExecutionStateStep.java:35) at org.gradle.internal.execution.steps.SkipUpToDateStep.executeBecause(SkipUpToDateStep.java:76) at org.gradle.internal.execution.steps.SkipUpToDateStep.lambda$execute$2(SkipUpToDateStep.java:54) at org.gradle.internal.execution.steps.SkipUpToDateStep.execute(SkipUpToDateStep.java:54) at org.gradle.internal.execution.steps.SkipUpToDateStep.execute(SkipUpToDateStep.java:36) at org.gradle.internal.execution.steps.legacy.MarkSnapshottingInputsFinishedStep.execute(MarkSnapshottingInputsFinishedStep.java:37) at org.gradle.internal.execution.steps.legacy.MarkSnapshottingInputsFinishedStep.execute(MarkSnapshottingInputsFinishedStep.java:27) at org.gradle.internal.execution.steps.ResolveIncrementalCachingStateStep.executeDelegate(ResolveIncrementalCachingStateStep.java:49) at org.gradle.internal.execution.steps.ResolveIncrementalCachingStateStep.executeDelegate(ResolveIncrementalCachingStateStep.java:27) at org.gradle.internal.execution.steps.AbstractResolveCachingStateStep.execute(AbstractResolveCachingStateStep.java:71) at org.gradle.internal.execution.steps.AbstractResolveCachingStateStep.execute(AbstractResolveCachingStateStep.java:39) at org.gradle.internal.execution.steps.ResolveChangesStep.execute(ResolveChangesStep.java:65) at org.gradle.internal.execution.steps.ResolveChangesStep.execute(ResolveChangesStep.java:36) at org.gradle.internal.execution.steps.ValidateStep.execute(ValidateStep.java:106) at org.gradle.internal.execution.steps.ValidateStep.execute(ValidateStep.java:55) at org.gradle.internal.execution.steps.AbstractCaptureStateBeforeExecutionStep.execute(AbstractCaptureStateBeforeExecutionStep.java:64) at org.gradle.internal.execution.steps.AbstractCaptureStateBeforeExecutionStep.execute(AbstractCaptureStateBeforeExecutionStep.java:43) at org.gradle.internal.execution.steps.AbstractSkipEmptyWorkStep.executeWithNonEmptySources(AbstractSkipEmptyWorkStep.java:125) at org.gradle.internal.execution.steps.AbstractSkipEmptyWorkStep.execute(AbstractSkipEmptyWorkStep.java:56) at org.gradle.internal.execution.steps.AbstractSkipEmptyWorkStep.execute(AbstractSkipEmptyWorkStep.java:36) at org.gradle.internal.execution.steps.legacy.MarkSnapshottingInputsStartedStep.execute(MarkSnapshottingInputsStartedStep.java:38) at org.gradle.internal.execution.steps.LoadPreviousExecutionStateStep.execute(LoadPreviousExecutionStateStep.java:36) at org.gradle.internal.execution.steps.LoadPreviousExecutionStateStep.execute(LoadPreviousExecutionStateStep.java:23) at org.gradle.internal.execution.steps.HandleStaleOutputsStep.execute(HandleStaleOutputsStep.java:75) at org.gradle.internal.execution.steps.HandleStaleOutputsStep.execute(HandleStaleOutputsStep.java:41) at org.gradle.internal.execution.steps.AssignMutableWorkspaceStep.lambda$execute$0(AssignMutableWorkspaceStep.java:35) at org.gradle.api.internal.tasks.execution.TaskExecution$4.withWorkspace(TaskExecution.java:289) at org.gradle.internal.execution.steps.AssignMutableWorkspaceStep.execute(AssignMutableWorkspaceStep.java:31) at org.gradle.internal.execution.steps.AssignMutableWorkspaceStep.execute(AssignMutableWorkspaceStep.java:22) at org.gradle.internal.execution.steps.ChoosePipelineStep.execute(ChoosePipelineStep.java:40) at org.gradle.internal.execution.steps.ChoosePipelineStep.execute(ChoosePipelineStep.java:23) at org.gradle.internal.execution.steps.ExecuteWorkBuildOperationFiringStep.lambda$execute$2(ExecuteWorkBuildOperationFiringStep.java:67) at org.gradle.internal.execution.steps.ExecuteWorkBuildOperationFiringStep.execute(ExecuteWorkBuildOperationFiringStep.java:67) at org.gradle.internal.execution.steps.ExecuteWorkBuildOperationFiringStep.execute(ExecuteWorkBuildOperationFiringStep.java:39) at org.gradle.internal.execution.steps.IdentityCacheStep.execute(IdentityCacheStep.java:46) at org.gradle.internal.execution.steps.IdentityCacheStep.execute(IdentityCacheStep.java:34) at org.gradle.internal.execution.steps.IdentifyStep.execute(IdentifyStep.java:48) at org.gradle.internal.execution.steps.IdentifyStep.execute(IdentifyStep.java:35) at org.gradle.internal.execution.impl.DefaultExecutionEngine$1.execute(DefaultExecutionEngine.java:61) at org.gradle.api.internal.tasks.execution.ExecuteActionsTaskExecuter.executeIfValid(ExecuteActionsTaskExecuter.java:127) at org.gradle.api.internal.tasks.execution.ExecuteActionsTaskExecuter.execute(ExecuteActionsTaskExecuter.java:116) at org.gradle.api.internal.tasks.execution.FinalizePropertiesTaskExecuter.execute(FinalizePropertiesTaskExecuter.java:46) at org.gradle.api.internal.tasks.execution.ResolveTaskExecutionModeExecuter.execute(ResolveTaskExecutionModeExecuter.java:51) at org.gradle.api.internal.tasks.execution.SkipTaskWithNoActionsExecuter.execute(SkipTaskWithNoActionsExecuter.java:57) at org.gradle.api.internal.tasks.execution.SkipOnlyIfTaskExecuter.execute(SkipOnlyIfTaskExecuter.java:74) at org.gradle.api.internal.tasks.execution.CatchExceptionTaskExecuter.execute(CatchExceptionTaskExecuter.java:36) at org.gradle.api.internal.tasks.execution.EventFiringTaskExecuter$1.executeTask(EventFiringTaskExecuter.java:77) at org.gradle.api.internal.tasks.execution.EventFiringTaskExecuter$1.call(EventFiringTaskExecuter.java:55) at org.gradle.api.internal.tasks.execution.EventFiringTaskExecuter$1.call(EventFiringTaskExecuter.java:52) at org.gradle.internal.operations.DefaultBuildOperationRunner$CallableBuildOperationWorker.execute(DefaultBuildOperationRunner.java:209) at org.gradle.internal.operations.DefaultBuildOperationRunner$CallableBuildOperationWorker.execute(DefaultBuildOperationRunner.java:204) at org.gradle.internal.operations.DefaultBuildOperationRunner$2.execute(DefaultBuildOperationRunner.java:66) at org.gradle.internal.operations.DefaultBuildOperationRunner$2.execute(DefaultBuildOperationRunner.java:59) at org.gradle.internal.operations.DefaultBuildOperationRunner.execute(DefaultBuildOperationRunner.java:166) at org.gradle.internal.operations.DefaultBuildOperationRunner.execute(DefaultBuildOperationRunner.java:59) at org.gradle.internal.operations.DefaultBuildOperationRunner.call(DefaultBuildOperationRunner.java:53) at org.gradle.api.internal.tasks.execution.EventFiringTaskExecuter.execute(EventFiringTaskExecuter.java:52) at org.gradle.execution.plan.LocalTaskNodeExecutor.execute(LocalTaskNodeExecutor.java:42) at org.gradle.execution.taskgraph.DefaultTaskExecutionGraph$InvokeNodeExecutorsAction.execute(DefaultTaskExecutionGraph.java:331) at org.gradle.execution.taskgraph.DefaultTaskExecutionGraph$InvokeNodeExecutorsAction.execute(DefaultTaskExecutionGraph.java:318) at org.gradle.execution.taskgraph.DefaultTaskExecutionGraph$BuildOperationAwareExecutionAction.lambda$execute$0(DefaultTaskExecutionGraph.java:314) at org.gradle.internal.operations.CurrentBuildOperationRef.with(CurrentBuildOperationRef.java:80) at org.gradle.execution.taskgraph.DefaultTaskExecutionGraph$BuildOperationAwareExecutionAction.execute(DefaultTaskExecutionGraph.java:314) at org.gradle.execution.taskgraph.DefaultTaskExecutionGraph$BuildOperationAwareExecutionAction.execute(DefaultTaskExecutionGraph.java:303) at org.gradle.execution.plan.DefaultPlanExecutor$ExecutorWorker.execute(DefaultPlanExecutor.java:463) at org.gradle.execution.plan.DefaultPlanExecutor$ExecutorWorker.run(DefaultPlanExecutor.java:380) at org.gradle.internal.concurrent.ExecutorPolicy$CatchAndRecordFailures.onExecute(ExecutorPolicy.java:64) at org.gradle.internal.concurrent.AbstractManagedExecutor$1.run(AbstractManagedExecutor.java:47) BUILD FAILED in 5s 17:20:37: Execution finished 'runClient --warning-mode all --info --stacktrace'.
  23. When I run the script, I get an error. Can someone please tell me how to fix it? You can safely ignore this message if the game starts up successfully. # # A fatal error has been detected by the Java Runtime Environment: # # EXCEPTION_ACCESS_VIOLATION (0xc0000005) at pc=0x00007ffb28086200, pid=20808, tid=9516 # # JRE version: OpenJDK Runtime Environment Corretto-21.0.4.7.1 (21.0.4+7) (build 21.0.4+7-LTS) # Java VM: OpenJDK 64-Bit Server VM Corretto-21.0.4.7.1 (21.0.4+7-LTS, mixed mode, sharing, tiered, compressed oops, compressed class ptrs, g1 gc, windows-amd64) # Problematic frame: # C [atio6axx.dll+0x196200] # # No core dump will be written. Minidumps are not enabled by default on client versions of Windows # # An error report file with more information is saved as: # C:\Users\******\Downloads\forge-1.21-51.0.32-mdk\run\hs_err_pid20808.log # # If you would like to submit a bug report, please visit: # https://github.com/corretto/corretto-21/issues/ # The crash happened outside the Java Virtual Machine in native code. # See problematic frame for where to report the bug. # [error occurred during error reporting (), id 0xc0000005, EXCEPTION_ACCESS_VIOLATION (0xc0000005) at pc=0x00007ffb29e9aa49] > Task :runClient FAILED Execution failed for task ':runClient'. > Process 'command 'C:\Users\******\.jdks\corretto-21.0.4\bin\java.exe'' finished with non-zero exit value 1 * Try: > Run with --stacktrace option to get the stack trace. > Run with --info or --debug option to get more log output. > Run with --scan to get full insights. > Get more help at https://help.gradle.org. Deprecated Gradle features were used in this build, making it incompatible with Gradle 9.0. You can use '--warning-mode all' to show the individual deprecation warnings and determine if they come from your own scripts or plugins. For more on this, please refer to https://docs.gradle.org/8.7/userguide/command_line_interface.html#sec:command_line_warnings in the Gradle documentation. BUILD FAILED in 3s 10 actionable tasks: 3 executed, 7 up-to-date
  24. im a little new to intellij, modding and all that and this is my first one im working on, whenever i proceed to run the client to test out my new items i get this error and many others surrounding my run-data directory. any help is appreciated thank you! Execution failed for task ':runClient'. > Process 'command 'C:\Program Files\Eclipse Adoptium\jdk-17.0.12.7-hotspot\bin\java.exe'' finished with non-zero exit value 1 * Try: > Run with --stacktrace option to get the stack trace. > Run with --scan to get full insights. > Get more help at https://help.gradle.org. Deprecated Gradle features were used in this build, making it incompatible with Gradle 9.0. You can use '--warning-mode all' to show the individual deprecation warnings and determine if they come from your own scripts or plugins. For more on this, please refer to https://docs.gradle.org/8.8/userguide/command_line_interface.html#sec:command_line_warnings in the Gradle documentation. BUILD FAILED in 5s 10 actionable tasks: 3 executed, 7 up-to-date Build operation 'Build finished for file system watching' started Completing Build operation 'Build finished for file system watching' Build operation 'Build finished for file system watching' completed Releasing file lock for cache directory md-supplier (C:\Users\mpire\.gradle\caches\8.8\md-supplier) Releasing lock on cache directory md-supplier (C:\Users\mpire\.gradle\caches\8.8\md-supplier). Releasing file lock for execution history cache (C:\Users\mpire\Downloads\Minecraft Modding\Projects\forge-1.20.1-47.3.0-mdk\.gradle\8.8\executionHistory) Closing cache executionHistory.bin (C:\Users\mpire\Downloads\Minecraft Modding\Projects\forge-1.20.1-47.3.0-mdk\.gradle\8.8\executionHistory\executionHistory.bin) Releasing lock on execution history cache (C:\Users\mpire\Downloads\Minecraft Modding\Projects\forge-1.20.1-47.3.0-mdk\.gradle\8.8\executionHistory). Releasing file lock for Build Output Cleanup Cache (C:\Users\mpire\Downloads\Minecraft Modding\Projects\forge-1.20.1-47.3.0-mdk\.gradle\buildOutputCleanup) Closing cache outputFiles.bin (C:\Users\mpire\Downloads\Minecraft Modding\Projects\forge-1.20.1-47.3.0-mdk\.gradle\buildOutputCleanup\outputFiles.bin) Releasing lock on Build Output Cleanup Cache (C:\Users\mpire\Downloads\Minecraft Modding\Projects\forge-1.20.1-47.3.0-mdk\.gradle\buildOutputCleanup). Releasing file lock for cache directory md-rule (C:\Users\mpire\.gradle\caches\8.8\md-rule) Releasing lock on cache directory md-rule (C:\Users\mpire\.gradle\caches\8.8\md-rule). Resolution result cache closed. Cache reads: 0, disk reads: 0 (avg: 0.0 secs, total: 0.0 secs) Resolution result cache closed. Cache reads: 0, disk reads: 0 (avg: 0.0 secs, total: 0.0 secs) Deleted 6 resolution results binary files in 0.003 secs Completing Build operation 'Run build' Build operation 'Run build' completed Daemon worker: released lock on worker lease Stopping 0 deployment handles Stopped deployment handles Releasing file lock for file hash cache (C:\Users\mpire\Downloads\Minecraft Modding\Projects\forge-1.20.1-47.3.0-mdk\.gradle\8.8\fileHashes) Closing cache fileHashes.bin (C:\Users\mpire\Downloads\Minecraft Modding\Projects\forge-1.20.1-47.3.0-mdk\.gradle\8.8\fileHashes\fileHashes.bin) Releasing lock on file hash cache (C:\Users\mpire\Downloads\Minecraft Modding\Projects\forge-1.20.1-47.3.0-mdk\.gradle\8.8\fileHashes). Releasing file lock for checksums cache (C:\Users\mpire\Downloads\Minecraft Modding\Projects\forge-1.20.1-47.3.0-mdk\.gradle\8.8\checksums) Releasing lock on checksums cache (C:\Users\mpire\Downloads\Minecraft Modding\Projects\forge-1.20.1-47.3.0-mdk\.gradle\8.8\checksums). VCS Checkout Cache (C:\Users\mpire\Downloads\Minecraft Modding\Projects\forge-1.20.1-47.3.0-mdk\.gradle\vcs-1) has last been fully cleaned up 1 hours ago Cache VCS Checkout Cache (C:\Users\mpire\Downloads\Minecraft Modding\Projects\forge-1.20.1-47.3.0-mdk\.gradle\vcs-1) was closed 0 times. Cache VCS metadata (C:\Users\mpire\Downloads\Minecraft Modding\Projects\forge-1.20.1-47.3.0-mdk\.gradle\8.8\vcsMetadata) was closed 0 times. Cache Compressed Files Expansion Cache (C:\Users\mpire\Downloads\Minecraft Modding\Projects\forge-1.20.1-47.3.0-mdk\.gradle\8.8\expanded) was closed 0 times. dependencies-accessors (C:\Users\mpire\Downloads\Minecraft Modding\Projects\forge-1.20.1-47.3.0-mdk\.gradle\8.8\dependencies-accessors) has last been fully cleaned up 1 hours ago Cache dependencies-accessors (C:\Users\mpire\Downloads\Minecraft Modding\Projects\forge-1.20.1-47.3.0-mdk\.gradle\8.8\dependencies-accessors) was closed 0 times. Build operation 'Deleting unused version-specific caches in C:\Users\mpire\Downloads\Minecraft Modding\Projects\forge-1.20.1-47.3.0-mdk\.gradle' started Completing Build operation 'Deleting unused version-specific caches in C:\Users\mpire\Downloads\Minecraft Modding\Projects\forge-1.20.1-47.3.0-mdk\.gradle' Build operation 'Deleting unused version-specific caches in C:\Users\mpire\Downloads\Minecraft Modding\Projects\forge-1.20.1-47.3.0-mdk\.gradle' completed The daemon has finished executing the build.
  25. Caused by: java.lang.NullPointerException: Cannot invoke "net.minecraft.network.syncher.SynchedEntityData$DataItem.getValue()" because the return value of "net.minecraft.network.syncher.SynchedEntityData.getItem(net.minecraft.network.syncher.EntityDataAccessor)" is null This is the log: > Configure project : Java: 1.8.0_381, JVM: 25.381-b09 (Oracle Corporation), Arch: amd64 > Task :compileJava UP-TO-DATE > Task :processResources UP-TO-DATE > Task :classes UP-TO-DATE > Task :downloadMcpConfig > Task :extractSrg UP-TO-DATE > Task :createSrgToMcp UP-TO-DATE > Task :downloadMCMeta UP-TO-DATE > Task :downloadAssets UP-TO-DATE > Task :extractNatives UP-TO-DATE > Task :makeSrcDirs > Task :prepareRuns > Task :prepareRunClient > Task :prepareRunClientCompile UP-TO-DATE > Task :runClient 2024-08-09 15:45:00,075 main WARN Advanced terminal features are not available in this environment [15:45:00] [main/INFO] [cp.mo.mo.Launcher/MODLAUNCHER]: ModLauncher running: args [--launchTarget, forgeclientuserdev, --version, MOD_DEV, --assetIndex, 5, --assetsDir, C:\Users\funny\.gradle\caches\forge_gradle\assets, --gameDir, ., --fml.forgeVersion, 47.3.5, --fml.mcVersion, 1.20.1, --fml.forgeGroup, net.minecraftforge, --fml.mcpVersion, 20230612.114412] [15:45:00] [main/INFO] [cp.mo.mo.Launcher/MODLAUNCHER]: ModLauncher 10.0.9+10.0.9+main.dcd20f30 starting: java version 17.0.7 by Oracle Corporation; OS Windows 11 arch amd64 version 10.0 [15:45:00] [main/DEBUG] [cp.mo.mo.LaunchServiceHandler/MODLAUNCHER]: Found launch services [fmlclientdev,forgeclient,minecraft,forgegametestserverdev,fmlserveruserdev,fmlclient,fmldatauserdev,forgeserverdev,forgeserveruserdev,forgeclientdev,forgeclientuserdev,forgeserver,forgedatadev,fmlserver,fmlclientuserdev,fmlserverdev,forgedatauserdev,testharness,forgegametestserveruserdev] [15:45:00] [main/DEBUG] [cp.mo.mo.NameMappingServiceHandler/MODLAUNCHER]: Found naming services : [srgtomcp] [15:45:00] [main/DEBUG] [cp.mo.mo.LaunchPluginHandler/MODLAUNCHER]: Found launch plugins: [mixin,eventbus,slf4jfixer,object_holder_definalize,runtime_enum_extender,capability_token_subclass,accesstransformer,runtimedistcleaner] [15:45:00] [main/DEBUG] [cp.mo.mo.TransformationServicesHandler/MODLAUNCHER]: Discovering transformation services [15:45:00] [main/DEBUG] [ne.mi.fm.lo.FMLPaths/CORE]: Path GAMEDIR is D:\Datas\Lobotomy Combat\run [15:45:00] [main/DEBUG] [ne.mi.fm.lo.FMLPaths/CORE]: Path MODSDIR is D:\Datas\Lobotomy Combat\run\mods [15:45:00] [main/DEBUG] [ne.mi.fm.lo.FMLPaths/CORE]: Path CONFIGDIR is D:\Datas\Lobotomy Combat\run\config [15:45:00] [main/DEBUG] [ne.mi.fm.lo.FMLPaths/CORE]: Path FMLCONFIG is D:\Datas\Lobotomy Combat\run\config\fml.toml [15:45:00] [main/DEBUG] [cp.mo.mo.TransformationServicesHandler/MODLAUNCHER]: Found additional transformation services from discovery services: [15:45:00] [main/INFO] [ne.mi.fm.lo.ImmediateWindowHandler/]: Loading ImmediateWindowProvider fmlearlywindow [15:45:00] [main/INFO] [EARLYDISPLAY/]: Trying GL version 4.6 [15:45:00] [main/INFO] [EARLYDISPLAY/]: Requested GL version 4.6 got version 4.6 [15:45:00] [main/DEBUG] [cp.mo.mo.TransformationServicesHandler/MODLAUNCHER]: Found transformer services : [mixin,fml] [15:45:00] [main/DEBUG] [cp.mo.mo.TransformationServicesHandler/MODLAUNCHER]: Transformation services loading [15:45:00] [main/DEBUG] [cp.mo.mo.TransformationServiceDecorator/MODLAUNCHER]: Loading service mixin [15:45:00] [main/DEBUG] [cp.mo.mo.TransformationServiceDecorator/MODLAUNCHER]: Loaded service mixin [15:45:00] [main/DEBUG] [cp.mo.mo.TransformationServiceDecorator/MODLAUNCHER]: Loading service fml [15:45:00] [main/DEBUG] [ne.mi.fm.lo.LauncherVersion/CORE]: Found FMLLauncher version 1.0 [15:45:00] [main/DEBUG] [ne.mi.fm.lo.FMLLoader/CORE]: FML 1.0 loading [15:45:00] [main/DEBUG] [ne.mi.fm.lo.FMLLoader/CORE]: FML found ModLauncher version : 10.0.9+10.0.9+main.dcd20f30 [15:45:00] [main/DEBUG] [ne.mi.fm.lo.FMLLoader/CORE]: FML found AccessTransformer version : 8.0.4+66+master.c09db6d7 [15:45:00] [main/DEBUG] [ne.mi.fm.lo.FMLLoader/CORE]: FML found EventBus version : 6.0.5+6.0.5+master.eb8e549b [15:45:00] [main/DEBUG] [ne.mi.fm.lo.FMLLoader/CORE]: Found Runtime Dist Cleaner [15:45:00] [main/DEBUG] [ne.mi.fm.lo.FMLLoader/CORE]: FML found CoreMod version : 5.1.6 [15:45:00] [main/DEBUG] [ne.mi.fm.lo.FMLLoader/CORE]: Found ForgeSPI package implementation version 7.0.1+7.0.1+master.d2b38bf6 [15:45:00] [main/DEBUG] [ne.mi.fm.lo.FMLLoader/CORE]: Found ForgeSPI package specification 5 [15:45:00] [main/DEBUG] [cp.mo.mo.TransformationServiceDecorator/MODLAUNCHER]: Loaded service fml [15:45:00] [main/DEBUG] [cp.mo.mo.TransformationServicesHandler/MODLAUNCHER]: Configuring option handling for services [15:45:00] [main/DEBUG] [cp.mo.mo.TransformationServicesHandler/MODLAUNCHER]: Transformation services initializing [15:45:00] [main/DEBUG] [cp.mo.mo.TransformationServiceDecorator/MODLAUNCHER]: Initializing transformation service mixin [15:45:00] [main/DEBUG] [mixin/]: MixinService [ModLauncher] was successfully booted in cpw.mods.cl.ModuleClassLoader@19bb07ed [15:45:00] [main/INFO] [mixin/]: SpongePowered MIXIN Subsystem Version=0.8.5 Source=union:/C:/Users/funny/.gradle/caches/modules-2/files-2.1/org.spongepowered/mixin/0.8.5/9d1c0c3a304ae6697ecd477218fa61b850bf57fc/mixin-0.8.5.jar%23128!/ Service=ModLauncher Env=CLIENT [15:45:00] [main/DEBUG] [mixin/]: Initialising Mixin Platform Manager [15:45:00] [main/DEBUG] [mixin/]: Adding mixin platform agents for container ModLauncher Root Container(ModLauncher:4f56a0a2) [15:45:00] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for ModLauncher Root Container(ModLauncher:4f56a0a2) [15:45:00] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container ModLauncher Root Container(ModLauncher:4f56a0a2) [15:45:00] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for ModLauncher Root Container(ModLauncher:4f56a0a2) [15:45:00] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container ModLauncher Root Container(ModLauncher:4f56a0a2) [15:45:00] [main/DEBUG] [cp.mo.mo.TransformationServiceDecorator/MODLAUNCHER]: Initialized transformation service mixin [15:45:00] [main/DEBUG] [cp.mo.mo.TransformationServiceDecorator/MODLAUNCHER]: Initializing transformation service fml [15:45:00] [main/DEBUG] [ne.mi.fm.lo.FMLServiceProvider/CORE]: Setting up basic FML game directories [15:45:00] [main/DEBUG] [ne.mi.fm.lo.FMLPaths/CORE]: Path GAMEDIR is D:\Datas\Lobotomy Combat\run [15:45:00] [main/DEBUG] [ne.mi.fm.lo.FMLPaths/CORE]: Path MODSDIR is D:\Datas\Lobotomy Combat\run\mods [15:45:00] [main/DEBUG] [ne.mi.fm.lo.FMLPaths/CORE]: Path CONFIGDIR is D:\Datas\Lobotomy Combat\run\config [15:45:00] [main/DEBUG] [ne.mi.fm.lo.FMLPaths/CORE]: Path FMLCONFIG is D:\Datas\Lobotomy Combat\run\config\fml.toml [15:45:00] [main/DEBUG] [ne.mi.fm.lo.FMLServiceProvider/CORE]: Loading configuration [15:45:00] [main/DEBUG] [ne.mi.fm.lo.FMLServiceProvider/CORE]: Preparing ModFile [15:45:00] [main/DEBUG] [ne.mi.fm.lo.FMLServiceProvider/CORE]: Preparing launch handler [15:45:00] [main/DEBUG] [ne.mi.fm.lo.FMLLoader/CORE]: Using forgeclientuserdev as launch service [15:45:00] [main/DEBUG] [ne.mi.fm.lo.FMLLoader/CORE]: Received command line version data : VersionInfo[forgeVersion=47.3.5, mcVersion=1.20.1, mcpVersion=20230612.114412, forgeGroup=net.minecraftforge] [15:45:00] [main/DEBUG] [cp.mo.mo.TransformationServiceDecorator/MODLAUNCHER]: Initialized transformation service fml [15:45:00] [pool-2-thread-1/INFO] [EARLYDISPLAY/]: GL info: NVIDIA GeForce RTX 3050 Laptop GPU/PCIe/SSE2 GL version 4.6.0 NVIDIA 551.76, NVIDIA Corporation [15:45:00] [main/DEBUG] [cp.mo.mo.NameMappingServiceHandler/MODLAUNCHER]: Current naming domain is 'mcp' [15:45:00] [main/DEBUG] [cp.mo.mo.NameMappingServiceHandler/MODLAUNCHER]: Identified name mapping providers {srg=srgtomcp:1234} [15:45:00] [main/DEBUG] [cp.mo.mo.TransformationServicesHandler/MODLAUNCHER]: Transformation services begin scanning [15:45:00] [main/DEBUG] [cp.mo.mo.TransformationServiceDecorator/MODLAUNCHER]: Beginning scan trigger - transformation service mixin [15:45:00] [main/DEBUG] [cp.mo.mo.TransformationServiceDecorator/MODLAUNCHER]: End scan trigger - transformation service mixin [15:45:00] [main/DEBUG] [cp.mo.mo.TransformationServiceDecorator/MODLAUNCHER]: Beginning scan trigger - transformation service fml [15:45:00] [main/DEBUG] [ne.mi.fm.lo.FMLServiceProvider/CORE]: Initiating mod scan [15:45:00] [main/DEBUG] [ne.mi.fm.lo.mo.ModListHandler/CORE]: Found mod coordinates from lists: [] [15:45:00] [main/DEBUG] [ne.mi.fm.lo.mo.ModDiscoverer/CORE]: Found Mod Locators : (mods folder:null),(maven libs:null),(exploded directory:null),(minecraft:null),(userdev classpath:null) [15:45:00] [main/DEBUG] [ne.mi.fm.lo.mo.ModDiscoverer/CORE]: Found Dependency Locators : (JarInJar:null) [15:45:00] [main/DEBUG] [ne.mi.fm.lo.ta.CommonLaunchHandler/CORE]: Got mod coordinates lobotomy_combat%%D:\Datas\Lobotomy Combat\build\resources\main;lobotomy_combat%%D:\Datas\Lobotomy Combat\build\classes\java\main from env [15:45:00] [main/DEBUG] [ne.mi.fm.lo.ta.CommonLaunchHandler/CORE]: Found supplied mod coordinates [{lobotomy_combat=[D:\Datas\Lobotomy Combat\build\resources\main, D:\Datas\Lobotomy Combat\build\classes\java\main]}] [15:45:01] [main/DEBUG] [ne.mi.fm.lo.mo.ModFileInfo/LOADING]: Found valid mod file forge-1.20.1-47.3.5_mapped_parchment_2023.09.03-1.20.1-recomp.jar with {minecraft} mods - versions {1.20.1} [15:45:01] [main/DEBUG] [ne.mi.fm.lo.mo.ModFileParser/LOADING]: Considering mod file candidate C:\Users\funny\.gradle\caches\modules-2\files-2.1\net.minecraftforge\javafmllanguage\1.20.1-47.3.5\4c589c051ef533f8898fb5d83514d4186faa0eeb\javafmllanguage-1.20.1-47.3.5.jar [15:45:01] [main/WARN] [ne.mi.fm.lo.mo.ModFileParser/LOADING]: Mod file C:\Users\funny\.gradle\caches\modules-2\files-2.1\net.minecraftforge\javafmllanguage\1.20.1-47.3.5\4c589c051ef533f8898fb5d83514d4186faa0eeb\javafmllanguage-1.20.1-47.3.5.jar is missing mods.toml file [15:45:01] [main/DEBUG] [ne.mi.fm.lo.mo.ModFileParser/LOADING]: Considering mod file candidate C:\Users\funny\.gradle\caches\modules-2\files-2.1\net.minecraftforge\lowcodelanguage\1.20.1-47.3.5\8251eee89645828a05f3b04f5df8945baa0743c4\lowcodelanguage-1.20.1-47.3.5.jar [15:45:01] [main/WARN] [ne.mi.fm.lo.mo.ModFileParser/LOADING]: Mod file C:\Users\funny\.gradle\caches\modules-2\files-2.1\net.minecraftforge\lowcodelanguage\1.20.1-47.3.5\8251eee89645828a05f3b04f5df8945baa0743c4\lowcodelanguage-1.20.1-47.3.5.jar is missing mods.toml file [15:45:01] [main/DEBUG] [ne.mi.fm.lo.mo.ModFileParser/LOADING]: Considering mod file candidate C:\Users\funny\.gradle\caches\modules-2\files-2.1\net.minecraftforge\mclanguage\1.20.1-47.3.5\53971d6fe08ae7ce74a72fa7d14a82de70a8bd1\mclanguage-1.20.1-47.3.5.jar [15:45:01] [main/WARN] [ne.mi.fm.lo.mo.ModFileParser/LOADING]: Mod file C:\Users\funny\.gradle\caches\modules-2\files-2.1\net.minecraftforge\mclanguage\1.20.1-47.3.5\53971d6fe08ae7ce74a72fa7d14a82de70a8bd1\mclanguage-1.20.1-47.3.5.jar is missing mods.toml file [15:45:01] [main/DEBUG] [ne.mi.fm.lo.mo.ModFileParser/LOADING]: Considering mod file candidate C:\Users\funny\.gradle\caches\modules-2\files-2.1\net.minecraftforge\fmlcore\1.20.1-47.3.5\cc377ceca3274bd1e429c0da17f73720ce29a4d6\fmlcore-1.20.1-47.3.5.jar [15:45:01] [main/WARN] [ne.mi.fm.lo.mo.ModFileParser/LOADING]: Mod file C:\Users\funny\.gradle\caches\modules-2\files-2.1\net.minecraftforge\fmlcore\1.20.1-47.3.5\cc377ceca3274bd1e429c0da17f73720ce29a4d6\fmlcore-1.20.1-47.3.5.jar is missing mods.toml file [15:45:01] [main/DEBUG] [ne.mi.fm.lo.mo.ModFileParser/LOADING]: Considering mod file candidate D:\Datas\Lobotomy Combat\build\resources\main [15:45:01] [main/DEBUG] [ne.mi.fm.lo.mo.ModFileInfo/LOADING]: Found valid mod file main with {lobotomy_combat} mods - versions {1.0.0} [15:45:01] [main/DEBUG] [ne.mi.fm.lo.mo.ModFileParser/LOADING]: Considering mod file candidate / [15:45:01] [main/DEBUG] [ne.mi.fm.lo.mo.ModFileInfo/LOADING]: Found valid mod file with {forge} mods - versions {47.3.5} [15:45:01] [main/DEBUG] [ne.mi.fm.lo.mo.ModFileParser/LOADING]: Considering mod file candidate C:\Users\funny\.gradle\caches\forge_gradle\deobf_dependencies\curse\maven\epic-fight-mod-405076\5604255_mapped_parchment_2023.09.03-1.20.1\epic-fight-mod-405076-5604255_mapped_parchment_2023.09.03-1.20.1.jar [15:45:01] [main/DEBUG] [ne.mi.fm.lo.mo.ModFileInfo/LOADING]: Found valid mod file epic-fight-mod-405076-5604255_mapped_parchment_2023.09.03-1.20.1.jar with {epicfight} mods - versions {20.8.7} [15:45:01] [main/DEBUG] [ne.mi.fm.lo.mo.ModFileParser/LOADING]: Considering mod file candidate C:\Users\funny\.gradle\caches\forge_gradle\deobf_dependencies\curse\maven\epic-fight-mod-405076\5604255_mapped_parchment_2023.09.03-1.20.1\epic-fight-mod-405076-5604255_mapped_parchment_2023.09.03-1.20.1.jar [15:45:01] [main/DEBUG] [ne.mi.fm.lo.mo.ModFileInfo/LOADING]: Found valid mod file epic-fight-mod-405076-5604255_mapped_parchment_2023.09.03-1.20.1.jar with {epicfight} mods - versions {20.8.7} [15:45:01] [main/DEBUG] [ne.mi.fm.lo.UniqueModListBuilder/]: Found 2 mods for first modid epicfight, selecting most recent based on version data [15:45:01] [main/DEBUG] [ne.mi.fm.lo.UniqueModListBuilder/]: Selected file epic-fight-mod-405076-5604255_mapped_parchment_2023.09.03-1.20.1.jar for modid epicfight with version 20.8.7 [15:45:01] [main/DEBUG] [ne.mi.fm.lo.mo.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF\jarjar\metadata.json from forge-1.20.1-47.3.5_mapped_parchment_2023.09.03-1.20.1-recomp.jar, it does not contain dependency information. [15:45:01] [main/DEBUG] [ne.mi.fm.lo.mo.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF\jarjar\metadata.json from , it does not contain dependency information. [15:45:01] [main/DEBUG] [ne.mi.fm.lo.mo.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF\jarjar\metadata.json from epic-fight-mod-405076-5604255_mapped_parchment_2023.09.03-1.20.1.jar, it does not contain dependency information. [15:45:01] [main/DEBUG] [ne.mi.fm.lo.mo.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF\jarjar\metadata.json from main, it does not contain dependency information. [15:45:01] [main/DEBUG] [ne.mi.fm.lo.mo.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF\jarjar\metadata.json from mclanguage-1.20.1-47.3.5.jar, it does not contain dependency information. [15:45:01] [main/DEBUG] [ne.mi.fm.lo.mo.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF\jarjar\metadata.json from javafmllanguage-1.20.1-47.3.5.jar, it does not contain dependency information. [15:45:01] [main/DEBUG] [ne.mi.fm.lo.mo.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF\jarjar\metadata.json from fmlcore-1.20.1-47.3.5.jar, it does not contain dependency information. [15:45:01] [main/DEBUG] [ne.mi.fm.lo.mo.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF\jarjar\metadata.json from lowcodelanguage-1.20.1-47.3.5.jar, it does not contain dependency information. [15:45:01] [main/INFO] [ne.mi.fm.lo.mo.JarInJarDependencyLocator/]: No dependencies to load found. Skipping! [15:45:01] [main/DEBUG] [ne.mi.fm.lo.mo.ModFileInfo/LOADING]: Found valid mod file forge-1.20.1-47.3.5_mapped_parchment_2023.09.03-1.20.1-recomp.jar with {minecraft} mods - versions {1.20.1} [15:45:01] [main/DEBUG] [ne.mi.fm.lo.mo.ModFile/LOADING]: Loading mod file C:\Users\funny\.gradle\caches\forge_gradle\minecraft_user_repo\net\minecraftforge\forge\1.20.1-47.3.5_mapped_parchment_2023.09.03-1.20.1\forge-1.20.1-47.3.5_mapped_parchment_2023.09.03-1.20.1-recomp.jar with languages [LanguageSpec[languageName=minecraft, acceptedVersions=1]] [15:45:01] [main/DEBUG] [ne.mi.fm.lo.mo.ModFileParser/LOADING]: Considering mod file candidate / [15:45:01] [main/DEBUG] [ne.mi.fm.lo.mo.ModFileInfo/LOADING]: Found valid mod file with {forge} mods - versions {47.3.5} [15:45:01] [main/DEBUG] [ne.mi.fm.lo.mo.ModFile/LOADING]: Loading mod file / with languages [LanguageSpec[languageName=javafml, acceptedVersions=[24,]]] [15:45:01] [main/DEBUG] [ne.mi.fm.lo.mo.ModFileParser/LOADING]: Found coremod field_to_method with Javascript path coremods/field_to_method.js [15:45:01] [main/DEBUG] [ne.mi.fm.lo.mo.ModFileParser/LOADING]: Found coremod field_to_instanceof with Javascript path coremods/field_to_instanceof.js [15:45:01] [main/DEBUG] [ne.mi.fm.lo.mo.ModFileParser/LOADING]: Found coremod add_bouncer_method with Javascript path coremods/add_bouncer_method.js [15:45:01] [main/DEBUG] [ne.mi.fm.lo.mo.ModFileParser/LOADING]: Found coremod method_redirector with Javascript path coremods/method_redirector.js [15:45:01] [main/DEBUG] [ne.mi.fm.lo.mo.ModFile/LOADING]: Found coremod coremods/field_to_method.js [15:45:01] [main/DEBUG] [ne.mi.fm.lo.mo.ModFile/LOADING]: Found coremod coremods/field_to_instanceof.js [15:45:01] [main/DEBUG] [ne.mi.fm.lo.mo.ModFile/LOADING]: Found coremod coremods/add_bouncer_method.js [15:45:01] [main/DEBUG] [ne.mi.fm.lo.mo.ModFile/LOADING]: Found coremod coremods/method_redirector.js [15:45:01] [main/DEBUG] [ne.mi.fm.lo.mo.ModFileParser/LOADING]: Considering mod file candidate C:\Users\funny\.gradle\caches\forge_gradle\deobf_dependencies\curse\maven\epic-fight-mod-405076\5604255_mapped_parchment_2023.09.03-1.20.1\epic-fight-mod-405076-5604255_mapped_parchment_2023.09.03-1.20.1.jar [15:45:01] [main/DEBUG] [ne.mi.fm.lo.mo.ModFileInfo/LOADING]: Found valid mod file epic-fight-mod-405076-5604255_mapped_parchment_2023.09.03-1.20.1.jar with {epicfight} mods - versions {20.8.7} [15:45:01] [main/DEBUG] [ne.mi.fm.lo.mo.ModFile/LOADING]: Loading mod file C:\Users\funny\.gradle\caches\forge_gradle\deobf_dependencies\curse\maven\epic-fight-mod-405076\5604255_mapped_parchment_2023.09.03-1.20.1\epic-fight-mod-405076-5604255_mapped_parchment_2023.09.03-1.20.1.jar with languages [LanguageSpec[languageName=javafml, acceptedVersions=[47,)]] [15:45:01] [main/DEBUG] [ne.mi.fm.lo.mo.ModFileParser/LOADING]: Considering mod file candidate D:\Datas\Lobotomy Combat\build\resources\main [15:45:01] [main/DEBUG] [ne.mi.fm.lo.mo.ModFileInfo/LOADING]: Found valid mod file main with {lobotomy_combat} mods - versions {1.0.0} [15:45:01] [main/DEBUG] [ne.mi.fm.lo.mo.ModFile/LOADING]: Loading mod file D:\Datas\Lobotomy Combat\build\resources\main with languages [LanguageSpec[languageName=javafml, acceptedVersions=[47,)]] [15:45:01] [main/DEBUG] [cp.mo.mo.TransformationServiceDecorator/MODLAUNCHER]: End scan trigger - transformation service fml [15:45:01] [main/DEBUG] [ne.mi.fm.lo.LanguageLoadingProvider/CORE]: Found 3 language providers [15:45:01] [main/DEBUG] [ne.mi.fm.lo.LanguageLoadingProvider/CORE]: Found language provider minecraft, version 1.0 [15:45:01] [main/DEBUG] [ne.mi.fm.lo.LanguageLoadingProvider/CORE]: Found language provider lowcodefml, version 47 [15:45:01] [main/DEBUG] [ne.mi.fm.lo.LanguageLoadingProvider/CORE]: Found language provider javafml, version 47 [15:45:01] [main/DEBUG] [ne.mi.fm.lo.ModSorter/]: Configured system mods: [minecraft, forge] [15:45:01] [main/DEBUG] [ne.mi.fm.lo.ModSorter/]: Found system mod: minecraft [15:45:01] [main/DEBUG] [ne.mi.fm.lo.ModSorter/]: Found system mod: forge [15:45:01] [main/DEBUG] [ne.mi.fm.lo.ModSorter/LOADING]: Found 4 mod requirements (4 mandatory, 0 optional) [15:45:01] [main/DEBUG] [ne.mi.fm.lo.ModSorter/LOADING]: Found 0 mod requirements missing (0 mandatory, 0 optional) [15:45:02] [main/DEBUG] [ne.mi.fm.lo.MCPNamingService/CORE]: Loaded 34318 method mappings from methods.csv [15:45:02] [main/DEBUG] [ne.mi.fm.lo.MCPNamingService/CORE]: Loaded 31014 field mappings from fields.csv [15:45:02] [main/DEBUG] [cp.mo.mo.TransformationServicesHandler/MODLAUNCHER]: Transformation services loading transformers [15:45:02] [main/DEBUG] [cp.mo.mo.TransformationServiceDecorator/MODLAUNCHER]: Initializing transformers for transformation service mixin [15:45:02] [main/DEBUG] [cp.mo.mo.TransformationServiceDecorator/MODLAUNCHER]: Initialized transformers for transformation service mixin [15:45:02] [main/DEBUG] [cp.mo.mo.TransformationServiceDecorator/MODLAUNCHER]: Initializing transformers for transformation service fml [15:45:02] [main/DEBUG] [ne.mi.fm.lo.FMLServiceProvider/CORE]: Loading coremod transformers [15:45:02] [main/DEBUG] [ne.mi.co.CoreModEngine/COREMOD]: Loading CoreMod from coremods/field_to_method.js [15:45:03] [main/DEBUG] [ne.mi.co.CoreModEngine/COREMOD]: CoreMod loaded successfully [15:45:03] [main/DEBUG] [ne.mi.co.CoreModEngine/COREMOD]: Loading CoreMod from coremods/field_to_instanceof.js [15:45:03] [main/DEBUG] [ne.mi.co.CoreModEngine/COREMOD]: CoreMod loaded successfully [15:45:03] [main/DEBUG] [ne.mi.co.CoreModEngine/COREMOD]: Loading CoreMod from coremods/add_bouncer_method.js [15:45:03] [main/DEBUG] [ne.mi.co.CoreModEngine/COREMOD]: CoreMod loaded successfully [15:45:03] [main/DEBUG] [ne.mi.co.CoreModEngine/COREMOD]: Loading CoreMod from coremods/method_redirector.js [15:45:03] [main/DEBUG] [ne.mi.co.CoreModEngine/COREMOD]: CoreMod loaded successfully [15:45:03] [main/DEBUG] [cp.mo.mo.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@443faa85 to Target : CLASS {Lnet/minecraft/world/level/biome/Biome;} {} {V} [15:45:03] [main/DEBUG] [cp.mo.mo.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@30839e44 to Target : CLASS {Lnet/minecraft/world/level/levelgen/structure/Structure;} {} {V} [15:45:03] [main/DEBUG] [cp.mo.mo.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@5f174dd2 to Target : CLASS {Lnet/minecraft/world/effect/MobEffectInstance;} {} {V} [15:45:03] [main/DEBUG] [cp.mo.mo.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@1945113f to Target : CLASS {Lnet/minecraft/world/level/block/LiquidBlock;} {} {V} [15:45:03] [main/DEBUG] [cp.mo.mo.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@45aca496 to Target : CLASS {Lnet/minecraft/world/item/BucketItem;} {} {V} [15:45:03] [main/DEBUG] [cp.mo.mo.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@697173d9 to Target : CLASS {Lnet/minecraft/world/level/block/StairBlock;} {} {V} [15:45:03] [main/DEBUG] [cp.mo.mo.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@ceddaf8 to Target : CLASS {Lnet/minecraft/world/level/block/FlowerPotBlock;} {} {V} [15:45:03] [main/DEBUG] [cp.mo.mo.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@3d90eeb3 to Target : CLASS {Lnet/minecraft/world/item/ItemStack;} {} {V} [15:45:03] [main/DEBUG] [cp.mo.mo.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@1db87583 to Target : CLASS {Lnet/minecraft/network/play/client/CClientSettingsPacket;} {} {V} [15:45:03] [main/DEBUG] [cp.mo.mo.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@7fb53256 to Target : CLASS {Lnet/minecraft/world/entity/monster/Zombie;} {} {V} [15:45:03] [main/DEBUG] [cp.mo.mo.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@7fb53256 to Target : CLASS {Lnet/minecraft/world/entity/raid/Raid;} {} {V} [15:45:03] [main/DEBUG] [cp.mo.mo.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@7fb53256 to Target : CLASS {Lnet/minecraft/world/level/levelgen/PhantomSpawner;} {} {V} [15:45:03] [main/DEBUG] [cp.mo.mo.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@7fb53256 to Target : CLASS {Lnet/minecraft/world/entity/animal/horse/SkeletonTrapGoal;} {} {V} [15:45:03] [main/DEBUG] [cp.mo.mo.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@7fb53256 to Target : CLASS {Lnet/minecraft/world/level/levelgen/structure/structures/SwampHutPiece;} {} {V} [15:45:03] [main/DEBUG] [cp.mo.mo.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@7fb53256 to Target : CLASS {Lnet/minecraft/world/entity/monster/ZombieVillager;} {} {V} [15:45:03] [main/DEBUG] [cp.mo.mo.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@7fb53256 to Target : CLASS {Lnet/minecraft/world/level/levelgen/PatrolSpawner;} {} {V} [15:45:03] [main/DEBUG] [cp.mo.mo.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@7fb53256 to Target : CLASS {Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate;} {} {V} [15:45:03] [main/DEBUG] [cp.mo.mo.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@7fb53256 to Target : CLASS {Lnet/minecraft/server/commands/SummonCommand;} {} {V} [15:45:03] [main/DEBUG] [cp.mo.mo.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@7fb53256 to Target : CLASS {Lnet/minecraft/world/entity/monster/Evoker$EvokerSummonSpellGoal;} {} {V} [15:45:03] [main/DEBUG] [cp.mo.mo.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@7fb53256 to Target : CLASS {Lnet/minecraft/world/entity/npc/Villager;} {} {V} [15:45:03] [main/DEBUG] [cp.mo.mo.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@7fb53256 to Target : CLASS {Lnet/minecraft/server/commands/RaidCommand;} {} {V} [15:45:03] [main/DEBUG] [cp.mo.mo.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@7fb53256 to Target : CLASS {Lnet/minecraft/world/level/NaturalSpawner;} {} {V} [15:45:03] [main/DEBUG] [cp.mo.mo.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@7fb53256 to Target : CLASS {Lnet/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$WoodlandMansionPiece;} {} {V} [15:45:03] [main/DEBUG] [cp.mo.mo.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@7fb53256 to Target : CLASS {Lnet/minecraft/world/entity/npc/CatSpawner;} {} {V} [15:45:03] [main/DEBUG] [cp.mo.mo.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@7fb53256 to Target : CLASS {Lnet/minecraft/world/entity/monster/Spider;} {} {V} [15:45:03] [main/DEBUG] [cp.mo.mo.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@7fb53256 to Target : CLASS {Lnet/minecraft/world/level/levelgen/structure/structures/OceanRuinPieces$OceanRuinPiece;} {} {V} [15:45:03] [main/DEBUG] [cp.mo.mo.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@7fb53256 to Target : CLASS {Lnet/minecraft/world/entity/EntityType;} {} {V} [15:45:03] [main/DEBUG] [cp.mo.mo.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@7fb53256 to Target : CLASS {Lnet/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentPiece;} {} {V} [15:45:03] [main/DEBUG] [cp.mo.mo.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@7fb53256 to Target : CLASS {Lnet/minecraft/world/entity/ai/village/VillageSiege;} {} {V} [15:45:03] [main/DEBUG] [cp.mo.mo.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@7fb53256 to Target : CLASS {Lnet/minecraft/world/entity/animal/frog/Tadpole;} {} {V} [15:45:03] [main/DEBUG] [cp.mo.mo.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@7fb53256 to Target : CLASS {Lnet/minecraft/world/entity/monster/Strider;} {} {V} [15:45:03] [main/DEBUG] [cp.mo.mo.TransformationServiceDecorator/MODLAUNCHER]: Initialized transformers for transformation service fml [15:45:03] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:ModLauncher Root Container(ModLauncher:4f56a0a2)] [15:45:03] [main/DEBUG] [mixin/]: Processing launch tasks for PlatformAgent[MixinPlatformAgentDefault:ModLauncher Root Container(ModLauncher:4f56a0a2)] [15:45:03] [main/DEBUG] [mixin/]: Adding mixin platform agents for container SecureJarResource(minecraft) [15:45:03] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(minecraft) [15:45:03] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(minecraft) [15:45:03] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(minecraft) [15:45:03] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container SecureJarResource(minecraft) [15:45:03] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(minecraft)] [15:45:03] [main/DEBUG] [mixin/]: Adding mixin platform agents for container SecureJarResource(forge) [15:45:03] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(forge) [15:45:03] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(forge) [15:45:03] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(forge) [15:45:03] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container SecureJarResource(forge) [15:45:03] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(forge)] [15:45:03] [main/DEBUG] [mixin/]: Adding mixin platform agents for container SecureJarResource(epicfight) [15:45:03] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(epicfight) [15:45:03] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(epicfight) [15:45:03] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(epicfight) [15:45:03] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container SecureJarResource(epicfight) [15:45:03] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(epicfight)] [15:45:03] [main/DEBUG] [mixin/]: Registering mixin config: mixins.epicfight.json [15:45:04] [main/DEBUG] [mixin/]: Compatibility level JAVA_17 specified by mixins.epicfight.json is higher than the maximum level supported by this version of mixin (JAVA_13). [15:45:04] [main/INFO] [mixin/]: Compatibility level set to JAVA_17 [15:45:04] [main/DEBUG] [mixin/]: Adding mixin platform agents for container SecureJarResource(lobotomy_combat) [15:45:04] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(lobotomy_combat) [15:45:04] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(lobotomy_combat) [15:45:04] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(lobotomy_combat) [15:45:04] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container SecureJarResource(lobotomy_combat) [15:45:04] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(lobotomy_combat)] [15:45:04] [main/DEBUG] [mixin/]: inject() running with 5 agents [15:45:04] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:ModLauncher Root Container(ModLauncher:4f56a0a2)] [15:45:04] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(minecraft)] [15:45:04] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(forge)] [15:45:04] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(epicfight)] [15:45:04] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(lobotomy_combat)] [15:45:04] [main/INFO] [cp.mo.mo.LaunchServiceHandler/MODLAUNCHER]: Launching target 'forgeclientuserdev' with arguments [--version, MOD_DEV, --gameDir, ., --assetsDir, C:\Users\funny\.gradle\caches\forge_gradle\assets, --assetIndex, 5] [15:45:04] [main/DEBUG] [mixin/]: Error cleaning class output directory: .mixin.out [15:45:04] [main/DEBUG] [mixin/]: Preparing mixins for MixinEnvironment[DEFAULT] [15:45:04] [main/DEBUG] [mixin/]: Selecting config mixins.epicfight.json [15:45:04] [main/DEBUG] [mixin/]: Preparing mixins.epicfight.json (18) [15:45:04] [main/WARN] [mixin/]: Error loading class: net/irisshaders/iris/pipeline/programs/ExtendedShader (java.lang.ClassNotFoundException: net.irisshaders.iris.pipeline.programs.ExtendedShader) [15:45:04] [main/WARN] [mixin/]: @Mixin target net.irisshaders.iris.pipeline.programs.ExtendedShader was not found mixins.epicfight.json:MixinIrisShaderInstance [15:45:04] [main/WARN] [mixin/]: Error loading class: net/irisshaders/iris/pipeline/PipelineManager (java.lang.ClassNotFoundException: net.irisshaders.iris.pipeline.PipelineManager) [15:45:04] [main/WARN] [mixin/]: @Mixin target net.irisshaders.iris.pipeline.PipelineManager was not found mixins.epicfight.json:MixinPipelineManager [15:45:04] [main/DEBUG] [mixin/]: Registering new injector for @Inject with org.spongepowered.asm.mixin.injection.struct.CallbackInjectionInfo [15:45:04] [main/DEBUG] [mixin/]: Registering new injector for @ModifyArg with org.spongepowered.asm.mixin.injection.struct.ModifyArgInjectionInfo [15:45:04] [main/DEBUG] [mixin/]: Registering new injector for @ModifyArgs with org.spongepowered.asm.mixin.injection.struct.ModifyArgsInjectionInfo [15:45:04] [main/DEBUG] [mixin/]: Registering new injector for @Redirect with org.spongepowered.asm.mixin.injection.struct.RedirectInjectionInfo [15:45:04] [main/DEBUG] [mixin/]: Registering new injector for @ModifyVariable with org.spongepowered.asm.mixin.injection.struct.ModifyVariableInjectionInfo [15:45:04] [main/DEBUG] [mixin/]: Registering new injector for @ModifyConstant with org.spongepowered.asm.mixin.injection.struct.ModifyConstantInjectionInfo [15:45:04] [main/DEBUG] [mixin/]: Prepared 16 mixins in 0.339 sec (21.2ms avg) (0ms load, 0ms transform, 0ms plugin) [15:45:04] [main/DEBUG] [mixin/]: Mixing MixinMinecraft from mixins.epicfight.json into net.minecraft.client.Minecraft [15:45:05] [main/DEBUG] [io.ne.ut.in.lo.InternalLoggerFactory/]: Using SLF4J as the default logging framework [15:45:05] [main/DEBUG] [io.ne.ut.ResourceLeakDetector/]: -Dio.netty.leakDetection.level: simple [15:45:05] [main/DEBUG] [io.ne.ut.ResourceLeakDetector/]: -Dio.netty.leakDetection.targetRecords: 4 [15:45:05] [main/DEBUG] [os.ut.FileUtil/]: No oshi.properties file found from ClassLoader cpw.mods.modlauncher.TransformingClassLoader@2489e84a [15:45:05] [main/DEBUG] [os.ut.FileUtil/]: No oshi.architecture.properties file found from ClassLoader cpw.mods.modlauncher.TransformingClassLoader@2489e84a [15:45:06] [pool-4-thread-1/DEBUG] [mixin/]: Mixing MixinLivingEntity from mixins.epicfight.json into net.minecraft.world.entity.LivingEntity [15:45:06] [pool-4-thread-1/DEBUG] [ne.mi.co.tr.CoreModBaseTransformer/COREMOD]: Transforming net/minecraft/world/entity/EntityType [15:45:06] [pool-4-thread-1/DEBUG] [mixin/]: Mixing MixinPlayer from mixins.epicfight.json into net.minecraft.world.entity.player.Player [15:45:06] [pool-4-thread-1/DEBUG] [ne.mi.co.tr.CoreModBaseTransformer/COREMOD]: Transforming net/minecraft/world/entity/EntityType [15:45:07] [pool-4-thread-1/DEBUG] [ne.mi.co.tr.CoreModBaseTransformer/COREMOD]: Transforming net/minecraft/world/level/block/LiquidBlock [15:45:07] [pool-4-thread-1/DEBUG] [ne.mi.co.tr.CoreModBaseTransformer/COREMOD]: Transforming net/minecraft/world/level/block/StairBlock [15:45:07] [pool-4-thread-1/DEBUG] [ne.mi.co.tr.CoreModBaseTransformer/COREMOD]: Transforming net/minecraft/world/level/block/FlowerPotBlock [15:45:08] [pool-4-thread-1/DEBUG] [mixin/]: Mixing MixinMob from mixins.epicfight.json into net.minecraft.world.entity.Mob [15:45:08] [pool-4-thread-1/DEBUG] [ne.mi.co.tr.CoreModBaseTransformer/COREMOD]: Transforming net/minecraft/world/item/ItemStack [15:45:08] [pool-4-thread-1/DEBUG] [mixin/]: Mixing MixinWitherBoss from mixins.epicfight.json into net.minecraft.world.entity.boss.wither.WitherBoss [15:45:08] [pool-4-thread-1/DEBUG] [mixin/]: Renaming @Unique method getAmbientSound()Lnet/minecraft/sounds/SoundEvent; to md7d9a6b$getAmbientSound$0 in mixins.epicfight.json:MixinWitherBoss [15:45:08] [pool-4-thread-1/WARN] [mixin/]: @Final field nextHeadUpdate:[I in mixins.epicfight.json:MixinWitherBoss should be final [15:45:08] [pool-4-thread-1/WARN] [mixin/]: @Final field idleHeadUpdates:[I in mixins.epicfight.json:MixinWitherBoss should be final [15:45:08] [pool-4-thread-1/DEBUG] [ne.mi.co.tr.CoreModBaseTransformer/COREMOD]: Transforming net/minecraft/world/entity/animal/frog/Tadpole [15:45:09] [pool-4-thread-1/DEBUG] [ne.mi.co.tr.CoreModBaseTransformer/COREMOD]: Transforming net/minecraft/world/item/BucketItem [15:45:10] [pool-4-thread-1/DEBUG] [ne.mi.co.tr.CoreModBaseTransformer/COREMOD]: Transforming net/minecraft/world/entity/monster/Spider [15:45:10] [Datafixer Bootstrap/INFO] [mojang/DataFixerBuilder]: 188 Datafixer optimizations took 152 milliseconds [15:45:10] [pool-4-thread-1/DEBUG] [ne.mi.co.tr.CoreModBaseTransformer/COREMOD]: Transforming net/minecraft/world/entity/monster/Zombie [15:45:10] [pool-4-thread-1/DEBUG] [ne.mi.co.tr.CoreModBaseTransformer/COREMOD]: Transforming net/minecraft/world/entity/monster/ZombieVillager [15:45:10] [pool-4-thread-1/DEBUG] [mixin/]: Mixing MixinThrownTrident from mixins.epicfight.json into net.minecraft.world.entity.projectile.ThrownTrident [15:45:10] [pool-4-thread-1/DEBUG] [mixin/]: Mixing MixinEndCrystal from mixins.epicfight.json into net.minecraft.world.entity.boss.enderdragon.EndCrystal [15:45:10] [pool-4-thread-1/DEBUG] [ne.mi.co.tr.CoreModBaseTransformer/COREMOD]: Transforming net/minecraft/world/entity/monster/Evoker$EvokerSummonSpellGoal [15:45:10] [pool-4-thread-1/DEBUG] [ne.mi.co.tr.CoreModBaseTransformer/COREMOD]: Transforming net/minecraft/world/entity/animal/horse/SkeletonTrapGoal [15:45:10] [pool-4-thread-1/DEBUG] [ne.mi.co.tr.CoreModBaseTransformer/COREMOD]: Transforming net/minecraft/world/entity/monster/Strider [15:45:10] [pool-4-thread-1/WARN] [minecraft/SynchedEntityData]: defineId called for: class net.minecraft.world.entity.LivingEntity from class yesman.epicfight.world.capabilities.entitypatch.LivingEntityPatch [15:45:10] [pool-4-thread-1/WARN] [minecraft/SynchedEntityData]: defineId called for: class net.minecraft.world.entity.LivingEntity from class yesman.epicfight.world.capabilities.entitypatch.LivingEntityPatch [15:45:10] [pool-4-thread-1/WARN] [minecraft/SynchedEntityData]: defineId called for: class net.minecraft.world.entity.LivingEntity from class yesman.epicfight.world.capabilities.entitypatch.LivingEntityPatch [15:45:10] [pool-4-thread-1/WARN] [minecraft/SynchedEntityData]: defineId called for: class net.minecraft.world.entity.LivingEntity from class yesman.epicfight.world.capabilities.entitypatch.LivingEntityPatch [15:45:10] [pool-4-thread-1/DEBUG] [mixin/]: Mixing MixinServerPlayer from mixins.epicfight.json into net.minecraft.server.level.ServerPlayer [15:45:10] [pool-4-thread-1/DEBUG] [ne.mi.co.tr.CoreModBaseTransformer/COREMOD]: Transforming net/minecraft/world/entity/npc/Villager [15:45:10] [pool-4-thread-1/DEBUG] [ne.mi.co.tr.CoreModBaseTransformer/COREMOD]: Transforming net/minecraft/world/effect/MobEffectInstance [15:45:11] [pool-4-thread-1/DEBUG] [ne.mi.co.tr.CoreModBaseTransformer/COREMOD]: Transforming net/minecraft/world/level/levelgen/structure/Structure [15:45:11] [pool-4-thread-1/DEBUG] [ne.mi.co.tr.CoreModBaseTransformer/COREMOD]: Transforming net/minecraft/world/level/levelgen/structure/structures/OceanRuinPieces$OceanRuinPiece [15:45:11] [pool-4-thread-1/DEBUG] [ne.mi.co.tr.CoreModBaseTransformer/COREMOD]: Transforming net/minecraft/world/level/levelgen/structure/structures/SwampHutPiece [15:45:11] [pool-4-thread-1/DEBUG] [ne.mi.co.tr.CoreModBaseTransformer/COREMOD]: Transforming net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentPiece [15:45:11] [pool-4-thread-1/DEBUG] [ne.mi.co.tr.CoreModBaseTransformer/COREMOD]: Transforming net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$WoodlandMansionPiece [15:45:11] [pool-4-thread-1/DEBUG] [ne.mi.co.tr.CoreModBaseTransformer/COREMOD]: Transforming net/minecraft/world/level/biome/Biome [15:45:11] [pool-4-thread-1/DEBUG] [ne.mi.re.GameData/REGISTRIES]: Creating vanilla freeze snapshot [15:45:11] [pool-4-thread-1/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry minecraft:block Sync: VANILLA -> ACTIVE [15:45:11] [pool-4-thread-1/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry minecraft:fluid Sync: VANILLA -> ACTIVE [15:45:11] [pool-4-thread-1/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry minecraft:item Sync: VANILLA -> ACTIVE [15:45:11] [pool-4-thread-1/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry minecraft:mob_effect Sync: VANILLA -> ACTIVE [15:45:11] [pool-4-thread-1/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry minecraft:sound_event Sync: VANILLA -> ACTIVE [15:45:11] [pool-4-thread-1/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry minecraft:potion Sync: VANILLA -> ACTIVE [15:45:11] [pool-4-thread-1/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry minecraft:enchantment Sync: VANILLA -> ACTIVE [15:45:11] [pool-4-thread-1/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry minecraft:entity_type Sync: VANILLA -> ACTIVE [15:45:11] [pool-4-thread-1/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry minecraft:block_entity_type Sync: VANILLA -> ACTIVE [15:45:11] [pool-4-thread-1/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry minecraft:particle_type Sync: VANILLA -> ACTIVE [15:45:11] [pool-4-thread-1/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry minecraft:menu Sync: VANILLA -> ACTIVE [15:45:11] [pool-4-thread-1/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry minecraft:painting_variant Sync: VANILLA -> ACTIVE [15:45:11] [pool-4-thread-1/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry minecraft:recipe_type Sync: VANILLA -> ACTIVE [15:45:11] [pool-4-thread-1/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry minecraft:recipe_serializer Sync: VANILLA -> ACTIVE [15:45:11] [pool-4-thread-1/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry minecraft:attribute Sync: VANILLA -> ACTIVE [15:45:11] [pool-4-thread-1/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry minecraft:stat_type Sync: VANILLA -> ACTIVE [15:45:11] [pool-4-thread-1/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry minecraft:command_argument_type Sync: VANILLA -> ACTIVE [15:45:11] [pool-4-thread-1/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry minecraft:villager_profession Sync: VANILLA -> ACTIVE [15:45:11] [pool-4-thread-1/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry minecraft:point_of_interest_type Sync: VANILLA -> ACTIVE [15:45:11] [pool-4-thread-1/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry minecraft:memory_module_type Sync: VANILLA -> ACTIVE [15:45:11] [pool-4-thread-1/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry minecraft:sensor_type Sync: VANILLA -> ACTIVE [15:45:11] [pool-4-thread-1/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry minecraft:schedule Sync: VANILLA -> ACTIVE [15:45:11] [pool-4-thread-1/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry minecraft:activity Sync: VANILLA -> ACTIVE [15:45:11] [pool-4-thread-1/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry minecraft:worldgen/carver Sync: VANILLA -> ACTIVE [15:45:11] [pool-4-thread-1/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry minecraft:worldgen/feature Sync: VANILLA -> ACTIVE [15:45:11] [pool-4-thread-1/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry minecraft:chunk_status Sync: VANILLA -> ACTIVE [15:45:11] [pool-4-thread-1/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry minecraft:worldgen/block_state_provider_type Sync: VANILLA -> ACTIVE [15:45:11] [pool-4-thread-1/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry minecraft:worldgen/foliage_placer_type Sync: VANILLA -> ACTIVE [15:45:11] [pool-4-thread-1/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry minecraft:worldgen/tree_decorator_type Sync: VANILLA -> ACTIVE [15:45:11] [pool-4-thread-1/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry minecraft:worldgen/biome Sync: VANILLA -> ACTIVE [15:45:11] [pool-4-thread-1/DEBUG] [ne.mi.re.GameData/REGISTRIES]: Vanilla freeze snapshot created [15:45:11] [Render thread/DEBUG] [mixin/]: Mixing MixinBufferBuilder from mixins.epicfight.json into com.mojang.blaze3d.vertex.BufferBuilder [15:45:12] [Render thread/DEBUG] [mixin/]: Mixing MixinAbstractContainerEventHandler from mixins.epicfight.json into net.minecraft.client.gui.components.events.AbstractContainerEventHandler [15:45:12] [Render thread/DEBUG] [mixin/]: Mixing MixinLocalPlayer from mixins.epicfight.json into net.minecraft.client.player.LocalPlayer [15:45:12] [Render thread/WARN] [minecraft/VanillaPackResourcesBuilder]: Assets URL 'union:/C:/Users/funny/.gradle/caches/forge_gradle/minecraft_user_repo/net/minecraftforge/forge/1.20.1-47.3.5_mapped_parchment_2023.09.03-1.20.1/forge-1.20.1-47.3.5_mapped_parchment_2023.09.03-1.20.1-recomp.jar%23191!/assets/.mcassetsroot' uses unexpected schema [15:45:12] [Render thread/WARN] [minecraft/VanillaPackResourcesBuilder]: Assets URL 'union:/C:/Users/funny/.gradle/caches/forge_gradle/minecraft_user_repo/net/minecraftforge/forge/1.20.1-47.3.5_mapped_parchment_2023.09.03-1.20.1/forge-1.20.1-47.3.5_mapped_parchment_2023.09.03-1.20.1-recomp.jar%23191!/data/.mcassetsroot' uses unexpected schema [15:45:12] [Render thread/INFO] [mojang/YggdrasilAuthenticationService]: Environment: authHost='https://authserver.mojang.com', accountsHost='https://api.mojang.com', sessionHost='https://sessionserver.mojang.com', servicesHost='https://api.minecraftservices.com', name='PROD' [15:45:12] [Render thread/INFO] [minecraft/Minecraft]: Setting user: Dev [15:45:12] [Render thread/INFO] [minecraft/Minecraft]: Backend library: LWJGL version 3.3.1 build 7 [15:45:12] [Render thread/DEBUG] [mixin/]: Mixing MixinKeyboardHandler from mixins.epicfight.json into net.minecraft.client.KeyboardHandler [15:45:12] [Render thread/DEBUG] [ne.mi.co.ForgeI18n/CORE]: Loading I18N data entries: 6430 [15:45:12] [Render thread/DEBUG] [ne.mi.fm.ModWorkManager/LOADING]: Using 16 threads for parallel mod-loading [15:45:12] [Render thread/DEBUG] [ne.mi.fm.ja.FMLJavaModLanguageProvider/LOADING]: Loading FMLModContainer from classloader cpw.mods.modlauncher.TransformingClassLoader@2489e84a - got cpw.mods.cl.ModuleClassLoader@3eed0f5 [15:45:12] [Render thread/DEBUG] [ne.mi.fm.ja.FMLModContainer/LOADING]: Creating FMLModContainer instance for net.minecraftforge.common.ForgeMod [15:45:12] [Render thread/DEBUG] [ne.mi.fm.ja.FMLJavaModLanguageProvider/LOADING]: Loading FMLModContainer from classloader cpw.mods.modlauncher.TransformingClassLoader@2489e84a - got cpw.mods.cl.ModuleClassLoader@3eed0f5 [15:45:12] [Render thread/DEBUG] [ne.mi.fm.ja.FMLModContainer/LOADING]: Creating FMLModContainer instance for yesman.epicfight.main.EpicFightMod [15:45:12] [Render thread/DEBUG] [ne.mi.fm.ja.FMLJavaModLanguageProvider/LOADING]: Loading FMLModContainer from classloader cpw.mods.modlauncher.TransformingClassLoader@2489e84a - got cpw.mods.cl.ModuleClassLoader@3eed0f5 [15:45:12] [Render thread/DEBUG] [ne.mi.fm.ja.FMLModContainer/LOADING]: Creating FMLModContainer instance for pers.ks.lobotomy_combat.main.LobotomyCombat [15:45:12] [modloading-worker-0/DEBUG] [ne.mi.ve.fo.ForgeVersion/CORE]: Forge Version package package net.minecraftforge.versions.forge, Forge, version 47.3 from cpw.mods.modlauncher.TransformingClassLoader@2489e84a [15:45:12] [modloading-worker-0/DEBUG] [ne.mi.ve.fo.ForgeVersion/CORE]: Found Forge version 47.3.5 [15:45:12] [modloading-worker-0/DEBUG] [ne.mi.ve.fo.ForgeVersion/CORE]: Found Forge spec 47.3 [15:45:12] [modloading-worker-0/DEBUG] [ne.mi.ve.fo.ForgeVersion/CORE]: Found Forge group net.minecraftforge [15:45:12] [modloading-worker-0/DEBUG] [ne.mi.ve.mc.MCPVersion/CORE]: MCP Version package package net.minecraftforge.versions.mcp, Minecraft, version 1.20.1 from cpw.mods.modlauncher.TransformingClassLoader@2489e84a [15:45:12] [modloading-worker-0/DEBUG] [ne.mi.ve.mc.MCPVersion/CORE]: Found MC version information 1.20.1 [15:45:12] [modloading-worker-0/DEBUG] [ne.mi.ve.mc.MCPVersion/CORE]: Found MCP version information 20230612.114412 [15:45:12] [modloading-worker-0/INFO] [ne.mi.co.ForgeMod/FORGEMOD]: Forge mod loading, version 47.3.5, for MC 1.20.1 with MCP 20230612.114412 [15:45:12] [modloading-worker-0/INFO] [ne.mi.co.MinecraftForge/FORGE]: MinecraftForge v47.3.5 Initialized [15:45:12] [modloading-worker-0/DEBUG] [ne.mi.fm.co.ConfigTracker/CONFIG]: Config file lobotomy_combat-common.toml for lobotomy_combat tracking [15:45:12] [modloading-worker-0/DEBUG] [ne.mi.fm.ja.AutomaticEventSubscriber/LOADING]: Attempting to inject @EventBusSubscriber classes into the eventbus for lobotomy_combat [15:45:12] [modloading-worker-0/DEBUG] [ne.mi.fm.co.ConfigTracker/CONFIG]: Config file epicfight-client.toml for epicfight tracking [15:45:12] [modloading-worker-0/DEBUG] [ne.mi.fm.ja.AutomaticEventSubscriber/LOADING]: Auto-subscribing pers.ks.lobotomy_combat.config.Config to MOD [15:45:12] [modloading-worker-0/DEBUG] [epicfight/]: Registered Extendable Enum class yesman.epicfight.api.animation.LivingMotions in living_motion [15:45:12] [modloading-worker-0/DEBUG] [epicfight/]: Registered Extendable Enum class yesman.epicfight.skill.SkillCategories in skill_category [15:45:12] [modloading-worker-0/DEBUG] [epicfight/]: Registered Extendable Enum class yesman.epicfight.skill.SkillSlots in skill_slot [15:45:12] [modloading-worker-0/DEBUG] [epicfight/]: Registered Extendable Enum class yesman.epicfight.world.capabilities.item.CapabilityItem$Styles in style [15:45:12] [modloading-worker-0/DEBUG] [epicfight/]: Registered Extendable Enum class yesman.epicfight.world.capabilities.item.CapabilityItem$WeaponCategories in weapon_category [15:45:12] [modloading-worker-0/DEBUG] [io.ne.ut.in.PlatformDependent0/]: -Dio.netty.noUnsafe: false [15:45:12] [modloading-worker-0/DEBUG] [io.ne.ut.in.PlatformDependent0/]: Java version: 17 [15:45:12] [modloading-worker-0/DEBUG] [io.ne.ut.in.PlatformDependent0/]: sun.misc.Unsafe.theUnsafe: available [15:45:12] [modloading-worker-0/DEBUG] [io.ne.ut.in.PlatformDependent0/]: sun.misc.Unsafe.copyMemory: available [15:45:12] [modloading-worker-0/DEBUG] [io.ne.ut.in.PlatformDependent0/]: sun.misc.Unsafe.storeFence: available [15:45:12] [modloading-worker-0/DEBUG] [io.ne.ut.in.PlatformDependent0/]: java.nio.Buffer.address: available [15:45:12] [modloading-worker-0/DEBUG] [io.ne.ut.in.PlatformDependent0/]: direct buffer constructor: unavailable java.lang.UnsupportedOperationException: Reflective setAccessible(true) disabled at io.netty.util.internal.ReflectionUtil.trySetAccessible(ReflectionUtil.java:31) ~[netty-common-4.1.82.Final.jar%23151!/:4.1.82.Final] {} at io.netty.util.internal.PlatformDependent0$5.run(PlatformDependent0.java:288) ~[netty-common-4.1.82.Final.jar%23151!/:4.1.82.Final] {} at java.security.AccessController.doPrivileged(AccessController.java:318) ~[?:?] {} at io.netty.util.internal.PlatformDependent0.<clinit>(PlatformDependent0.java:282) ~[netty-common-4.1.82.Final.jar%23151!/:4.1.82.Final] {} at io.netty.util.internal.PlatformDependent.isAndroid(PlatformDependent.java:333) ~[netty-common-4.1.82.Final.jar%23151!/:4.1.82.Final] {} at io.netty.util.internal.PlatformDependent.<clinit>(PlatformDependent.java:88) ~[netty-common-4.1.82.Final.jar%23151!/:4.1.82.Final] {} at io.netty.util.ConstantPool.<init>(ConstantPool.java:34) ~[netty-common-4.1.82.Final.jar%23151!/:4.1.82.Final] {} at io.netty.util.AttributeKey$1.<init>(AttributeKey.java:27) ~[netty-common-4.1.82.Final.jar%23151!/:4.1.82.Final] {} at io.netty.util.AttributeKey.<clinit>(AttributeKey.java:27) ~[netty-common-4.1.82.Final.jar%23151!/:4.1.82.Final] {} at net.minecraftforge.network.NetworkConstants.<clinit>(NetworkConstants.java:34) ~[forge-1.20.1-47.3.5_mapped_parchment_2023.09.03-1.20.1-recomp.jar%23190%23197!/:?] {re:classloading} at net.minecraftforge.common.ForgeMod.<init>(ForgeMod.java:429) ~[forge-1.20.1-47.3.5_mapped_parchment_2023.09.03-1.20.1-recomp.jar%23190%23197!/:?] {re:classloading} at jdk.internal.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method) ~[?:?] {} at jdk.internal.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:77) ~[?:?] {} at jdk.internal.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45) ~[?:?] {} at java.lang.reflect.Constructor.newInstanceWithCaller(Constructor.java:499) ~[?:?] {} at java.lang.reflect.Constructor.newInstance(Constructor.java:480) ~[?:?] {} at net.minecraftforge.fml.javafmlmod.FMLModContainer.constructMod(FMLModContainer.java:70) ~[javafmllanguage-1.20.1-47.3.5.jar%23192!/:?] {} at net.minecraftforge.fml.ModContainer.lambda$buildTransitionHandler$4(ModContainer.java:124) ~[fmlcore-1.20.1-47.3.5.jar%23195!/:?] {} at java.util.concurrent.CompletableFuture$AsyncRun.run(CompletableFuture.java:1804) ~[?:?] {} at java.util.concurrent.CompletableFuture$AsyncRun.exec(CompletableFuture.java:1796) ~[?:?] {} at java.util.concurrent.ForkJoinTask.doExec(ForkJoinTask.java:373) ~[?:?] {} at java.util.concurrent.ForkJoinPool$WorkQueue.topLevelExec(ForkJoinPool.java:1182) ~[?:?] {} at java.util.concurrent.ForkJoinPool.scan(ForkJoinPool.java:1655) ~[?:?] {} at java.util.concurrent.ForkJoinPool.runWorker(ForkJoinPool.java:1622) ~[?:?] {} at java.util.concurrent.ForkJoinWorkerThread.run(ForkJoinWorkerThread.java:165) ~[?:?] {} [15:45:12] [modloading-worker-0/DEBUG] [io.ne.ut.in.PlatformDependent0/]: java.nio.Bits.unaligned: available, true [15:45:12] [modloading-worker-0/DEBUG] [io.ne.ut.in.PlatformDependent0/]: jdk.internal.misc.Unsafe.allocateUninitializedArray(int): unavailable java.lang.IllegalAccessException: class io.netty.util.internal.PlatformDependent0$7 (in module io.netty.common) cannot access class jdk.internal.misc.Unsafe (in module java.base) because module java.base does not export jdk.internal.misc to module io.netty.common at jdk.internal.reflect.Reflection.newIllegalAccessException(Reflection.java:392) ~[?:?] {} at java.lang.reflect.AccessibleObject.checkAccess(AccessibleObject.java:674) ~[?:?] {} at java.lang.reflect.Method.invoke(Method.java:560) ~[?:?] {} at io.netty.util.internal.PlatformDependent0$7.run(PlatformDependent0.java:410) ~[netty-common-4.1.82.Final.jar%23151!/:4.1.82.Final] {} at java.security.AccessController.doPrivileged(AccessController.java:318) ~[?:?] {} at io.netty.util.internal.PlatformDependent0.<clinit>(PlatformDependent0.java:401) ~[netty-common-4.1.82.Final.jar%23151!/:4.1.82.Final] {} at io.netty.util.internal.PlatformDependent.isAndroid(PlatformDependent.java:333) ~[netty-common-4.1.82.Final.jar%23151!/:4.1.82.Final] {} at io.netty.util.internal.PlatformDependent.<clinit>(PlatformDependent.java:88) ~[netty-common-4.1.82.Final.jar%23151!/:4.1.82.Final] {} at io.netty.util.ConstantPool.<init>(ConstantPool.java:34) ~[netty-common-4.1.82.Final.jar%23151!/:4.1.82.Final] {} at io.netty.util.AttributeKey$1.<init>(AttributeKey.java:27) ~[netty-common-4.1.82.Final.jar%23151!/:4.1.82.Final] {} at io.netty.util.AttributeKey.<clinit>(AttributeKey.java:27) ~[netty-common-4.1.82.Final.jar%23151!/:4.1.82.Final] {} at net.minecraftforge.network.NetworkConstants.<clinit>(NetworkConstants.java:34) ~[forge-1.20.1-47.3.5_mapped_parchment_2023.09.03-1.20.1-recomp.jar%23190%23197!/:?] {re:classloading} at net.minecraftforge.common.ForgeMod.<init>(ForgeMod.java:429) ~[forge-1.20.1-47.3.5_mapped_parchment_2023.09.03-1.20.1-recomp.jar%23190%23197!/:?] {re:classloading} at jdk.internal.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method) ~[?:?] {} at jdk.internal.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:77) ~[?:?] {} at jdk.internal.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45) ~[?:?] {} at java.lang.reflect.Constructor.newInstanceWithCaller(Constructor.java:499) ~[?:?] {} at java.lang.reflect.Constructor.newInstance(Constructor.java:480) ~[?:?] {} at net.minecraftforge.fml.javafmlmod.FMLModContainer.constructMod(FMLModContainer.java:70) ~[javafmllanguage-1.20.1-47.3.5.jar%23192!/:?] {} at net.minecraftforge.fml.ModContainer.lambda$buildTransitionHandler$4(ModContainer.java:124) ~[fmlcore-1.20.1-47.3.5.jar%23195!/:?] {} at java.util.concurrent.CompletableFuture$AsyncRun.run(CompletableFuture.java:1804) ~[?:?] {} at java.util.concurrent.CompletableFuture$AsyncRun.exec(CompletableFuture.java:1796) ~[?:?] {} at java.util.concurrent.ForkJoinTask.doExec(ForkJoinTask.java:373) ~[?:?] {} at java.util.concurrent.ForkJoinPool$WorkQueue.topLevelExec(ForkJoinPool.java:1182) ~[?:?] {} at java.util.concurrent.ForkJoinPool.scan(ForkJoinPool.java:1655) ~[?:?] {} at java.util.concurrent.ForkJoinPool.runWorker(ForkJoinPool.java:1622) ~[?:?] {} at java.util.concurrent.ForkJoinWorkerThread.run(ForkJoinWorkerThread.java:165) ~[?:?] {} [15:45:12] [modloading-worker-0/DEBUG] [io.ne.ut.in.PlatformDependent0/]: java.nio.DirectByteBuffer.<init>(long, int): unavailable [15:45:12] [modloading-worker-0/DEBUG] [io.ne.ut.in.PlatformDependent/]: sun.misc.Unsafe: available [15:45:12] [modloading-worker-0/DEBUG] [io.ne.ut.in.PlatformDependent/]: maxDirectMemory: 4093640704 bytes (maybe) [15:45:12] [modloading-worker-0/DEBUG] [io.ne.ut.in.PlatformDependent/]: -Dio.netty.tmpdir: C:\Users\funny\AppData\Local\Temp (java.io.tmpdir) [15:45:12] [modloading-worker-0/DEBUG] [io.ne.ut.in.PlatformDependent/]: -Dio.netty.bitMode: 64 (sun.arch.data.model) [15:45:12] [modloading-worker-0/DEBUG] [io.ne.ut.in.PlatformDependent/]: Platform: Windows [15:45:12] [modloading-worker-0/DEBUG] [io.ne.ut.in.PlatformDependent/]: -Dio.netty.maxDirectMemory: -1 bytes [15:45:12] [modloading-worker-0/DEBUG] [io.ne.ut.in.PlatformDependent/]: -Dio.netty.uninitializedArrayAllocationThreshold: -1 [15:45:12] [modloading-worker-0/DEBUG] [io.ne.ut.in.CleanerJava9/]: java.nio.ByteBuffer.cleaner(): available [15:45:12] [modloading-worker-0/DEBUG] [io.ne.ut.in.PlatformDependent/]: -Dio.netty.noPreferDirect: false [15:45:12] [modloading-worker-0/DEBUG] [ne.mi.fm.ja.AutomaticEventSubscriber/LOADING]: Attempting to inject @EventBusSubscriber classes into the eventbus for epicfight [15:45:12] [modloading-worker-0/DEBUG] [ne.mi.fm.ja.AutomaticEventSubscriber/LOADING]: Auto-subscribing yesman.epicfight.world.entity.ai.attribute.EpicFightAttributes to MOD [15:45:12] [modloading-worker-0/DEBUG] [ne.mi.fm.ja.AutomaticEventSubscriber/LOADING]: Auto-subscribing yesman.epicfight.main.EpicFightMod$ClientModEvents to MOD [15:45:12] [modloading-worker-0/DEBUG] [ne.mi.fm.ja.AutomaticEventSubscriber/LOADING]: Auto-subscribing yesman.epicfight.gameasset.EpicFightSkills to MOD [15:45:12] [modloading-worker-0/DEBUG] [ne.mi.fm.ja.AutomaticEventSubscriber/LOADING]: Auto-subscribing yesman.epicfight.gameasset.Animations to MOD [15:45:12] [modloading-worker-0/DEBUG] [ne.mi.co.ForgeMod/FORGEMOD]: Loading Network data for FML net version: FML3 [15:45:12] [modloading-worker-0/DEBUG] [ne.mi.fm.ja.AutomaticEventSubscriber/LOADING]: Auto-subscribing yesman.epicfight.events.WorldEvents to FORGE [15:45:13] [modloading-worker-0/DEBUG] [ne.mi.fm.ja.AutomaticEventSubscriber/LOADING]: Auto-subscribing yesman.epicfight.events.PlayerEvents to FORGE [15:45:13] [modloading-worker-0/DEBUG] [ne.mi.fm.co.ConfigTracker/CONFIG]: Config file forge-client.toml for forge tracking [15:45:13] [modloading-worker-0/DEBUG] [ne.mi.fm.co.ConfigTracker/CONFIG]: Config file forge-server.toml for forge tracking [15:45:13] [modloading-worker-0/DEBUG] [ne.mi.fm.ModLoadingContext/]: Attempted to register an empty config for type COMMON on mod forge [15:45:13] [modloading-worker-0/DEBUG] [ne.mi.fm.ja.AutomaticEventSubscriber/LOADING]: Auto-subscribing yesman.epicfight.events.EntityEvents to FORGE [15:45:13] [modloading-worker-0/DEBUG] [ne.mi.fm.ja.AutomaticEventSubscriber/LOADING]: Attempting to inject @EventBusSubscriber classes into the eventbus for forge [15:45:13] [modloading-worker-0/DEBUG] [ne.mi.fm.ja.AutomaticEventSubscriber/LOADING]: Auto-subscribing net.minecraftforge.common.ForgeSpawnEggItem$CommonHandler to MOD [15:45:13] [modloading-worker-0/DEBUG] [ne.mi.fm.ja.AutomaticEventSubscriber/LOADING]: Auto-subscribing net.minecraftforge.common.ForgeSpawnEggItem$ColorRegisterHandler to MOD [15:45:13] [modloading-worker-0/DEBUG] [ne.mi.fm.ja.AutomaticEventSubscriber/LOADING]: Auto-subscribing net.minecraftforge.client.model.data.ModelDataManager to FORGE [15:45:13] [modloading-worker-0/DEBUG] [ne.mi.fm.ja.AutomaticEventSubscriber/LOADING]: Auto-subscribing net.minecraftforge.client.ForgeHooksClient$ClientEvents to MOD [15:45:13] [modloading-worker-0/DEBUG] [ne.mi.fm.ja.AutomaticEventSubscriber/LOADING]: Auto-subscribing net.minecraftforge.client.ClientForgeMod to MOD [15:45:13] [modloading-worker-0/DEBUG] [ne.mi.fm.ja.AutomaticEventSubscriber/LOADING]: Auto-subscribing yesman.epicfight.events.CapabilityEvent to FORGE [15:45:13] [modloading-worker-0/DEBUG] [ne.mi.fm.ja.AutomaticEventSubscriber/LOADING]: Auto-subscribing yesman.epicfight.data.loot.EpicFightLootTables to FORGE [15:45:13] [modloading-worker-0/DEBUG] [ne.mi.fm.ja.AutomaticEventSubscriber/LOADING]: Auto-subscribing yesman.epicfight.client.renderer.EpicFightShaders to MOD [15:45:13] [modloading-worker-0/DEBUG] [ne.mi.fm.ja.AutomaticEventSubscriber/LOADING]: Auto-subscribing yesman.epicfight.client.renderer.EpicFightRenderTypes to MOD [15:45:13] [modloading-worker-0/DEBUG] [ne.mi.fm.ja.AutomaticEventSubscriber/LOADING]: Auto-subscribing yesman.epicfight.client.input.EpicFightKeyMappings to MOD [15:45:13] [modloading-worker-0/DEBUG] [ne.mi.fm.ja.AutomaticEventSubscriber/LOADING]: Auto-subscribing yesman.epicfight.client.events.engine.RenderEngine$Events to FORGE [15:45:13] [modloading-worker-0/DEBUG] [mixin/]: Mixing MixinEnderDragonRenderer from mixins.epicfight.json into net.minecraft.client.renderer.entity.EnderDragonRenderer [15:45:13] [modloading-worker-0/DEBUG] [ne.mi.fm.ja.AutomaticEventSubscriber/LOADING]: Auto-subscribing yesman.epicfight.client.events.engine.ControllEngine$Events to FORGE [15:45:13] [modloading-worker-0/DEBUG] [ne.mi.fm.ja.AutomaticEventSubscriber/LOADING]: Auto-subscribing yesman.epicfight.client.events.ClientModBusEvent to MOD [15:45:13] [modloading-worker-0/DEBUG] [ne.mi.fm.ja.AutomaticEventSubscriber/LOADING]: Auto-subscribing yesman.epicfight.client.events.ClientEvents to FORGE [15:45:13] [modloading-worker-0/DEBUG] [epicfight/]: Loaded enums in class yesman.epicfight.api.animation.LivingMotions [15:45:13] [modloading-worker-0/DEBUG] [epicfight/]: Loaded enums in class yesman.epicfight.skill.SkillCategories [15:45:13] [modloading-worker-0/DEBUG] [epicfight/]: Loaded enums in class yesman.epicfight.skill.SkillSlots [15:45:13] [modloading-worker-0/DEBUG] [epicfight/]: Loaded enums in class yesman.epicfight.world.capabilities.item.CapabilityItem$Styles [15:45:13] [modloading-worker-0/DEBUG] [epicfight/]: Loaded enums in class yesman.epicfight.world.capabilities.item.CapabilityItem$WeaponCategories [15:45:13] [Render thread/DEBUG] [ne.mi.re.ObjectHolderRegistry/REGISTRIES]: Processing ObjectHolder annotations [15:45:13] [Render thread/DEBUG] [ne.mi.re.ObjectHolderRegistry/REGISTRIES]: Found 3979 ObjectHolder annotations [15:45:13] [Render thread/DEBUG] [ne.mi.co.ca.CapabilityManager/CAPABILITIES]: Attempting to automatically register: Lnet/minecraftforge/energy/IEnergyStorage; [15:45:13] [Render thread/DEBUG] [ne.mi.co.ca.CapabilityManager/CAPABILITIES]: Attempting to automatically register: Lnet/minecraftforge/fluids/capability/IFluidHandler; [15:45:13] [Render thread/DEBUG] [ne.mi.co.ca.CapabilityManager/CAPABILITIES]: Attempting to automatically register: Lnet/minecraftforge/fluids/capability/IFluidHandlerItem; [15:45:13] [Render thread/DEBUG] [ne.mi.co.ca.CapabilityManager/CAPABILITIES]: Attempting to automatically register: Lnet/minecraftforge/items/IItemHandler; [15:45:13] [Render thread/DEBUG] [ne.mi.re.GameData/REGISTRIES]: Unfreezing vanilla registries [15:45:13] [Render thread/DEBUG] [ne.mi.re.GameData/REGISTRIES]: Applying holder lookups: minecraft:sound_event [15:45:13] [Render thread/DEBUG] [ne.mi.re.GameData/REGISTRIES]: Holder lookups applied: minecraft:sound_event [15:45:13] [Render thread/DEBUG] [ne.mi.re.GameData/REGISTRIES]: Applying holder lookups: minecraft:fluid [15:45:13] [Render thread/DEBUG] [ne.mi.re.GameData/REGISTRIES]: Holder lookups applied: minecraft:fluid [15:45:13] [Render thread/DEBUG] [ne.mi.re.GameData/REGISTRIES]: Applying holder lookups: minecraft:block [15:45:13] [Render thread/DEBUG] [ne.mi.re.GameData/REGISTRIES]: Holder lookups applied: minecraft:block [15:45:13] [Render thread/DEBUG] [ne.mi.re.GameData/REGISTRIES]: Applying holder lookups: minecraft:attribute [15:45:13] [Render thread/DEBUG] [ne.mi.re.GameData/REGISTRIES]: Holder lookups applied: minecraft:attribute [15:45:13] [Render thread/DEBUG] [ne.mi.re.GameData/REGISTRIES]: Applying holder lookups: minecraft:mob_effect [15:45:13] [Render thread/DEBUG] [ne.mi.re.GameData/REGISTRIES]: Holder lookups applied: minecraft:mob_effect [15:45:13] [Render thread/DEBUG] [ne.mi.re.GameData/REGISTRIES]: Applying holder lookups: minecraft:particle_type [15:45:13] [Render thread/DEBUG] [ne.mi.re.GameData/REGISTRIES]: Holder lookups applied: minecraft:particle_type [15:45:13] [Render thread/DEBUG] [ne.mi.re.GameData/REGISTRIES]: Applying holder lookups: minecraft:item [15:45:13] [Render thread/DEBUG] [ne.mi.re.GameData/REGISTRIES]: Holder lookups applied: minecraft:item [15:45:13] [Render thread/DEBUG] [ne.mi.re.GameData/REGISTRIES]: Applying holder lookups: minecraft:entity_type [15:45:13] [Render thread/DEBUG] [ne.mi.re.GameData/REGISTRIES]: Holder lookups applied: minecraft:entity_type [15:45:13] [Render thread/DEBUG] [ne.mi.re.GameData/REGISTRIES]: Applying holder lookups: minecraft:sensor_type [15:45:13] [Render thread/DEBUG] [ne.mi.re.GameData/REGISTRIES]: Holder lookups applied: minecraft:sensor_type [15:45:13] [Render thread/DEBUG] [ne.mi.re.GameData/REGISTRIES]: Applying holder lookups: minecraft:memory_module_type [15:45:13] [Render thread/DEBUG] [ne.mi.re.GameData/REGISTRIES]: Holder lookups applied: minecraft:memory_module_type [15:45:13] [Render thread/DEBUG] [ne.mi.re.GameData/REGISTRIES]: Applying holder lookups: minecraft:potion [15:45:13] [Render thread/DEBUG] [ne.mi.re.GameData/REGISTRIES]: Holder lookups applied: minecraft:potion [15:45:13] [Render thread/DEBUG] [ne.mi.re.GameData/REGISTRIES]: Applying holder lookups: minecraft:game_event [15:45:13] [Render thread/DEBUG] [ne.mi.re.GameData/REGISTRIES]: Holder lookups applied: minecraft:game_event [15:45:13] [Render thread/DEBUG] [ne.mi.re.GameData/REGISTRIES]: Applying holder lookups: minecraft:enchantment [15:45:13] [Render thread/DEBUG] [ne.mi.re.GameData/REGISTRIES]: Holder lookups applied: minecraft:enchantment [15:45:13] [Render thread/DEBUG] [ne.mi.re.GameData/REGISTRIES]: Applying holder lookups: minecraft:block_entity_type [15:45:13] [Render thread/DEBUG] [ne.mi.re.GameData/REGISTRIES]: Holder lookups applied: minecraft:block_entity_type [15:45:13] [Render thread/DEBUG] [ne.mi.re.GameData/REGISTRIES]: Applying holder lookups: minecraft:painting_variant [15:45:13] [Render thread/DEBUG] [ne.mi.re.GameData/REGISTRIES]: Holder lookups applied: minecraft:painting_variant [15:45:13] [Render thread/DEBUG] [ne.mi.re.GameData/REGISTRIES]: Applying holder lookups: minecraft:stat_type [15:45:13] [Render thread/DEBUG] [ne.mi.re.GameData/REGISTRIES]: Holder lookups applied: minecraft:stat_type [15:45:13] [Render thread/DEBUG] [ne.mi.re.GameData/REGISTRIES]: Applying holder lookups: minecraft:custom_stat [15:45:13] [Render thread/DEBUG] [ne.mi.re.GameData/REGISTRIES]: Holder lookups applied: minecraft:custom_stat [15:45:13] [Render thread/DEBUG] [ne.mi.re.GameData/REGISTRIES]: Applying holder lookups: minecraft:chunk_status [15:45:13] [Render thread/DEBUG] [ne.mi.re.GameData/REGISTRIES]: Holder lookups applied: minecraft:chunk_status [15:45:13] [Render thread/DEBUG] [ne.mi.re.GameData/REGISTRIES]: Applying holder lookups: minecraft:rule_test [15:45:13] [Render thread/DEBUG] [ne.mi.re.GameData/REGISTRIES]: Holder lookups applied: minecraft:rule_test [15:45:13] [Render thread/DEBUG] [ne.mi.re.GameData/REGISTRIES]: Applying holder lookups: minecraft:rule_block_entity_modifier [15:45:13] [Render thread/DEBUG] [ne.mi.re.GameData/REGISTRIES]: Holder lookups applied: minecraft:rule_block_entity_modifier [15:45:13] [Render thread/DEBUG] [ne.mi.re.GameData/REGISTRIES]: Applying holder lookups: minecraft:pos_rule_test [15:45:13] [Render thread/DEBUG] [ne.mi.re.GameData/REGISTRIES]: Holder lookups applied: minecraft:pos_rule_test [15:45:13] [Render thread/DEBUG] [ne.mi.re.GameData/REGISTRIES]: Applying holder lookups: minecraft:menu [15:45:13] [Render thread/DEBUG] [ne.mi.re.GameData/REGISTRIES]: Holder lookups applied: minecraft:menu [15:45:13] [Render thread/DEBUG] [ne.mi.re.GameData/REGISTRIES]: Applying holder lookups: minecraft:recipe_type [15:45:13] [Render thread/DEBUG] [ne.mi.re.GameData/REGISTRIES]: Holder lookups applied: minecraft:recipe_type [15:45:13] [Render thread/DEBUG] [ne.mi.re.GameData/REGISTRIES]: Applying holder lookups: minecraft:recipe_serializer [15:45:13] [Render thread/DEBUG] [ne.mi.re.GameData/REGISTRIES]: Holder lookups applied: minecraft:recipe_serializer [15:45:13] [Render thread/DEBUG] [ne.mi.re.GameData/REGISTRIES]: Applying holder lookups: minecraft:position_source_type [15:45:13] [Render thread/DEBUG] [ne.mi.re.GameData/REGISTRIES]: Holder lookups applied: minecraft:position_source_type [15:45:13] [Render thread/DEBUG] [ne.mi.re.GameData/REGISTRIES]: Applying holder lookups: minecraft:command_argument_type [15:45:13] [Render thread/DEBUG] [ne.mi.re.GameData/REGISTRIES]: Holder lookups applied: minecraft:command_argument_type [15:45:13] [Render thread/DEBUG] [ne.mi.re.GameData/REGISTRIES]: Applying holder lookups: minecraft:villager_type [15:45:13] [Render thread/DEBUG] [ne.mi.re.GameData/REGISTRIES]: Holder lookups applied: minecraft:villager_type [15:45:13] [Render thread/DEBUG] [ne.mi.re.GameData/REGISTRIES]: Applying holder lookups: minecraft:villager_profession [15:45:13] [Render thread/DEBUG] [ne.mi.re.GameData/REGISTRIES]: Holder lookups applied: minecraft:villager_profession [15:45:13] [Render thread/DEBUG] [ne.mi.re.GameData/REGISTRIES]: Applying holder lookups: minecraft:point_of_interest_type [15:45:13] [Render thread/DEBUG] [ne.mi.re.GameData/REGISTRIES]: Holder lookups applied: minecraft:point_of_interest_type [15:45:13] [Render thread/DEBUG] [ne.mi.re.GameData/REGISTRIES]: Applying holder lookups: minecraft:schedule [15:45:13] [Render thread/DEBUG] [ne.mi.re.GameData/REGISTRIES]: Holder lookups applied: minecraft:schedule [15:45:13] [Render thread/DEBUG] [ne.mi.re.GameData/REGISTRIES]: Applying holder lookups: minecraft:activity [15:45:13] [Render thread/DEBUG] [ne.mi.re.GameData/REGISTRIES]: Holder lookups applied: minecraft:activity [15:45:13] [Render thread/DEBUG] [ne.mi.re.GameData/REGISTRIES]: Applying holder lookups: minecraft:loot_pool_entry_type [15:45:13] [Render thread/DEBUG] [ne.mi.re.GameData/REGISTRIES]: Holder lookups applied: minecraft:loot_pool_entry_type [15:45:13] [Render thread/DEBUG] [ne.mi.re.GameData/REGISTRIES]: Applying holder lookups: minecraft:loot_function_type [15:45:13] [Render thread/DEBUG] [ne.mi.re.GameData/REGISTRIES]: Holder lookups applied: minecraft:loot_function_type [15:45:13] [Render thread/DEBUG] [ne.mi.re.GameData/REGISTRIES]: Applying holder lookups: minecraft:loot_condition_type [15:45:13] [Render thread/DEBUG] [ne.mi.re.GameData/REGISTRIES]: Holder lookups applied: minecraft:loot_condition_type [15:45:13] [Render thread/DEBUG] [ne.mi.re.GameData/REGISTRIES]: Applying holder lookups: minecraft:loot_number_provider_type [15:45:13] [Render thread/DEBUG] [ne.mi.re.GameData/REGISTRIES]: Holder lookups applied: minecraft:loot_number_provider_type [15:45:13] [Render thread/DEBUG] [ne.mi.re.GameData/REGISTRIES]: Applying holder lookups: minecraft:loot_nbt_provider_type [15:45:13] [Render thread/DEBUG] [ne.mi.re.GameData/REGISTRIES]: Holder lookups applied: minecraft:loot_nbt_provider_type [15:45:13] [Render thread/DEBUG] [ne.mi.re.GameData/REGISTRIES]: Applying holder lookups: minecraft:loot_score_provider_type [15:45:13] [Render thread/DEBUG] [ne.mi.re.GameData/REGISTRIES]: Holder lookups applied: minecraft:loot_score_provider_type [15:45:13] [Render thread/DEBUG] [ne.mi.re.GameData/REGISTRIES]: Applying holder lookups: minecraft:float_provider_type [15:45:13] [Render thread/DEBUG] [ne.mi.re.GameData/REGISTRIES]: Holder lookups applied: minecraft:float_provider_type [15:45:13] [Render thread/DEBUG] [ne.mi.re.GameData/REGISTRIES]: Applying holder lookups: minecraft:int_provider_type [15:45:13] [Render thread/DEBUG] [ne.mi.re.GameData/REGISTRIES]: Holder lookups applied: minecraft:int_provider_type [15:45:13] [Render thread/DEBUG] [ne.mi.re.GameData/REGISTRIES]: Applying holder lookups: minecraft:height_provider_type [15:45:13] [Render thread/DEBUG] [ne.mi.re.GameData/REGISTRIES]: Holder lookups applied: minecraft:height_provider_type [15:45:13] [Render thread/DEBUG] [ne.mi.re.GameData/REGISTRIES]: Applying holder lookups: minecraft:block_predicate_type [15:45:13] [Render thread/DEBUG] [ne.mi.re.GameData/REGISTRIES]: Holder lookups applied: minecraft:block_predicate_type [15:45:13] [Render thread/DEBUG] [ne.mi.re.GameData/REGISTRIES]: Applying holder lookups: minecraft:worldgen/carver [15:45:13] [Render thread/DEBUG] [ne.mi.re.GameData/REGISTRIES]: Holder lookups applied: minecraft:worldgen/carver [15:45:13] [Render thread/DEBUG] [ne.mi.re.GameData/REGISTRIES]: Applying holder lookups: minecraft:worldgen/feature [15:45:13] [Render thread/DEBUG] [ne.mi.re.GameData/REGISTRIES]: Holder lookups applied: minecraft:worldgen/feature [15:45:13] [Render thread/DEBUG] [ne.mi.re.GameData/REGISTRIES]: Applying holder lookups: minecraft:worldgen/structure_processor [15:45:13] [Render thread/DEBUG] [ne.mi.re.GameData/REGISTRIES]: Holder lookups applied: minecraft:worldgen/structure_processor [15:45:13] [Render thread/DEBUG] [ne.mi.re.GameData/REGISTRIES]: Applying holder lookups: minecraft:worldgen/structure_placement [15:45:13] [Render thread/DEBUG] [ne.mi.re.GameData/REGISTRIES]: Holder lookups applied: minecraft:worldgen/structure_placement [15:45:13] [Render thread/DEBUG] [ne.mi.re.GameData/REGISTRIES]: Applying holder lookups: minecraft:worldgen/structure_piece [15:45:13] [Render thread/DEBUG] [ne.mi.re.GameData/REGISTRIES]: Holder lookups applied: minecraft:worldgen/structure_piece [15:45:13] [Render thread/DEBUG] [ne.mi.re.GameData/REGISTRIES]: Applying holder lookups: minecraft:worldgen/structure_type [15:45:13] [Render thread/DEBUG] [ne.mi.re.GameData/REGISTRIES]: Holder lookups applied: minecraft:worldgen/structure_type [15:45:13] [Render thread/DEBUG] [ne.mi.re.GameData/REGISTRIES]: Applying holder lookups: minecraft:worldgen/placement_modifier_type [15:45:13] [Render thread/DEBUG] [ne.mi.re.GameData/REGISTRIES]: Holder lookups applied: minecraft:worldgen/placement_modifier_type [15:45:13] [Render thread/DEBUG] [ne.mi.re.GameData/REGISTRIES]: Applying holder lookups: minecraft:worldgen/block_state_provider_type [15:45:13] [Render thread/DEBUG] [ne.mi.re.GameData/REGISTRIES]: Holder lookups applied: minecraft:worldgen/block_state_provider_type [15:45:13] [Render thread/DEBUG] [ne.mi.re.GameData/REGISTRIES]: Applying holder lookups: minecraft:worldgen/foliage_placer_type [15:45:13] [Render thread/DEBUG] [ne.mi.re.GameData/REGISTRIES]: Holder lookups applied: minecraft:worldgen/foliage_placer_type [15:45:13] [Render thread/DEBUG] [ne.mi.re.GameData/REGISTRIES]: Applying holder lookups: minecraft:worldgen/trunk_placer_type [15:45:13] [Render thread/DEBUG] [ne.mi.re.GameData/REGISTRIES]: Holder lookups applied: minecraft:worldgen/trunk_placer_type [15:45:13] [Render thread/DEBUG] [ne.mi.re.GameData/REGISTRIES]: Applying holder lookups: minecraft:worldgen/root_placer_type [15:45:13] [Render thread/DEBUG] [ne.mi.re.GameData/REGISTRIES]: Holder lookups applied: minecraft:worldgen/root_placer_type [15:45:13] [Render thread/DEBUG] [ne.mi.re.GameData/REGISTRIES]: Applying holder lookups: minecraft:worldgen/tree_decorator_type [15:45:13] [Render thread/DEBUG] [ne.mi.re.GameData/REGISTRIES]: Holder lookups applied: minecraft:worldgen/tree_decorator_type [15:45:13] [Render thread/DEBUG] [ne.mi.re.GameData/REGISTRIES]: Applying holder lookups: minecraft:worldgen/feature_size_type [15:45:13] [Render thread/DEBUG] [ne.mi.re.GameData/REGISTRIES]: Holder lookups applied: minecraft:worldgen/feature_size_type [15:45:13] [Render thread/DEBUG] [ne.mi.re.GameData/REGISTRIES]: Applying holder lookups: minecraft:worldgen/biome_source [15:45:13] [Render thread/DEBUG] [ne.mi.re.GameData/REGISTRIES]: Holder lookups applied: minecraft:worldgen/biome_source [15:45:13] [Render thread/DEBUG] [ne.mi.re.GameData/REGISTRIES]: Applying holder lookups: minecraft:worldgen/chunk_generator [15:45:13] [Render thread/DEBUG] [ne.mi.re.GameData/REGISTRIES]: Holder lookups applied: minecraft:worldgen/chunk_generator [15:45:13] [Render thread/DEBUG] [ne.mi.re.GameData/REGISTRIES]: Applying holder lookups: minecraft:worldgen/material_condition [15:45:13] [Render thread/DEBUG] [ne.mi.re.GameData/REGISTRIES]: Holder lookups applied: minecraft:worldgen/material_condition [15:45:13] [Render thread/DEBUG] [ne.mi.re.GameData/REGISTRIES]: Applying holder lookups: minecraft:worldgen/material_rule [15:45:13] [Render thread/DEBUG] [ne.mi.re.GameData/REGISTRIES]: Holder lookups applied: minecraft:worldgen/material_rule [15:45:13] [Render thread/DEBUG] [ne.mi.re.GameData/REGISTRIES]: Applying holder lookups: minecraft:worldgen/density_function_type [15:45:13] [Render thread/DEBUG] [ne.mi.re.GameData/REGISTRIES]: Holder lookups applied: minecraft:worldgen/density_function_type [15:45:13] [Render thread/DEBUG] [ne.mi.re.GameData/REGISTRIES]: Applying holder lookups: minecraft:worldgen/structure_pool_element [15:45:13] [Render thread/DEBUG] [ne.mi.re.GameData/REGISTRIES]: Holder lookups applied: minecraft:worldgen/structure_pool_element [15:45:13] [Render thread/DEBUG] [ne.mi.re.GameData/REGISTRIES]: Applying holder lookups: minecraft:cat_variant [15:45:13] [Render thread/DEBUG] [ne.mi.re.GameData/REGISTRIES]: Holder lookups applied: minecraft:cat_variant [15:45:13] [Render thread/DEBUG] [ne.mi.re.GameData/REGISTRIES]: Applying holder lookups: minecraft:frog_variant [15:45:13] [Render thread/DEBUG] [ne.mi.re.GameData/REGISTRIES]: Holder lookups applied: minecraft:frog_variant [15:45:13] [Render thread/DEBUG] [ne.mi.re.GameData/REGISTRIES]: Applying holder lookups: minecraft:banner_pattern [15:45:13] [Render thread/DEBUG] [ne.mi.re.GameData/REGISTRIES]: Holder lookups applied: minecraft:banner_pattern [15:45:13] [Render thread/DEBUG] [ne.mi.re.GameData/REGISTRIES]: Applying holder lookups: minecraft:instrument [15:45:13] [Render thread/DEBUG] [ne.mi.re.GameData/REGISTRIES]: Holder lookups applied: minecraft:instrument [15:45:13] [Render thread/DEBUG] [ne.mi.re.GameData/REGISTRIES]: Applying holder lookups: minecraft:decorated_pot_patterns [15:45:13] [Render thread/DEBUG] [ne.mi.re.GameData/REGISTRIES]: Holder lookups applied: minecraft:decorated_pot_patterns [15:45:13] [Render thread/DEBUG] [ne.mi.re.GameData/REGISTRIES]: Applying holder lookups: minecraft:creative_mode_tab [15:45:13] [Render thread/DEBUG] [ne.mi.re.GameData/REGISTRIES]: Holder lookups applied: minecraft:creative_mode_tab [15:45:13] [Render thread/DEBUG] [ne.mi.re.GameData/REGISTRIES]: Applying holder lookups: epicfight:conditions [15:45:13] [Render thread/DEBUG] [ne.mi.re.GameData/REGISTRIES]: Holder lookups applied: epicfight:conditions [15:45:13] [Render thread/DEBUG] [ne.mi.re.GameData/REGISTRIES]: Applying holder lookups: epicfight:skill [15:45:13] [Render thread/DEBUG] [ne.mi.re.GameData/REGISTRIES]: Holder lookups applied: epicfight:skill [15:45:13] [Render thread/DEBUG] [ne.mi.re.GameData/REGISTRIES]: Applying holder lookups: epicfight:skill_data_keys [15:45:13] [Render thread/DEBUG] [ne.mi.re.GameData/REGISTRIES]: Holder lookups applied: epicfight:skill_data_keys [15:45:13] [Render thread/DEBUG] [ne.mi.re.GameData/REGISTRIES]: Applying holder lookups: forge:biome_modifier_serializers [15:45:13] [Render thread/DEBUG] [ne.mi.re.GameData/REGISTRIES]: Holder lookups applied: forge:biome_modifier_serializers [15:45:13] [Render thread/DEBUG] [ne.mi.re.GameData/REGISTRIES]: Applying holder lookups: forge:display_contexts [15:45:13] [Render thread/DEBUG] [ne.mi.re.GameData/REGISTRIES]: Holder lookups applied: forge:display_contexts [15:45:13] [Render thread/DEBUG] [ne.mi.re.GameData/REGISTRIES]: Applying holder lookups: forge:entity_data_serializers [15:45:13] [Render thread/DEBUG] [ne.mi.re.GameData/REGISTRIES]: Holder lookups applied: forge:entity_data_serializers [15:45:13] [Render thread/DEBUG] [ne.mi.re.GameData/REGISTRIES]: Applying holder lookups: forge:fluid_type [15:45:13] [Render thread/DEBUG] [ne.mi.re.GameData/REGISTRIES]: Holder lookups applied: forge:fluid_type [15:45:13] [Render thread/DEBUG] [ne.mi.re.GameData/REGISTRIES]: Applying holder lookups: forge:global_loot_modifier_serializers [15:45:13] [Render thread/DEBUG] [ne.mi.re.GameData/REGISTRIES]: Holder lookups applied: forge:global_loot_modifier_serializers [15:45:13] [Render thread/DEBUG] [ne.mi.re.GameData/REGISTRIES]: Applying holder lookups: forge:holder_set_type [15:45:13] [Render thread/DEBUG] [ne.mi.re.GameData/REGISTRIES]: Holder lookups applied: forge:holder_set_type [15:45:13] [Render thread/DEBUG] [ne.mi.re.GameData/REGISTRIES]: Applying holder lookups: forge:structure_modifier_serializers [15:45:13] [Render thread/DEBUG] [ne.mi.re.GameData/REGISTRIES]: Holder lookups applied: forge:structure_modifier_serializers [15:45:13] [Render thread/DEBUG] [ne.mi.re.GameData/REGISTRIES]: Applying holder lookups: minecraft:worldgen/biome [15:45:13] [Render thread/DEBUG] [ne.mi.re.GameData/REGISTRIES]: Holder lookups applied: minecraft:worldgen/biome [15:45:13] [Render thread/WARN] [minecraft/SynchedEntityData]: defineId called for: class net.minecraft.world.entity.player.Player from class yesman.epicfight.world.capabilities.entitypatch.player.PlayerPatch [15:45:13] [Render thread/WARN] [minecraft/SynchedEntityData]: defineId called for: class net.minecraft.world.entity.boss.wither.WitherBoss from class yesman.epicfight.world.capabilities.entitypatch.boss.WitherPatch [15:45:13] [Render thread/WARN] [minecraft/SynchedEntityData]: defineId called for: class net.minecraft.world.entity.boss.wither.WitherBoss from class yesman.epicfight.world.capabilities.entitypatch.boss.WitherPatch [15:45:13] [Render thread/WARN] [minecraft/SynchedEntityData]: defineId called for: class net.minecraft.world.entity.boss.wither.WitherBoss from class yesman.epicfight.world.capabilities.entitypatch.boss.WitherPatch [15:45:13] [Render thread/WARN] [minecraft/SynchedEntityData]: defineId called for: class net.minecraft.world.entity.boss.wither.WitherBoss from class yesman.epicfight.world.capabilities.entitypatch.boss.WitherPatch [15:45:13] [Render thread/WARN] [minecraft/SynchedEntityData]: defineId called for: class net.minecraft.world.entity.boss.wither.WitherBoss from class yesman.epicfight.world.capabilities.entitypatch.boss.WitherPatch [15:45:13] [Render thread/WARN] [minecraft/SynchedEntityData]: defineId called for: class net.minecraft.world.entity.boss.wither.WitherBoss from class yesman.epicfight.world.capabilities.entitypatch.boss.WitherPatch [15:45:13] [Render thread/WARN] [minecraft/SynchedEntityData]: defineId called for: class net.minecraft.world.entity.boss.wither.WitherBoss from class yesman.epicfight.world.capabilities.entitypatch.boss.WitherPatch [15:45:13] [Render thread/WARN] [minecraft/SynchedEntityData]: defineId called for: class net.minecraft.world.entity.boss.wither.WitherBoss from class yesman.epicfight.world.capabilities.entitypatch.boss.WitherPatch [15:45:13] [Render thread/WARN] [minecraft/SynchedEntityData]: defineId called for: class net.minecraft.world.entity.boss.wither.WitherBoss from class yesman.epicfight.world.capabilities.entitypatch.boss.WitherPatch [15:45:13] [Render thread/DEBUG] [ne.mi.cl.lo.ClientModLoader/CORE]: Generating PackInfo named mod:forge for mod file / [15:45:13] [Render thread/DEBUG] [ne.mi.cl.lo.ClientModLoader/CORE]: Generating PackInfo named mod:epicfight for mod file C:\Users\funny\.gradle\caches\forge_gradle\deobf_dependencies\curse\maven\epic-fight-mod-405076\5604255_mapped_parchment_2023.09.03-1.20.1\epic-fight-mod-405076-5604255_mapped_parchment_2023.09.03-1.20.1.jar [15:45:13] [Render thread/DEBUG] [ne.mi.cl.lo.ClientModLoader/CORE]: Generating PackInfo named mod:lobotomy_combat for mod file D:\Datas\Lobotomy Combat\build\resources\main [15:45:14] [Render thread/DEBUG] [mixin/]: Mixing MixinLightTexture from mixins.epicfight.json into net.minecraft.client.renderer.LightTexture [15:45:14] [Render thread/INFO] [ne.mi.ga.ForgeGameTestHooks/]: Enabled Gametest Namespaces: [lobotomy_combat] [15:45:14] [Render thread/DEBUG] [mixin/]: Mixing MixinThrownTridentRenderer from mixins.epicfight.json into net.minecraft.client.renderer.entity.ThrownTridentRenderer [15:45:14] [Render thread/INFO] [minecraft/ReloadableResourceManager]: Reloading ResourceManager: vanilla, mod_resources [15:45:14] [modloading-worker-0/DEBUG] [ne.mi.fm.co.ConfigTracker/CONFIG]: Loading configs type CLIENT [15:45:14] [modloading-worker-0/DEBUG] [ne.mi.fm.co.ConfigFileTypeHandler/CONFIG]: Built TOML config for D:\Datas\Lobotomy Combat\run\config\epicfight-client.toml [15:45:14] [modloading-worker-0/DEBUG] [ne.mi.fm.co.ConfigFileTypeHandler/CONFIG]: Loaded TOML config file D:\Datas\Lobotomy Combat\run\config\epicfight-client.toml [15:45:14] [modloading-worker-0/DEBUG] [ne.mi.fm.co.ConfigFileTypeHandler/CONFIG]: Watching TOML config file D:\Datas\Lobotomy Combat\run\config\epicfight-client.toml for changes [15:45:14] [modloading-worker-0/DEBUG] [ne.mi.fm.co.ConfigFileTypeHandler/CONFIG]: Built TOML config for D:\Datas\Lobotomy Combat\run\config\forge-client.toml [15:45:14] [modloading-worker-0/DEBUG] [ne.mi.fm.co.ConfigFileTypeHandler/CONFIG]: Loaded TOML config file D:\Datas\Lobotomy Combat\run\config\forge-client.toml [15:45:14] [modloading-worker-0/DEBUG] [ne.mi.fm.co.ConfigFileTypeHandler/CONFIG]: Watching TOML config file D:\Datas\Lobotomy Combat\run\config\forge-client.toml for changes [15:45:14] [modloading-worker-0/DEBUG] [ne.mi.co.ForgeConfig/FORGEMOD]: Loaded forge config file forge-client.toml [15:45:14] [modloading-worker-0/DEBUG] [ne.mi.fm.co.ConfigTracker/CONFIG]: Loading configs type COMMON [15:45:14] [modloading-worker-0/DEBUG] [ne.mi.fm.co.ConfigFileTypeHandler/CONFIG]: Built TOML config for D:\Datas\Lobotomy Combat\run\config\lobotomy_combat-common.toml [15:45:14] [modloading-worker-0/DEBUG] [ne.mi.fm.co.ConfigFileTypeHandler/CONFIG]: Loaded TOML config file D:\Datas\Lobotomy Combat\run\config\lobotomy_combat-common.toml [15:45:14] [modloading-worker-0/DEBUG] [ne.mi.fm.co.ConfigFileTypeHandler/CONFIG]: Watching TOML config file D:\Datas\Lobotomy Combat\run\config\lobotomy_combat-common.toml for changes [15:45:14] [Worker-Main-6/INFO] [minecraft/UnihexProvider]: Found unifont_all_no_pua-15.0.06.hex, loading [15:45:14] [Forge Version Check/INFO] [ne.mi.fm.VersionChecker/]: [forge] Starting version check at https://files.minecraftforge.net/net/minecraftforge/forge/promotions_slim.json [15:45:15] [Render thread/DEBUG] [epicfight/]: Cannot find the mesh part named jacket in yesman.epicfight.client.mesh.HumanoidMesh [15:45:15] [Render thread/DEBUG] [epicfight/]: Cannot find the mesh part named leftSleeve in yesman.epicfight.client.mesh.HumanoidMesh [15:45:15] [Render thread/DEBUG] [epicfight/]: Cannot find the mesh part named rightSleeve in yesman.epicfight.client.mesh.HumanoidMesh [15:45:15] [Render thread/DEBUG] [epicfight/]: Cannot find the mesh part named leftPants in yesman.epicfight.client.mesh.HumanoidMesh [15:45:15] [Render thread/DEBUG] [epicfight/]: Cannot find the mesh part named rightPants in yesman.epicfight.client.mesh.HumanoidMesh [15:45:15] [Render thread/DEBUG] [epicfight/]: Cannot find the mesh part named head in yesman.epicfight.client.mesh.HumanoidMesh [15:45:15] [Render thread/DEBUG] [epicfight/]: Cannot find the mesh part named torso in yesman.epicfight.client.mesh.HumanoidMesh [15:45:15] [Render thread/DEBUG] [epicfight/]: Cannot find the mesh part named leftArm in yesman.epicfight.client.mesh.HumanoidMesh [15:45:15] [Render thread/DEBUG] [epicfight/]: Cannot find the mesh part named rightArm in yesman.epicfight.client.mesh.HumanoidMesh [15:45:15] [Render thread/DEBUG] [epicfight/]: Cannot find the mesh part named leftLeg in yesman.epicfight.client.mesh.HumanoidMesh [15:45:15] [Render thread/DEBUG] [epicfight/]: Cannot find the mesh part named rightLeg in yesman.epicfight.client.mesh.HumanoidMesh [15:45:15] [Render thread/DEBUG] [epicfight/]: Cannot find the mesh part named leftSleeve in yesman.epicfight.client.mesh.VillagerMesh [15:45:15] [Render thread/DEBUG] [epicfight/]: Cannot find the mesh part named rightSleeve in yesman.epicfight.client.mesh.VillagerMesh [15:45:15] [Render thread/DEBUG] [epicfight/]: Cannot find the mesh part named leftPants in yesman.epicfight.client.mesh.VillagerMesh [15:45:15] [Render thread/DEBUG] [epicfight/]: Cannot find the mesh part named rightPants in yesman.epicfight.client.mesh.VillagerMesh [15:45:15] [Render thread/DEBUG] [epicfight/]: Cannot find the mesh part named jacket in yesman.epicfight.client.mesh.HumanoidMesh [15:45:15] [Render thread/DEBUG] [epicfight/]: Cannot find the mesh part named leftSleeve in yesman.epicfight.client.mesh.HumanoidMesh [15:45:15] [Render thread/DEBUG] [epicfight/]: Cannot find the mesh part named rightSleeve in yesman.epicfight.client.mesh.HumanoidMesh [15:45:15] [Render thread/DEBUG] [epicfight/]: Cannot find the mesh part named leftPants in yesman.epicfight.client.mesh.HumanoidMesh [15:45:15] [Render thread/DEBUG] [epicfight/]: Cannot find the mesh part named rightPants in yesman.epicfight.client.mesh.HumanoidMesh [15:45:15] [Render thread/DEBUG] [epicfight/]: Cannot find the mesh part named hat in yesman.epicfight.client.mesh.VillagerMesh [15:45:15] [Render thread/DEBUG] [epicfight/]: Cannot find the mesh part named leftSleeve in yesman.epicfight.client.mesh.VillagerMesh [15:45:15] [Render thread/DEBUG] [epicfight/]: Cannot find the mesh part named rightSleeve in yesman.epicfight.client.mesh.VillagerMesh [15:45:15] [Render thread/DEBUG] [epicfight/]: Cannot find the mesh part named leftPants in yesman.epicfight.client.mesh.VillagerMesh [15:45:15] [Render thread/DEBUG] [epicfight/]: Cannot find the mesh part named rightPants in yesman.epicfight.client.mesh.VillagerMesh [15:45:15] [Render thread/DEBUG] [epicfight/]: Cannot find the mesh part named leftSleeve in yesman.epicfight.client.mesh.VillagerMesh [15:45:15] [Render thread/DEBUG] [epicfight/]: Cannot find the mesh part named rightSleeve in yesman.epicfight.client.mesh.VillagerMesh [15:45:15] [Render thread/DEBUG] [epicfight/]: Cannot find the mesh part named leftPants in yesman.epicfight.client.mesh.VillagerMesh [15:45:15] [Render thread/DEBUG] [epicfight/]: Cannot find the mesh part named rightPants in yesman.epicfight.client.mesh.VillagerMesh [15:45:15] [Render thread/DEBUG] [epicfight/]: Cannot find the mesh part named hat in yesman.epicfight.client.mesh.VexMesh [15:45:15] [Render thread/DEBUG] [epicfight/]: Cannot find the mesh part named jacket in yesman.epicfight.client.mesh.VexMesh [15:45:15] [Render thread/DEBUG] [epicfight/]: Cannot find the mesh part named leftSleeve in yesman.epicfight.client.mesh.VexMesh [15:45:15] [Render thread/DEBUG] [epicfight/]: Cannot find the mesh part named rightSleeve in yesman.epicfight.client.mesh.VexMesh [15:45:15] [Render thread/DEBUG] [epicfight/]: Cannot find the mesh part named leftPants in yesman.epicfight.client.mesh.VexMesh [15:45:15] [Render thread/DEBUG] [epicfight/]: Cannot find the mesh part named rightPants in yesman.epicfight.client.mesh.VexMesh [15:45:15] [Render thread/DEBUG] [epicfight/]: Cannot find the mesh part named hat in yesman.epicfight.client.mesh.PiglinMesh [15:45:15] [Render thread/DEBUG] [epicfight/]: Cannot find the mesh part named rightSleeve in yesman.epicfight.client.mesh.PiglinMesh [15:45:15] [Render thread/DEBUG] [epicfight/]: Cannot find the mesh part named leftPants in yesman.epicfight.client.mesh.PiglinMesh [15:45:15] [Render thread/DEBUG] [epicfight/]: Cannot find the mesh part named rightPants in yesman.epicfight.client.mesh.PiglinMesh [15:45:15] [Worker-Main-15/DEBUG] [epicfight/]: Cannot find the joint named Knee_R in yesman.epicfight.model.armature.VexArmature [15:45:15] [Worker-Main-15/DEBUG] [epicfight/]: Cannot find the joint named Knee_L in yesman.epicfight.model.armature.VexArmature [15:45:15] [Worker-Main-15/DEBUG] [epicfight/]: Cannot find the joint named Elbow_R in yesman.epicfight.model.armature.VexArmature [15:45:15] [Worker-Main-15/DEBUG] [epicfight/]: Cannot find the joint named Elbow_L in yesman.epicfight.model.armature.VexArmature [15:45:15] [Worker-Main-15/INFO] [epicfight/]: Register animations from epicfight [15:45:15] [Render thread/DEBUG] [ne.mi.fm.DeferredWorkQueue/LOADING]: Dispatching synchronous work for work queue COMMON_SETUP: 9 jobs [15:45:15] [Render thread/DEBUG] [ne.mi.fm.DeferredWorkQueue/LOADING]: Synchronous work queue completed in 246.0 ms [15:45:16] [Forge Version Check/DEBUG] [ne.mi.fm.VersionChecker/]: [forge] Received version check data: { "homepage": "https://files.minecraftforge.net/net/minecraftforge/forge/", "promos": { "1.1-latest": "1.3.4.29", "1.2.3-latest": "1.4.1.64", "1.2.4-latest": "2.0.0.68", "1.2.5-latest": "3.4.9.171", "1.3.2-latest": "4.3.5.318", "1.4.0-latest": "5.0.0.326", "1.4.1-latest": "6.0.0.329", "1.4.2-latest": "6.0.1.355", "1.4.3-latest": "6.2.1.358", "1.4.4-latest": "6.3.0.378", "1.4.5-latest": "6.4.2.448", "1.4.6-latest": "6.5.0.489", "1.4.7-latest": "6.6.2.534", "1.5-latest": "7.7.0.598", "1.5.1-latest": "7.7.2.682", "1.5.2-latest": "7.8.1.738", "1.5.2-recommended": "7.8.1.738", "1.6.1-latest": "8.9.0.775", "1.6.2-latest": "9.10.1.871", "1.6.2-recommended": "9.10.1.871", "1.6.3-latest": "9.11.0.878", "1.6.4-latest": "9.11.1.1345", "1.6.4-recommended": "9.11.1.1345", "1.7.2-latest": "10.12.2.1161", "1.7.2-recommended": "10.12.2.1161", "1.7.10_pre4-latest": "10.12.2.1149", "1.7.10-latest": "10.13.4.1614", "1.7.10-recommended": "10.13.4.1614", "1.8-latest": "11.14.4.1577", "1.8-recommended": "11.14.4.1563", "1.8.8-latest": "11.15.0.1655", "1.8.9-latest": "11.15.1.2318", "1.8.9-recommended": "11.15.1.2318", "1.9-latest": "12.16.1.1938", "1.9-recommended": "12.16.1.1887", "1.9.4-latest": "12.17.0.2317", "1.9.4-recommended": "12.17.0.2317", "1.10-latest": "12.18.0.2000", "1.10.2-latest": "12.18.3.2511", "1.10.2-recommended": "12.18.3.2511", "1.11-latest": "13.19.1.2199", "1.11-recommended": "13.19.1.2189", "1.11.2-latest": "13.20.1.2588", "1.11.2-recommended": "13.20.1.2588", "1.12-latest": "14.21.1.2443", "1.12-recommended": "14.21.1.2387", "1.12.1-latest": "14.22.1.2485", "1.12.1-recommended": "14.22.1.2478", "1.12.2-latest": "14.23.5.2860", "1.12.2-recommended": "14.23.5.2859", "1.13.2-latest": "25.0.223", "1.14.2-latest": "26.0.63", "1.14.3-latest": "27.0.60", "1.14.4-latest": "28.2.26", "1.14.4-recommended": "28.2.26", "1.15-latest": "29.0.4", "1.15.1-latest": "30.0.51", "1.15.2-latest": "31.2.57", "1.15.2-recommended": "31.2.57", "1.16.1-latest": "32.0.108", "1.16.2-latest": "33.0.61", "1.16.3-latest": "34.1.42", "1.16.3-recommended": "34.1.0", "1.16.4-latest": "35.1.37", "1.16.4-recommended": "35.1.4", "1.16.5-latest": "36.2.42", "1.16.5-recommended": "36.2.34", "1.17.1-latest": "37.1.1", "1.17.1-recommended": "37.1.1", "1.18-latest": "38.0.17", "1.18.1-latest": "39.1.2", "1.18.1-recommended": "39.1.0", "1.18.2-recommended": "40.2.0", "1.18.2-latest": "40.2.21", "1.19-latest": "41.1.0", "1.19-recommended": "41.1.0", "1.19.1-latest": "42.0.9", "1.19.2-recommended": "43.4.0", "1.19.2-latest": "43.4.2", "1.19.3-latest": "44.1.23", "1.19.3-recommended": "44.1.0", "1.19.4-recommended": "45.3.0", "1.19.4-latest": "45.3.3", "1.20-latest": "46.0.14", "1.20.1-recommended": "47.3.0", "1.20.1-latest": "47.3.5", "1.20.2-latest": "48.1.0", "1.20.2-recommended": "48.1.0", "1.20.3-latest": "49.0.2", "1.20.4-latest": "49.1.4", "1.20.4-recommended": "49.1.0", "1.20.6-latest": "50.1.12", "1.20.6-recommended": "50.1.0", "1.21-latest": "51.0.33", "1.21.1-latest": "52.0.1" } } [15:45:16] [Forge Version Check/INFO] [ne.mi.fm.VersionChecker/]: [forge] Found status: AHEAD Current: 47.3.5 Target: null [15:45:17] [modloading-worker-0/DEBUG] [ne.mi.re.GameData/REGISTRIES]: Freezing registries [15:45:17] [modloading-worker-0/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry minecraft:block Sync: FROZEN -> ACTIVE [15:45:17] [modloading-worker-0/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry minecraft:fluid Sync: FROZEN -> ACTIVE [15:45:17] [modloading-worker-0/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry minecraft:item Sync: FROZEN -> ACTIVE [15:45:17] [modloading-worker-0/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry minecraft:mob_effect Sync: FROZEN -> ACTIVE [15:45:17] [modloading-worker-0/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry minecraft:sound_event Sync: FROZEN -> ACTIVE [15:45:17] [modloading-worker-0/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry minecraft:potion Sync: FROZEN -> ACTIVE [15:45:17] [modloading-worker-0/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry minecraft:enchantment Sync: FROZEN -> ACTIVE [15:45:17] [modloading-worker-0/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry minecraft:entity_type Sync: FROZEN -> ACTIVE [15:45:17] [modloading-worker-0/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry minecraft:block_entity_type Sync: FROZEN -> ACTIVE [15:45:17] [modloading-worker-0/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry minecraft:particle_type Sync: FROZEN -> ACTIVE [15:45:17] [modloading-worker-0/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry minecraft:menu Sync: FROZEN -> ACTIVE [15:45:17] [modloading-worker-0/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry minecraft:painting_variant Sync: FROZEN -> ACTIVE [15:45:17] [modloading-worker-0/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry minecraft:recipe_type Sync: FROZEN -> ACTIVE [15:45:17] [modloading-worker-0/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry minecraft:recipe_serializer Sync: FROZEN -> ACTIVE [15:45:17] [modloading-worker-0/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry minecraft:attribute Sync: FROZEN -> ACTIVE [15:45:17] [modloading-worker-0/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry minecraft:stat_type Sync: FROZEN -> ACTIVE [15:45:17] [modloading-worker-0/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry minecraft:command_argument_type Sync: FROZEN -> ACTIVE [15:45:17] [modloading-worker-0/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry minecraft:villager_profession Sync: FROZEN -> ACTIVE [15:45:17] [modloading-worker-0/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry minecraft:point_of_interest_type Sync: FROZEN -> ACTIVE [15:45:17] [modloading-worker-0/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry minecraft:memory_module_type Sync: FROZEN -> ACTIVE [15:45:17] [modloading-worker-0/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry minecraft:sensor_type Sync: FROZEN -> ACTIVE [15:45:17] [modloading-worker-0/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry minecraft:schedule Sync: FROZEN -> ACTIVE [15:45:17] [modloading-worker-0/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry minecraft:activity Sync: FROZEN -> ACTIVE [15:45:17] [modloading-worker-0/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry minecraft:worldgen/carver Sync: FROZEN -> ACTIVE [15:45:17] [modloading-worker-0/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry minecraft:worldgen/feature Sync: FROZEN -> ACTIVE [15:45:17] [modloading-worker-0/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry minecraft:chunk_status Sync: FROZEN -> ACTIVE [15:45:17] [modloading-worker-0/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry minecraft:worldgen/block_state_provider_type Sync: FROZEN -> ACTIVE [15:45:17] [modloading-worker-0/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry minecraft:worldgen/foliage_placer_type Sync: FROZEN -> ACTIVE [15:45:17] [modloading-worker-0/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry minecraft:worldgen/tree_decorator_type Sync: FROZEN -> ACTIVE [15:45:17] [modloading-worker-0/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry minecraft:worldgen/biome Sync: FROZEN -> ACTIVE [15:45:17] [modloading-worker-0/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry forge:entity_data_serializers Sync: FROZEN -> ACTIVE [15:45:17] [modloading-worker-0/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry forge:global_loot_modifier_serializers Sync: FROZEN -> ACTIVE [15:45:17] [modloading-worker-0/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry forge:biome_modifier_serializers Sync: FROZEN -> ACTIVE [15:45:17] [modloading-worker-0/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry forge:fluid_type Sync: FROZEN -> ACTIVE [15:45:17] [modloading-worker-0/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry forge:structure_modifier_serializers Sync: FROZEN -> ACTIVE [15:45:17] [modloading-worker-0/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry forge:holder_set_type Sync: FROZEN -> ACTIVE [15:45:17] [modloading-worker-0/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry forge:display_contexts Sync: FROZEN -> ACTIVE [15:45:17] [modloading-worker-0/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry epicfight:skill Sync: FROZEN -> ACTIVE [15:45:17] [modloading-worker-0/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry epicfight:conditions Sync: FROZEN -> ACTIVE [15:45:17] [modloading-worker-0/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry epicfight:skill_data_keys Sync: FROZEN -> ACTIVE [15:45:18] [modloading-worker-0/DEBUG] [ne.mi.re.GameData/REGISTRIES]: All registries frozen [15:45:18] [Render thread/DEBUG] [ne.mi.co.ForgeI18n/CORE]: Loading I18N data entries: 7620 [15:45:18] [Render thread/WARN] [minecraft/SoundEngine]: Missing sound for event: minecraft:item.goat_horn.play [15:45:18] [Render thread/WARN] [minecraft/SoundEngine]: Missing sound for event: minecraft:entity.goat.screaming.horn_break [15:45:18] [Render thread/INFO] [mojang/Library]: OpenAL initialized on device OpenAL Soft on ������ (C-Media(R) Audio) [15:45:18] [Render thread/INFO] [minecraft/SoundEngine]: Sound engine started [15:45:18] [Render thread/INFO] [minecraft/TextureAtlas]: Created: 1024x512x4 minecraft:textures/atlas/blocks.png-atlas [15:45:18] [Render thread/INFO] [minecraft/TextureAtlas]: Created: 256x256x4 minecraft:textures/atlas/signs.png-atlas [15:45:18] [Render thread/INFO] [minecraft/TextureAtlas]: Created: 512x512x4 minecraft:textures/atlas/shield_patterns.png-atlas [15:45:18] [Render thread/INFO] [minecraft/TextureAtlas]: Created: 512x512x4 minecraft:textures/atlas/banner_patterns.png-atlas [15:45:18] [Render thread/INFO] [minecraft/TextureAtlas]: Created: 1024x1024x4 minecraft:textures/atlas/armor_trims.png-atlas [15:45:18] [Render thread/INFO] [minecraft/TextureAtlas]: Created: 128x64x4 minecraft:textures/atlas/decorated_pot.png-atlas [15:45:18] [Render thread/INFO] [minecraft/TextureAtlas]: Created: 256x256x4 minecraft:textures/atlas/chest.png-atlas [15:45:18] [Render thread/INFO] [minecraft/TextureAtlas]: Created: 512x256x4 minecraft:textures/atlas/beds.png-atlas [15:45:18] [Render thread/INFO] [minecraft/TextureAtlas]: Created: 512x256x4 minecraft:textures/atlas/shulker_boxes.png-atlas [15:45:18] [Render thread/ERROR] [epicfight/]: Couldn't read layer file minecraft:animated_layers/player/travelersbackpack.json for entity.minecraft.player: com.tiviacz.travelersbackpack.client.renderer.TravelersBackpackLayer [15:45:18] [Render thread/ERROR] [epicfight/]: Couldn't read layer file minecraft:animated_layers/player/waveycapes.json for entity.minecraft.player: dev.tr7zw.waveycapes.renderlayers.CustomCapeRenderLayer [15:45:18] [Render thread/ERROR] [epicfight/]: Couldn't read layer file minecraft:animated_layers/player/travelersbackpack.json for entity.minecraft.player: com.tiviacz.travelersbackpack.client.renderer.TravelersBackpackLayer [15:45:18] [Render thread/ERROR] [epicfight/]: Couldn't read layer file minecraft:animated_layers/player/waveycapes.json for entity.minecraft.player: dev.tr7zw.waveycapes.renderlayers.CustomCapeRenderLayer [15:45:18] [Render thread/ERROR] [epicfight/]: Couldn't read layer file minecraft:animated_layers/player/travelersbackpack.json for entity.minecraft.player: com.tiviacz.travelersbackpack.client.renderer.TravelersBackpackLayer [15:45:18] [Render thread/ERROR] [epicfight/]: Couldn't read layer file minecraft:animated_layers/player/waveycapes.json for entity.minecraft.player: dev.tr7zw.waveycapes.renderlayers.CustomCapeRenderLayer [15:45:18] [Render thread/WARN] [minecraft/ShaderInstance]: Shader rendertype_entity_translucent_emissive could not find sampler named Sampler2 in the specified shader program. [15:45:18] [Render thread/INFO] [minecraft/TextureAtlas]: Created: 2048x1024x0 minecraft:textures/atlas/particles.png-atlas [15:45:18] [Render thread/INFO] [minecraft/TextureAtlas]: Created: 256x256x0 minecraft:textures/atlas/paintings.png-atlas [15:45:18] [Render thread/INFO] [minecraft/TextureAtlas]: Created: 256x128x0 minecraft:textures/atlas/mob_effects.png-atlas [15:45:19] [Realms Notification Availability checker #1/INFO] [mojang/RealmsClient]: Could not authorize you against Realms server: Invalid session id [15:45:27] [Render thread/INFO] [minecraft/LevelStorageSource]: Deleting level �µ����� (1) [15:45:27] [Render thread/INFO] [minecraft/LevelStorageSource]: Attempt 1... [15:45:28] [Render thread/INFO] [minecraft/LevelStorageSource]: Deleting level �µ����� [15:45:28] [Render thread/INFO] [minecraft/LevelStorageSource]: Attempt 1... [15:45:28] [Render thread/DEBUG] [ne.mi.se.ServerLifecycleHooks/CORE]: Generating PackInfo named mod:forge for mod file / [15:45:28] [Render thread/DEBUG] [ne.mi.se.ServerLifecycleHooks/CORE]: Generating PackInfo named mod:epicfight for mod file C:\Users\funny\.gradle\caches\forge_gradle\deobf_dependencies\curse\maven\epic-fight-mod-405076\5604255_mapped_parchment_2023.09.03-1.20.1\epic-fight-mod-405076-5604255_mapped_parchment_2023.09.03-1.20.1.jar [15:45:28] [Render thread/DEBUG] [ne.mi.se.ServerLifecycleHooks/CORE]: Generating PackInfo named mod:lobotomy_combat for mod file D:\Datas\Lobotomy Combat\build\resources\main [15:45:29] [Render thread/DEBUG] [ne.mi.co.tr.CoreModBaseTransformer/COREMOD]: Transforming net/minecraft/server/commands/SummonCommand [15:45:29] [Worker-Main-4/DEBUG] [ne.mi.co.tr.CoreModBaseTransformer/COREMOD]: Transforming net/minecraft/world/entity/raid/Raid [15:45:30] [Render thread/INFO] [minecraft/RecipeManager]: Loaded 7 recipes [15:45:30] [Render thread/INFO] [minecraft/AdvancementList]: Loaded 1271 advancements [15:45:31] [Render thread/DEBUG] [ne.mi.se.ServerLifecycleHooks/CORE]: Generating PackInfo named mod:forge for mod file / [15:45:31] [Render thread/DEBUG] [ne.mi.se.ServerLifecycleHooks/CORE]: Generating PackInfo named mod:epicfight for mod file C:\Users\funny\.gradle\caches\forge_gradle\deobf_dependencies\curse\maven\epic-fight-mod-405076\5604255_mapped_parchment_2023.09.03-1.20.1\epic-fight-mod-405076-5604255_mapped_parchment_2023.09.03-1.20.1.jar [15:45:31] [Render thread/DEBUG] [ne.mi.se.ServerLifecycleHooks/CORE]: Generating PackInfo named mod:lobotomy_combat for mod file D:\Datas\Lobotomy Combat\build\resources\main [15:45:31] [Render thread/INFO] [minecraft/RecipeManager]: Loaded 7 recipes [15:45:31] [Render thread/INFO] [minecraft/AdvancementList]: Loaded 1271 advancements [15:45:35] [Render thread/DEBUG] [ne.mi.se.ServerLifecycleHooks/CORE]: Generating PackInfo named mod:forge for mod file / [15:45:35] [Render thread/DEBUG] [ne.mi.se.ServerLifecycleHooks/CORE]: Generating PackInfo named mod:epicfight for mod file C:\Users\funny\.gradle\caches\forge_gradle\deobf_dependencies\curse\maven\epic-fight-mod-405076\5604255_mapped_parchment_2023.09.03-1.20.1\epic-fight-mod-405076-5604255_mapped_parchment_2023.09.03-1.20.1.jar [15:45:35] [Render thread/DEBUG] [ne.mi.se.ServerLifecycleHooks/CORE]: Generating PackInfo named mod:lobotomy_combat for mod file D:\Datas\Lobotomy Combat\build\resources\main [15:45:35] [Render thread/DEBUG] [ne.mi.co.ForgeHooks/WP]: Gathering id map for writing to world save �µ����� [15:45:35] [Render thread/DEBUG] [ne.mi.co.ForgeHooks/WP]: ID Map collection complete �µ����� [15:45:35] [Server thread/INFO] [minecraft/IntegratedServer]: Starting integrated minecraft server version 1.20.1 [15:45:35] [Server thread/INFO] [minecraft/MinecraftServer]: Generating keypair [15:45:35] [Server thread/DEBUG] [ne.mi.fm.co.ConfigTracker/CONFIG]: Loading configs type SERVER [15:45:35] [Server thread/DEBUG] [ne.mi.fm.co.ConfigFileTypeHandler/CONFIG]: Built TOML config for .\saves\�µ�����\serverconfig\forge-server.toml [15:45:35] [Server thread/DEBUG] [ne.mi.fm.co.ConfigFileTypeHandler/CONFIG]: Loaded TOML config file .\saves\�µ�����\serverconfig\forge-server.toml [15:45:35] [Server thread/DEBUG] [ne.mi.fm.co.ConfigFileTypeHandler/CONFIG]: Watching TOML config file .\saves\�µ�����\serverconfig\forge-server.toml for changes [15:45:35] [Server thread/WARN] [ne.mi.co.ForgeConfigSpec/CORE]: Configuration file .\saves\�µ�����\serverconfig\forge-server.toml is not correct. Correcting [15:45:35] [Server thread/WARN] [ne.mi.co.ForgeConfigSpec/CORE]: Incorrect key server was corrected from null to its default, SimpleCommentedConfig:{}. [15:45:35] [Server thread/WARN] [ne.mi.co.ForgeConfigSpec/CORE]: Incorrect key server.removeErroringBlockEntities was corrected from null to its default, false. [15:45:35] [Server thread/DEBUG] [ne.mi.co.ForgeConfigSpec/CORE]: The comment on key server.removeErroringBlockEntities does not match the spec. This may create a backup. [15:45:35] [Server thread/WARN] [ne.mi.co.ForgeConfigSpec/CORE]: Incorrect key server.removeErroringEntities was corrected from null to its default, false. [15:45:35] [Server thread/DEBUG] [ne.mi.co.ForgeConfigSpec/CORE]: The comment on key server.removeErroringEntities does not match the spec. This may create a backup. [15:45:35] [Server thread/WARN] [ne.mi.co.ForgeConfigSpec/CORE]: Incorrect key server.fullBoundingBoxLadders was corrected from null to its default, false. [15:45:35] [Server thread/DEBUG] [ne.mi.co.ForgeConfigSpec/CORE]: The comment on key server.fullBoundingBoxLadders does not match the spec. This may create a backup. [15:45:35] [Server thread/WARN] [ne.mi.co.ForgeConfigSpec/CORE]: Incorrect key server.zombieBaseSummonChance was corrected from null to its default, 0.1. [15:45:35] [Server thread/DEBUG] [ne.mi.co.ForgeConfigSpec/CORE]: The comment on key server.zombieBaseSummonChance does not match the spec. This may create a backup. [15:45:35] [Server thread/WARN] [ne.mi.co.ForgeConfigSpec/CORE]: Incorrect key server.zombieBabyChance was corrected from null to its default, 0.05. [15:45:35] [Server thread/DEBUG] [ne.mi.co.ForgeConfigSpec/CORE]: The comment on key server.zombieBabyChance does not match the spec. This may create a backup. [15:45:35] [Server thread/WARN] [ne.mi.co.ForgeConfigSpec/CORE]: Incorrect key server.permissionHandler was corrected from null to its default, forge:default_handler. [15:45:35] [Server thread/DEBUG] [ne.mi.co.ForgeConfigSpec/CORE]: The comment on key server.permissionHandler does not match the spec. This may create a backup. [15:45:35] [Server thread/WARN] [ne.mi.co.ForgeConfigSpec/CORE]: Incorrect key server.advertiseDedicatedServerToLan was corrected from null to its default, true. [15:45:35] [Server thread/DEBUG] [ne.mi.co.ForgeConfigSpec/CORE]: The comment on key server.advertiseDedicatedServerToLan does not match the spec. This may create a backup. [15:45:35] [Server thread/DEBUG] [ne.mi.co.ForgeConfigSpec/CORE]: The comment on key server does not match the spec. This may create a backup. [15:45:35] [Server thread/DEBUG] [ne.mi.co.ForgeConfig/FORGEMOD]: Loaded forge config file forge-server.toml [15:45:35] [Thread-3/DEBUG] [ne.mi.fm.co.ConfigFileTypeHandler/CONFIG]: Config file forge-server.toml changed, sending notifies [15:45:35] [Thread-3/DEBUG] [ne.mi.co.ForgeConfig/FORGEMOD]: Forge config just got changed on the file system! [15:45:35] [Server thread/DEBUG] [ne.mi.co.tr.CoreModBaseTransformer/COREMOD]: Transforming net/minecraft/world/level/levelgen/PhantomSpawner [15:45:35] [Server thread/DEBUG] [ne.mi.co.tr.CoreModBaseTransformer/COREMOD]: Transforming net/minecraft/world/level/levelgen/PatrolSpawner [15:45:35] [Server thread/DEBUG] [ne.mi.co.tr.CoreModBaseTransformer/COREMOD]: Transforming net/minecraft/world/entity/npc/CatSpawner [15:45:35] [Server thread/DEBUG] [ne.mi.co.tr.CoreModBaseTransformer/COREMOD]: Transforming net/minecraft/world/entity/ai/village/VillageSiege [15:45:37] [Worker-Main-1/DEBUG] [ne.mi.co.tr.CoreModBaseTransformer/COREMOD]: Transforming net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate [15:45:38] [Worker-Main-9/DEBUG] [ne.mi.co.tr.CoreModBaseTransformer/COREMOD]: Transforming net/minecraft/world/level/NaturalSpawner [15:45:38] [Server thread/INFO] [minecraft/MinecraftServer]: Preparing start region for dimension minecraft:overworld [15:45:39] [Render thread/INFO] [minecraft/LoggerChunkProgressListener]: ׼�����������У�0% [15:45:39] [Render thread/INFO] [minecraft/LoggerChunkProgressListener]: ׼�����������У�0% [15:45:39] [Render thread/INFO] [minecraft/LoggerChunkProgressListener]: ׼�����������У�0% [15:45:39] [Worker-Main-9/DEBUG] [io.ne.ut.in.InternalThreadLocalMap/]: -Dio.netty.threadLocalMap.stringBuilder.initialSize: 1024 [15:45:39] [Worker-Main-9/DEBUG] [io.ne.ut.in.InternalThreadLocalMap/]: -Dio.netty.threadLocalMap.stringBuilder.maxSize: 4096 [15:45:39] [Worker-Main-9/DEBUG] [io.ne.ut.in.ThreadLocalRandom/]: -Dio.netty.initialSeedUniquifier: 0xd873f21f54885aed [15:45:40] [Render thread/INFO] [minecraft/LoggerChunkProgressListener]: ׼�����������У�0% [15:45:40] [Render thread/INFO] [minecraft/LoggerChunkProgressListener]: ׼�����������У�2% [15:45:41] [Render thread/INFO] [minecraft/LoggerChunkProgressListener]: ׼�����������У�4% [15:45:41] [Render thread/INFO] [minecraft/LoggerChunkProgressListener]: ׼�����������У�6% [15:45:42] [Render thread/INFO] [minecraft/LoggerChunkProgressListener]: ׼�����������У�10% [15:45:42] [Render thread/INFO] [minecraft/LoggerChunkProgressListener]: ׼�����������У�13% [15:45:43] [Render thread/INFO] [minecraft/LoggerChunkProgressListener]: ׼�����������У�17% [15:45:43] [Render thread/INFO] [minecraft/LoggerChunkProgressListener]: ׼�����������У�21% [15:45:44] [Render thread/INFO] [minecraft/LoggerChunkProgressListener]: ׼�����������У�26% [15:45:44] [Render thread/INFO] [minecraft/LoggerChunkProgressListener]: ׼�����������У�31% [15:45:45] [Render thread/INFO] [minecraft/LoggerChunkProgressListener]: ׼�����������У�36% [15:45:45] [Render thread/INFO] [minecraft/LoggerChunkProgressListener]: ׼�����������У�43% [15:45:46] [Render thread/INFO] [minecraft/LoggerChunkProgressListener]: ׼�����������У�46% [15:45:46] [Render thread/INFO] [minecraft/LoggerChunkProgressListener]: ׼�����������У�52% [15:45:47] [Render thread/INFO] [minecraft/LoggerChunkProgressListener]: ׼�����������У�56% [15:45:47] [Render thread/INFO] [minecraft/LoggerChunkProgressListener]: ׼�����������У�62% [15:45:48] [Render thread/INFO] [minecraft/LoggerChunkProgressListener]: ׼�����������У�68% [15:45:48] [Render thread/INFO] [minecraft/LoggerChunkProgressListener]: ׼�����������У�74% [15:45:49] [Render thread/INFO] [minecraft/LoggerChunkProgressListener]: ׼�����������У�80% [15:45:49] [Render thread/INFO] [minecraft/LoggerChunkProgressListener]: ׼�����������У�86% [15:45:50] [Render thread/INFO] [minecraft/LoggerChunkProgressListener]: ׼�����������У�90% [15:45:50] [Render thread/INFO] [minecraft/LoggerChunkProgressListener]: ׼�����������У�97% [15:45:50] [Server thread/INFO] [ne.mi.se.pe.PermissionAPI/]: Successfully initialized permission handler forge:default_handler [15:45:50] [Render thread/INFO] [minecraft/LoggerChunkProgressListener]: Time elapsed: 12091 ms [15:45:50] [Server thread/DEBUG] [io.ne.bu.AbstractByteBuf/]: -Dio.netty.buffer.checkAccessible: true [15:45:50] [Server thread/DEBUG] [io.ne.bu.AbstractByteBuf/]: -Dio.netty.buffer.checkBounds: true [15:45:50] [Server thread/DEBUG] [io.ne.ut.ResourceLeakDetectorFactory/]: Loaded default ResourceLeakDetector: io.netty.util.ResourceLeakDetector@52029220 [15:45:50] [Server thread/INFO] [minecraft/IntegratedServer]: Changing view distance to 12, from 10 [15:45:50] [Server thread/INFO] [minecraft/IntegratedServer]: Changing simulation distance to 12, from 0 [15:45:50] [Render thread/DEBUG] [io.ne.ch.MultithreadEventLoopGroup/]: -Dio.netty.eventLoopThreads: 32 [15:45:50] [Render thread/DEBUG] [io.ne.ch.ni.NioEventLoop/]: -Dio.netty.noKeySetOptimization: false [15:45:50] [Render thread/DEBUG] [io.ne.ch.ni.NioEventLoop/]: -Dio.netty.selectorAutoRebuildThreshold: 512 [15:45:50] [Render thread/DEBUG] [io.ne.ut.in.PlatformDependent/]: org.jctools-core.MpscChunkedArrayQueue: available [15:45:50] [Render thread/DEBUG] [io.ne.ch.DefaultChannelId/]: -Dio.netty.processId: 34156 (auto-detected) [15:45:50] [Render thread/WARN] [io.ne.ut.in.SystemPropertyUtil/]: Unable to parse the boolean system property 'java.net.preferIPv6Addresses':system - using the default value: false [15:45:50] [Render thread/DEBUG] [io.ne.ut.NetUtil/]: -Djava.net.preferIPv4Stack: false [15:45:50] [Render thread/DEBUG] [io.ne.ut.NetUtil/]: -Djava.net.preferIPv6Addresses: false [15:45:50] [Render thread/DEBUG] [io.ne.ut.NetUtilInitializations/]: Loopback interface: lo (Software Loopback Interface 1, 127.0.0.1) [15:45:50] [Render thread/DEBUG] [io.ne.ut.NetUtil/]: Failed to get SOMAXCONN from sysctl and file \proc\sys\net\core\somaxconn. Default: 200 [15:45:51] [Render thread/DEBUG] [io.ne.ch.DefaultChannelId/]: -Dio.netty.machineId: 50:5a:65:ff:fe:06:42:d3 (auto-detected) [15:45:51] [Render thread/DEBUG] [io.ne.bu.PooledByteBufAllocator/]: -Dio.netty.allocator.numHeapArenas: 32 [15:45:51] [Render thread/DEBUG] [io.ne.bu.PooledByteBufAllocator/]: -Dio.netty.allocator.numDirectArenas: 32 [15:45:51] [Render thread/DEBUG] [io.ne.bu.PooledByteBufAllocator/]: -Dio.netty.allocator.pageSize: 8192 [15:45:51] [Render thread/DEBUG] [io.ne.bu.PooledByteBufAllocator/]: -Dio.netty.allocator.maxOrder: 9 [15:45:51] [Render thread/DEBUG] [io.ne.bu.PooledByteBufAllocator/]: -Dio.netty.allocator.chunkSize: 4194304 [15:45:51] [Render thread/DEBUG] [io.ne.bu.PooledByteBufAllocator/]: -Dio.netty.allocator.smallCacheSize: 256 [15:45:51] [Render thread/DEBUG] [io.ne.bu.PooledByteBufAllocator/]: -Dio.netty.allocator.normalCacheSize: 64 [15:45:51] [Render thread/DEBUG] [io.ne.bu.PooledByteBufAllocator/]: -Dio.netty.allocator.maxCachedBufferCapacity: 32768 [15:45:51] [Render thread/DEBUG] [io.ne.bu.PooledByteBufAllocator/]: -Dio.netty.allocator.cacheTrimInterval: 8192 [15:45:51] [Render thread/DEBUG] [io.ne.bu.PooledByteBufAllocator/]: -Dio.netty.allocator.cacheTrimIntervalMillis: 0 [15:45:51] [Render thread/DEBUG] [io.ne.bu.PooledByteBufAllocator/]: -Dio.netty.allocator.useCacheForAllThreads: false [15:45:51] [Render thread/DEBUG] [io.ne.bu.PooledByteBufAllocator/]: -Dio.netty.allocator.maxCachedByteBuffersPerChunk: 1023 [15:45:51] [Render thread/DEBUG] [io.ne.bu.ByteBufUtil/]: -Dio.netty.allocator.type: pooled [15:45:51] [Render thread/DEBUG] [io.ne.bu.ByteBufUtil/]: -Dio.netty.threadLocalDirectBufferSize: 0 [15:45:51] [Render thread/DEBUG] [io.ne.bu.ByteBufUtil/]: -Dio.netty.maxThreadLocalCharBufferSize: 16384 [15:45:51] [Netty Local Client IO #0/DEBUG] [ne.mi.ne.HandshakeHandler/FMLHANDSHAKE]: Starting local connection. [15:45:51] [Netty Local Client IO #0/DEBUG] [io.ne.ut.Recycler/]: -Dio.netty.recycler.maxCapacityPerThread: 4096 [15:45:51] [Netty Local Client IO #0/DEBUG] [io.ne.ut.Recycler/]: -Dio.netty.recycler.ratio: 8 [15:45:51] [Netty Local Client IO #0/DEBUG] [io.ne.ut.Recycler/]: -Dio.netty.recycler.chunkSize: 32 [15:45:51] [Netty Local Client IO #0/DEBUG] [io.ne.ut.Recycler/]: -Dio.netty.recycler.blocking: false [15:45:51] [Netty Server IO #1/DEBUG] [ne.mi.ne.HandshakeHandler/FMLHANDSHAKE]: Starting local connection. [15:45:51] [Server thread/DEBUG] [ne.mi.ne.HandshakeHandler/FMLHANDSHAKE]: Sending ticking packet info 'net.minecraftforge.network.HandshakeMessages$S2CModData' to 'fml:handshake' sequence 0 [15:45:51] [Netty Local Client IO #0/DEBUG] [ne.mi.ne.LoginWrapper/FMLHANDSHAKE]: Recieved login wrapper packet event for channel fml:handshake with index 0 [15:45:51] [Server thread/DEBUG] [ne.mi.ne.HandshakeHandler/FMLHANDSHAKE]: Sending ticking packet info 'net.minecraftforge.network.HandshakeMessages$S2CModList' to 'fml:handshake' sequence 1 [15:45:51] [Netty Local Client IO #0/DEBUG] [ne.mi.ne.LoginWrapper/FMLHANDSHAKE]: Recieved login wrapper packet event for channel fml:handshake with index 1 [15:45:51] [Netty Local Client IO #0/DEBUG] [ne.mi.ne.HandshakeHandler/FMLHANDSHAKE]: Logging into server with mod list [minecraft, forge, epicfight, lobotomy_combat] [15:45:51] [Netty Local Client IO #0/DEBUG] [ne.mi.ne.NetworkRegistry/NETREGISTRY]: Channel 'fml:loginwrapper' : Version test of 'FML3' from server : ACCEPTED [15:45:51] [Netty Local Client IO #0/DEBUG] [ne.mi.ne.NetworkRegistry/NETREGISTRY]: Channel 'epicfight:network_manager' : Version test of '1' from server : ACCEPTED [15:45:51] [Netty Local Client IO #0/DEBUG] [ne.mi.ne.NetworkRegistry/NETREGISTRY]: Channel 'forge:tier_sorting' : Version test of '1.0' from server : ACCEPTED [15:45:51] [Netty Local Client IO #0/DEBUG] [ne.mi.ne.NetworkRegistry/NETREGISTRY]: Channel 'fml:handshake' : Version test of 'FML3' from server : ACCEPTED [15:45:51] [Netty Local Client IO #0/DEBUG] [ne.mi.ne.NetworkRegistry/NETREGISTRY]: Channel 'minecraft:unregister' : Version test of 'FML3' from server : ACCEPTED [15:45:51] [Netty Local Client IO #0/DEBUG] [ne.mi.ne.NetworkRegistry/NETREGISTRY]: Channel 'fml:play' : Version test of 'FML3' from server : ACCEPTED [15:45:51] [Netty Local Client IO #0/DEBUG] [ne.mi.ne.NetworkRegistry/NETREGISTRY]: Channel 'minecraft:register' : Version test of 'FML3' from server : ACCEPTED [15:45:51] [Netty Local Client IO #0/DEBUG] [ne.mi.ne.NetworkRegistry/NETREGISTRY]: Channel 'forge:split' : Version test of '1.1' from server : ACCEPTED [15:45:51] [Netty Local Client IO #0/DEBUG] [ne.mi.ne.NetworkRegistry/NETREGISTRY]: Accepting channel list from server [15:45:51] [Netty Local Client IO #0/DEBUG] [ne.mi.ne.LoginWrapper/FMLHANDSHAKE]: Dispatching wrapped packet reply for channel fml:handshake with index 1 [15:45:51] [Netty Local Client IO #0/DEBUG] [ne.mi.ne.HandshakeHandler/FMLHANDSHAKE]: Accepted server connection [15:45:51] [Netty Server IO #1/DEBUG] [ne.mi.ne.LoginWrapper/FMLHANDSHAKE]: Recieved login wrapper packet event for channel fml:handshake with index 1 [15:45:51] [Netty Server IO #1/DEBUG] [ne.mi.ne.HandshakeHandler/FMLHANDSHAKE]: Received client indexed reply 1 of type net.minecraftforge.network.HandshakeMessages$C2SModListReply [15:45:51] [Netty Local Client IO #0/DEBUG] [ne.mi.ne.HandshakeHandler/REGISTRIES]: Expecting 22 registries: [minecraft:command_argument_type, minecraft:recipe_serializer, minecraft:sound_event, minecraft:particle_type, minecraft:villager_profession, minecraft:item, minecraft:potion, minecraft:painting_variant, forge:fluid_type, epicfight:skill_data_keys, minecraft:block_entity_type, forge:display_contexts, minecraft:block, forge:entity_data_serializers, minecraft:mob_effect, minecraft:stat_type, epicfight:conditions, minecraft:menu, minecraft:enchantment, minecraft:fluid, epicfight:skill, minecraft:entity_type] [15:45:51] [Netty Server IO #1/DEBUG] [ne.mi.ne.HandshakeHandler/FMLHANDSHAKE]: Received client connection with modlist [minecraft, forge, epicfight, lobotomy_combat] [15:45:51] [Netty Server IO #1/DEBUG] [ne.mi.ne.NetworkRegistry/NETREGISTRY]: Channel 'fml:loginwrapper' : Version test of 'FML3' from client : ACCEPTED [15:45:51] [Netty Server IO #1/DEBUG] [ne.mi.ne.NetworkRegistry/NETREGISTRY]: Channel 'epicfight:network_manager' : Version test of '1' from client : ACCEPTED [15:45:51] [Netty Server IO #1/DEBUG] [ne.mi.ne.NetworkRegistry/NETREGISTRY]: Channel 'forge:tier_sorting' : Version test of '1.0' from client : ACCEPTED [15:45:51] [Netty Server IO #1/DEBUG] [ne.mi.ne.NetworkRegistry/NETREGISTRY]: Channel 'fml:handshake' : Version test of 'FML3' from client : ACCEPTED [15:45:51] [Netty Server IO #1/DEBUG] [ne.mi.ne.NetworkRegistry/NETREGISTRY]: Channel 'minecraft:unregister' : Version test of 'FML3' from client : ACCEPTED [15:45:51] [Netty Server IO #1/DEBUG] [ne.mi.ne.NetworkRegistry/NETREGISTRY]: Channel 'fml:play' : Version test of 'FML3' from client : ACCEPTED [15:45:51] [Netty Server IO #1/DEBUG] [ne.mi.ne.NetworkRegistry/NETREGISTRY]: Channel 'minecraft:register' : Version test of 'FML3' from client : ACCEPTED [15:45:51] [Netty Server IO #1/DEBUG] [ne.mi.ne.NetworkRegistry/NETREGISTRY]: Channel 'forge:split' : Version test of '1.1' from client : ACCEPTED [15:45:51] [Netty Server IO #1/DEBUG] [ne.mi.ne.NetworkRegistry/NETREGISTRY]: Accepting channel list from client [15:45:51] [Netty Server IO #1/DEBUG] [ne.mi.ne.HandshakeHandler/FMLHANDSHAKE]: Accepted client connection mod list [15:45:51] [Server thread/DEBUG] [ne.mi.ne.HandshakeHandler/FMLHANDSHAKE]: Sending ticking packet info 'Config forge-server.toml' to 'fml:handshake' sequence 2 [15:45:51] [Netty Local Client IO #0/DEBUG] [ne.mi.ne.LoginWrapper/FMLHANDSHAKE]: Recieved login wrapper packet event for channel fml:handshake with index 2 [15:45:51] [Netty Local Client IO #0/DEBUG] [ne.mi.ne.HandshakeHandler/FMLHANDSHAKE]: Received config sync from server [15:45:51] [Netty Local Client IO #0/DEBUG] [ne.mi.ne.LoginWrapper/FMLHANDSHAKE]: Dispatching wrapped packet reply for channel fml:handshake with index 2 [15:45:51] [Netty Server IO #1/DEBUG] [ne.mi.ne.LoginWrapper/FMLHANDSHAKE]: Recieved login wrapper packet event for channel fml:handshake with index 2 [15:45:51] [Netty Server IO #1/DEBUG] [ne.mi.ne.HandshakeHandler/FMLHANDSHAKE]: Received client indexed reply 2 of type net.minecraftforge.network.HandshakeMessages$C2SAcknowledge [15:45:51] [Netty Server IO #1/DEBUG] [ne.mi.ne.HandshakeHandler/FMLHANDSHAKE]: Received acknowledgement from client [15:45:51] [Server thread/DEBUG] [ne.mi.ne.HandshakeHandler/FMLHANDSHAKE]: Handshake complete! [15:45:51] [Netty Local Client IO #0/INFO] [ne.mi.ne.NetworkHooks/]: Connected to a modded server. [15:45:51] [Netty Local Client IO #0/DEBUG] [mixin/]: Mixing MixinClientPacketListener from mixins.epicfight.json into net.minecraft.client.multiplayer.ClientPacketListener [15:45:51] [Server thread/INFO] [minecraft/PlayerList]: Dev[local:E:4c9052de] logged in with entity id 160 at (4.5, 71.0, 115.5) [15:45:51] [Server thread/INFO] [minecraft/MinecraftServer]: Dev��������Ϸ [15:45:52] [Server thread/ERROR] [ne.mi.ev.EventBus/EVENTBUS]: Exception caught during firing event: Cannot invoke "net.minecraft.network.syncher.SynchedEntityData$DataItem.getValue()" because the return value of "net.minecraft.network.syncher.SynchedEntityData.getItem(net.minecraft.network.syncher.EntityDataAccessor)" is null Index: 1 Listeners: 0: NORMAL 1: ASM: class yesman.epicfight.events.EntityEvents updateEvent(Lnet/minecraftforge/event/entity/living/LivingEvent$LivingTickEvent;)V java.lang.NullPointerException: Cannot invoke "net.minecraft.network.syncher.SynchedEntityData$DataItem.getValue()" because the return value of "net.minecraft.network.syncher.SynchedEntityData.getItem(net.minecraft.network.syncher.EntityDataAccessor)" is null at TRANSFORMER/[email protected]/net.minecraft.network.syncher.SynchedEntityData.get(SynchedEntityData.java:139) at TRANSFORMER/[email protected]/yesman.epicfight.world.capabilities.entitypatch.LivingEntityPatch.isAirborneState(LivingEntityPatch.java:643) at TRANSFORMER/[email protected]/yesman.epicfight.world.capabilities.entitypatch.LivingEntityPatch.tick(LivingEntityPatch.java:156) at TRANSFORMER/[email protected]/yesman.epicfight.world.capabilities.entitypatch.player.PlayerPatch.tick(PlayerPatch.java:222) at TRANSFORMER/[email protected]/yesman.epicfight.world.capabilities.entitypatch.player.ServerPlayerPatch.tick(ServerPlayerPatch.java:113) at TRANSFORMER/[email protected]/yesman.epicfight.events.EntityEvents.updateEvent(EntityEvents.java:103) at TRANSFORMER/[email protected]/yesman.epicfight.events.__EntityEvents_updateEvent_LivingTickEvent.invoke(.dynamic) at MC-BOOTSTRAP/net.minecraftforge.eventbus/net.minecraftforge.eventbus.ASMEventHandler.invoke(ASMEventHandler.java:73) at MC-BOOTSTRAP/net.minecraftforge.eventbus/net.minecraftforge.eventbus.EventBus.post(EventBus.java:315) at MC-BOOTSTRAP/net.minecraftforge.eventbus/net.minecraftforge.eventbus.EventBus.post(EventBus.java:296) at TRANSFORMER/[email protected]/net.minecraftforge.common.ForgeHooks.onLivingTick(ForgeHooks.java:266) at TRANSFORMER/[email protected]/net.minecraft.world.entity.LivingEntity.tick(LivingEntity.java:2400) at TRANSFORMER/[email protected]/net.minecraft.world.entity.player.Player.tick(Player.java:245) at TRANSFORMER/[email protected]/net.minecraft.server.level.ServerPlayer.doTick(ServerPlayer.java:489) at TRANSFORMER/[email protected]/net.minecraft.server.network.ServerGamePacketListenerImpl.tick(ServerGamePacketListenerImpl.java:267) at TRANSFORMER/[email protected]/net.minecraft.network.Connection.tick(Connection.java:289) at TRANSFORMER/[email protected]/net.minecraft.server.network.ServerConnectionListener.tick(ServerConnectionListener.java:159) at TRANSFORMER/[email protected]/net.minecraft.server.MinecraftServer.tickChildren(MinecraftServer.java:950) at TRANSFORMER/[email protected]/net.minecraft.server.MinecraftServer.tickServer(MinecraftServer.java:857) at TRANSFORMER/[email protected]/net.minecraft.client.server.IntegratedServer.tickServer(IntegratedServer.java:95) at TRANSFORMER/[email protected]/net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:679) at TRANSFORMER/[email protected]/net.minecraft.server.MinecraftServer.lambda$spin$2(MinecraftServer.java:251) at java.base/java.lang.Thread.run(Thread.java:833) [15:45:52] [Server thread/DEBUG] [os.ut.FileUtil/]: No oshi.architecture.properties file found from ClassLoader cpw.mods.modlauncher.TransformingClassLoader@2489e84a [15:45:52] [Server thread/ERROR] [minecraft/MinecraftServer]: Encountered an unexpected exception net.minecraft.ReportedException: Ticking player at net.minecraft.server.network.ServerConnectionListener.tick(ServerConnectionListener.java:162) ~[forge-1.20.1-47.3.5_mapped_parchment_2023.09.03-1.20.1-recomp.jar%23191!/:?] {re:classloading} at net.minecraft.server.MinecraftServer.tickChildren(MinecraftServer.java:950) ~[forge-1.20.1-47.3.5_mapped_parchment_2023.09.03-1.20.1-recomp.jar%23191!/:?] {re:classloading,pl:accesstransformer:B} at net.minecraft.server.MinecraftServer.tickServer(MinecraftServer.java:857) ~[forge-1.20.1-47.3.5_mapped_parchment_2023.09.03-1.20.1-recomp.jar%23191!/:?] {re:classloading,pl:accesstransformer:B} at net.minecraft.client.server.IntegratedServer.tickServer(IntegratedServer.java:95) ~[forge-1.20.1-47.3.5_mapped_parchment_2023.09.03-1.20.1-recomp.jar%23191!/:?] {re:classloading,pl:runtimedistcleaner:A} at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:679) ~[forge-1.20.1-47.3.5_mapped_parchment_2023.09.03-1.20.1-recomp.jar%23191!/:?] {re:classloading,pl:accesstransformer:B} at net.minecraft.server.MinecraftServer.lambda$spin$2(MinecraftServer.java:251) ~[forge-1.20.1-47.3.5_mapped_parchment_2023.09.03-1.20.1-recomp.jar%23191!/:?] {re:classloading,pl:accesstransformer:B} at java.lang.Thread.run(Thread.java:833) ~[?:?] {} Caused by: java.lang.NullPointerException: Cannot invoke "net.minecraft.network.syncher.SynchedEntityData$DataItem.getValue()" because the return value of "net.minecraft.network.syncher.SynchedEntityData.getItem(net.minecraft.network.syncher.EntityDataAccessor)" is null at net.minecraft.network.syncher.SynchedEntityData.get(SynchedEntityData.java:139) ~[forge-1.20.1-47.3.5_mapped_parchment_2023.09.03-1.20.1-recomp.jar%23191!/:?] {re:classloading} at yesman.epicfight.world.capabilities.entitypatch.LivingEntityPatch.isAirborneState(LivingEntityPatch.java:643) ~[epic-fight-mod-405076-5604255_mapped_parchment_2023.09.03-1.20.1.jar%23198!/:20.8.7] {re:mixin,re:classloading} at yesman.epicfight.world.capabilities.entitypatch.LivingEntityPatch.tick(LivingEntityPatch.java:156) ~[epic-fight-mod-405076-5604255_mapped_parchment_2023.09.03-1.20.1.jar%23198!/:20.8.7] {re:mixin,re:classloading} at yesman.epicfight.world.capabilities.entitypatch.player.PlayerPatch.tick(PlayerPatch.java:222) ~[epic-fight-mod-405076-5604255_mapped_parchment_2023.09.03-1.20.1.jar%23198!/:20.8.7] {re:mixin,re:classloading} at yesman.epicfight.world.capabilities.entitypatch.player.ServerPlayerPatch.tick(ServerPlayerPatch.java:113) ~[epic-fight-mod-405076-5604255_mapped_parchment_2023.09.03-1.20.1.jar%23198!/:20.8.7] {re:classloading} at yesman.epicfight.events.EntityEvents.updateEvent(EntityEvents.java:103) ~[epic-fight-mod-405076-5604255_mapped_parchment_2023.09.03-1.20.1.jar%23198!/:20.8.7] {re:classloading} at yesman.epicfight.events.__EntityEvents_updateEvent_LivingTickEvent.invoke(.dynamic) ~[epic-fight-mod-405076-5604255_mapped_parchment_2023.09.03-1.20.1.jar%23198!/:20.8.7] {re:classloading,pl:eventbus:B} at net.minecraftforge.eventbus.ASMEventHandler.invoke(ASMEventHandler.java:73) ~[eventbus-6.0.5.jar%23114!/:?] {} at net.minecraftforge.eventbus.EventBus.post(EventBus.java:315) ~[eventbus-6.0.5.jar%23114!/:?] {} at net.minecraftforge.eventbus.EventBus.post(EventBus.java:296) ~[eventbus-6.0.5.jar%23114!/:?] {} at net.minecraftforge.common.ForgeHooks.onLivingTick(ForgeHooks.java:266) ~[forge-1.20.1-47.3.5_mapped_parchment_2023.09.03-1.20.1-recomp.jar%23190%23197!/:?] {re:classloading} at net.minecraft.world.entity.LivingEntity.tick(LivingEntity.java:2400) ~[forge-1.20.1-47.3.5_mapped_parchment_2023.09.03-1.20.1-recomp.jar%23191!/:?] {re:mixin,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B,pl:mixin:APP:mixins.epicfight.json:MixinLivingEntity,pl:mixin:A} at net.minecraft.world.entity.player.Player.tick(Player.java:245) ~[forge-1.20.1-47.3.5_mapped_parchment_2023.09.03-1.20.1-recomp.jar%23191!/:?] {re:mixin,pl:accesstransformer:B,re:computing_frames,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B,pl:mixin:APP:mixins.epicfight.json:MixinPlayer,pl:mixin:A} at net.minecraft.server.level.ServerPlayer.doTick(ServerPlayer.java:489) ~[forge-1.20.1-47.3.5_mapped_parchment_2023.09.03-1.20.1-recomp.jar%23191!/:?] {re:mixin,pl:accesstransformer:B,re:computing_frames,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B,pl:mixin:APP:mixins.epicfight.json:MixinServerPlayer,pl:mixin:A} at net.minecraft.server.network.ServerGamePacketListenerImpl.tick(ServerGamePacketListenerImpl.java:267) ~[forge-1.20.1-47.3.5_mapped_parchment_2023.09.03-1.20.1-recomp.jar%23191!/:?] {re:classloading,pl:accesstransformer:B} at net.minecraft.network.Connection.tick(Connection.java:289) ~[forge-1.20.1-47.3.5_mapped_parchment_2023.09.03-1.20.1-recomp.jar%23191!/:?] {re:classloading} at net.minecraft.server.network.ServerConnectionListener.tick(ServerConnectionListener.java:159) ~[forge-1.20.1-47.3.5_mapped_parchment_2023.09.03-1.20.1-recomp.jar%23191!/:?] {re:classloading} ... 6 more [15:45:52] [Server thread/FATAL] [ne.mi.co.ForgeMod/]: Preparing crash report with UUID 354808e5-5153-4a3d-844f-81c801e674f2 [15:45:52] [Server thread/ERROR] [minecraft/MinecraftServer]: This crash report has been saved to: D:\Datas\Lobotomy Combat\run\.\crash-reports\crash-2024-08-09_15.45.52-server.txt [15:45:52] [Server thread/INFO] [minecraft/MinecraftServer]: Stopping server [15:45:52] [Server thread/INFO] [minecraft/MinecraftServer]: Saving players [15:45:52] [Server thread/INFO] [minecraft/MinecraftServer]: Saving worlds [15:45:52] [Render thread/FATAL] [ne.mi.co.ForgeMod/]: Preparing crash report with UUID 2bf613ec-80ad-485f-9a05-205f4ac52f18 ---- Minecraft Crash Report ---- // Hey, that tickles! Hehehe! Time: 2024-08-09 15:45:52 Description: Ticking player java.lang.NullPointerException: Cannot invoke "net.minecraft.network.syncher.SynchedEntityData$DataItem.getValue()" because the return value of "net.minecraft.network.syncher.SynchedEntityData.getItem(net.minecraft.network.syncher.EntityDataAccessor)" is null at net.minecraft.network.syncher.SynchedEntityData.get(SynchedEntityData.java:139) ~[forge-1.20.1-47.3.5_mapped_parchment_2023.09.03-1.20.1-recomp.jar%23191!/:?] {re:classloading} at yesman.epicfight.world.capabilities.entitypatch.LivingEntityPatch.isAirborneState(LivingEntityPatch.java:643) ~[epic-fight-mod-405076-5604255_mapped_parchment_2023.09.03-1.20.1.jar%23198!/:20.8.7] {re:mixin,re:classloading} at yesman.epicfight.world.capabilities.entitypatch.LivingEntityPatch.tick(LivingEntityPatch.java:156) ~[epic-fight-mod-405076-5604255_mapped_parchment_2023.09.03-1.20.1.jar%23198!/:20.8.7] {re:mixin,re:classloading} at yesman.epicfight.world.capabilities.entitypatch.player.PlayerPatch.tick(PlayerPatch.java:222) ~[epic-fight-mod-405076-5604255_mapped_parchment_2023.09.03-1.20.1.jar%23198!/:20.8.7] {re:mixin,re:classloading} at yesman.epicfight.world.capabilities.entitypatch.player.ServerPlayerPatch.tick(ServerPlayerPatch.java:113) ~[epic-fight-mod-405076-5604255_mapped_parchment_2023.09.03-1.20.1.jar%23198!/:20.8.7] {re:classloading} at yesman.epicfight.events.EntityEvents.updateEvent(EntityEvents.java:103) ~[epic-fight-mod-405076-5604255_mapped_parchment_2023.09.03-1.20.1.jar%23198!/:20.8.7] {re:classloading} at yesman.epicfight.events.__EntityEvents_updateEvent_LivingTickEvent.invoke(.dynamic) ~[epic-fight-mod-405076-5604255_mapped_parchment_2023.09.03-1.20.1.jar%23198!/:20.8.7] {re:classloading,pl:eventbus:B} at net.minecraftforge.eventbus.ASMEventHandler.invoke(ASMEventHandler.java:73) ~[eventbus-6.0.5.jar%23114!/:?] {} at net.minecraftforge.eventbus.EventBus.post(EventBus.java:315) ~[eventbus-6.0.5.jar%23114!/:?] {} at net.minecraftforge.eventbus.EventBus.post(EventBus.java:296) ~[eventbus-6.0.5.jar%23114!/:?] {} at net.minecraftforge.common.ForgeHooks.onLivingTick(ForgeHooks.java:266) ~[forge-1.20.1-47.3.5_mapped_parchment_2023.09.03-1.20.1-recomp.jar%23190%23197!/:?] {re:classloading} at net.minecraft.world.entity.LivingEntity.tick(LivingEntity.java:2400) ~[forge-1.20.1-47.3.5_mapped_parchment_2023.09.03-1.20.1-recomp.jar%23191!/:?] {re:mixin,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B,pl:mixin:APP:mixins.epicfight.json:MixinLivingEntity,pl:mixin:A} at net.minecraft.world.entity.player.Player.tick(Player.java:245) ~[forge-1.20.1-47.3.5_mapped_parchment_2023.09.03-1.20.1-recomp.jar%23191!/:?] {re:mixin,pl:accesstransformer:B,re:computing_frames,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B,pl:mixin:APP:mixins.epicfight.json:MixinPlayer,pl:mixin:A} at net.minecraft.server.level.ServerPlayer.doTick(ServerPlayer.java:489) ~[forge-1.20.1-47.3.5_mapped_parchment_2023.09.03-1.20.1-recomp.jar%23191!/:?] {re:mixin,pl:accesstransformer:B,re:computing_frames,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B,pl:mixin:APP:mixins.epicfight.json:MixinServerPlayer,pl:mixin:A} at net.minecraft.server.network.ServerGamePacketListenerImpl.tick(ServerGamePacketListenerImpl.java:267) ~[forge-1.20.1-47.3.5_mapped_parchment_2023.09.03-1.20.1-recomp.jar%23191!/:?] {re:classloading,pl:accesstransformer:B} at net.minecraft.network.Connection.tick(Connection.java:289) ~[forge-1.20.1-47.3.5_mapped_parchment_2023.09.03-1.20.1-recomp.jar%23191!/:?] {re:classloading} at net.minecraft.server.network.ServerConnectionListener.tick(ServerConnectionListener.java:159) ~[forge-1.20.1-47.3.5_mapped_parchment_2023.09.03-1.20.1-recomp.jar%23191!/:?] {re:classloading} at net.minecraft.server.MinecraftServer.tickChildren(MinecraftServer.java:950) ~[forge-1.20.1-47.3.5_mapped_parchment_2023.09.03-1.20.1-recomp.jar%23191!/:?] {re:classloading,pl:accesstransformer:B} at net.minecraft.server.MinecraftServer.tickServer(MinecraftServer.java:857) ~[forge-1.20.1-47.3.5_mapped_parchment_2023.09.03-1.20.1-recomp.jar%23191!/:?] {re:classloading,pl:accesstransformer:B} at net.minecraft.client.server.IntegratedServer.tickServer(IntegratedServer.java:95) ~[forge-1.20.1-47.3.5_mapped_parchment_2023.09.03-1.20.1-recomp.jar%23191!/:?] {re:classloading,pl:runtimedistcleaner:A} at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:679) ~[forge-1.20.1-47.3.5_mapped_parchment_2023.09.03-1.20.1-recomp.jar%23191!/:?] {re:classloading,pl:accesstransformer:B} at net.minecraft.server.MinecraftServer.lambda$spin$2(MinecraftServer.java:251) ~[forge-1.20.1-47.3.5_mapped_parchment_2023.09.03-1.20.1-recomp.jar%23191!/:?] {re:classloading,pl:accesstransformer:B} at java.lang.Thread.run(Thread.java:833) ~[?:?] {} A detailed walkthrough of the error, its code path and all known details is as follows: --------------------------------------------------------------------------------------- -- Head -- Thread: Render thread Suspected Mod: Epic Fight (epicfight), Version: 20.8.7 Issue tracker URL: https://github.com/Yesssssman/epicfightmod/issues at TRANSFORMER/[email protected]/yesman.epicfight.world.capabilities.entitypatch.LivingEntityPatch.isAirborneState(LivingEntityPatch.java:643) Stacktrace: at net.minecraft.network.syncher.SynchedEntityData.get(SynchedEntityData.java:139) ~[forge-1.20.1-47.3.5_mapped_parchment_2023.09.03-1.20.1-recomp.jar%23191!/:?] {re:classloading} at yesman.epicfight.world.capabilities.entitypatch.LivingEntityPatch.isAirborneState(LivingEntityPatch.java:643) ~[epic-fight-mod-405076-5604255_mapped_parchment_2023.09.03-1.20.1.jar%23198!/:20.8.7] {re:mixin,re:classloading} at yesman.epicfight.world.capabilities.entitypatch.LivingEntityPatch.tick(LivingEntityPatch.java:156) ~[epic-fight-mod-405076-5604255_mapped_parchment_2023.09.03-1.20.1.jar%23198!/:20.8.7] {re:mixin,re:classloading} at yesman.epicfight.world.capabilities.entitypatch.player.PlayerPatch.tick(PlayerPatch.java:222) ~[epic-fight-mod-405076-5604255_mapped_parchment_2023.09.03-1.20.1.jar%23198!/:20.8.7] {re:mixin,re:classloading} at yesman.epicfight.world.capabilities.entitypatch.player.ServerPlayerPatch.tick(ServerPlayerPatch.java:113) ~[epic-fight-mod-405076-5604255_mapped_parchment_2023.09.03-1.20.1.jar%23198!/:20.8.7] {re:classloading} at yesman.epicfight.events.EntityEvents.updateEvent(EntityEvents.java:103) ~[epic-fight-mod-405076-5604255_mapped_parchment_2023.09.03-1.20.1.jar%23198!/:20.8.7] {re:classloading} at yesman.epicfight.events.__EntityEvents_updateEvent_LivingTickEvent.invoke(.dynamic) ~[epic-fight-mod-405076-5604255_mapped_parchment_2023.09.03-1.20.1.jar%23198!/:20.8.7] {re:classloading,pl:eventbus:B} at net.minecraftforge.eventbus.ASMEventHandler.invoke(ASMEventHandler.java:73) ~[eventbus-6.0.5.jar%23114!/:?] {} at net.minecraftforge.eventbus.EventBus.post(EventBus.java:315) ~[eventbus-6.0.5.jar%23114!/:?] {} at net.minecraftforge.eventbus.EventBus.post(EventBus.java:296) ~[eventbus-6.0.5.jar%23114!/:?] {} at net.minecraftforge.common.ForgeHooks.onLivingTick(ForgeHooks.java:266) ~[forge-1.20.1-47.3.5_mapped_parchment_2023.09.03-1.20.1-recomp.jar%23190%23197!/:?] {re:classloading} at net.minecraft.world.entity.LivingEntity.tick(LivingEntity.java:2400) ~[forge-1.20.1-47.3.5_mapped_parchment_2023.09.03-1.20.1-recomp.jar%23191!/:?] {re:mixin,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B,pl:mixin:APP:mixins.epicfight.json:MixinLivingEntity,pl:mixin:A} at net.minecraft.world.entity.player.Player.tick(Player.java:245) ~[forge-1.20.1-47.3.5_mapped_parchment_2023.09.03-1.20.1-recomp.jar%23191!/:?] {re:mixin,pl:accesstransformer:B,re:computing_frames,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B,pl:mixin:APP:mixins.epicfight.json:MixinPlayer,pl:mixin:A} -- Player being ticked -- Details: Entity Type: minecraft:player (net.minecraft.server.level.ServerPlayer) Entity ID: 160 Entity Name: Dev Entity's Exact location: 4.50, 71.00, 115.50 Entity's Block location: World: (4,71,115), Section: (at 4,7,3 in 0,4,7; chunk contains blocks 0,-64,112 to 15,319,127), Region: (0,0; contains chunks 0,0 to 31,31, blocks 0,-64,0 to 511,319,511) Entity's Momentum: 0.00, -0.08, 0.00 Entity's Passengers: [] Entity's Vehicle: null Stacktrace: at net.minecraft.server.level.ServerPlayer.doTick(ServerPlayer.java:489) ~[forge-1.20.1-47.3.5_mapped_parchment_2023.09.03-1.20.1-recomp.jar%23191!/:?] {re:mixin,pl:accesstransformer:B,re:computing_frames,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B,pl:mixin:APP:mixins.epicfight.json:MixinServerPlayer,pl:mixin:A} at net.minecraft.server.network.ServerGamePacketListenerImpl.tick(ServerGamePacketListenerImpl.java:267) ~[forge-1.20.1-47.3.5_mapped_parchment_2023.09.03-1.20.1-recomp.jar%23191!/:?] {re:classloading,pl:accesstransformer:B} at net.minecraft.network.Connection.tick(Connection.java:289) ~[forge-1.20.1-47.3.5_mapped_parchment_2023.09.03-1.20.1-recomp.jar%23191!/:?] {re:classloading} at net.minecraft.server.network.ServerConnectionListener.tick(ServerConnectionListener.java:159) ~[forge-1.20.1-47.3.5_mapped_parchment_2023.09.03-1.20.1-recomp.jar%23191!/:?] {re:classloading} at net.minecraft.server.MinecraftServer.tickChildren(MinecraftServer.java:950) ~[forge-1.20.1-47.3.5_mapped_parchment_2023.09.03-1.20.1-recomp.jar%23191!/:?] {re:classloading,pl:accesstransformer:B} at net.minecraft.server.MinecraftServer.tickServer(MinecraftServer.java:857) ~[forge-1.20.1-47.3.5_mapped_parchment_2023.09.03-1.20.1-recomp.jar%23191!/:?] {re:classloading,pl:accesstransformer:B} at net.minecraft.client.server.IntegratedServer.tickServer(IntegratedServer.java:95) ~[forge-1.20.1-47.3.5_mapped_parchment_2023.09.03-1.20.1-recomp.jar%23191!/:?] {re:classloading,pl:runtimedistcleaner:A} at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:679) ~[forge-1.20.1-47.3.5_mapped_parchment_2023.09.03-1.20.1-recomp.jar%23191!/:?] {re:classloading,pl:accesstransformer:B} at net.minecraft.server.MinecraftServer.lambda$spin$2(MinecraftServer.java:251) ~[forge-1.20.1-47.3.5_mapped_parchment_2023.09.03-1.20.1-recomp.jar%23191!/:?] {re:classloading,pl:accesstransformer:B} at java.lang.Thread.run(Thread.java:833) ~[?:?] {} -- System Details -- Details: Minecraft Version: 1.20.1 Minecraft Version ID: 1.20.1 Operating System: Windows 11 (amd64) version 10.0 Java Version: 17.0.7, Oracle Corporation Java VM Version: Java HotSpot(TM) 64-Bit Server VM (mixed mode, sharing), Oracle Corporation Memory: 192102232 bytes (183 MiB) / 1434451968 bytes (1368 MiB) up to 4093640704 bytes (3904 MiB) CPUs: 16 Processor Vendor: AuthenticAMD Processor Name: AMD Ryzen 7 6800H with Radeon Graphics Identifier: AuthenticAMD Family 25 Model 68 Stepping 1 Microarchitecture: Zen 3 Frequency (GHz): 3.19 Number of physical packages: 1 Number of physical CPUs: 8 Number of logical CPUs: 16 Graphics card #0 name: AMD Radeon(TM) Graphics Graphics card #0 vendor: Advanced Micro Devices, Inc. (0x1002) Graphics card #0 VRAM (MB): 512.00 Graphics card #0 deviceId: 0x1681 Graphics card #0 versionInfo: DriverVersion=31.0.12024.2005 Graphics card #1 name: NVIDIA GeForce RTX 3050 Laptop GPU Graphics card #1 vendor: NVIDIA (0x10de) Graphics card #1 VRAM (MB): 4095.00 Graphics card #1 deviceId: 0x25a2 Graphics card #1 versionInfo: DriverVersion=31.0.15.5176 Memory slot #0 capacity (MB): 8192.00 Memory slot #0 clockSpeed (GHz): 4.80 Memory slot #0 type: Unknown Memory slot #1 capacity (MB): 8192.00 Memory slot #1 clockSpeed (GHz): 4.80 Memory slot #1 type: Unknown Virtual memory max (MB): 33021.06 Virtual memory used (MB): 26006.97 Swap memory total (MB): 17408.00 Swap memory used (MB): 1762.82 JVM Flags: 1 total; -XX:HeapDumpPath=MojangTricksIntelDriversForPerformance_javaw.exe_minecraft.exe.heapdump Server Running: true Player Count: 1 / 8; [ServerPlayer['Dev'/160, l='ServerLevel[�µ�����]', x=4.50, y=71.00, z=115.50]] Data Packs: vanilla, mod:forge, mod:epicfight, mod:lobotomy_combat Enabled Feature Flags: minecraft:vanilla World Generation: Stable Type: Integrated Server (map_client.txt) Is Modded: Definitely; Client brand changed to 'forge'; Server brand changed to 'forge' Launched Version: MOD_DEV ModLauncher: 10.0.9+10.0.9+main.dcd20f30 ModLauncher launch target: forgeclientuserdev ModLauncher naming: mcp ModLauncher services: mixin-0.8.5.jar mixin PLUGINSERVICE eventbus-6.0.5.jar eventbus PLUGINSERVICE fmlloader-1.20.1-47.3.5.jar slf4jfixer PLUGINSERVICE fmlloader-1.20.1-47.3.5.jar object_holder_definalize PLUGINSERVICE fmlloader-1.20.1-47.3.5.jar runtime_enum_extender PLUGINSERVICE fmlloader-1.20.1-47.3.5.jar capability_token_subclass PLUGINSERVICE accesstransformers-8.0.4.jar accesstransformer PLUGINSERVICE fmlloader-1.20.1-47.3.5.jar runtimedistcleaner PLUGINSERVICE modlauncher-10.0.9.jar mixin TRANSFORMATIONSERVICE modlauncher-10.0.9.jar fml TRANSFORMATIONSERVICE FML Language Providers: [email protected] lowcodefml@null javafml@null Mod List: forge-1.20.1-47.3.5_mapped_parchment_2023.09.03-1.|Minecraft |minecraft |1.20.1 |DONE |Manifest: a1:d4:5e:04:4f:d3:d6:e0:7b:37:97:cf:77:b0:de:ad:4a:47:ce:8c:96:49:5f:0a:cf:8c:ae:b2:6d:4b:8a:3f |Forge |forge |47.3.5 |DONE |Manifest: NOSIGNATURE epic-fight-mod-405076-5604255_mapped_parchment_202|Epic Fight |epicfight |20.8.7 |DONE |Manifest: NOSIGNATURE main |Lobotomy Combat |lobotomy_combat |1.0.0 |DONE |Manifest: NOSIGNATURE Crash Report UUID: 2bf613ec-80ad-485f-9a05-205f4ac52f18 FML: 47.3 Forge: net.minecraftforge:47.3.5 #@!@# Game crashed! Crash report saved to: #@!@# .\crash-reports\crash-2024-08-09_15.45.52-server.txt [15:45:53] [Server thread/INFO] [minecraft/MinecraftServer]: Saving chunks for level 'ServerLevel[�µ�����]'/minecraft:overworld [15:45:54] [Server thread/INFO] [minecraft/MinecraftServer]: Saving chunks for level 'ServerLevel[�µ�����]'/minecraft:the_end [15:45:54] [Server thread/INFO] [minecraft/MinecraftServer]: Saving chunks for level 'ServerLevel[�µ�����]'/minecraft:the_nether [15:45:54] [Server thread/DEBUG] [ne.mi.co.ForgeHooks/WP]: Gathering id map for writing to world save �µ����� [15:45:54] [Server thread/DEBUG] [ne.mi.co.ForgeHooks/WP]: ID Map collection complete �µ����� [15:45:54] [Server thread/INFO] [minecraft/MinecraftServer]: ThreadedAnvilChunkStorage (�µ�����): All chunks are saved [15:45:54] [Server thread/INFO] [minecraft/MinecraftServer]: ThreadedAnvilChunkStorage (DIM1): All chunks are saved [15:45:54] [Server thread/INFO] [minecraft/MinecraftServer]: ThreadedAnvilChunkStorage (DIM-1): All chunks are saved [15:45:54] [Server thread/INFO] [minecraft/MinecraftServer]: ThreadedAnvilChunkStorage: All dimensions are saved [15:45:54] [Server thread/DEBUG] [ne.mi.re.GameData/REGISTRIES]: Reverting to FROZEN data state. [15:45:54] [Server thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry minecraft:block Sync: ACTIVE -> FROZEN [15:45:54] [Server thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry minecraft:fluid Sync: ACTIVE -> FROZEN [15:45:54] [Server thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry minecraft:item Sync: ACTIVE -> FROZEN [15:45:54] [Server thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry minecraft:mob_effect Sync: ACTIVE -> FROZEN [15:45:54] [Server thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry minecraft:sound_event Sync: ACTIVE -> FROZEN [15:45:54] [Server thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry minecraft:potion Sync: ACTIVE -> FROZEN [15:45:54] [Server thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry minecraft:enchantment Sync: ACTIVE -> FROZEN [15:45:54] [Server thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry minecraft:entity_type Sync: ACTIVE -> FROZEN [15:45:54] [Server thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry minecraft:block_entity_type Sync: ACTIVE -> FROZEN [15:45:54] [Server thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry minecraft:particle_type Sync: ACTIVE -> FROZEN [15:45:54] [Server thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry minecraft:menu Sync: ACTIVE -> FROZEN [15:45:54] [Server thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry minecraft:painting_variant Sync: ACTIVE -> FROZEN [15:45:54] [Server thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry minecraft:recipe_type Sync: ACTIVE -> FROZEN [15:45:54] [Server thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry minecraft:recipe_serializer Sync: ACTIVE -> FROZEN [15:45:54] [Server thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry minecraft:attribute Sync: ACTIVE -> FROZEN [15:45:54] [Server thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry minecraft:stat_type Sync: ACTIVE -> FROZEN [15:45:54] [Server thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry minecraft:command_argument_type Sync: ACTIVE -> FROZEN [15:45:54] [Server thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry minecraft:villager_profession Sync: ACTIVE -> FROZEN [15:45:54] [Server thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry minecraft:point_of_interest_type Sync: ACTIVE -> FROZEN [15:45:54] [Server thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry minecraft:memory_module_type Sync: ACTIVE -> FROZEN [15:45:54] [Server thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry minecraft:sensor_type Sync: ACTIVE -> FROZEN [15:45:54] [Server thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry minecraft:schedule Sync: ACTIVE -> FROZEN [15:45:54] [Server thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry minecraft:activity Sync: ACTIVE -> FROZEN [15:45:54] [Server thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry minecraft:worldgen/carver Sync: ACTIVE -> FROZEN [15:45:54] [Server thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry minecraft:worldgen/feature Sync: ACTIVE -> FROZEN [15:45:54] [Server thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry minecraft:chunk_status Sync: ACTIVE -> FROZEN [15:45:54] [Server thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry minecraft:worldgen/block_state_provider_type Sync: ACTIVE -> FROZEN [15:45:54] [Server thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry minecraft:worldgen/foliage_placer_type Sync: ACTIVE -> FROZEN [15:45:54] [Server thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry minecraft:worldgen/tree_decorator_type Sync: ACTIVE -> FROZEN [15:45:54] [Server thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry minecraft:worldgen/biome Sync: ACTIVE -> FROZEN [15:45:54] [Server thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry forge:entity_data_serializers Sync: ACTIVE -> FROZEN [15:45:54] [Server thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry forge:global_loot_modifier_serializers Sync: ACTIVE -> FROZEN [15:45:54] [Server thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry forge:biome_modifier_serializers Sync: ACTIVE -> FROZEN [15:45:54] [Server thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry forge:fluid_type Sync: ACTIVE -> FROZEN [15:45:54] [Server thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry forge:structure_modifier_serializers Sync: ACTIVE -> FROZEN [15:45:54] [Server thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry forge:holder_set_type Sync: ACTIVE -> FROZEN [15:45:54] [Server thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry forge:display_contexts Sync: ACTIVE -> FROZEN [15:45:54] [Server thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry epicfight:skill Sync: ACTIVE -> FROZEN [15:45:54] [Server thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry epicfight:conditions Sync: ACTIVE -> FROZEN [15:45:54] [Server thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry epicfight:skill_data_keys Sync: ACTIVE -> FROZEN [15:45:55] [Server thread/DEBUG] [ne.mi.re.ObjectHolderRegistry/REGISTRIES]: Applying holder lookups [15:45:55] [Server thread/DEBUG] [ne.mi.re.ObjectHolderRegistry/REGISTRIES]: Holder lookups applied [15:45:55] [Server thread/DEBUG] [ne.mi.re.GameData/REGISTRIES]: FROZEN state restored. [15:45:55] [Server thread/DEBUG] [ne.mi.fm.co.ConfigTracker/CONFIG]: Unloading configs type SERVER > Task :runClient FAILED Deprecated Gradle features were used in this build, making it incompatible with Gradle 9.0. You can use '--warning-mode all' to show the individual deprecation warnings and determine if they come from your own scripts or plugins. For more on this, please refer to https://docs.gradle.org/8.8/userguide/command_line_interface.html#sec:command_line_warnings in the Gradle documentation. 10 actionable tasks: 3 executed, 7 up-to-date FAILURE: Build failed with an exception. * What went wrong: Execution failed for task ':runClient'. > Process 'command 'D:\Program Files\Java\jdk-17\bin\java.exe'' finished with non-zero exit value -1 * Try: > Run with --stacktrace option to get the stack trace. > Run with --info or --debug option to get more log output. > Run with --scan to get full insights. > Get more help at https://help.gradle.org. BUILD FAILED in 1m 1s
×
×
  • Create New...

Important Information

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