Jump to content

Recommended Posts

Posted

Hey, I'm currently planning on adding blockstates to my mod, but I couldn't figure out how. I've tried following a tutorial for 1.11.2 but I got stuck at the point of registering them. Heres the code for the block I wrote and my registry code.

 

Block

Spoiler

package com.linesix.akhaten.common.blocks.building;

import com.linesix.akhaten.common.Reference;
import com.linesix.akhaten.common.blocks.BlockTypes;
import com.linesix.akhaten.common.blocks.BuildingBlocks;
import com.linesix.akhaten.common.blocks.Names;
import com.linesix.akhaten.util.Misc;
import net.minecraft.block.Block;
import net.minecraft.block.SoundType;
import net.minecraft.block.material.Material;
import net.minecraft.block.properties.PropertyEnum;
import net.minecraft.block.state.BlockStateContainer;
import net.minecraft.creativetab.CreativeTabs;
import net.minecraft.item.ItemStack;
import net.minecraft.util.NonNullList;

import com.linesix.akhaten.common.blocks.item.IMetaBlockName;
import net.minecraft.block.state.IBlockState;
import net.minecraft.block.properties.IProperty;

public class HartnellRoundel extends Block implements IMetaBlockName {

    public static final PropertyEnum TYPE = PropertyEnum.create("type", BlockTypes.HartnellRoundelTypes.class);

    public HartnellRoundel() { // Hartnell Roundel constructor

        super(Material.IRON);

        setUnlocalizedName(getUnlocalizedName());
        setRegistryName(Reference.RESOURCE_PREFIX + Names.Machines.Tardis.Roundels.hartnell_roundels);
        setCreativeTab(BuildingBlocks.buildblocktab);
        setSoundType(SoundType.METAL);
        //setDefaultState(this.blockState.getBaseState().withProperty(TYPE, BlockTypes.HartnellRoundelTypes.NORMAL));

    }

    @Override
    public String getUnlocalizedName() {

        return "tile." + Reference.RESOURCE_PREFIX + Names.Machines.Tardis.Roundels.hartnell_roundels;

    }

    // Block State related code below \/

    @Override
    protected BlockStateContainer createBlockState() {

        return new BlockStateContainer(this, new IProperty[] {TYPE});

    }

    @Override
    public int getMetaFromState(IBlockState state) {

        BlockTypes.HartnellRoundelTypes type = (BlockTypes.HartnellRoundelTypes) state.getValue(TYPE);

        return type.getID();

    }

    @Override
    public IBlockState getStateFromMeta(int meta) {

        return this.getDefaultState().withProperty(TYPE, BlockTypes.HartnellRoundelTypes.values()[meta]);

    }

    @Override
    public void getSubBlocks(CreativeTabs itemIn, NonNullList<ItemStack> items) {

        for(int i = 0; i < BlockTypes.HartnellRoundelTypes.values().length; i++) {

            items.add(new ItemStack(this, 1, i));

        }

    }

    @Override
    public String getSpecialName(ItemStack stack) {
        String unlocName = stack.getUnlocalizedName();
        int index = Misc.getIndexByVal(unlocName, BlockTypes.HartnellRoundelTypes.unlocNames);
        System.out.println(unlocName); // DEBUG
        return BlockTypes.HartnellRoundelTypes.values()[index].getName();
    }

}

 

 

Registry

Spoiler

package com.linesix.akhaten.common.blocks;

import com.google.common.base.Preconditions;
import com.linesix.akhaten.common.Reference;
import com.linesix.akhaten.common.blocks.building.HartnellRoundel;
import com.linesix.akhaten.common.blocks.building.Door;
import com.linesix.akhaten.tabs.TabBuilding;
import net.minecraft.block.Block;
import net.minecraft.client.renderer.block.model.ModelResourceLocation;
import net.minecraft.creativetab.CreativeTabs;
import net.minecraft.item.Item;
import net.minecraft.item.ItemBlock;
import net.minecraft.util.ResourceLocation;
import net.minecraftforge.client.event.ModelRegistryEvent;
import net.minecraftforge.client.model.ModelLoader;
import net.minecraftforge.event.RegistryEvent;
import net.minecraftforge.fml.common.Mod;
import net.minecraftforge.fml.common.eventhandler.SubscribeEvent;
import net.minecraftforge.registries.IForgeRegistry;

import java.util.HashSet;
import java.util.Set;

@Mod.EventBusSubscriber(modid = Reference.MODID)
public class BuildingBlocks {

    /*
     * Registration Handler of all Building Blocks
     *
     * Author: Felix Eckert (TheBertrahmPlays / Angry German)
     *
     */

    public static final Set<ItemBlock> ITEM_BLOCKS = new HashSet<>(); // Create a set for all item blocks

    public static CreativeTabs buildblocktab = new TabBuilding();

    private static Block[] blocks; // Create an array for all blocks

    // Creation of all Block-Variables below
    public static HartnellRoundel block_roundel;
    public static Door block_door;
    // End Creation of all Block-Variables

    public static void init() {

        Reference.logger.info("Initializing building-block-variables...");

        // Initialization of Block-Variables below
        try {

            block_roundel = new HartnellRoundel();
            block_door = new Door();

        } catch (Exception e) { // If theres an error whilst initializing any of the Variables, execute the code below

            throw e;

        } finally { // When everything is done, execute the code below

            Reference.logger.info("DONE!");

        }

        // End Initialization of Block-Variables

    }

    @SubscribeEvent
    public static void RegisterBlocks(final RegistryEvent.Register<Block> event) {

        final IForgeRegistry<Block> registry = event.getRegistry(); // Put the registry in a variable

        blocks = new Block[] { // Add all block vars in this array

                block_roundel,
                block_door

        };

        registry.registerAll(blocks); // Register all blocks at once

    }

    @SubscribeEvent
    public static void registerItemBlocks(final RegistryEvent.Register<Item> event) {

        final IForgeRegistry<Item> registry = event.getRegistry();

        final ItemBlock[] items = { // Put the registry in a variable

                new ItemBlock(block_roundel),
                new ItemBlock(block_door)

        };

        for (final ItemBlock item : items) {

            final Block block = item.getBlock(); // Get the ItemBlock

            final ResourceLocation registryName = Preconditions.checkNotNull(block.getRegistryName(),
                    "Block %s gas null registry name", block); // Get the registry name of the block (if it's not null)
            registry.register(item.setRegistryName(registryName)); // Set the registry name to content of variable
            // "registryName"

            ITEM_BLOCKS.add(item); // Finally add the item to The ITEM_BLOCKS set

        }

    }

    @SubscribeEvent
    public static void registerRenders(ModelRegistryEvent event) {

        for (final Block block : blocks) {

            registerRender(Item.getItemFromBlock(block));

        }

    }

    public static void registerRender(Item item) {

        ModelLoader.setCustomModelResourceLocation(item, 0,
                new ModelResourceLocation(item.getRegistryName(), "inventory"));

    }

}

 

If there is a newer / better way todo this, I'd be happy to use it

Posted (edited)
2 hours ago, Bertrahm said:

    @Override
    protected BlockStateContainer createBlockState() {

        return new BlockStateContainer(this, new IProperty[] {TYPE});

    }

Congratulations! You made a block with block states!

 

Now all you need to do is create a blockstate json file that tells the game what model to use for each state. It has the same file name as the registry name of the block (minus mod ID) that goes inside assets/modid/blockstates

 

Quote

        try {

            block_roundel = new HartnellRoundel();
            block_door = new Door();

        } catch (Exception e) { // If theres an error whilst initializing any of the Variables, execute the code below

            throw e;

        }

What? Why? If you're going to do fuckall with an error, why even catch it? Just let the game die. Further more, there should never BE errors here, if there are, you need to FIX THEM because THEY ARE BUGS. Exceptions are for things you cannot anticipate, such as trying to read a file off the disk and, oops, another process deleted it.

 

Quote

ITEM_BLOCKS.add(item); // Finally add the item to The ITEM_BLOCKS set

Why though? Why do you need this list? Do you ever do anything with it? Of course not because you can (and do) call Item.getItemFromBlock(block) later on.

Edited by Draco18s

Apparently I'm a complete and utter jerk and come to this forum just like to make fun of people, be confrontational, and make your personal life miserable.  If you think this is the case, JUST REPORT ME.  Otherwise you're just going to get reported when you reply to my posts and point it out, because odds are, I was trying to be nice.

 

Exception: If you do not understand Java, I WILL NOT HELP YOU and your thread will get locked.

 

DO NOT PM ME WITH PROBLEMS. No help will be given.

Posted

Thanks for your answer! So now I just have to create the blockstate JSON and the registration stays the same (I wasn't sure because I followed an outdated tutorial).

Posted
6 hours ago, Bertrahm said:

Thanks for your answer! So now I just have to create the blockstate JSON and the registration stays the same (I wasn't sure because I followed an outdated tutorial).

Yes, its handled automatically because of createBlockState(). Whatever it returns is what gets looked for in the blockstate file. Note that even a block without states still has a state. Its just an unnamed state with no properties, but the blockstate json file still has to map that block to a model. eg:

 

https://github.com/Draco18s/ReasonableRealism/blob/1.12.1/src/main/resources/assets/harderores/blockstates/sifter.json

Apparently I'm a complete and utter jerk and come to this forum just like to make fun of people, be confrontational, and make your personal life miserable.  If you think this is the case, JUST REPORT ME.  Otherwise you're just going to get reported when you reply to my posts and point it out, because odds are, I was trying to be nice.

 

Exception: If you do not understand Java, I WILL NOT HELP YOU and your thread will get locked.

 

DO NOT PM ME WITH PROBLEMS. No help will be given.

Posted

Ok, got another problem: My second blockstate is called

high_res

but in the blockstate JSON I don't get a inventory model nor the textures ( inventory and placed).

Here's my JSON and the Blocktype class:

Spoiler

package com.linesix.akhaten.common.blocks;

import com.linesix.akhaten.common.Reference;
import net.minecraft.util.IStringSerializable;

public class BlockTypes {

   /* This class contains sub-classes (enums) for Blocktypes
    *
    * Author: Felix Eckert ( TheBertrahmPlays / Angry German )
    *
    */

    public enum HartnellRoundelTypes implements IStringSerializable {

        // This enum contains different block-types
        // of the 1963 / William Hartnell Roundels

        NORMAL("normal", 0),
        HIGHRES("high_res", 1);

        private int ID;
        private String name;

        HartnellRoundelTypes(String name, int ID) {
        	
            this.ID = ID;
            this.name = name;
        	
        }
        
        @Override
        public String getName() {
            return this.name;
        }
        
        public int getID() {
            return this.ID;
        }

        @Override
        public String toString() {
            return getName();
        }
        
    }

}

 

Spoiler

{
  "forge_marker":"1",
  "defaults": {
	"textures": {
		"all":"akhaten:blocks/block_roundelhartnell"
	}
	"model":"akhaten:blocks/block_roundelhartnell",
	"uvlock":"false"
  }
  "variants": {
    "normal": [
      { "model": "akhaten:block_roundelhartnell" }
    ],
	"high_res":[
	  { "model": "akhaten:block_roundelhartnellhr" }
	]
  }
}

 

 

Posted
8 hours ago, Bertrahm said:

I don't get a inventory model nor the textures ( inventory and placed).

You have to register an item mode in the ModelRegistryEvent.

Apparently I'm a complete and utter jerk and come to this forum just like to make fun of people, be confrontational, and make your personal life miserable.  If you think this is the case, JUST REPORT ME.  Otherwise you're just going to get reported when you reply to my posts and point it out, because odds are, I was trying to be nice.

 

Exception: If you do not understand Java, I WILL NOT HELP YOU and your thread will get locked.

 

DO NOT PM ME WITH PROBLEMS. No help will be given.

Posted
28 minutes ago, Draco18s said:

You have to register an item mode in the ModelRegistryEvent.

Here’s a simple event subscriber that replicated the automated 1.13 style of model registration for 1.12.2 https://gist.github.com/Cadiboo/3f5cdb785affc069af2fa5fdf2d70358

About Me

Spoiler

My Discord - Cadiboo#8887

My WebsiteCadiboo.github.io

My ModsCadiboo.github.io/projects

My TutorialsCadiboo.github.io/tutorials

Versions below 1.14.4 are no longer supported on this forum. Use the latest version to receive support.

When asking support remember to include all relevant log files (logs are found in .minecraft/logs/), code if applicable and screenshots if possible.

Only download mods from trusted sites like CurseForge (minecraft.curseforge.com). A list of bad sites can be found here, with more information available at stopmodreposts.org

Edit your own signature at www.minecraftforge.net/forum/settings/signature/ (Make sure to check its compatibility with the Dark Theme)

Posted
3 hours ago, Cadiboo said:

Here’s a simple event subscriber that replicated the automated 1.13 style of model registration for 1.12.2 https://gist.github.com/Cadiboo/3f5cdb785affc069af2fa5fdf2d70358

Thanks, but it didn't help... I think I should make myself more clear:

For the default state I get an Inventory model with textures but no textures when I place it, for my second state (high_res) I don't get a model in the inventory nor textures when I place it. I will show you the relevant part of the log (regarding the model registry). I've also fixed errors with my blockstate JSON, which also didn't fix anything (visible)...

 

Spoiler

[10:05:27] [Client thread/ERROR] [FML]: Exception loading model for variant akhaten:block_roundelhartnell#type=normal for blockstate "akhaten:block_roundelhartnell[type=normal]"
net.minecraftforge.client.model.ModelLoaderRegistry$LoaderException: Exception loading model akhaten:block_roundelhartnell#type=normal with loader VariantLoader.INSTANCE, skipping
	at net.minecraftforge.client.model.ModelLoaderRegistry.getModel(ModelLoaderRegistry.java:161) ~[ModelLoaderRegistry.class:?]
	at net.minecraftforge.client.model.ModelLoader.registerVariant(ModelLoader.java:235) ~[ModelLoader.class:?]
	at net.minecraft.client.renderer.block.model.ModelBakery.loadBlock(ModelBakery.java:153) ~[ModelBakery.class:?]
	at net.minecraftforge.client.model.ModelLoader.loadBlocks(ModelLoader.java:223) ~[ModelLoader.class:?]
	at net.minecraftforge.client.model.ModelLoader.setupModelRegistry(ModelLoader.java:150) ~[ModelLoader.class:?]
	at net.minecraft.client.renderer.block.model.ModelManager.onResourceManagerReload(ModelManager.java:28) [ModelManager.class:?]
	at net.minecraft.client.resources.SimpleReloadableResourceManager.registerReloadListener(SimpleReloadableResourceManager.java:121) [SimpleReloadableResourceManager.class:?]
	at net.minecraft.client.Minecraft.init(Minecraft.java:560) [Minecraft.class:?]
	at net.minecraft.client.Minecraft.run(Minecraft.java:422) [Minecraft.class:?]
	at net.minecraft.client.main.Main.main(Main.java:118) [Main.class:?]
	at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_211]
	at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[?:1.8.0_211]
	at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.8.0_211]
	at java.lang.reflect.Method.invoke(Method.java:498) ~[?:1.8.0_211]
	at net.minecraft.launchwrapper.Launch.launch(Launch.java:135) [launchwrapper-1.12.jar:?]
	at net.minecraft.launchwrapper.Launch.main(Launch.java:28) [launchwrapper-1.12.jar:?]
	at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_211]
	at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[?:1.8.0_211]
	at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.8.0_211]
	at java.lang.reflect.Method.invoke(Method.java:498) ~[?:1.8.0_211]
	at net.minecraftforge.gradle.GradleStartCommon.launch(GradleStartCommon.java:97) [start/:?]
	at GradleStart.main(GradleStart.java:25) [start/:?]
Caused by: net.minecraft.client.renderer.block.model.ModelBlockDefinition$MissingVariantException
	at net.minecraft.client.renderer.block.model.ModelBlockDefinition.getVariant(ModelBlockDefinition.java:83) ~[ModelBlockDefinition.class:?]
	at net.minecraftforge.client.model.ModelLoader$VariantLoader.loadModel(ModelLoader.java:1175) ~[ModelLoader$VariantLoader.class:?]
	at net.minecraftforge.client.model.ModelLoaderRegistry.getModel(ModelLoaderRegistry.java:157) ~[ModelLoaderRegistry.class:?]
	... 21 more

 

 

Posted

Show more of the error. MissingVariantException is an exception caused by another exception that prints out below it.

Apparently I'm a complete and utter jerk and come to this forum just like to make fun of people, be confrontational, and make your personal life miserable.  If you think this is the case, JUST REPORT ME.  Otherwise you're just going to get reported when you reply to my posts and point it out, because odds are, I was trying to be nice.

 

Exception: If you do not understand Java, I WILL NOT HELP YOU and your thread will get locked.

 

DO NOT PM ME WITH PROBLEMS. No help will be given.

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've been trying to create a modpack, but it keeps crashing. I tried removing and/or turning off mods that showed up in warnings and errors but it doesn't seem to do anything. Here's a log after I turned them back on, maybe somebody can help me figure it out: [11:09:20] [main/INFO]: ModLauncher running: args [--username, Irithind, --version, forge-47.4.0, --gameDir, C:\curseforge\minecraft\Instances\Behlottr v2.0, --assetsDir, C:\curseforge\minecraft\Install\assets, --assetIndex, 5, --uuid, 21debf5d5e4c47fcb420862cf2b604cc, --accessToken, ????????, --clientId, NDg4ZjMxNjktYzg5Zi00MDZlLTk3N2UtNWUyMDYzZDE2MjYw, --xuid, 2535432910834510, --userType, msa, --versionType, release, --width, 1024, --height, 768, --quickPlayPath, C:\curseforge\minecraft\Install\quickPlay\java\1742810951879.json, --launchTarget, forgeclient, --fml.forgeVersion, 47.4.0, --fml.mcVersion, 1.20.1, --fml.forgeGroup, net.minecraftforge, --fml.mcpVersion, 20230612.114412] [11:09:21] [main/INFO]: ModLauncher 10.0.9+10.0.9+main.dcd20f30 starting: java version 17.0.8 by Microsoft; OS Windows 10 arch amd64 version 10.0 [11:09:26] [main/INFO]: Loading ImmediateWindowProvider fmlearlywindow [11:09:26] [main/INFO]: Trying GL version 4.6 [11:09:26] [main/INFO]: Requested GL version 4.6 got version 4.6 [11:09:26] [main/INFO]: Mixin Transmogrifier is definitely up to no good... [11:09:26] [main/INFO]: crimes against java were committed [11:09:27] [main/INFO]: Original mixin transformation service successfully crobbed by mixin-transmogrifier! [11:09:27] [main/INFO]: SpongePowered MIXIN Subsystem Version=0.8.5 Source=union:/C:/curseforge/minecraft/Instances/Behlottr%20v2.0/mods/Connector-1.0.0-beta.46+1.20.1.jar%23344%23348!/ Service=ModLauncher Env=CLIENT [11:09:27] [main/INFO]: [Mods Optimizer] ? Init ... [11:09:27] [main/INFO]: Game Directory: C:\curseforge\minecraft\Instances\Behlottr v2.0 [11:09:27] [main/INFO]: Mods Directory: C:\curseforge\minecraft\Instances\Behlottr v2.0\mods [11:09:27] [main/INFO]: Game Environment: CLIENT [11:09:27] [main/INFO]: Loading Mods Database Config File from C:\curseforge\minecraft\Instances\Behlottr v2.0\config\mods_optimizer\config.toml [11:09:28] [pool-2-thread-1/INFO]: GL info: Radeon (TM) RX 480 Graphics GL version 4.6.0 Core Profile Context 19.30.02.231114, ATI Technologies Inc. [11:09:28] [main/INFO]: ? init with game dir C:\curseforge\minecraft\Instances\Behlottr v2.0 and mods dir C:\curseforge\minecraft\Instances\Behlottr v2.0\mods for target CLIENT in 292 ms. [11:09:28] [main/INFO]: ? Re-Enable possible client side mods ... [11:09:28] [main/INFO]: ? Parsing Mods data ... [11:09:28] [main/INFO]: [Mod Data] parsing ~189 mods in C:\curseforge\minecraft\Instances\Behlottr v2.0\mods with file extension .jar ... [11:09:28] [main/WARN]: Was unable to parse timestamp 2025-03-19T09:15:24.671329100Z: [11:09:28] [main/ERROR]: TOML file META-INF/mods.toml not found in java.util.jar.JarFile@23b3aa8c [11:09:28] [main/WARN]: ? Found no META-INF/mods.toml file for C:\curseforge\minecraft\Instances\Behlottr v2.0\mods\Connector-1.0.0-beta.46+1.20.1.jar! [11:09:28] [main/WARN]: Was unable to parse timestamp 2024-09-27T11:02:52.188759466: [11:09:28] [main/ERROR]: Json file fabric.mod.json not found in java.util.jar.JarFile@23b3aa8c [11:09:28] [main/WARN]: ? Found no id tag inside the fabric.mod.json file C:\curseforge\minecraft\Instances\Behlottr v2.0\mods\Connector-1.0.0-beta.46+1.20.1.jar! [11:09:28] [main/WARN]: ? Found no name tag inside the fabric.mod.json file C:\curseforge\minecraft\Instances\Behlottr v2.0\mods\Connector-1.0.0-beta.46+1.20.1.jar! [11:09:28] [main/WARN]: ? Found no version tag inside the fabric.mod.json file C:\curseforge\minecraft\Instances\Behlottr v2.0\mods\Connector-1.0.0-beta.46+1.20.1.jar! [11:09:28] [main/WARN]: Was unable to parse timestamp 2024-09-27T11:02:52.188759466: [11:09:29] [main/INFO]: [Mod Data] Overwrite mod environment for entityculling from UNKNOWN to CLIENT [11:09:29] [main/INFO]: [Mod Data] Overwrite mod environment for farsight_view from UNKNOWN to CLIENT [11:09:29] [main/WARN]: ? Found no side tag inside the dependencies.flowerymooblooms[0] section of the mods.toml file C:\curseforge\minecraft\Instances\Behlottr v2.0\mods\flowerymooblooms-forge-mc1.20.1-2.0.2.jar! [11:09:29] [main/WARN]: [Mod Data] ? Unable to read manifest from mod file C:\curseforge\minecraft\Instances\Behlottr v2.0\mods\FSang18's Heropack v10.1.1.jar, which is expected in some cases. [11:09:29] [main/INFO]: [Mod Data] Overwrite mod environment for guiclock from UNKNOWN to CLIENT [11:09:29] [main/INFO]: [Mod Data] Overwrite mod environment for guicompass from UNKNOWN to CLIENT [11:09:29] [main/INFO]: [Mod Data] Overwrite mod environment for guifollowers from UNKNOWN to CLIENT [11:09:29] [main/ERROR]: TOML file META-INF/mods.toml not found in java.util.jar.JarFile@51d9b06c [11:09:29] [main/WARN]: ? Found no META-INF/mods.toml file for C:\curseforge\minecraft\Instances\Behlottr v2.0\mods\kotlinforforge-4.11.0-all.jar! [11:09:29] [main/INFO]: [Mod Data] Overwrite mod environment for mousetweaks from UNKNOWN to CLIENT [11:09:29] [main/WARN]: ? Found no side tag inside the dependencies.searchables[0] section of the mods.toml file C:\curseforge\minecraft\Instances\Behlottr v2.0\mods\Searchables-forge-1.20.1-1.0.3.jar! [11:09:29] [main/INFO]: [Mod Data] Overwrite mod environment for searchables from UNKNOWN to CLIENT [11:09:29] [main/WARN]: Was unable to parse timestamp 2025-03-07T19:07:19.116646615: [11:09:29] [main/ERROR]: Error reading TOML file META-INF\mods.toml from java.util.jar.JarFile@4d192aef: java.lang.IllegalStateException: Invalid key on line 54: mixin.block.moving_block_shapes [11:09:29] [main/WARN]: ? Found no META-INF/mods.toml file for C:\curseforge\minecraft\Instances\Behlottr v2.0\mods\supplementaries-1.20-3.1.21.jar! [11:09:29] [main/ERROR]: ? Found no valid modId for C:\curseforge\minecraft\Instances\Behlottr v2.0\mods\supplementaries-1.20-3.1.21.jar! [11:09:29] [main/INFO]: [Mod Data] Overwrite mod environment for toastcontrol from UNKNOWN to CLIENT [11:09:29] [main/INFO]: [Mod Data] Found 1 library mods in 188 mods. [11:09:29] [main/INFO]: [Mod Data] Found 2 data pack mods in 188 mods. [11:09:29] [main/INFO]: [Mod Data] Found 17 client mods in 188 mods. [11:09:29] [main/INFO]: [Mod Data] Found 3 server mods in 188 mods. [11:09:29] [main/INFO]: [Mod Data] Found 1 service mods in 188 mods. [11:09:29] [main/INFO]: [Mod Data] Found 164 default mods in 188 mods. [11:09:29] [main/INFO]: ------------------------------------------------------------------------------------------------------------------- [11:09:29] [main/INFO]: | ID                                 | VERSION                | TYPE     | ENVIRONMENT       | TIMESTAMP           | [11:09:29] [main/INFO]: ------------------------------------------------------------------------------------------------------------------- [11:09:29] [main/INFO]: | tetra                              | 6.8.0                  | FORGE    | DEFAULT           | 2025-01-17 15:30:02 | [11:09:29] [main/INFO]: | org.sinytra.connector              | 1.0.0-beta.46+1.20.1   | MIXED    | SERVICE           | 2025-03-24 09:19:45 | [11:09:29] [main/INFO]: | treechop                           | 0.19.0                 | FORGE    | UNKNOWN           | 2024-07-25 13:59:42 | [11:09:29] [main/INFO]: | kubejs                             | 2001.6.5-build.16      | FORGE    | DEFAULT           | 2024-10-28 09:20:21 | [11:09:29] [main/INFO]: | almanac                            | 1.0.2                  | FORGE    | SERVER            | 2025-03-24 08:56:01 | [11:09:29] [main/INFO]: | create_things_and_misc             | 1.0.0                  | FORGE    | UNKNOWN           | 2025-03-24 10:02:05 | [11:09:29] [main/INFO]: | easyanvils                         | 8.0.2                  | FORGE    | DEFAULT           | 2024-03-04 10:07:14 | [11:09:29] [main/INFO]: | supermartijn642configlib           | 1.1.8                  | FORGE    | DEFAULT           | 2025-03-24 09:29:05 | [11:09:29] [main/INFO]: | advancedperipherals                | 0.0.0                  | FORGE    | DEFAULT           | 2024-10-21 14:23:44 | [11:09:29] [main/INFO]: | alexsmobs                          | 1.22.9                 | FORGE    | DEFAULT           | 2025-03-24 09:25:32 | [11:09:29] [main/INFO]: | areas                              | 6.1.0                  | MIXED    | UNKNOWN           | 2025-02-12 21:16:00 | [11:09:29] [main/INFO]: | cccbridge                          | 1.6.3-forge            | FORGE    | DEFAULT           | 2023-11-13 17:40:29 | [11:09:29] [main/INFO]: | geckolib                           | 4.7.1-2                | FORGE    | DEFAULT           | 2025-03-23 09:44:24 | [11:09:29] [main/INFO]: | botarium                           | 2.3.4                  | FORGE    | DEFAULT           | 2025-03-24 09:16:57 | [11:09:29] [main/INFO]: | unknown-a8d4e505-b55c-4c41-8797-1f2fd709c369 | 0.0.0                  | FORGE    | UNKNOWN           | 2025-03-24 08:21:19 | [11:09:29] [main/INFO]: | allthecompatibility                | 2.2.0                  | FORGE    | DEFAULT           | 2025-01-08 18:01:06 | [11:09:29] [main/INFO]: | swplanets                          | 1.4.4                  | FORGE    | DEFAULT           | 2025-03-24 10:11:40 | [11:09:29] [main/INFO]: | towntalk                           | 1.1.0                  | FORGE    | DEFAULT           | 2024-05-19 10:05:35 | [11:09:29] [main/INFO]: | obvious_bookshelves                | 1.0.0                  | FORGE    | UNKNOWN           | 2025-03-24 09:53:29 | [11:09:29] [main/INFO]: | connectivity                       | 1.20.1-7.1             | FORGE    | DEFAULT           | 2025-02-24 10:23:48 | [11:09:29] [main/INFO]: | guiclock                           | 4.7.0                  | MIXED    | CLIENT            | 2025-02-23 11:42:48 | [11:09:29] [main/INFO]: | sophisticatedcore                  | 1.2.23-902             | FORGE    | DEFAULT           | 2025-03-17 21:44:37 | [11:09:29] [main/INFO]: | ad_astra_giselle_addon             | 6.18.0                 | FORGE    | DEFAULT           | 2025-01-24 18:38:02 | [11:09:29] [main/INFO]: | create_crush_everything            | 1.0.2                  | FORGE    | UNKNOWN           | 2025-03-24 09:29:51 | [11:09:29] [main/INFO]: | palladium                          | 4.1.12                 | FORGE    | DEFAULT           | 2025-03-20 18:40:49 | [11:09:29] [main/INFO]: | sound_physics_remastered           | 1.20.1-1.4.8           | FORGE    | DEFAULT           | 2024-12-14 21:46:57 | [11:09:29] [main/INFO]: | forgeendertech                     | 11.1.6-0               | FORGE    | DEFAULT           | 2025-03-24 09:23:39 | [11:09:29] [main/INFO]: | doapi                              | 1.2.15                 | FORGE    | DEFAULT           | 2025-03-24 09:16:00 | [11:09:29] [main/INFO]: | villagernames                      | 8.2.0                  | MIXED    | UNKNOWN           | 2025-02-12 13:09:38 | [11:09:29] [main/INFO]: | controlling                        | 12.0.2                 | FORGE    | CLIENT            | 2023-07-16 04:39:00 | [11:09:29] [main/INFO]: | citadel                            | 2.6.1                  | FORGE    | DEFAULT           | 2024-12-18 09:11:09 | [11:09:29] [main/INFO]: | modernfix                          | 5.20.2+mc1.20.1        | FORGE    | DEFAULT           | 2025-03-24 08:19:59 | [11:09:29] [main/INFO]: | placebo                            | 8.6.3                  | FORGE    | UNKNOWN           | 2025-03-07 01:06:01 | [11:09:29] [main/INFO]: | bakery                             | 1.1.15                 | FORGE    | DEFAULT           | 2025-03-24 10:06:47 | [11:09:29] [main/INFO]: | bookshelf                          | 20.2.13                | FORGE    | DEFAULT           | 2024-06-13 15:16:22 | [11:09:29] [main/INFO]: | clientcrafting                     | 1.20.1-1.8             | FORGE    | DEFAULT           | 2024-02-10 20:56:26 | [11:09:29] [main/INFO]: | vinery                             | 1.4.39                 | FORGE    | DEFAULT           | 2025-03-24 09:15:38 | [11:09:29] [main/INFO]: | sophisticatedbackpacks             | 3.23.6-1211            | FORGE    | DEFAULT           | 2025-03-14 15:00:40 | [11:09:29] [main/INFO]: | ends_delight                       | 2.5.1+forge.1.20.1     | FORGE    | DEFAULT           | 2025-02-11 08:18:39 | [11:09:29] [main/INFO]: | clickadv                           | 1.20.1-3.8             | FORGE    | DEFAULT           | 2024-04-26 23:12:13 | [11:09:29] [main/INFO]: | create_new_age                     | 1.1.3                  | FORGE    | DEFAULT           | 2025-03-06 11:05:22 | [11:09:29] [main/INFO]: | keepmysoiltilled                   | 2.5.0                  | MIXED    | UNKNOWN           | 2025-02-12 16:29:47 | [11:09:29] [main/INFO]: | railways                           | 1.6.7+forge-mc1.20.1   | FORGE    | DEFAULT           | 2025-03-24 08:57:39 | [11:09:29] [main/INFO]: | dynview                            | 2.3.0                  | FORGE    | SERVER            | 2024-05-15 16:57:05 | [11:09:29] [main/INFO]: | adpother                           | 8.1.24-0               | FORGE    | DEFAULT           | 2025-03-24 09:23:39 | [11:09:29] [main/INFO]: | jeresources                        | 1.4.0-247              | FORGE    | UNKNOWN           | 2024-01-24 19:27:07 | [11:09:29] [main/INFO]: | exposure                           | 1.7.10                 | FORGE    | DEFAULT           | 2025-03-24 09:55:02 | [11:09:29] [main/INFO]: | cloth_config                       | 11.1.136               | FORGE    | DEFAULT           | 2025-03-24 08:23:03 | [11:09:29] [main/INFO]: | fabric_api                         | 0.0.0                  | FORGE    | DEFAULT           | 2025-03-24 09:19:44 | [11:09:29] [main/INFO]: | embeddium                          | 0.3.31+mc1.20.1        | FORGE    | UNKNOWN           | 2025-03-24 08:22:22 | [11:09:29] [main/INFO]: | stylecolonies                      | 1.12.0                 | FORGE    | DEFAULT           | 2025-01-31 22:40:00 | [11:09:29] [main/INFO]: | alltheores                         | 2.2.4                  | FORGE    | DEFAULT           | 2024-05-16 09:39:33 | [11:09:29] [main/INFO]: | fsang                              | 10.1.0                 | MIXED    | DATA_PACK         | 2025-03-24 10:02:39 | [11:09:29] [main/INFO]: | flowerymooblooms                   | 2.0.2                  | FORGE    | UNKNOWN           | 2025-03-24 09:48:29 | [11:09:29] [main/INFO]: | farmersdelight                     | 1.20.1-1.2.7           | FORGE    | DEFAULT           | 2025-02-03 16:47:27 | [11:09:29] [main/INFO]: | bcc                                | 4.0.8                  | FORGE    | UNKNOWN           | 2023-08-08 16:31:28 | [11:09:29] [main/INFO]: | pantheonsent                       | 1.1.0                  | FORGE    | DEFAULT           | 2024-04-24 18:52:43 | [11:09:29] [main/INFO]: | jearchaeology                      | 1.20.1-1.0.4           | FORGE    | DEFAULT           | 2024-05-07 23:33:37 | [11:09:29] [main/INFO]: | getittogetherdrops                 | 1.3.0                  | FORGE    | DEFAULT           | 2025-03-24 09:03:05 | [11:09:29] [main/INFO]: | advancedbook                       | 1.0.4                  | FORGE    | DEFAULT           | 2025-01-04 22:24:07 | [11:09:29] [main/INFO]: | heyberryshutup                     | 1.20.1-2.0.4           | FORGE    | DEFAULT           | 2023-09-21 18:29:12 | [11:09:29] [main/INFO]: | supermartijn642corelib             | 1.1.18                 | FORGE    | DEFAULT           | 2025-03-24 09:29:05 | [11:09:29] [main/INFO]: | resourcefulconfig                  | 2.1.3                  | FORGE    | DEFAULT           | 2025-03-24 09:02:32 | [11:09:29] [main/INFO]: | colony_curios                      | 1.0.0                  | FORGE    | DEFAULT           | 2024-08-02 13:53:05 | [11:09:29] [main/INFO]: | expanded_ecosphere                 | 3.2.4                  | FORGE    | DEFAULT           | 2025-03-24 10:12:54 | [11:09:29] [main/INFO]: | spark                              | 1.10.53                | FORGE    | DEFAULT           | 2025-03-24 08:21:53 | [11:09:29] [main/INFO]: | sgjourney                          | 0.6.38                 | FORGE    | DEFAULT           | 2025-03-23 13:29:05 | [11:09:29] [main/INFO]: | curios                             | 5.12.1+1.20.1          | FORGE    | DEFAULT           | 2025-02-26 02:44:58 | [11:09:29] [main/INFO]: | brewery                            | 1.1.9                  | FORGE    | DEFAULT           | 2025-03-24 10:06:52 | [11:09:29] [main/INFO]: | blockui                            | 1.20.1-1.0.156-RELEASE | FORGE    | DEFAULT           | 2024-04-21 22:05:11 | [11:09:29] [main/INFO]: | collective                         | 7.94.0                 | MIXED    | UNKNOWN           | 2025-03-06 17:00:16 | [11:09:29] [main/INFO]: | eldritch_end                       | 0.3.3                  | FABRIC   | DEFAULT           | 2025-03-24 09:19:47 | [11:09:29] [main/INFO]: | horse_colors                       | 1.20.1-13.5            | FORGE    | DEFAULT           | 2024-09-24 10:07:33 | [11:09:29] [main/INFO]: | searchables                        | 1.0.3                  | FORGE    | CLIENT            | 2024-04-23 06:56:27 | [11:09:29] [main/INFO]: | easy_netherite                     | 1.0.0                  | FORGE    | UNKNOWN           | 2025-03-24 09:32:00 | [11:09:29] [main/INFO]: | xercapaint                         | 1.20.1-1.0.1           | FORGE    | UNKNOWN           | 2024-08-03 11:31:03 | [11:09:29] [main/INFO]: | create_basic_additions             | 1.0.2                  | FORGE    | DEFAULT           | 2024-04-05 05:57:49 | [11:09:29] [main/INFO]: | resourcefullib                     | 2.1.29                 | FORGE    | DEFAULT           | 2025-03-24 09:02:32 | [11:09:29] [main/INFO]: | herbalbrews                        | 1.0.11                 | FORGE    | DEFAULT           | 2025-03-24 09:16:01 | [11:09:29] [main/INFO]: | architectury                       | 9.2.14                 | FORGE    | DEFAULT           | 2025-03-24 08:23:03 | [11:09:29] [main/INFO]: | computercraft                      | 1.113.1                | FORGE    | DEFAULT           | 2025-03-24 09:25:14 | [11:09:29] [main/INFO]: | connectorextras                    | 1.11.2+1.20.1          | FORGE    | DEFAULT           | 2025-03-24 09:19:45 | [11:09:29] [main/INFO]: | cupboard                           | 1.20.1-2.7             | FORGE    | DEFAULT           | 2024-06-24 22:44:28 | [11:09:29] [main/INFO]: | chunkloaders                       | 0.0.0                  | MIXED    | DEFAULT           | 2025-03-24 09:29:05 | [11:09:29] [main/INFO]: | jadeaddons                         | 5.5.0+forge            | FORGE    | UNKNOWN           | 2025-03-07 20:13:45 | [11:09:29] [main/INFO]: | bwncr                              | 3.17.2                 | FORGE    | UNKNOWN           | 2024-12-06 21:13:14 | [11:09:29] [main/INFO]: | createchromaticreturn              | 1.0.0                  | FORGE    | UNKNOWN           | 2025-03-24 10:00:39 | [11:09:29] [main/INFO]: | chickensshed                       | 1.6.0+mc1.20.1         | FORGE    | DEFAULT           | 2025-03-24 09:28:49 | [11:09:29] [main/INFO]: | letmedespawn                       | 1.5.0                  | FORGE    | SERVER            | 2025-03-24 08:56:02 | [11:09:29] [main/INFO]: | mavm                               | 1.2.6                  | MIXED    | DEFAULT           | 2025-03-24 10:08:44 | [11:09:29] [main/INFO]: | jadecolonies                       | 1.4.2                  | FORGE    | DEFAULT           | 2024-01-21 14:11:42 | [11:09:29] [main/INFO]: | yeetusexperimentus                 | 2.3.1-build.6+mc1.20.1 | FORGE    | DEFAULT           | 2023-08-03 17:56:38 | [11:09:29] [main/INFO]: | nebs                               | 2.0.3                  | FORGE    | CLIENT            | 2025-03-24 09:56:43 | [11:09:29] [main/INFO]: | sliceanddice                       | 3.4.0                  | FORGE    | DEFAULT           | 2025-03-24 09:18:51 | [11:09:29] [main/INFO]: | betteradvancements                 | 4.2.10                 | FORGE    | CLIENT            | 2025-03-24 09:27:29 | [11:09:29] [main/INFO]: | elytraslot                         | 6.4.4+1.20.1           | FORGE    | DEFAULT           | 2024-10-02 22:39:04 | [11:09:29] [main/INFO]: | rhino                              | 2001.2.3-build.10      | FORGE    | UNKNOWN           | 2025-02-12 21:26:35 | [11:09:29] [main/INFO]: | amendments                         | 1.2.19                 | FORGE    | DEFAULT           | 2025-03-24 08:22:32 | [11:09:29] [main/INFO]: | jei                                | 15.20.0-106            | FORGE    | DEFAULT           | 2025-03-24 10:22:57 | [11:09:29] [main/INFO]: | xlpackets                          | 1.18.2-2.1             | FORGE    | UNKNOWN           | 2023-03-07 03:26:59 | [11:09:29] [main/INFO]: | multipiston                        | 1.2.43                 | FORGE    | DEFAULT           | 2024-03-23 10:28:03 | [11:09:29] [main/INFO]: | nethervinery                       | 1.2.17                 | FORGE    | DEFAULT           | 2025-03-24 09:15:39 | [11:09:29] [main/INFO]: | visualworkbench                    | 8.0.0                  | FORGE    | DEFAULT           | 2023-06-27 22:59:57 | [11:09:29] [main/INFO]: | pehkui                             | 3.8.2+1.20.1-forge     | FORGE    | UNKNOWN           | 2025-03-24 10:02:38 | [11:09:29] [main/INFO]: | map_atlases                        | 6.0.15                 | FORGE    | DEFAULT           | 2025-03-24 09:23:30 | [11:09:29] [main/INFO]: | caelus                             | 3.2.0+1.20.1           | FORGE    | DEFAULT           | 2024-04-22 00:58:26 | [11:09:29] [main/INFO]: | create                             | 6.0.4                  | FORGE    | DEFAULT           | 2025-03-19 19:55:21 | [11:09:29] [main/INFO]: | biomimicry                         | 0.0.0                  | FORGE    | DEFAULT           | 2024-03-17 23:32:45 | [11:09:29] [main/INFO]: | clumps                             | 12.0.0-4               | FORGE    | UNKNOWN           | 2024-04-21 05:03:41 | [11:09:29] [main/INFO]: | fastsuite                          | 5.1.0                  | FORGE    | UNKNOWN           | 2025-03-17 22:26:59 | [11:09:29] [main/INFO]: | fastasyncworldsave                 | 1.20.1-2.4             | FORGE    | DEFAULT           | 2025-03-14 14:40:38 | [11:09:29] [main/INFO]: | alternate_current                  | 1.7.0                  | FORGE    | DEFAULT           | 2023-08-25 16:47:37 | [11:09:29] [main/INFO]: | armortrimitemfix                   | 1.2.0                  | FORGE    | CLIENT            | 2025-03-24 10:01:09 | [11:09:29] [main/INFO]: | artifacts                          | 9.5.14                 | FORGE    | DEFAULT           | 2025-03-24 08:23:03 | [11:09:29] [main/INFO]: | configured                         | 2.2.3                  | FORGE    | UNKNOWN           | 2024-03-06 23:05:51 | [11:09:29] [main/INFO]: | guicompass                         | 4.9.0                  | MIXED    | CLIENT            | 2025-02-23 11:38:52 | [11:09:29] [main/INFO]: | thedarkcolour.kotlinforforge       | 0.0.0                  | FORGE    | LIBRARY           | 2025-03-24 09:18:51 | [11:09:29] [main/INFO]: | peripherals                        | 1.13.0                 | FORGE    | DEFAULT           | 2024-04-16 14:59:55 | [11:09:29] [main/INFO]: | sherdduplication                   | 2.0.8                  | FORGE    | DATA_PACK         | 2024-05-24 10:30:37 | [11:09:29] [main/INFO]: | create_confectionery               | 1.1.0                  | FORGE    | UNKNOWN           | 2025-03-24 09:29:38 | [11:09:29] [main/INFO]: | mods_optimizer                     | 2.0.0                  | FORGE    | DEFAULT           | 2024-02-25 20:14:49 | [11:09:29] [main/INFO]: | beefix                             | 1.0.7                  | FORGE    | DEFAULT           | 2023-07-01 01:29:46 | [11:09:29] [main/INFO]: | iceandfire                         | 2.1.13-1.20.1          | FORGE    | DEFAULT           | 2024-08-15 16:28:35 | [11:09:29] [main/INFO]: | farsight_view                      | 1.20.1-3.7             | FORGE    | CLIENT            | 2024-07-14 11:36:37 | [11:09:29] [main/INFO]: | toastcontrol                       | 8.0.3                  | FORGE    | CLIENT            | 2023-08-18 14:57:17 | [11:09:29] [main/INFO]: | colony4cc                          | 2.6.5                  | FORGE    | DEFAULT           | 2025-01-02 20:56:24 | [11:09:29] [main/INFO]: | azurelib                           | 2.0.41                 | FORGE    | DEFAULT           | 2024-12-19 10:37:25 | [11:09:29] [main/INFO]: | ars_nouveau                        | 4.12.6                 | FORGE    | DEFAULT           | 2024-11-11 12:32:48 | [11:09:29] [main/INFO]: | fmans_disc_mod                     | 1.0.0                  | FORGE    | UNKNOWN           | 2025-03-24 09:47:40 | [11:09:29] [main/INFO]: | friendsandfoes                     | 3.0.8                  | FORGE    | UNKNOWN           | 2025-03-24 09:20:48 | [11:09:29] [main/INFO]: | fastchest                          | 0.0.0                  | FORGE    | UNKNOWN           | 2023-09-27 16:20:52 | [11:09:29] [main/INFO]: | minecolonies_tweaks                | 2.54.0                 | FORGE    | DEFAULT           | 2025-03-20 20:46:36 | [11:09:29] [main/INFO]: | distractingtrims                   | 2.0.4                  | FORGE    | UNKNOWN           | 2024-05-24 09:51:26 | [11:09:29] [main/INFO]: | alexscaves                         | 2.0.2                  | FORGE    | DEFAULT           | 2024-10-26 10:13:03 | [11:09:29] [main/INFO]: | enchdesc                           | 17.1.19                | FORGE    | CLIENT            | 2024-10-28 22:29:40 | [11:09:29] [main/INFO]: | voicechat                          | 1.20.1-2.5.26          | FORGE    | DEFAULT           | 2024-11-16 10:01:02 | [11:09:29] [main/INFO]: | endermanoverhaul                   | 1.0.4                  | FORGE    | DEFAULT           | 2025-03-24 09:02:32 | [11:09:29] [main/INFO]: | moonlight                          | 2.13.79                | FORGE    | DEFAULT           | 2025-03-24 08:21:18 | [11:09:29] [main/INFO]: | minecolonies_compatibility         | 2.66.0                 | FORGE    | DEFAULT           | 2025-03-15 13:20:23 | [11:09:29] [main/INFO]: | mousetweaks                        | 2.25.1                 | FORGE    | CLIENT            | 2024-05-12 16:17:33 | [11:09:29] [main/INFO]: | necronomicon                       | 1.6.0                  | MIXED    | DEFAULT           | 2025-03-24 09:19:46 | [11:09:29] [main/INFO]: | the_fletching_table_mod            | 1.3.0                  | FORGE    | UNKNOWN           | 2025-03-24 10:12:23 | [11:09:29] [main/INFO]: | jade                               | 11.13.1+forge          | FORGE    | DEFAULT           | 2025-03-07 00:46:40 | [11:09:29] [main/INFO]: | armorposer                         | 2.2.2                  | FORGE    | UNKNOWN           | 2024-10-28 18:46:23 | [11:09:29] [main/INFO]: | duckyperiphs                       | 1.20.1-1.3.1           | FORGE    | DEFAULT           | 2025-03-24 09:30:53 | [11:09:29] [main/INFO]: | justenoughbreeding                 | 1.5.0                  | FORGE    | DEFAULT           | 2024-12-12 10:15:43 | [11:09:29] [main/INFO]: | nolijium                           | 0.5.6                  | MIXED    | CLIENT            | 2025-03-24 09:31:27 | [11:09:29] [main/INFO]: | alltheleaks                        | 0.1.2-beta+1.20.1-forge | FORGE    | DEFAULT           | 2025-03-24 08:58:22 | [11:09:29] [main/INFO]: | unusualprehistory                  | 1.5.0-3                | FORGE    | DEFAULT           | 2023-11-20 09:02:31 | [11:09:29] [main/INFO]: | nethersdelight                     | 1.20.1-4.0             | FORGE    | DEFAULT           | 2023-09-04 01:51:51 | [11:09:29] [main/INFO]: | fastpaintings                      | 1.2.7                  | FORGE    | DEFAULT           | 2025-03-24 08:57:03 | [11:09:29] [main/INFO]: | the_great_crafting_table           | 1.0.0                  | FORGE    | UNKNOWN           | 2025-03-24 10:12:45 | [11:09:29] [main/INFO]: | domum_ornamentum                   | 1.20.1-1.0.186-RELEASE | FORGE    | UNKNOWN           | 2024-04-22 08:30:19 | [11:09:29] [main/INFO]: | mantle                             | 1.11.44                | FORGE    | DEFAULT           | 2025-02-25 15:47:35 | [11:09:29] [main/INFO]: | mutil                              | 6.1.1                  | FORGE    | DEFAULT           | 2023-10-29 19:27:04 | [11:09:29] [main/INFO]: | quark                              | 4.0.461                | FORGE    | DEFAULT           | 2025-03-16 19:01:44 | [11:09:29] [main/INFO]: | gravestone                         | 1.20.1-1.0.24          | FORGE    | DEFAULT           | 2024-10-08 11:27:13 | [11:09:29] [main/INFO]: | fastbench                          | 8.0.4                  | FORGE    | UNKNOWN           | 2024-02-11 21:39:33 | [11:09:29] [main/INFO]: | justenoughprofessions              | 3.0.1                  | FORGE    | DEFAULT           | 2023-06-14 18:02:28 | [11:09:29] [main/INFO]: | pollutionofcreate                  | 1.20.1-0.0.3           | FORGE    | DEFAULT           | 2025-03-02 13:40:32 | [11:09:29] [main/INFO]: | polymorph                          | 0.49.8+1.20.1          | FORGE    | DEFAULT           | 2024-12-15 21:37:02 | [11:09:29] [main/INFO]: | almostunified                      | 1.20.1-0.9.4           | FORGE    | UNKNOWN           | 2025-03-24 08:59:34 | [11:09:29] [main/INFO]: | leavemybarsalone                   | 8.0.0                  | FORGE    | DEFAULT           | 2023-06-28 10:45:22 | [11:09:29] [main/INFO]: | zeta                               | 1.0.28                 | FORGE    | DEFAULT           | 2025-03-16 19:01:21 | [11:09:29] [main/INFO]: | entityculling                      | 1.7.3                  | FORGE    | CLIENT            | 2025-03-24 08:20:20 | [11:09:29] [main/INFO]: | canary                             | 0.3.3                  | FORGE    | DEFAULT           | 2024-02-08 15:42:47 | [11:09:29] [main/INFO]: | inventoryhud                       | 3.4.26                 | FORGE    | CLIENT            | 2025-03-24 09:00:47 | [11:09:29] [main/INFO]: | structurize                        | 1.20.1-1.0.766-snapshot | FORGE    | DEFAULT           | 2025-03-23 10:33:28 | [11:09:29] [main/INFO]: | not_enough_gamerules               | 1.20.1-r1.5.3          | FORGE    | DEFAULT           | 2023-07-05 15:10:06 | [11:09:29] [main/INFO]: | fastfurnace                        | 8.0.2                  | FORGE    | UNKNOWN           | 2024-03-13 22:38:07 | [11:09:29] [main/INFO]: | minecolonies                       | 1.20.1-1.1.838-snapshot | FORGE    | DEFAULT           | 2025-03-23 21:09:31 | [11:09:29] [main/INFO]: | alexsdelight                       | 1.5.0                  | FORGE    | DEFAULT           | 2024-01-13 14:23:43 | [11:09:29] [main/INFO]: | appleskin                          | 2.5.1+mc1.20.1         | FORGE    | CLIENT            | 2023-09-26 21:01:11 | [11:09:29] [main/INFO]: | oceansdelight                      | 1.0.2-1.20             | FORGE    | DEFAULT           | 2023-07-18 22:53:02 | [11:09:29] [main/INFO]: | puzzleslib                         | 8.1.29                 | FORGE    | DEFAULT           | 2025-03-09 13:14:11 | [11:09:29] [main/INFO]: | adastraextra                       | 1.2.3                  | FORGE    | UNKNOWN           | 2025-03-24 09:24:30 | [11:09:29] [main/INFO]: | betterf3                           | 7.0.2                  | FORGE    | CLIENT            | 2025-03-24 09:02:48 | [11:09:29] [main/INFO]: | mavapi                             | 1.1.4                  | MIXED    | DEFAULT           | 2025-03-24 10:23:43 | [11:09:29] [main/INFO]: | badoptimizations                   | 2.2.1                  | MIXED    | UNKNOWN           | 2025-03-24 09:00:20 | [11:09:29] [main/INFO]: | packetfixer                        | 2.0.0                  | FORGE    | DEFAULT           | 2025-03-24 08:27:49 | [11:09:29] [main/INFO]: | cosmeticarmorreworked              | 1.20.1-v1a             | FORGE    | DEFAULT           | 2023-06-21 05:11:55 | [11:09:29] [main/INFO]: | playingcards                       | 2.0.1                  | FORGE    | DEFAULT           | 2025-01-01 15:18:23 | [11:09:29] [main/INFO]: | chiselsandbits                     | 1.4.148                | FORGE    | DEFAULT           | 2024-03-22 18:43:33 | [11:09:29] [main/INFO]: | domesticationinnovation            | 1.7.1                  | FORGE    | DEFAULT           | 2023-11-29 10:23:51 | [11:09:29] [main/INFO]: | createaddition                     | 1.20.1-1.3.1           | FORGE    | DEFAULT           | 2025-03-15 14:16:04 | [11:09:29] [main/INFO]: | ad_astra                           | 1.15.20                | FORGE    | DEFAULT           | 2025-03-24 09:16:58 | [11:09:29] [main/INFO]: | cristellib                         | 1.1.6                  | FORGE    | DEFAULT           | 2025-03-24 10:12:53 | [11:09:29] [main/INFO]: | guifollowers                       | 4.0.0                  | MIXED    | CLIENT            | 2025-02-23 11:27:35 | [11:09:29] [main/INFO]: ------------------------------------------------------------------------------------------------------------------- [11:09:29] [main/INFO]: ? Parsed 188 mods in 1515 ms. [11:09:29] [main/INFO]: ? No duplicated mods found. [11:09:29] [main/INFO]: ? Client side mods are enabled. [11:09:29] [main/INFO]: ? Mod Optimizer needs 1815 ms in total. [11:09:29] [main/INFO]: Found mod file Connector-1.0.0-beta.46+1.20.1-mod.jar of type MOD with provider org.sinytra.connector.locator.ConnectorEarlyLocator@1ac4ccad [11:09:31] [main/INFO]: Found mod file Ad-Astra-Giselle-Addon-forge-1.20.1-6.18.jar of type MOD with provider {mods folder locator at C:\curseforge\minecraft\Instances\Behlottr v2.0\mods} [11:09:31] [main/INFO]: Found mod file ad_astra-forge-1.20.1-1.15.20.jar of type MOD with provider {mods folder locator at C:\curseforge\minecraft\Instances\Behlottr v2.0\mods} [11:09:31] [main/INFO]: Found mod file adastraextra-forge-1.20.1-1.2.3.jar of type MOD with provider {mods folder locator at C:\curseforge\minecraft\Instances\Behlottr v2.0\mods} [11:09:31] [main/INFO]: Found mod file AdPother-1.20.1-8.1.24.0-build.0980.jar of type MOD with provider {mods folder locator at C:\curseforge\minecraft\Instances\Behlottr v2.0\mods} [11:09:31] [main/INFO]: Found mod file advancedbook-1.0.4.jar of type MOD with provider {mods folder locator at C:\curseforge\minecraft\Instances\Behlottr v2.0\mods} [11:09:31] [main/INFO]: Found mod file AdvancedPeripherals-1.20.1-0.7.41r.jar of type MOD with provider {mods folder locator at C:\curseforge\minecraft\Instances\Behlottr v2.0\mods} [11:09:31] [main/INFO]: Found mod file alexscaves-2.0.2.jar of type MOD with provider {mods folder locator at C:\curseforge\minecraft\Instances\Behlottr v2.0\mods} [11:09:31] [main/INFO]: Found mod file alexsdelight-1.5.jar of type MOD with provider {mods folder locator at C:\curseforge\minecraft\Instances\Behlottr v2.0\mods} [11:09:31] [main/INFO]: Found mod file alexsmobs-1.22.9.jar of type MOD with provider {mods folder locator at C:\curseforge\minecraft\Instances\Behlottr v2.0\mods} [11:09:31] [main/INFO]: Found mod file AlltheCompatibility-1.20.x-(v.2.2.0).jar of type MOD with provider {mods folder locator at C:\curseforge\minecraft\Instances\Behlottr v2.0\mods} [11:09:31] [main/INFO]: Found mod file alltheleaks-0.1.2-beta+1.20.1-forge.jar of type MOD with provider {mods folder locator at C:\curseforge\minecraft\Instances\Behlottr v2.0\mods} [11:09:31] [main/INFO]: Found mod file alltheores-1.20.1-47.1.3-2.2.4.jar of type MOD with provider {mods folder locator at C:\curseforge\minecraft\Instances\Behlottr v2.0\mods} [11:09:31] [main/INFO]: Found mod file almanac-1.20.x-forge-1.0.2.jar of type MOD with provider {mods folder locator at C:\curseforge\minecraft\Instances\Behlottr v2.0\mods} [11:09:31] [main/INFO]: Found mod file almostunified-forge-1.20.1-0.9.4.jar of type MOD with provider {mods folder locator at C:\curseforge\minecraft\Instances\Behlottr v2.0\mods} [11:09:31] [main/INFO]: Found mod file alternate_current-mc1.20-1.7.0.jar of type MOD with provider {mods folder locator at C:\curseforge\minecraft\Instances\Behlottr v2.0\mods} [11:09:31] [main/INFO]: Found mod file amendments-1.20-1.2.19.jar of type MOD with provider {mods folder locator at C:\curseforge\minecraft\Instances\Behlottr v2.0\mods} [11:09:31] [main/INFO]: Found mod file appleskin-forge-mc1.20.1-2.5.1.jar of type MOD with provider {mods folder locator at C:\curseforge\minecraft\Instances\Behlottr v2.0\mods} [11:09:31] [main/INFO]: Found mod file architectury-9.2.14-forge.jar of type MOD with provider {mods folder locator at C:\curseforge\minecraft\Instances\Behlottr v2.0\mods} [11:09:31] [main/INFO]: Found mod file areas-1.20.1-6.1.jar of type MOD with provider {mods folder locator at C:\curseforge\minecraft\Instances\Behlottr v2.0\mods} [11:09:31] [main/INFO]: Found mod file ArmorPoser-forge-1.20.1-2.2.2.jar of type MOD with provider {mods folder locator at C:\curseforge\minecraft\Instances\Behlottr v2.0\mods} [11:09:31] [main/INFO]: Found mod file ArmorTrimItemFix-forge-1.20.1-1.2.0.jar of type MOD with provider {mods folder locator at C:\curseforge\minecraft\Instances\Behlottr v2.0\mods} [11:09:31] [main/INFO]: Found mod file ars_nouveau-1.20.1-4.12.6-all.jar of type MOD with provider {mods folder locator at C:\curseforge\minecraft\Instances\Behlottr v2.0\mods} [11:09:31] [main/INFO]: Found mod file artifacts-forge-9.5.14.jar of type MOD with provider {mods folder locator at C:\curseforge\minecraft\Instances\Behlottr v2.0\mods} [11:09:31] [main/INFO]: Found mod file azurelib-neo-1.20.1-2.0.41.jar of type MOD with provider {mods folder locator at C:\curseforge\minecraft\Instances\Behlottr v2.0\mods} [11:09:31] [main/INFO]: Found mod file BadOptimizations-2.2.1-1.20.1.jar of type MOD with provider {mods folder locator at C:\curseforge\minecraft\Instances\Behlottr v2.0\mods} [11:09:31] [main/INFO]: Found mod file BeeFix-1.20-1.0.7.jar of type MOD with provider {mods folder locator at C:\curseforge\minecraft\Instances\Behlottr v2.0\mods} [11:09:31] [main/INFO]: Found mod file BetterAdvancements-Forge-1.20.1-0.4.2.10.jar of type MOD with provider {mods folder locator at C:\curseforge\minecraft\Instances\Behlottr v2.0\mods} [11:09:31] [main/INFO]: Found mod file BetterCompatibilityChecker-forge-4.0.8+mc1.20.1.jar of type MOD with provider {mods folder locator at C:\curseforge\minecraft\Instances\Behlottr v2.0\mods} [11:09:31] [main/INFO]: Found mod file BetterF3-7.0.2-Forge-1.20.1.jar of type MOD with provider {mods folder locator at C:\curseforge\minecraft\Instances\Behlottr v2.0\mods} [11:09:31] [main/INFO]: Found mod file biomimicry-0.3d+1.20.1.jar of type MOD with provider {mods folder locator at C:\curseforge\minecraft\Instances\Behlottr v2.0\mods} [11:09:31] [main/INFO]: Found mod file blockui-1.20.1-1.0.156-RELEASE.jar of type MOD with provider {mods folder locator at C:\curseforge\minecraft\Instances\Behlottr v2.0\mods} [11:09:31] [main/INFO]: Found mod file Bookshelf-Forge-1.20.1-20.2.13.jar of type MOD with provider {mods folder locator at C:\curseforge\minecraft\Instances\Behlottr v2.0\mods} [11:09:31] [main/INFO]: Found mod file botarium-forge-1.20.1-2.3.4.jar of type MOD with provider {mods folder locator at C:\curseforge\minecraft\Instances\Behlottr v2.0\mods} [11:09:31] [main/INFO]: Found mod file bwncr-forge-1.20.1-3.17.2.jar of type MOD with provider {mods folder locator at C:\curseforge\minecraft\Instances\Behlottr v2.0\mods} [11:09:31] [main/INFO]: Found mod file caelus-forge-3.2.0+1.20.1.jar of type MOD with provider {mods folder locator at C:\curseforge\minecraft\Instances\Behlottr v2.0\mods} [11:09:31] [main/INFO]: Found mod file canary-mc1.20.1-0.3.3.jar of type MOD with provider {mods folder locator at C:\curseforge\minecraft\Instances\Behlottr v2.0\mods} [11:09:31] [main/INFO]: Found mod file cc-tweaked-1.20.1-forge-1.113.1.jar of type MOD with provider {mods folder locator at C:\curseforge\minecraft\Instances\Behlottr v2.0\mods} [11:09:31] [main/INFO]: Found mod file cccbridge-mc1.20.1-forge-1.6.3.jar of type MOD with provider {mods folder locator at C:\curseforge\minecraft\Instances\Behlottr v2.0\mods} [11:09:31] [main/INFO]: Found mod file chickensshed-forge-1.6.0+mc1.20.1.jar of type MOD with provider {mods folder locator at C:\curseforge\minecraft\Instances\Behlottr v2.0\mods} [11:09:31] [main/INFO]: Found mod file chisels-and-bits-forge-1.4.148.jar of type MOD with provider {mods folder locator at C:\curseforge\minecraft\Instances\Behlottr v2.0\mods} [11:09:31] [main/INFO]: Found mod file chunkloaders-1.2.8a-forge-mc1.20.1.jar of type MOD with provider {mods folder locator at C:\curseforge\minecraft\Instances\Behlottr v2.0\mods} [11:09:31] [main/INFO]: Found mod file citadel-2.6.1-1.20.1.jar of type MOD with provider {mods folder locator at C:\curseforge\minecraft\Instances\Behlottr v2.0\mods} [11:09:31] [main/INFO]: Found mod file clickadv-1.20.1-3.8.jar of type MOD with provider {mods folder locator at C:\curseforge\minecraft\Instances\Behlottr v2.0\mods} [11:09:31] [main/INFO]: Found mod file clientcrafting-1.20.1-1.8.jar of type MOD with provider {mods folder locator at C:\curseforge\minecraft\Instances\Behlottr v2.0\mods} [11:09:31] [main/INFO]: Found mod file cloth-config-11.1.136-forge.jar of type MOD with provider {mods folder locator at C:\curseforge\minecraft\Instances\Behlottr v2.0\mods} [11:09:31] [main/INFO]: Found mod file Clumps-forge-1.20.1-12.0.0.4.jar of type MOD with provider {mods folder locator at C:\curseforge\minecraft\Instances\Behlottr v2.0\mods} [11:09:31] [main/INFO]: Found mod file collective-1.20.1-7.94.jar of type MOD with provider {mods folder locator at C:\curseforge\minecraft\Instances\Behlottr v2.0\mods} [11:09:31] [main/INFO]: Found mod file Colony4ComputerCraft-1.20.1-2.6.5.jar of type MOD with provider {mods folder locator at C:\curseforge\minecraft\Instances\Behlottr v2.0\mods} [11:09:31] [main/INFO]: Found mod file colony_curios-1.0.0.jar of type MOD with provider {mods folder locator at C:\curseforge\minecraft\Instances\Behlottr v2.0\mods} [11:09:31] [main/INFO]: Found mod file configured-forge-1.20.1-2.2.3.jar of type MOD with provider {mods folder locator at C:\curseforge\minecraft\Instances\Behlottr v2.0\mods} [11:09:31] [main/INFO]: Found mod file connectivity-1.20.1-7.1.jar of type MOD with provider {mods folder locator at C:\curseforge\minecraft\Instances\Behlottr v2.0\mods} [11:09:31] [main/INFO]: Found mod file ConnectorExtras-1.11.2+1.20.1.jar of type MOD with provider {mods folder locator at C:\curseforge\minecraft\Instances\Behlottr v2.0\mods} [11:09:31] [main/INFO]: Found mod file Controlling-forge-1.20.1-12.0.2.jar of type MOD with provider {mods folder locator at C:\curseforge\minecraft\Instances\Behlottr v2.0\mods} [11:09:31] [main/INFO]: Found mod file cosmeticarmorreworked-1.20.1-v1a.jar of type MOD with provider {mods folder locator at C:\curseforge\minecraft\Instances\Behlottr v2.0\mods} [11:09:31] [main/INFO]: Found mod file create-1.20.1-6.0.4.jar of type MOD with provider {mods folder locator at C:\curseforge\minecraft\Instances\Behlottr v2.0\mods} [11:09:31] [main/INFO]: Found mod file create-confectionery1.20.1_v1.1.0.jar of type MOD with provider {mods folder locator at C:\curseforge\minecraft\Instances\Behlottr v2.0\mods} [11:09:31] [main/INFO]: Found mod file create-new-age-forge-1.20.1-1.1.3.jar of type MOD with provider {mods folder locator at C:\curseforge\minecraft\Instances\Behlottr v2.0\mods} [11:09:31] [main/INFO]: Found mod file create_basic_additions-1.20.1-1.0.2-forge.jar of type MOD with provider {mods folder locator at C:\curseforge\minecraft\Instances\Behlottr v2.0\mods} [11:09:31] [main/INFO]: Found mod file create_misc_and_things_ 1.20.1_4.0A.jar of type MOD with provider {mods folder locator at C:\curseforge\minecraft\Instances\Behlottr v2.0\mods} [11:09:31] [main/INFO]: Found mod file create_recycle_1.0.2_forge_1.20.1.jar of type MOD with provider {mods folder locator at C:\curseforge\minecraft\Instances\Behlottr v2.0\mods} [11:09:31] [main/INFO]: Found mod file createaddition-1.20.1-1.3.1.jar of type MOD with provider {mods folder locator at C:\curseforge\minecraft\Instances\Behlottr v2.0\mods} [11:09:31] [main/INFO]: Found mod file createchromaticreturn-1.0.2-forge-1.20.1.jar of type MOD with provider {mods folder locator at C:\curseforge\minecraft\Instances\Behlottr v2.0\mods} [11:09:31] [main/INFO]: Found mod file cristellib-1.1.6-forge.jar of type MOD with provider {mods folder locator at C:\curseforge\minecraft\Instances\Behlottr v2.0\mods} [11:09:31] [main/INFO]: Found mod file cupboard-1.20.1-2.7.jar of type MOD with provider {mods folder locator at C:\curseforge\minecraft\Instances\Behlottr v2.0\mods} [11:09:31] [main/INFO]: Found mod file curios-forge-5.12.1+1.20.1.jar of type MOD with provider {mods folder locator at C:\curseforge\minecraft\Instances\Behlottr v2.0\mods} [11:09:31] [main/INFO]: Found mod file DistractingTrims-Forge-1.20.1-2.0.4.jar of type MOD with provider {mods folder locator at C:\curseforge\minecraft\Instances\Behlottr v2.0\mods} [11:09:31] [main/INFO]: Found mod file domesticationinnovation-1.7.1-1.20.1.jar of type MOD with provider {mods folder locator at C:\curseforge\minecraft\Instances\Behlottr v2.0\mods} [11:09:31] [main/INFO]: Found mod file domum_ornamentum-1.20.1-1.0.186-RELEASE-universal.jar of type MOD with provider {mods folder locator at C:\curseforge\minecraft\Instances\Behlottr v2.0\mods} [11:09:31] [main/INFO]: Found mod file duckyperiphs-1.20.1-1.3.1-forge.jar of type MOD with provider {mods folder locator at C:\curseforge\minecraft\Instances\Behlottr v2.0\mods} [11:09:31] [main/INFO]: Found mod file dynview-1.20.1-4.0.jar of type MOD with provider {mods folder locator at C:\curseforge\minecraft\Instances\Behlottr v2.0\mods} [11:09:31] [main/INFO]: Found mod file EasyAnvils-v8.0.2-1.20.1-Forge.jar of type MOD with provider {mods folder locator at C:\curseforge\minecraft\Instances\Behlottr v2.0\mods} [11:09:31] [main/INFO]: Found mod file easynetheritev1.jar of type MOD with provider {mods folder locator at C:\curseforge\minecraft\Instances\Behlottr v2.0\mods} [11:09:31] [main/INFO]: Found mod file elytraslot-forge-6.4.4+1.20.1.jar of type MOD with provider {mods folder locator at C:\curseforge\minecraft\Instances\Behlottr v2.0\mods} [11:09:31] [main/INFO]: Found mod file embeddium-0.3.31+mc1.20.1.jar of type MOD with provider {mods folder locator at C:\curseforge\minecraft\Instances\Behlottr v2.0\mods} [11:09:31] [main/INFO]: Found mod file EnchantmentDescriptions-Forge-1.20.1-17.1.19.jar of type MOD with provider {mods folder locator at C:\curseforge\minecraft\Instances\Behlottr v2.0\mods} [11:09:31] [main/INFO]: Found mod file endermanoverhaul-forge-1.20.1-1.0.4.jar of type MOD with provider {mods folder locator at C:\curseforge\minecraft\Instances\Behlottr v2.0\mods} [11:09:31] [main/INFO]: Found mod file ends_delight-2.5.1+forge.1.20.1.jar of type MOD with provider {mods folder locator at C:\curseforge\minecraft\Instances\Behlottr v2.0\mods} [11:09:31] [main/INFO]: Found mod file entityculling-forge-1.7.3-mc1.20.1.jar of type MOD with provider {mods folder locator at C:\curseforge\minecraft\Instances\Behlottr v2.0\mods} [11:09:31] [main/INFO]: Found mod file expanded_ecosphere-3.2.4-forge.jar of type MOD with provider {mods folder locator at C:\curseforge\minecraft\Instances\Behlottr v2.0\mods} [11:09:31] [main/INFO]: Found mod file exposure-1.20.1-1.7.10-forge.jar of type MOD with provider {mods folder locator at C:\curseforge\minecraft\Instances\Behlottr v2.0\mods} [11:09:31] [main/INFO]: Found mod file fabric-api-0.92.2+1.11.12+1.20.1.jar of type MOD with provider {mods folder locator at C:\curseforge\minecraft\Instances\Behlottr v2.0\mods} [11:09:31] [main/INFO]: Found mod file FarmersDelight-1.20.1-1.2.7.jar of type MOD with provider {mods folder locator at C:\curseforge\minecraft\Instances\Behlottr v2.0\mods} [11:09:31] [main/INFO]: Found mod file farsight-1.20.1-3.7.jar of type MOD with provider {mods folder locator at C:\curseforge\minecraft\Instances\Behlottr v2.0\mods} [11:09:31] [main/INFO]: Found mod file fastasyncworldsave-1.20.1-2.4.jar of type MOD with provider {mods folder locator at C:\curseforge\minecraft\Instances\Behlottr v2.0\mods} [11:09:31] [main/INFO]: Found mod file fastchest-reforged-1.4+1.20.jar of type MOD with provider {mods folder locator at C:\curseforge\minecraft\Instances\Behlottr v2.0\mods} [11:09:31] [main/INFO]: Found mod file FastFurnace-1.20.1-8.0.2.jar of type MOD with provider {mods folder locator at C:\curseforge\minecraft\Instances\Behlottr v2.0\mods} [11:09:31] [main/INFO]: Found mod file fastpaintings-1.20-1.2.7.jar of type MOD with provider {mods folder locator at C:\curseforge\minecraft\Instances\Behlottr v2.0\mods} [11:09:31] [main/INFO]: Found mod file FastSuite-1.20.1-5.1.0.jar of type MOD with provider {mods folder locator at C:\curseforge\minecraft\Instances\Behlottr v2.0\mods} [11:09:31] [main/INFO]: Found mod file FastWorkbench-1.20.1-8.0.4.jar of type MOD with provider {mods folder locator at C:\curseforge\minecraft\Instances\Behlottr v2.0\mods} [11:09:31] [main/INFO]: Found mod file flowerymooblooms-forge-mc1.20.1-2.0.2.jar of type MOD with provider {mods folder locator at C:\curseforge\minecraft\Instances\Behlottr v2.0\mods} [11:09:31] [main/INFO]: Found mod file fmans_disc_mod-1.0.0-forge-1.20.1.jar of type MOD with provider {mods folder locator at C:\curseforge\minecraft\Instances\Behlottr v2.0\mods} [11:09:31] [main/INFO]: Found mod file ForgeEndertech-1.20.1-11.1.6.0-build.0980.jar of type MOD with provider {mods folder locator at C:\curseforge\minecraft\Instances\Behlottr v2.0\mods} [11:09:31] [main/INFO]: Found mod file friendsandfoes-forge-mc1.20.1-3.0.8.jar of type MOD with provider {mods folder locator at C:\curseforge\minecraft\Instances\Behlottr v2.0\mods} [11:09:31] [main/INFO]: Found mod file FSang18's Heropack v10.1.1.jar of type MOD with provider {mods folder locator at C:\curseforge\minecraft\Instances\Behlottr v2.0\mods} [11:09:31] [main/INFO]: Found mod file geckolib-forge-1.20.1-4.7.1.2.jar of type MOD with provider {mods folder locator at C:\curseforge\minecraft\Instances\Behlottr v2.0\mods} [11:09:31] [main/INFO]: Found mod file getittogetherdrops-forge-1.20-1.3.jar of type MOD with provider {mods folder locator at C:\curseforge\minecraft\Instances\Behlottr v2.0\mods} [11:09:31] [main/INFO]: Found mod file gravestone-forge-1.20.1-1.0.24.jar of type MOD with provider {mods folder locator at C:\curseforge\minecraft\Instances\Behlottr v2.0\mods} [11:09:31] [main/INFO]: Found mod file guiclock-1.20.1-4.7.jar of type MOD with provider {mods folder locator at C:\curseforge\minecraft\Instances\Behlottr v2.0\mods} [11:09:31] [main/INFO]: Found mod file guicompass-1.20.1-4.9.jar of type MOD with provider {mods folder locator at C:\curseforge\minecraft\Instances\Behlottr v2.0\mods} [11:09:31] [main/INFO]: Found mod file guifollowers-1.20.1-4.0.jar of type MOD with provider {mods folder locator at C:\curseforge\minecraft\Instances\Behlottr v2.0\mods} [11:09:31] [main/INFO]: Found mod file heyberryshutup-1.20.1-2.0.4.jar of type MOD with provider {mods folder locator at C:\curseforge\minecraft\Instances\Behlottr v2.0\mods} [11:09:31] [main/INFO]: Found mod file iceandfire-2.1.13-1.20.1-beta-5.jar of type MOD with provider {mods folder locator at C:\curseforge\minecraft\Instances\Behlottr v2.0\mods} [11:09:31] [main/INFO]: Found mod file inventoryhud.forge.1.20.1-3.4.26.jar of type MOD with provider {mods folder locator at C:\curseforge\minecraft\Instances\Behlottr v2.0\mods} [11:09:31] [main/INFO]: Found mod file Jade-1.20.1-Forge-11.13.1.jar of type MOD with provider {mods folder locator at C:\curseforge\minecraft\Instances\Behlottr v2.0\mods} [11:09:31] [main/INFO]: Found mod file JadeAddons-1.20.1-Forge-5.5.0.jar of type MOD with provider {mods folder locator at C:\curseforge\minecraft\Instances\Behlottr v2.0\mods} [11:09:31] [main/INFO]: Found mod file JadeColonies-1.20.1-1.4.2.jar of type MOD with provider {mods folder locator at C:\curseforge\minecraft\Instances\Behlottr v2.0\mods} [11:09:31] [main/INFO]: Found mod file jearchaeology-1.20.1-1.0.4.jar of type MOD with provider {mods folder locator at C:\curseforge\minecraft\Instances\Behlottr v2.0\mods} [11:09:31] [main/INFO]: Found mod file jei-1.20.1-forge-15.20.0.106.jar of type MOD with provider {mods folder locator at C:\curseforge\minecraft\Instances\Behlottr v2.0\mods} [11:09:31] [main/INFO]: Found mod file justenoughbreeding-forge-1.20-1.20.1-1.5.0.jar of type MOD with provider {mods folder locator at C:\curseforge\minecraft\Instances\Behlottr v2.0\mods} [11:09:31] [main/INFO]: Found mod file JustEnoughProfessions-forge-1.20.1-3.0.1.jar of type MOD with provider {mods folder locator at C:\curseforge\minecraft\Instances\Behlottr v2.0\mods} [11:09:31] [main/INFO]: Found mod file JustEnoughResources-1.20.1-1.4.0.247.jar of type MOD with provider {mods folder locator at C:\curseforge\minecraft\Instances\Behlottr v2.0\mods} [11:09:31] [main/INFO]: Found mod file keepmysoiltilled-1.20.1-2.5.jar of type MOD with provider {mods folder locator at C:\curseforge\minecraft\Instances\Behlottr v2.0\mods} [11:09:31] [main/INFO]: Found mod file kotlinforforge-4.11.0-all.jar of type LIBRARY with provider {mods folder locator at C:\curseforge\minecraft\Instances\Behlottr v2.0\mods} [11:09:31] [main/INFO]: Found mod file kubejs-forge-2001.6.5-build.16.jar of type MOD with provider {mods folder locator at C:\curseforge\minecraft\Instances\Behlottr v2.0\mods} [11:09:31] [main/INFO]: Found mod file LeaveMyBarsAlone-v8.0.0-1.20.1-Forge.jar of type MOD with provider {mods folder locator at C:\curseforge\minecraft\Instances\Behlottr v2.0\mods} [11:09:31] [main/INFO]: Found mod file letmedespawn-1.20.x-forge-1.5.0.jar of type MOD with provider {mods folder locator at C:\curseforge\minecraft\Instances\Behlottr v2.0\mods} [11:09:31] [main/INFO]: Found mod file letsdo-API-forge-1.2.15-forge.jar of type MOD with provider {mods folder locator at C:\curseforge\minecraft\Instances\Behlottr v2.0\mods} [11:09:31] [main/INFO]: Found mod file letsdo-bakery-forge-1.1.15.jar of type MOD with provider {mods folder locator at C:\curseforge\minecraft\Instances\Behlottr v2.0\mods} [11:09:31] [main/INFO]: Found mod file letsdo-brewery-forge-1.1.9.jar of type MOD with provider {mods folder locator at C:\curseforge\minecraft\Instances\Behlottr v2.0\mods} [11:09:31] [main/INFO]: Found mod file letsdo-herbalbrews-forge-1.0.11.jar of type MOD with provider {mods folder locator at C:\curseforge\minecraft\Instances\Behlottr v2.0\mods} [11:09:31] [main/INFO]: Found mod file letsdo-nethervinery-forge-1.2.17.jar of type MOD with provider {mods folder locator at C:\curseforge\minecraft\Instances\Behlottr v2.0\mods} [11:09:31] [main/INFO]: Found mod file letsdo-vinery-forge-1.4.39.jar of type MOD with provider {mods folder locator at C:\curseforge\minecraft\Instances\Behlottr v2.0\mods} [11:09:31] [main/INFO]: Found mod file Mantle-1.20.1-1.11.44.jar of type MOD with provider {mods folder locator at C:\curseforge\minecraft\Instances\Behlottr v2.0\mods} [11:09:31] [main/INFO]: Found mod file map_atlases-1.20-6.0.15.jar of type MOD with provider {mods folder locator at C:\curseforge\minecraft\Instances\Behlottr v2.0\mods} [11:09:31] [main/INFO]: Found mod file mavapi-1.1.4-mc1.20.1.jar of type MOD with provider {mods folder locator at C:\curseforge\minecraft\Instances\Behlottr v2.0\mods} [11:09:31] [main/INFO]: Found mod file mavm-1.2.6-mc1.20.1.jar of type MOD with provider {mods folder locator at C:\curseforge\minecraft\Instances\Behlottr v2.0\mods} [11:09:31] [main/INFO]: Found mod file minecolonies-1.20.1-1.1.838-snapshot.jar of type MOD with provider {mods folder locator at C:\curseforge\minecraft\Instances\Behlottr v2.0\mods} [11:09:31] [main/INFO]: Found mod file MineColonies_Compatibility-1.20.1-2.66.jar of type MOD with provider {mods folder locator at C:\curseforge\minecraft\Instances\Behlottr v2.0\mods} [11:09:31] [main/INFO]: Found mod file MineColonies_Tweaks-1.20.1-2.54.jar of type MOD with provider {mods folder locator at C:\curseforge\minecraft\Instances\Behlottr v2.0\mods} [11:09:31] [main/INFO]: Found mod file modernfix-forge-5.20.2+mc1.20.1.jar of type MOD with provider {mods folder locator at C:\curseforge\minecraft\Instances\Behlottr v2.0\mods} [11:09:31] [main/INFO]: Found mod file moonlight-1.20-2.13.79-forge.jar of type MOD with provider {mods folder locator at C:\curseforge\minecraft\Instances\Behlottr v2.0\mods} [11:09:31] [main/INFO]: Found mod file MorePeripherals_1.20.1-1.13.0.jar of type MOD with provider {mods folder locator at C:\curseforge\minecraft\Instances\Behlottr v2.0\mods} [11:09:31] [main/INFO]: Found mod file MouseTweaks-forge-mc1.20.1-2.25.1.jar of type MOD with provider {mods folder locator at C:\curseforge\minecraft\Instances\Behlottr v2.0\mods} [11:09:31] [main/INFO]: Found mod file multipiston-1.20-1.2.43-RELEASE.jar of type MOD with provider {mods folder locator at C:\curseforge\minecraft\Instances\Behlottr v2.0\mods} [11:09:31] [main/INFO]: Found mod file mutil-1.20.1-6.1.1.jar of type MOD with provider {mods folder locator at C:\curseforge\minecraft\Instances\Behlottr v2.0\mods} [11:09:31] [main/INFO]: Found mod file Necronomicon-Forge-1.6.0+1.20.1.jar of type MOD with provider {mods folder locator at C:\curseforge\minecraft\Instances\Behlottr v2.0\mods} [11:09:31] [main/INFO]: Found mod file NEG-FORGE-1.20.1-r1.5.3.jar of type MOD with provider {mods folder locator at C:\curseforge\minecraft\Instances\Behlottr v2.0\mods} [11:09:31] [main/INFO]: Found mod file NekosEnchantedBooks-1.19.3-2.0.3.jar of type MOD with provider {mods folder locator at C:\curseforge\minecraft\Instances\Behlottr v2.0\mods} [11:09:31] [main/INFO]: Found mod file nethersdelight-1.20.1-4.0.jar of type MOD with provider {mods folder locator at C:\curseforge\minecraft\Instances\Behlottr v2.0\mods} [11:09:31] [main/INFO]: Found mod file nolijium-0.5.6.jar of type MOD with provider {mods folder locator at C:\curseforge\minecraft\Instances\Behlottr v2.0\mods} [11:09:31] [main/INFO]: Found mod file obvious_bookshelves-1.0.0-forge-1.20.1.jar of type MOD with provider {mods folder locator at C:\curseforge\minecraft\Instances\Behlottr v2.0\mods} [11:09:31] [main/INFO]: Found mod file oceansdelight-1.0.2-1.20.jar of type MOD with provider {mods folder locator at C:\curseforge\minecraft\Instances\Behlottr v2.0\mods} [11:09:31] [main/INFO]: Found mod file packetfixer-forge-2.0.0-1.19-to-1.20.1.jar of type MOD with provider {mods folder locator at C:\curseforge\minecraft\Instances\Behlottr v2.0\mods} [11:09:31] [main/INFO]: Found mod file palladium-4.1.12+1.20.1-forge.jar of type MOD with provider {mods folder locator at C:\curseforge\minecraft\Instances\Behlottr v2.0\mods} [11:09:31] [main/INFO]: Found mod file pantheonsent-1.1.0+1.20.1-forge.jar of type MOD with provider {mods folder locator at C:\curseforge\minecraft\Instances\Behlottr v2.0\mods} [11:09:31] [main/INFO]: Found mod file Pehkui-3.8.2+1.20.1-forge.jar of type MOD with provider {mods folder locator at C:\curseforge\minecraft\Instances\Behlottr v2.0\mods} [11:09:31] [main/INFO]: Found mod file Placebo-1.20.1-8.6.3.jar of type MOD with provider {mods folder locator at C:\curseforge\minecraft\Instances\Behlottr v2.0\mods} [11:09:31] [main/INFO]: Found mod file playingcards-2.0.1.jar of type MOD with provider {mods folder locator at C:\curseforge\minecraft\Instances\Behlottr v2.0\mods} [11:09:31] [main/INFO]: Found mod file pollutionofcreate-1.20.1-0.0.3.jar of type MOD with provider {mods folder locator at C:\curseforge\minecraft\Instances\Behlottr v2.0\mods} [11:09:31] [main/INFO]: Found mod file polymorph-forge-0.49.8+1.20.1.jar of type MOD with provider {mods folder locator at C:\curseforge\minecraft\Instances\Behlottr v2.0\mods} [11:09:31] [main/INFO]: Found mod file PuzzlesLib-v8.1.29-1.20.1-Forge.jar of type MOD with provider {mods folder locator at C:\curseforge\minecraft\Instances\Behlottr v2.0\mods} [11:09:31] [main/INFO]: Found mod file Quark-4.0-461.jar of type MOD with provider {mods folder locator at C:\curseforge\minecraft\Instances\Behlottr v2.0\mods} [11:09:31] [main/INFO]: Found mod file realistic_horse_genetics-1.20.1-13.5.jar of type MOD with provider {mods folder locator at C:\curseforge\minecraft\Instances\Behlottr v2.0\mods} [11:09:31] [main/INFO]: Found mod file resourcefulconfig-forge-1.20.1-2.1.3.jar of type MOD with provider {mods folder locator at C:\curseforge\minecraft\Instances\Behlottr v2.0\mods} [11:09:31] [main/INFO]: Found mod file resourcefullib-forge-1.20.1-2.1.29.jar of type MOD with provider {mods folder locator at C:\curseforge\minecraft\Instances\Behlottr v2.0\mods} [11:09:31] [main/INFO]: Found mod file rhino-forge-2001.2.3-build.10.jar of type MOD with provider {mods folder locator at C:\curseforge\minecraft\Instances\Behlottr v2.0\mods} [11:09:31] [main/INFO]: Found mod file Searchables-forge-1.20.1-1.0.3.jar of type MOD with provider {mods folder locator at C:\curseforge\minecraft\Instances\Behlottr v2.0\mods} [11:09:31] [main/INFO]: Found mod file SherdDuplication-Forge-1.20.1-2.0.8.jar of type MOD with provider {mods folder locator at C:\curseforge\minecraft\Instances\Behlottr v2.0\mods} [11:09:31] [main/INFO]: Found mod file sliceanddice-forge-3.4.0.jar of type MOD with provider {mods folder locator at C:\curseforge\minecraft\Instances\Behlottr v2.0\mods} [11:09:31] [main/INFO]: Found mod file sophisticatedbackpacks-1.20.1-3.23.6.1211.jar of type MOD with provider {mods folder locator at C:\curseforge\minecraft\Instances\Behlottr v2.0\mods} [11:09:31] [main/INFO]: Found mod file sophisticatedcore-1.20.1-1.2.23.902.jar of type MOD with provider {mods folder locator at C:\curseforge\minecraft\Instances\Behlottr v2.0\mods} [11:09:31] [main/INFO]: Found mod file sound-physics-remastered-forge-1.20.1-1.4.8.jar of type MOD with provider {mods folder locator at C:\curseforge\minecraft\Instances\Behlottr v2.0\mods} [11:09:31] [main/INFO]: Found mod file spark-1.10.53-forge.jar of type MOD with provider {mods folder locator at C:\curseforge\minecraft\Instances\Behlottr v2.0\mods} [11:09:31] [main/INFO]: Found mod file Stargate Journey-1.20.1-0.6.38.jar of type MOD with provider {mods folder locator at C:\curseforge\minecraft\Instances\Behlottr v2.0\mods} [11:09:31] [main/INFO]: Found mod file Steam_Rails-1.6.7+forge-mc1.20.1.jar of type MOD with provider {mods folder locator at C:\curseforge\minecraft\Instances\Behlottr v2.0\mods} [11:09:31] [main/INFO]: Found mod file structurize-1.20.1-1.0.766-snapshot.jar of type MOD with provider {mods folder locator at C:\curseforge\minecraft\Instances\Behlottr v2.0\mods} [11:09:31] [main/INFO]: Found mod file stylecolonies-1.12-1.20.1.jar of type MOD with provider {mods folder locator at C:\curseforge\minecraft\Instances\Behlottr v2.0\mods} [11:09:31] [main/INFO]: Found mod file supermartijn642configlib-1.1.8-forge-mc1.20.jar of type MOD with provider {mods folder locator at C:\curseforge\minecraft\Instances\Behlottr v2.0\mods} [11:09:31] [main/INFO]: Found mod file supermartijn642corelib-1.1.18-forge-mc1.20.1.jar of type MOD with provider {mods folder locator at C:\curseforge\minecraft\Instances\Behlottr v2.0\mods} [11:09:31] [main/INFO]: Found mod file supplementaries-1.20-3.1.21.jar of type MOD with provider {mods folder locator at C:\curseforge\minecraft\Instances\Behlottr v2.0\mods} [11:09:31] [main/INFO]: Found mod file swplanets-forge-1.20.1-1.4.6.1.jar of type MOD with provider {mods folder locator at C:\curseforge\minecraft\Instances\Behlottr v2.0\mods} [11:09:31] [main/INFO]: Found mod file tetra-1.20.1-6.8.0.jar of type MOD with provider {mods folder locator at C:\curseforge\minecraft\Instances\Behlottr v2.0\mods} [11:09:31] [main/INFO]: Found mod file The Great Crafting Table-1.20.1-1.0.0.jar of type MOD with provider {mods folder locator at C:\curseforge\minecraft\Instances\Behlottr v2.0\mods} [11:09:31] [main/INFO]: Found mod file TheFletchingTableMod_1.20.1.jar of type MOD with provider {mods folder locator at C:\curseforge\minecraft\Instances\Behlottr v2.0\mods} [11:09:31] [main/INFO]: Found mod file ToastControl-1.20.1-8.0.3.jar of type MOD with provider {mods folder locator at C:\curseforge\minecraft\Instances\Behlottr v2.0\mods} [11:09:31] [main/INFO]: Found mod file towntalk-1.20.1-1.1.0.jar of type MOD with provider {mods folder locator at C:\curseforge\minecraft\Instances\Behlottr v2.0\mods} [11:09:31] [main/INFO]: Found mod file TreeChop-1.20.1-forge-0.19.0-fixed.jar of type MOD with provider {mods folder locator at C:\curseforge\minecraft\Instances\Behlottr v2.0\mods} [11:09:31] [main/INFO]: Found mod file unusualprehistory-1.5.0.3.jar of type MOD with provider {mods folder locator at C:\curseforge\minecraft\Instances\Behlottr v2.0\mods} [11:09:31] [main/INFO]: Found mod file villagernames-1.20.1-8.2.jar of type MOD with provider {mods folder locator at C:\curseforge\minecraft\Instances\Behlottr v2.0\mods} [11:09:31] [main/INFO]: Found mod file VisualWorkbench-v8.0.0-1.20.1-Forge.jar of type MOD with provider {mods folder locator at C:\curseforge\minecraft\Instances\Behlottr v2.0\mods} [11:09:31] [main/INFO]: Found mod file voicechat-forge-1.20.1-2.5.26.jar of type MOD with provider {mods folder locator at C:\curseforge\minecraft\Instances\Behlottr v2.0\mods} [11:09:31] [main/INFO]: Found mod file xercapaint-1.20.1-1.0.1.jar of type MOD with provider {mods folder locator at C:\curseforge\minecraft\Instances\Behlottr v2.0\mods} [11:09:31] [main/INFO]: Found mod file xlpackets-1.18.2-2.1.jar of type MOD with provider {mods folder locator at C:\curseforge\minecraft\Instances\Behlottr v2.0\mods} [11:09:31] [main/INFO]: Found mod file YeetusExperimentus-Forge-2.3.1-build.6+mc1.20.1.jar of type MOD with provider {mods folder locator at C:\curseforge\minecraft\Instances\Behlottr v2.0\mods} [11:09:31] [main/INFO]: Found mod file Zeta-1.0-28.jar of type MOD with provider {mods folder locator at C:\curseforge\minecraft\Instances\Behlottr v2.0\mods} [11:09:32] [main/WARN]: Mod file C:\curseforge\minecraft\Install\libraries\net\minecraftforge\fmlcore\1.20.1-47.4.0\fmlcore-1.20.1-47.4.0.jar is missing mods.toml file [11:09:32] [main/WARN]: Mod file C:\curseforge\minecraft\Install\libraries\net\minecraftforge\javafmllanguage\1.20.1-47.4.0\javafmllanguage-1.20.1-47.4.0.jar is missing mods.toml file [11:09:32] [main/WARN]: Mod file C:\curseforge\minecraft\Install\libraries\net\minecraftforge\lowcodelanguage\1.20.1-47.4.0\lowcodelanguage-1.20.1-47.4.0.jar is missing mods.toml file [11:09:32] [main/WARN]: Mod file C:\curseforge\minecraft\Install\libraries\net\minecraftforge\mclanguage\1.20.1-47.4.0\mclanguage-1.20.1-47.4.0.jar is missing mods.toml file [11:09:32] [main/INFO]: Found mod file fmlcore-1.20.1-47.4.0.jar of type LIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.MinecraftLocator@2a869a16 [11:09:32] [main/INFO]: Found mod file javafmllanguage-1.20.1-47.4.0.jar of type LANGPROVIDER with provider net.minecraftforge.fml.loading.moddiscovery.MinecraftLocator@2a869a16 [11:09:32] [main/INFO]: Found mod file lowcodelanguage-1.20.1-47.4.0.jar of type LANGPROVIDER with provider net.minecraftforge.fml.loading.moddiscovery.MinecraftLocator@2a869a16 [11:09:32] [main/INFO]: Found mod file mclanguage-1.20.1-47.4.0.jar of type LANGPROVIDER with provider net.minecraftforge.fml.loading.moddiscovery.MinecraftLocator@2a869a16 [11:09:32] [main/INFO]: Found mod file client-1.20.1-20230612.114412-srg.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.MinecraftLocator@2a869a16 [11:09:32] [main/INFO]: Found mod file forge-1.20.1-47.4.0-universal.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.MinecraftLocator@2a869a16 [11:09:34] [main/WARN]: Attempted to select two dependency jars from JarJar which have the same identification: Mod File:  and Mod File: . Using Mod File:  [11:09:34] [main/WARN]: Attempted to select a dependency jar for JarJar which was passed in as source: geckolib. Using Mod File: C:\curseforge\minecraft\Instances\Behlottr v2.0\mods\geckolib-forge-1.20.1-4.7.1.2.jar [11:09:34] [main/INFO]: Found 86 dependencies adding them to mods collection [11:09:34] [main/INFO]: Found mod file fabric-transfer-api-v1-3.3.5+631c9cd677.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@64b0d1fa [11:09:34] [main/INFO]: Found mod file fabric-dimensions-v1-2.1.54+8005d10d77.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@64b0d1fa [11:09:34] [main/INFO]: Found mod file fabric-renderer-api-v1-3.2.1+cf68abbe77.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@64b0d1fa [11:09:34] [main/INFO]: Found mod file scena-forge-1.0.103.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@64b0d1fa [11:09:34] [main/INFO]: Found mod file kfflang-4.11.0.jar of type LANGPROVIDER with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@64b0d1fa [11:09:34] [main/INFO]: Found mod file player-animation-lib-forge-1.0.2-rc1+1.20.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@64b0d1fa [11:09:34] [main/INFO]: Found mod file Ponder-Forge-1.20.1-1.0.52.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@64b0d1fa [11:09:34] [main/INFO]: Found mod file kubejs-bridge-1.11.2+1.20.1.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@64b0d1fa [11:09:34] [main/INFO]: Found mod file fabric-item-api-v1-2.1.28+4d0bbcfa77.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@64b0d1fa [11:09:34] [main/INFO]: Found mod file fabric-model-loading-api-v1-1.0.3+6274ab9d77.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@64b0d1fa [11:09:34] [main/INFO]: Found mod file palladiumcore-forge-1.0.1+1.20.1-forge.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@64b0d1fa [11:09:34] [main/INFO]: Found mod file modmenu-bridge-1.11.2+1.20.1.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@64b0d1fa [11:09:34] [main/INFO]: Found mod file fabric-rendering-fluids-v1-3.0.28+4ac5e37a77.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@64b0d1fa [11:09:34] [main/INFO]: Found mod file pehkui-bridge-1.11.2+1.20.1.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@64b0d1fa [11:09:34] [main/INFO]: Found mod file fabric-screen-handler-api-v1-1.3.30+561530ec77.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@64b0d1fa [11:09:34] [main/INFO]: Found mod file fabric-models-v0-0.4.2+7c3892a477.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@64b0d1fa [11:09:34] [main/INFO]: Found mod file fabric-resource-loader-v0-0.11.10+bcd08ed377.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@64b0d1fa [11:09:34] [main/INFO]: Found mod file mclib-20.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@64b0d1fa [11:09:34] [main/INFO]: Found mod file fabric-rendering-v1-3.0.8+66e9a48f77.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@64b0d1fa [11:09:34] [main/INFO]: Found mod file fabric-renderer-indigo-1.5.2+b5b2da4177.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@64b0d1fa [11:09:34] [main/INFO]: Found mod file fabric-convention-tags-v1-1.5.5+fa3d1c0177.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@64b0d1fa [11:09:34] [main/INFO]: Found mod file fabric-mining-level-api-v1-2.1.50+561530ec77.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@64b0d1fa [11:09:34] [main/INFO]: Found mod file fabric-command-api-v1-1.2.34+f71b366f77.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@64b0d1fa [11:09:34] [main/INFO]: Found mod file fabric-block-view-api-v2-1.0.1+0767707077.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@64b0d1fa [11:09:34] [main/INFO]: Found mod file MixinExtras-0.4.1.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@64b0d1fa [11:09:34] [main/INFO]: Found mod file fabric-command-api-v2-2.2.13+561530ec77.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@64b0d1fa [11:09:34] [main/INFO]: Found mod file fabric-data-attachment-api-v1-1.0.0+30ef839e77.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@64b0d1fa [11:09:34] [main/INFO]: Found mod file mixinextras-forge-0.4.1.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@64b0d1fa [11:09:34] [main/INFO]: Found mod file rei-bridge-1.11.2+1.20.1.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@64b0d1fa [11:09:34] [main/INFO]: Found mod file geckolib-fabric-compat-1.11.2+1.20.1.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@64b0d1fa [11:09:34] [main/INFO]: Found mod file jzlib-1.1.3.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@64b0d1fa [11:09:34] [main/INFO]: Found mod file jankson-1.2.3.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@64b0d1fa [11:09:34] [main/INFO]: Found mod file fabric-screen-api-v1-2.0.8+45a670a577.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@64b0d1fa [11:09:34] [main/INFO]: Found mod file energy-bridge-1.11.2+1.20.1.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@64b0d1fa [11:09:34] [main/INFO]: Found mod file fabric-particles-v1-1.1.2+78e1ecb877.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@64b0d1fa [11:09:34] [main/INFO]: Found mod file puzzlesaccessapi-forge-20.1.1.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@64b0d1fa [11:09:34] [main/INFO]: Found mod file lz4-pure-java-1.8.0.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@64b0d1fa [11:09:34] [main/INFO]: Found mod file fabric-content-registries-v0-4.0.11+a670df1e77.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@64b0d1fa [11:09:34] [main/INFO]: Found mod file fabric-transitive-access-wideners-v1-4.3.1+1880499877.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@64b0d1fa [11:09:34] [main/INFO]: Found mod file terrablender-bridge-1.11.2+1.20.1.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@64b0d1fa [11:09:34] [main/INFO]: Found mod file jctools-core-4.0.5.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@64b0d1fa [11:09:34] [main/INFO]: Found mod file fabric-game-rule-api-v1-1.0.40+683d4da877.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@64b0d1fa [11:09:34] [main/INFO]: Found mod file fabric-api-base-0.4.31+ef105b4977.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@64b0d1fa [11:09:34] [main/INFO]: Found mod file runtime-1.0.0+1.20.1.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@64b0d1fa [11:09:34] [main/INFO]: Found mod file fabric-api-lookup-api-v1-1.6.36+67f9824077.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@64b0d1fa [11:09:34] [main/INFO]: Found mod file MixinSquared-0.2.0.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@64b0d1fa [11:09:34] [main/INFO]: Found mod file fabric-blockrenderlayer-v1-1.1.41+1d0da21e77.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@64b0d1fa [11:09:34] [main/INFO]: Found mod file extras-utils-1.11.2+1.20.1.jar of type LIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@64b0d1fa [11:09:34] [main/INFO]: Found mod file mixinsquared-forge-0.2.0.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@64b0d1fa [11:09:34] [main/INFO]: Found mod file amecsapi-1.5.3+mc1.20-pre1.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@64b0d1fa [11:09:34] [main/INFO]: Found mod file Registrate-MC1.20-1.3.3.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@64b0d1fa [11:09:34] [main/INFO]: Found mod file spectrelib-forge-0.13.17+1.20.1.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@64b0d1fa [11:09:34] [main/INFO]: Found mod file fabric-block-api-v1-1.0.11+0e6cb7f777.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@64b0d1fa [11:09:34] [main/INFO]: Found mod file jei-bridge-1.11.2+1.20.1.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@64b0d1fa [11:09:34] [main/INFO]: Found mod file reach-entity-attributes-2.4.0.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@64b0d1fa [11:09:34] [main/INFO]: Found mod file fabric-resource-conditions-api-v1-2.3.8+9e342fc177.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@64b0d1fa [11:09:34] [main/INFO]: Found mod file forgeconfigapiport-1.11.2+1.20.1.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@64b0d1fa [11:09:34] [main/INFO]: Found mod file kffmod-4.11.0.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@64b0d1fa [11:09:34] [main/INFO]: Found mod file kfflib-4.11.0.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@64b0d1fa [11:09:34] [main/INFO]: Found mod file architectury-bridge-1.11.2+1.20.1.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@64b0d1fa [11:09:34] [main/INFO]: Found mod file cobalt-0.9.3.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@64b0d1fa [11:09:34] [main/INFO]: Found mod file bytecodecs-1.0.2.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@64b0d1fa [11:09:34] [main/INFO]: Found mod file flywheel-forge-1.20.1-1.0.2.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@64b0d1fa [11:09:34] [main/INFO]: Found mod file fabric-item-group-api-v1-4.0.12+c9161c2d77.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@64b0d1fa [11:09:34] [main/INFO]: Found mod file Connector-1.0.0-beta.46+1.20.1-fabricloader.jar of type LIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@64b0d1fa [11:09:34] [main/INFO]: Found mod file fabric-biome-api-v1-13.0.13+dc36698e77.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@64b0d1fa [11:09:34] [main/INFO]: Found mod file fabric-entity-events-v1-1.6.0+4ca7515277.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@64b0d1fa [11:09:34] [main/INFO]: Found mod file sherdsapi-4.0.4+Forge.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@64b0d1fa [11:09:34] [main/INFO]: Found mod file fabric-registry-sync-v0-2.3.3+1c0ea72177.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@64b0d1fa [11:09:34] [main/INFO]: Found mod file yabn-1.0.3.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@64b0d1fa [11:09:34] [main/INFO]: Found mod file fabric-recipe-api-v1-1.0.21+514a076577.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@64b0d1fa [11:09:34] [main/INFO]: Found mod file fabric-loot-api-v2-1.2.1+eb28f93e77.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@64b0d1fa [11:09:34] [main/INFO]: Found mod file fabric-object-builder-api-v1-11.1.3+4bd998fa77.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@64b0d1fa [11:09:34] [main/INFO]: Found mod file fabric-rendering-data-attachment-v1-0.3.37+a6081afc77.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@64b0d1fa [11:09:34] [main/INFO]: Found mod file fabric-networking-api-v1-1.3.11+503a202477.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@64b0d1fa [11:09:34] [main/INFO]: Found mod file saecularia-caudices-forge-1.0.23.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@64b0d1fa [11:09:34] [main/INFO]: Found mod file fabric-sound-api-v1-1.0.13+4f23bd8477.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@64b0d1fa [11:09:34] [main/INFO]: Found mod file fabric-message-api-v1-5.1.9+52cc178c77.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@64b0d1fa [11:09:34] [main/INFO]: Found mod file expandability-forge-9.0.4.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@64b0d1fa [11:09:34] [main/INFO]: Found mod file emi-bridge-1.11.2+1.20.1.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@64b0d1fa [11:09:34] [main/INFO]: Found mod file jlayer-1.0.1.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@64b0d1fa [11:09:34] [main/INFO]: Found mod file fabric-lifecycle-events-v1-2.2.22+afab492177.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@64b0d1fa [11:09:34] [main/INFO]: Found mod file fabric-data-generation-api-v1-12.3.4+369cb3a477.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@64b0d1fa [11:09:34] [main/INFO]: Found mod file fabric-events-interaction-v0-0.6.2+0d0bd5a777.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@64b0d1fa [11:09:34] [main/INFO]: Found mod file fabric-key-binding-api-v1-1.0.37+561530ec77.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@64b0d1fa [11:09:34] [main/INFO]: Found mod file fabric-client-tags-api-v1-1.1.2+5d6761b877.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@64b0d1fa [11:09:36] [main/INFO]: Fabric mod metadata not found in jar thedarkcolour.kotlinforforge, ignoring [11:09:37] [main/INFO]: Dependency resolution found 2 candidates to load [11:09:39] [main/INFO]: Found mod file Eldritch_End-FORGE-MC1.20.1-0.3.3$aaa-particles-1.20.1-1.4.5-fabric_mapped_srg_1.20.1.jar of type MOD with provider org.sinytra.connector.locator.ConnectorLocator@3181d4de [11:09:39] [main/INFO]: Found mod file Eldritch_End-FORGE-MC1.20.1-0.3.3_mapped_srg_1.20.1.jar of type MOD with provider org.sinytra.connector.locator.ConnectorLocator@3181d4de [11:09:42] [main/INFO]: Successfully made module authlib transformable [11:10:06] [main/INFO]: Compatibility level set to JAVA_17 [11:10:07] [main/INFO]: Successfully loaded Mixin Connector [com.sonicether.soundphysics.MixinConnector] [11:10:07] [main/INFO]: Launching target 'forgeclient' with arguments [--version, forge-47.4.0, --gameDir, C:\curseforge\minecraft\Instances\Behlottr v2.0, --assetsDir, C:\curseforge\minecraft\Install\assets, --uuid, 21debf5d5e4c47fcb420862cf2b604cc, --username, Irithind, --assetIndex, 5, --accessToken, ????????, --clientId, NDg4ZjMxNjktYzg5Zi00MDZlLTk3N2UtNWUyMDYzZDE2MjYw, --xuid, 2535432910834510, --userType, msa, --versionType, release, --width, 1024, --height, 768, --quickPlayPath, C:\curseforge\minecraft\Install\quickPlay\java\1742810951879.json] [11:10:07] [main/INFO]: Loaded configuration file for ModernFix 5.20.2+mc1.20.1: 87 options available, 0 override(s) found [11:10:07] [main/INFO]: Applying Nashorn fix [11:10:07] [main/INFO]: Applied Forge config corruption patch [11:10:07] [main/INFO]: Loaded configuration file for Embeddium: 304 options available, 0 override(s) found [11:10:07] [main/INFO]: Searching for graphics cards... [11:10:08] [main/INFO]: Found graphics card: GraphicsAdapterInfo[vendor=AMD, name=Radeon (TM) RX 480 Graphics, version=DriverVersion=31.0.21906.6] [11:10:09] [main/WARN]: Reference map 'expanded_ecosphere-forge-refmap.json' for wwoo.mixins.json could not be read. If this is a development environment you can ignore this message [11:10:09] [main/WARN]: Reference map 'aaa_particles-fabric-refmap.json' for aaa_particles.mixins.json could not be read. If this is a development environment you can ignore this message [11:10:09] [main/WARN]: Reference map 'puzzlesaccessapi.common.refmap.json' for puzzlesaccessapi.common.mixins.json could not be read. If this is a development environment you can ignore this message [11:10:09] [main/WARN]: Reference map 'fastpaintings-forge-refmap.json' for fastpaintings-forge.mixins.json could not be read. If this is a development environment you can ignore this message [11:10:09] [main/INFO]: Loaded configuration file for Canary: 116 options available, 0 override(s) found [11:10:09] [main/INFO]: Loading 257 mods:     - aaa_particles 1.20.1-1.4.5     - ad_astra 1.15.20     - ad_astra_giselle_addon 6.18     - adastraextra 1.2.3     - adpother 8.1.24.0     - advancedbook 1.0.4     - advancedperipherals 0.7.41r     - alexscaves 2.0.2     - alexsdelight 1.5     - alexsmobs 1.22.9     - allthecompatibility 2.2.0     - alltheleaks 0.1.2-beta+1.20.1-forge         \-- mixinsquared 0.2.0     - alltheores 2.2.4     - almanac 1.0.2     - almostunified 1.20.1-0.9.4     - alternate_current 1.7.0     - amendments 1.20-1.2.19     - appleskin 2.5.1+mc1.20.1     - architectury 9.2.14     - areas 6.1     - armorposer 2.2.2     - armortrimitemfix 1.2.0     - ars_nouveau 4.12.6     - artifacts 9.5.14         \-- expandability 9.0.4     - azurelib 2.0.41     - badoptimizations 2.2.1     - bakery 1.1.15     - bcc 4.0.8     - beefix 1.0.7     - betteradvancements 0.4.2.10     - betterf3 7.0.2     - biomimicry 0.3d+1.20.1     - blockui 1.20.1-1.0.156-RELEASE     - bookshelf 20.2.13     - botarium 2.3.4     - brewery 1.1.9     - bwncr 3.17.2     - caelus 3.2.0+1.20.1     - canary 0.3.3     - cccbridge 1.6.3-forge     - chickensshed 1.6.0+mc1.20.1     - chiselsandbits 1.4.148         \-- scena 1.0.103     - chunkloaders 1.2.8a     - citadel 2.6.1     - clickadv 1.20.1-3.8     - clientcrafting 1.20.1-1.8     - cloth_config 11.1.136     - clumps 12.0.0.4     - collective 7.94     - colony4cc 2.6.5     - colony_curios 1.0.0     - computercraft 1.113.1     - configured 2.2.3     - connectivity 1.20.1-7.1     - connectorextras 1.11.2+1.20.1         |-- amecsapi 1.5.3+mc1.20-pre1         |-- connectorextras_architectury_bridge 1.11.2+1.20.1         |-- connectorextras_emi_bridge 1.11.2+1.20.1         |-- connectorextras_energy_bridge 1.11.2+1.20.1         |-- connectorextras_geckolib_fabric_compat 1.11.2+1.20.1         |-- connectorextras_jei_bridge 1.11.2+1.20.1         |-- connectorextras_kubejs_bridge 1.11.2+1.20.1         |-- connectorextras_modmenu_bridge 1.11.2+1.20.1             \-- modmenu 7.2.2         |-- connectorextras_pehkui_bridge 1.11.2+1.20.1         |-- connectorextras_rei_bridge 1.11.2+1.20.1         |-- connectorextras_terrablender_bridge 1.11.2+1.20.1         |-- forgeconfigapiport 8.0.0         \-- reach_entity_attributes 2.4.0     - connectormod 1.0.0-beta.46+1.20.1     - controlling 12.0.2     - cosmeticarmorreworked 1.20.1-v1a     - create 6.0.4         |-- flywheel 1.0.2         \-- ponder 1.0.52     - create_basic_additions 1.0.2     - create_confectionery 1.1.0     - create_crush_everything 1.0.2     - create_new_age 1.1.3     - create_things_and_misc 1.0.0     - createaddition 1.20.1-1.3.1     - createchromaticreturn 1.0.0     - cristellib 1.1.6     - cupboard 1.20.1-2.7     - curios 5.12.1+1.20.1     - distractingtrims 2.0.4     - doapi 1.2.15         \-- terraform 7.0.1     - domesticationinnovation 1.7.1     - domum_ornamentum 1.20.1-1.0.186-RELEASE     - duckyperiphs 1.20.1-1.3.1     - dynview 2.3     - easy_netherite 1.0.0     - easyanvils 8.0.2     - eldritch_end 0.3.3     - elytraslot 6.4.4+1.20.1     - embeddium 0.3.31+mc1.20.1         \-- rubidium 0.7.1     - enchdesc 17.1.19     - endermanoverhaul 1.0.4     - ends_delight 2.5.1+forge.1.20.1     - entityculling 1.7.3     - expanded_ecosphere 3.2.4     - exposure 1.7.10     - fabric_api 0.92.2+1.11.12+1.20.1         |-- fabric_api_base 0.4.31+ef105b4977         |-- fabric_api_lookup_api_v1 1.6.36+67f9824077         |-- fabric_biome_api_v1 13.0.13+dc36698e77         |-- fabric_block_api_v1 1.0.11+0e6cb7f777         |-- fabric_block_view_api_v2 1.0.1+0767707077         |-- fabric_blockrenderlayer_v1 1.1.41+1d0da21e77         |-- fabric_client_tags_api_v1 1.1.2+5d6761b877         |-- fabric_command_api_v1 1.2.34+f71b366f77         |-- fabric_command_api_v2 2.2.13+561530ec77         |-- fabric_content_registries_v0 4.0.11+a670df1e77         |-- fabric_convention_tags_v1 1.5.5+fa3d1c0177         |-- fabric_data_attachment_api_v1 1.0.0+30ef839e77         |-- fabric_data_generation_api_v1 12.3.4+369cb3a477         |-- fabric_dimensions_v1 2.1.54+8005d10d77         |-- fabric_entity_events_v1 1.6.0+4ca7515277         |-- fabric_events_interaction_v0 0.6.2+0d0bd5a777         |-- fabric_game_rule_api_v1 1.0.40+683d4da877         |-- fabric_item_api_v1 2.1.28+4d0bbcfa77         |-- fabric_item_group_api_v1 4.0.12+c9161c2d77         |-- fabric_key_binding_api_v1 1.0.37+561530ec77         |-- fabric_lifecycle_events_v1 2.2.22+afab492177         |-- fabric_loot_api_v2 1.2.1+eb28f93e77         |-- fabric_message_api_v1 5.1.9+52cc178c77         |-- fabric_mining_level_api_v1 2.1.50+561530ec77         |-- fabric_model_loading_api_v1 1.0.3+6274ab9d77         |-- fabric_models_v0 0.4.2+7c3892a477         |-- fabric_networking_api_v1 1.3.11+503a202477         |-- fabric_object_builder_api_v1 11.1.3+4bd998fa77         |-- fabric_particles_v1 1.1.2+78e1ecb877         |-- fabric_recipe_api_v1 1.0.21+514a076577         |-- fabric_registry_sync_v0 2.3.3+1c0ea72177         |-- fabric_renderer_api_v1 3.2.1+cf68abbe77         |-- fabric_renderer_indigo 1.5.2+b5b2da4177         |-- fabric_rendering_data_attachment_v1 0.3.37+a6081afc77         |-- fabric_rendering_fluids_v1 3.0.28+4ac5e37a77         |-- fabric_rendering_v1 3.0.8+66e9a48f77         |-- fabric_resource_conditions_api_v1 2.3.8+9e342fc177         |-- fabric_resource_loader_v0 0.11.10+bcd08ed377         |-- fabric_screen_api_v1 2.0.8+45a670a577         |-- fabric_screen_handler_api_v1 1.3.30+561530ec77         |-- fabric_sound_api_v1 1.0.13+4f23bd8477         |-- fabric_transfer_api_v1 3.3.5+631c9cd677         \-- fabric_transitive_access_wideners_v1 4.3.1+1880499877     - farmersdelight 1.20.1-1.2.7     - farsight_view 1.20.1-3.7     - fastasyncworldsave 1.20.1-2.4     - fastbench 8.0.4     - fastchest 1.4+1.20     - fastfurnace 8.0.2     - fastpaintings 1.20-1.2.7     - fastsuite 5.1.0     - flowerymooblooms 2.0.2     - fmans_disc_mod 1.0.0     - forge 47.4.0     - forgeendertech 11.1.6.0     - friendsandfoes 3.0.8     - fsang 10.1.0     - geckolib 4.7.1.2     - getittogetherdrops 1.3     - gravestone 1.20.1-1.0.24     - guiclock 4.7     - guicompass 4.9     - guifollowers 4.0     - herbalbrews 1.0.11     - heyberryshutup 1.20.1-2.0.4     - horse_colors 1.20.1-13.5     - iceandfire 2.1.13-1.20.1     - inventoryhud 3.4.26     - jade 11.13.1+forge     - jadeaddons 5.5.0+forge     - jadecolonies 1.4.2     - jearchaeology 1.20.1-1.0.4     - jei 15.20.0.106     - jeresources 1.4.0.247     - justenoughbreeding 1.5.0     - justenoughprofessions 3.0.1     - keepmysoiltilled 2.5     - kotlinforforge 4.11.0     - kubejs 2001.6.5-build.16     - leavemybarsalone 8.0.0     - letmedespawn 1.5.0     - mantle 1.11.44     - map_atlases 1.20-6.0.15     - mavapi 1.1.4     - mavm 1.2.6     - minecolonies 1.20.1-1.1.838-snapshot     - minecolonies_compatibility 2.66     - minecolonies_tweaks 2.54     - minecraft 1.20.1     - modernfix 5.20.2+mc1.20.1     - moonlight 1.20-2.13.79     - mousetweaks 2.25.1     - multipiston 1.20-1.2.43-RELEASE     - mutil 6.1.1     - nebs 2.0.3     - necronomicon 1.6.0     - nethersdelight 1.20.1-4.0     - nethervinery 1.2.17     - nolijium 0.5.6     - not_enough_gamerules 1.20.1-r1.5.3     - obvious_bookshelves 1.0.0     - oceansdelight 1.0.2-1.20     - packetfixer 2.0.0     - palladium 4.1.12         |-- palladiumcore 1.0.1         \-- playeranimator 1.0.2-rc1+1.20     - pantheonsent 1.1.0         \-- sherdsapi 4.0.4     - pehkui 3.8.2+1.20.1-forge     - peripherals 1.13.0     - placebo 8.6.3     - playingcards 2.0.1     - pollutionofcreate 1.20.1-0.0.3     - polymorph 0.49.8+1.20.1         \-- spectrelib 0.13.17+1.20.1     - puzzleslib 8.1.29         |-- mixinextras 0.4.1         \-- puzzlesaccessapi 20.1.1     - quark 4.0-461     - railways 1.6.7+forge-mc1.20.1     - resourcefulconfig 2.1.3     - resourcefullib 2.1.29     - rhino 2001.2.3-build.10     - searchables 1.0.3     - sgjourney 0.6.38     - sherdduplication 2.0.8     - sliceanddice 3.4.0     - sophisticatedbackpacks 3.23.6.1211     - sophisticatedcore 1.2.23.902     - sound_physics_remastered 1.20.1-1.4.8     - spark 1.10.53     - structurize 1.20.1-1.0.766-snapshot     - stylecolonies 1.12     - supermartijn642configlib 1.1.8     - supermartijn642corelib 1.1.18     - supplementaries 1.20-3.1.21     - swplanets 1.4.4     - tetra 6.8.0     - the_fletching_table_mod 1.3     - the_great_crafting_table 1.0.0     - toastcontrol 8.0.3     - towntalk 1.1.0     - treechop 0.19.0     - unusualprehistory 1.5.0.3     - villagernames 8.2     - vinery 1.4.39     - visualworkbench 8.0.0     - voicechat 1.20.1-2.5.26     - xercapaint 1.20.1-1.0.1     - xlpackets 1.18.2-2.1     - yeetusexperimentus 2.3.1-build.6+mc1.20.1     - zeta 1.0-28 [11:10:10] [main/WARN]: Reference map 'cristellib-forge-refmap.json' for cristellib.mixins.json could not be read. If this is a development environment you can ignore this message [11:10:10] [main/WARN]: Reference map 'nethervinery-common-refmap.json' for nethervinery-common.mixins.json could not be read. If this is a development environment you can ignore this message [11:10:10] [main/WARN]: Reference map 'xlpackets.refmap.json' for xlpackets.mixins.json could not be read. If this is a development environment you can ignore this message [11:10:11] [main/WARN]: Reference map 'duckyperiphs-forge-refmap.json' for ducky-periphs.mixins.json could not be read. If this is a development environment you can ignore this message [11:10:11] [main/WARN]: Reference map 'colony_curios.refmap.json' for colony_curios.mixins.json could not be read. If this is a development environment you can ignore this message [11:10:11] [main/WARN]: Reference map 'packetfixer-forge-forge-refmap.json' for packetfixer.forge.mixins.json could not be read. If this is a development environment you can ignore this message [11:10:11] [main/INFO]: Loading config file [11:10:11] [main/INFO]: Config version: 4 [11:10:11] [main/INFO]: BadOptimizations config dump: [11:10:11] [main/INFO]: enable_toast_optimizations: true [11:10:11] [main/INFO]: ignore_mod_incompatibilities: false [11:10:11] [main/INFO]: lightmap_time_change_needed_for_update: 80 [11:10:11] [main/INFO]: enable_lightmap_caching: true [11:10:11] [main/INFO]: enable_particle_manager_optimization: true [11:10:11] [main/INFO]: enable_entity_renderer_caching: true [11:10:11] [main/INFO]: log_config: true [11:10:11] [main/INFO]: enable_remove_redundant_fov_calculations: true [11:10:11] [main/INFO]: config_version: 4 [11:10:11] [main/INFO]: enable_sky_angle_caching_in_worldrenderer: true [11:10:11] [main/INFO]: enable_block_entity_renderer_caching: true [11:10:11] [main/INFO]: skycolor_time_change_needed_for_update: 3 [11:10:11] [main/INFO]: enable_entity_flag_caching: true [11:10:11] [main/INFO]: enable_debug_renderer_disable_if_not_needed: true [11:10:11] [main/INFO]: enable_sky_color_caching: true [11:10:11] [main/INFO]: enable_remove_tutorial_if_not_demo: true [11:10:11] [main/INFO]: show_f3_text: true [11:10:11] [main/WARN]: Reference map 'chiselsandbits.refmap.json' for chisels-and-bits.mixins.json could not be read. If this is a development environment you can ignore this message [11:10:11] [main/WARN]: Reference map '' for adapter.init.mixins.json could not be read. If this is a development environment you can ignore this message [11:10:15] [main/INFO]: Patching IForgeItemStack#getEnchantmentLevel [11:10:15] [main/INFO]: Patching IForgeItemStack#getEnchantmentLevel [11:10:17] [main/INFO]: Skipping issue ItemStackCreationStatistics from mod jei as it's dev only! [11:10:17] [main/INFO]: Class dev.uncandango.alltheleaks.leaks.common.mods.travelersbackpack.UntrackedIssue002 will NOT be loaded as mod travelersbackpack is not present [11:10:17] [main/INFO]: Class dev.uncandango.alltheleaks.leaks.common.mods.travelersbackpack.UntrackedIssue001 will NOT be loaded as mod travelersbackpack is not present [11:10:17] [main/INFO]: Class dev.uncandango.alltheleaks.leaks.common.mods.toolbelt.UntrackedIssue001 will NOT be loaded as mod toolbelt is not present [11:10:17] [main/INFO]: Class dev.uncandango.alltheleaks.leaks.common.mods.tfcthermaldeposits.UntrackedIssue001 will NOT be loaded as mod tfcthermaldeposits is not present [11:10:17] [main/INFO]: Class dev.uncandango.alltheleaks.leaks.common.mods.smallships.UntrackedIssue001 will NOT be loaded as mod smallships is not present [11:10:17] [main/INFO]: Class dev.uncandango.alltheleaks.leaks.common.mods.sereneseasons.UntrackedIssue001 will NOT be loaded as mod sereneseasons is not present [11:10:17] [main/INFO]: Class dev.uncandango.alltheleaks.leaks.common.mods.railcraft.UntrackedIssue001 will NOT be loaded as mod railcraft is not present [11:10:17] [main/INFO]: Class dev.uncandango.alltheleaks.leaks.common.mods.pneumaticcraft.UntrackedIssue001 will NOT be loaded as mod pneumaticcraft is not present [11:10:17] [main/INFO]: Class dev.uncandango.alltheleaks.leaks.common.mods.phosphophyllite.UntrackedIssue001 will NOT be loaded as mod phosphophyllite is not present [11:10:17] [main/INFO]: Class dev.uncandango.alltheleaks.leaks.common.mods.occultism.UntrackedIssue001 will NOT be loaded as mod occultism is not present [11:10:17] [main/INFO]: Class dev.uncandango.alltheleaks.leaks.common.mods.moonlight.UntrackedIssue001 will be loaded as it matches versions: 1.20-2.13.79 in [1.20-2.13.32,) [11:10:17] [main/INFO]: Mixins added to allowed list: [main.FakeLevelManagerMixin] [11:10:17] [main/INFO]: Class dev.uncandango.alltheleaks.leaks.common.mods.minecraft.UntrackedIssue002 will be loaded as it matches versions: 1.20.1 in 1.20.1 [11:10:17] [main/INFO]: Mixins added to allowed list: [main.EntityTickListMixin] [11:10:17] [main/INFO]: Class dev.uncandango.alltheleaks.leaks.common.mods.minecraft.UntrackedIssue001 will be loaded as it matches versions: 1.20.1 in 1.20.1 [11:10:17] [main/INFO]: Class dev.uncandango.alltheleaks.leaks.common.mods.irons_spellbooks.UntrackedIssue001 will NOT be loaded as mod irons_spellbooks is not present [11:10:17] [main/INFO]: Class dev.uncandango.alltheleaks.leaks.common.mods.forge.UntrackedIssue003 will be loaded as it matches versions: 47.4.0 in [47.2,) [11:10:17] [main/INFO]: Class dev.uncandango.alltheleaks.leaks.common.mods.forge.UntrackedIssue002 will be loaded as it matches versions: 47.4.0 in [47.2,) [11:10:17] [main/INFO]: Mixins added to allowed list: [accessor.FakePlayerNetHandlerAccessor, accessor.ConnectionAccessor] [11:10:17] [main/INFO]: Class dev.uncandango.alltheleaks.leaks.common.mods.forge.UntrackedIssue001 will be loaded as it matches versions: 47.4.0 in [47.2,) [11:10:17] [main/INFO]: Mixins added to allowed list: [main.ServerPlayerMixin, main.PlayerListMixin] [11:10:17] [main/INFO]: Class dev.uncandango.alltheleaks.leaks.common.mods.forbidden_arcanus.UntrackedIssue001 will NOT be loaded as mod forbidden_arcanus is not present [11:10:17] [main/INFO]: Class dev.uncandango.alltheleaks.leaks.common.mods.domesticationinnovation.UntrackedIssue001 will be loaded as it matches versions: 1.7.1 in [1.7.0,) [11:10:17] [main/INFO]: Class dev.uncandango.alltheleaks.leaks.common.mods.curios.UntrackedIssue001 will be loaded as it matches versions: 5.12.1+1.20.1 in [5.9.1,) [11:10:17] [main/INFO]: Mixins added to allowed list: [main.CuriosEventHandlerMixin] [11:10:17] [main/INFO]: Class dev.uncandango.alltheleaks.leaks.common.mods.createaddition.UntrackedIssue001 will NOT be loaded as mod createaddition does not match versions: 1.20.1-1.3.1 in [1.20.1-1.0.0b,1.20.1-1.2.3] [11:10:17] [main/INFO]: Class dev.uncandango.alltheleaks.leaks.common.mods.create.UntrackedIssue001 will be loaded as it matches versions: 6.0.4 in [0.5.1.c,) [11:10:17] [main/INFO]: Mixins added to allowed list: [accessor.ExtendoGripItemAccessor] [11:10:17] [main/INFO]: Class dev.uncandango.alltheleaks.leaks.common.mods.citadel.UntrackedIssue001 will be loaded as it matches versions: 2.6.1 in [2.5.4,) [11:10:17] [main/INFO]: Class dev.uncandango.alltheleaks.leaks.common.mods.betterf3.UntrackedIssue001 will be loaded as it matches versions: 7.0.2 in [7.0.2,) [11:10:17] [main/INFO]: Mixins added to allowed list: [main.LocationModuleMixin] [11:10:17] [main/INFO]: Class dev.uncandango.alltheleaks.leaks.common.mods.badpackets.UntrackedIssue001 will NOT be loaded as mod badpackets is not present [11:10:17] [main/INFO]: Class dev.uncandango.alltheleaks.leaks.common.mods.ars_nouveau.UntrackedIssue002 will NOT be loaded as mod ars_nouveau does not match versions: 4.12.6 in [4.0.0,4.12.4] [11:10:17] [main/INFO]: Class dev.uncandango.alltheleaks.leaks.common.mods.ars_nouveau.UntrackedIssue001 will NOT be loaded as mod ars_nouveau does not match versions: 4.12.6 in [4.0.0,4.12.4] [11:10:17] [main/INFO]: Class dev.uncandango.alltheleaks.leaks.common.mods.architectury.UntrackedIssue001 will be loaded as it matches versions: 9.2.14 in [9.0.8,) [11:10:17] [main/INFO]: Class dev.uncandango.alltheleaks.leaks.common.mods.alexsmobs.Issue2165 will be loaded as it matches versions: 1.22.9 in [1.22.5,) [11:10:17] [main/INFO]: Class dev.uncandango.alltheleaks.leaks.common.mods.aether.UntrackedIssue001 will NOT be loaded as mod aether is not present [11:10:17] [main/INFO]: Class dev.uncandango.alltheleaks.leaks.common.mods.ae2wtlib.UntrackedIssue001 will NOT be loaded as mod ae2wtlib is not present [11:10:17] [main/INFO]: Class dev.uncandango.alltheleaks.leaks.client.mods.twilightforest.UntrackedIssue001 will NOT be loaded as mod twilightforest is not present [11:10:17] [main/INFO]: Class dev.uncandango.alltheleaks.leaks.client.mods.travelersbackpack.UntrackedIssue001 will NOT be loaded as mod travelersbackpack is not present [11:10:17] [main/INFO]: Class dev.uncandango.alltheleaks.leaks.client.mods.tombstone.UntrackedIssue001 will NOT be loaded as mod tombstone is not present [11:10:17] [main/INFO]: Class dev.uncandango.alltheleaks.leaks.client.mods.sereneseasons.UntrackedIssue001 will NOT be loaded as mod sereneseasons is not present [11:10:17] [main/INFO]: Class dev.uncandango.alltheleaks.leaks.client.mods.pneumaticcraft.UntrackedIssue001 will NOT be loaded as mod pneumaticcraft is not present [11:10:17] [main/INFO]: Class dev.uncandango.alltheleaks.leaks.client.mods.nuclearcraft.UntrackedIssue001 will NOT be loaded as mod nuclearcraft is not present [11:10:17] [main/INFO]: Class dev.uncandango.alltheleaks.leaks.client.mods.mowziesmobs.UntrackedIssue002 will NOT be loaded as mod mowziesmobs is not present [11:10:17] [main/INFO]: Class dev.uncandango.alltheleaks.leaks.client.mods.mowziesmobs.UntrackedIssue001 will NOT be loaded as mod mowziesmobs is not present [11:10:17] [main/INFO]: Class dev.uncandango.alltheleaks.leaks.client.mods.mousetweaks.UntrackedIssue001 will be loaded as it matches versions: 2.25.1 in [2.25.1,) [11:10:17] [main/INFO]: Class dev.uncandango.alltheleaks.leaks.client.mods.mna.UntrackedIssue001 will NOT be loaded as mod mna is not present [11:10:17] [main/INFO]: Class dev.uncandango.alltheleaks.leaks.client.mods.minecraft.UntrackedIssue001 will be loaded as it matches versions: 1.20.1 in 1.20.1 [11:10:17] [main/INFO]: Mixins added to allowed list: [main.ATLItemStackMixin, main.MinecraftMixin, main.SynchedEntityDataMixin] [11:10:17] [main/INFO]: Skipping issue [untracked] from mod minecraft as mod modernfix is present! [11:10:17] [main/INFO]: Class dev.uncandango.alltheleaks.leaks.client.mods.minecolonies.UntrackedIssue002 will NOT be loaded as mod minecolonies does not match versions: 1.20.1-1.1.838-snapshot in [1.20.1-1.1.647-beta,1.20.1-1.1.751-beta] [11:10:17] [main/INFO]: Class dev.uncandango.alltheleaks.leaks.client.mods.minecolonies.UntrackedIssue001 will NOT be loaded as mod minecolonies does not match versions: 1.20.1-1.1.838-snapshot in [1.20.1-1.1.647-beta,1.20.1-1.1.778-beta] [11:10:17] [main/INFO]: Class dev.uncandango.alltheleaks.leaks.client.mods.ldlib.UntrackedIssue001 will NOT be loaded as mod ldlib is not present [11:10:17] [main/INFO]: Class dev.uncandango.alltheleaks.leaks.client.mods.journeymap.UntrackedIssue001 will NOT be loaded as mod journeymap is not present [11:10:17] [main/INFO]: Class dev.uncandango.alltheleaks.leaks.client.mods.jeresources.UntrackedIssue001 will be loaded as it matches versions: 1.4.0.247 in [1.4.0.247,) [11:10:17] [main/INFO]: Mixins added to allowed list: [main.MobTableBuilderMixin, main.MobEntryMixin, main.AbstractVillagerEntryMixin] [11:10:17] [main/INFO]: Class dev.uncandango.alltheleaks.leaks.client.mods.jei.UntrackedIssue002 will NOT be loaded as mod jei does not match versions: 15.20.0.106 in [15.4,15.5) [11:10:17] [main/INFO]: Class dev.uncandango.alltheleaks.leaks.client.mods.jei.UntrackedIssue001 will be loaded as it matches versions: 15.20.0.106 in [15.8.2.24,) [11:10:17] [main/INFO]: Mixins added to allowed list: [main.RecipeTransferButtonMixin, main.LazySortedRecipeLayoutListMixin] [11:10:17] [main/INFO]: Class dev.uncandango.alltheleaks.leaks.client.mods.irons_spellbooks.UntrackedIssue002 will NOT be loaded as mod irons_spellbooks is not present [11:10:17] [main/INFO]: Class dev.uncandango.alltheleaks.leaks.client.mods.irons_spellbooks.UntrackedIssue001 will NOT be loaded as mod irons_spellbooks is not present [11:10:17] [main/INFO]: Class dev.uncandango.alltheleaks.leaks.client.mods.iceberg.UntrackedIssue003 will NOT be loaded as mod iceberg is not present [11:10:17] [main/INFO]: Class dev.uncandango.alltheleaks.leaks.client.mods.iceberg.UntrackedIssue002 will NOT be loaded as mod iceberg is not present [11:10:17] [main/INFO]: Class dev.uncandango.alltheleaks.leaks.client.mods.iceberg.UntrackedIssue001 will NOT be loaded as mod iceberg is not present [11:10:17] [main/INFO]: Class dev.uncandango.alltheleaks.leaks.client.mods.geckolib.UntrackedIssue001 will be loaded as it matches versions: 4.7.1.2 in [4.4.8,) [11:10:17] [main/INFO]: Mixins added to allowed list: [main.GeoModelMixin, main.GeoArmorRendererMixin] [11:10:17] [main/INFO]: Class dev.uncandango.alltheleaks.leaks.client.mods.ftblibrary.UntrackedIssue001 will NOT be loaded as mod ftblibrary is not present [11:10:17] [main/INFO]: Class dev.uncandango.alltheleaks.leaks.client.mods.flywheel.UntrackedIssue001 will NOT be loaded as mod flywheel does not match versions: 1.0.2 in [0.6.9-4,0.6.11-13] [11:10:17] [main/INFO]: Class dev.uncandango.alltheleaks.leaks.client.mods.findme.UntrackedIssue001 will NOT be loaded as mod findme is not present [11:10:17] [main/INFO]: Class dev.uncandango.alltheleaks.leaks.client.mods.entity_texture_features.UntrackedIssue001 will NOT be loaded as mod entity_texture_features is not present [11:10:17] [main/INFO]: Class dev.uncandango.alltheleaks.leaks.client.mods.entity_model_features.UntrackedIssue001 will NOT be loaded as mod entity_model_features is not present [11:10:17] [main/INFO]: Class dev.uncandango.alltheleaks.leaks.client.mods.emi_loot.UntrackedIssue001 will NOT be loaded as mod emi_loot is not present [11:10:17] [main/INFO]: Class dev.uncandango.alltheleaks.leaks.client.mods.emi.UntrackedIssue001 will NOT be loaded as mod emi is not present [11:10:17] [main/INFO]: Class dev.uncandango.alltheleaks.leaks.client.mods.easy_villagers.UntrackedIssue001 will NOT be loaded as mod easy_villagers is not present [11:10:17] [main/INFO]: Class dev.uncandango.alltheleaks.leaks.client.mods.difficultylock.UntrackedIssue001 will NOT be loaded as mod difficultylock is not present [11:10:17] [main/INFO]: Class dev.uncandango.alltheleaks.leaks.client.mods.cyclopscore.UntrackedIssue001 will NOT be loaded as mod cyclopscore is not present [11:10:17] [main/INFO]: Class dev.uncandango.alltheleaks.leaks.client.mods.corpse.UntrackedIssue001 will NOT be loaded as mod corpse is not present [11:10:17] [main/INFO]: Class dev.uncandango.alltheleaks.leaks.client.mods.citadel.UntrackedIssue001 will be loaded as it matches versions: 2.6.1 in [2.5.4,) [11:10:17] [main/INFO]: Mixins added to allowed list: [main.ModelAnimatorMixin] [11:10:17] [main/INFO]: Class dev.uncandango.alltheleaks.leaks.client.mods.blue_skies.UntrackedIssue001 will NOT be loaded as mod blue_skies is not present [11:10:17] [main/INFO]: Class dev.uncandango.alltheleaks.leaks.client.mods.beansbackpacks.UntrackedIssue001 will NOT be loaded as mod beansbackpacks is not present [11:10:17] [main/INFO]: Class dev.uncandango.alltheleaks.leaks.client.mods.badpackets.UntrackedIssue001 will NOT be loaded as mod badpackets is not present [11:10:17] [main/INFO]: Class dev.uncandango.alltheleaks.leaks.client.mods.ae2wtlib.UntrackedIssue002 will NOT be loaded as mod ae2wtlib is not present [11:10:17] [main/INFO]: Class dev.uncandango.alltheleaks.leaks.client.mods.ae2wtlib.UntrackedIssue001 will NOT be loaded as mod ae2wtlib is not present [11:10:17] [main/INFO]: Class dev.uncandango.alltheleaks.fix.common.mods.modernfix.CancelRLMixin will be loaded as it matches versions: 5.20.2+mc1.20.1 in [5.0.0,) [11:10:17] [main/INFO]: Mixins added to cancel list: [org.embeddedt.modernfix.common.mixin.perf.deduplicate_location.MixinResourceLocation] [11:10:17] [main/INFO]: Skipping feature ResourceLocation Deduplication from mod minecraft as it's feature flag is not activated! [11:10:17] [main/INFO]: Skipping feature Ingredient Deduplication from mod minecraft as it's feature flag is not activated! [11:10:17] [main/INFO]: Skipping feature Prevent Search Ignored Items from mod jei as it's feature flag is not activated! [11:10:19] [main/WARN]: Error loading class: me/desht/pneumaticcraft/common/upgrades/PNCUpgradeImpl (java.lang.ClassNotFoundException: me.desht.pneumaticcraft.common.upgrades.PNCUpgradeImpl) [11:10:19] [main/WARN]: @Mixin target me.desht.pneumaticcraft.common.upgrades.PNCUpgradeImpl was not found ad_astra_giselle_addon.mixin.forge.common.json:pneumaticcraft.PNCUpgradeImplInject from mod ad_astra_giselle_addon  
    • Crash Report: https://mclo.gs/8pwceKE
    • If you are using AMD/ATI, update your drivers - get the drivers from their website - do not update via system
    • Ah - it refers to the mod Simply Skills
    • manage to fix it thanks to you, appreciate it 
  • Topics

  • Who's Online (See full list)

    • There are no registered users currently online
×
×
  • Create New...

Important Information

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