Jump to content

How to make my stone generate like Andesite, Diorite, Granite? [1.19]


Recommended Posts

Posted

How to make my stone generate like Andesite, Diorite, Granite? I have made a new stone called Dolerite, it is real. But I can't find any resources online for implementing this. Help me, I am confused. I might reply slower due to High School.

Posted
  On 9/28/2022 at 1:51 PM, ChampionAsh5357 said:

You need to use a biome modifier. From there, simply provide the JSONs that represent the placed feature (which is the ore generation) you would like to add. You can see how placed features are written on slicedlime's repo.

Expand  

Now it fails and shows this, when trying to create a new world:

i4DEaOX.png

Here is /data/orangecraft/worldgen/configured_features/dolerite.json:

{
  "type": "minecraft:ore",
  "config": {
    "discard_chance_on_air_exposure": 0.0,
    "size": 64,
    "targets": [
      {
        "state": {
          "Name": "orangecraft:dolerite"
        },
        "target": {
          "predicate_type": "minecraft:tag_match",
          "tag": "minecraft:base_stone_overworld"
        }
      }
    ]
  }
}

Here is OrangecraftBiomeModifier:

package com.mys.orangecraft;

import com.mojang.serialization.Codec;
import net.minecraft.core.Holder;
import net.minecraft.core.HolderSet;
import net.minecraft.world.level.biome.Biome;
import net.minecraft.world.level.levelgen.GenerationStep;
import net.minecraft.world.level.levelgen.placement.PlacedFeature;
import net.minecraftforge.common.world.BiomeModifier;
import net.minecraftforge.common.world.ModifiableBiomeInfo;

public record OrangecraftBiomeModifier(HolderSet<Biome> biomes, Holder<PlacedFeature> feature) implements BiomeModifier {
    @Override
    public void modify(Holder<Biome> biome, Phase phase, ModifiableBiomeInfo.BiomeInfo.Builder builder) {
        if (phase == Phase.ADD)
        {
            builder.getGenerationSettings().addFeature(GenerationStep.Decoration.UNDERGROUND_ORES, feature);
        }
    }

    public Codec<? extends BiomeModifier> codec()
    {
        return Orangecraft.EXAMPLE_CODEC.get();
    }
}

Here is the implementation:

    static DeferredRegister<Codec<? extends BiomeModifier>> BIOME_MODIFIER_SERIALIZERS =
            DeferredRegister.create(ForgeRegistries.Keys.BIOME_MODIFIER_SERIALIZERS, MODID);

    static RegistryObject<Codec<OrangecraftBiomeModifier>> EXAMPLE_CODEC = BIOME_MODIFIER_SERIALIZERS.register("dolerite", () ->
            RecordCodecBuilder.create(builder -> builder.group(
                    // declare fields
                    Biome.LIST_CODEC.fieldOf("biomes").forGetter(OrangecraftBiomeModifier::biomes),
                    PlacedFeature.CODEC.fieldOf("feature").forGetter(OrangecraftBiomeModifier::feature)
                    // declare constructor
            ).apply(builder, OrangecraftBiomeModifier::new)));

data/orangecraft/forge/biome_modifier/orangecraft_biome_modifier.json:

{
  "type": "orangecraft:dolerite",
  "biomes": "#forge:is_caves",
  "feature": "orangecraft:dolerite"
}

How do I solve this

Posted (edited)

You don't need to write your own biome modifer for this.

Forge already has builtin modifiers for standard stuff: https://forge.gemwire.uk/wiki/Biome_Modifiers#Builtin_Biome_Modifier_Types

 

The rest of your question is unanswerable since you don't show the error message.

Edited by warjort

Boilerplate:

If you don't post your logs/debug.log we can't help you. For curseforge you need to enable the forge debug.log in its minecraft settings. You should also post your crash report if you have one.

If there is no error in the log file and you don't have a crash report then post the launcher_log.txt from the minecraft folder. Again for curseforge this will be in your curseforge/minecraft/Install

Large files should be posted to a file sharing site like https://gist.github.com  You should also read the support forum sticky post.

Posted
  On 9/29/2022 at 11:31 AM, warjort said:

You don't need to write your own biome modifer for this.

Forge already has builtin modifiers for standard stuff: https://forge.gemwire.uk/wiki/Biome_Modifiers#Builtin_Biome_Modifier_Types

 

The rest of your question is unanswerable since you don't show the error message.

Expand  

I changed it to forge's one and I get the same error in the game, here is the run log in IDEA, which is maybe what you meant by error:

/usr/lib/jvm/java-17-openjdk/bin/java -Dforge.logging.console.level=debug -Dforge.logging.markers=REGISTRIES -DlegacyClassPath.file=/home/yusuf/IdeaProjects/Orangecraft/build/classpath/runClient_minecraftClasspath.txt -DignoreList=bootstraplauncher,securejarhandler,asm-commons,asm-util,asm-analysis,asm-tree,asm,JarJarFileSystems,client-extra,fmlcore,javafmllanguage,lowcodelanguage,mclanguage,forge- -DmergeModules=jna-5.10.0.jar,jna-platform-5.10.0.jar -Dforge.enabledGameTestNamespaces=orangecraft -Dforge.enableGameTest=true -Djava.net.preferIPv6Addresses=system -p /home/yusuf/.gradle/caches/modules-2/files-2.1/cpw.mods/bootstraplauncher/1.1.2/c546e00443d8432cda6baa1c860346980742628/bootstraplauncher-1.1.2.jar:/home/yusuf/.gradle/caches/modules-2/files-2.1/cpw.mods/securejarhandler/2.1.4/f47e3b9dd860a7b82154b8f90a650ffd0aaa5582/securejarhandler-2.1.4.jar:/home/yusuf/.gradle/caches/modules-2/files-2.1/org.ow2.asm/asm-commons/9.3/1f2a432d1212f5c352ae607d7b61dcae20c20af5/asm-commons-9.3.jar:/home/yusuf/.gradle/caches/modules-2/files-2.1/org.ow2.asm/asm-util/9.3/9595bc05510d0bd4b610188b77333fe4851a1975/asm-util-9.3.jar:/home/yusuf/.gradle/caches/modules-2/files-2.1/org.ow2.asm/asm-analysis/9.3/4b071f211b37c38e0e9f5998550197c8593f6ad8/asm-analysis-9.3.jar:/home/yusuf/.gradle/caches/modules-2/files-2.1/org.ow2.asm/asm-tree/9.3/78d2ecd61318b5a58cd04fb237636c0e86b77d97/asm-tree-9.3.jar:/home/yusuf/.gradle/caches/modules-2/files-2.1/org.ow2.asm/asm/9.3/8e6300ef51c1d801a7ed62d07cd221aca3a90640/asm-9.3.jar:/home/yusuf/.gradle/caches/modules-2/files-2.1/net.minecraftforge/JarJarFileSystems/0.3.16/e52afbb2599dc7c6f779efea0496d32fc01152e3/JarJarFileSystems-0.3.16.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 -javaagent:/usr/share/idea/lib/idea_rt.jar=38125:/usr/share/idea/bin -Dfile.encoding=UTF-8 -classpath /home/yusuf/IdeaProjects/Orangecraft/build/classes/java/main:/home/yusuf/IdeaProjects/Orangecraft/build/resources/main:/home/yusuf/.gradle/caches/forge_gradle/minecraft_user_repo/net/minecraftforge/forge/1.19.2-43.1.25_mapped_official_1.19.2/forge-1.19.2-43.1.25_mapped_official_1.19.2.jar:/home/yusuf/.gradle/caches/forge_gradle/minecraft_repo/versions/1.19.2/client-extra.jar:/home/yusuf/.gradle/caches/modules-2/files-2.1/net.minecraftforge/fmlloader/1.19.2-43.1.25/1257140b8d0c027a181297bb7bb2229f7432cd49/fmlloader-1.19.2-43.1.25.jar:/home/yusuf/.gradle/caches/modules-2/files-2.1/net.minecraftforge/JarJarSelector/0.3.16/2a31421fb5e267249da103a644f23afb43d158af/JarJarSelector-0.3.16.jar:/home/yusuf/.gradle/caches/modules-2/files-2.1/net.minecraftforge/JarJarMetadata/0.3.16/f62c8c898dffc8666f5097a8587ed72095e8e83a/JarJarMetadata-0.3.16.jar:/home/yusuf/.gradle/caches/modules-2/files-2.1/com.google.code.findbugs/jsr305/3.0.2/25ea2e8b0c338a877313bd4672d3fe056ea78f0d/jsr305-3.0.2.jar:/home/yusuf/.gradle/caches/modules-2/files-2.1/ca.weblite/java-objc-bridge/1.1/1227f9e0666314f9de41477e3ec277e542ed7f7b/java-objc-bridge-1.1.jar:/home/yusuf/.gradle/caches/modules-2/files-2.1/net.minecraftforge/mergetool/1.1.5/f3da18e12c696d35a47c82cbb2cc8b5aa15e1154/mergetool-1.1.5-api.jar:/home/yusuf/.gradle/caches/modules-2/files-2.1/org.jetbrains/annotations/23.0.0/8cc20c07506ec18e0834947b84a864bfc094484e/annotations-23.0.0.jar:/home/yusuf/.gradle/caches/forge_gradle/mcp_repo/net/minecraft/mapping/1.19.2/mapping-1.19.2-mapping.zip:/home/yusuf/.gradle/caches/modules-2/files-2.1/cpw.mods/securejarhandler/2.1.4/f47e3b9dd860a7b82154b8f90a650ffd0aaa5582/securejarhandler-2.1.4.jar:/home/yusuf/.gradle/caches/modules-2/files-2.1/cpw.mods/modlauncher/10.0.8/658c4ddb704aeeaa94ff3e668785a5eebddd0cb5/modlauncher-10.0.8.jar:/home/yusuf/.gradle/caches/modules-2/files-2.1/org.openjdk.nashorn/nashorn-core/15.3/43977e804697048fc8d81d333a36c17d07a5b3dd/nashorn-core-15.3.jar:/home/yusuf/.gradle/caches/modules-2/files-2.1/org.ow2.asm/asm-commons/9.3/1f2a432d1212f5c352ae607d7b61dcae20c20af5/asm-commons-9.3.jar:/home/yusuf/.gradle/caches/modules-2/files-2.1/org.ow2.asm/asm-util/9.3/9595bc05510d0bd4b610188b77333fe4851a1975/asm-util-9.3.jar:/home/yusuf/.gradle/caches/modules-2/files-2.1/org.ow2.asm/asm-analysis/9.3/4b071f211b37c38e0e9f5998550197c8593f6ad8/asm-analysis-9.3.jar:/home/yusuf/.gradle/caches/modules-2/files-2.1/org.ow2.asm/asm-tree/9.3/78d2ecd61318b5a58cd04fb237636c0e86b77d97/asm-tree-9.3.jar:/home/yusuf/.gradle/caches/modules-2/files-2.1/org.ow2.asm/asm/9.3/8e6300ef51c1d801a7ed62d07cd221aca3a90640/asm-9.3.jar:/home/yusuf/.gradle/caches/modules-2/files-2.1/net.minecraftforge/accesstransformers/8.0.4/272d240aa73f42195b2a68e2ebd8b701ecf41f63/accesstransformers-8.0.4.jar:/home/yusuf/.gradle/caches/modules-2/files-2.1/org.antlr/antlr4-runtime/4.9.1/428664f05d2b7f7b7610204b5aa7c1763f62011a/antlr4-runtime-4.9.1.jar:/home/yusuf/.gradle/caches/modules-2/files-2.1/net.minecraftforge/fmlcore/1.19.2-43.1.25/de5cf5b7c931cea68cd63e4ea511ce5b779f6c02/fmlcore-1.19.2-43.1.25.jar:/home/yusuf/.gradle/caches/modules-2/files-2.1/net.minecraftforge/eventbus/6.0.3/42fe522ace1bbcbcbba9c880c42411857baf36a9/eventbus-6.0.3.jar:/home/yusuf/.gradle/caches/modules-2/files-2.1/net.minecraftforge/forgespi/6.0.0/4a2004591666531f8b30d3402317b1ff6411bd3e/forgespi-6.0.0.jar:/home/yusuf/.gradle/caches/modules-2/files-2.1/net.minecraftforge/coremods/5.0.1/386b00279628b105b2d507539c46e134e96f6237/coremods-5.0.1.jar:/home/yusuf/.gradle/caches/modules-2/files-2.1/net.minecraftforge/unsafe/0.2.0/54d7a0a5e8fdb71b973025caa46f341ae5904f39/unsafe-0.2.0.jar:/home/yusuf/.gradle/caches/modules-2/files-2.1/com.electronwill.night-config/toml/3.6.4/51d6cefb2b55ee55ee26b16391212fb2c7dfb4f4/toml-3.6.4.jar:/home/yusuf/.gradle/caches/modules-2/files-2.1/com.electronwill.night-config/core/3.6.4/510f174abbf1c947494db50ef2445683bd52c230/core-3.6.4.jar:/home/yusuf/.gradle/caches/modules-2/files-2.1/org.apache.maven/maven-artifact/3.8.5/4433f50c07debefaed0553bd0068f4f48d449313/maven-artifact-3.8.5.jar:/home/yusuf/.gradle/caches/modules-2/files-2.1/net.jodah/typetools/0.8.3/98f84f353457629e81cc6827224871b1a8faa7af/typetools-0.8.3.jar:/home/yusuf/.gradle/caches/modules-2/files-2.1/net.minecrell/terminalconsoleappender/1.2.0/96d02cd3b384ff015a8fef4223bcb4ccf1717c95/terminalconsoleappender-1.2.0.jar:/home/yusuf/.gradle/caches/modules-2/files-2.1/org.jline/jline-reader/3.12.1/4382ab1382c7b6f379377ed5f665dc2f6e1218bc/jline-reader-3.12.1.jar:/home/yusuf/.gradle/caches/modules-2/files-2.1/org.jline/jline-terminal/3.12.1/c777448314e050d980a6b697c140f3bfe9eb7416/jline-terminal-3.12.1.jar:/home/yusuf/.gradle/caches/modules-2/files-2.1/org.spongepowered/mixin/0.8.5/9d1c0c3a304ae6697ecd477218fa61b850bf57fc/mixin-0.8.5.jar:/home/yusuf/.gradle/caches/modules-2/files-2.1/cpw.mods/bootstraplauncher/1.1.2/c546e00443d8432cda6baa1c860346980742628/bootstraplauncher-1.1.2.jar:/home/yusuf/.gradle/caches/modules-2/files-2.1/net.minecraftforge/JarJarFileSystems/0.3.16/e52afbb2599dc7c6f779efea0496d32fc01152e3/JarJarFileSystems-0.3.16.jar:/home/yusuf/.gradle/caches/modules-2/files-2.1/net.minecraftforge/javafmllanguage/1.19.2-43.1.25/a1fbef6eacf8677dbdc2f463d7b2c47c8a371b02/javafmllanguage-1.19.2-43.1.25.jar:/home/yusuf/.gradle/caches/modules-2/files-2.1/net.minecraftforge/lowcodelanguage/1.19.2-43.1.25/3b7e0223837367cddcf29aaca7cb3d7e4b628b5c/lowcodelanguage-1.19.2-43.1.25.jar:/home/yusuf/.gradle/caches/modules-2/files-2.1/net.minecraftforge/mclanguage/1.19.2-43.1.25/b86163b1e6cc1dda5607fbf9d3e2e776f99683fa/mclanguage-1.19.2-43.1.25.jar:/home/yusuf/.gradle/caches/modules-2/files-2.1/com.google.guava/guava/31.0.1-jre/119ea2b2bc205b138974d351777b20f02b92704b/guava-31.0.1-jre.jar:/home/yusuf/.gradle/caches/modules-2/files-2.1/com.mojang/logging/1.0.0/f6ca3b2eee0b80b384e8ed93d368faecb82dfb9b/logging-1.0.0.jar:/home/yusuf/.gradle/caches/modules-2/files-2.1/com.mojang/blocklist/1.0.10/5c685c5ffa94c4cd39496c7184c1d122e515ecef/blocklist-1.0.10.jar:/home/yusuf/.gradle/caches/modules-2/files-2.1/com.mojang/patchy/2.2.10/da05971b07cbb379d002cf7eaec6a2048211fefc/patchy-2.2.10.jar:/home/yusuf/.gradle/caches/modules-2/files-2.1/com.github.oshi/oshi-core/5.8.5/1d0ec654d820741327f5a9229d513732a4b7ce50/oshi-core-5.8.5.jar:/home/yusuf/.gradle/caches/modules-2/files-2.1/net.java.dev.jna/jna-platform/5.10.0/fbed7d9669dba47714ad0d4f4454290a997aee69/jna-platform-5.10.0.jar:/home/yusuf/.gradle/caches/modules-2/files-2.1/net.java.dev.jna/jna/5.10.0/7cf4c87dd802db50721db66947aa237d7ad09418/jna-5.10.0.jar:/home/yusuf/.gradle/caches/modules-2/files-2.1/org.apache.logging.log4j/log4j-slf4j18-impl/2.17.0/bd7f6c0b9224dd214afb4e684957e2349b529a8d/log4j-slf4j18-impl-2.17.0.jar:/home/yusuf/.gradle/caches/modules-2/files-2.1/org.slf4j/slf4j-api/1.8.0-beta4/83b0359d847ee053d745be7ec0d8e9e8a44304b4/slf4j-api-1.8.0-beta4.jar:/home/yusuf/.gradle/caches/modules-2/files-2.1/com.ibm.icu/icu4j/70.1/dfa3a1fbc55bf5db8c6e79fc0935ac7ab1202950/icu4j-70.1.jar:/home/yusuf/.gradle/caches/modules-2/files-2.1/com.mojang/javabridge/1.2.24/c876796229b2ef5120f186eab5acc870699d3b9/javabridge-1.2.24.jar:/home/yusuf/.gradle/caches/modules-2/files-2.1/net.sf.jopt-simple/jopt-simple/5.0.4/4fdac2fbe92dfad86aa6e9301736f6b4342a3f5c/jopt-simple-5.0.4.jar:/home/yusuf/.gradle/caches/modules-2/files-2.1/io.netty/netty-handler/4.1.77.Final/47a81089de03635a27f509f3e4e13386ae1db275/netty-handler-4.1.77.Final.jar:/home/yusuf/.gradle/caches/modules-2/files-2.1/io.netty/netty-codec/4.1.77.Final/4efc5f59335301d6ba0d7cd31dd10651119b03c8/netty-codec-4.1.77.Final.jar:/home/yusuf/.gradle/caches/modules-2/files-2.1/io.netty/netty-transport-native-epoll/4.1.77.Final/5f051599ced83e119ddeda891f471c0613721e5c/netty-transport-native-epoll-4.1.77.Final-linux-aarch_64.jar:/home/yusuf/.gradle/caches/modules-2/files-2.1/io.netty/netty-transport-native-epoll/4.1.77.Final/8d10e9e138dac52172dd83229bdc89197100c723/netty-transport-native-epoll-4.1.77.Final-linux-x86_64.jar:/home/yusuf/.gradle/caches/modules-2/files-2.1/io.netty/netty-transport-classes-epoll/4.1.77.Final/dd70dbccbcf98382223a59044f3c08d8e9920cad/netty-transport-classes-epoll-4.1.77.Final.jar:/home/yusuf/.gradle/caches/modules-2/files-2.1/io.netty/netty-transport-native-unix-common/4.1.77.Final/c95d53486414b3270d08057957c5da8e0c37e4eb/netty-transport-native-unix-common-4.1.77.Final.jar:/home/yusuf/.gradle/caches/modules-2/files-2.1/io.netty/netty-transport/4.1.77.Final/2a3373bbd20d520c821f210bd5ee886788512043/netty-transport-4.1.77.Final.jar:/home/yusuf/.gradle/caches/modules-2/files-2.1/io.netty/netty-buffer/4.1.77.Final/d97571f99e5e739d86824d0df99f35d295276b5f/netty-buffer-4.1.77.Final.jar:/home/yusuf/.gradle/caches/modules-2/files-2.1/io.netty/netty-resolver/4.1.77.Final/4a239dbf8d8bb5f98aa51462c35011c0516395fd/netty-resolver-4.1.77.Final.jar:/home/yusuf/.gradle/caches/modules-2/files-2.1/io.netty/netty-common/4.1.77.Final/ea0fc20f4e6178966b9d62017b7fcb83dfe0e713/netty-common-4.1.77.Final.jar:/home/yusuf/.gradle/caches/modules-2/files-2.1/com.google.guava/failureaccess/1.0.1/1dcf1de382a0bf95a3d8b0849546c88bac1292c9/failureaccess-1.0.1.jar:/home/yusuf/.gradle/caches/modules-2/files-2.1/org.apache.commons/commons-lang3/3.12.0/c6842c86792ff03b9f1d1fe2aab8dc23aa6c6f0e/commons-lang3-3.12.0.jar:/home/yusuf/.gradle/caches/modules-2/files-2.1/commons-io/commons-io/2.11.0/a2503f302b11ebde7ebc3df41daebe0e4eea3689/commons-io-2.11.0.jar:/home/yusuf/.gradle/caches/modules-2/files-2.1/org.apache.httpcomponents/httpclient/4.5.13/e5f6cae5ca7ecaac1ec2827a9e2d65ae2869cada/httpclient-4.5.13.jar:/home/yusuf/.gradle/caches/modules-2/files-2.1/commons-codec/commons-codec/1.15/49d94806b6e3dc933dacbd8acb0fdbab8ebd1e5d/commons-codec-1.15.jar:/home/yusuf/.gradle/caches/modules-2/files-2.1/com.mojang/brigadier/1.0.18/c1ef1234282716483c92183f49bef47b1a89bfa9/brigadier-1.0.18.jar:/home/yusuf/.gradle/caches/modules-2/files-2.1/com.mojang/datafixerupper/5.0.28/e2157e236e529aff80a5fc3ccb506e56d46b130b/datafixerupper-5.0.28.jar:/home/yusuf/.gradle/caches/modules-2/files-2.1/com.google.code.gson/gson/2.8.9/8a432c1d6825781e21a02db2e2c33c5fde2833b9/gson-2.8.9.jar:/home/yusuf/.gradle/caches/modules-2/files-2.1/com.mojang/authlib/3.11.49/2e3055ec2a017c7f94b79744b4a68b65695a118c/authlib-3.11.49.jar:/home/yusuf/.gradle/caches/modules-2/files-2.1/org.apache.commons/commons-compress/1.21/4ec95b60d4e86b5c95a0e919cb172a0af98011ef/commons-compress-1.21.jar:/home/yusuf/.gradle/caches/modules-2/files-2.1/commons-logging/commons-logging/1.2/4bfc12adfe4842bf07b657f0369c4cb522955686/commons-logging-1.2.jar:/home/yusuf/.gradle/caches/modules-2/files-2.1/org.apache.httpcomponents/httpcore/4.4.14/9dd1a631c082d92ecd4bd8fd4cf55026c720a8c1/httpcore-4.4.14.jar:/home/yusuf/.gradle/caches/modules-2/files-2.1/it.unimi.dsi/fastutil/8.5.6/76f95700418a68fbc4ac050525261f05dc681ca1/fastutil-8.5.6.jar:/home/yusuf/.gradle/caches/modules-2/files-2.1/org.lwjgl/lwjgl-jemalloc/3.3.1/a817bcf213db49f710603677457567c37d53e103/lwjgl-jemalloc-3.3.1.jar:/home/yusuf/.gradle/caches/modules-2/files-2.1/org.lwjgl/lwjgl-jemalloc/3.3.1/33dbb017b6ed6b25f993ad9d56741a49e7937718/lwjgl-jemalloc-3.3.1-natives-linux.jar:/home/yusuf/.gradle/caches/modules-2/files-2.1/org.lwjgl/lwjgl-openal/3.3.1/2623a6b8ae1dfcd880738656a9f0243d2e6840bd/lwjgl-openal-3.3.1.jar:/home/yusuf/.gradle/caches/modules-2/files-2.1/org.lwjgl/lwjgl-openal/3.3.1/f906b6439f6daa66001182ea7727e3467a93681b/lwjgl-openal-3.3.1-natives-linux.jar:/home/yusuf/.gradle/caches/modules-2/files-2.1/org.lwjgl/lwjgl-opengl/3.3.1/831a5533a21a5f4f81bbc51bb13e9899319b5411/lwjgl-opengl-3.3.1.jar:/home/yusuf/.gradle/caches/modules-2/files-2.1/org.lwjgl/lwjgl-opengl/3.3.1/ab9ab6fde3743e3550fa5d46d785ecb45b047d99/lwjgl-opengl-3.3.1-natives-linux.jar:/home/yusuf/.gradle/caches/modules-2/files-2.1/org.lwjgl/lwjgl-glfw/3.3.1/cbac1b8d30cb4795149c1ef540f912671a8616d0/lwjgl-glfw-3.3.1.jar:/home/yusuf/.gradle/caches/modules-2/files-2.1/org.lwjgl/lwjgl-glfw/3.3.1/81716978214ecbda15050ca394b06ef61501a49e/lwjgl-glfw-3.3.1-natives-linux.jar:/home/yusuf/.gradle/caches/modules-2/files-2.1/org.lwjgl/lwjgl-stb/3.3.1/b119297cf8ed01f247abe8685857f8e7fcf5980f/lwjgl-stb-3.3.1.jar:/home/yusuf/.gradle/caches/modules-2/files-2.1/org.lwjgl/lwjgl-stb/3.3.1/3ee7aec8686e52867677110415566a5342a80230/lwjgl-stb-3.3.1-natives-linux.jar:/home/yusuf/.gradle/caches/modules-2/files-2.1/org.lwjgl/lwjgl-tinyfd/3.3.1/ff1914111ef2e3e0110ef2dabc8d8cdaad82347/lwjgl-tinyfd-3.3.1.jar:/home/yusuf/.gradle/caches/modules-2/files-2.1/org.lwjgl/lwjgl-tinyfd/3.3.1/a35110b9471bea8cde826ab297550ee8c22f5035/lwjgl-tinyfd-3.3.1-natives-linux.jar:/home/yusuf/.gradle/caches/modules-2/files-2.1/org.lwjgl/lwjgl/3.3.1/ae58664f88e18a9bb2c77b063833ca7aaec484cb/lwjgl-3.3.1.jar:/home/yusuf/.gradle/caches/modules-2/files-2.1/org.lwjgl/lwjgl/3.3.1/1de885aba434f934201b99f2f1afb142036ac189/lwjgl-3.3.1-natives-linux.jar:/home/yusuf/.gradle/caches/modules-2/files-2.1/com.mojang/text2speech/1.13.9/5f4e3a6ef86cb021f7ca87ca192cddb50c26eb59/text2speech-1.13.9.jar:/home/yusuf/.gradle/caches/modules-2/files-2.1/com.mojang/text2speech/1.13.9/6c63ecb3b6408dcfdde6440c9ee62c060542af33/text2speech-1.13.9-natives-linux.jar:/home/yusuf/.gradle/caches/modules-2/files-2.1/com.machinezoo.noexception/noexception/1.7.1/b65330c98e38a1f915fa54a6e5eca496505e3f0a/noexception-1.7.1.jar:/home/yusuf/.gradle/caches/modules-2/files-2.1/org.antlr/antlr4/4.9.1/e92af8ab33e428461927b484e90bb155a4f3a052/antlr4-4.9.1.jar:/home/yusuf/.gradle/caches/modules-2/files-2.1/org.codehaus.plexus/plexus-utils/3.3.0/cf43b5391de623b36fe066a21127baef82c64022/plexus-utils-3.3.0.jar:/home/yusuf/.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:/home/yusuf/.gradle/caches/modules-2/files-2.1/org.checkerframework/checker-qual/3.12.0/d5692f0526415fcc6de94bb5bfbd3afd9dd3b3e5/checker-qual-3.12.0.jar:/home/yusuf/.gradle/caches/modules-2/files-2.1/com.google.errorprone/error_prone_annotations/2.7.1/458d9042f7aa6fa9a634df902b37f544e15aacac/error_prone_annotations-2.7.1.jar:/home/yusuf/.gradle/caches/modules-2/files-2.1/com.google.j2objc/j2objc-annotations/1.3/ba035118bc8bac37d7eff77700720999acd9986d/j2objc-annotations-1.3.jar:/home/yusuf/.gradle/caches/modules-2/files-2.1/org.antlr/ST4/4.3/92f2c1ad8d84abcbeead6cf7f2c53a04166293c2/ST4-4.3.jar:/home/yusuf/.gradle/caches/modules-2/files-2.1/org.antlr/antlr-runtime/3.5.2/cd9cd41361c155f3af0f653009dcecb08d8b4afd/antlr-runtime-3.5.2.jar:/home/yusuf/.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:/home/yusuf/.gradle/caches/modules-2/files-2.1/org.glassfish/javax.json/1.0.4/3178f73569fd7a1e5ffc464e680f7a8cc784b85a/javax.json-1.0.4.jar:/home/yusuf/.gradle/caches/modules-2/files-2.1/org.apache.logging.log4j/log4j-core/2.17.1/779f60f3844dadc3ef597976fcb1e5127b1f343d/log4j-core-2.17.1.jar:/home/yusuf/.gradle/caches/modules-2/files-2.1/org.apache.logging.log4j/log4j-api/2.17.1/d771af8e336e372fb5399c99edabe0919aeaf5b2/log4j-api-2.17.1.jar:/home/yusuf/.gradle/caches/modules-2/files-2.1/org.slf4j/slf4j-simple/1.7.30/e606eac955f55ecf1d8edcccba04eb8ac98088dd/slf4j-simple-1.7.30.jar:/home/yusuf/.gradle/caches/modules-2/files-2.1/net.minecraftforge/srgutils/0.4.11/fbad1341ffdb47d276bbdc40ecb06da49e053e74/srgutils-0.4.11.jar cpw.mods.bootstraplauncher.BootstrapLauncher --launchTarget forgeclientuserdev --version MOD_DEV --assetIndex 1.19 --assetsDir /home/yusuf/.gradle/caches/forge_gradle/assets --gameDir . --fml.forgeVersion 43.1.25 --fml.mcVersion 1.19.2 --fml.forgeGroup net.minecraftforge --fml.mcpVersion 20220805.130853
2022-09-29 16:48:08,452 main WARN Advanced terminal features are not available in this environment
[16:48:08] [main/INFO] [cp.mo.mo.Launcher/MODLAUNCHER]: ModLauncher running: args [--launchTarget, forgeclientuserdev, --version, MOD_DEV, --assetIndex, 1.19, --assetsDir, /home/yusuf/.gradle/caches/forge_gradle/assets, --gameDir, ., --fml.forgeVersion, 43.1.25, --fml.mcVersion, 1.19.2, --fml.forgeGroup, net.minecraftforge, --fml.mcpVersion, 20220805.130853]
[16:48:08] [main/INFO] [cp.mo.mo.Launcher/MODLAUNCHER]: ModLauncher 10.0.8+10.0.8+main.0ef7e830 starting: java version 17.0.4 by N/A; OS Linux arch amd64 version 5.18.9-arch1-1
[16:48:08] [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]
[16:48:08] [main/DEBUG] [cp.mo.mo.NameMappingServiceHandler/MODLAUNCHER]: Found naming services : [srgtomcp]
[16:48:08] [main/DEBUG] [cp.mo.mo.LaunchPluginHandler/MODLAUNCHER]: Found launch plugins: [mixin,eventbus,slf4jfixer,object_holder_definalize,runtime_enum_extender,capability_token_subclass,accesstransformer,runtimedistcleaner]
[16:48:08] [main/DEBUG] [cp.mo.mo.TransformationServicesHandler/MODLAUNCHER]: Discovering transformation services
[16:48:08] [main/DEBUG] [cp.mo.mo.TransformationServicesHandler/MODLAUNCHER]: Found additional transformation services from discovery services: 
[16:48:08] [main/DEBUG] [cp.mo.mo.TransformationServicesHandler/MODLAUNCHER]: Found transformer services : [mixin,fml]
[16:48:08] [main/DEBUG] [cp.mo.mo.TransformationServicesHandler/MODLAUNCHER]: Transformation services loading
[16:48:08] [main/DEBUG] [cp.mo.mo.TransformationServiceDecorator/MODLAUNCHER]: Loading service mixin
[16:48:08] [main/DEBUG] [cp.mo.mo.TransformationServiceDecorator/MODLAUNCHER]: Loaded service mixin
[16:48:08] [main/DEBUG] [cp.mo.mo.TransformationServiceDecorator/MODLAUNCHER]: Loading service fml
[16:48:08] [main/DEBUG] [ne.mi.fm.lo.LauncherVersion/CORE]: Found FMLLauncher version 1.0
[16:48:08] [main/DEBUG] [ne.mi.fm.lo.FMLLoader/CORE]: FML 1.0 loading
[16:48:08] [main/DEBUG] [ne.mi.fm.lo.FMLLoader/CORE]: FML found ModLauncher version : 10.0.8+10.0.8+main.0ef7e830
[16:48:08] [main/DEBUG] [ne.mi.fm.lo.FMLLoader/CORE]: FML found AccessTransformer version : 8.0.4+66+master.c09db6d7
[16:48:08] [main/DEBUG] [ne.mi.fm.lo.FMLLoader/CORE]: FML found EventBus version : 6.0.3+6.0.3+master.039e4ea9
[16:48:08] [main/DEBUG] [ne.mi.fm.lo.FMLLoader/CORE]: Found Runtime Dist Cleaner
[16:48:08] [main/DEBUG] [ne.mi.fm.lo.FMLLoader/CORE]: FML found CoreMod version : 5.0.1+15+master.dc5a2922
[16:48:08] [main/DEBUG] [ne.mi.fm.lo.FMLLoader/CORE]: Found ForgeSPI package implementation version 6.0.0+6.0.0+master.42474703
[16:48:08] [main/DEBUG] [ne.mi.fm.lo.FMLLoader/CORE]: Found ForgeSPI package specification 5
[16:48:08] [main/DEBUG] [cp.mo.mo.TransformationServiceDecorator/MODLAUNCHER]: Loaded service fml
[16:48:08] [main/DEBUG] [cp.mo.mo.TransformationServicesHandler/MODLAUNCHER]: Configuring option handling for services
[16:48:08] [main/DEBUG] [cp.mo.mo.TransformationServicesHandler/MODLAUNCHER]: Transformation services initializing
[16:48:08] [main/DEBUG] [cp.mo.mo.TransformationServiceDecorator/MODLAUNCHER]: Initializing transformation service mixin
[16:48:08] [main/DEBUG] [mixin/]: MixinService [ModLauncher] was successfully booted in cpw.mods.cl.ModuleClassLoader@d35dea7
[16:48:08] [main/INFO] [mixin/]: SpongePowered MIXIN Subsystem Version=0.8.5 Source=union:/home/yusuf/.gradle/caches/modules-2/files-2.1/org.spongepowered/mixin/0.8.5/9d1c0c3a304ae6697ecd477218fa61b850bf57fc/mixin-0.8.5.jar%23115!/ Service=ModLauncher Env=CLIENT
[16:48:08] [main/DEBUG] [mixin/]: Initialising Mixin Platform Manager
[16:48:08] [main/DEBUG] [mixin/]: Adding mixin platform agents for container ModLauncher Root Container(ModLauncher:4f56a0a2)
[16:48:08] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for ModLauncher Root Container(ModLauncher:4f56a0a2)
[16:48:08] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container ModLauncher Root Container(ModLauncher:4f56a0a2)
[16:48:08] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for ModLauncher Root Container(ModLauncher:4f56a0a2)
[16:48:08] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container ModLauncher Root Container(ModLauncher:4f56a0a2)
[16:48:08] [main/DEBUG] [cp.mo.mo.TransformationServiceDecorator/MODLAUNCHER]: Initialized transformation service mixin
[16:48:08] [main/DEBUG] [cp.mo.mo.TransformationServiceDecorator/MODLAUNCHER]: Initializing transformation service fml
[16:48:08] [main/DEBUG] [ne.mi.fm.lo.FMLServiceProvider/CORE]: Setting up basic FML game directories
[16:48:08] [main/DEBUG] [ne.mi.fm.lo.FileUtils/CORE]: Found existing GAMEDIR directory : /home/yusuf/IdeaProjects/Orangecraft/run
[16:48:08] [main/DEBUG] [ne.mi.fm.lo.FMLPaths/CORE]: Path GAMEDIR is /home/yusuf/IdeaProjects/Orangecraft/run
[16:48:08] [main/DEBUG] [ne.mi.fm.lo.FileUtils/CORE]: Found existing MODSDIR directory : /home/yusuf/IdeaProjects/Orangecraft/run/mods
[16:48:08] [main/DEBUG] [ne.mi.fm.lo.FMLPaths/CORE]: Path MODSDIR is /home/yusuf/IdeaProjects/Orangecraft/run/mods
[16:48:08] [main/DEBUG] [ne.mi.fm.lo.FileUtils/CORE]: Found existing CONFIGDIR directory : /home/yusuf/IdeaProjects/Orangecraft/run/config
[16:48:08] [main/DEBUG] [ne.mi.fm.lo.FMLPaths/CORE]: Path CONFIGDIR is /home/yusuf/IdeaProjects/Orangecraft/run/config
[16:48:08] [main/DEBUG] [ne.mi.fm.lo.FMLPaths/CORE]: Path FMLCONFIG is /home/yusuf/IdeaProjects/Orangecraft/run/config/fml.toml
[16:48:08] [main/DEBUG] [ne.mi.fm.lo.FMLServiceProvider/CORE]: Loading configuration
[16:48:08] [main/DEBUG] [ne.mi.fm.lo.FileUtils/CORE]: Found existing default config directory directory : /home/yusuf/IdeaProjects/Orangecraft/run/defaultconfigs
[16:48:08] [main/DEBUG] [ne.mi.fm.lo.FMLServiceProvider/CORE]: Preparing ModFile
[16:48:08] [main/DEBUG] [ne.mi.fm.lo.FMLServiceProvider/CORE]: Preparing launch handler
[16:48:08] [main/DEBUG] [ne.mi.fm.lo.FMLLoader/CORE]: Using forgeclientuserdev as launch service
[16:48:08] [main/DEBUG] [ne.mi.fm.lo.FMLLoader/CORE]: Received command line version data  : VersionInfo[forgeVersion=43.1.25, mcVersion=1.19.2, mcpVersion=20220805.130853, forgeGroup=net.minecraftforge]
[16:48:08] [main/DEBUG] [cp.mo.mo.TransformationServiceDecorator/MODLAUNCHER]: Initialized transformation service fml
[16:48:08] [main/DEBUG] [cp.mo.mo.NameMappingServiceHandler/MODLAUNCHER]: Current naming domain is 'mcp'
[16:48:08] [main/DEBUG] [cp.mo.mo.NameMappingServiceHandler/MODLAUNCHER]: Identified name mapping providers {srg=srgtomcp:1234}
[16:48:08] [main/DEBUG] [cp.mo.mo.TransformationServicesHandler/MODLAUNCHER]: Transformation services begin scanning
[16:48:08] [main/DEBUG] [cp.mo.mo.TransformationServiceDecorator/MODLAUNCHER]: Beginning scan trigger - transformation service mixin
[16:48:08] [main/DEBUG] [cp.mo.mo.TransformationServiceDecorator/MODLAUNCHER]: End scan trigger - transformation service mixin
[16:48:08] [main/DEBUG] [cp.mo.mo.TransformationServiceDecorator/MODLAUNCHER]: Beginning scan trigger - transformation service fml
[16:48:08] [main/DEBUG] [ne.mi.fm.lo.FMLServiceProvider/CORE]: Initiating mod scan
[16:48:08] [main/DEBUG] [ne.mi.fm.lo.mo.ModListHandler/CORE]: Found mod coordinates from lists: []
[16:48:08] [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)
[16:48:08] [main/DEBUG] [ne.mi.fm.lo.mo.ModDiscoverer/CORE]: Found Dependency Locators : (JarInJar:null)
[16:48:08] [main/DEBUG] [ne.mi.fm.lo.ta.CommonLaunchHandler/CORE]: Got mod coordinates orangecraft%%/home/yusuf/IdeaProjects/Orangecraft/build/resources/main:orangecraft%%/home/yusuf/IdeaProjects/Orangecraft/build/classes/java/main from env
[16:48:08] [main/DEBUG] [ne.mi.fm.lo.ta.CommonLaunchHandler/CORE]: Found supplied mod coordinates [{orangecraft=[/home/yusuf/IdeaProjects/Orangecraft/build/resources/main, /home/yusuf/IdeaProjects/Orangecraft/build/classes/java/main]}]
[16:48:08] [main/DEBUG] [ne.mi.fm.lo.mo.ModFileInfo/LOADING]: Found valid mod file forge-1.19.2-43.1.25_mapped_official_1.19.2-recomp.jar with {minecraft} mods - versions {1.19.2}
[16:48:08] [main/DEBUG] [ne.mi.fm.lo.mo.ModFileParser/LOADING]: Considering mod file candidate /home/yusuf/.gradle/caches/modules-2/files-2.1/net.minecraftforge/javafmllanguage/1.19.2-43.1.25/a1fbef6eacf8677dbdc2f463d7b2c47c8a371b02/javafmllanguage-1.19.2-43.1.25.jar
[16:48:08] [main/WARN] [ne.mi.fm.lo.mo.ModFileParser/LOADING]: Mod file /home/yusuf/.gradle/caches/modules-2/files-2.1/net.minecraftforge/javafmllanguage/1.19.2-43.1.25/a1fbef6eacf8677dbdc2f463d7b2c47c8a371b02/javafmllanguage-1.19.2-43.1.25.jar is missing mods.toml file
[16:48:08] [main/DEBUG] [ne.mi.fm.lo.mo.ModFileParser/LOADING]: Considering mod file candidate /home/yusuf/.gradle/caches/modules-2/files-2.1/net.minecraftforge/lowcodelanguage/1.19.2-43.1.25/3b7e0223837367cddcf29aaca7cb3d7e4b628b5c/lowcodelanguage-1.19.2-43.1.25.jar
[16:48:08] [main/WARN] [ne.mi.fm.lo.mo.ModFileParser/LOADING]: Mod file /home/yusuf/.gradle/caches/modules-2/files-2.1/net.minecraftforge/lowcodelanguage/1.19.2-43.1.25/3b7e0223837367cddcf29aaca7cb3d7e4b628b5c/lowcodelanguage-1.19.2-43.1.25.jar is missing mods.toml file
[16:48:08] [main/DEBUG] [ne.mi.fm.lo.mo.ModFileParser/LOADING]: Considering mod file candidate /home/yusuf/.gradle/caches/modules-2/files-2.1/net.minecraftforge/mclanguage/1.19.2-43.1.25/b86163b1e6cc1dda5607fbf9d3e2e776f99683fa/mclanguage-1.19.2-43.1.25.jar
[16:48:08] [main/WARN] [ne.mi.fm.lo.mo.ModFileParser/LOADING]: Mod file /home/yusuf/.gradle/caches/modules-2/files-2.1/net.minecraftforge/mclanguage/1.19.2-43.1.25/b86163b1e6cc1dda5607fbf9d3e2e776f99683fa/mclanguage-1.19.2-43.1.25.jar is missing mods.toml file
[16:48:08] [main/DEBUG] [ne.mi.fm.lo.mo.ModFileParser/LOADING]: Considering mod file candidate /home/yusuf/.gradle/caches/modules-2/files-2.1/net.minecraftforge/fmlcore/1.19.2-43.1.25/de5cf5b7c931cea68cd63e4ea511ce5b779f6c02/fmlcore-1.19.2-43.1.25.jar
[16:48:08] [main/WARN] [ne.mi.fm.lo.mo.ModFileParser/LOADING]: Mod file /home/yusuf/.gradle/caches/modules-2/files-2.1/net.minecraftforge/fmlcore/1.19.2-43.1.25/de5cf5b7c931cea68cd63e4ea511ce5b779f6c02/fmlcore-1.19.2-43.1.25.jar is missing mods.toml file
[16:48:08] [main/DEBUG] [ne.mi.fm.lo.mo.ModFileParser/LOADING]: Considering mod file candidate /home/yusuf/IdeaProjects/Orangecraft/build/resources/main
[16:48:08] [main/DEBUG] [ne.mi.fm.lo.mo.ModFileInfo/LOADING]: Found valid mod file main with {orangecraft} mods - versions {0.0NONE}
[16:48:08] [main/DEBUG] [ne.mi.fm.lo.mo.ModFileParser/LOADING]: Considering mod file candidate /
[16:48:08] [main/DEBUG] [ne.mi.fm.lo.mo.ModFileInfo/LOADING]: Found valid mod file  with {forge} mods - versions {43.1.25}
[16:48:08] [main/DEBUG] [ne.mi.fm.lo.mo.ModFileParser/LOADING]: Considering mod file candidate /home/yusuf/.gradle/caches/forge_gradle/minecraft_user_repo/net/minecraftforge/forge/1.19.2-43.1.25_mapped_official_1.19.2/forge-1.19.2-43.1.25_mapped_official_1.19.2.jar
[16:48:08] [main/DEBUG] [ne.mi.fm.lo.mo.ModFileInfo/LOADING]: Found valid mod file forge-1.19.2-43.1.25_mapped_official_1.19.2.jar with {forge} mods - versions {43.1.25}
[16:48:08] [main/DEBUG] [ne.mi.fm.lo.mo.ModFileParser/LOADING]: Considering mod file candidate /home/yusuf/.gradle/caches/forge_gradle/minecraft_user_repo/net/minecraftforge/forge/1.19.2-43.1.25_mapped_official_1.19.2/forge-1.19.2-43.1.25_mapped_official_1.19.2.jar
[16:48:08] [main/DEBUG] [ne.mi.fm.lo.mo.ModFileInfo/LOADING]: Found valid mod file forge-1.19.2-43.1.25_mapped_official_1.19.2.jar with {forge} mods - versions {43.1.25}
[16:48:08] [main/DEBUG] [ne.mi.fm.lo.UniqueModListBuilder/]: Found 3 mods for first modid forge, selecting most recent based on version data
[16:48:08] [main/DEBUG] [ne.mi.fm.lo.UniqueModListBuilder/]: Selected file  for modid forge with version 43.1.25
[16:48:08] [main/DEBUG] [ne.mi.fm.lo.mo.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF/jarjar/metadata.json from forge-1.19.2-43.1.25_mapped_official_1.19.2-recomp.jar, it does not contain dependency information.
[16:48:08] [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.
[16:48:08] [main/DEBUG] [ne.mi.fm.lo.mo.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF/jarjar/metadata.json from , it does not contain dependency information.
[16:48:08] [main/DEBUG] [ne.mi.fm.lo.mo.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF/jarjar/metadata.json from mclanguage-1.19.2-43.1.25.jar, it does not contain dependency information.
[16:48:08] [main/DEBUG] [ne.mi.fm.lo.mo.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF/jarjar/metadata.json from javafmllanguage-1.19.2-43.1.25.jar, it does not contain dependency information.
[16:48:08] [main/DEBUG] [ne.mi.fm.lo.mo.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF/jarjar/metadata.json from fmlcore-1.19.2-43.1.25.jar, it does not contain dependency information.
[16:48:08] [main/DEBUG] [ne.mi.fm.lo.mo.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF/jarjar/metadata.json from lowcodelanguage-1.19.2-43.1.25.jar, it does not contain dependency information.
[16:48:08] [main/INFO] [ne.mi.fm.lo.mo.JarInJarDependencyLocator/]: No dependencies to load found. Skipping!
[16:48:08] [main/DEBUG] [ne.mi.fm.lo.mo.ModFileInfo/LOADING]: Found valid mod file forge-1.19.2-43.1.25_mapped_official_1.19.2-recomp.jar with {minecraft} mods - versions {1.19.2}
[16:48:08] [main/DEBUG] [ne.mi.fm.lo.mo.ModFile/LOADING]: Loading mod file /home/yusuf/.gradle/caches/forge_gradle/minecraft_user_repo/net/minecraftforge/forge/1.19.2-43.1.25_mapped_official_1.19.2/forge-1.19.2-43.1.25_mapped_official_1.19.2-recomp.jar with languages [LanguageSpec[languageName=minecraft, acceptedVersions=1]]
[16:48:08] [main/DEBUG] [ne.mi.fm.lo.mo.ModFileParser/LOADING]: Considering mod file candidate /home/yusuf/IdeaProjects/Orangecraft/build/resources/main
[16:48:08] [main/DEBUG] [ne.mi.fm.lo.mo.ModFileInfo/LOADING]: Found valid mod file main with {orangecraft} mods - versions {0.0NONE}
[16:48:08] [main/DEBUG] [ne.mi.fm.lo.mo.ModFile/LOADING]: Loading mod file /home/yusuf/IdeaProjects/Orangecraft/build/resources/main with languages [LanguageSpec[languageName=javafml, acceptedVersions=[43,)]]
[16:48:08] [main/DEBUG] [ne.mi.fm.lo.mo.ModFileParser/LOADING]: Considering mod file candidate /
[16:48:08] [main/DEBUG] [ne.mi.fm.lo.mo.ModFileInfo/LOADING]: Found valid mod file  with {forge} mods - versions {43.1.25}
[16:48:08] [main/DEBUG] [ne.mi.fm.lo.mo.ModFile/LOADING]: Loading mod file / with languages [LanguageSpec[languageName=javafml, acceptedVersions=[24,]]]
[16:48:08] [main/DEBUG] [ne.mi.fm.lo.mo.ModFileParser/LOADING]: Found coremod field_to_method with Javascript path coremods/field_to_method.js
[16:48:08] [main/DEBUG] [ne.mi.fm.lo.mo.ModFileParser/LOADING]: Found coremod field_to_instanceof with Javascript path coremods/field_to_instanceof.js
[16:48:08] [main/DEBUG] [ne.mi.fm.lo.mo.ModFileParser/LOADING]: Found coremod add_bouncer_method with Javascript path coremods/add_bouncer_method.js
[16:48:08] [main/DEBUG] [ne.mi.fm.lo.mo.ModFile/LOADING]: Found coremod coremods/field_to_method.js
[16:48:08] [main/DEBUG] [ne.mi.fm.lo.mo.ModFile/LOADING]: Found coremod coremods/field_to_instanceof.js
[16:48:08] [main/DEBUG] [ne.mi.fm.lo.mo.ModFile/LOADING]: Found coremod coremods/add_bouncer_method.js
[16:48:08] [main/DEBUG] [cp.mo.mo.TransformationServiceDecorator/MODLAUNCHER]: End scan trigger - transformation service fml
[16:48:08] [main/DEBUG] [ne.mi.fm.lo.LanguageLoadingProvider/CORE]: Found 3 language providers
[16:48:08] [main/DEBUG] [ne.mi.fm.lo.LanguageLoadingProvider/CORE]: Found language provider minecraft, version 1.0
[16:48:08] [main/DEBUG] [ne.mi.fm.lo.LanguageLoadingProvider/CORE]: Found language provider lowcodefml, version 43
[16:48:08] [main/DEBUG] [ne.mi.fm.lo.LanguageLoadingProvider/CORE]: Found language provider javafml, version 43
[16:48:08] [main/DEBUG] [ne.mi.fm.lo.ModSorter/]: Configured system mods: [minecraft, forge]
[16:48:08] [main/DEBUG] [ne.mi.fm.lo.ModSorter/]: Found system mod: minecraft
[16:48:08] [main/DEBUG] [ne.mi.fm.lo.ModSorter/]: Found system mod: forge
[16:48:08] [main/DEBUG] [ne.mi.fm.lo.ModSorter/LOADING]: Found 2 mod requirements (2 mandatory, 0 optional)
[16:48:08] [main/DEBUG] [ne.mi.fm.lo.ModSorter/LOADING]: Found 0 mod requirements missing (0 mandatory, 0 optional)
[16:48:09] [main/DEBUG] [ne.mi.fm.lo.MCPNamingService/CORE]: Loaded 30289 method mappings from methods.csv
[16:48:09] [main/DEBUG] [ne.mi.fm.lo.MCPNamingService/CORE]: Loaded 28897 field mappings from fields.csv
[16:48:09] [main/DEBUG] [cp.mo.mo.TransformationServicesHandler/MODLAUNCHER]: Transformation services loading transformers
[16:48:09] [main/DEBUG] [cp.mo.mo.TransformationServiceDecorator/MODLAUNCHER]: Initializing transformers for transformation service mixin
[16:48:09] [main/DEBUG] [cp.mo.mo.TransformationServiceDecorator/MODLAUNCHER]: Initialized transformers for transformation service mixin
[16:48:09] [main/DEBUG] [cp.mo.mo.TransformationServiceDecorator/MODLAUNCHER]: Initializing transformers for transformation service fml
[16:48:09] [main/DEBUG] [ne.mi.fm.lo.FMLServiceProvider/CORE]: Loading coremod transformers
[16:48:09] [main/DEBUG] [ne.mi.co.CoreModEngine/COREMOD]: Loading CoreMod from coremods/field_to_method.js
[16:48:09] [main/DEBUG] [ne.mi.co.CoreModEngine/COREMOD]: CoreMod loaded successfully
[16:48:09] [main/DEBUG] [ne.mi.co.CoreModEngine/COREMOD]: Loading CoreMod from coremods/field_to_instanceof.js
[16:48:09] [main/DEBUG] [ne.mi.co.CoreModEngine/COREMOD]: CoreMod loaded successfully
[16:48:09] [main/DEBUG] [ne.mi.co.CoreModEngine/COREMOD]: Loading CoreMod from coremods/add_bouncer_method.js
[16:48:09] [main/DEBUG] [ne.mi.co.CoreModEngine/COREMOD]: CoreMod loaded successfully
[16:48:09] [main/DEBUG] [cp.mo.mo.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@3c91530d to Target : CLASS {Lnet/minecraft/world/level/biome/Biome;} {} {V}
[16:48:09] [main/DEBUG] [cp.mo.mo.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@34332b8d to Target : CLASS {Lnet/minecraft/world/level/levelgen/structure/Structure;} {} {V}
[16:48:09] [main/DEBUG] [cp.mo.mo.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@724b939e to Target : CLASS {Lnet/minecraft/world/effect/MobEffectInstance;} {} {V}
[16:48:09] [main/DEBUG] [cp.mo.mo.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@6f8aba08 to Target : CLASS {Lnet/minecraft/world/level/block/LiquidBlock;} {} {V}
[16:48:09] [main/DEBUG] [cp.mo.mo.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@7ff19c33 to Target : CLASS {Lnet/minecraft/world/item/BucketItem;} {} {V}
[16:48:09] [main/DEBUG] [cp.mo.mo.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@52b3bf03 to Target : CLASS {Lnet/minecraft/world/level/block/StairBlock;} {} {V}
[16:48:09] [main/DEBUG] [cp.mo.mo.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@7cca01a8 to Target : CLASS {Lnet/minecraft/world/level/block/FlowerPotBlock;} {} {V}
[16:48:09] [main/DEBUG] [cp.mo.mo.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@462abec3 to Target : CLASS {Lnet/minecraft/world/item/ItemStack;} {} {V}
[16:48:09] [main/DEBUG] [cp.mo.mo.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@35c9a231 to Target : CLASS {Lnet/minecraft/network/play/client/CClientSettingsPacket;} {} {V}
[16:48:09] [main/DEBUG] [cp.mo.mo.TransformationServiceDecorator/MODLAUNCHER]: Initialized transformers for transformation service fml
[16:48:09] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:ModLauncher Root Container(ModLauncher:4f56a0a2)]
[16:48:09] [main/DEBUG] [mixin/]: Processing launch tasks for PlatformAgent[MixinPlatformAgentDefault:ModLauncher Root Container(ModLauncher:4f56a0a2)]
[16:48:09] [main/DEBUG] [mixin/]: Adding mixin platform agents for container SecureJarResource(minecraft)
[16:48:09] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(minecraft)
[16:48:09] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(minecraft)
[16:48:09] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(minecraft)
[16:48:09] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container SecureJarResource(minecraft)
[16:48:09] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(minecraft)]
[16:48:09] [main/DEBUG] [mixin/]: Adding mixin platform agents for container SecureJarResource(orangecraft)
[16:48:09] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(orangecraft)
[16:48:09] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(orangecraft)
[16:48:09] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(orangecraft)
[16:48:09] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container SecureJarResource(orangecraft)
[16:48:09] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(orangecraft)]
[16:48:09] [main/DEBUG] [mixin/]: Adding mixin platform agents for container SecureJarResource(forge)
[16:48:09] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(forge)
[16:48:09] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(forge)
[16:48:09] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(forge)
[16:48:09] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container SecureJarResource(forge)
[16:48:09] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(forge)]
[16:48:09] [main/DEBUG] [mixin/]: inject() running with 4 agents
[16:48:09] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:ModLauncher Root Container(ModLauncher:4f56a0a2)]
[16:48:09] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(minecraft)]
[16:48:09] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(orangecraft)]
[16:48:09] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(forge)]
[16:48:09] [main/INFO] [cp.mo.mo.LaunchServiceHandler/MODLAUNCHER]: Launching target 'forgeclientuserdev' with arguments [--version, MOD_DEV, --gameDir, ., --assetsDir, /home/yusuf/.gradle/caches/forge_gradle/assets, --assetIndex, 1.19]
[16:48:09] [main/DEBUG] [mixin/]: Error cleaning class output directory: .mixin.out
[16:48:09] [main/DEBUG] [mixin/]: Preparing mixins for MixinEnvironment[DEFAULT]
[16:48:09] [main/DEBUG] [io.ne.ut.in.lo.InternalLoggerFactory/]: Using SLF4J as the default logging framework
[16:48:09] [main/DEBUG] [io.ne.ut.ResourceLeakDetector/]: -Dio.netty.leakDetection.level: simple
[16:48:09] [main/DEBUG] [io.ne.ut.ResourceLeakDetector/]: -Dio.netty.leakDetection.targetRecords: 4
[16:48:09] [main/DEBUG] [os.ut.FileUtil/]: No oshi.properties file found from ClassLoader cpw.mods.modlauncher.TransformingClassLoader@77c10a5f
[16:48:09] [main/DEBUG] [os.ut.FileUtil/]: Reading file /proc/cpuinfo
[16:48:09] [main/DEBUG] [os.ut.FileUtil/]: Reading file /proc/cpuinfo
[16:48:09] [main/DEBUG] [os.ut.FileUtil/]: No oshi.architecture.properties file found from ClassLoader cpw.mods.modlauncher.TransformingClassLoader@77c10a5f
[16:48:09] [main/DEBUG] [os.ut.FileUtil/]: Reading file /proc/meminfo
[16:48:09] [main/DEBUG] [os.ut.FileUtil/]: Reading file /proc/meminfo
[16:48:09] [pool-3-thread-1/DEBUG] [ne.mi.co.tr.CoreModBaseTransformer/COREMOD]: Transforming net/minecraft/world/level/levelgen/structure/Structure
[16:48:10] [pool-3-thread-1/DEBUG] [ne.mi.co.tr.CoreModBaseTransformer/COREMOD]: Transforming net/minecraft/world/level/block/LiquidBlock
[16:48:10] [pool-3-thread-1/DEBUG] [ne.mi.co.tr.CoreModBaseTransformer/COREMOD]: Transforming net/minecraft/world/level/block/StairBlock
[16:48:10] [pool-3-thread-1/DEBUG] [ne.mi.co.tr.CoreModBaseTransformer/COREMOD]: Transforming net/minecraft/world/level/block/FlowerPotBlock
[16:48:10] [pool-3-thread-1/DEBUG] [ne.mi.co.tr.CoreModBaseTransformer/COREMOD]: Transforming net/minecraft/world/item/ItemStack
[16:48:11] [pool-3-thread-1/INFO] [minecraft/DataFixers]: Building unoptimized datafixer
[16:48:11] [pool-3-thread-1/DEBUG] [ne.mi.co.tr.CoreModBaseTransformer/COREMOD]: Transforming net/minecraft/world/level/biome/Biome
[16:48:11] [pool-3-thread-1/DEBUG] [ne.mi.co.tr.CoreModBaseTransformer/COREMOD]: Transforming net/minecraft/world/item/BucketItem
[16:48:11] [pool-3-thread-1/DEBUG] [ne.mi.co.tr.CoreModBaseTransformer/COREMOD]: Transforming net/minecraft/world/effect/MobEffectInstance
[16:48:12] [Render thread/WARN] [minecraft/VanillaPackResources]: Assets URL 'union:/home/yusuf/.gradle/caches/forge_gradle/minecraft_user_repo/net/minecraftforge/forge/1.19.2-43.1.25_mapped_official_1.19.2/forge-1.19.2-43.1.25_mapped_official_1.19.2-recomp.jar%23180!/assets/.mcassetsroot' uses unexpected schema
[16:48:12] [Render thread/WARN] [minecraft/VanillaPackResources]: Assets URL 'union:/home/yusuf/.gradle/caches/forge_gradle/minecraft_user_repo/net/minecraftforge/forge/1.19.2-43.1.25_mapped_official_1.19.2/forge-1.19.2-43.1.25_mapped_official_1.19.2-recomp.jar%23180!/data/.mcassetsroot' uses unexpected schema
[16:48: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'
[16:48:12] [Render thread/INFO] [minecraft/Minecraft]: Setting user: Dev
[16:48:12] [Render thread/INFO] [minecraft/Minecraft]: Backend library: LWJGL version 3.3.1 build 7
[16:48:12] [Render thread/DEBUG] [os.ut.FileUtil/]: Reading file /proc/cpuinfo
[16:48:12] [Render thread/DEBUG] [os.ut.FileUtil/]: Reading file /proc/cpuinfo
[16:48:12] [Render thread/DEBUG] [ne.mi.co.ForgeI18n/CORE]: Loading I18N data entries: 5641
[16:48:12] [Render thread/DEBUG] [ne.mi.fm.ModWorkManager/LOADING]: Using 12 threads for parallel mod-loading
[16:48:12] [Render thread/DEBUG] [ne.mi.fm.ja.FMLJavaModLanguageProvider/LOADING]: Loading FMLModContainer from classloader cpw.mods.modlauncher.TransformingClassLoader@77c10a5f - got cpw.mods.cl.ModuleClassLoader@3ac04654
[16:48:12] [Render thread/DEBUG] [ne.mi.fm.ja.FMLModContainer/LOADING]: Creating FMLModContainer instance for com.mys.orangecraft.Orangecraft
[16:48:12] [Render thread/DEBUG] [ne.mi.fm.ja.FMLJavaModLanguageProvider/LOADING]: Loading FMLModContainer from classloader cpw.mods.modlauncher.TransformingClassLoader@77c10a5f - got cpw.mods.cl.ModuleClassLoader@3ac04654
[16:48:12] [Render thread/DEBUG] [ne.mi.fm.ja.FMLModContainer/LOADING]: Creating FMLModContainer instance for net.minecraftforge.common.ForgeMod
[16:48:12] [modloading-worker-0/DEBUG] [ne.mi.ve.fo.ForgeVersion/CORE]: Forge Version package package net.minecraftforge.versions.forge, Forge, version 43.1 from cpw.mods.modlauncher.TransformingClassLoader@77c10a5f
[16:48:12] [modloading-worker-0/DEBUG] [ne.mi.ve.fo.ForgeVersion/CORE]: Found Forge version 43.1.25
[16:48:12] [modloading-worker-0/DEBUG] [ne.mi.ve.fo.ForgeVersion/CORE]: Found Forge spec 43.1
[16:48:12] [modloading-worker-0/DEBUG] [ne.mi.ve.fo.ForgeVersion/CORE]: Found Forge group net.minecraftforge
[16:48:12] [modloading-worker-0/DEBUG] [ne.mi.ve.mc.MCPVersion/CORE]: MCP Version package package net.minecraftforge.versions.mcp, Minecraft, version 1.19.2 from cpw.mods.modlauncher.TransformingClassLoader@77c10a5f
[16:48:12] [modloading-worker-0/DEBUG] [ne.mi.ve.mc.MCPVersion/CORE]: Found MC version information 1.19.2
[16:48:12] [modloading-worker-0/DEBUG] [ne.mi.ve.mc.MCPVersion/CORE]: Found MCP version information 20220805.130853
[16:48:12] [modloading-worker-0/INFO] [ne.mi.co.ForgeMod/FORGEMOD]: Forge mod loading, version 43.1.25, for MC 1.19.2 with MCP 20220805.130853
[16:48:12] [modloading-worker-0/INFO] [ne.mi.co.MinecraftForge/FORGE]: MinecraftForge v43.1.25 Initialized
[16:48:12] [modloading-worker-0/DEBUG] [ne.mi.fm.ja.AutomaticEventSubscriber/LOADING]: Attempting to inject @EventBusSubscriber classes into the eventbus for orangecraft
[16:48:12] [modloading-worker-0/DEBUG] [ne.mi.fm.ja.AutomaticEventSubscriber/LOADING]: Auto-subscribing com.mys.orangecraft.Orangecraft$ClientModEvents to MOD
[16:48:12] [modloading-worker-0/DEBUG] [io.ne.ut.in.PlatformDependent0/]: -Dio.netty.noUnsafe: false
[16:48:12] [modloading-worker-0/DEBUG] [io.ne.ut.in.PlatformDependent0/]: Java version: 17
[16:48:12] [modloading-worker-0/DEBUG] [io.ne.ut.in.PlatformDependent0/]: sun.misc.Unsafe.theUnsafe: available
[16:48:12] [modloading-worker-0/DEBUG] [io.ne.ut.in.PlatformDependent0/]: sun.misc.Unsafe.copyMemory: available
[16:48:12] [modloading-worker-0/DEBUG] [io.ne.ut.in.PlatformDependent0/]: sun.misc.Unsafe.storeFence: available
[16:48:12] [modloading-worker-0/DEBUG] [io.ne.ut.in.PlatformDependent0/]: java.nio.Buffer.address: available
[16:48: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.77.Final.jar%23137!/:4.1.77.Final] {}
	at io.netty.util.internal.PlatformDependent0$5.run(PlatformDependent0.java:287) ~[netty-common-4.1.77.Final.jar%23137!/:4.1.77.Final] {}
	at java.security.AccessController.doPrivileged(AccessController.java:318) ~[?:?] {}
	at io.netty.util.internal.PlatformDependent0.<clinit>(PlatformDependent0.java:281) ~[netty-common-4.1.77.Final.jar%23137!/:4.1.77.Final] {}
	at io.netty.util.internal.PlatformDependent.isAndroid(PlatformDependent.java:294) ~[netty-common-4.1.77.Final.jar%23137!/:4.1.77.Final] {}
	at io.netty.util.internal.PlatformDependent.<clinit>(PlatformDependent.java:88) ~[netty-common-4.1.77.Final.jar%23137!/:4.1.77.Final] {}
	at io.netty.util.ConstantPool.<init>(ConstantPool.java:34) ~[netty-common-4.1.77.Final.jar%23137!/:4.1.77.Final] {}
	at io.netty.util.AttributeKey$1.<init>(AttributeKey.java:27) ~[netty-common-4.1.77.Final.jar%23137!/:4.1.77.Final] {}
	at io.netty.util.AttributeKey.<clinit>(AttributeKey.java:27) ~[netty-common-4.1.77.Final.jar%23137!/:4.1.77.Final] {}
	at net.minecraftforge.network.NetworkConstants.<clinit>(NetworkConstants.java:34) ~[forge-1.19.2-43.1.25_mapped_official_1.19.2-recomp.jar%23179%23186!/:?] {re:classloading}
	at net.minecraftforge.common.ForgeMod.<init>(ForgeMod.java:436) ~[forge-1.19.2-43.1.25_mapped_official_1.19.2-recomp.jar%23179%23186!/:?] {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:68) ~[javafmllanguage-1.19.2-43.1.25.jar%23181!/:?] {}
	at net.minecraftforge.fml.ModContainer.lambda$buildTransitionHandler$10(ModContainer.java:121) ~[fmlcore-1.19.2-43.1.25.jar%23184!/:?] {}
	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) [?:?] {}
[16:48:12] [modloading-worker-0/DEBUG] [io.ne.ut.in.PlatformDependent0/]: java.nio.Bits.unaligned: available, true
[16:48: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:409) ~[netty-common-4.1.77.Final.jar%23137!/:4.1.77.Final] {}
	at java.security.AccessController.doPrivileged(AccessController.java:318) ~[?:?] {}
	at io.netty.util.internal.PlatformDependent0.<clinit>(PlatformDependent0.java:400) ~[netty-common-4.1.77.Final.jar%23137!/:4.1.77.Final] {}
	at io.netty.util.internal.PlatformDependent.isAndroid(PlatformDependent.java:294) ~[netty-common-4.1.77.Final.jar%23137!/:4.1.77.Final] {}
	at io.netty.util.internal.PlatformDependent.<clinit>(PlatformDependent.java:88) ~[netty-common-4.1.77.Final.jar%23137!/:4.1.77.Final] {}
	at io.netty.util.ConstantPool.<init>(ConstantPool.java:34) ~[netty-common-4.1.77.Final.jar%23137!/:4.1.77.Final] {}
	at io.netty.util.AttributeKey$1.<init>(AttributeKey.java:27) ~[netty-common-4.1.77.Final.jar%23137!/:4.1.77.Final] {}
	at io.netty.util.AttributeKey.<clinit>(AttributeKey.java:27) ~[netty-common-4.1.77.Final.jar%23137!/:4.1.77.Final] {}
	at net.minecraftforge.network.NetworkConstants.<clinit>(NetworkConstants.java:34) ~[forge-1.19.2-43.1.25_mapped_official_1.19.2-recomp.jar%23179%23186!/:?] {re:classloading}
	at net.minecraftforge.common.ForgeMod.<init>(ForgeMod.java:436) ~[forge-1.19.2-43.1.25_mapped_official_1.19.2-recomp.jar%23179%23186!/:?] {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:68) ~[javafmllanguage-1.19.2-43.1.25.jar%23181!/:?] {}
	at net.minecraftforge.fml.ModContainer.lambda$buildTransitionHandler$10(ModContainer.java:121) ~[fmlcore-1.19.2-43.1.25.jar%23184!/:?] {}
	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) [?:?] {}
[16:48:12] [modloading-worker-0/DEBUG] [io.ne.ut.in.PlatformDependent0/]: java.nio.DirectByteBuffer.<init>(long, int): unavailable
[16:48:12] [modloading-worker-0/DEBUG] [io.ne.ut.in.PlatformDependent/]: sun.misc.Unsafe: available
[16:48:12] [modloading-worker-0/DEBUG] [io.ne.ut.in.PlatformDependent/]: maxDirectMemory: 4007657472 bytes (maybe)
[16:48:12] [modloading-worker-0/DEBUG] [io.ne.ut.in.PlatformDependent/]: -Dio.netty.tmpdir: /tmp (java.io.tmpdir)
[16:48:12] [modloading-worker-0/DEBUG] [io.ne.ut.in.PlatformDependent/]: -Dio.netty.bitMode: 64 (sun.arch.data.model)
[16:48:12] [modloading-worker-0/DEBUG] [io.ne.ut.in.PlatformDependent/]: -Dio.netty.maxDirectMemory: -1 bytes
[16:48:12] [modloading-worker-0/DEBUG] [io.ne.ut.in.PlatformDependent/]: -Dio.netty.uninitializedArrayAllocationThreshold: -1
[16:48:12] [modloading-worker-0/DEBUG] [io.ne.ut.in.CleanerJava9/]: java.nio.ByteBuffer.cleaner(): available
[16:48:12] [modloading-worker-0/DEBUG] [io.ne.ut.in.PlatformDependent/]: -Dio.netty.noPreferDirect: false
[16:48:12] [modloading-worker-0/DEBUG] [ne.mi.co.ForgeMod/FORGEMOD]: Loading Network data for FML net version: FML3
[16:48:12] [modloading-worker-0/DEBUG] [ne.mi.fm.co.ConfigTracker/CONFIG]: Config file forge-client.toml for forge tracking
[16:48:12] [modloading-worker-0/DEBUG] [ne.mi.fm.co.ConfigTracker/CONFIG]: Config file forge-server.toml for forge tracking
[16:48:12] [modloading-worker-0/DEBUG] [ne.mi.fm.co.ConfigTracker/CONFIG]: Config file forge-common.toml for forge tracking
[16:48:12] [modloading-worker-0/DEBUG] [ne.mi.fm.ja.AutomaticEventSubscriber/LOADING]: Attempting to inject @EventBusSubscriber classes into the eventbus for forge
[16:48:12] [modloading-worker-0/DEBUG] [ne.mi.fm.ja.AutomaticEventSubscriber/LOADING]: Auto-subscribing net.minecraftforge.common.ForgeSpawnEggItem$CommonHandler to MOD
[16:48:12] [modloading-worker-0/DEBUG] [ne.mi.fm.ja.AutomaticEventSubscriber/LOADING]: Auto-subscribing net.minecraftforge.common.ForgeSpawnEggItem$ColorRegisterHandler to MOD
[16:48:12] [modloading-worker-0/DEBUG] [ne.mi.fm.ja.AutomaticEventSubscriber/LOADING]: Auto-subscribing net.minecraftforge.client.model.data.ModelDataManager to FORGE
[16:48:12] [modloading-worker-0/DEBUG] [ne.mi.fm.ja.AutomaticEventSubscriber/LOADING]: Auto-subscribing net.minecraftforge.client.ForgeHooksClient$ClientEvents to MOD
[16:48:12] [modloading-worker-0/DEBUG] [ne.mi.fm.ja.AutomaticEventSubscriber/LOADING]: Auto-subscribing net.minecraftforge.client.ClientForgeMod to MOD
[16:48:12] [Render thread/DEBUG] [ne.mi.co.ca.CapabilityManager/CAPABILITIES]: Attempting to automatically register: Lnet/minecraftforge/energy/IEnergyStorage;
[16:48:12] [Render thread/DEBUG] [ne.mi.co.ca.CapabilityManager/CAPABILITIES]: Attempting to automatically register: Lnet/minecraftforge/fluids/capability/IFluidHandler;
[16:48:12] [Render thread/DEBUG] [ne.mi.co.ca.CapabilityManager/CAPABILITIES]: Attempting to automatically register: Lnet/minecraftforge/fluids/capability/IFluidHandlerItem;
[16:48:12] [Render thread/DEBUG] [ne.mi.co.ca.CapabilityManager/CAPABILITIES]: Attempting to automatically register: Lnet/minecraftforge/items/IItemHandler;
[16:48:12] [Render thread/DEBUG] [ne.mi.cl.lo.ClientModLoader/CORE]: Generating PackInfo named mod:orangecraft for mod file /home/yusuf/IdeaProjects/Orangecraft/build/resources/main
[16:48:12] [Render thread/DEBUG] [ne.mi.cl.lo.ClientModLoader/CORE]: Generating PackInfo named mod:forge for mod file /
[ALSOFT] (EE) Failed to set real-time priority for thread: Operation not permitted (1)
[16:48:13] [Render thread/INFO] [ne.mi.ga.ForgeGameTestHooks/]: Enabled Gametest Namespaces: [orangecraft]
[16:48:13] [Render thread/WARN] [mojang/NarratorLinux]: ERROR : Couldn't load Narrator library
java.lang.UnsatisfiedLinkError: libflite.so.1: cannot open shared object file: No such file or directory
	at com.sun.jna.Native.open(Native Method) ~[jna-platform-5.10.0.jar%23120!/:5.10.0 (b0)] {}
	at com.sun.jna.NativeLibrary.loadLibrary(NativeLibrary.java:277) ~[jna-platform-5.10.0.jar%23120!/:5.10.0 (b0)] {}
	at com.sun.jna.NativeLibrary.getInstance(NativeLibrary.java:461) ~[jna-platform-5.10.0.jar%23120!/:5.10.0 (b0)] {}
	at com.sun.jna.NativeLibrary.getInstance(NativeLibrary.java:403) ~[jna-platform-5.10.0.jar%23120!/:5.10.0 (b0)] {}
	at com.mojang.text2speech.NarratorLinux.<clinit>(NarratorLinux.java:18) ~[text2speech-1.13.9.jar%23167!/:?] {}
	at com.mojang.text2speech.Narrator.getNarrator(Narrator.java:21) ~[text2speech-1.13.9.jar%23167!/:?] {}
	at net.minecraft.client.GameNarrator.<init>(GameNarrator.java:20) ~[forge-1.19.2-43.1.25_mapped_official_1.19.2-recomp.jar%23180!/:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.Minecraft.<init>(Minecraft.java:570) ~[forge-1.19.2-43.1.25_mapped_official_1.19.2-recomp.jar%23180!/:?] {re:classloading,pl:accesstransformer:B,pl:runtimedistcleaner:A}
	at net.minecraft.client.main.Main.run(Main.java:176) ~[forge-1.19.2-43.1.25_mapped_official_1.19.2-recomp.jar%23180!/:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.main.Main.main(Main.java:51) ~[forge-1.19.2-43.1.25_mapped_official_1.19.2-recomp.jar%23180!/:?] {re:classloading,pl:runtimedistcleaner:A}
	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.ForgeClientUserdevLaunchHandler.lambda$launchService$0(ForgeClientUserdevLaunchHandler.java:25) ~[fmlloader-1.19.2-43.1.25.jar%2390!/:?] {}
	at cpw.mods.modlauncher.LaunchServiceHandlerDecorator.launch(LaunchServiceHandlerDecorator.java:30) [modlauncher-10.0.8.jar%23103!/:?] {}
	at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:53) [modlauncher-10.0.8.jar%23103!/:?] {}
	at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:71) [modlauncher-10.0.8.jar%23103!/:?] {}
	at cpw.mods.modlauncher.Launcher.run(Launcher.java:106) [modlauncher-10.0.8.jar%23103!/:?] {}
	at cpw.mods.modlauncher.Launcher.main(Launcher.java:77) [modlauncher-10.0.8.jar%23103!/:?] {}
	at cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:26) [modlauncher-10.0.8.jar%23103!/:?] {}
	at cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:23) [modlauncher-10.0.8.jar%23103!/:?] {}
	at cpw.mods.bootstraplauncher.BootstrapLauncher.main(BootstrapLauncher.java:141) [bootstraplauncher-1.1.2.jar:?] {}
[16:48:13] [Render thread/INFO] [minecraft/ReloadableResourceManager]: Reloading ResourceManager: Default, Mod Resources
[16:48:13] [modloading-worker-0/DEBUG] [ne.mi.fm.co.ConfigTracker/CONFIG]: Loading configs type CLIENT
[16:48:13] [modloading-worker-0/DEBUG] [ne.mi.fm.co.ConfigFileTypeHandler/CONFIG]: Built TOML config for /home/yusuf/IdeaProjects/Orangecraft/run/config/forge-client.toml
[16:48:13] [modloading-worker-0/DEBUG] [ne.mi.fm.co.ConfigFileTypeHandler/CONFIG]: Loaded TOML config file /home/yusuf/IdeaProjects/Orangecraft/run/config/forge-client.toml
[16:48:13] [modloading-worker-0/DEBUG] [ne.mi.fm.co.ConfigFileTypeHandler/CONFIG]: Watching TOML config file /home/yusuf/IdeaProjects/Orangecraft/run/config/forge-client.toml for changes
[16:48:13] [modloading-worker-0/DEBUG] [ne.mi.co.ForgeConfig/FORGEMOD]: Loaded forge config file forge-client.toml
[16:48:13] [Thread-0/DEBUG] [ne.mi.fm.co.ConfigFileTypeHandler/CONFIG]: Config file forge-client.toml changed, sending notifies
[16:48:13] [modloading-worker-0/DEBUG] [ne.mi.fm.co.ConfigTracker/CONFIG]: Loading configs type COMMON
[16:48:13] [modloading-worker-0/DEBUG] [ne.mi.fm.co.ConfigFileTypeHandler/CONFIG]: Built TOML config for /home/yusuf/IdeaProjects/Orangecraft/run/config/forge-common.toml
[16:48:13] [Thread-0/DEBUG] [ne.mi.co.ForgeConfig/FORGEMOD]: Forge config just got changed on the file system!
[16:48:13] [modloading-worker-0/DEBUG] [ne.mi.fm.co.ConfigFileTypeHandler/CONFIG]: Loaded TOML config file /home/yusuf/IdeaProjects/Orangecraft/run/config/forge-common.toml
[16:48:13] [modloading-worker-0/DEBUG] [ne.mi.fm.co.ConfigFileTypeHandler/CONFIG]: Watching TOML config file /home/yusuf/IdeaProjects/Orangecraft/run/config/forge-common.toml for changes
[16:48:13] [Thread-0/DEBUG] [ne.mi.fm.co.ConfigFileTypeHandler/CONFIG]: Config file forge-client.toml changed, sending notifies
[16:48:13] [Thread-0/DEBUG] [ne.mi.co.ForgeConfig/FORGEMOD]: Forge config just got changed on the file system!
[16:48:13] [modloading-worker-0/DEBUG] [ne.mi.co.ForgeConfig/FORGEMOD]: Loaded forge config file forge-common.toml
[16:48:13] [Thread-0/DEBUG] [ne.mi.fm.co.ConfigFileTypeHandler/CONFIG]: Config file forge-common.toml changed, sending notifies
[16:48:13] [Thread-0/DEBUG] [ne.mi.co.ForgeConfig/FORGEMOD]: Forge config just got changed on the file system!
[16:48:13] [Thread-0/DEBUG] [ne.mi.fm.co.ConfigFileTypeHandler/CONFIG]: Config file forge-common.toml changed, sending notifies
[16:48:13] [Thread-0/DEBUG] [ne.mi.co.ForgeConfig/FORGEMOD]: Forge config just got changed on the file system!
[16:48:13] [Worker-Main-1/INFO] [co.my.or.Orangecraft/]: HELLO FROM COMMON SETUP
[16:48:13] [Worker-Main-1/INFO] [co.my.or.Orangecraft/]: DIRT BLOCK >> minecraft:dirt
[16:48:13] [Worker-Main-8/INFO] [co.my.or.Orangecraft/]: HELLO FROM CLIENT SETUP
[16:48:13] [Worker-Main-8/INFO] [co.my.or.Orangecraft/]: MINECRAFT NAME >> Dev
[16:48:13] [Forge Version Check/INFO] [ne.mi.fm.VersionChecker/]: [forge] Starting version check at https://files.minecraftforge.net/net/minecraftforge/forge/promotions_slim.json
[16:48:14] [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.39",
    "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-latest": "40.1.80",
    "1.18.2-recommended": "40.1.0",
    "1.19-latest": "41.1.0",
    "1.19-recommended": "41.1.0",
    "1.19.1-latest": "42.0.9",
    "1.19.2-recommended": "43.1.1",
    "1.19.2-latest": "43.1.30"
  }
}
[16:48:14] [Forge Version Check/INFO] [ne.mi.fm.VersionChecker/]: [forge] Found status: OUTDATED Current: 43.1.25 Target: 43.1.30
[16:48:15] [Render thread/DEBUG] [ne.mi.co.ForgeI18n/CORE]: Loading I18N data entries: 5881
[16:48:15] [Render thread/WARN] [minecraft/SoundEngine]: Missing sound for event: minecraft:item.goat_horn.play
[16:48:15] [Render thread/WARN] [minecraft/SoundEngine]: Missing sound for event: minecraft:entity.goat.screaming.horn_break
[ALSOFT] (EE) Failed to set real-time priority for thread: Operation not permitted (1)
[16:48:15] [Render thread/INFO] [mojang/Library]: OpenAL initialized on device Family 17h/19h HD Audio Controller (PRIME B450M-A Motherboard) Analog Stereo
[16:48:15] [Render thread/INFO] [minecraft/SoundEngine]: Sound engine started
[16:48:15] [Render thread/INFO] [minecraft/TextureAtlas]: Created: 1024x512x4 minecraft:textures/atlas/blocks.png-atlas
[16:48:15] [Render thread/INFO] [minecraft/TextureAtlas]: Created: 256x128x4 minecraft:textures/atlas/signs.png-atlas
[16:48:15] [Render thread/INFO] [minecraft/TextureAtlas]: Created: 512x512x4 minecraft:textures/atlas/banner_patterns.png-atlas
[16:48:15] [Render thread/INFO] [minecraft/TextureAtlas]: Created: 512x512x4 minecraft:textures/atlas/shield_patterns.png-atlas
[16:48:15] [Render thread/INFO] [minecraft/TextureAtlas]: Created: 256x256x4 minecraft:textures/atlas/chest.png-atlas
[16:48:15] [Render thread/INFO] [minecraft/TextureAtlas]: Created: 512x256x4 minecraft:textures/atlas/beds.png-atlas
[16:48:15] [Render thread/INFO] [minecraft/TextureAtlas]: Created: 512x256x4 minecraft:textures/atlas/shulker_boxes.png-atlas
[16:48:15] [Render thread/WARN] [minecraft/ShaderInstance]: Shader rendertype_entity_translucent_emissive could not find sampler named Sampler2 in the specified shader program.
[16:48:16] [Render thread/INFO] [minecraft/TextureAtlas]: Created: 256x256x0 minecraft:textures/atlas/particles.png-atlas
[16:48:16] [Render thread/INFO] [minecraft/TextureAtlas]: Created: 256x256x0 minecraft:textures/atlas/paintings.png-atlas
[16:48:16] [Render thread/INFO] [minecraft/TextureAtlas]: Created: 128x128x0 minecraft:textures/atlas/mob_effects.png-atlas
[16:48:17] [Realms Notification Availability checker #1/INFO] [mojang/RealmsClient]: Could not authorize you against Realms server: Invalid session id
[16:48:20] [Render thread/DEBUG] [ne.mi.se.ServerLifecycleHooks/CORE]: Generating PackInfo named mod:orangecraft for mod file /home/yusuf/IdeaProjects/Orangecraft/build/resources/main
[16:48:20] [Render thread/DEBUG] [ne.mi.se.ServerLifecycleHooks/CORE]: Generating PackInfo named mod:forge for mod file /
[16:48:20] [Worker-Main-4/DEBUG] [ne.mi.re.ResourceCacheManager$NamespacedResourceCacheManager/]: Failed to cache resources, the directory does not exist!
cpw.mods.niofs.union.UnionFileSystem$NoSuchFileException: /data/realms
[16:48:20] [Worker-Main-6/DEBUG] [ne.mi.re.ResourceCacheManager$NamespacedResourceCacheManager/]: Failed to cache resources, the directory does not exist!
cpw.mods.niofs.union.UnionFileSystem$NoSuchFileException: /assets/minecraft
[16:48:20] [Worker-Main-4/DEBUG] [ne.mi.re.ResourceCacheManager$NamespacedResourceCacheManager/]: Failed to cache resources, the directory does not exist!
cpw.mods.niofs.union.UnionFileSystem$NoSuchFileException: /assets/minecraft
[16:48:20] [Worker-Main-4/DEBUG] [ne.mi.re.ResourceCacheManager$NamespacedResourceCacheManager/]: Failed to cache resources, the directory does not exist!
cpw.mods.niofs.union.UnionFileSystem$NoSuchFileException: /assets/minecraft
[16:48:20] [Worker-Main-6/DEBUG] [ne.mi.re.ResourceCacheManager$NamespacedResourceCacheManager/]: Failed to cache resources, the directory does not exist!
cpw.mods.niofs.union.UnionFileSystem$NoSuchFileException: /assets/minecraft
[16:48:20] [Render thread/INFO] [minecraft/RecipeManager]: Loaded 7 recipes
[16:48:20] [Render thread/INFO] [minecraft/AdvancementList]: Loaded 1179 advancements
[16:48:21] [Render thread/DEBUG] [ne.mi.se.ServerLifecycleHooks/CORE]: Generating PackInfo named mod:orangecraft for mod file /home/yusuf/IdeaProjects/Orangecraft/build/resources/main
[16:48:21] [Render thread/DEBUG] [ne.mi.se.ServerLifecycleHooks/CORE]: Generating PackInfo named mod:forge for mod file /
[16:48:21] [Render thread/DEBUG] [ne.mi.se.ServerLifecycleHooks/CORE]: Generating PackInfo named mod:orangecraft for mod file /home/yusuf/IdeaProjects/Orangecraft/build/resources/main
[16:48:21] [Render thread/DEBUG] [ne.mi.se.ServerLifecycleHooks/CORE]: Generating PackInfo named mod:forge for mod file /
[16:48:21] [Worker-Main-3/DEBUG] [ne.mi.re.ResourceCacheManager$NamespacedResourceCacheManager/]: Failed to cache resources, the directory does not exist!
cpw.mods.niofs.union.UnionFileSystem$NoSuchFileException: /assets/minecraft
[16:48:21] [Worker-Main-7/DEBUG] [ne.mi.re.ResourceCacheManager$NamespacedResourceCacheManager/]: Failed to cache resources, the directory does not exist!
cpw.mods.niofs.union.UnionFileSystem$NoSuchFileException: /assets/minecraft
[16:48:21] [Worker-Main-2/DEBUG] [ne.mi.re.ResourceCacheManager$NamespacedResourceCacheManager/]: Failed to cache resources, the directory does not exist!
cpw.mods.niofs.union.UnionFileSystem$NoSuchFileException: /assets/minecraft
[16:48:21] [Worker-Main-11/DEBUG] [ne.mi.re.ResourceCacheManager$NamespacedResourceCacheManager/]: Failed to cache resources, the directory does not exist!
cpw.mods.niofs.union.UnionFileSystem$NoSuchFileException: /assets/minecraft
[16:48:21] [Render thread/WARN] [minecraft/CreateWorldScreen]: Failed to validate datapack
java.util.concurrent.CompletionException: java.lang.IllegalStateException: Unbound values in registry ResourceKey[minecraft:root / minecraft:worldgen/placed_feature]: [orangecraft:dolerite]
	at java.util.concurrent.CompletableFuture.encodeThrowable(CompletableFuture.java:332) ~[?:?] {}
	at java.util.concurrent.CompletableFuture.uniAcceptNow(CompletableFuture.java:747) ~[?:?] {}
	at java.util.concurrent.CompletableFuture.uniAcceptStage(CompletableFuture.java:735) ~[?:?] {}
	at java.util.concurrent.CompletableFuture.thenAcceptAsync(CompletableFuture.java:2191) ~[?:?] {}
	at net.minecraft.client.gui.screens.worldselection.CreateWorldScreen.tryApplyNewDataPacks(CreateWorldScreen.java:472) ~[forge-1.19.2-43.1.25_mapped_official_1.19.2-recomp.jar%23180!/:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.gui.screens.worldselection.CreateWorldScreen.openFresh(CreateWorldScreen.java:128) ~[forge-1.19.2-43.1.25_mapped_official_1.19.2-recomp.jar%23180!/:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.gui.screens.worldselection.SelectWorldScreen.lambda$init$2(SelectWorldScreen.java:56) ~[forge-1.19.2-43.1.25_mapped_official_1.19.2-recomp.jar%23180!/:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.gui.components.Button.onPress(Button.java:32) ~[forge-1.19.2-43.1.25_mapped_official_1.19.2-recomp.jar%23180!/:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.gui.components.AbstractButton.onClick(AbstractButton.java:17) ~[forge-1.19.2-43.1.25_mapped_official_1.19.2-recomp.jar%23180!/:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.gui.components.AbstractWidget.mouseClicked(AbstractWidget.java:110) ~[forge-1.19.2-43.1.25_mapped_official_1.19.2-recomp.jar%23180!/:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.gui.components.events.ContainerEventHandler.mouseClicked(ContainerEventHandler.java:28) ~[forge-1.19.2-43.1.25_mapped_official_1.19.2-recomp.jar%23180!/:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.MouseHandler.lambda$onPress$0(MouseHandler.java:88) ~[forge-1.19.2-43.1.25_mapped_official_1.19.2-recomp.jar%23180!/:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.gui.screens.Screen.wrapScreenError(Screen.java:522) ~[forge-1.19.2-43.1.25_mapped_official_1.19.2-recomp.jar%23180!/:?] {re:classloading,pl:accesstransformer:B,pl:runtimedistcleaner:A}
	at net.minecraft.client.MouseHandler.onPress(MouseHandler.java:85) ~[forge-1.19.2-43.1.25_mapped_official_1.19.2-recomp.jar%23180!/:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.MouseHandler.lambda$setup$4(MouseHandler.java:185) ~[forge-1.19.2-43.1.25_mapped_official_1.19.2-recomp.jar%23180!/:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.util.thread.BlockableEventLoop.execute(BlockableEventLoop.java:90) ~[forge-1.19.2-43.1.25_mapped_official_1.19.2-recomp.jar%23180!/:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.client.MouseHandler.lambda$setup$5(MouseHandler.java:184) ~[forge-1.19.2-43.1.25_mapped_official_1.19.2-recomp.jar%23180!/:?] {re:classloading,pl:runtimedistcleaner:A}
	at org.lwjgl.glfw.GLFWMouseButtonCallbackI.callback(GLFWMouseButtonCallbackI.java:43) ~[lwjgl-glfw-3.3.1.jar%23159!/:build 7] {}
	at org.lwjgl.system.JNI.invokeV(Native Method) ~[lwjgl-3.3.1.jar%23165!/:build 7] {}
	at org.lwjgl.glfw.GLFW.glfwWaitEventsTimeout(GLFW.java:3474) ~[lwjgl-glfw-3.3.1.jar%23159!/:build 7] {}
	at com.mojang.blaze3d.systems.RenderSystem.limitDisplayFPS(RenderSystem.java:187) ~[forge-1.19.2-43.1.25_mapped_official_1.19.2-recomp.jar%23180!/:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.Minecraft.runTick(Minecraft.java:1146) ~[forge-1.19.2-43.1.25_mapped_official_1.19.2-recomp.jar%23180!/:?] {re:classloading,pl:accesstransformer:B,pl:runtimedistcleaner:A}
	at net.minecraft.client.Minecraft.run(Minecraft.java:700) ~[forge-1.19.2-43.1.25_mapped_official_1.19.2-recomp.jar%23180!/:?] {re:classloading,pl:accesstransformer:B,pl:runtimedistcleaner:A}
	at net.minecraft.client.main.Main.run(Main.java:212) ~[forge-1.19.2-43.1.25_mapped_official_1.19.2-recomp.jar%23180!/:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.main.Main.main(Main.java:51) ~[forge-1.19.2-43.1.25_mapped_official_1.19.2-recomp.jar%23180!/:?] {re:classloading,pl:runtimedistcleaner:A}
	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.ForgeClientUserdevLaunchHandler.lambda$launchService$0(ForgeClientUserdevLaunchHandler.java:25) ~[fmlloader-1.19.2-43.1.25.jar%2390!/:?] {}
	at cpw.mods.modlauncher.LaunchServiceHandlerDecorator.launch(LaunchServiceHandlerDecorator.java:30) [modlauncher-10.0.8.jar%23103!/:?] {}
	at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:53) [modlauncher-10.0.8.jar%23103!/:?] {}
	at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:71) [modlauncher-10.0.8.jar%23103!/:?] {}
	at cpw.mods.modlauncher.Launcher.run(Launcher.java:106) [modlauncher-10.0.8.jar%23103!/:?] {}
	at cpw.mods.modlauncher.Launcher.main(Launcher.java:77) [modlauncher-10.0.8.jar%23103!/:?] {}
	at cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:26) [modlauncher-10.0.8.jar%23103!/:?] {}
	at cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:23) [modlauncher-10.0.8.jar%23103!/:?] {}
	at cpw.mods.bootstraplauncher.BootstrapLauncher.main(BootstrapLauncher.java:141) [bootstraplauncher-1.1.2.jar:?] {}
Caused by: java.lang.IllegalStateException: Unbound values in registry ResourceKey[minecraft:root / minecraft:worldgen/placed_feature]: [orangecraft:dolerite]
	at net.minecraft.core.MappedRegistry.freeze(MappedRegistry.java:330) ~[forge-1.19.2-43.1.25_mapped_official_1.19.2-recomp.jar%23180!/:?] {re:classloading}
	at net.minecraft.core.RegistryAccess$RegistryEntry.freeze(RegistryAccess.java:289) ~[forge-1.19.2-43.1.25_mapped_official_1.19.2-recomp.jar%23180!/:?] {re:classloading}
	at java.util.stream.ReferencePipeline$3$1.accept(ReferencePipeline.java:197) ~[?:?] {}
	at java.util.stream.ReferencePipeline$3$1.accept(ReferencePipeline.java:197) ~[?:?] {}
	at java.util.HashMap$EntrySpliterator.forEachRemaining(HashMap.java:1850) ~[?:?] {}
	at java.util.stream.AbstractPipeline.copyInto(AbstractPipeline.java:509) ~[?:?] {}
	at java.util.stream.AbstractPipeline.wrapAndCopyInto(AbstractPipeline.java:499) ~[?:?] {}
	at java.util.stream.ReduceOps$ReduceOp.evaluateSequential(ReduceOps.java:921) ~[?:?] {}
	at java.util.stream.AbstractPipeline.evaluate(AbstractPipeline.java:234) ~[?:?] {}
	at java.util.stream.ReferencePipeline.collect(ReferencePipeline.java:682) ~[?:?] {}
	at net.minecraft.core.RegistryAccess$ImmutableRegistryAccess.<init>(RegistryAccess.java:255) ~[forge-1.19.2-43.1.25_mapped_official_1.19.2-recomp.jar%23180!/:?] {re:classloading}
	at net.minecraft.core.RegistryAccess.freeze(RegistryAccess.java:232) ~[forge-1.19.2-43.1.25_mapped_official_1.19.2-recomp.jar%23180!/:?] {re:classloading}
	at net.minecraft.client.gui.screens.worldselection.CreateWorldScreen.lambda$tryApplyNewDataPacks$18(CreateWorldScreen.java:459) ~[forge-1.19.2-43.1.25_mapped_official_1.19.2-recomp.jar%23180!/:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.server.WorldLoader.load(WorldLoader.java:22) ~[forge-1.19.2-43.1.25_mapped_official_1.19.2-recomp.jar%23180!/:?] {re:classloading}
	at net.minecraft.client.gui.screens.worldselection.CreateWorldScreen.tryApplyNewDataPacks(CreateWorldScreen.java:449) ~[forge-1.19.2-43.1.25_mapped_official_1.19.2-recomp.jar%23180!/:?] {re:classloading,pl:runtimedistcleaner:A}
	... 33 more

 

Posted

Looks like you don't have a PlacedFeature only a ConfiguredFeature?

Boilerplate:

If you don't post your logs/debug.log we can't help you. For curseforge you need to enable the forge debug.log in its minecraft settings. You should also post your crash report if you have one.

If there is no error in the log file and you don't have a crash report then post the launcher_log.txt from the minecraft folder. Again for curseforge this will be in your curseforge/minecraft/Install

Large files should be posted to a file sharing site like https://gist.github.com  You should also read the support forum sticky post.

Posted (edited)

Features have 3 levels of abstraction

Feature: the thing that does the generation

ConfiguredFeature: Feature + Configuration, e.g. how big it is or which BlockStates, etc.

PlacedFeature: ConfiguredFeature + placement options, e.g. diamonds go at the bottom of the world

Edited by warjort

Boilerplate:

If you don't post your logs/debug.log we can't help you. For curseforge you need to enable the forge debug.log in its minecraft settings. You should also post your crash report if you have one.

If there is no error in the log file and you don't have a crash report then post the launcher_log.txt from the minecraft folder. Again for curseforge this will be in your curseforge/minecraft/Install

Large files should be posted to a file sharing site like https://gist.github.com  You should also read the support forum sticky post.

Posted
  On 9/29/2022 at 12:09 PM, warjort said:

Features have 3 levels of abstraction

Feature: the thing that does the generation

ConfiguredFeature: Feature + Configuration, e.g. how big it is or which BlockStates, etc.

PlacedFeature: ConfiguredFeature + placement options, e.g. diamonds go at the bottom of the world

Expand  

I don't understand, How do I add a placed feature?

Posted

The same way you added a configured feature.

You can find docs on this wiki:  https://minecraft.fandom.com/wiki/Custom_feature That site contains information about most things in resource packs or datapacks.

And here's a website that has generated the vanilla builtin datapacks into json files: https://github.com/misode/mcmeta/tree/data/data/minecraft/worldgen/placed_feature

Boilerplate:

If you don't post your logs/debug.log we can't help you. For curseforge you need to enable the forge debug.log in its minecraft settings. You should also post your crash report if you have one.

If there is no error in the log file and you don't have a crash report then post the launcher_log.txt from the minecraft folder. Again for curseforge this will be in your curseforge/minecraft/Install

Large files should be posted to a file sharing site like https://gist.github.com  You should also read the support forum sticky post.

Posted
  On 9/29/2022 at 12:33 PM, warjort said:

The same way you added a configured feature.

You can find docs on this wiki:  https://minecraft.fandom.com/wiki/Custom_feature That site contains information about most things in resource packs or datapacks.

And here's a website that has generated the vanilla builtin datapacks into json files: https://github.com/misode/mcmeta/tree/data/data/minecraft/worldgen/placed_feature

Expand  

I found it in the world but it only generates in specific area like a lush cave under a taiga, I can't find it in a cave which's biome is forest or I am under the ocean. I am new to these caves, I haven't played the new versions that much.

Here is dolerite.json:

{
  "feature": "orangecraft:dolerite",
  "placement": [
    {
      "type": "minecraft:count",
      "count": 10
    },
    {
      "type": "minecraft:in_square"
    },
    {
      "type": "minecraft:height_range",
      "height": {
        "type": "minecraft:uniform",
        "max_inclusive": {
          "absolute": 60
        },
        "min_inclusive": {
          "absolute": 0
        }
      }
    },
    {
      "type": "minecraft:biome"
    }
  ]
}

I only copied the lower file, because I wanted it to be a bit different to find. I made an upper file which did nothing.

Here is dolerite_upper.json:

{
  "feature": "orangecraft:dolerite",
  "placement": [
    {
      "type": "minecraft:rarity_filter",
      "chance": 12
    },
    {
      "type": "minecraft:in_square"
    },
    {
      "type": "minecraft:height_range",
      "height": {
        "type": "minecraft:uniform",
        "max_inclusive": {
          "absolute": 128
        },
        "min_inclusive": {
          "absolute": 64
        }
      }
    },
    {
      "type": "minecraft:biome"
    }
  ]
}

I added the features in biome modifier's json as an array:

{
  "type": "forge:add_features",
  "biomes": "#forge:is_cave",
  "features": ["orangecraft:dolerite", "orangecraft:dolerite_upper"],
  "step": "underground_ores"
}

I also tried raising the count and chance. I can't tell what rarity did but count made them spawn more in the areas I mentioned. How to fix this?

Posted

Boilerplate:

If you don't post your logs/debug.log we can't help you. For curseforge you need to enable the forge debug.log in its minecraft settings. You should also post your crash report if you have one.

If there is no error in the log file and you don't have a crash report then post the launcher_log.txt from the minecraft folder. Again for curseforge this will be in your curseforge/minecraft/Install

Large files should be posted to a file sharing site like https://gist.github.com  You should also read the support forum sticky post.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Unfortunately, your content contains terms that we do not allow. Please edit your content to remove the highlighted words below.
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Announcements



  • Recently Browsing

    • No registered users viewing this page.
  • Posts

    • Hi, I have this error, once i enter to my world, close windows and this error appears. I appreciate any kind of help. thks. ---- Minecraft Crash Report ---- // Embeddium instance tainted by mods: [oculus] // Please do not reach out for Embeddium support without removing these mods first. // ------- // Surprise! Haha. Well, this is awkward. Time: 2025-04-28 17:09:12 Description: Exception in server tick loop java.lang.RuntimeException: Error loading the default OPAC server localization!     at xaero.pac.common.server.player.localization.ServerTranslationLoader.loadFromResources(ServerTranslationLoader.java:50) ~[open-parties-and-claims-forge-1.20.1-0.24.0.jar%23417!/:0.24.0] {re:classloading}     at xaero.pac.common.server.ServerData.onServerResourcesReload(ServerData.java:142) ~[open-parties-and-claims-forge-1.20.1-0.24.0.jar%23417!/:0.24.0] {re:classloading}     at xaero.pac.common.server.ServerDataInitializer.init(ServerDataInitializer.java:276) ~[open-parties-and-claims-forge-1.20.1-0.24.0.jar%23417!/:0.24.0] {re:classloading}     at xaero.pac.common.event.CommonEvents.onServerAboutToStart(CommonEvents.java:110) ~[open-parties-and-claims-forge-1.20.1-0.24.0.jar%23417!/:0.24.0] {re:classloading}     at xaero.pac.common.event.CommonEventsForge.onServerAboutToStart(CommonEventsForge.java:88) ~[open-parties-and-claims-forge-1.20.1-0.24.0.jar%23417!/:0.24.0] {re:classloading,pl:eventbus:A}     at xaero.pac.common.event.__CommonEventsForge_onServerAboutToStart_ServerAboutToStartEvent.invoke(.dynamic) ~[open-parties-and-claims-forge-1.20.1-0.24.0.jar%23417!/:0.24.0] {re:classloading,pl:eventbus:B}     at net.minecraftforge.eventbus.ASMEventHandler.invoke(ASMEventHandler.java:73) ~[eventbus-6.0.5.jar%2387!/:?] {}     at net.minecraftforge.eventbus.EventBus.post(EventBus.java:315) ~[eventbus-6.0.5.jar%2387!/:?] {}     at net.minecraftforge.eventbus.EventBus.post(EventBus.java:296) ~[eventbus-6.0.5.jar%2387!/:?] {}     at net.minecraftforge.server.ServerLifecycleHooks.handleServerAboutToStart(ServerLifecycleHooks.java:98) ~[forge-1.20.1-47.4.0-universal.jar%23463!/:?] {re:classloading}     at net.minecraft.client.server.IntegratedServer.m_7038_(IntegratedServer.java:62) ~[client-1.20.1-20230612.114412-srg.jar%23458!/:?] {re:mixin,xf:fml:openpartiesandclaims:xaero_pac_integratedserver_tickpaused,pl:runtimedistcleaner:A,re:classloading,xf:fml:openpartiesandclaims:xaero_pac_integratedserver_tickpaused,pl:mixin:APP:mixins.essential.json:server.Mixin_ServerCoroutineScope_IntegratedServer,pl:mixin:APP:mixins.essential.json:server.integrated.Mixin_FixDefaultOpPermissionLevel,pl:mixin:APP:mixins.essential.json:server.integrated.Mixin_IntegratedServerManager,pl:mixin:APP:mixins.essential.json:server.integrated.MixinIntegratedServer,pl:mixin:A,pl:runtimedistcleaner:A}     at net.minecraft.server.MinecraftServer.m_130011_(MinecraftServer.java:634) ~[client-1.20.1-20230612.114412-srg.jar%23458!/:?] {re:mixin,pl:accesstransformer:B,xf:fml:openpartiesandclaims:xaero_pac_minecraftserverclass,xf:fml:xaeroworldmap:xaero_wm_minecraftserver,xf:fml:xaerominimap:xaero_minecraftserver,re:classloading,pl:accesstransformer:B,xf:fml:openpartiesandclaims:xaero_pac_minecraftserverclass,xf:fml:xaeroworldmap:xaero_wm_minecraftserver,xf:fml:xaerominimap:xaero_minecraftserver,pl:mixin:APP:saturn.mixins.json:allocations.server_directory.MinecraftServerMixin,pl:mixin:APP:citadel.mixins.json:MinecraftServerMixin,pl:mixin:APP:balm.mixins.json:MinecraftServerMixin,pl:mixin:APP:mixins.essential.json:feature.sps.Mixin_IntegratedServerResourcePack,pl:mixin:APP:mixins.essential.json:server.MinecraftServerAccessor,pl:mixin:APP:mixins.essential.json:server.MinecraftServerMixin_PvPGameRule,pl:mixin:APP:mixins.essential.json:server.Mixin_ServerCoroutineScope,pl:mixin:APP:mixins.essential.json:server.Mixin_PublishServerStatusResponse,pl:mixin:APP:mixins.essential.json:server.integrated.Mixin_SetDifficulty,pl:mixin:APP:mixins.essential.json:server.integrated.Mixin_SetGameType,pl:mixin:A}     at net.minecraft.server.MinecraftServer.m_206580_(MinecraftServer.java:251) ~[client-1.20.1-20230612.114412-srg.jar%23458!/:?] {re:mixin,pl:accesstransformer:B,xf:fml:openpartiesandclaims:xaero_pac_minecraftserverclass,xf:fml:xaeroworldmap:xaero_wm_minecraftserver,xf:fml:xaerominimap:xaero_minecraftserver,re:classloading,pl:accesstransformer:B,xf:fml:openpartiesandclaims:xaero_pac_minecraftserverclass,xf:fml:xaeroworldmap:xaero_wm_minecraftserver,xf:fml:xaerominimap:xaero_minecraftserver,pl:mixin:APP:saturn.mixins.json:allocations.server_directory.MinecraftServerMixin,pl:mixin:APP:citadel.mixins.json:MinecraftServerMixin,pl:mixin:APP:balm.mixins.json:MinecraftServerMixin,pl:mixin:APP:mixins.essential.json:feature.sps.Mixin_IntegratedServerResourcePack,pl:mixin:APP:mixins.essential.json:server.MinecraftServerAccessor,pl:mixin:APP:mixins.essential.json:server.MinecraftServerMixin_PvPGameRule,pl:mixin:APP:mixins.essential.json:server.Mixin_ServerCoroutineScope,pl:mixin:APP:mixins.essential.json:server.Mixin_PublishServerStatusResponse,pl:mixin:APP:mixins.essential.json:server.integrated.Mixin_SetDifficulty,pl:mixin:APP:mixins.essential.json:server.integrated.Mixin_SetGameType,pl:mixin:A}     at java.lang.Thread.run(Thread.java:833) ~[?:?] {re:mixin} Caused by: java.io.FileNotFoundException: openpartiesandclaims:lang/es_esp.json     at net.minecraft.server.packs.resources.ResourceProvider.m_215590_(ResourceProvider.java:21) ~[client-1.20.1-20230612.114412-srg.jar%23458!/:?] {re:classloading,re:mixin}     at java.util.Optional.orElseThrow(Optional.java:403) ~[?:?] {re:mixin}     at net.minecraft.server.packs.resources.ResourceProvider.m_215593_(ResourceProvider.java:21) ~[client-1.20.1-20230612.114412-srg.jar%23458!/:?] {re:classloading,re:mixin}     at xaero.pac.common.server.player.localization.ServerTranslationLoader.loadFromResources(ServerTranslationLoader.java:44) ~[open-parties-and-claims-forge-1.20.1-0.24.0.jar%23417!/:0.24.0] {re:classloading}     ... 13 more A detailed walkthrough of the error, its code path and all known details is as follows: --------------------------------------------------------------------------------------- -- 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.8, Microsoft     Java VM Version: OpenJDK 64-Bit Server VM (mixed mode), Microsoft     Memory: 1170532328 bytes (1116 MiB) / 6710886400 bytes (6400 MiB) up to 8589934592 bytes (8192 MiB)     CPUs: 12     Processor Vendor: AuthenticAMD     Processor Name: AMD Ryzen 5 5600X 6-Core Processor                  Identifier: AuthenticAMD Family 25 Model 33 Stepping 0     Microarchitecture: Zen 3     Frequency (GHz): 3.70     Number of physical packages: 1     Number of physical CPUs: 6     Number of logical CPUs: 12     Graphics card #0 name: NVIDIA GeForce RTX 4060     Graphics card #0 vendor: NVIDIA (0x10de)     Graphics card #0 VRAM (MB): 4095.00     Graphics card #0 deviceId: 0x2882     Graphics card #0 versionInfo: DriverVersion=32.0.15.7602     Memory slot #0 capacity (MB): 16384.00     Memory slot #0 clockSpeed (GHz): 3.20     Memory slot #0 type: DDR4     Virtual memory max (MB): 36774.50     Virtual memory used (MB): 25931.35     Swap memory total (MB): 20480.00     Swap memory used (MB): 1270.96     JVM Flags: 9 total; -XX:HeapDumpPath=MojangTricksIntelDriversForPerformance_javaw.exe_minecraft.exe.heapdump -Xss1M -Xmx8G -XX:+UnlockExperimentalVMOptions -XX:+UseG1GC -XX:G1NewSizePercent=20 -XX:G1ReservePercent=20 -XX:MaxGCPauseMillis=50 -XX:G1HeapRegionSize=32M     Loaded Shaderpack: (off) (fallback)     Server Running: true     Player Count: 0 / 8; []     Data Packs: vanilla, mod:kuma_api, mod:blue_skies (incompatible), mod:geckolib, mod:playeranimator (incompatible), mod:botarium (incompatible), mod:naturalist (incompatible), mod:immersive_aircraft (incompatible), mod:sophisticatedcore (incompatible), mod:cookingforblockheads, mod:citadel (incompatible), mod:alexsmobs (incompatible), mod:mixinextras (incompatible), mod:bookshelf, mod:sophisticatedbackpacks (incompatible), mod:balm, mod:fpsreducer, mod:carryon (incompatible), mod:jeresources, mod:paraglider (incompatible), mod:cloth_config (incompatible), mod:dragonmounts, mod:sawmill (incompatible), mod:dummmmmmy (incompatible), mod:konkrete (incompatible), mod:structure_gel, mod:advancementplaques (incompatible), mod:mcwbridges, mod:farmersdelight, mod:ambientsounds, mod:mcwfences, mod:simplylight (incompatible), mod:resourcefulconfig (incompatible), mod:curios (incompatible), mod:patchouli (incompatible), mod:collective, mod:camera, mod:advancednetherite, mod:measurements, mod:betterthirdperson, mod:elevatorid, mod:ftbultimine (incompatible), mod:tombstone, mod:resourcefullib (incompatible), mod:constructionwand, mod:mcwroofs, mod:inventoryprofilesnext (incompatible), mod:deeperdarker, mod:architectury (incompatible), mod:mcwfurnitures, mod:cupboard (incompatible), mod:adorn (incompatible), mod:flib, mod:jadeaddons (incompatible), mod:inventoryessentials, mod:framework, mod:fallingtree (incompatible), mod:smallships (incompatible), mod:tradingpost, mod:mcwlights, mod:betteradvancements (incompatible), mod:quarkoddities, mod:trashslot, mod:ftblibrary (incompatible), mod:amendments (incompatible), mod:sophisticatedstorage (incompatible), mod:jei, mod:nameless_trinkets (incompatible), mod:graveyard (incompatible), mod:goblintraders (incompatible), mod:caelus (incompatible), mod:waystones, mod:clumps (incompatible), mod:comforts (incompatible), mod:naturescompass, mod:storagenetwork, mod:configured (incompatible), mod:compactmachines (incompatible), mod:glitchcore (incompatible), mod:sereneseasons, mod:farmingforblockheads, mod:midnightlib (incompatible), mod:explorerscompass, mod:ars_nouveau (incompatible), mod:puzzlesaccessapi, mod:dungeons_arise_seven_seas, mod:forge, mod:mcwpaths, mod:dungeons_arise, mod:craftingtweaks, mod:alexscaves, mod:voicechat (incompatible), mod:trade_cycling, mod:simplyswords (incompatible), mod:libipn (incompatible), mod:enchdesc (incompatible), mod:terrablender, mod:biomesoplenty, mod:moonlight (incompatible), mod:bettercombat (incompatible), mod:toolbelt (incompatible), mod:mixinsquared (incompatible), mod:jade (incompatible), mod:creativecore, mod:spectrelib (incompatible), mod:roughlyenoughitems (incompatible), mod:betterfpsdist (incompatible), mod:kotlinforforge (incompatible), mod:easy_villagers, mod:iceberg (incompatible), mod:flywheel, mod:ponder (incompatible), mod:create, mod:ecologics, mod:polymorph (incompatible), mod:securitycraft, mod:sit, mod:zeta (incompatible), mod:quark (incompatible), mod:supplementaries, mod:inventoryhud (incompatible), mod:immediatelyfast (incompatible), mod:appleskin (incompatible), mod:puzzleslib, mod:justzoom (incompatible), mod:betterf3, mod:aquaculture, mod:immersive_melodies (incompatible), mod:expandability (incompatible), mod:cosmeticarmorreworked, mod:ad_astra (incompatible), Sawmill Sawmill Recipes, Supplementaries Generated Pack, create:dynamic_data, mod:colytra (incompatible), mod:freecam (incompatible), mod:elytraslot (incompatible), mod:spawnermod (incompatible), mod:simpleplanes (incompatible), mod:trenzalore (incompatible), mod:minecraftcapes (incompatible), mod:hangglider, mod:corail_woodcutter, mod:cfm, mod:globalxp, mod:darkmodeeverywhere (incompatible), mod:obsidianboat, mod:car, mod:paintings (incompatible), mod:searchlight (incompatible), mod:xaeroworldmap (incompatible), mod:xaerominimap (incompatible), mod:openpartiesandclaims (incompatible), mod:mcwdoors, mod:saturn (incompatible), mod:canary, mod:essential (incompatible), mod:embeddium, mod:oculus     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: 1.20.1-forge-47.4.0     ModLauncher: 10.0.9+10.0.9+main.dcd20f30     ModLauncher launch target: forgeclient     ModLauncher naming: srg     ModLauncher services:          mixin-0.8.5.jar mixin PLUGINSERVICE          eventbus-6.0.5.jar eventbus PLUGINSERVICE          fmlloader-1.20.1-47.4.0.jar slf4jfixer PLUGINSERVICE          fmlloader-1.20.1-47.4.0.jar object_holder_definalize PLUGINSERVICE          fmlloader-1.20.1-47.4.0.jar runtime_enum_extender PLUGINSERVICE          fmlloader-1.20.1-47.4.0.jar capability_token_subclass PLUGINSERVICE          accesstransformers-8.0.4.jar accesstransformer PLUGINSERVICE          fmlloader-1.20.1-47.4.0.jar runtimedistcleaner PLUGINSERVICE          modlauncher-10.0.9.jar mixin TRANSFORMATIONSERVICE          modlauncher-10.0.9.jar essential-loader TRANSFORMATIONSERVICE          modlauncher-10.0.9.jar fml TRANSFORMATIONSERVICE      FML Language Providers:          minecraft@1.0         kotlinforforge@4.11.0         javafml@null         lowcodefml@null     Mod List:          saturn-mc1.20.1-0.1.3.jar                         |Saturn                        |saturn                        |0.1.3               |DONE      |Manifest: NOSIGNATURE         kuma-api-forge-20.1.10+1.20.1.jar                 |KumaAPI                       |kuma_api                      |20.1.10             |DONE      |Manifest: NOSIGNATURE         blue_skies-1.20.1-1.3.31.jar                      |Blue Skies                    |blue_skies                    |1.3.31              |DONE      |Manifest: NOSIGNATURE         open-parties-and-claims-forge-1.20.1-0.24.0.jar   |Open Parties and Claims       |openpartiesandclaims          |0.24.0              |DONE      |Manifest: NOSIGNATURE         geckolib-forge-1.20.1-4.7.1.2.jar                 |GeckoLib 4                    |geckolib                      |4.7.1.2             |DONE      |Manifest: NOSIGNATURE         player-animation-lib-forge-1.0.2-rc1+1.20.jar     |Player Animator               |playeranimator                |1.0.2-rc1+1.20      |DONE      |Manifest: NOSIGNATURE         botarium-forge-1.20.1-2.3.4.jar                   |Botarium                      |botarium                      |2.3.4               |DONE      |Manifest: NOSIGNATURE         naturalist-5.0pre2+forge-1.20.1.jar               |Naturalist                    |naturalist                    |5.0pre2             |DONE      |Manifest: NOSIGNATURE         immersive_aircraft-1.2.2+1.20.1-forge.jar         |Immersive Aircraft            |immersive_aircraft            |1.2.2+1.20.1        |DONE      |Manifest: NOSIGNATURE         sophisticatedcore-1.20.1-1.2.38.936.jar           |Sophisticated Core            |sophisticatedcore             |1.2.38.936          |DONE      |Manifest: NOSIGNATURE         XaerosWorldMap_1.39.4_Forge_1.20.jar              |Xaero's World Map             |xaeroworldmap                 |1.39.4              |DONE      |Manifest: NOSIGNATURE         cookingforblockheads-forge-1.20.1-16.0.13.jar     |CookingForBlockheads          |cookingforblockheads          |16.0.13             |DONE      |Manifest: NOSIGNATURE         citadel-2.6.1-1.20.1.jar                          |Citadel                       |citadel                       |2.6.1               |DONE      |Manifest: NOSIGNATURE         alexsmobs-1.22.9.jar                              |Alex's Mobs                   |alexsmobs                     |1.22.9              |DONE      |Manifest: NOSIGNATURE         mixinextras-forge-0.2.0-beta.8.jar                |MixinExtras                   |mixinextras                   |0.2.0-beta.8        |DONE      |Manifest: NOSIGNATURE         spawnermod-1.20.1-1.9.3+Forge.jar                 |Enhanced Mob Spawners         |spawnermod                    |1.9.3               |DONE      |Manifest: NOSIGNATURE         Bookshelf-Forge-1.20.1-20.2.13.jar                |Bookshelf                     |bookshelf                     |20.2.13             |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         sophisticatedbackpacks-1.20.1-3.23.8.1215.jar     |Sophisticated Backpacks       |sophisticatedbackpacks        |3.23.8.1215         |DONE      |Manifest: NOSIGNATURE         simpleplanes-1.20.1-5.3.3.jar                     |Simple Planes                 |simpleplanes                  |1.20.1-5.3.3        |DONE      |Manifest: NOSIGNATURE         mcw-doors-1.1.2-mc1.20.1forge.jar                 |Macaw's Doors                 |mcwdoors                      |1.1.2               |DONE      |Manifest: NOSIGNATURE         balm-forge-1.20.1-7.3.27-all.jar                  |Balm                          |balm                          |7.3.27              |DONE      |Manifest: NOSIGNATURE         FpsReducer2-forge-1.20-2.5.jar                    |FPS Reducer                   |fpsreducer                    |1.20-2.5            |DONE      |Manifest: NOSIGNATURE         carryon-forge-1.20.1-2.1.2.7.jar                  |Carry On                      |carryon                       |2.1.2.7             |DONE      |Manifest: NOSIGNATURE         JustEnoughResources-1.20.1-1.4.0.247.jar          |Just Enough Resources         |jeresources                   |1.4.0.247           |DONE      |Manifest: NOSIGNATURE         Paraglider-forge-20.1.3.jar                       |Paraglider                    |paraglider                    |20.1.3              |DONE      |Manifest: NOSIGNATURE         cloth-config-11.1.136-forge.jar                   |Cloth Config v10 API          |cloth_config                  |11.1.136            |DONE      |Manifest: NOSIGNATURE         dragonmounts-1.20.1-1.2.3-beta.jar                |Dragon Mounts: Legacy         |dragonmounts                  |1.2.3-beta          |DONE      |Manifest: NOSIGNATURE         sawmill-1.20-1.4.6.jar                            |Universal Sawmill             |sawmill                       |1.20-1.4.6          |DONE      |Manifest: NOSIGNATURE         dummmmmmy-1.20-2.0.6.jar                          |MmmMmmMmmmmm                  |dummmmmmy                     |1.20-2.0.6          |DONE      |Manifest: NOSIGNATURE         trenzalore-forge-3.3.10+mc1.20.1-all.jar          |Trenzalore                    |trenzalore                    |3.3.10              |DONE      |Manifest: NOSIGNATURE         konkrete_forge_1.8.0_MC_1.20-1.20.1.jar           |Konkrete                      |konkrete                      |1.8.0               |DONE      |Manifest: NOSIGNATURE         embeddium-0.3.31+mc1.20.1.jar                     |Embeddium                     |embeddium                     |0.3.31+mc1.20.1     |DONE      |Manifest: NOSIGNATURE         structure_gel-1.20.1-2.16.2.jar                   |Structure Gel API             |structure_gel                 |2.16.2              |DONE      |Manifest: NOSIGNATURE         AdvancementPlaques-1.20.1-forge-1.6.9.jar         |Advancement Plaques           |advancementplaques            |1.6.9               |DONE      |Manifest: NOSIGNATURE         mcw-bridges-3.0.0-mc1.20.1forge.jar               |Macaw's Bridges               |mcwbridges                    |3.0.0               |DONE      |Manifest: NOSIGNATURE         FarmersDelight-1.20.1-1.2.7.jar                   |Farmer's Delight              |farmersdelight                |1.20.1-1.2.7        |DONE      |Manifest: NOSIGNATURE         AmbientSounds_FORGE_v6.1.6_mc1.20.1.jar           |AmbientSounds                 |ambientsounds                 |6.1.6               |DONE      |Manifest: NOSIGNATURE         mcw-fences-1.2.0-1.20.1forge.jar                  |Macaw's Fences and Walls      |mcwfences                     |1.2.0               |DONE      |Manifest: NOSIGNATURE         MinecraftCapes Forge 1.20.1-12.3.7.jar            |MinecraftCapes                |minecraftcapes                |12.3.7              |DONE      |Manifest: NOSIGNATURE         simplylight-1.20.1-1.4.6-build.50.jar             |Simply Light                  |simplylight                   |1.20.1-1.4.6-build.5|DONE      |Manifest: NOSIGNATURE         resourcefulconfig-forge-1.20.1-2.1.3.jar          |Resourcefulconfig             |resourcefulconfig             |2.1.3               |DONE      |Manifest: NOSIGNATURE         HangGlider-v8.0.1-1.20.1-Forge.jar                |Hang Glider                   |hangglider                    |8.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         curios-forge-5.12.1+1.20.1.jar                    |Curios API                    |curios                        |5.12.1+1.20.1       |DONE      |Manifest: NOSIGNATURE         Patchouli-1.20.1-84.1-FORGE.jar                   |Patchouli                     |patchouli                     |1.20.1-84.1-FORGE   |DONE      |Manifest: NOSIGNATURE         corail_woodcutter-1.20.1-3.0.6.jar                |Corail Woodcutter             |corail_woodcutter             |3.0.6               |DONE      |Manifest: NOSIGNATURE         oculus-mc1.20.1-1.8.0.jar                         |Oculus                        |oculus                        |1.8.0               |DONE      |Manifest: NOSIGNATURE         collective-1.20.1-8.1.jar                         |Collective                    |collective                    |8.1                 |DONE      |Manifest: NOSIGNATURE         camera-forge-1.20.1-1.0.19.jar                    |Camera Mod                    |camera                        |1.20.1-1.0.19       |DONE      |Manifest: NOSIGNATURE         advancednetherite-forge-2.1.3-1.20.1.jar          |Advanced Netherite            |advancednetherite             |2.1.3               |DONE      |Manifest: NOSIGNATURE         Measurements-forge-1.20.1-2.0.0.jar               |Measurements                  |measurements                  |2.0.0               |DONE      |Manifest: NOSIGNATURE         BetterThirdPerson-Forge-1.20-1.9.0.jar            |Better Third Person           |betterthirdperson             |1.9.0               |DONE      |Manifest: NOSIGNATURE         elevatorid-1.20.1-lex-1.9.jar                     |Elevator Mod                  |elevatorid                    |1.20.1-lex-1.9      |DONE      |Manifest: NOSIGNATURE         ftb-ultimine-forge-2001.1.5.jar                   |FTB Ultimine                  |ftbultimine                   |2001.1.5            |DONE      |Manifest: NOSIGNATURE         tombstone-1.20.1-8.9.2.jar                        |Corail Tombstone              |tombstone                     |8.9.2               |DONE      |Manifest: NOSIGNATURE         resourcefullib-forge-1.20.1-2.1.29.jar            |Resourceful Lib               |resourcefullib                |2.1.29              |DONE      |Manifest: NOSIGNATURE         constructionwand-1.20.1-2.11.jar                  |Construction Wand             |constructionwand              |1.20.1-2.11         |DONE      |Manifest: NOSIGNATURE         mcw-roofs-2.3.1-mc1.20.1forge.jar                 |Macaw's Roofs                 |mcwroofs                      |2.3.1               |DONE      |Manifest: NOSIGNATURE         InventoryProfilesNext-forge-1.20-1.10.14.jar      |Inventory Profiles Next       |inventoryprofilesnext         |1.10.14             |DONE      |Manifest: NOSIGNATURE         deeperdarker-forge-1.20.1-1.3.3.jar               |Deeper and Darker             |deeperdarker                  |1.3.3               |DONE      |Manifest: NOSIGNATURE         cfm-forge-1.20.1-7.0.0-pre36.jar                  |MrCrayfish's Furniture Mod    |cfm                           |7.0.0-pre36         |DONE      |Manifest: 0d:78:5f:44:c0:47:0c:8c:e2:63:a3:04:43:d4:12:7d:b0:7c:35:37:dc:40:b1:c1:98:ec:51:eb:3b:3c:45:99         architectury-9.2.14-forge.jar                     |Architectury                  |architectury                  |9.2.14              |DONE      |Manifest: NOSIGNATURE         mcw-furniture-3.3.0-mc1.20.1forge.jar             |Macaw's Furniture             |mcwfurnitures                 |3.3.0               |DONE      |Manifest: NOSIGNATURE         globalxp-forge-1.20.1-1.12.jar                    |Global XP                     |globalxp                      |1.12                |DONE      |Manifest: NOSIGNATURE         cupboard-1.20.1-2.7.jar                           |Cupboard utilities            |cupboard                      |1.20.1-2.7          |DONE      |Manifest: NOSIGNATURE         Adorn-5.0.1+1.20.1-forge.jar                      |Adorn                         |adorn                         |5.0.1+1.20.1        |DONE      |Manifest: NOSIGNATURE         flib-1.20.1-0.0.15.jar                            |flib                          |flib                          |0.0.15              |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         JadeAddons-1.20.1-Forge-5.5.0.jar                 |Jade Addons                   |jadeaddons                    |5.5.0+forge         |DONE      |Manifest: NOSIGNATURE         inventoryessentials-forge-1.20.1-8.2.7.jar        |Inventory Essentials          |inventoryessentials           |8.2.7               |DONE      |Manifest: NOSIGNATURE         framework-forge-1.20.1-0.7.12.jar                 |Framework                     |framework                     |0.7.12              |DONE      |Manifest: 0d:78:5f:44:c0:47:0c:8c:e2:63:a3:04:43:d4:12:7d:b0:7c:35:37:dc:40:b1:c1:98:ec:51:eb:3b:3c:45:99         FallingTree-1.20.1-4.3.4.jar                      |FallingTree                   |fallingtree                   |4.3.4               |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         smallships-forge-1.20.1-2.0.0-b1.4.jar            |Small Ships                   |smallships                    |2.0.0-b1.4          |DONE      |Manifest: NOSIGNATURE         TradingPost-v8.0.2-1.20.1-Forge.jar               |Trading Post                  |tradingpost                   |8.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         mcw-lights-1.1.0-mc1.20.1forge.jar                |Macaw's Lights and Lamps      |mcwlights                     |1.1.0               |DONE      |Manifest: NOSIGNATURE         DarkModeEverywhere-1.20.1-1.2.3.jar               |DarkModeEverywhere            |darkmodeeverywhere            |1.20.1-1.2.3        |DONE      |Manifest: NOSIGNATURE         Essential (forge_1.20.1).jar                      |Essential                     |essential                     |1.3.5.12            |DONE      |Manifest: NOSIGNATURE         BetterAdvancements-Forge-1.20.1-0.4.2.25.jar      |Better Advancements           |betteradvancements            |0.4.2.25            |DONE      |Manifest: NOSIGNATURE         elytraslot-forge-6.4.4+1.20.1.jar                 |Elytra Slot                   |elytraslot                    |6.4.4+1.20.1        |DONE      |Manifest: NOSIGNATURE         QuarkOddities-1.20.1.jar                          |Quark Oddities                |quarkoddities                 |1.20.1              |DONE      |Manifest: NOSIGNATURE         trashslot-forge-1.20-15.1.2.jar                   |TrashSlot                     |trashslot                     |15.1.2              |DONE      |Manifest: NOSIGNATURE         ftb-library-forge-2001.2.9.jar                    |FTB Library                   |ftblibrary                    |2001.2.9            |DONE      |Manifest: NOSIGNATURE         amendments-1.20-1.2.19.jar                        |Amendments                    |amendments                    |1.20-1.2.19         |DONE      |Manifest: NOSIGNATURE         sophisticatedstorage-1.20.1-1.3.22.1104.jar       |Sophisticated Storage         |sophisticatedstorage          |1.3.22.1104         |DONE      |Manifest: NOSIGNATURE         jei-1.20.1-forge-15.20.0.106.jar                  |Just Enough Items             |jei                           |15.20.0.106         |DONE      |Manifest: NOSIGNATURE         Nameless Trinkets-1.20.1-1.9.0.jar                |Nameless Trinkets             |nameless_trinkets             |1.20.1-1.8.5        |DONE      |Manifest: NOSIGNATURE         The_Graveyard_3.1_(FORGE)_for_1.20.1.jar          |The Graveyard                 |graveyard                     |3.1                 |DONE      |Manifest: NOSIGNATURE         goblintraders-forge-1.20.1-1.9.3.jar              |Goblin Traders                |goblintraders                 |1.9.3               |DONE      |Manifest: 0d:78:5f:44:c0:47:0c:8c:e2:63:a3:04:43:d4:12:7d:b0:7c:35:37:dc:40:b1:c1:98:ec:51:eb:3b:3c:45:99         caelus-forge-3.2.0+1.20.1.jar                     |Caelus API                    |caelus                        |3.2.0+1.20.1        |DONE      |Manifest: NOSIGNATURE         colytra-forge-6.2.2+1.20.1.jar                    |Colytra                       |colytra                       |6.2.2+1.20.1        |DONE      |Manifest: NOSIGNATURE         waystones-forge-1.20.1-14.1.11.jar                |Waystones                     |waystones                     |14.1.11             |DONE      |Manifest: NOSIGNATURE         Clumps-forge-1.20.1-12.0.0.4.jar                  |Clumps                        |clumps                        |12.0.0.4            |DONE      |Manifest: NOSIGNATURE         comforts-forge-6.4.0+1.20.1.jar                   |Comforts                      |comforts                      |6.4.0+1.20.1        |DONE      |Manifest: NOSIGNATURE         NaturesCompass-1.20.1-1.11.2-forge.jar            |Nature's Compass              |naturescompass                |1.20.1-1.11.2-forge |DONE      |Manifest: NOSIGNATURE         SimpleStorageNetwork-1.20.1-1.12.2.jar            |Simple Storage Network        |storagenetwork                |1.12.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         configured-forge-1.20.1-2.2.3.jar                 |Configured                    |configured                    |2.2.3               |DONE      |Manifest: 0d:78:5f:44:c0:47:0c:8c:e2:63:a3:04:43:d4:12:7d:b0:7c:35:37:dc:40:b1:c1:98:ec:51:eb:3b:3c:45:99         compactmachines-forge-6.0.3.jar                   |Compact Machines              |compactmachines               |6.0.3               |DONE      |Manifest: NOSIGNATURE         GlitchCore-forge-1.20.1-0.0.1.1.jar               |GlitchCore                    |glitchcore                    |0.0.1.1             |DONE      |Manifest: NOSIGNATURE         SereneSeasons-forge-1.20.1-9.1.0.1.jar            |Serene Seasons                |sereneseasons                 |9.1.0.1             |DONE      |Manifest: NOSIGNATURE         farmingforblockheads-forge-1.20.1-14.0.2.jar      |Farming for Blockheads        |farmingforblockheads          |14.0.2              |DONE      |Manifest: NOSIGNATURE         midnightlib-1.4.2-forge.jar                       |MidnightLib                   |midnightlib                   |1.4.2               |DONE      |Manifest: NOSIGNATURE         ExplorersCompass-1.20.1-1.3.3-forge.jar           |Explorer's Compass            |explorerscompass              |1.20.1-1.3.3-forge  |DONE      |Manifest: NOSIGNATURE         ars_nouveau-1.20.1-4.12.6-all.jar                 |Ars Nouveau                   |ars_nouveau                   |4.12.6              |DONE      |Manifest: NOSIGNATURE         puzzlesaccessapi-forge-20.1.1.jar                 |Puzzles Access Api            |puzzlesaccessapi              |20.1.1              |DONE      |Manifest: NOSIGNATURE         DungeonsAriseSevenSeas-1.20.x-1.0.2-forge.jar     |When Dungeons Arise: Seven Sea|dungeons_arise_seven_seas     |1.0.2               |DONE      |Manifest: NOSIGNATURE         mcw-paths-1.1.0forge-mc1.20.1.jar                 |Macaw's Paths and Pavings     |mcwpaths                      |1.1.0               |DONE      |Manifest: NOSIGNATURE         DungeonsArise-1.20.x-2.1.58-release.jar           |When Dungeons Arise           |dungeons_arise                |2.1.58-1.20.x       |DONE      |Manifest: NOSIGNATURE         craftingtweaks-forge-1.20.1-18.2.5.jar            |CraftingTweaks                |craftingtweaks                |18.2.5              |DONE      |Manifest: NOSIGNATURE         alexscaves-2.0.2.jar                              |Alex's Caves                  |alexscaves                    |2.0.2               |DONE      |Manifest: NOSIGNATURE         voicechat-forge-1.20.1-2.5.29.jar                 |Simple Voice Chat             |voicechat                     |1.20.1-2.5.29       |DONE      |Manifest: NOSIGNATURE         trade-cycling-forge-1.20.1-1.0.17.jar             |Trade Cycling                 |trade_cycling                 |1.20.1-1.0.17       |DONE      |Manifest: NOSIGNATURE         simplyswords-forge-1.56.0-1.20.1.jar              |Simply Swords                 |simplyswords                  |1.56.0-1.20.1       |DONE      |Manifest: NOSIGNATURE         libIPN-forge-1.20-4.0.2.jar                       |libIPN                        |libipn                        |4.0.2               |DONE      |Manifest: NOSIGNATURE         EnchantmentDescriptions-Forge-1.20.1-17.1.19.jar  |EnchantmentDescriptions       |enchdesc                      |17.1.19             |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         TerraBlender-forge-1.20.1-3.0.1.10.jar            |TerraBlender                  |terrablender                  |3.0.1.10            |DONE      |Manifest: NOSIGNATURE         BiomesOPlenty-forge-1.20.1-19.0.0.96.jar          |Biomes O' Plenty              |biomesoplenty                 |19.0.0.96           |DONE      |Manifest: NOSIGNATURE         moonlight-1.20-2.13.81-forge.jar                  |Moonlight Library             |moonlight                     |1.20-2.13.81        |DONE      |Manifest: NOSIGNATURE         bettercombat-forge-1.8.6+1.20.1.jar               |Better Combat                 |bettercombat                  |1.8.6+1.20.1        |DONE      |Manifest: NOSIGNATURE         ToolBelt-1.20.1-1.20.02.jar                       |Tool Belt                     |toolbelt                      |1.20.02             |DONE      |Manifest: NOSIGNATURE         mixinsquared-forge-0.1.2-beta.6.jar               |MixinSquared                  |mixinsquared                  |0.1.2-beta.6        |DONE      |Manifest: NOSIGNATURE         Jade-1.20.1-Forge-11.13.1.jar                     |Jade                          |jade                          |11.13.1+forge       |DONE      |Manifest: NOSIGNATURE         CreativeCore_FORGE_v2.12.32_mc1.20.1.jar          |CreativeCore                  |creativecore                  |2.12.32             |DONE      |Manifest: NOSIGNATURE         spectrelib-forge-0.13.17+1.20.1.jar               |SpectreLib                    |spectrelib                    |0.13.17+1.20.1      |DONE      |Manifest: NOSIGNATURE         forge-3.1.4+mc1.20.1.jar                          |Obsidian Boat                 |obsidianboat                  |3.1.4               |DONE      |Manifest: NOSIGNATURE         RoughlyEnoughItems-12.1.785-forge.jar             |Roughly Enough Items (REI)    |roughlyenoughitems            |12.1.785            |DONE      |Manifest: NOSIGNATURE         car-forge-1.20.1-1.0.34.jar                       |Ultimate Car Mod              |car                           |1.20.1-1.0.34       |DONE      |Manifest: NOSIGNATURE         betterfpsdist-1.20.1-6.0.jar                      |betterfpsdist mod             |betterfpsdist                 |1.20.1-6.0          |DONE      |Manifest: NOSIGNATURE         kffmod-4.11.0.jar                                 |Kotlin For Forge              |kotlinforforge                |4.11.0              |DONE      |Manifest: NOSIGNATURE         Paintings-forge-1.20.1-11.0.0.2.jar               |Paintings ++                  |paintings                     |11.0.0.2            |DONE      |Manifest: NOSIGNATURE         forge-1.20.1-47.4.0-universal.jar                 |Forge                         |forge                         |47.4.0              |DONE      |Manifest: 84:ce:76:e8:45:35:e4:0e:63:86:df:47:59:80:0f:67:6c:c1:5f:6e:5f:4d:b3:54:47:1a:9f:7f:ed:5e:f2:90         client-1.20.1-20230612.114412-srg.jar             |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         easy-villagers-forge-1.20.1-1.1.24.jar            |Easy Villagers                |easy_villagers                |1.20.1-1.1.24       |DONE      |Manifest: NOSIGNATURE         Iceberg-1.20.1-forge-1.1.25.jar                   |Iceberg                       |iceberg                       |1.1.25              |DONE      |Manifest: NOSIGNATURE         flywheel-forge-1.20.1-1.0.2.jar                   |Flywheel                      |flywheel                      |1.0.2               |DONE      |Manifest: NOSIGNATURE         Ponder-Forge-1.20.1-1.0.52.jar                    |Ponder                        |ponder                        |1.0.52              |DONE      |Manifest: NOSIGNATURE         create-1.20.1-6.0.4.jar                           |Create                        |create                        |6.0.4               |DONE      |Manifest: NOSIGNATURE         ecologics-forge-1.20.1-2.2.0.jar                  |Ecologics                     |ecologics                     |2.2.0               |DONE      |Manifest: NOSIGNATURE         Xaeros_Minimap_25.2.0_Forge_1.20.jar              |Xaero's Minimap               |xaerominimap                  |25.2.0              |DONE      |Manifest: NOSIGNATURE         polymorph-forge-0.49.9+1.20.1.jar                 |Polymorph                     |polymorph                     |0.49.9+1.20.1       |DONE      |Manifest: NOSIGNATURE         [1.20.1] SecurityCraft v1.9.12.jar                |SecurityCraft                 |securitycraft                 |1.9.12              |DONE      |Manifest: NOSIGNATURE         sit-1.20.1-1.3.5.jar                              |Sit                           |sit                           |1.3.5               |DONE      |Manifest: NOSIGNATURE         Zeta-1.0-29.jar                                   |Zeta                          |zeta                          |1.0-29              |DONE      |Manifest: NOSIGNATURE         Quark-4.0-461.jar                                 |Quark                         |quark                         |4.0-461             |DONE      |Manifest: NOSIGNATURE         supplementaries-1.20-3.1.24.jar                   |Supplementaries               |supplementaries               |1.20-3.1.24         |DONE      |Manifest: NOSIGNATURE         searchlight-1.20-forge-1.1.11.jar                 |Searchlight                   |searchlight                   |1.1.11              |DONE      |Manifest: NOSIGNATURE         freecam-forge-1.2.1+1.20.jar                      |Freecam                       |freecam                       |1.2.1+1.20          |DONE      |Manifest: NOSIGNATURE         canary-mc1.20.1-0.3.3.jar                         |Canary                        |canary                        |0.3.3               |DONE      |Manifest: NOSIGNATURE         inventoryhud.forge.1.20.1-3.4.26.jar              |Inventory HUD+                |inventoryhud                  |3.4.26              |DONE      |Manifest: NOSIGNATURE         ImmediatelyFast-Forge-1.5.0+1.20.4.jar            |ImmediatelyFast               |immediatelyfast               |1.5.0+1.20.4        |DONE      |Manifest: NOSIGNATURE         appleskin-forge-mc1.20.1-2.5.1.jar                |AppleSkin                     |appleskin                     |2.5.1+mc1.20.1      |DONE      |Manifest: NOSIGNATURE         PuzzlesLib-v8.1.32-1.20.1-Forge.jar               |Puzzles Lib                   |puzzleslib                    |8.1.32              |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         justzoom_forge_2.1.1_MC_1.20.1.jar                |Just Zoom                     |justzoom                      |2.1.1               |DONE      |Manifest: NOSIGNATURE         BetterF3-7.0.2-Forge-1.20.1.jar                   |BetterF3                      |betterf3                      |7.0.2               |DONE      |Manifest: NOSIGNATURE         Aquaculture-1.20.1-2.5.5.jar                      |Aquaculture 2                 |aquaculture                   |2.5.5               |DONE      |Manifest: NOSIGNATURE         immersive_melodies-0.4.0+1.20.1-forge.jar         |Immersive Melodies            |immersive_melodies            |0.4.0+1.20.1        |DONE      |Manifest: NOSIGNATURE         expandability-9.0.4.jar                           |ExpandAbility                 |expandability                 |9.0.4               |DONE      |Manifest: NOSIGNATURE         cosmeticarmorreworked-1.20.1-v1a.jar              |CosmeticArmorReworked         |cosmeticarmorreworked         |1.20.1-v1a          |DONE      |Manifest: 5e:ed:25:99:e4:44:14:c0:dd:89:c1:a9:4c:10:b5:0d:e4:b1:52:50:45:82:13:d8:d0:32:89:67:56:57:01:53         ad_astra-forge-1.20.1-1.15.20.jar                 |Ad Astra                      |ad_astra                      |1.15.20             |DONE      |Manifest: NOSIGNATURE     Crash Report UUID: b94b2f51-d054-43fe-b3bc-b9bbe6ed2bb0     FML: 47.4     Forge: net.minecraftforge:47.4.0     Flywheel Backend: flywheel:indirect
    • ok, so you just have to go back to 1.20.1 to install the mrcrayfish controller support mod and everything will work perfectly  
    • Hello, so I'm trying to play with my friends on a modded server, I took a base modpack and then added a few mods, when they try to join I'm seeing them on the world and then they disconnect. Here's a piece of the log from a friend :   [28Apr2025 19:57:57.985] [Render thread/INFO] [placebo/]: Starting sync for affixes [28Apr2025 19:57:58.010] [Render thread/INFO] [Apotheosis : Adventure/]: Registered 179 affixes. [28Apr2025 19:57:58.016] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheosis:uncommon for category curios:charmRequired: 3; Provided: 2 [28Apr2025 19:57:58.016] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheosis:uncommon for category curios:braceletRequired: 3; Provided: 2 [28Apr2025 19:57:58.016] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheosis:uncommon for category curios:scrollRequired: 3; Provided: 2 [28Apr2025 19:57:58.016] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheosis:uncommon for category curios:an_focusRequired: 3; Provided: 2 [28Apr2025 19:57:58.016] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheosis:uncommon for category curios:necklaceRequired: 3; Provided: 2 [28Apr2025 19:57:58.016] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheosis:uncommon for category curios:ringRequired: 3; Provided: 2 [28Apr2025 19:57:58.016] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheosis:uncommon for category curios:spellstoneRequired: 3; Provided: 2 [28Apr2025 19:57:58.016] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheosis:uncommon for category curios:talismanRequired: 3; Provided: 2 [28Apr2025 19:57:58.016] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheosis:uncommon for category curios:beltRequired: 3; Provided: 2 [28Apr2025 19:57:58.017] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheosis:rare for category curios:charmRequired: 3; Provided: 2 [28Apr2025 19:57:58.017] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheosis:rare for category curios:braceletRequired: 3; Provided: 2 [28Apr2025 19:57:58.017] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheosis:rare for category curios:scrollRequired: 3; Provided: 2 [28Apr2025 19:57:58.017] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheosis:rare for category curios:an_focusRequired: 3; Provided: 2 [28Apr2025 19:57:58.017] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheosis:rare for category curios:necklaceRequired: 3; Provided: 2 [28Apr2025 19:57:58.017] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheosis:rare for category curios:ringRequired: 3; Provided: 2 [28Apr2025 19:57:58.017] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheosis:rare for category curios:spellstoneRequired: 3; Provided: 2 [28Apr2025 19:57:58.017] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheosis:rare for category curios:talismanRequired: 3; Provided: 2 [28Apr2025 19:57:58.017] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheosis:rare for category curios:beltRequired: 3; Provided: 2 [28Apr2025 19:57:58.019] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheosis:epic for category curios:charmRequired: 4; Provided: 2 [28Apr2025 19:57:58.019] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheosis:epic for category curios:braceletRequired: 4; Provided: 2 [28Apr2025 19:57:58.019] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheosis:epic for category curios:scrollRequired: 4; Provided: 2 [28Apr2025 19:57:58.019] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheosis:epic for category curios:an_focusRequired: 4; Provided: 2 [28Apr2025 19:57:58.019] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheosis:epic for category curios:necklaceRequired: 4; Provided: 2 [28Apr2025 19:57:58.019] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheosis:epic for category curios:ringRequired: 4; Provided: 2 [28Apr2025 19:57:58.019] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheosis:epic for category curios:spellstoneRequired: 4; Provided: 2 [28Apr2025 19:57:58.019] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheosis:epic for category curios:talismanRequired: 4; Provided: 2 [28Apr2025 19:57:58.019] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheosis:epic for category curios:beltRequired: 4; Provided: 2 [28Apr2025 19:57:58.024] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheosis:mythic for category curios:charmRequired: 4; Provided: 2 [28Apr2025 19:57:58.025] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheosis:mythic for category curios:braceletRequired: 4; Provided: 2 [28Apr2025 19:57:58.025] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheosis:mythic for category curios:scrollRequired: 4; Provided: 2 [28Apr2025 19:57:58.025] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheosis:mythic for category curios:an_focusRequired: 4; Provided: 2 [28Apr2025 19:57:58.025] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheosis:mythic for category curios:necklaceRequired: 4; Provided: 2 [28Apr2025 19:57:58.025] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheosis:mythic for category curios:ringRequired: 4; Provided: 2 [28Apr2025 19:57:58.025] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheosis:mythic for category curios:spellstoneRequired: 4; Provided: 2 [28Apr2025 19:57:58.025] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheosis:mythic for category curios:talismanRequired: 4; Provided: 2 [28Apr2025 19:57:58.025] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheosis:mythic for category curios:beltRequired: 4; Provided: 2 [28Apr2025 19:57:58.026] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheotic_additions:esoteric for category helmetRequired: 5; Provided: 4 [28Apr2025 19:57:58.026] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheotic_additions:esoteric for category chestplateRequired: 5; Provided: 4 [28Apr2025 19:57:58.027] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheotic_additions:esoteric for category leggingsRequired: 5; Provided: 4 [28Apr2025 19:57:58.027] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheotic_additions:esoteric for category bootsRequired: 5; Provided: 4 [28Apr2025 19:57:58.027] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheotic_additions:esoteric for category shieldRequired: 5; Provided: 4 [28Apr2025 19:57:58.027] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheotic_additions:esoteric for category curios:charmRequired: 5; Provided: 2 [28Apr2025 19:57:58.027] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheotic_additions:esoteric for category curios:braceletRequired: 5; Provided: 2 [28Apr2025 19:57:58.027] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheotic_additions:esoteric for category curios:scrollRequired: 5; Provided: 2 [28Apr2025 19:57:58.027] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheotic_additions:esoteric for category curios:an_focusRequired: 5; Provided: 2 [28Apr2025 19:57:58.027] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheotic_additions:esoteric for category curios:necklaceRequired: 5; Provided: 2 [28Apr2025 19:57:58.027] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheotic_additions:esoteric for category curios:ringRequired: 5; Provided: 2 [28Apr2025 19:57:58.027] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheotic_additions:esoteric for category curios:spellstoneRequired: 5; Provided: 2 [28Apr2025 19:57:58.027] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheotic_additions:esoteric for category curios:talismanRequired: 5; Provided: 2 [28Apr2025 19:57:58.027] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheotic_additions:esoteric for category curios:beltRequired: 5; Provided: 2 [28Apr2025 19:57:58.028] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheotic_additions:esoteric for category curios:backRequired: 5; Provided: 4 [28Apr2025 19:57:58.028] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheotic_additions:esoteric for category curios:feetRequired: 5; Provided: 4 [28Apr2025 19:57:58.028] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheotic_additions:esoteric for category curios:headRequired: 5; Provided: 4 [28Apr2025 19:57:58.028] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheotic_additions:esoteric for category curios:bodyRequired: 5; Provided: 4 [28Apr2025 19:57:58.028] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheotic_additions:esoteric for category curios:handsRequired: 5; Provided: 4 [28Apr2025 19:57:58.028] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheotic_additions:esoteric for category bowRequired: 5; Provided: 4 [28Apr2025 19:57:58.028] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheotic_additions:esoteric for category crossbowRequired: 5; Provided: 4 [28Apr2025 19:57:58.028] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheotic_additions:esoteric for category heavy_weaponRequired: 5; Provided: 3 [28Apr2025 19:57:58.029] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheosis:ancient for category shieldRequired: 5; Provided: 4 [28Apr2025 19:57:58.029] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheosis:ancient for category curios:charmRequired: 5; Provided: 2 [28Apr2025 19:57:58.029] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheosis:ancient for category curios:braceletRequired: 5; Provided: 2 [28Apr2025 19:57:58.029] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheosis:ancient for category curios:scrollRequired: 5; Provided: 2 [28Apr2025 19:57:58.029] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheosis:ancient for category curios:an_focusRequired: 5; Provided: 2 [28Apr2025 19:57:58.029] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheosis:ancient for category curios:necklaceRequired: 5; Provided: 2 [28Apr2025 19:57:58.029] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheosis:ancient for category curios:ringRequired: 5; Provided: 2 [28Apr2025 19:57:58.029] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheosis:ancient for category curios:spellstoneRequired: 5; Provided: 2 [28Apr2025 19:57:58.029] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheosis:ancient for category curios:talismanRequired: 5; Provided: 2 [28Apr2025 19:57:58.029] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheosis:ancient for category curios:beltRequired: 5; Provided: 2 [28Apr2025 19:57:58.029] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheosis:ancient for category curios:backRequired: 5; Provided: 4 [28Apr2025 19:57:58.029] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheosis:ancient for category curios:feetRequired: 5; Provided: 4 [28Apr2025 19:57:58.030] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheosis:ancient for category curios:headRequired: 5; Provided: 4 [28Apr2025 19:57:58.030] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheosis:ancient for category curios:bodyRequired: 5; Provided: 4 [28Apr2025 19:57:58.030] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheosis:ancient for category curios:handsRequired: 5; Provided: 4 [28Apr2025 19:57:58.030] [Render thread/INFO] [placebo/]: Starting sync for gems [28Apr2025 19:57:58.056] [Render thread/INFO] [Apotheosis : Adventure/]: Registered 57 gems. [28Apr2025 19:57:58.194] [Render thread/INFO] [com.teampotato.redirector.Redirector/]: Redirecting net/minecraft/world/phys/HitResult$Type [28Apr2025 19:58:00.099] [Render thread/INFO] [com.teampotato.redirector.Redirector/]: Redirecting io/socol/betterthirdperson/api/TickPhase [28Apr2025 19:58:00.385] [Render thread/INFO] [com.teampotato.redirector.Redirector/]: Redirecting io/wispforest/accessories/api/EquipmentChecking [28Apr2025 19:58:00.416] [Render thread/INFO] [com.teampotato.redirector.Redirector/]: Redirecting net/mehvahdjukaar/supplementaries/client/cannon/ShootingMode [28Apr2025 19:58:00.508] [Render thread/INFO] [com.teampotato.redirector.Redirector/]: Redirecting net/minecraft/world/scores/Team$CollisionRule [28Apr2025 19:58:00.553] [Render thread/INFO] [com.teampotato.redirector.Redirector/]: Redirecting com/corosus/watut/PlayerStatus$PlayerChatState [28Apr2025 19:58:00.810] [Render thread/INFO] [com.teampotato.redirector.Redirector/]: Redirecting tschipp/carryon/common/carry/CarryOnData$CarryType [28Apr2025 19:58:00.931] [Render thread/INFO] [com.teampotato.redirector.Redirector/]: Redirecting org/violetmoon/quark/api/event/UsageTickerEvent$Pass [28Apr2025 19:58:00.946] [Render thread/INFO] [ChunkBuilder/]: Stopping worker threads [28Apr2025 19:58:00.998] [Render thread/INFO] [ChunkBuilder/]: Started 10 worker threads [28Apr2025 19:58:01.170] [Render thread/INFO] [com.teampotato.redirector.Redirector/]: Redirecting me/jellysquid/mods/sodium/client/render/chunk/shader/ChunkFogMode [28Apr2025 19:58:01.176] [Render thread/INFO] [com.teampotato.redirector.Redirector/]: Redirecting me/jellysquid/mods/sodium/client/gl/shader/ShaderType [28Apr2025 19:58:01.439] [Render thread/INFO] [com.teampotato.redirector.Redirector/]: Redirecting me/jellysquid/mods/sodium/client/render/chunk/shader/ChunkShaderTextureSlot [28Apr2025 19:58:02.263] [Render thread/INFO] [com.teampotato.redirector.Redirector/]: Redirecting de/odysseus/ithaka/digraph/util/fas/FeedbackArcSetPolicy [28Apr2025 19:58:02.274] [Render thread/INFO] [com.teampotato.redirector.Redirector/]: Redirecting net/irisshaders/iris/shaderpack/properties/ParticleRenderingSettings [28Apr2025 19:58:02.446] [Render thread/INFO] [com.teampotato.redirector.Redirector/]: Redirecting glitchcore/event/client/LevelRenderEvent$Stage [28Apr2025 19:58:02.449] [Render thread/INFO] [com.teampotato.redirector.Redirector/]: Redirecting twilightforest/client/EffectRenders [28Apr2025 19:58:02.458] [Render thread/INFO] [com.teampotato.redirector.Redirector/]: Redirecting net/irisshaders/iris/shaderpack/properties/CloudSetting [28Apr2025 19:58:02.564] [Render thread/INFO] [com.teampotato.redirector.Redirector/]: Redirecting dev/kosmx/playerAnim/api/firstPerson/FirstPersonMode [28Apr2025 19:58:02.576] [Render thread/INFO] [com.teampotato.redirector.Redirector/]: Redirecting net/minecraft/client/renderer/ItemInHandRenderer$HandRenderSelection [28Apr2025 19:58:02.615] [Render thread/INFO] [com.teampotato.redirector.Redirector/]: Redirecting traben/entity_model_features/models/animation/EMFAttachments [28Apr2025 19:58:02.628] [Render thread/INFO] [com.teampotato.redirector.Redirector/]: Redirecting dev/tr7zw/skinlayers/versionless/util/Direction [28Apr2025 19:58:02.629] [Render thread/INFO] [com.teampotato.redirector.Redirector/]: Redirecting dev/tr7zw/skinlayers/versionless/util/Direction$Axis [28Apr2025 19:58:02.661] [Render thread/INFO] [com.teampotato.redirector.Redirector/]: Redirecting traben/entity_texture_features/config/screens/skin/ETFConfigScreenSkinTool$NoseType [28Apr2025 19:58:02.716] [Render thread/INFO] [com.teampotato.redirector.Redirector/]: Redirecting net/blay09/mods/balm/api/event/client/GuiDrawEvent$Element [28Apr2025 19:58:02.856] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Reloading radar icon resources... [28Apr2025 19:58:02.875] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for aether:cockatrice [28Apr2025 19:58:02.875] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for aether:evil_whirlwind [28Apr2025 19:58:02.876] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for aether:mimic [28Apr2025 19:58:02.876] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for aether:moa [28Apr2025 19:58:02.876] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for aether:whirlwind [28Apr2025 19:58:02.877] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for alexsmobs:alligator_snapping_turtle [28Apr2025 19:58:02.877] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for alexsmobs:anaconda [28Apr2025 19:58:02.877] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for alexsmobs:anaconda_part [28Apr2025 19:58:02.877] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for alexsmobs:anteater [28Apr2025 19:58:02.877] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for alexsmobs:bald_eagle [28Apr2025 19:58:02.878] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for alexsmobs:banana_slug [28Apr2025 19:58:02.878] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for alexsmobs:bison [28Apr2025 19:58:02.878] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for alexsmobs:blobfish [28Apr2025 19:58:02.878] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for alexsmobs:blue_jay [28Apr2025 19:58:02.878] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for alexsmobs:bone_serpent [28Apr2025 19:58:02.878] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for alexsmobs:bone_serpent_part [28Apr2025 19:58:02.878] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for alexsmobs:bunfungus [28Apr2025 19:58:02.878] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for alexsmobs:cachalot_whale [28Apr2025 19:58:02.878] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for alexsmobs:caiman [28Apr2025 19:58:02.879] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for alexsmobs:capuchin_monkey [28Apr2025 19:58:02.879] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for alexsmobs:catfish [28Apr2025 19:58:02.879] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for alexsmobs:centipede_body [28Apr2025 19:58:02.879] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for alexsmobs:centipede_head [28Apr2025 19:58:02.879] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for alexsmobs:centipede_tail [28Apr2025 19:58:02.879] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for alexsmobs:cockroach [28Apr2025 19:58:02.879] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for alexsmobs:comb_jelly [28Apr2025 19:58:02.879] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for alexsmobs:cosmaw [28Apr2025 19:58:02.879] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for alexsmobs:cosmic_cod [28Apr2025 19:58:02.879] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for alexsmobs:crimson_mosquito [28Apr2025 19:58:02.879] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for alexsmobs:crocodile [28Apr2025 19:58:02.879] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for alexsmobs:crow [28Apr2025 19:58:02.879] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for alexsmobs:devils_hole_pupfish [28Apr2025 19:58:02.879] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for alexsmobs:dropbear [28Apr2025 19:58:02.880] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for alexsmobs:elephant [28Apr2025 19:58:02.880] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for alexsmobs:emu [28Apr2025 19:58:02.880] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for alexsmobs:endergrade [28Apr2025 19:58:02.880] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for alexsmobs:enderiophage [28Apr2025 19:58:02.880] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for alexsmobs:farseer [28Apr2025 19:58:02.880] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for alexsmobs:flutter [28Apr2025 19:58:02.880] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for alexsmobs:fly [28Apr2025 19:58:02.880] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for alexsmobs:flying_fish [28Apr2025 19:58:02.880] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for alexsmobs:frilled_shark [28Apr2025 19:58:02.880] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for alexsmobs:froststalker [28Apr2025 19:58:02.880] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for alexsmobs:gazelle [28Apr2025 19:58:02.880] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for alexsmobs:gelada_monkey [28Apr2025 19:58:02.880] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for alexsmobs:giant_squid [28Apr2025 19:58:02.880] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for alexsmobs:gorilla [28Apr2025 19:58:02.880] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for alexsmobs:grizzly_bear [28Apr2025 19:58:02.881] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for alexsmobs:guster [28Apr2025 19:58:02.881] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for alexsmobs:hammerhead_shark [28Apr2025 19:58:02.881] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for alexsmobs:hummingbird [28Apr2025 19:58:02.881] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for alexsmobs:jerboa [28Apr2025 19:58:02.881] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for alexsmobs:kangaroo [28Apr2025 19:58:02.881] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for alexsmobs:komodo_dragon [28Apr2025 19:58:02.881] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for alexsmobs:laviathan [28Apr2025 19:58:02.881] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for alexsmobs:leafcutter_ant [28Apr2025 19:58:02.881] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for alexsmobs:lobster [28Apr2025 19:58:02.881] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for alexsmobs:maned_wolf [28Apr2025 19:58:02.881] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for alexsmobs:mantis_shrimp [28Apr2025 19:58:02.881] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for alexsmobs:mimic_octopus [28Apr2025 19:58:02.881] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for alexsmobs:mimicube [28Apr2025 19:58:02.881] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for alexsmobs:moose [28Apr2025 19:58:02.881] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for alexsmobs:mudskipper [28Apr2025 19:58:02.882] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for alexsmobs:mungus [28Apr2025 19:58:02.882] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for alexsmobs:murmur [28Apr2025 19:58:02.882] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for alexsmobs:murmur_head [28Apr2025 19:58:02.882] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for alexsmobs:orca [28Apr2025 19:58:02.882] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for alexsmobs:platypus [28Apr2025 19:58:02.882] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for alexsmobs:potoo [28Apr2025 19:58:02.882] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for alexsmobs:raccoon [28Apr2025 19:58:02.882] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for alexsmobs:rain_frog [28Apr2025 19:58:02.882] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for alexsmobs:rattlesnake [28Apr2025 19:58:02.882] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for alexsmobs:rhinoceros [28Apr2025 19:58:02.882] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for alexsmobs:roadrunner [28Apr2025 19:58:02.882] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for alexsmobs:rocky_roller [28Apr2025 19:58:02.882] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for alexsmobs:sea_bear [28Apr2025 19:58:02.882] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for alexsmobs:seagull [28Apr2025 19:58:02.883] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for alexsmobs:seal [28Apr2025 19:58:02.883] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for alexsmobs:shoebill [28Apr2025 19:58:02.883] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for alexsmobs:skelewag [28Apr2025 19:58:02.883] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for alexsmobs:skreecher [28Apr2025 19:58:02.883] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for alexsmobs:skunk [28Apr2025 19:58:02.883] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for alexsmobs:snow_leopard [28Apr2025 19:58:02.883] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for alexsmobs:soul_vulture [28Apr2025 19:58:02.883] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for alexsmobs:spectre [28Apr2025 19:58:02.883] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for alexsmobs:straddler [28Apr2025 19:58:02.883] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for alexsmobs:stradpole [28Apr2025 19:58:02.883] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for alexsmobs:sugar_glider [28Apr2025 19:58:02.883] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for alexsmobs:sunbird [28Apr2025 19:58:02.883] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for alexsmobs:tarantula_hawk [28Apr2025 19:58:02.883] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for alexsmobs:tasmanian_devil [28Apr2025 19:58:02.883] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for alexsmobs:terrapin [28Apr2025 19:58:02.884] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for alexsmobs:tiger [28Apr2025 19:58:02.884] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for alexsmobs:toucan [28Apr2025 19:58:02.884] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for alexsmobs:triops [28Apr2025 19:58:02.884] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for alexsmobs:tusklin [28Apr2025 19:58:02.884] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for alexsmobs:underminer [28Apr2025 19:58:02.884] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for alexsmobs:void_worm [28Apr2025 19:58:02.884] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for alexsmobs:void_worm_part [28Apr2025 19:58:02.884] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for alexsmobs:warped_mosco [28Apr2025 19:58:02.884] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for alexsmobs:warped_toad [28Apr2025 19:58:02.884] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for betterend:cubozoa [28Apr2025 19:58:02.884] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for betterend:dragonfly [28Apr2025 19:58:02.884] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for betterend:end_fish [28Apr2025 19:58:02.885] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for betterend:end_slime [28Apr2025 19:58:02.885] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for betterend:silk_moth [28Apr2025 19:58:02.885] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for betternether:firefly [28Apr2025 19:58:02.885] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for betternether:hydrogen_jellyfish [28Apr2025 19:58:02.885] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for betternether:naga [28Apr2025 19:58:02.889] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for cataclysm:amethyst_crab [28Apr2025 19:58:02.889] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for cataclysm:ancient_remnant [28Apr2025 19:58:02.889] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for cataclysm:coral_golem [28Apr2025 19:58:02.889] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for cataclysm:coralssus [28Apr2025 19:58:02.889] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for cataclysm:deepling [28Apr2025 19:58:02.889] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for cataclysm:deepling_angler [28Apr2025 19:58:02.889] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for cataclysm:deepling_brute [28Apr2025 19:58:02.890] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for cataclysm:deepling_priest [28Apr2025 19:58:02.890] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for cataclysm:deepling_warlock [28Apr2025 19:58:02.890] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for cataclysm:ender_golem [28Apr2025 19:58:02.890] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for cataclysm:ender_guardian [28Apr2025 19:58:02.890] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for cataclysm:endermaptera [28Apr2025 19:58:02.890] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for cataclysm:ignis [28Apr2025 19:58:02.890] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for cataclysm:ignited_berserker [28Apr2025 19:58:02.890] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for cataclysm:ignited_revenant [28Apr2025 19:58:02.890] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for cataclysm:kobolediator [28Apr2025 19:58:02.890] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for cataclysm:koboleton [28Apr2025 19:58:02.890] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for cataclysm:lionfish [28Apr2025 19:58:02.890] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for cataclysm:modern_remnant [28Apr2025 19:58:02.890] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for cataclysm:nameless_sorcerer [28Apr2025 19:58:02.890] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for cataclysm:netherite_monstrosity [28Apr2025 19:58:02.890] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for cataclysm:the_baby_leviathan [28Apr2025 19:58:02.891] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for cataclysm:the_harbinger [28Apr2025 19:58:02.891] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for cataclysm:the_leviathan [28Apr2025 19:58:02.897] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for cataclysm:the_prowler [28Apr2025 19:58:02.897] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for cataclysm:the_watcher [28Apr2025 19:58:02.898] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for cataclysm:wadjet [28Apr2025 19:58:02.898] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for crabbersdelight:crab [28Apr2025 19:58:02.898] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for deeperdarker:sculk_centipede [28Apr2025 19:58:02.899] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for deeperdarker:sculk_leech [28Apr2025 19:58:02.899] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for deeperdarker:sculk_snapper [28Apr2025 19:58:02.899] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for deeperdarker:shattered [28Apr2025 19:58:02.899] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for deeperdarker:shriek_worm [28Apr2025 19:58:02.899] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for deeperdarker:stalker [28Apr2025 19:58:02.900] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for goodending:firefly_swarm [28Apr2025 19:58:02.900] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for goodending:marsh [28Apr2025 19:58:02.905] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for minecraft:creeper [28Apr2025 19:58:02.905] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for minecraft:enderman [28Apr2025 19:58:02.906] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for minecraft:piglin [28Apr2025 19:58:02.906] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for minecraft:piglin_brute [28Apr2025 19:58:02.907] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for minecraft:zombified_piglin [28Apr2025 19:58:02.907] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for outer_end:entombed [28Apr2025 19:58:02.907] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for outer_end:himmelite [28Apr2025 19:58:02.907] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for outer_end:purpur_golem [28Apr2025 19:58:02.907] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for outer_end:sinker [28Apr2025 19:58:02.907] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for outer_end:stalker [28Apr2025 19:58:02.909] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Reloaded radar icon resources! [28Apr2025 19:58:02.947] [Render thread/INFO] [com.teampotato.redirector.Redirector/]: Redirecting net/minecraft/world/level/chunk/LevelChunk$EntityCreationType [28Apr2025 19:58:02.951] [Render thread/INFO] [com.teampotato.redirector.Redirector/]: Redirecting fuzs/overflowingbars/client/handler/HealthBarRenderer$HeartType [28Apr2025 19:58:02.997] [Render thread/INFO] [inventoryhud/]: Curios has been initialized with 20 slot(s) after 1 tries [28Apr2025 19:58:03.047] [Render thread/INFO] [com.teampotato.redirector.Redirector/]: Redirecting fi/dy/masa/malilib/gui/Message$MessageType [28Apr2025 19:58:13.337] [CullThread/INFO] [com.teampotato.redirector.Redirector/]: Redirecting com/logisticscraft/occlusionculling/OcclusionCullingInstance$Relative [28Apr2025 19:58:38.795] [Render thread/INFO] [mixin/]: Mixing client.MixinGuiMessageTag from mixins/common/nochatreports.mixins.json into net.minecraft.client.GuiMessageTag [28Apr2025 19:58:39.613] [Render thread/INFO] [net.minecraft.client.gui.components.ChatComponent/]: [CHAT] Unable to open Quest GUI: no quest book data received from server! [28Apr2025 19:58:40.386] [Render thread/INFO] [net.minecraft.client.gui.components.ChatComponent/]: [CHAT] - Check that FTB Quests and FTB Teams are installed on the server [28Apr2025 19:58:40.386] [Render thread/INFO] [net.minecraft.client.gui.components.ChatComponent/]: [CHAT]   and that no server-side errors were logged when you connected. [28Apr2025 19:58:40.386] [Render thread/ERROR] [toni.ftbquestsfreezefix.FTBQuestsFreezeFix/]: [FTB Quests Freeze Fix] ERROR! Could not get FTB Quests GUI! [28Apr2025 19:58:50.284] [Render thread/INFO] [com.teampotato.redirector.Redirector/]: Redirecting xaero/hud/minimap/compass/render/CardinalDirection [28Apr2025 19:59:24.781] [Render thread/INFO] [xaero.map.WorldMap/]: Finalizing world map session... [28Apr2025 19:59:24.782] [Thread-42/INFO] [xaero.map.WorldMap/]: World map force-cleaned! [28Apr2025 19:59:24.803] [Render thread/INFO] [xaero.map.WorldMap/]: World map session finalized. [28Apr2025 19:59:24.803] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Xaero hud session finalized. [28Apr2025 19:59:24.805] [Render thread/INFO] [fr.rakambda.fallingtree.common.network.PacketUtils/]: Disconnected from server, resetting proxy config values [28Apr2025 19:59:24.807] [Render thread/INFO] [mezz.jei.forge.startup.StartEventObserver/]: JEI StartEventObserver received class net.minecraftforge.client.event.ClientPlayerNetworkEvent$LoggingOut [28Apr2025 19:59:24.807] [Render thread/INFO] [mezz.jei.forge.startup.StartEventObserver/]: JEI StartEventObserver transitioning state from ENABLED to DISABLED [28Apr2025 19:59:24.808] [Render thread/INFO] [com.teampotato.redirector.Redirector/]: Redirecting tocraft/walkers/api/platform/ApiLevel [28Apr2025 19:59:24.810] [Render thread/INFO] [inventoryhud/]: Curios disabled [28Apr2025 19:59:24.810] [Render thread/INFO] [Framework/]: Unloading synced configs from server [28Apr2025 19:59:24.811] [Render thread/INFO] [Framework/]: Sending config unload event for backpacked.server.toml [28Apr2025 19:59:24.848] [Render thread/INFO] [voicechat/]: [voicechat] Clearing audio channels [28Apr2025 19:59:25.986] [Render thread/INFO] [com.teampotato.redirector.Redirector/]: Redirecting net/minecraft/world/level/lighting/LayerLightEventListener$DummyLightLayerEventListener [28Apr2025 19:59:25.988] [Render thread/INFO] [ChunkBuilder/]: Stopping worker threads [28Apr2025 19:59:26.000] [Render thread/INFO] [Entity Texture Features/]: [ETF]: emissive suffixes loaded: {_e}. [28Apr2025 19:59:26.002] [Render thread/INFO] [de.keksuccino.fancymenu.customization.layer.ScreenCustomizationLayerHandler/]: [FANCYMENU] ScreenCustomizationLayer registered: disconnected_screen [28Apr2025 19:59:26.024] [Render thread/INFO] [HammerLib/]: Reset 0 configs to their client-side state. [28Apr2025 19:59:30.962] [Render thread/WARN] [com.sunekaer.sdrp.discord.RPClient/]: Attempted to add context to update queue, operation failed due to a full list, something is likely wrong here or the discord client isn't present [28Apr2025 19:59:30.962] [Render thread/WARN] [com.sunekaer.sdrp.discord.RPClient/]: Attempted to add context to update queue, operation failed due to a full list, something is likely wrong here or the discord client isn't present [28Apr2025 19:59:31.122] [Render thread/WARN] [com.sunekaer.sdrp.discord.RPClient/]: Attempted to add context to update queue, operation failed due to a full list, something is likely wrong here or the discord client isn't present [28Apr2025 19:59:31.122] [Render thread/WARN] [com.sunekaer.sdrp.discord.RPClient/]: Attempted to add context to update queue, operation failed due to a full list, something is likely wrong here or the discord client isn't present [28Apr2025 19:59:31.122] [Render thread/WARN] [com.sunekaer.sdrp.discord.RPClient/]: Attempted to add context to update queue, operation failed due to a full list, something is likely wrong here or the discord client isn't present [28Apr2025 19:59:31.234] [Render thread/WARN] [com.sunekaer.sdrp.discord.RPClient/]: Attempted to add context to update queue, operation failed due to a full list, something is likely wrong here or the discord client isn't present [28Apr2025 19:59:31.234] [Render thread/WARN] [com.sunekaer.sdrp.discord.RPClient/]: Attempted to add context to update queue, operation failed due to a full list, something is likely wrong here or the discord client isn't present [28Apr2025 19:59:31.235] [Render thread/WARN] [com.sunekaer.sdrp.discord.RPClient/]: Attempted to add context to update queue, operation failed due to a full list, something is likely wrong here or the discord client isn't present [28Apr2025 19:59:33.225] [Render thread/WARN] [com.sunekaer.sdrp.discord.RPClient/]: Attempted to add context to update queue, operation failed due to a full list, something is likely wrong here or the discord client isn't present [28Apr2025 19:59:33.226] [Render thread/WARN] [com.sunekaer.sdrp.discord.RPClient/]: Attempted to add context to update queue, operation failed due to a full list, something is likely wrong here or the discord client isn't present [28Apr2025 19:59:33.226] [Render thread/WARN] [com.sunekaer.sdrp.discord.RPClient/]: Attempted to add context to update queue, operation failed due to a full list, something is likely wrong here or the discord client isn't present [28Apr2025 19:59:57.041] [Render thread/INFO] [de.keksuccino.fancymenu.customization.layer.ScreenCustomizationLayerHandler/]: [FANCYMENU] ScreenCustomizationLayer registered: edit_server_screen [28Apr2025 19:59:57.049] [Render thread/INFO] [com.teampotato.redirector.Redirector/]: Redirecting com/mojang/realmsclient/client/Ping$Region [28Apr2025 19:59:57.050] [Render thread/INFO] [com.teampotato.redirector.Redirector/]: Redirecting com/mojang/realmsclient/util/LevelType [28Apr2025 20:00:02.674] [Render thread/INFO] [fr.rakambda.fallingtree.common.network.PacketUtils/]: Disconnected from server, resetting proxy config values [28Apr2025 20:00:02.675] [Render thread/INFO] [inventoryhud/]: Curios disabled [28Apr2025 20:00:02.691] [Render thread/INFO] [Entity Texture Features/]: [ETF]: emissive suffixes loaded: {_e}. [28Apr2025 20:00:02.693] [Render thread/INFO] [net.minecraft.client.gui.screens.ConnectScreen/]: Connecting to serveurdeladiesman217.bh-games.com, 25565 [28Apr2025 20:00:07.511] [Render thread/INFO] [org.sinytra.connector.mod.compat.RegistryUtil/]: Connector found 9 items to retain in registry minecraft:particle_type [28Apr2025 20:00:08.567] [Netty Client IO #14/INFO] [Puzzles Lib/]: Reloading server config for netherchested [28Apr2025 20:00:08.569] [Netty Client IO #14/INFO] [Puzzles Lib/]: Reloading server config for puzzlesapi [28Apr2025 20:00:08.571] [Netty Client IO #14/INFO] [Puzzles Lib/]: Reloading server config for leavesbegone [28Apr2025 20:00:08.572] [Netty Client IO #14/INFO] [Puzzles Lib/]: Reloading server config for illagerinvasion [28Apr2025 20:00:08.576] [Netty Client IO #14/INFO] [Puzzles Lib/]: Reloading server config for easyanvils [28Apr2025 20:00:08.577] [Netty Client IO #14/INFO] [Puzzles Lib/]: Reloading server config for barteringstation [28Apr2025 20:00:08.583] [Netty Client IO #14/INFO] [Puzzles Lib/]: Reloading server config for magnumtorch [28Apr2025 20:00:08.587] [Netty Client IO #14/INFO] [Puzzles Lib/]: Reloading server config for enchantinginfuser [28Apr2025 20:00:08.588] [Netty Client IO #14/INFO] [Puzzles Lib/]: Reloading server config for tradingpost [28Apr2025 20:00:08.589] [Netty Client IO #14/INFO] [Puzzles Lib/]: Reloading server config for easymagic [28Apr2025 20:00:08.966] [Render thread/INFO] [Framework/]: Loading synced config from server: backpacked:server [28Apr2025 20:00:09.210] [Netty Client IO #14/INFO] [net.minecraftforge.network.NetworkHooks/]: Connected to a modded server. [28Apr2025 20:00:09.210] [Netty Client IO #14/INFO] [snownee.kiwi.Kiwi/]: Canceling Microsoft telemetry [28Apr2025 20:00:09.307] [Render thread/INFO] [xaero.map.WorldMap/]: New world map session initialized! [28Apr2025 20:00:09.310] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: New Xaero hud session initialized! [28Apr2025 20:00:09.359] [Render thread/INFO] [Oculus/]: Reloading pipeline on dimension change: NamespacedId{namespace='minecraft', name='overworld'} => NamespacedId{namespace='minecraft', name='overworld'} [28Apr2025 20:00:09.359] [Render thread/INFO] [Oculus/]: Destroying pipeline NamespacedId{namespace='minecraft', name='overworld'} [28Apr2025 20:00:09.359] [Render thread/INFO] [Oculus/]: Creating pipeline for dimension NamespacedId{namespace='minecraft', name='overworld'} [28Apr2025 20:00:09.375] [Render thread/INFO] [ChunkBuilder/]: Started 10 worker threads [28Apr2025 20:00:09.392] [Render thread/INFO] [mezz.jei.forge.startup.StartEventObserver/]: JEI StartEventObserver received class net.minecraftforge.client.event.ClientPlayerNetworkEvent$LoggingIn [28Apr2025 20:00:09.392] [Render thread/INFO] [mezz.jei.forge.startup.StartEventObserver/]: JEI StartEventObserver transitioning state from DISABLED to ENABLED [28Apr2025 20:00:09.403] [Render thread/INFO] [voicechat/]: [voicechat] Sending secret request to the server [28Apr2025 20:00:09.433] [Render thread/INFO] [Sound Physics - General/]: Initializing sound physics for voice chat audio [28Apr2025 20:00:09.433] [Render thread/INFO] [Sound Physics - General/]: Initializing Sound Physics [28Apr2025 20:00:09.433] [Render thread/INFO] [Sound Physics - General/]: EFX Extension recognized [28Apr2025 20:00:09.433] [Render thread/INFO] [Sound Physics - General/]: Max auxiliary sends: 2 [28Apr2025 20:00:09.434] [Render thread/INFO] [Sound Physics - General/]: Aux slot 1 created [28Apr2025 20:00:09.434] [Render thread/INFO] [Sound Physics - General/]: Aux slot 2 created [28Apr2025 20:00:09.434] [Render thread/INFO] [Sound Physics - General/]: Aux slot 3 created [28Apr2025 20:00:09.434] [Render thread/INFO] [Sound Physics - General/]: Aux slot 4 created [28Apr2025 20:00:09.435] [Render thread/INFO] [Sound Physics - General/]: EFX ready [28Apr2025 20:00:09.444] [Render thread/WARN] [Continuity/]: Unknown biome 'minecraft:snowy_mountains' [28Apr2025 20:00:09.444] [Render thread/WARN] [Continuity/]: Unknown biome 'minecraft:snowy_tundra' [28Apr2025 20:00:09.444] [Render thread/WARN] [Continuity/]: Unknown biome 'minecraft:wooded_mountains' [28Apr2025 20:00:09.444] [Render thread/WARN] [Continuity/]: Unknown biome 'minecraft:' [28Apr2025 20:00:09.444] [Render thread/WARN] [Continuity/]: Unknown biome 'minecraft:snowy_taiga_mountains' [28Apr2025 20:00:09.444] [Render thread/WARN] [Continuity/]: Unknown biome 'minecraft:gravelly_mountains' [28Apr2025 20:00:09.444] [Render thread/WARN] [Continuity/]: Unknown biome 'minecraft:wooded_hills' [28Apr2025 20:00:09.444] [Render thread/WARN] [Continuity/]: Unknown biome 'minecraft:mountain_edge' [28Apr2025 20:00:09.444] [Render thread/WARN] [Continuity/]: Unknown biome 'minecraft:mountains' [28Apr2025 20:00:09.444] [Render thread/INFO] [org.betterx.worlds.together.util.Logger/]: [bclib] Auto-Sync was disabled on the client. [28Apr2025 20:00:09.475] [Render thread/INFO] [ModdingLegacy/blue_skies/]: Recieved ToolHandleTypeManager from the server [28Apr2025 20:00:09.476] [Render thread/INFO] [ModdingLegacy/blue_skies/]: Recieved SnowcapOvenFreezingManager from the server [28Apr2025 20:00:09.476] [Render thread/INFO] [ModdingLegacy/blue_skies/]: Recieved HorizoniteForgeFuelManager from the server [28Apr2025 20:00:09.476] [Render thread/INFO] [ModdingLegacy/blue_skies/]: Recieved AlchemyRecipeManager from the server [28Apr2025 20:00:09.476] [Render thread/INFO] [ModdingLegacy/blue_skies/]: Recieved JournalEntryManager from the server [28Apr2025 20:00:09.477] [Render thread/INFO] [ModdingLegacy/blue_skies/]: Recieved JournalSectionManager from the server [28Apr2025 20:00:09.477] [Render thread/INFO] [ModdingLegacy/blue_skies/]: Recieved JournalRequirementManager from the server [28Apr2025 20:00:09.480] [Render thread/INFO] [Supplementaries/]: Synced Flute Songs [28Apr2025 20:00:09.480] [Render thread/INFO] [Supplementaries/]: Synced Captured Mobs settings [28Apr2025 20:00:09.480] [Render thread/INFO] [Supplementaries/]: Synced Globe data [28Apr2025 20:00:09.480] [Render thread/INFO] [Supplementaries/]: Synced Hourglass data [28Apr2025 20:00:09.480] [Render thread/INFO] [placebo/]: Starting sync for enchanting_stats [28Apr2025 20:00:09.481] [Render thread/INFO] [Apotheosis : Enchantment/]: Registered 39 enchanting_stats. [28Apr2025 20:00:09.481] [Render thread/INFO] [placebo/]: Starting sync for rarities [28Apr2025 20:00:09.482] [Render thread/INFO] [Apotheosis : Adventure/]: Registered 9 rarities. [28Apr2025 20:00:09.482] [Render thread/INFO] [placebo/]: Starting sync for affixes [28Apr2025 20:00:09.490] [Render thread/INFO] [Apotheosis : Adventure/]: Registered 179 affixes. [28Apr2025 20:00:09.491] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheosis:uncommon for category curios:charmRequired: 3; Provided: 2 [28Apr2025 20:00:09.492] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheosis:uncommon for category curios:braceletRequired: 3; Provided: 2 [28Apr2025 20:00:09.492] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheosis:uncommon for category curios:scrollRequired: 3; Provided: 2 [28Apr2025 20:00:09.492] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheosis:uncommon for category curios:an_focusRequired: 3; Provided: 2 [28Apr2025 20:00:09.492] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheosis:uncommon for category curios:necklaceRequired: 3; Provided: 2 [28Apr2025 20:00:09.492] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheosis:uncommon for category curios:ringRequired: 3; Provided: 2 [28Apr2025 20:00:09.492] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheosis:uncommon for category curios:spellstoneRequired: 3; Provided: 2 [28Apr2025 20:00:09.492] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheosis:uncommon for category curios:talismanRequired: 3; Provided: 2 [28Apr2025 20:00:09.492] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheosis:uncommon for category curios:beltRequired: 3; Provided: 2 [28Apr2025 20:00:09.493] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheosis:rare for category curios:charmRequired: 3; Provided: 2 [28Apr2025 20:00:09.493] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheosis:rare for category curios:braceletRequired: 3; Provided: 2 [28Apr2025 20:00:09.493] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheosis:rare for category curios:scrollRequired: 3; Provided: 2 [28Apr2025 20:00:09.493] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheosis:rare for category curios:an_focusRequired: 3; Provided: 2 [28Apr2025 20:00:09.493] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheosis:rare for category curios:necklaceRequired: 3; Provided: 2 [28Apr2025 20:00:09.493] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheosis:rare for category curios:ringRequired: 3; Provided: 2 [28Apr2025 20:00:09.493] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheosis:rare for category curios:spellstoneRequired: 3; Provided: 2 [28Apr2025 20:00:09.493] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheosis:rare for category curios:talismanRequired: 3; Provided: 2 [28Apr2025 20:00:09.493] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheosis:rare for category curios:beltRequired: 3; Provided: 2 [28Apr2025 20:00:09.494] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheosis:epic for category curios:charmRequired: 4; Provided: 2 [28Apr2025 20:00:09.494] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheosis:epic for category curios:braceletRequired: 4; Provided: 2 [28Apr2025 20:00:09.494] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheosis:epic for category curios:scrollRequired: 4; Provided: 2 [28Apr2025 20:00:09.494] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheosis:epic for category curios:an_focusRequired: 4; Provided: 2 [28Apr2025 20:00:09.494] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheosis:epic for category curios:necklaceRequired: 4; Provided: 2 [28Apr2025 20:00:09.494] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheosis:epic for category curios:ringRequired: 4; Provided: 2 [28Apr2025 20:00:09.494] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheosis:epic for category curios:spellstoneRequired: 4; Provided: 2 [28Apr2025 20:00:09.494] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheosis:epic for category curios:talismanRequired: 4; Provided: 2 [28Apr2025 20:00:09.494] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheosis:epic for category curios:beltRequired: 4; Provided: 2 [28Apr2025 20:00:09.497] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheosis:mythic for category curios:charmRequired: 4; Provided: 2 [28Apr2025 20:00:09.497] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheosis:mythic for category curios:braceletRequired: 4; Provided: 2 [28Apr2025 20:00:09.497] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheosis:mythic for category curios:scrollRequired: 4; Provided: 2 [28Apr2025 20:00:09.497] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheosis:mythic for category curios:an_focusRequired: 4; Provided: 2 [28Apr2025 20:00:09.497] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheosis:mythic for category curios:necklaceRequired: 4; Provided: 2 [28Apr2025 20:00:09.497] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheosis:mythic for category curios:ringRequired: 4; Provided: 2 [28Apr2025 20:00:09.498] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheosis:mythic for category curios:spellstoneRequired: 4; Provided: 2 [28Apr2025 20:00:09.498] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheosis:mythic for category curios:talismanRequired: 4; Provided: 2 [28Apr2025 20:00:09.498] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheosis:mythic for category curios:beltRequired: 4; Provided: 2 [28Apr2025 20:00:09.500] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheotic_additions:esoteric for category helmetRequired: 5; Provided: 4 [28Apr2025 20:00:09.500] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheotic_additions:esoteric for category chestplateRequired: 5; Provided: 4 [28Apr2025 20:00:09.500] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheotic_additions:esoteric for category leggingsRequired: 5; Provided: 4 [28Apr2025 20:00:09.500] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheotic_additions:esoteric for category bootsRequired: 5; Provided: 4 [28Apr2025 20:00:09.500] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheotic_additions:esoteric for category shieldRequired: 5; Provided: 4 [28Apr2025 20:00:09.500] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheotic_additions:esoteric for category curios:charmRequired: 5; Provided: 2 [28Apr2025 20:00:09.500] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheotic_additions:esoteric for category curios:braceletRequired: 5; Provided: 2 [28Apr2025 20:00:09.500] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheotic_additions:esoteric for category curios:scrollRequired: 5; Provided: 2 [28Apr2025 20:00:09.500] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheotic_additions:esoteric for category curios:an_focusRequired: 5; Provided: 2 [28Apr2025 20:00:09.500] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheotic_additions:esoteric for category curios:necklaceRequired: 5; Provided: 2 [28Apr2025 20:00:09.500] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheotic_additions:esoteric for category curios:ringRequired: 5; Provided: 2 [28Apr2025 20:00:09.500] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheotic_additions:esoteric for category curios:spellstoneRequired: 5; Provided: 2 [28Apr2025 20:00:09.500] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheotic_additions:esoteric for category curios:talismanRequired: 5; Provided: 2 [28Apr2025 20:00:09.501] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheotic_additions:esoteric for category curios:beltRequired: 5; Provided: 2 [28Apr2025 20:00:09.501] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheotic_additions:esoteric for category curios:backRequired: 5; Provided: 4 [28Apr2025 20:00:09.501] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheotic_additions:esoteric for category curios:feetRequired: 5; Provided: 4 [28Apr2025 20:00:09.501] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheotic_additions:esoteric for category curios:headRequired: 5; Provided: 4 [28Apr2025 20:00:09.501] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheotic_additions:esoteric for category curios:bodyRequired: 5; Provided: 4 [28Apr2025 20:00:09.501] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheotic_additions:esoteric for category curios:handsRequired: 5; Provided: 4 [28Apr2025 20:00:09.501] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheotic_additions:esoteric for category bowRequired: 5; Provided: 4 [28Apr2025 20:00:09.501] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheotic_additions:esoteric for category crossbowRequired: 5; Provided: 4 [28Apr2025 20:00:09.501] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheotic_additions:esoteric for category heavy_weaponRequired: 5; Provided: 3 [28Apr2025 20:00:09.502] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheosis:ancient for category shieldRequired: 5; Provided: 4 [28Apr2025 20:00:09.502] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheosis:ancient for category curios:charmRequired: 5; Provided: 2 [28Apr2025 20:00:09.502] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheosis:ancient for category curios:braceletRequired: 5; Provided: 2 [28Apr2025 20:00:09.502] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheosis:ancient for category curios:scrollRequired: 5; Provided: 2 [28Apr2025 20:00:09.502] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheosis:ancient for category curios:an_focusRequired: 5; Provided: 2 [28Apr2025 20:00:09.502] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheosis:ancient for category curios:necklaceRequired: 5; Provided: 2 [28Apr2025 20:00:09.502] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheosis:ancient for category curios:ringRequired: 5; Provided: 2 [28Apr2025 20:00:09.502] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheosis:ancient for category curios:spellstoneRequired: 5; Provided: 2 [28Apr2025 20:00:09.502] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheosis:ancient for category curios:talismanRequired: 5; Provided: 2 [28Apr2025 20:00:09.502] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheosis:ancient for category curios:beltRequired: 5; Provided: 2 [28Apr2025 20:00:09.502] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheosis:ancient for category curios:backRequired: 5; Provided: 4 [28Apr2025 20:00:09.502] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheosis:ancient for category curios:feetRequired: 5; Provided: 4 [28Apr2025 20:00:09.502] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheosis:ancient for category curios:headRequired: 5; Provided: 4 [28Apr2025 20:00:09.502] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheosis:ancient for category curios:bodyRequired: 5; Provided: 4 [28Apr2025 20:00:09.502] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheosis:ancient for category curios:handsRequired: 5; Provided: 4 [28Apr2025 20:00:09.503] [Render thread/INFO] [placebo/]: Starting sync for gems [28Apr2025 20:00:09.523] [Render thread/INFO] [Apotheosis : Adventure/]: Registered 57 gems. [28Apr2025 20:00:09.687] [Render thread/INFO] [inventoryhud/]: Curios has been initialized with 20 slot(s) after 1 tries [28Apr2025 20:00:10.042] [Netty Client IO #14/WARN] [net.minecraftforge.network.filters.VanillaPacketSplitter/]: forge:split received out of order - inbound buffer not empty when receiving first [28Apr2025 20:01:57.187] [Render thread/INFO] [xaero.map.WorldMap/]: Finalizing world map session... [28Apr2025 20:01:57.187] [Thread-42/INFO] [xaero.map.WorldMap/]: World map force-cleaned! [28Apr2025 20:01:57.208] [Render thread/INFO] [xaero.map.WorldMap/]: World map session finalized. [28Apr2025 20:01:57.208] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Xaero hud session finalized. [28Apr2025 20:01:57.209] [Render thread/INFO] [fr.rakambda.fallingtree.common.network.PacketUtils/]: Disconnected from server, resetting proxy config values [28Apr2025 20:01:57.211] [Render thread/INFO] [mezz.jei.forge.startup.StartEventObserver/]: JEI StartEventObserver received class net.minecraftforge.client.event.ClientPlayerNetworkEvent$LoggingOut [28Apr2025 20:01:57.211] [Render thread/INFO] [mezz.jei.forge.startup.StartEventObserver/]: JEI StartEventObserver transitioning state from ENABLED to DISABLED [28Apr2025 20:01:57.212] [Render thread/INFO] [inventoryhud/]: Curios disabled [28Apr2025 20:01:57.212] [Render thread/INFO] [Framework/]: Unloading synced configs from server [28Apr2025 20:01:57.212] [Render thread/INFO] [Framework/]: Sending config unload event for backpacked.server.toml [28Apr2025 20:01:57.228] [Render thread/INFO] [voicechat/]: [voicechat] Clearing audio channels [28Apr2025 20:01:58.187] [Render thread/INFO] [ChunkBuilder/]: Stopping worker threads [28Apr2025 20:01:58.195] [Render thread/INFO] [Entity Texture Features/]: [ETF]: emissive suffixes loaded: {_e}. [28Apr2025 20:01:58.196] [Render thread/INFO] [HammerLib/]: Reset 0 configs to their client-side state. [28Apr2025 20:02:03.657] [Render thread/INFO] [net.minecraft.client.Minecraft/]: Stopping! [28Apr2025 20:02:03.973] [Render thread/INFO] [fr.rakambda.fallingtree.common.network.PacketUtils/]: Disconnected from server, resetting proxy config values [28Apr2025 20:02:03.976] [Render thread/INFO] [inventoryhud/]: Curios disabled [28Apr2025 20:02:03.984] [Render thread/INFO] [Entity Texture Features/]: [ETF]: emissive suffixes loaded: {_e}.    
    • mouseclicked event handler again. https://paste.ee/p/p5C057U7
  • Topics

×
×
  • Create New...

Important Information

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