Jump to content

GUI Phantom Item, GUI Shift-Click and TileEntity Redstone Strength


Recommended Posts

Posted

Hello,

 

I've got 3 problems.

 

1. I've got my GUI working, but when i try to decrease the stack size of a slot in a method, it decreases it, but leaves a phantom item when i open the GUI and when i take out the item and right click with it it's gone. It tried running onInventoryChanged(), but that doesn't worked.

 

2. I returned in the method getInventoryStackLimit the value 15, and i can only put 15 items in the slot and get the rest back, but when i shift-click the itemstack in it just deletes the rest.

 

3. I would like to know how to get the strength of the redstone signal on the sides of a block with a TileEntity. I tried onNeighbourBlockChange() at my Block class, and setting the variable redstonestrenght at the TileEntity to par1World.getBlockPowerInput(par2, par3, par4). But when i have 2 blocks and power 1 block the other gets also powered

 

I know that's a LOT of questions, but i'm new to Forge Modding, and have done some Bukkit Plugin Modding before.

 

ss7

You sir are a god damn hero.

Posted

I'm not sure about #3, but here are my thoughts on the other two.

 

1. I'm fairly certain that is a server-client issue, as in the client says you have a different amount of items than the server says you have. It's some sort of de-sync issue that could be attributed to a lot of different things. Just go into the debugging tool and work your way through it as it's running on the client, then the server, and see where they start to disagree.

 

2. Override the transferStackInSlot method and make sure it will only try to transfer 15, or however many makes 15, at a time to a single slot and leave the rest. I'm not really sure why it would be deleting it, because the default minecraft code will only transfer up to the slot limit and leave the rest.

 

 

Posted

Hello,

 

Thank you for your answer!

 

To #2:

 

I copied the code from the ContainerFurnace, but that also removes the stack. And when i don't override that method i get an error, because the javadoc says: Called when a player shift-clicks on a slot. You must override this or you will crash when someone does that.

 

ss7

You sir are a god damn hero.

Posted

#3:

Make sure you variable isn't static, that you change the value on server side, and save the value within NBT.

 

Hello,

 

You are AWESOME, yes my variable was public ans static and now the wireless crazy redstone problem is solved! But when i try to place 2 bridges and power them at once, no bridge extends. And what do you mean with server side? With packets?

 

ss7

You sir are a god damn hero.

Posted

Hello,

 

I've tried it with if (world.isRemote == false)

                            {

                                tileentity.redstonestrength = world.getBlockPowerInput(par2, par3, par4);

                            }

 

but that doesn't seem to work. When i place 2 bridgeblocks i can't power them at once ):.

 

ss7

You sir are a god damn hero.

Posted

Hello,

 

But i have that code snippet in the on neighborblockchange event, so it should be on all blocks at the same time, or what do you mean?

 

ss7

You sir are a god damn hero.

Posted

Redstone will trigger neighbour block change only if its power has changed.

Nothing happens until the neighbouring redstone receive power.

 

In a more detailed sequence:

-first redstone powered (tick 0)

-first redstone triggers neighbour block change

-second redstone receives neighbour block change

-second redstone powered (tick 1)

-second redstone triggers neighbour block change

...

-last redstone powered (tick n)

-last redstone triggers neighbour block change

-your block is powered (tick n+1)

 

To power two blocks simultaneously, you need to take the delay into account.

Unless you make the first block wait for the second to be powered, or you don't need them activated at the exact same time.

Posted

Hello,

 

YES!!! Redstone is my favorite part of Minecraft! Do you mean with repeaters?

 

Sorry if i don't understand, that's cause i'm German.

 

ss7

You sir are a god damn hero.

Posted

boolean RemoveBlockValid(int x, int y, int z)
        {
                if (worldObj.getBlockId(x, y, z) == Block.cobblestone.blockID)

You are only removing cobblestone blocks here.

 

You are using nextplaceblock and nextplaceblock as field, but they are not reset to false on each update tick of your entity.

This means the tile entity will try to place or remove blocks, whether there are unmovable blocks or not within the line. ( if you have a gold block in your cobblestone line to remove, it will not be removed, but all others will, which looks kinda strange for a bridge)

@Override
        public void updateEntity()
        {
                ticks++;
               
                if (ticks == 20)
                {
                        ticks = 0;
                       
                        //ModLoader.getMinecraftInstance().thePlayer.addChatMessage(blockspushed + "/" + redstonestrength);
                       
                if (blockspushed < redstonestrength)
                {                      
                            switch(worldObj.getBlockMetadata(xCoord, yCoord, zCoord))
                            {
                       
                            case 1:
                                nextplaceblock = PlaceBlockValid(xCoord, yCoord, zCoord - blockspushed);
                            break;
                               
                            case 2:
                                    nextplaceblock = PlaceBlockValid(xCoord, yCoord, zCoord + blockspushed);
                            break;
                               
                            case 3:
                                    nextplaceblock = PlaceBlockValid(xCoord - blockspushed, yCoord, zCoord);
                            break;
                       
                            case 4:
                                    nextplaceblock = PlaceBlockValid(xCoord + blockspushed, yCoord, zCoord);
                            break;
                       
                            }  
                       
                            if (nextplaceblock)
                            {
                                blockspushed++;
                            }
                }
               
                else
                {
                        switch(worldObj.getBlockMetadata(xCoord, yCoord, zCoord))
                        {
                       
                        case 1:
                                nextremoveblock = RemoveBlockValid(xCoord, yCoord, zCoord + blockspushed);
                        break;
                               
                        case 2:
                                nextremoveblock = RemoveBlockValid(xCoord, yCoord, zCoord - blockspushed);
                        break;
                               
                        case 3:
                                nextremoveblock = RemoveBlockValid(xCoord - blockspushed, yCoord, zCoord);
                        break;
                       
                        case 4:
                                nextremoveblock = RemoveBlockValid(xCoord + blockspushed, yCoord, zCoord);
                        break;
                       
                        }

                        if (nextremoveblock)
                        {
                                blockspushed--;
                        }
                }
                }
        }

The blocks will also start being removed as soon as blockspushed == redstonestrength. You should probably make this a case where things are stable.

Posted

Hello,

 

That with the cobblestone is for testing purposes only, cause i don't no how to a ItemBlock or a ItemStack to a Block.

 

Reset, do you mean this:

 

nextplaceblock = false;
         nextremoveblock = false;

 

I tried everything for the blockspushed == redstonestrength, e.g. i checked if blockspushed != 2, but that doesn't worked.

 

And after the one blocks removed, no other blocks get removed  :'(

 

ss7

 

 

You sir are a god damn hero.

Posted

@Override
        public void updateEntity()
        {
                ticks++;
               
                if (ticks == 20)
                {
                        ticks = 0;
                       
                        //ModLoader.getMinecraftInstance().thePlayer.addChatMessage(blockspushed + "/" + redstonestrength);
                 
                if (blockspushed < redstonestrength)
                {                      
                            switch(worldObj.getBlockMetadata(xCoord, yCoord, zCoord))
                            {
                       
                            case 1:
                                nextplaceblock = PlaceBlockValid(xCoord, yCoord, zCoord - blockspushed);
                            break;
                               
                            case 2:
                                    nextplaceblock = PlaceBlockValid(xCoord, yCoord, zCoord + blockspushed);
                            break;
                               
                            case 3:
                                    nextplaceblock = PlaceBlockValid(xCoord - blockspushed, yCoord, zCoord);
                            break;
                       
                            case 4:
                                    nextplaceblock = PlaceBlockValid(xCoord + blockspushed, yCoord, zCoord);
                            break;
                       
                            }  
                       
                            if (nextplaceblock)
                            {
                                blockspushed++;
                                nextplaceblock=false;
                            }
                }
                else if(blockspushed > redstonestrength)
                {
                        switch(worldObj.getBlockMetadata(xCoord, yCoord, zCoord))
                        {
                       
                        case 1:
                                nextremoveblock = RemoveBlockValid(xCoord, yCoord, zCoord + blockspushed);
                        break;
                               
                        case 2:
                                nextremoveblock = RemoveBlockValid(xCoord, yCoord, zCoord - blockspushed);
                        break;
                               
                        case 3:
                                nextremoveblock = RemoveBlockValid(xCoord - blockspushed, yCoord, zCoord);
                        break;
                       
                        case 4:
                                nextremoveblock = RemoveBlockValid(xCoord + blockspushed, yCoord, zCoord);
                        break;
                       
                        }

                        if (nextremoveblock)
                        {
                                blockspushed--;
                                nextremoveblock = false;
                        }
                }
                }
        }

Something like this.

Posted

Hello,

 

I've tried your code but that doesn't worked. On the x axis the block is still being removed, on the z axis not. And it looks like the block is being removed, but on the client side, because i can't walk into it. Also the bridge doesn't remove. Even with the else if. I've tried printing the blockspushed and the redstonestrength into the chat, but at the end it's 15/0 so it should do it. And it prints it twice in the chat, the second is 0/0 at the x axis, and 1/0 at the z axis. That's also weird.

 

ss7

You sir are a god damn hero.

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

    • [LoginForm] file: , C:\Users\clear\AppData\Roaming\.minecraft\mods\  isDir:  true [LoginForm] VersionSyncInfo.id :  Forge 1.20.1 availableVersion:  CompleteVersion{id='Forge 1.20.1', time=Sun Jun 11 13:28:03 NOVT 2023, release=Sun Jun 11 13:28:03 NOVT 2023, type=modified, class=cpw.mods.bootstraplauncher.BootstrapLauncher, minimumVersion=21, assets='5', source=LOCAL_VERSION_REPO, list=net.minecraft.launcher.updater.ExtraVersionList@6f37b344, libraries=[Library{name='cpw.mods:securejarhandler:2.1.10', rules=null, natives=null, extract=null, packed='null'}, Library{name='org.ow2.asm:asm:9.7.1', rules=null, natives=null, extract=null, packed='null'}, Library{name='org.ow2.asm:asm-commons:9.7.1', rules=null, natives=null, extract=null, packed='null'}, Library{name='org.ow2.asm:asm-tree:9.7.1', rules=null, natives=null, extract=null, packed='null'}, Library{name='org.ow2.asm:asm-util:9.7.1', rules=null, natives=null, extract=null, packed='null'}, Library{name='org.ow2.asm:asm-analysis:9.7.1', rules=null, natives=null, extract=null, packed='null'}, Library{name='net.minecraftforge:accesstransformers:8.0.4', rules=null, natives=null, extract=null, packed='null'}, Library{name='org.antlr:antlr4-runtime:4.9.1', rules=null, natives=null, extract=null, packed='null'}, Library{name='net.minecraftforge:eventbus:6.0.5', rules=null, natives=null, extract=null, packed='null'}, Library{name='net.minecraftforge:forgespi:7.0.1', rules=null, natives=null, extract=null, packed='null'}, Library{name='net.minecraftforge:coremods:5.2.1', rules=null, natives=null, extract=null, packed='null'}, Library{name='cpw.mods:modlauncher:10.0.9', rules=null, natives=null, extract=null, packed='null'}, Library{name='net.minecraftforge:unsafe:0.2.0', rules=null, natives=null, extract=null, packed='null'}, Library{name='net.minecraftforge:mergetool:1.1.5:api', rules=null, natives=null, extract=null, packed='null'}, Library{name='com.electronwill.night-config:core:3.6.4', rules=null, natives=null, extract=null, packed='null'}, Library{name='com.electronwill.night-config:toml:3.6.4', rules=null, natives=null, extract=null, packed='null'}, Library{name='org.apache.maven:maven-artifact:3.8.5', rules=null, natives=null, extract=null, packed='null'}, Library{name='net.jodah:typetools:0.6.3', rules=null, natives=null, extract=null, packed='null'}, Library{name='net.minecrell:terminalconsoleappender:1.2.0', rules=null, natives=null, extract=null, packed='null'}, Library{name='org.jline:jline-reader:3.12.1', rules=null, natives=null, extract=null, packed='null'}, Library{name='org.jline:jline-terminal:3.12.1', rules=null, natives=null, extract=null, packed='null'}, Library{name='org.spongepowered:mixin:0.8.5', rules=null, natives=null, extract=null, packed='null'}, Library{name='org.openjdk.nashorn:nashorn-core:15.4', rules=null, natives=null, extract=null, packed='null'}, Library{name='net.minecraftforge:JarJarSelector:0.3.19', rules=null, natives=null, extract=null, packed='null'}, Library{name='net.minecraftforge:JarJarMetadata:0.3.19', rules=null, natives=null, extract=null, packed='null'}, Library{name='cpw.mods:bootstraplauncher:1.1.2', rules=null, natives=null, extract=null, packed='null'}, Library{name='net.minecraftforge:JarJarFileSystems:0.3.19', rules=null, natives=null, extract=null, packed='null'}, Library{name='net.minecraftforge:fmlloader:1.20.1-47.3.12', rules=null, natives=null, extract=null, packed='null'}, Library{name='net.minecraftforge:fmlearlydisplay:1.20.1-47.3.12', rules=null, natives=null, extract=null, packed='null'}, Library{name='ca.weblite:java-objc-bridge:1.1', rules=[Rule{action=ALLOW, os=OSRestriction{name=OSX, version='null'}, features=null}], natives=null, extract=null, packed='null'}, Library{name='com.github.oshi:oshi-core:6.2.2', rules=null, natives=null, extract=null, packed='null'}, Library{name='com.google.code.gson:gson:2.10', rules=null, natives=null, extract=null, packed='null'}, Library{name='com.google.guava:failureaccess:1.0.1', rules=null, natives=null, extract=null, packed='null'}, Library{name='com.google.guava:guava:31.1-jre', rules=null, natives=null, extract=null, packed='null'}, Library{name='com.ibm.icu:icu4j:71.1', rules=null, natives=null, extract=null, packed='null'}, Library{name='com.mojang:authlib:4.0.43', rules=null, natives=null, extract=null, packed='null'}, Library{name='com.mojang:blocklist:1.0.10', rules=null, natives=null, extract=null, packed='null'}, Library{name='com.mojang:brigadier:1.1.8', rules=null, natives=null, extract=null, packed='null'}, Library{name='com.mojang:datafixerupper:6.0.8', rules=null, natives=null, extract=null, packed='null'}, Library{name='com.mojang:logging:1.1.1', rules=null, natives=null, extract=null, packed='null'}, Library{name='com.mojang:patchy:2.2.10', rules=null, natives=null, extract=null, packed='null'}, Library{name='com.mojang:text2speech:1.17.9', rules=null, natives=null, extract=null, packed='null'}, Library{name='commons-codec:commons-codec:1.15', rules=null, natives=null, extract=null, packed='null'}, Library{name='commons-io:commons-io:2.11.0', rules=null, natives=null, extract=null, packed='null'}, Library{name='commons-logging:commons-logging:1.2', rules=null, natives=null, extract=null, packed='null'}, Library{name='io.netty:netty-buffer:4.1.82.Final', rules=null, natives=null, extract=null, packed='null'}, Library{name='io.netty:netty-codec:4.1.82.Final', rules=null, natives=null, extract=null, packed='null'}, Library{name='io.netty:netty-common:4.1.82.Final', rules=null, natives=null, extract=null, packed='null'}, Library{name='io.netty:netty-handler:4.1.82.Final', rules=null, natives=null, extract=null, packed='null'}, Library{name='io.netty:netty-resolver:4.1.82.Final', rules=null, natives=null, extract=null, packed='null'}, Library{name='io.netty:netty-transport-classes-epoll:4.1.82.Final', rules=null, natives=null, extract=null, packed='null'}, Library{name='io.netty:netty-transport-native-epoll:4.1.82.Final:linux-aarch_64', rules=[Rule{action=ALLOW, os=OSRestriction{name=LINUX, version='null'}, features=null}], natives=null, extract=null, packed='null'}, Library{name='io.netty:netty-transport-native-epoll:4.1.82.Final:linux-x86_64', rules=[Rule{action=ALLOW, os=OSRestriction{name=LINUX, version='null'}, features=null}], natives=null, extract=null, packed='null'}, Library{name='io.netty:netty-transport-native-unix-common:4.1.82.Final', rules=null, natives=null, extract=null, packed='null'}, Library{name='io.netty:netty-transport:4.1.82.Final', rules=null, natives=null, extract=null, packed='null'}, Library{name='it.unimi.dsi:fastutil:8.5.9', rules=null, natives=null, extract=null, packed='null'}, Library{name='net.java.dev.jna:jna-platform:5.12.1', rules=null, natives=null, extract=null, packed='null'}, Library{name='net.java.dev.jna:jna:5.12.1', rules=null, natives=null, extract=null, packed='null'}, Library{name='net.sf.jopt-simple:jopt-simple:5.0.4', rules=null, natives=null, extract=null, packed='null'}, Library{name='org.apache.commons:commons-compress:1.21', rules=null, natives=null, extract=null, packed='null'}, Library{name='org.apache.commons:commons-lang3:3.12.0', rules=null, natives=null, extract=null, packed='null'}, Library{name='org.apache.httpcomponents:httpclient:4.5.13', rules=null, natives=null, extract=null, packed='null'}, Library{name='org.apache.httpcomponents:httpcore:4.4.15', rules=null, natives=null, extract=null, packed='null'}, Library{name='org.apache.logging.log4j:log4j-api:2.19.0', rules=null, natives=null, extract=null, packed='null'}, Library{name='org.apache.logging.log4j:log4j-core:2.19.0', rules=null, natives=null, extract=null, packed='null'}, Library{name='org.apache.logging.log4j:log4j-slf4j2-impl:2.19.0', rules=null, natives=null, extract=null, packed='null'}, Library{name='org.joml:joml:1.10.5', rules=null, natives=null, extract=null, packed='null'}, Library{name='org.lwjgl:lwjgl-glfw:3.3.1', rules=null, natives=null, extract=null, packed='null'}, Library{name='org.lwjgl:lwjgl-glfw:3.3.1:natives-linux', rules=[Rule{action=ALLOW, os=OSRestriction{name=LINUX, version='null'}, features=null}], natives=null, extract=null, packed='null'}, Library{name='org.lwjgl:lwjgl-glfw:3.3.1:natives-macos', rules=[Rule{action=ALLOW, os=OSRestriction{name=OSX, version='null'}, features=null}], natives=null, extract=null, packed='null'}, Library{name='org.lwjgl:lwjgl-glfw:3.3.1:natives-macos-arm64', rules=[Rule{action=ALLOW, os=OSRestriction{name=OSX, version='null'}, features=null}], natives=null, extract=null, packed='null'}, Library{name='org.lwjgl:lwjgl-glfw:3.3.1:natives-windows', rules=[Rule{action=ALLOW, os=OSRestriction{name=WINDOWS, version='null'}, features=null}], natives=null, extract=null, packed='null'}, Library{name='org.lwjgl:lwjgl-glfw:3.3.1:natives-windows-arm64', rules=[Rule{action=ALLOW, os=OSRestriction{name=WINDOWS, version='null'}, features=null}], natives=null, extract=null, packed='null'}, Library{name='org.lwjgl:lwjgl-glfw:3.3.1:natives-windows-x86', rules=[Rule{action=ALLOW, os=OSRestriction{name=WINDOWS, version='null'}, features=null}], natives=null, extract=null, packed='null'}, Library{name='org.lwjgl:lwjgl-jemalloc:3.3.1', rules=null, natives=null, extract=null, packed='null'}, Library{name='org.lwjgl:lwjgl-jemalloc:3.3.1:natives-linux', rules=[Rule{action=ALLOW, os=OSRestriction{name=LINUX, version='null'}, features=null}], natives=null, extract=null, packed='null'}, Library{name='org.lwjgl:lwjgl-jemalloc:3.3.1:natives-macos', rules=[Rule{action=ALLOW, os=OSRestriction{name=OSX, version='null'}, features=null}], natives=null, extract=null, packed='null'}, Library{name='org.lwjgl:lwjgl-jemalloc:3.3.1:natives-macos-arm64', rules=[Rule{action=ALLOW, os=OSRestriction{name=OSX, version='null'}, features=null}], natives=null, extract=null, packed='null'}, Library{name='org.lwjgl:lwjgl-jemalloc:3.3.1:natives-windows', rules=[Rule{action=ALLOW, os=OSRestriction{name=WINDOWS, version='null'}, features=null}], natives=null, extract=null, packed='null'}, Library{name='org.lwjgl:lwjgl-jemalloc:3.3.1:natives-windows-arm64', rules=[Rule{action=ALLOW, os=OSRestriction{name=WINDOWS, version='null'}, features=null}], natives=null, extract=null, packed='null'}, Library{name='org.lwjgl:lwjgl-jemalloc:3.3.1:natives-windows-x86', rules=[Rule{action=ALLOW, os=OSRestriction{name=WINDOWS, version='null'}, features=null}], natives=null, extract=null, packed='null'}, Library{name='org.lwjgl:lwjgl-openal:3.3.1', rules=null, natives=null, extract=null, packed='null'}, Library{name='org.lwjgl:lwjgl-openal:3.3.1:natives-linux', rules=[Rule{action=ALLOW, os=OSRestriction{name=LINUX, version='null'}, features=null}], natives=null, extract=null, packed='null'}, Library{name='org.lwjgl:lwjgl-openal:3.3.1:natives-macos', rules=[Rule{action=ALLOW, os=OSRestriction{name=OSX, version='null'}, features=null}], natives=null, extract=null, packed='null'}, Library{name='org.lwjgl:lwjgl-openal:3.3.1:natives-macos-arm64', rules=[Rule{action=ALLOW, os=OSRestriction{name=OSX, version='null'}, features=null}], natives=null, extract=null, packed='null'}, Library{name='org.lwjgl:lwjgl-openal:3.3.1:natives-windows', rules=[Rule{action=ALLOW, os=OSRestriction{name=WINDOWS, version='null'}, features=null}], natives=null, extract=null, packed='null'}, Library{name='org.lwjgl:lwjgl-openal:3.3.1:natives-windows-arm64', rules=[Rule{action=ALLOW, os=OSRestriction{name=WINDOWS, version='null'}, features=null}], natives=null, extract=null, packed='null'}, Library{name='org.lwjgl:lwjgl-openal:3.3.1:natives-windows-x86', rules=[Rule{action=ALLOW, os=OSRestriction{name=WINDOWS, version='null'}, features=null}], natives=null, extract=null, packed='null'}, Library{name='org.lwjgl:lwjgl-opengl:3.3.1', rules=null, natives=null, extract=null, packed='null'}, Library{name='org.lwjgl:lwjgl-opengl:3.3.1:natives-linux', rules=[Rule{action=ALLOW, os=OSRestriction{name=LINUX, version='null'}, features=null}], natives=null, extract=null, packed='null'}, Library{name='org.lwjgl:lwjgl-opengl:3.3.1:natives-macos', rules=[Rule{action=ALLOW, os=OSRestriction{name=OSX, version='null'}, features=null}], natives=null, extract=null, packed='null'}, Library{name='org.lwjgl:lwjgl-opengl:3.3.1:natives-macos-arm64', rules=[Rule{action=ALLOW, os=OSRestriction{name=OSX, version='null'}, features=null}], natives=null, extract=null, packed='null'}, Library{name='org.lwjgl:lwjgl-opengl:3.3.1:natives-windows', rules=[Rule{action=ALLOW, os=OSRestriction{name=WINDOWS, version='null'}, features=null}], natives=null, extract=null, packed='null'}, Library{name='org.lwjgl:lwjgl-opengl:3.3.1:natives-windows-arm64', rules=[Rule{action=ALLOW, os=OSRestriction{name=WINDOWS, version='null'}, features=null}], natives=null, extract=null, packed='null'}, Library{name='org.lwjgl:lwjgl-opengl:3.3.1:natives-windows-x86', rules=[Rule{action=ALLOW, os=OSRestriction{name=WINDOWS, version='null'}, features=null}], natives=null, extract=null, packed='null'}, Library{name='org.lwjgl:lwjgl-stb:3.3.1', rules=null, natives=null, extract=null, packed='null'}, Library{name='org.lwjgl:lwjgl-stb:3.3.1:natives-linux', rules=[Rule{action=ALLOW, os=OSRestriction{name=LINUX, version='null'}, features=null}], natives=null, extract=null, packed='null'}, Library{name='org.lwjgl:lwjgl-stb:3.3.1:natives-macos', rules=[Rule{action=ALLOW, os=OSRestriction{name=OSX, version='null'}, features=null}], natives=null, extract=null, packed='null'}, Library{name='org.lwjgl:lwjgl-stb:3.3.1:natives-macos-arm64', rules=[Rule{action=ALLOW, os=OSRestriction{name=OSX, version='null'}, features=null}], natives=null, extract=null, packed='null'}, Library{name='org.lwjgl:lwjgl-stb:3.3.1:natives-windows', rules=[Rule{action=ALLOW, os=OSRestriction{name=WINDOWS, version='null'}, features=null}], natives=null, extract=null, packed='null'}, Library{name='org.lwjgl:lwjgl-stb:3.3.1:natives-windows-arm64', rules=[Rule{action=ALLOW, os=OSRestriction{name=WINDOWS, version='null'}, features=null}], natives=null, extract=null, packed='null'}, Library{name='org.lwjgl:lwjgl-stb:3.3.1:natives-windows-x86', rules=[Rule{action=ALLOW, os=OSRestriction{name=WINDOWS, version='null'}, features=null}], natives=null, extract=null, packed='null'}, Library{name='org.lwjgl:lwjgl-tinyfd:3.3.1', rules=null, natives=null, extract=null, packed='null'}, Library{name='org.lwjgl:lwjgl-tinyfd:3.3.1:natives-linux', rules=[Rule{action=ALLOW, os=OSRestriction{name=LINUX, version='null'}, features=null}], natives=null, extract=null, packed='null'}, Library{name='org.lwjgl:lwjgl-tinyfd:3.3.1:natives-macos', rules=[Rule{action=ALLOW, os=OSRestriction{name=OSX, version='null'}, features=null}], natives=null, extract=null, packed='null'}, Library{name='org.lwjgl:lwjgl-tinyfd:3.3.1:natives-macos-arm64', rules=[Rule{action=ALLOW, os=OSRestriction{name=OSX, version='null'}, features=null}], natives=null, extract=null, packed='null'}, Library{name='org.lwjgl:lwjgl-tinyfd:3.3.1:natives-windows', rules=[Rule{action=ALLOW, os=OSRestriction{name=WINDOWS, version='null'}, features=null}], natives=null, extract=null, packed='null'}, Library{name='org.lwjgl:lwjgl-tinyfd:3.3.1:natives-windows-arm64', rules=[Rule{action=ALLOW, os=OSRestriction{name=WINDOWS, version='null'}, features=null}], natives=null, extract=null, packed='null'}, Library{name='org.lwjgl:lwjgl-tinyfd:3.3.1:natives-windows-x86', rules=[Rule{action=ALLOW, os=OSRestriction{name=WINDOWS, version='null'}, features=null}], natives=null, extract=null, packed='null'}, Library{name='org.lwjgl:lwjgl:3.3.1', rules=null, natives=null, extract=null, packed='null'}, Library{name='org.lwjgl:lwjgl:3.3.1:natives-linux', rules=[Rule{action=ALLOW, os=OSRestriction{name=LINUX, version='null'}, features=null}], natives=null, extract=null, packed='null'}, Library{name='org.lwjgl:lwjgl:3.3.1:natives-macos', rules=[Rule{action=ALLOW, os=OSRestriction{name=OSX, version='null'}, features=null}], natives=null, extract=null, packed='null'}, Library{name='org.lwjgl:lwjgl:3.3.1:natives-macos-arm64', rules=[Rule{action=ALLOW, os=OSRestriction{name=OSX, version='null'}, features=null}], natives=null, extract=null, packed='null'}, Library{name='org.lwjgl:lwjgl:3.3.1:natives-windows', rules=[Rule{action=ALLOW, os=OSRestriction{name=WINDOWS, version='null'}, features=null}], natives=null, extract=null, packed='null'}, Library{name='org.lwjgl:lwjgl:3.3.1:natives-windows-arm64', rules=[Rule{action=ALLOW, os=OSRestriction{name=WINDOWS, version='null'}, features=null}], natives=null, extract=null, packed='null'}, Library{name='org.lwjgl:lwjgl:3.3.1:natives-windows-x86', rules=[Rule{action=ALLOW, os=OSRestriction{name=WINDOWS, version='null'}, features=null}], natives=null, extract=null, packed='null'}, Library{name='org.slf4j:slf4j-api:2.0.1', rules=null, natives=null, extract=null, packed='null'}]} latestVersion:  PartialVersion{id='Forge 1.20.1', time=Sun Jun 11 13:28:03 NOVT 2023, release=Sun Jun 11 13:28:03 NOVT 2023, type=modified, source=EXTRA_VERSION_REPO, list=net.minecraft.launcher.updater.ExtraVersionList@6f37b344} [LoginForm] CompleteVersion ::  Forge 1.20.1 AccountComboBox.validte pre game launch username Account{skinType=TLAUNCHER, displayName=Klirov, type=TLAUNCHER, accessToken=(not null), userid=klirov, uuid=1f8060b9513211e9bfea002590a1379b, username=klirov} TLAUNCHER [TlauncherAuthenticator] Staring to authenticate: Account{skinType=TLAUNCHER, displayName=Klirov, type=TLAUNCHER, accessToken=(not null), userid=klirov, uuid=1f8060b9513211e9bfea002590a1379b, username=klirov} [TlauncherAuthenticator] hasUsername: klirov [TlauncherAuthenticator] hasPassword: false [TlauncherAuthenticator] hasAccessToken: true [TlauncherAuthenticator] Loggining in with token [TlauncherAuthenticator] Log in successful! [TlauncherAuthenticator] hasUUID: true [TlauncherAuthenticator] hasAccessToken: true [TlauncherAuthenticator] hasProfiles: true [TlauncherAuthenticator] hasProfile: true [TlauncherAuthenticator] hasProperties: true onAuthPassed saved account Account{skinType=TLAUNCHER, displayName=Klirov, type=TLAUNCHER, accessToken=(not null), userid=klirov, uuid=1f8060b9513211e9bfea002590a1379b, username=klirov} profiles is saved successfully [LoginForm] Login was OK. Trying to launch now. [Launcher] Running under TLauncher 2.9307 [Launcher] Collecting info... before clearLibrary C:\Users\clear\AppData\Roaming\.minecraft\mods\1.20.1 Crystalcraft Unlimited Trims, Twinklestar, Silk touch and Fortune Update.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\AdditionalEnchantedMiner-1.20.1-1201.1.90.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\aiotbotania-1.20.1-4.0.5.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\alexsmobs-1.22.9.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\AoA3-1.20.1-3.7.1-all.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\Aquaculture-1.20.1-2.5.3.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\architectury-9.2.14-forge.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\ars_nouveau-1.20.1-4.12.6-all.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\artifacts-forge-9.5.13.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\athena-forge-1.20.1-3.1.2.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\autumnity-1.20.1-5.0.1.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\awesomedungeon-forge-1.20.1-3.2.0.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\awesomedungeonend-forge-1.20.1-3.1.1.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\awesomedungeonnether-forge-1.20.1-3.1.1.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\awesomedungeonocean-forge-1.20.1-3.3.0.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\balm-forge-1.20.1-7.3.10-all.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\benched-1.2.2a-forge-mc1.20.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\bendy-lib-forge-4.0.0.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\BetterAnimationsCollection-v8.0.0-1.20.1-Forge.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\bettervillage-forge-1.20.1-3.2.0.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\BiomesOPlenty-forge-1.20.1-19.0.0.91.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\blockui-1.20.1-1.0.186-beta.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\blueprint-1.20.1-7.1.0.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\Bookshelf-Forge-1.20.1-20.2.13.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\Botania-1.20.1-446-FORGE.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\BotanyPots-Forge-1.20.1-13.0.40.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\BotanyPotsOrePlanting-Forge-7.22.0+1.20.1.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\BotanyTrees-Forge-1.20.1-9.0.18.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\Bountiful-6.0.4+1.20.1-forge.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\Byzantine-1.21.1-23.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\car-forge-1.20.1-1.0.34.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\carryon-forge-1.20.1-2.1.2.7.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\catalogue-forge-1.20.1-1.8.0.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\chipped-forge-1.20.1-3.0.7.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\chisels-and-bits-forge-1.4.148.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\christmascolonies-1.8-1.20.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\chunkloaders-1.2.8a-forge-mc1.20.1.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\citadel-2.6.1-1.20.1.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\cloth-config-11.1.136-forge.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\collective-1.20.1-7.87.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\compact-storage-1.20.1-forge-6.0.1.70.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\ConfigurableCane-1.20-2.5.2.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\configured-forge-1.20.1-2.2.3.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\connectedglass-1.1.12-forge-mc1.20.1.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\connectivity-1.20.1-6.1.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\Controlling-forge-1.20.1-12.0.2.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\cookingforblockheads-forge-1.20.1-16.0.9.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\cosmeticarmorreworked-1.20.1-v1a.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\crafttag1.20.2.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\crittersandcompanions-forge-2.2.2.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\Cucumber-1.20.1-7.0.13.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\cupboard-1.20.1-2.7.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\curios-forge-5.11.0+1.20.1.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\DarkPaintings-Forge-1.20.1-17.0.4.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\DireColonies-3.1.0.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\domum_ornamentum-1.20.1-1.0.282-snapshot-universal.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\doorknockerforge-1.3.0.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\doubledoors-1.20.1-5.9.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\DramaticDoors-QuiFabrge-1.20.1-3.2.8.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\emotecraft-for-MC1.20.1-2.2.7-b.build.50-forge.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\expore-1.20.1-0.3.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\FallingTree-1.20.1-4.3.4.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\farmingforblockheads-forge-1.20.1-14.0.2.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\ferritecore-6.0.1-forge.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\Forgiveness-1.20.1-1.4.0-forge.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\framework-forge-1.20.1-0.7.12.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\fusion-1.1.1-forge-mc1.20.1.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\geckolib-forge-1.20.1-4.4.9.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\gemsnjewels-1.20.1-1.3.5.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\glassential-renewed-forge-1.20.1-2.4.2.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\GlitchCore-forge-1.20.1-0.0.1.1.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\HammerLib-1.20.1-20.1.33.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\hole_filler_mod-1.2.8_mc-1.20.1_forge.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\immersive_paintings-0.6.7+1.20.1-forge.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\ImprovableSkills-1.20.1-20.1.11.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\inventoryhud.forge.1.20.1-3.4.26.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\inventorysorter-1.20.1-23.0.8.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\Jade-1.20.1-Forge-11.12.2.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\JadeColonies-1.20.1-1.4.2.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\jei-1.20.1-forge-15.20.0.105.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\journeymap-1.20.1-5.10.3-forge.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\JustOutdoorStuffs-1.20.1-forge-v1.0.2.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\justzoom_forge_2.0.0_MC_1.20.1.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\Kambrik-6.1.1+1.20.1-forge.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\konkrete_forge_1.8.0_MC_1.20-1.20.1.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\kotlinforforge-4.11.0-all.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\libraryferret-forge-1.20.1-4.0.0.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\LibX-1.20.1-5.0.12.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\ManyIdeasCore-1.20.1-1.4.2.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\ManyIdeasDoors-1.20.1-1.2.3.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\matc-1.6.0.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\mcw-bridges-3.0.0-mc1.20.1forge.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\mcw-doors-1.1.1forge-mc1.20.1.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\mcw-fences-1.1.2-mc1.20.1forge.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\mcw-holidays-1.1.0-mc1.20.1forge.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\mcw-lights-1.1.0-mc1.20.1forge.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\mcw-paintings-1.0.5-1.20.1forge.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\mcw-paths-1.0.5-1.20.1forge.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\mcw-stairs-1.0.0-1.20.1forge.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\mcw-trapdoors-1.1.4-mc1.20.1forge.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\mcw-windows-2.3.0-mc1.20.1forge.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\memoryleakfix-forge-1.17+-1.0.0.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\minecolonies-1.20.1-1.1.783-snapshot.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\miningmaster-1.20.1-4.1.3.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\moreconcrete-1.4.7-1.20.1.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\MouseTweaks-forge-mc1.20.1-2.25.1.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\movingelevators-1.4.7-forge-mc1.20.1.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\multipiston-1.20-1.2.43-RELEASE.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\MysticalAdaptations-1.20.1-1.0.1.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\MysticalAgradditions-1.20.1-7.0.6.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\MysticalAgriculture-1.20.1-7.0.14.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\MysticalCustomization-1.20.1-5.0.2.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\MysticalExpansion-1.20.1-1.0.0.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\MythicBotany-1.20.1-4.0.3.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\nether-s-exoticism-1.20.1-1.2.9.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\oculus-mc1.20.1-1.8.0.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\online-emotes-2.1.2-forge.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\pamhc2crops-1.20-1.0.3.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\pamhc2foodcore-1.20.4-1.0.5.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\pamhc2foodextended-1.20.4-1.0.1.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\pamhc2trees-1.20-1.0.2.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\Patchouli-1.20.1-84-FORGE.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\phantasm-0.4.2.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\player-animation-lib-forge-1.0.2-rc1+1.20.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\polymorph-forge-0.49.8+1.20.1.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\PortableCraftingTable-1.20.1-3.2.2-[FORGE].jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\Powah-5.0.7.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\puffish_skills-0.14.3-1.20-forge.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\PuzzlesLib-v8.1.25-1.20.1-Forge.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\Quark-4.0-460.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\rebind_narrator-forge-1.20.1-2.0.2.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\rechiseled-1.1.6-forge-mc1.20.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\rechiseled_chipped-1.1.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\RecipesLibrary-1.20.1-2.0.1.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\refurbished_furniture-forge-1.20.1-1.0.8.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\RegionsUnexploredForge-0.5.6+1.20.1.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\resourcefullib-forge-1.20.1-2.1.29.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\RGB Blocks-1.20.1-1.1.9.1.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\right-click-harvest-3.2.3+1.20.1-forge.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\rubidium-0.6.5.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\ScalableCatsForce-3.3.1-build-0-with-library.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\ScalingHealth-1.20.1-8.0.2+9.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\Searchables-forge-1.20.1-1.0.3.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\seasonhud-forge-1.20.1-1.11.5.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\SereneSeasons-forge-1.20.1-9.1.0.0.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\sereneseasonsphc2crops-1.20.1-1.0.0.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\silent-lib-1.20.1-8.0.0.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\simplemagnets-1.1.12-forge-mc1.20.1.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\sit-1.20.1-1.3.5.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\stackrefill-1.20.1-4.5.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\Structory_1.20.x_v1.3.5.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\structurize-1.20.1-1.0.763-snapshot.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\stylecolonies-1.11-1.20.1.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\supermartijn642configlib-1.1.8-forge-mc1.20.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\supermartijn642corelib-1.1.17a-forge-mc1.20.1.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\supertools-1.1.1-1.20.1.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\tectonic-forge-1.20.1-2.4.1.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\tectonic_tweak-1.1.0.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\TerraBlender-forge-1.20.1-3.0.1.7.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\Terralith_1.20.x_v2.5.4.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\The_Undergarden-1.20.1-0.8.14.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\tl_skin_cape_forge_1.20_1.20.1-1.32.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\toweringtownscape-1.4-1.20.1.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\towntalk-1.20.1-1.1.0.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\trashcans-1.0.18b-forge-mc1.20.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\twilightforest-1.20.1-4.3.2508-universal.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\upgrade_aquatic-1.20.1-6.0.1.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\worldedit-mod-7.2.15.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\YungsApi-1.20-Forge-4.0.6.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\YungsBetterMineshafts-1.20-Forge-4.0.4.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\Zeta-1.0-24.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\[1.20.1]MoreCraftingTables-5.1.3.jar written:  [] after clearLibrary C:\Users\clear\AppData\Roaming\.minecraft\mods\1.20.1 Crystalcraft Unlimited Trims, Twinklestar, Silk touch and Fortune Update.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\AdditionalEnchantedMiner-1.20.1-1201.1.90.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\aiotbotania-1.20.1-4.0.5.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\alexsmobs-1.22.9.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\AoA3-1.20.1-3.7.1-all.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\Aquaculture-1.20.1-2.5.3.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\architectury-9.2.14-forge.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\ars_nouveau-1.20.1-4.12.6-all.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\artifacts-forge-9.5.13.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\athena-forge-1.20.1-3.1.2.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\autumnity-1.20.1-5.0.1.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\awesomedungeon-forge-1.20.1-3.2.0.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\awesomedungeonend-forge-1.20.1-3.1.1.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\awesomedungeonnether-forge-1.20.1-3.1.1.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\awesomedungeonocean-forge-1.20.1-3.3.0.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\balm-forge-1.20.1-7.3.10-all.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\benched-1.2.2a-forge-mc1.20.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\bendy-lib-forge-4.0.0.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\BetterAnimationsCollection-v8.0.0-1.20.1-Forge.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\bettervillage-forge-1.20.1-3.2.0.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\BiomesOPlenty-forge-1.20.1-19.0.0.91.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\blockui-1.20.1-1.0.186-beta.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\blueprint-1.20.1-7.1.0.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\Bookshelf-Forge-1.20.1-20.2.13.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\Botania-1.20.1-446-FORGE.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\BotanyPots-Forge-1.20.1-13.0.40.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\BotanyPotsOrePlanting-Forge-7.22.0+1.20.1.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\BotanyTrees-Forge-1.20.1-9.0.18.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\Bountiful-6.0.4+1.20.1-forge.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\Byzantine-1.21.1-23.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\car-forge-1.20.1-1.0.34.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\carryon-forge-1.20.1-2.1.2.7.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\catalogue-forge-1.20.1-1.8.0.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\chipped-forge-1.20.1-3.0.7.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\chisels-and-bits-forge-1.4.148.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\christmascolonies-1.8-1.20.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\chunkloaders-1.2.8a-forge-mc1.20.1.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\citadel-2.6.1-1.20.1.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\cloth-config-11.1.136-forge.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\collective-1.20.1-7.87.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\compact-storage-1.20.1-forge-6.0.1.70.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\ConfigurableCane-1.20-2.5.2.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\configured-forge-1.20.1-2.2.3.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\connectedglass-1.1.12-forge-mc1.20.1.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\connectivity-1.20.1-6.1.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\Controlling-forge-1.20.1-12.0.2.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\cookingforblockheads-forge-1.20.1-16.0.9.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\cosmeticarmorreworked-1.20.1-v1a.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\crafttag1.20.2.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\crittersandcompanions-forge-2.2.2.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\Cucumber-1.20.1-7.0.13.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\cupboard-1.20.1-2.7.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\curios-forge-5.11.0+1.20.1.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\DarkPaintings-Forge-1.20.1-17.0.4.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\DireColonies-3.1.0.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\domum_ornamentum-1.20.1-1.0.282-snapshot-universal.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\doorknockerforge-1.3.0.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\doubledoors-1.20.1-5.9.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\DramaticDoors-QuiFabrge-1.20.1-3.2.8.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\emotecraft-for-MC1.20.1-2.2.7-b.build.50-forge.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\expore-1.20.1-0.3.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\FallingTree-1.20.1-4.3.4.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\farmingforblockheads-forge-1.20.1-14.0.2.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\ferritecore-6.0.1-forge.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\Forgiveness-1.20.1-1.4.0-forge.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\framework-forge-1.20.1-0.7.12.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\fusion-1.1.1-forge-mc1.20.1.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\geckolib-forge-1.20.1-4.4.9.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\gemsnjewels-1.20.1-1.3.5.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\glassential-renewed-forge-1.20.1-2.4.2.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\GlitchCore-forge-1.20.1-0.0.1.1.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\HammerLib-1.20.1-20.1.33.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\hole_filler_mod-1.2.8_mc-1.20.1_forge.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\immersive_paintings-0.6.7+1.20.1-forge.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\ImprovableSkills-1.20.1-20.1.11.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\inventoryhud.forge.1.20.1-3.4.26.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\inventorysorter-1.20.1-23.0.8.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\Jade-1.20.1-Forge-11.12.2.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\JadeColonies-1.20.1-1.4.2.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\jei-1.20.1-forge-15.20.0.105.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\journeymap-1.20.1-5.10.3-forge.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\JustOutdoorStuffs-1.20.1-forge-v1.0.2.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\justzoom_forge_2.0.0_MC_1.20.1.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\Kambrik-6.1.1+1.20.1-forge.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\konkrete_forge_1.8.0_MC_1.20-1.20.1.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\kotlinforforge-4.11.0-all.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\libraryferret-forge-1.20.1-4.0.0.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\LibX-1.20.1-5.0.12.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\ManyIdeasCore-1.20.1-1.4.2.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\ManyIdeasDoors-1.20.1-1.2.3.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\matc-1.6.0.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\mcw-bridges-3.0.0-mc1.20.1forge.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\mcw-doors-1.1.1forge-mc1.20.1.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\mcw-fences-1.1.2-mc1.20.1forge.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\mcw-holidays-1.1.0-mc1.20.1forge.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\mcw-lights-1.1.0-mc1.20.1forge.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\mcw-paintings-1.0.5-1.20.1forge.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\mcw-paths-1.0.5-1.20.1forge.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\mcw-stairs-1.0.0-1.20.1forge.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\mcw-trapdoors-1.1.4-mc1.20.1forge.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\mcw-windows-2.3.0-mc1.20.1forge.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\memoryleakfix-forge-1.17+-1.0.0.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\minecolonies-1.20.1-1.1.783-snapshot.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\miningmaster-1.20.1-4.1.3.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\moreconcrete-1.4.7-1.20.1.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\MouseTweaks-forge-mc1.20.1-2.25.1.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\movingelevators-1.4.7-forge-mc1.20.1.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\multipiston-1.20-1.2.43-RELEASE.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\MysticalAdaptations-1.20.1-1.0.1.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\MysticalAgradditions-1.20.1-7.0.6.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\MysticalAgriculture-1.20.1-7.0.14.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\MysticalCustomization-1.20.1-5.0.2.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\MysticalExpansion-1.20.1-1.0.0.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\MythicBotany-1.20.1-4.0.3.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\nether-s-exoticism-1.20.1-1.2.9.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\oculus-mc1.20.1-1.8.0.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\online-emotes-2.1.2-forge.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\pamhc2crops-1.20-1.0.3.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\pamhc2foodcore-1.20.4-1.0.5.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\pamhc2foodextended-1.20.4-1.0.1.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\pamhc2trees-1.20-1.0.2.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\Patchouli-1.20.1-84-FORGE.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\phantasm-0.4.2.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\player-animation-lib-forge-1.0.2-rc1+1.20.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\polymorph-forge-0.49.8+1.20.1.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\PortableCraftingTable-1.20.1-3.2.2-[FORGE].jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\Powah-5.0.7.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\puffish_skills-0.14.3-1.20-forge.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\PuzzlesLib-v8.1.25-1.20.1-Forge.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\Quark-4.0-460.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\rebind_narrator-forge-1.20.1-2.0.2.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\rechiseled-1.1.6-forge-mc1.20.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\rechiseled_chipped-1.1.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\RecipesLibrary-1.20.1-2.0.1.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\refurbished_furniture-forge-1.20.1-1.0.8.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\RegionsUnexploredForge-0.5.6+1.20.1.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\resourcefullib-forge-1.20.1-2.1.29.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\RGB Blocks-1.20.1-1.1.9.1.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\right-click-harvest-3.2.3+1.20.1-forge.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\rubidium-0.6.5.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\ScalableCatsForce-3.3.1-build-0-with-library.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\ScalingHealth-1.20.1-8.0.2+9.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\Searchables-forge-1.20.1-1.0.3.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\seasonhud-forge-1.20.1-1.11.5.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\SereneSeasons-forge-1.20.1-9.1.0.0.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\sereneseasonsphc2crops-1.20.1-1.0.0.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\silent-lib-1.20.1-8.0.0.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\simplemagnets-1.1.12-forge-mc1.20.1.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\sit-1.20.1-1.3.5.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\stackrefill-1.20.1-4.5.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\Structory_1.20.x_v1.3.5.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\structurize-1.20.1-1.0.763-snapshot.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\stylecolonies-1.11-1.20.1.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\supermartijn642configlib-1.1.8-forge-mc1.20.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\supermartijn642corelib-1.1.17a-forge-mc1.20.1.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\supertools-1.1.1-1.20.1.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\tectonic-forge-1.20.1-2.4.1.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\tectonic_tweak-1.1.0.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\TerraBlender-forge-1.20.1-3.0.1.7.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\Terralith_1.20.x_v2.5.4.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\The_Undergarden-1.20.1-0.8.14.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\toweringtownscape-1.4-1.20.1.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\towntalk-1.20.1-1.1.0.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\trashcans-1.0.18b-forge-mc1.20.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\twilightforest-1.20.1-4.3.2508-universal.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\upgrade_aquatic-1.20.1-6.0.1.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\worldedit-mod-7.2.15.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\YungsApi-1.20-Forge-4.0.6.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\YungsBetterMineshafts-1.20-Forge-4.0.4.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\Zeta-1.0-24.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\[1.20.1]MoreCraftingTables-5.1.3.jar [Launcher] Force update: false [Launcher] Selected version: Forge 1.20.1 [Launcher] Selected account: Account{skinType=TLAUNCHER, displayName=Klirov, type=TLAUNCHER, accessToken=(not null), userid=klirov, uuid=1f8060b9513211e9bfea002590a1379b, username=klirov} [Launcher] Version sync info: VersionSyncInfo{id='Forge 1.20.1', local=CompleteVersion{id='Forge 1.20.1', time=Sun Jun 11 13:28:03 NOVT 2023, release=Sun Jun 11 13:28:03 NOVT 2023, type=modified, class=cpw.mods.bootstraplauncher.BootstrapLauncher, minimumVersion=21, assets='5', source=LOCAL_VERSION_REPO, list=net.minecraft.launcher.updater.ExtraVersionList@6f37b344, libraries=[Library{name='cpw.mods:securejarhandler:2.1.10', rules=null, natives=null, extract=null, packed='null'}, Library{name='org.ow2.asm:asm:9.7.1', rules=null, natives=null, extract=null, packed='null'}, Library{name='org.ow2.asm:asm-commons:9.7.1', rules=null, natives=null, extract=null, packed='null'}, Library{name='org.ow2.asm:asm-tree:9.7.1', rules=null, natives=null, extract=null, packed='null'}, Library{name='org.ow2.asm:asm-util:9.7.1', rules=null, natives=null, extract=null, packed='null'}, Library{name='org.ow2.asm:asm-analysis:9.7.1', rules=null, natives=null, extract=null, packed='null'}, Library{name='net.minecraftforge:accesstransformers:8.0.4', rules=null, natives=null, extract=null, packed='null'}, Library{name='org.antlr:antlr4-runtime:4.9.1', rules=null, natives=null, extract=null, packed='null'}, Library{name='net.minecraftforge:eventbus:6.0.5', rules=null, natives=null, extract=null, packed='null'}, Library{name='net.minecraftforge:forgespi:7.0.1', rules=null, natives=null, extract=null, packed='null'}, Library{name='net.minecraftforge:coremods:5.2.1', rules=null, natives=null, extract=null, packed='null'}, Library{name='cpw.mods:modlauncher:10.0.9', rules=null, natives=null, extract=null, packed='null'}, Library{name='net.minecraftforge:unsafe:0.2.0', rules=null, natives=null, extract=null, packed='null'}, Library{name='net.minecraftforge:mergetool:1.1.5:api', rules=null, natives=null, extract=null, packed='null'}, Library{name='com.electronwill.night-config:core:3.6.4', rules=null, natives=null, extract=null, packed='null'}, Library{name='com.electronwill.night-config:toml:3.6.4', rules=null, natives=null, extract=null, packed='null'}, Library{name='org.apache.maven:maven-artifact:3.8.5', rules=null, natives=null, extract=null, packed='null'}, Library{name='net.jodah:typetools:0.6.3', rules=null, natives=null, extract=null, packed='null'}, Library{name='net.minecrell:terminalconsoleappender:1.2.0', rules=null, natives=null, extract=null, packed='null'}, Library{name='org.jline:jline-reader:3.12.1', rules=null, natives=null, extract=null, packed='null'}, Library{name='org.jline:jline-terminal:3.12.1', rules=null, natives=null, extract=null, packed='null'}, Library{name='org.spongepowered:mixin:0.8.5', rules=null, natives=null, extract=null, packed='null'}, Library{name='org.openjdk.nashorn:nashorn-core:15.4', rules=null, natives=null, extract=null, packed='null'}, Library{name='net.minecraftforge:JarJarSelector:0.3.19', rules=null, natives=null, extract=null, packed='null'}, Library{name='net.minecraftforge:JarJarMetadata:0.3.19', rules=null, natives=null, extract=null, packed='null'}, Library{name='cpw.mods:bootstraplauncher:1.1.2', rules=null, natives=null, extract=null, packed='null'}, Library{name='net.minecraftforge:JarJarFileSystems:0.3.19', rules=null, natives=null, extract=null, packed='null'}, Library{name='net.minecraftforge:fmlloader:1.20.1-47.3.12', rules=null, natives=null, extract=null, packed='null'}, Library{name='net.minecraftforge:fmlearlydisplay:1.20.1-47.3.12', rules=null, natives=null, extract=null, packed='null'}, Library{name='ca.weblite:java-objc-bridge:1.1', rules=[Rule{action=ALLOW, os=OSRestriction{name=OSX, version='null'}, features=null}], natives=null, extract=null, packed='null'}, Library{name='com.github.oshi:oshi-core:6.2.2', rules=null, natives=null, extract=null, packed='null'}, Library{name='com.google.code.gson:gson:2.10', rules=null, natives=null, extract=null, packed='null'}, Library{name='com.google.guava:failureaccess:1.0.1', rules=null, natives=null, extract=null, packed='null'}, Library{name='com.google.guava:guava:31.1-jre', rules=null, natives=null, extract=null, packed='null'}, Library{name='com.ibm.icu:icu4j:71.1', rules=null, natives=null, extract=null, packed='null'}, Library{name='com.mojang:authlib:4.0.43', rules=null, natives=null, extract=null, packed='null'}, Library{name='com.mojang:blocklist:1.0.10', rules=null, natives=null, extract=null, packed='null'}, Library{name='com.mojang:brigadier:1.1.8', rules=null, natives=null, extract=null, packed='null'}, Library{name='com.mojang:datafixerupper:6.0.8', rules=null, natives=null, extract=null, packed='null'}, Library{name='com.mojang:logging:1.1.1', rules=null, natives=null, extract=null, packed='null'}, Library{name='com.mojang:patchy:2.2.10', rules=null, natives=null, extract=null, packed='null'}, Library{name='com.mojang:text2speech:1.17.9', rules=null, natives=null, extract=null, packed='null'}, Library{name='commons-codec:commons-codec:1.15', rules=null, natives=null, extract=null, packed='null'}, Library{name='commons-io:commons-io:2.11.0', rules=null, natives=null, extract=null, packed='null'}, Library{name='commons-logging:commons-logging:1.2', rules=null, natives=null, extract=null, packed='null'}, Library{name='io.netty:netty-buffer:4.1.82.Final', rules=null, natives=null, extract=null, packed='null'}, Library{name='io.netty:netty-codec:4.1.82.Final', rules=null, natives=null, extract=null, packed='null'}, Library{name='io.netty:netty-common:4.1.82.Final', rules=null, natives=null, extract=null, packed='null'}, Library{name='io.netty:netty-handler:4.1.82.Final', rules=null, natives=null, extract=null, packed='null'}, Library{name='io.netty:netty-resolver:4.1.82.Final', rules=null, natives=null, extract=null, packed='null'}, Library{name='io.netty:netty-transport-classes-epoll:4.1.82.Final', rules=null, natives=null, extract=null, packed='null'}, Library{name='io.netty:netty-transport-native-epoll:4.1.82.Final:linux-aarch_64', rules=[Rule{action=ALLOW, os=OSRestriction{name=LINUX, version='null'}, features=null}], natives=null, extract=null, packed='null'}, Library{name='io.netty:netty-transport-native-epoll:4.1.82.Final:linux-x86_64', rules=[Rule{action=ALLOW, os=OSRestriction{name=LINUX, version='null'}, features=null}], natives=null, extract=null, packed='null'}, Library{name='io.netty:netty-transport-native-unix-common:4.1.82.Final', rules=null, natives=null, extract=null, packed='null'}, Library{name='io.netty:netty-transport:4.1.82.Final', rules=null, natives=null, extract=null, packed='null'}, Library{name='it.unimi.dsi:fastutil:8.5.9', rules=null, natives=null, extract=null, packed='null'}, Library{name='net.java.dev.jna:jna-platform:5.12.1', rules=null, natives=null, extract=null, packed='null'}, Library{name='net.java.dev.jna:jna:5.12.1', rules=null, natives=null, extract=null, packed='null'}, Library{name='net.sf.jopt-simple:jopt-simple:5.0.4', rules=null, natives=null, extract=null, packed='null'}, Library{name='org.apache.commons:commons-compress:1.21', rules=null, natives=null, extract=null, packed='null'}, Library{name='org.apache.commons:commons-lang3:3.12.0', rules=null, natives=null, extract=null, packed='null'}, Library{name='org.apache.httpcomponents:httpclient:4.5.13', rules=null, natives=null, extract=null, packed='null'}, Library{name='org.apache.httpcomponents:httpcore:4.4.15', rules=null, natives=null, extract=null, packed='null'}, Library{name='org.apache.logging.log4j:log4j-api:2.19.0', rules=null, natives=null, extract=null, packed='null'}, Library{name='org.apache.logging.log4j:log4j-core:2.19.0', rules=null, natives=null, extract=null, packed='null'}, Library{name='org.apache.logging.log4j:log4j-slf4j2-impl:2.19.0', rules=null, natives=null, extract=null, packed='null'}, Library{name='org.joml:joml:1.10.5', rules=null, natives=null, extract=null, packed='null'}, Library{name='org.lwjgl:lwjgl-glfw:3.3.1', rules=null, natives=null, extract=null, packed='null'}, Library{name='org.lwjgl:lwjgl-glfw:3.3.1:natives-linux', rules=[Rule{action=ALLOW, os=OSRestriction{name=LINUX, version='null'}, features=null}], natives=null, extract=null, packed='null'}, Library{name='org.lwjgl:lwjgl-glfw:3.3.1:natives-macos', rules=[Rule{action=ALLOW, os=OSRestriction{name=OSX, version='null'}, features=null}], natives=null, extract=null, packed='null'}, Library{name='org.lwjgl:lwjgl-glfw:3.3.1:natives-macos-arm64', rules=[Rule{action=ALLOW, os=OSRestriction{name=OSX, version='null'}, features=null}], natives=null, extract=null, packed='null'}, Library{name='org.lwjgl:lwjgl-glfw:3.3.1:natives-windows', rules=[Rule{action=ALLOW, os=OSRestriction{name=WINDOWS, version='null'}, features=null}], natives=null, extract=null, packed='null'}, Library{name='org.lwjgl:lwjgl-glfw:3.3.1:natives-windows-arm64', rules=[Rule{action=ALLOW, os=OSRestriction{name=WINDOWS, version='null'}, features=null}], natives=null, extract=null, packed='null'}, Library{name='org.lwjgl:lwjgl-glfw:3.3.1:natives-windows-x86', rules=[Rule{action=ALLOW, os=OSRestriction{name=WINDOWS, version='null'}, features=null}], natives=null, extract=null, packed='null'}, Library{name='org.lwjgl:lwjgl-jemalloc:3.3.1', rules=null, natives=null, extract=null, packed='null'}, Library{name='org.lwjgl:lwjgl-jemalloc:3.3.1:natives-linux', rules=[Rule{action=ALLOW, os=OSRestriction{name=LINUX, version='null'}, features=null}], natives=null, extract=null, packed='null'}, Library{name='org.lwjgl:lwjgl-jemalloc:3.3.1:natives-macos', rules=[Rule{action=ALLOW, os=OSRestriction{name=OSX, version='null'}, features=null}], natives=null, extract=null, packed='null'}, Library{name='org.lwjgl:lwjgl-jemalloc:3.3.1:natives-macos-arm64', rules=[Rule{action=ALLOW, os=OSRestriction{name=OSX, version='null'}, features=null}], natives=null, extract=null, packed='null'}, Library{name='org.lwjgl:lwjgl-jemalloc:3.3.1:natives-windows', rules=[Rule{action=ALLOW, os=OSRestriction{name=WINDOWS, version='null'}, features=null}], natives=null, extract=null, packed='null'}, Library{name='org.lwjgl:lwjgl-jemalloc:3.3.1:natives-windows-arm64', rules=[Rule{action=ALLOW, os=OSRestriction{name=WINDOWS, version='null'}, features=null}], natives=null, extract=null, packed='null'}, Library{name='org.lwjgl:lwjgl-jemalloc:3.3.1:natives-windows-x86', rules=[Rule{action=ALLOW, os=OSRestriction{name=WINDOWS, version='null'}, features=null}], natives=null, extract=null, packed='null'}, Library{name='org.lwjgl:lwjgl-openal:3.3.1', rules=null, natives=null, extract=null, packed='null'}, Library{name='org.lwjgl:lwjgl-openal:3.3.1:natives-linux', rules=[Rule{action=ALLOW, os=OSRestriction{name=LINUX, version='null'}, features=null}], natives=null, extract=null, packed='null'}, Library{name='org.lwjgl:lwjgl-openal:3.3.1:natives-macos', rules=[Rule{action=ALLOW, os=OSRestriction{name=OSX, version='null'}, features=null}], natives=null, extract=null, packed='null'}, Library{name='org.lwjgl:lwjgl-openal:3.3.1:natives-macos-arm64', rules=[Rule{action=ALLOW, os=OSRestriction{name=OSX, version='null'}, features=null}], natives=null, extract=null, packed='null'}, Library{name='org.lwjgl:lwjgl-openal:3.3.1:natives-windows', rules=[Rule{action=ALLOW, os=OSRestriction{name=WINDOWS, version='null'}, features=null}], natives=null, extract=null, packed='null'}, Library{name='org.lwjgl:lwjgl-openal:3.3.1:natives-windows-arm64', rules=[Rule{action=ALLOW, os=OSRestriction{name=WINDOWS, version='null'}, features=null}], natives=null, extract=null, packed='null'}, Library{name='org.lwjgl:lwjgl-openal:3.3.1:natives-windows-x86', rules=[Rule{action=ALLOW, os=OSRestriction{name=WINDOWS, version='null'}, features=null}], natives=null, extract=null, packed='null'}, Library{name='org.lwjgl:lwjgl-opengl:3.3.1', rules=null, natives=null, extract=null, packed='null'}, Library{name='org.lwjgl:lwjgl-opengl:3.3.1:natives-linux', rules=[Rule{action=ALLOW, os=OSRestriction{name=LINUX, version='null'}, features=null}], natives=null, extract=null, packed='null'}, Library{name='org.lwjgl:lwjgl-opengl:3.3.1:natives-macos', rules=[Rule{action=ALLOW, os=OSRestriction{name=OSX, version='null'}, features=null}], natives=null, extract=null, packed='null'}, Library{name='org.lwjgl:lwjgl-opengl:3.3.1:natives-macos-arm64', rules=[Rule{action=ALLOW, os=OSRestriction{name=OSX, version='null'}, features=null}], natives=null, extract=null, packed='null'}, Library{name='org.lwjgl:lwjgl-opengl:3.3.1:natives-windows', rules=[Rule{action=ALLOW, os=OSRestriction{name=WINDOWS, version='null'}, features=null}], natives=null, extract=null, packed='null'}, Library{name='org.lwjgl:lwjgl-opengl:3.3.1:natives-windows-arm64', rules=[Rule{action=ALLOW, os=OSRestriction{name=WINDOWS, version='null'}, features=null}], natives=null, extract=null, packed='null'}, Library{name='org.lwjgl:lwjgl-opengl:3.3.1:natives-windows-x86', rules=[Rule{action=ALLOW, os=OSRestriction{name=WINDOWS, version='null'}, features=null}], natives=null, extract=null, packed='null'}, Library{name='org.lwjgl:lwjgl-stb:3.3.1', rules=null, natives=null, extract=null, packed='null'}, Library{name='org.lwjgl:lwjgl-stb:3.3.1:natives-linux', rules=[Rule{action=ALLOW, os=OSRestriction{name=LINUX, version='null'}, features=null}], natives=null, extract=null, packed='null'}, Library{name='org.lwjgl:lwjgl-stb:3.3.1:natives-macos', rules=[Rule{action=ALLOW, os=OSRestriction{name=OSX, version='null'}, features=null}], natives=null, extract=null, packed='null'}, Library{name='org.lwjgl:lwjgl-stb:3.3.1:natives-macos-arm64', rules=[Rule{action=ALLOW, os=OSRestriction{name=OSX, version='null'}, features=null}], natives=null, extract=null, packed='null'}, Library{name='org.lwjgl:lwjgl-stb:3.3.1:natives-windows', rules=[Rule{action=ALLOW, os=OSRestriction{name=WINDOWS, version='null'}, features=null}], natives=null, extract=null, packed='null'}, Library{name='org.lwjgl:lwjgl-stb:3.3.1:natives-windows-arm64', rules=[Rule{action=ALLOW, os=OSRestriction{name=WINDOWS, version='null'}, features=null}], natives=null, extract=null, packed='null'}, Library{name='org.lwjgl:lwjgl-stb:3.3.1:natives-windows-x86', rules=[Rule{action=ALLOW, os=OSRestriction{name=WINDOWS, version='null'}, features=null}], natives=null, extract=null, packed='null'}, Library{name='org.lwjgl:lwjgl-tinyfd:3.3.1', rules=null, natives=null, extract=null, packed='null'}, Library{name='org.lwjgl:lwjgl-tinyfd:3.3.1:natives-linux', rules=[Rule{action=ALLOW, os=OSRestriction{name=LINUX, version='null'}, features=null}], natives=null, extract=null, packed='null'}, Library{name='org.lwjgl:lwjgl-tinyfd:3.3.1:natives-macos', rules=[Rule{action=ALLOW, os=OSRestriction{name=OSX, version='null'}, features=null}], natives=null, extract=null, packed='null'}, Library{name='org.lwjgl:lwjgl-tinyfd:3.3.1:natives-macos-arm64', rules=[Rule{action=ALLOW, os=OSRestriction{name=OSX, version='null'}, features=null}], natives=null, extract=null, packed='null'}, Library{name='org.lwjgl:lwjgl-tinyfd:3.3.1:natives-windows', rules=[Rule{action=ALLOW, os=OSRestriction{name=WINDOWS, version='null'}, features=null}], natives=null, extract=null, packed='null'}, Library{name='org.lwjgl:lwjgl-tinyfd:3.3.1:natives-windows-arm64', rules=[Rule{action=ALLOW, os=OSRestriction{name=WINDOWS, version='null'}, features=null}], natives=null, extract=null, packed='null'}, Library{name='org.lwjgl:lwjgl-tinyfd:3.3.1:natives-windows-x86', rules=[Rule{action=ALLOW, os=OSRestriction{name=WINDOWS, version='null'}, features=null}], natives=null, extract=null, packed='null'}, Library{name='org.lwjgl:lwjgl:3.3.1', rules=null, natives=null, extract=null, packed='null'}, Library{name='org.lwjgl:lwjgl:3.3.1:natives-linux', rules=[Rule{action=ALLOW, os=OSRestriction{name=LINUX, version='null'}, features=null}], natives=null, extract=null, packed='null'}, Library{name='org.lwjgl:lwjgl:3.3.1:natives-macos', rules=[Rule{action=ALLOW, os=OSRestriction{name=OSX, version='null'}, features=null}], natives=null, extract=null, packed='null'}, Library{name='org.lwjgl:lwjgl:3.3.1:natives-macos-arm64', rules=[Rule{action=ALLOW, os=OSRestriction{name=OSX, version='null'}, features=null}], natives=null, extract=null, packed='null'}, Library{name='org.lwjgl:lwjgl:3.3.1:natives-windows', rules=[Rule{action=ALLOW, os=OSRestriction{name=WINDOWS, version='null'}, features=null}], natives=null, extract=null, packed='null'}, Library{name='org.lwjgl:lwjgl:3.3.1:natives-windows-arm64', rules=[Rule{action=ALLOW, os=OSRestriction{name=WINDOWS, version='null'}, features=null}], natives=null, extract=null, packed='null'}, Library{name='org.lwjgl:lwjgl:3.3.1:natives-windows-x86', rules=[Rule{action=ALLOW, os=OSRestriction{name=WINDOWS, version='null'}, features=null}], natives=null, extract=null, packed='null'}, Library{name='org.slf4j:slf4j-api:2.0.1', rules=null, natives=null, extract=null, packed='null'}]}, remote=PartialVersion{id='Forge 1.20.1', time=Sun Jun 11 13:28:03 NOVT 2023, release=Sun Jun 11 13:28:03 NOVT 2023, type=modified, source=EXTRA_VERSION_REPO, list=net.minecraft.launcher.updater.ExtraVersionList@6f37b344}, isInstalled=true, hasRemote=true, isUpToDate=true} [Launcher] Checking conditions... [Launcher] resourcepacks:Quark Programmer Art.zip [Launcher] Comparing assets... [AssetsManager] Checking resources... [AssetsManager] Reading indexes from file C:\Users\clear\AppData\Roaming\.minecraft\assets\indexes\5.json [AssetsManager] Fast comparing: true [Launcher] finished comparing assets: 103 ms. [VersionManager] Required for version Forge 1.20.1: [] used default java runtime Minecraft requires java version: 17, java path: C:\Users\clear\AppData\Roaming\.minecraft\runtime\java-runtime-gamma\windows\java-runtime-gamma\bin\javaw.exe library will be replaced: com.mojang:authlib:4.0.43 -> org.tlauncher:authlib:4.0.43.1 library will be replaced: com.mojang:patchy:2.2.10 -> org.tlauncher:patchy:2.2.101 [Launcher] Unpacking natives... [Launcher] Constructing process... [Launcher] Constructing classpath... backup world is active: true [Launcher] Getting Minecraft arguments... [Launcher] Full command: C:\Users\clear\AppData\Roaming\.minecraft\runtime\java-runtime-gamma\windows\java-runtime-gamma\bin\javaw.exe -Dos.name=Windows 10 -Dos.version=10.0 -XX:HeapDumpPath=MojangTricksIntelDriversForPerformance_javaw.exe_minecraft.exe.heapdump -Xss1M -Djava.library.path=C:\Users\clear\AppData\Roaming\.minecraft\versions\Forge 1.20.1\natives -Djna.tmpdir=C:\Users\clear\AppData\Roaming\.minecraft\versions\Forge 1.20.1\natives -Dorg.lwjgl.system.SharedLibraryExtractPath=C:\Users\clear\AppData\Roaming\.minecraft\versions\Forge 1.20.1\natives -Dio.netty.native.workdir=C:\Users\clear\AppData\Roaming\.minecraft\versions\Forge 1.20.1\natives -Dminecraft.launcher.brand=minecraft-launcher -Dminecraft.launcher.version=2.3.173 -cp C:\Users\clear\AppData\Roaming\.minecraft\libraries\cpw\mods\securejarhandler\2.1.10\securejarhandler-2.1.10.jar;C:\Users\clear\AppData\Roaming\.minecraft\libraries\org\ow2\asm\asm\9.7.1\asm-9.7.1.jar;C:\Users\clear\AppData\Roaming\.minecraft\libraries\org\ow2\asm\asm-commons\9.7.1\asm-commons-9.7.1.jar;C:\Users\clear\AppData\Roaming\.minecraft\libraries\org\ow2\asm\asm-tree\9.7.1\asm-tree-9.7.1.jar;C:\Users\clear\AppData\Roaming\.minecraft\libraries\org\ow2\asm\asm-util\9.7.1\asm-util-9.7.1.jar;C:\Users\clear\AppData\Roaming\.minecraft\libraries\org\ow2\asm\asm-analysis\9.7.1\asm-analysis-9.7.1.jar;C:\Users\clear\AppData\Roaming\.minecraft\libraries\net\minecraftforge\accesstransformers\8.0.4\accesstransformers-8.0.4.jar;C:\Users\clear\AppData\Roaming\.minecraft\libraries\org\antlr\antlr4-runtime\4.9.1\antlr4-runtime-4.9.1.jar;C:\Users\clear\AppData\Roaming\.minecraft\libraries\net\minecraftforge\eventbus\6.0.5\eventbus-6.0.5.jar;C:\Users\clear\AppData\Roaming\.minecraft\libraries\net\minecraftforge\forgespi\7.0.1\forgespi-7.0.1.jar;C:\Users\clear\AppData\Roaming\.minecraft\libraries\net\minecraftforge\coremods\5.2.1\coremods-5.2.1.jar;C:\Users\clear\AppData\Roaming\.minecraft\libraries\cpw\mods\modlauncher\10.0.9\modlauncher-10.0.9.jar;C:\Users\clear\AppData\Roaming\.minecraft\libraries\net\minecraftforge\unsafe\0.2.0\unsafe-0.2.0.jar;C:\Users\clear\AppData\Roaming\.minecraft\libraries\net\minecraftforge\mergetool\1.1.5\mergetool-1.1.5-api.jar;C:\Users\clear\AppData\Roaming\.minecraft\libraries\com\electronwill\night-config\core\3.6.4\core-3.6.4.jar;C:\Users\clear\AppData\Roaming\.minecraft\libraries\com\electronwill\night-config\toml\3.6.4\toml-3.6.4.jar;C:\Users\clear\AppData\Roaming\.minecraft\libraries\org\apache\maven\maven-artifact\3.8.5\maven-artifact-3.8.5.jar;C:\Users\clear\AppData\Roaming\.minecraft\libraries\net\jodah\typetools\0.6.3\typetools-0.6.3.jar;C:\Users\clear\AppData\Roaming\.minecraft\libraries\net\minecrell\terminalconsoleappender\1.2.0\terminalconsoleappender-1.2.0.jar;C:\Users\clear\AppData\Roaming\.minecraft\libraries\org\jline\jline-reader\3.12.1\jline-reader-3.12.1.jar;C:\Users\clear\AppData\Roaming\.minecraft\libraries\org\jline\jline-terminal\3.12.1\jline-terminal-3.12.1.jar;C:\Users\clear\AppData\Roaming\.minecraft\libraries\org\spongepowered\mixin\0.8.5\mixin-0.8.5.jar;C:\Users\clear\AppData\Roaming\.minecraft\libraries\org\openjdk\nashorn\nashorn-core\15.4\nashorn-core-15.4.jar;C:\Users\clear\AppData\Roaming\.minecraft\libraries\net\minecraftforge\JarJarSelector\0.3.19\JarJarSelector-0.3.19.jar;C:\Users\clear\AppData\Roaming\.minecraft\libraries\net\minecraftforge\JarJarMetadata\0.3.19\JarJarMetadata-0.3.19.jar;C:\Users\clear\AppData\Roaming\.minecraft\libraries\cpw\mods\bootstraplauncher\1.1.2\bootstraplauncher-1.1.2.jar;C:\Users\clear\AppData\Roaming\.minecraft\libraries\net\minecraftforge\JarJarFileSystems\0.3.19\JarJarFileSystems-0.3.19.jar;C:\Users\clear\AppData\Roaming\.minecraft\libraries\net\minecraftforge\fmlloader\1.20.1-47.3.12\fmlloader-1.20.1-47.3.12.jar;C:\Users\clear\AppData\Roaming\.minecraft\libraries\net\minecraftforge\fmlearlydisplay\1.20.1-47.3.12\fmlearlydisplay-1.20.1-47.3.12.jar;C:\Users\clear\AppData\Roaming\.minecraft\libraries\com\github\oshi\oshi-core\6.2.2\oshi-core-6.2.2.jar;C:\Users\clear\AppData\Roaming\.minecraft\libraries\com\google\code\gson\gson\2.10\gson-2.10.jar;C:\Users\clear\AppData\Roaming\.minecraft\libraries\com\google\guava\failureaccess\1.0.1\failureaccess-1.0.1.jar;C:\Users\clear\AppData\Roaming\.minecraft\libraries\com\google\guava\guava\31.1-jre\guava-31.1-jre.jar;C:\Users\clear\AppData\Roaming\.minecraft\libraries\com\ibm\icu\icu4j\71.1\icu4j-71.1.jar;C:\Users\clear\AppData\Roaming\.minecraft\libraries\org\tlauncher\authlib\4.0.43.1\authlib-4.0.43.1.jar;C:\Users\clear\AppData\Roaming\.minecraft\libraries\com\mojang\blocklist\1.0.10\blocklist-1.0.10.jar;C:\Users\clear\AppData\Roaming\.minecraft\libraries\com\mojang\brigadier\1.1.8\brigadier-1.1.8.jar;C:\Users\clear\AppData\Roaming\.minecraft\libraries\com\mojang\datafixerupper\6.0.8\datafixerupper-6.0.8.jar;C:\Users\clear\AppData\Roaming\.minecraft\libraries\com\mojang\logging\1.1.1\logging-1.1.1.jar;C:\Users\clear\AppData\Roaming\.minecraft\libraries\org\tlauncher\patchy\2.2.101\patchy-2.2.101.jar;C:\Users\clear\AppData\Roaming\.minecraft\libraries\com\mojang\text2speech\1.17.9\text2speech-1.17.9.jar;C:\Users\clear\AppData\Roaming\.minecraft\libraries\commons-codec\commons-codec\1.15\commons-codec-1.15.jar;C:\Users\clear\AppData\Roaming\.minecraft\libraries\commons-io\commons-io\2.11.0\commons-io-2.11.0.jar;C:\Users\clear\AppData\Roaming\.minecraft\libraries\commons-logging\commons-logging\1.2\commons-logging-1.2.jar;C:\Users\clear\AppData\Roaming\.minecraft\libraries\io\netty\netty-buffer\4.1.82.Final\netty-buffer-4.1.82.Final.jar;C:\Users\clear\AppData\Roaming\.minecraft\libraries\io\netty\netty-codec\4.1.82.Final\netty-codec-4.1.82.Final.jar;C:\Users\clear\AppData\Roaming\.minecraft\libraries\io\netty\netty-common\4.1.82.Final\netty-common-4.1.82.Final.jar;C:\Users\clear\AppData\Roaming\.minecraft\libraries\io\netty\netty-handler\4.1.82.Final\netty-handler-4.1.82.Final.jar;C:\Users\clear\AppData\Roaming\.minecraft\libraries\io\netty\netty-resolver\4.1.82.Final\netty-resolver-4.1.82.Final.jar;C:\Users\clear\AppData\Roaming\.minecraft\libraries\io\netty\netty-transport-classes-epoll\4.1.82.Final\netty-transport-classes-epoll-4.1.82.Final.jar;C:\Users\clear\AppData\Roaming\.minecraft\libraries\io\netty\netty-transport-native-unix-common\4.1.82.Final\netty-transport-native-unix-common-4.1.82.Final.jar;C:\Users\clear\AppData\Roaming\.minecraft\libraries\io\netty\netty-transport\4.1.82.Final\netty-transport-4.1.82.Final.jar;C:\Users\clear\AppData\Roaming\.minecraft\libraries\it\unimi\dsi\fastutil\8.5.9\fastutil-8.5.9.jar;C:\Users\clear\AppData\Roaming\.minecraft\libraries\net\java\dev\jna\jna-platform\5.12.1\jna-platform-5.12.1.jar;C:\Users\clear\AppData\Roaming\.minecraft\libraries\net\java\dev\jna\jna\5.12.1\jna-5.12.1.jar;C:\Users\clear\AppData\Roaming\.minecraft\libraries\net\sf\jopt-simple\jopt-simple\5.0.4\jopt-simple-5.0.4.jar;C:\Users\clear\AppData\Roaming\.minecraft\libraries\org\apache\commons\commons-compress\1.21\commons-compress-1.21.jar;C:\Users\clear\AppData\Roaming\.minecraft\libraries\org\apache\commons\commons-lang3\3.12.0\commons-lang3-3.12.0.jar;C:\Users\clear\AppData\Roaming\.minecraft\libraries\org\apache\httpcomponents\httpclient\4.5.13\httpclient-4.5.13.jar;C:\Users\clear\AppData\Roaming\.minecraft\libraries\org\apache\httpcomponents\httpcore\4.4.15\httpcore-4.4.15.jar;C:\Users\clear\AppData\Roaming\.minecraft\libraries\org\apache\logging\log4j\log4j-api\2.19.0\log4j-api-2.19.0.jar;C:\Users\clear\AppData\Roaming\.minecraft\libraries\org\apache\logging\log4j\log4j-core\2.19.0\log4j-core-2.19.0.jar;C:\Users\clear\AppData\Roaming\.minecraft\libraries\org\apache\logging\log4j\log4j-slf4j2-impl\2.19.0\log4j-slf4j2-impl-2.19.0.jar;C:\Users\clear\AppData\Roaming\.minecraft\libraries\org\joml\joml\1.10.5\joml-1.10.5.jar;C:\Users\clear\AppData\Roaming\.minecraft\libraries\org\lwjgl\lwjgl-glfw\3.3.1\lwjgl-glfw-3.3.1.jar;C:\Users\clear\AppData\Roaming\.minecraft\libraries\org\lwjgl\lwjgl-glfw\3.3.1\lwjgl-glfw-3.3.1-natives-windows.jar;C:\Users\clear\AppData\Roaming\.minecraft\libraries\org\lwjgl\lwjgl-glfw\3.3.1\lwjgl-glfw-3.3.1-natives-windows-arm64.jar;C:\Users\clear\AppData\Roaming\.minecraft\libraries\org\lwjgl\lwjgl-glfw\3.3.1\lwjgl-glfw-3.3.1-natives-windows-x86.jar;C:\Users\clear\AppData\Roaming\.minecraft\libraries\org\lwjgl\lwjgl-jemalloc\3.3.1\lwjgl-jemalloc-3.3.1.jar;C:\Users\clear\AppData\Roaming\.minecraft\libraries\org\lwjgl\lwjgl-jemalloc\3.3.1\lwjgl-jemalloc-3.3.1-natives-windows.jar;C:\Users\clear\AppData\Roaming\.minecraft\libraries\org\lwjgl\lwjgl-jemalloc\3.3.1\lwjgl-jemalloc-3.3.1-natives-windows-arm64.jar;C:\Users\clear\AppData\Roaming\.minecraft\libraries\org\lwjgl\lwjgl-jemalloc\3.3.1\lwjgl-jemalloc-3.3.1-natives-windows-x86.jar;C:\Users\clear\AppData\Roaming\.minecraft\libraries\org\lwjgl\lwjgl-openal\3.3.1\lwjgl-openal-3.3.1.jar;C:\Users\clear\AppData\Roaming\.minecraft\libraries\org\lwjgl\lwjgl-openal\3.3.1\lwjgl-openal-3.3.1-natives-windows.jar;C:\Users\clear\AppData\Roaming\.minecraft\libraries\org\lwjgl\lwjgl-openal\3.3.1\lwjgl-openal-3.3.1-natives-windows-arm64.jar;C:\Users\clear\AppData\Roaming\.minecraft\libraries\org\lwjgl\lwjgl-openal\3.3.1\lwjgl-openal-3.3.1-natives-windows-x86.jar;C:\Users\clear\AppData\Roaming\.minecraft\libraries\org\lwjgl\lwjgl-opengl\3.3.1\lwjgl-opengl-3.3.1.jar;C:\Users\clear\AppData\Roaming\.minecraft\libraries\org\lwjgl\lwjgl-opengl\3.3.1\lwjgl-opengl-3.3.1-natives-windows.jar;C:\Users\clear\AppData\Roaming\.minecraft\libraries\org\lwjgl\lwjgl-opengl\3.3.1\lwjgl-opengl-3.3.1-natives-windows-arm64.jar;C:\Users\clear\AppData\Roaming\.minecraft\libraries\org\lwjgl\lwjgl-opengl\3.3.1\lwjgl-opengl-3.3.1-natives-windows-x86.jar;C:\Users\clear\AppData\Roaming\.minecraft\libraries\org\lwjgl\lwjgl-stb\3.3.1\lwjgl-stb-3.3.1.jar;C:\Users\clear\AppData\Roaming\.minecraft\libraries\org\lwjgl\lwjgl-stb\3.3.1\lwjgl-stb-3.3.1-natives-windows.jar;C:\Users\clear\AppData\Roaming\.minecraft\libraries\org\lwjgl\lwjgl-stb\3.3.1\lwjgl-stb-3.3.1-natives-windows-arm64.jar;C:\Users\clear\AppData\Roaming\.minecraft\libraries\org\lwjgl\lwjgl-stb\3.3.1\lwjgl-stb-3.3.1-natives-windows-x86.jar;C:\Users\clear\AppData\Roaming\.minecraft\libraries\org\lwjgl\lwjgl-tinyfd\3.3.1\lwjgl-tinyfd-3.3.1.jar;C:\Users\clear\AppData\Roaming\.minecraft\libraries\org\lwjgl\lwjgl-tinyfd\3.3.1\lwjgl-tinyfd-3.3.1-natives-windows.jar;C:\Users\clear\AppData\Roaming\.minecraft\libraries\org\lwjgl\lwjgl-tinyfd\3.3.1\lwjgl-tinyfd-3.3.1-natives-windows-arm64.jar;C:\Users\clear\AppData\Roaming\.minecraft\libraries\org\lwjgl\lwjgl-tinyfd\3.3.1\lwjgl-tinyfd-3.3.1-natives-windows-x86.jar;C:\Users\clear\AppData\Roaming\.minecraft\libraries\org\lwjgl\lwjgl\3.3.1\lwjgl-3.3.1.jar;C:\Users\clear\AppData\Roaming\.minecraft\libraries\org\lwjgl\lwjgl\3.3.1\lwjgl-3.3.1-natives-windows.jar;C:\Users\clear\AppData\Roaming\.minecraft\libraries\org\lwjgl\lwjgl\3.3.1\lwjgl-3.3.1-natives-windows-arm64.jar;C:\Users\clear\AppData\Roaming\.minecraft\libraries\org\lwjgl\lwjgl\3.3.1\lwjgl-3.3.1-natives-windows-x86.jar;C:\Users\clear\AppData\Roaming\.minecraft\libraries\org\slf4j\slf4j-api\2.0.1\slf4j-api-2.0.1.jar;C:\Users\clear\AppData\Roaming\.minecraft\versions\Forge 1.20.1\Forge 1.20.1.jar -Djava.net.preferIPv6Addresses=system -DignoreList=bootstraplauncher,securejarhandler,asm-commons,asm-util,asm-analysis,asm-tree,asm,JarJarFileSystems,client-extra,fmlcore,javafmllanguage,lowcodelanguage,mclanguage,forge-,Forge 1.20.1.jar -DmergeModules=jna-5.10.0.jar,jna-platform-5.10.0.jar -DlibraryDirectory=C:\Users\clear\AppData\Roaming\.minecraft\libraries -p C:\Users\clear\AppData\Roaming\.minecraft\libraries/cpw/mods/bootstraplauncher/1.1.2/bootstraplauncher-1.1.2.jar;C:\Users\clear\AppData\Roaming\.minecraft\libraries/cpw/mods/securejarhandler/2.1.10/securejarhandler-2.1.10.jar;C:\Users\clear\AppData\Roaming\.minecraft\libraries/org/ow2/asm/asm-commons/9.7.1/asm-commons-9.7.1.jar;C:\Users\clear\AppData\Roaming\.minecraft\libraries/org/ow2/asm/asm-util/9.7.1/asm-util-9.7.1.jar;C:\Users\clear\AppData\Roaming\.minecraft\libraries/org/ow2/asm/asm-analysis/9.7.1/asm-analysis-9.7.1.jar;C:\Users\clear\AppData\Roaming\.minecraft\libraries/org/ow2/asm/asm-tree/9.7.1/asm-tree-9.7.1.jar;C:\Users\clear\AppData\Roaming\.minecraft\libraries/org/ow2/asm/asm/9.7.1/asm-9.7.1.jar;C:\Users\clear\AppData\Roaming\.minecraft\libraries/net/minecraftforge/JarJarFileSystems/0.3.19/JarJarFileSystems-0.3.19.jar --add-modules ALL-MODULE-PATH --add-opens java.base/java.util.jar=cpw.mods.securejarhandler --add-opens java.base/java.lang.invoke=cpw.mods.securejarhandler --add-exports java.base/sun.security.util=cpw.mods.securejarhandler --add-exports jdk.naming.dns/com.sun.jndi.dns=java.naming -Xmx21796M -XX:+UnlockExperimentalVMOptions -XX:+UseG1GC -XX:G1NewSizePercent=20 -XX:G1ReservePercent=20 -XX:MaxGCPauseMillis=50 -XX:G1HeapRegionSize=32M -Dfml.ignoreInvalidMinecraftCertificates=true -Dfml.ignorePatchDiscrepancies=true -Djava.net.preferIPv4Stack=true -Dminecraft.applet.TargetDirectory=C:\Users\clear\AppData\Roaming\.minecraft -DlibraryDirectory=C:\Users\clear\AppData\Roaming\.minecraft\libraries -Dlog4j.configurationFile=C:\Users\clear\AppData\Roaming\.minecraft\assets\log_configs\client-1.12.xml cpw.mods.bootstraplauncher.BootstrapLauncher --username Klirov --version Forge 1.20.1 --gameDir C:\Users\clear\AppData\Roaming\.minecraft --assetsDir C:\Users\clear\AppData\Roaming\.minecraft\assets --assetIndex 5 --uuid 1f8060b9-5132-11e9-bfea-002590a1379b --accessToken null --clientId null --xuid null --userType mojang --versionType modified --width 1920 --height 1080 --launchTarget forgeclient --fml.forgeVersion 47.3.12 --fml.mcVersion 1.20.1 --fml.forgeGroup net.minecraftforge --fml.mcpVersion 20230612.114412 --fullscreen [Launcher] Launching Minecraft... mods after C:\Users\clear\AppData\Roaming\.minecraft\mods\1.20.1 Crystalcraft Unlimited Trims, Twinklestar, Silk touch and Fortune Update.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\AdditionalEnchantedMiner-1.20.1-1201.1.90.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\aiotbotania-1.20.1-4.0.5.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\alexsmobs-1.22.9.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\AoA3-1.20.1-3.7.1-all.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\Aquaculture-1.20.1-2.5.3.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\architectury-9.2.14-forge.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\ars_nouveau-1.20.1-4.12.6-all.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\artifacts-forge-9.5.13.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\athena-forge-1.20.1-3.1.2.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\autumnity-1.20.1-5.0.1.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\awesomedungeon-forge-1.20.1-3.2.0.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\awesomedungeonend-forge-1.20.1-3.1.1.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\awesomedungeonnether-forge-1.20.1-3.1.1.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\awesomedungeonocean-forge-1.20.1-3.3.0.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\balm-forge-1.20.1-7.3.10-all.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\benched-1.2.2a-forge-mc1.20.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\bendy-lib-forge-4.0.0.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\BetterAnimationsCollection-v8.0.0-1.20.1-Forge.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\bettervillage-forge-1.20.1-3.2.0.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\BiomesOPlenty-forge-1.20.1-19.0.0.91.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\blockui-1.20.1-1.0.186-beta.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\blueprint-1.20.1-7.1.0.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\Bookshelf-Forge-1.20.1-20.2.13.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\Botania-1.20.1-446-FORGE.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\BotanyPots-Forge-1.20.1-13.0.40.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\BotanyPotsOrePlanting-Forge-7.22.0+1.20.1.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\BotanyTrees-Forge-1.20.1-9.0.18.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\Bountiful-6.0.4+1.20.1-forge.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\Byzantine-1.21.1-23.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\car-forge-1.20.1-1.0.34.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\carryon-forge-1.20.1-2.1.2.7.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\catalogue-forge-1.20.1-1.8.0.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\chipped-forge-1.20.1-3.0.7.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\chisels-and-bits-forge-1.4.148.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\christmascolonies-1.8-1.20.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\chunkloaders-1.2.8a-forge-mc1.20.1.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\citadel-2.6.1-1.20.1.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\cloth-config-11.1.136-forge.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\collective-1.20.1-7.87.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\compact-storage-1.20.1-forge-6.0.1.70.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\ConfigurableCane-1.20-2.5.2.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\configured-forge-1.20.1-2.2.3.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\connectedglass-1.1.12-forge-mc1.20.1.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\connectivity-1.20.1-6.1.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\Controlling-forge-1.20.1-12.0.2.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\cookingforblockheads-forge-1.20.1-16.0.9.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\cosmeticarmorreworked-1.20.1-v1a.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\crafttag1.20.2.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\crittersandcompanions-forge-2.2.2.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\Cucumber-1.20.1-7.0.13.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\cupboard-1.20.1-2.7.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\curios-forge-5.11.0+1.20.1.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\DarkPaintings-Forge-1.20.1-17.0.4.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\DireColonies-3.1.0.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\domum_ornamentum-1.20.1-1.0.282-snapshot-universal.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\doorknockerforge-1.3.0.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\doubledoors-1.20.1-5.9.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\DramaticDoors-QuiFabrge-1.20.1-3.2.8.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\emotecraft-for-MC1.20.1-2.2.7-b.build.50-forge.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\expore-1.20.1-0.3.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\FallingTree-1.20.1-4.3.4.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\farmingforblockheads-forge-1.20.1-14.0.2.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\ferritecore-6.0.1-forge.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\Forgiveness-1.20.1-1.4.0-forge.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\framework-forge-1.20.1-0.7.12.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\fusion-1.1.1-forge-mc1.20.1.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\geckolib-forge-1.20.1-4.4.9.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\gemsnjewels-1.20.1-1.3.5.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\glassential-renewed-forge-1.20.1-2.4.2.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\GlitchCore-forge-1.20.1-0.0.1.1.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\HammerLib-1.20.1-20.1.33.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\hole_filler_mod-1.2.8_mc-1.20.1_forge.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\immersive_paintings-0.6.7+1.20.1-forge.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\ImprovableSkills-1.20.1-20.1.11.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\inventoryhud.forge.1.20.1-3.4.26.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\inventorysorter-1.20.1-23.0.8.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\Jade-1.20.1-Forge-11.12.2.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\JadeColonies-1.20.1-1.4.2.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\jei-1.20.1-forge-15.20.0.105.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\journeymap-1.20.1-5.10.3-forge.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\JustOutdoorStuffs-1.20.1-forge-v1.0.2.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\justzoom_forge_2.0.0_MC_1.20.1.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\Kambrik-6.1.1+1.20.1-forge.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\konkrete_forge_1.8.0_MC_1.20-1.20.1.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\kotlinforforge-4.11.0-all.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\libraryferret-forge-1.20.1-4.0.0.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\LibX-1.20.1-5.0.12.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\ManyIdeasCore-1.20.1-1.4.2.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\ManyIdeasDoors-1.20.1-1.2.3.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\matc-1.6.0.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\mcw-bridges-3.0.0-mc1.20.1forge.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\mcw-doors-1.1.1forge-mc1.20.1.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\mcw-fences-1.1.2-mc1.20.1forge.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\mcw-holidays-1.1.0-mc1.20.1forge.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\mcw-lights-1.1.0-mc1.20.1forge.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\mcw-paintings-1.0.5-1.20.1forge.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\mcw-paths-1.0.5-1.20.1forge.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\mcw-stairs-1.0.0-1.20.1forge.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\mcw-trapdoors-1.1.4-mc1.20.1forge.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\mcw-windows-2.3.0-mc1.20.1forge.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\memoryleakfix-forge-1.17+-1.0.0.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\minecolonies-1.20.1-1.1.783-snapshot.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\miningmaster-1.20.1-4.1.3.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\moreconcrete-1.4.7-1.20.1.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\MouseTweaks-forge-mc1.20.1-2.25.1.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\movingelevators-1.4.7-forge-mc1.20.1.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\multipiston-1.20-1.2.43-RELEASE.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\MysticalAdaptations-1.20.1-1.0.1.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\MysticalAgradditions-1.20.1-7.0.6.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\MysticalAgriculture-1.20.1-7.0.14.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\MysticalCustomization-1.20.1-5.0.2.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\MysticalExpansion-1.20.1-1.0.0.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\MythicBotany-1.20.1-4.0.3.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\nether-s-exoticism-1.20.1-1.2.9.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\oculus-mc1.20.1-1.8.0.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\online-emotes-2.1.2-forge.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\pamhc2crops-1.20-1.0.3.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\pamhc2foodcore-1.20.4-1.0.5.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\pamhc2foodextended-1.20.4-1.0.1.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\pamhc2trees-1.20-1.0.2.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\Patchouli-1.20.1-84-FORGE.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\phantasm-0.4.2.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\player-animation-lib-forge-1.0.2-rc1+1.20.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\polymorph-forge-0.49.8+1.20.1.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\PortableCraftingTable-1.20.1-3.2.2-[FORGE].jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\Powah-5.0.7.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\puffish_skills-0.14.3-1.20-forge.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\PuzzlesLib-v8.1.25-1.20.1-Forge.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\Quark-4.0-460.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\rebind_narrator-forge-1.20.1-2.0.2.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\rechiseled-1.1.6-forge-mc1.20.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\rechiseled_chipped-1.1.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\RecipesLibrary-1.20.1-2.0.1.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\refurbished_furniture-forge-1.20.1-1.0.8.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\RegionsUnexploredForge-0.5.6+1.20.1.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\resourcefullib-forge-1.20.1-2.1.29.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\RGB Blocks-1.20.1-1.1.9.1.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\right-click-harvest-3.2.3+1.20.1-forge.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\rubidium-0.6.5.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\ScalableCatsForce-3.3.1-build-0-with-library.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\ScalingHealth-1.20.1-8.0.2+9.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\Searchables-forge-1.20.1-1.0.3.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\seasonhud-forge-1.20.1-1.11.5.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\SereneSeasons-forge-1.20.1-9.1.0.0.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\sereneseasonsphc2crops-1.20.1-1.0.0.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\silent-lib-1.20.1-8.0.0.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\simplemagnets-1.1.12-forge-mc1.20.1.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\sit-1.20.1-1.3.5.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\stackrefill-1.20.1-4.5.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\Structory_1.20.x_v1.3.5.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\structurize-1.20.1-1.0.763-snapshot.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\stylecolonies-1.11-1.20.1.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\supermartijn642configlib-1.1.8-forge-mc1.20.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\supermartijn642corelib-1.1.17a-forge-mc1.20.1.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\supertools-1.1.1-1.20.1.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\tectonic-forge-1.20.1-2.4.1.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\tectonic_tweak-1.1.0.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\TerraBlender-forge-1.20.1-3.0.1.7.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\Terralith_1.20.x_v2.5.4.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\The_Undergarden-1.20.1-0.8.14.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\tl_skin_cape_forge_1.20_1.20.1-1.32.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\toweringtownscape-1.4-1.20.1.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\towntalk-1.20.1-1.1.0.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\trashcans-1.0.18b-forge-mc1.20.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\twilightforest-1.20.1-4.3.2508-universal.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\upgrade_aquatic-1.20.1-6.0.1.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\worldedit-mod-7.2.15.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\YungsApi-1.20-Forge-4.0.6.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\YungsBetterMineshafts-1.20-Forge-4.0.4.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\Zeta-1.0-24.jar, C:\Users\clear\AppData\Roaming\.minecraft\mods\[1.20.1]MoreCraftingTables-5.1.3.jar [InnerMinecraftServersImpl]  search changers of the servers read servers from servers.dat [] [InnerMinecraftServersImpl]  prepare inner servers save servers to servers.dat [Launcher] Game skin type: TLAUNCHER [Launcher] Starting Minecraft Forge 1.20.1... [Launcher] Launching in: C:\Users\clear\AppData\Roaming\.minecraft Starting garbage collector: 130 / 174 MB Garbage collector completed: 53 / 174 MB [Launcher] Processing post-launch actions. Assist launch: true =============================================================================================== [21:53:78] [main/INFO]: ModLauncher running: args [--username, Klirov, --version, Forge 1.20.1, --gameDir, C:\Users\clear\AppData\Roaming\.minecraft, --assetsDir, C:\Users\clear\AppData\Roaming\.minecraft\assets, --assetIndex, 5, --uuid, 1f8060b9-5132-11e9-bfea-002590a1379b, --accessToken, вќ„вќ„вќ„вќ„вќ„вќ„вќ„вќ„, --clientId, null, --xuid, null, --userType, mojang, --versionType, modified, --width, 1920, --height, 1080, --launchTarget, forgeclient, --fml.forgeVersion, 47.3.12, --fml.mcVersion, 1.20.1, --fml.forgeGroup, net.minecraftforge, --fml.mcpVersion, 20230612.114412, --fullscreen] [21:53:79] [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 [21:53:40] [main/INFO]: Loading ImmediateWindowProvider fmlearlywindow [21:53:46] [main/INFO]: Trying GL version 4.6 [21:53:63] [main/INFO]: Requested GL version 4.6 got version 4.6 [21:53:70] [main/INFO]: SpongePowered MIXIN Subsystem Version=0.8.5 Source=union:/C:/Users/clear/AppData/Roaming/.minecraft/libraries/org/spongepowered/mixin/0.8.5/mixin-0.8.5.jar%23100!/ Service=ModLauncher Env=CLIENT [21:53:81] [pool-2-thread-1/INFO]: GL info: NVIDIA GeForce RTX 4060/PCIe/SSE2 GL version 4.6.0 NVIDIA 566.36, NVIDIA Corporation [21:53:41] [main/INFO]: Found mod file 1.20.1 Crystalcraft Unlimited Trims, Twinklestar, Silk touch and Fortune Update.jar of type MOD with provider {mods folder locator at C:\Users\clear\AppData\Roaming\.minecraft\mods} [21:53:41] [main/INFO]: Found mod file [1.20.1]MoreCraftingTables-5.1.3.jar of type MOD with provider {mods folder locator at C:\Users\clear\AppData\Roaming\.minecraft\mods} [21:53:41] [main/INFO]: Found mod file AdditionalEnchantedMiner-1.20.1-1201.1.90.jar of type MOD with provider {mods folder locator at C:\Users\clear\AppData\Roaming\.minecraft\mods} [21:53:41] [main/INFO]: Found mod file aiotbotania-1.20.1-4.0.5.jar of type MOD with provider {mods folder locator at C:\Users\clear\AppData\Roaming\.minecraft\mods} [21:53:41] [main/INFO]: Found mod file alexsmobs-1.22.9.jar of type MOD with provider {mods folder locator at C:\Users\clear\AppData\Roaming\.minecraft\mods} [21:53:41] [main/INFO]: Found mod file AoA3-1.20.1-3.7.1-all.jar of type MOD with provider {mods folder locator at C:\Users\clear\AppData\Roaming\.minecraft\mods} [21:53:41] [main/INFO]: Found mod file Aquaculture-1.20.1-2.5.3.jar of type MOD with provider {mods folder locator at C:\Users\clear\AppData\Roaming\.minecraft\mods} [21:53:41] [main/INFO]: Found mod file architectury-9.2.14-forge.jar of type MOD with provider {mods folder locator at C:\Users\clear\AppData\Roaming\.minecraft\mods} [21:53:41] [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:\Users\clear\AppData\Roaming\.minecraft\mods} [21:53:41] [main/INFO]: Found mod file artifacts-forge-9.5.13.jar of type MOD with provider {mods folder locator at C:\Users\clear\AppData\Roaming\.minecraft\mods} [21:53:41] [main/INFO]: Found mod file athena-forge-1.20.1-3.1.2.jar of type MOD with provider {mods folder locator at C:\Users\clear\AppData\Roaming\.minecraft\mods} [21:53:41] [main/INFO]: Found mod file autumnity-1.20.1-5.0.1.jar of type MOD with provider {mods folder locator at C:\Users\clear\AppData\Roaming\.minecraft\mods} [21:53:41] [main/INFO]: Found mod file awesomedungeon-forge-1.20.1-3.2.0.jar of type MOD with provider {mods folder locator at C:\Users\clear\AppData\Roaming\.minecraft\mods} [21:53:41] [main/INFO]: Found mod file awesomedungeonend-forge-1.20.1-3.1.1.jar of type MOD with provider {mods folder locator at C:\Users\clear\AppData\Roaming\.minecraft\mods} [21:53:41] [main/INFO]: Found mod file awesomedungeonnether-forge-1.20.1-3.1.1.jar of type MOD with provider {mods folder locator at C:\Users\clear\AppData\Roaming\.minecraft\mods} [21:53:41] [main/INFO]: Found mod file awesomedungeonocean-forge-1.20.1-3.3.0.jar of type MOD with provider {mods folder locator at C:\Users\clear\AppData\Roaming\.minecraft\mods} [21:53:41] [main/INFO]: Found mod file balm-forge-1.20.1-7.3.10-all.jar of type MOD with provider {mods folder locator at C:\Users\clear\AppData\Roaming\.minecraft\mods} [21:53:41] [main/INFO]: Found mod file benched-1.2.2a-forge-mc1.20.jar of type MOD with provider {mods folder locator at C:\Users\clear\AppData\Roaming\.minecraft\mods} [21:53:41] [main/INFO]: Found mod file bendy-lib-forge-4.0.0.jar of type MOD with provider {mods folder locator at C:\Users\clear\AppData\Roaming\.minecraft\mods} [21:53:41] [main/INFO]: Found mod file BetterAnimationsCollection-v8.0.0-1.20.1-Forge.jar of type MOD with provider {mods folder locator at C:\Users\clear\AppData\Roaming\.minecraft\mods} [21:53:41] [main/INFO]: Found mod file bettervillage-forge-1.20.1-3.2.0.jar of type MOD with provider {mods folder locator at C:\Users\clear\AppData\Roaming\.minecraft\mods} [21:53:41] [main/INFO]: Found mod file BiomesOPlenty-forge-1.20.1-19.0.0.91.jar of type MOD with provider {mods folder locator at C:\Users\clear\AppData\Roaming\.minecraft\mods} [21:53:41] [main/INFO]: Found mod file blockui-1.20.1-1.0.186-beta.jar of type MOD with provider {mods folder locator at C:\Users\clear\AppData\Roaming\.minecraft\mods} [21:53:41] [main/INFO]: Found mod file blueprint-1.20.1-7.1.0.jar of type MOD with provider {mods folder locator at C:\Users\clear\AppData\Roaming\.minecraft\mods} [21:53:41] [main/INFO]: Found mod file Bookshelf-Forge-1.20.1-20.2.13.jar of type MOD with provider {mods folder locator at C:\Users\clear\AppData\Roaming\.minecraft\mods} [21:53:41] [main/INFO]: Found mod file Botania-1.20.1-446-FORGE.jar of type MOD with provider {mods folder locator at C:\Users\clear\AppData\Roaming\.minecraft\mods} [21:53:41] [main/INFO]: Found mod file BotanyPots-Forge-1.20.1-13.0.40.jar of type MOD with provider {mods folder locator at C:\Users\clear\AppData\Roaming\.minecraft\mods} [21:53:41] [main/INFO]: Found mod file BotanyPotsOrePlanting-Forge-7.22.0+1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\clear\AppData\Roaming\.minecraft\mods} [21:53:41] [main/INFO]: Found mod file BotanyTrees-Forge-1.20.1-9.0.18.jar of type MOD with provider {mods folder locator at C:\Users\clear\AppData\Roaming\.minecraft\mods} [21:53:41] [main/INFO]: Found mod file Bountiful-6.0.4+1.20.1-forge.jar of type MOD with provider {mods folder locator at C:\Users\clear\AppData\Roaming\.minecraft\mods} [21:53:41] [main/INFO]: Found mod file Byzantine-1.21.1-23.jar of type MOD with provider {mods folder locator at C:\Users\clear\AppData\Roaming\.minecraft\mods} [21:53:41] [main/INFO]: Found mod file car-forge-1.20.1-1.0.34.jar of type MOD with provider {mods folder locator at C:\Users\clear\AppData\Roaming\.minecraft\mods} [21:53:41] [main/INFO]: Found mod file carryon-forge-1.20.1-2.1.2.7.jar of type MOD with provider {mods folder locator at C:\Users\clear\AppData\Roaming\.minecraft\mods} [21:53:41] [main/INFO]: Found mod file catalogue-forge-1.20.1-1.8.0.jar of type MOD with provider {mods folder locator at C:\Users\clear\AppData\Roaming\.minecraft\mods} [21:53:41] [main/INFO]: Found mod file chipped-forge-1.20.1-3.0.7.jar of type MOD with provider {mods folder locator at C:\Users\clear\AppData\Roaming\.minecraft\mods} [21:53:41] [main/INFO]: Found mod file chisels-and-bits-forge-1.4.148.jar of type MOD with provider {mods folder locator at C:\Users\clear\AppData\Roaming\.minecraft\mods} [21:53:41] [main/INFO]: Found mod file christmascolonies-1.8-1.20.jar of type MOD with provider {mods folder locator at C:\Users\clear\AppData\Roaming\.minecraft\mods} [21:53:41] [main/INFO]: Found mod file chunkloaders-1.2.8a-forge-mc1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\clear\AppData\Roaming\.minecraft\mods} [21:53:41] [main/INFO]: Found mod file citadel-2.6.1-1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\clear\AppData\Roaming\.minecraft\mods} [21:53:41] [main/INFO]: Found mod file cloth-config-11.1.136-forge.jar of type MOD with provider {mods folder locator at C:\Users\clear\AppData\Roaming\.minecraft\mods} [21:53:41] [main/INFO]: Found mod file collective-1.20.1-7.87.jar of type MOD with provider {mods folder locator at C:\Users\clear\AppData\Roaming\.minecraft\mods} [21:53:41] [main/INFO]: Found mod file compact-storage-1.20.1-forge-6.0.1.70.jar of type MOD with provider {mods folder locator at C:\Users\clear\AppData\Roaming\.minecraft\mods} [21:53:42] [main/INFO]: Found mod file ConfigurableCane-1.20-2.5.2.jar of type MOD with provider {mods folder locator at C:\Users\clear\AppData\Roaming\.minecraft\mods} [21:53:42] [main/INFO]: Found mod file configured-forge-1.20.1-2.2.3.jar of type MOD with provider {mods folder locator at C:\Users\clear\AppData\Roaming\.minecraft\mods} [21:53:42] [main/INFO]: Found mod file connectedglass-1.1.12-forge-mc1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\clear\AppData\Roaming\.minecraft\mods} [21:53:42] [main/INFO]: Found mod file connectivity-1.20.1-6.1.jar of type MOD with provider {mods folder locator at C:\Users\clear\AppData\Roaming\.minecraft\mods} [21:53:42] [main/INFO]: Found mod file Controlling-forge-1.20.1-12.0.2.jar of type MOD with provider {mods folder locator at C:\Users\clear\AppData\Roaming\.minecraft\mods} [21:53:42] [main/INFO]: Found mod file cookingforblockheads-forge-1.20.1-16.0.9.jar of type MOD with provider {mods folder locator at C:\Users\clear\AppData\Roaming\.minecraft\mods} [21:53:42] [main/INFO]: Found mod file cosmeticarmorreworked-1.20.1-v1a.jar of type MOD with provider {mods folder locator at C:\Users\clear\AppData\Roaming\.minecraft\mods} [21:53:42] [main/INFO]: Found mod file crafttag1.20.2.jar of type MOD with provider {mods folder locator at C:\Users\clear\AppData\Roaming\.minecraft\mods} [21:53:42] [main/INFO]: Found mod file crittersandcompanions-forge-2.2.2.jar of type MOD with provider {mods folder locator at C:\Users\clear\AppData\Roaming\.minecraft\mods} [21:53:42] [main/INFO]: Found mod file Cucumber-1.20.1-7.0.13.jar of type MOD with provider {mods folder locator at C:\Users\clear\AppData\Roaming\.minecraft\mods} [21:53:42] [main/INFO]: Found mod file cupboard-1.20.1-2.7.jar of type MOD with provider {mods folder locator at C:\Users\clear\AppData\Roaming\.minecraft\mods} [21:53:42] [main/INFO]: Found mod file curios-forge-5.11.0+1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\clear\AppData\Roaming\.minecraft\mods} [21:53:42] [main/INFO]: Found mod file DarkPaintings-Forge-1.20.1-17.0.4.jar of type MOD with provider {mods folder locator at C:\Users\clear\AppData\Roaming\.minecraft\mods} [21:53:42] [main/INFO]: Found mod file DireColonies-3.1.0.jar of type MOD with provider {mods folder locator at C:\Users\clear\AppData\Roaming\.minecraft\mods} [21:53:42] [main/INFO]: Found mod file domum_ornamentum-1.20.1-1.0.282-snapshot-universal.jar of type MOD with provider {mods folder locator at C:\Users\clear\AppData\Roaming\.minecraft\mods} [21:53:42] [main/INFO]: Found mod file doorknockerforge-1.3.0.jar of type MOD with provider {mods folder locator at C:\Users\clear\AppData\Roaming\.minecraft\mods} [21:53:42] [main/INFO]: Found mod file doubledoors-1.20.1-5.9.jar of type MOD with provider {mods folder locator at C:\Users\clear\AppData\Roaming\.minecraft\mods} [21:53:42] [main/INFO]: Found mod file DramaticDoors-QuiFabrge-1.20.1-3.2.8.jar of type MOD with provider {mods folder locator at C:\Users\clear\AppData\Roaming\.minecraft\mods} [21:53:42] [main/INFO]: Found mod file emotecraft-for-MC1.20.1-2.2.7-b.build.50-forge.jar of type MOD with provider {mods folder locator at C:\Users\clear\AppData\Roaming\.minecraft\mods} [21:53:42] [main/INFO]: Found mod file expore-1.20.1-0.3.jar of type MOD with provider {mods folder locator at C:\Users\clear\AppData\Roaming\.minecraft\mods} [21:53:42] [main/INFO]: Found mod file FallingTree-1.20.1-4.3.4.jar of type MOD with provider {mods folder locator at C:\Users\clear\AppData\Roaming\.minecraft\mods} [21:53:42] [main/INFO]: Found mod file farmingforblockheads-forge-1.20.1-14.0.2.jar of type MOD with provider {mods folder locator at C:\Users\clear\AppData\Roaming\.minecraft\mods} [21:53:42] [main/INFO]: Found mod file ferritecore-6.0.1-forge.jar of type MOD with provider {mods folder locator at C:\Users\clear\AppData\Roaming\.minecraft\mods} [21:53:42] [main/INFO]: Found mod file Forgiveness-1.20.1-1.4.0-forge.jar of type MOD with provider {mods folder locator at C:\Users\clear\AppData\Roaming\.minecraft\mods} [21:53:42] [main/INFO]: Found mod file framework-forge-1.20.1-0.7.12.jar of type MOD with provider {mods folder locator at C:\Users\clear\AppData\Roaming\.minecraft\mods} [21:53:42] [main/INFO]: Found mod file fusion-1.1.1-forge-mc1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\clear\AppData\Roaming\.minecraft\mods} [21:53:42] [main/INFO]: Found mod file geckolib-forge-1.20.1-4.4.9.jar of type MOD with provider {mods folder locator at C:\Users\clear\AppData\Roaming\.minecraft\mods} [21:53:42] [main/INFO]: Found mod file gemsnjewels-1.20.1-1.3.5.jar of type MOD with provider {mods folder locator at C:\Users\clear\AppData\Roaming\.minecraft\mods} [21:53:42] [main/INFO]: Found mod file glassential-renewed-forge-1.20.1-2.4.2.jar of type MOD with provider {mods folder locator at C:\Users\clear\AppData\Roaming\.minecraft\mods} [21:53:42] [main/INFO]: Found mod file GlitchCore-forge-1.20.1-0.0.1.1.jar of type MOD with provider {mods folder locator at C:\Users\clear\AppData\Roaming\.minecraft\mods} [21:53:42] [main/INFO]: Found mod file HammerLib-1.20.1-20.1.33.jar of type MOD with provider {mods folder locator at C:\Users\clear\AppData\Roaming\.minecraft\mods} [21:53:42] [main/INFO]: Found mod file hole_filler_mod-1.2.8_mc-1.20.1_forge.jar of type MOD with provider {mods folder locator at C:\Users\clear\AppData\Roaming\.minecraft\mods} [21:53:42] [main/INFO]: Found mod file immersive_paintings-0.6.7+1.20.1-forge.jar of type MOD with provider {mods folder locator at C:\Users\clear\AppData\Roaming\.minecraft\mods} [21:53:42] [main/INFO]: Found mod file ImprovableSkills-1.20.1-20.1.11.jar of type MOD with provider {mods folder locator at C:\Users\clear\AppData\Roaming\.minecraft\mods} [21:53:42] [main/INFO]: Found mod file inventoryhud.forge.1.20.1-3.4.26.jar of type MOD with provider {mods folder locator at C:\Users\clear\AppData\Roaming\.minecraft\mods} [21:53:42] [main/INFO]: Found mod file inventorysorter-1.20.1-23.0.8.jar of type MOD with provider {mods folder locator at C:\Users\clear\AppData\Roaming\.minecraft\mods} [21:53:42] [main/INFO]: Found mod file Jade-1.20.1-Forge-11.12.2.jar of type MOD with provider {mods folder locator at C:\Users\clear\AppData\Roaming\.minecraft\mods} [21:53:42] [main/INFO]: Found mod file JadeColonies-1.20.1-1.4.2.jar of type MOD with provider {mods folder locator at C:\Users\clear\AppData\Roaming\.minecraft\mods} [21:53:42] [main/INFO]: Found mod file jei-1.20.1-forge-15.20.0.105.jar of type MOD with provider {mods folder locator at C:\Users\clear\AppData\Roaming\.minecraft\mods} [21:53:42] [main/INFO]: Found mod file journeymap-1.20.1-5.10.3-forge.jar of type MOD with provider {mods folder locator at C:\Users\clear\AppData\Roaming\.minecraft\mods} [21:53:42] [main/INFO]: Found mod file JustOutdoorStuffs-1.20.1-forge-v1.0.2.jar of type MOD with provider {mods folder locator at C:\Users\clear\AppData\Roaming\.minecraft\mods} [21:53:42] [main/INFO]: Found mod file justzoom_forge_2.0.0_MC_1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\clear\AppData\Roaming\.minecraft\mods} [21:53:42] [main/INFO]: Found mod file Kambrik-6.1.1+1.20.1-forge.jar of type MOD with provider {mods folder locator at C:\Users\clear\AppData\Roaming\.minecraft\mods} [21:53:42] [main/INFO]: Found mod file konkrete_forge_1.8.0_MC_1.20-1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\clear\AppData\Roaming\.minecraft\mods} [21:53:42] [main/INFO]: Found mod file kotlinforforge-4.11.0-all.jar of type LIBRARY with provider {mods folder locator at C:\Users\clear\AppData\Roaming\.minecraft\mods} [21:53:42] [main/INFO]: Found mod file libraryferret-forge-1.20.1-4.0.0.jar of type MOD with provider {mods folder locator at C:\Users\clear\AppData\Roaming\.minecraft\mods} [21:53:42] [main/INFO]: Found mod file LibX-1.20.1-5.0.12.jar of type MOD with provider {mods folder locator at C:\Users\clear\AppData\Roaming\.minecraft\mods} [21:53:42] [main/INFO]: Found mod file ManyIdeasCore-1.20.1-1.4.2.jar of type MOD with provider {mods folder locator at C:\Users\clear\AppData\Roaming\.minecraft\mods} [21:53:42] [main/INFO]: Found mod file ManyIdeasDoors-1.20.1-1.2.3.jar of type MOD with provider {mods folder locator at C:\Users\clear\AppData\Roaming\.minecraft\mods} [21:53:42] [main/INFO]: Found mod file matc-1.6.0.jar of type MOD with provider {mods folder locator at C:\Users\clear\AppData\Roaming\.minecraft\mods} [21:53:42] [main/INFO]: Found mod file mcw-bridges-3.0.0-mc1.20.1forge.jar of type MOD with provider {mods folder locator at C:\Users\clear\AppData\Roaming\.minecraft\mods} [21:53:42] [main/INFO]: Found mod file mcw-doors-1.1.1forge-mc1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\clear\AppData\Roaming\.minecraft\mods} [21:53:42] [main/INFO]: Found mod file mcw-fences-1.1.2-mc1.20.1forge.jar of type MOD with provider {mods folder locator at C:\Users\clear\AppData\Roaming\.minecraft\mods} [21:53:42] [main/INFO]: Found mod file mcw-holidays-1.1.0-mc1.20.1forge.jar of type MOD with provider {mods folder locator at C:\Users\clear\AppData\Roaming\.minecraft\mods} [21:53:42] [main/INFO]: Found mod file mcw-lights-1.1.0-mc1.20.1forge.jar of type MOD with provider {mods folder locator at C:\Users\clear\AppData\Roaming\.minecraft\mods} [21:53:42] [main/INFO]: Found mod file mcw-paintings-1.0.5-1.20.1forge.jar of type MOD with provider {mods folder locator at C:\Users\clear\AppData\Roaming\.minecraft\mods} [21:53:42] [main/INFO]: Found mod file mcw-paths-1.0.5-1.20.1forge.jar of type MOD with provider {mods folder locator at C:\Users\clear\AppData\Roaming\.minecraft\mods} [21:53:42] [main/INFO]: Found mod file mcw-stairs-1.0.0-1.20.1forge.jar of type MOD with provider {mods folder locator at C:\Users\clear\AppData\Roaming\.minecraft\mods} [21:53:42] [main/INFO]: Found mod file mcw-trapdoors-1.1.4-mc1.20.1forge.jar of type MOD with provider {mods folder locator at C:\Users\clear\AppData\Roaming\.minecraft\mods} [21:53:42] [main/INFO]: Found mod file mcw-windows-2.3.0-mc1.20.1forge.jar of type MOD with provider {mods folder locator at C:\Users\clear\AppData\Roaming\.minecraft\mods} [21:53:42] [main/INFO]: Found mod file memoryleakfix-forge-1.17+-1.0.0.jar of type MOD with provider {mods folder locator at C:\Users\clear\AppData\Roaming\.minecraft\mods} [21:53:42] [main/INFO]: Found mod file minecolonies-1.20.1-1.1.783-snapshot.jar of type MOD with provider {mods folder locator at C:\Users\clear\AppData\Roaming\.minecraft\mods} [21:53:42] [main/INFO]: Found mod file miningmaster-1.20.1-4.1.3.jar of type MOD with provider {mods folder locator at C:\Users\clear\AppData\Roaming\.minecraft\mods} [21:53:42] [main/INFO]: Found mod file moreconcrete-1.4.7-1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\clear\AppData\Roaming\.minecraft\mods} [21:53:42] [main/INFO]: Found mod file MouseTweaks-forge-mc1.20.1-2.25.1.jar of type MOD with provider {mods folder locator at C:\Users\clear\AppData\Roaming\.minecraft\mods} [21:53:42] [main/INFO]: Found mod file movingelevators-1.4.7-forge-mc1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\clear\AppData\Roaming\.minecraft\mods} [21:53:42] [main/INFO]: Found mod file multipiston-1.20-1.2.43-RELEASE.jar of type MOD with provider {mods folder locator at C:\Users\clear\AppData\Roaming\.minecraft\mods} [21:53:42] [main/INFO]: Found mod file MysticalAdaptations-1.20.1-1.0.1.jar of type MOD with provider {mods folder locator at C:\Users\clear\AppData\Roaming\.minecraft\mods} [21:53:42] [main/INFO]: Found mod file MysticalAgradditions-1.20.1-7.0.6.jar of type MOD with provider {mods folder locator at C:\Users\clear\AppData\Roaming\.minecraft\mods} [21:53:42] [main/INFO]: Found mod file MysticalAgriculture-1.20.1-7.0.14.jar of type MOD with provider {mods folder locator at C:\Users\clear\AppData\Roaming\.minecraft\mods} [21:53:42] [main/INFO]: Found mod file MysticalCustomization-1.20.1-5.0.2.jar of type MOD with provider {mods folder locator at C:\Users\clear\AppData\Roaming\.minecraft\mods} [21:53:42] [main/INFO]: Found mod file MysticalExpansion-1.20.1-1.0.0.jar of type MOD with provider {mods folder locator at C:\Users\clear\AppData\Roaming\.minecraft\mods} [21:53:42] [main/INFO]: Found mod file MythicBotany-1.20.1-4.0.3.jar of type MOD with provider {mods folder locator at C:\Users\clear\AppData\Roaming\.minecraft\mods} [21:53:42] [main/INFO]: Found mod file nether-s-exoticism-1.20.1-1.2.9.jar of type MOD with provider {mods folder locator at C:\Users\clear\AppData\Roaming\.minecraft\mods} [21:53:42] [main/INFO]: Found mod file oculus-mc1.20.1-1.8.0.jar of type MOD with provider {mods folder locator at C:\Users\clear\AppData\Roaming\.minecraft\mods} [21:53:42] [main/INFO]: Found mod file online-emotes-2.1.2-forge.jar of type MOD with provider {mods folder locator at C:\Users\clear\AppData\Roaming\.minecraft\mods} [21:53:42] [main/INFO]: Found mod file pamhc2crops-1.20-1.0.3.jar of type MOD with provider {mods folder locator at C:\Users\clear\AppData\Roaming\.minecraft\mods} [21:53:42] [main/INFO]: Found mod file pamhc2foodcore-1.20.4-1.0.5.jar of type MOD with provider {mods folder locator at C:\Users\clear\AppData\Roaming\.minecraft\mods} [21:53:42] [main/INFO]: Found mod file pamhc2foodextended-1.20.4-1.0.1.jar of type MOD with provider {mods folder locator at C:\Users\clear\AppData\Roaming\.minecraft\mods} [21:53:43] [main/INFO]: Found mod file pamhc2trees-1.20-1.0.2.jar of type MOD with provider {mods folder locator at C:\Users\clear\AppData\Roaming\.minecraft\mods} [21:53:43] [main/INFO]: Found mod file Patchouli-1.20.1-84-FORGE.jar of type MOD with provider {mods folder locator at C:\Users\clear\AppData\Roaming\.minecraft\mods} [21:53:43] [main/INFO]: Found mod file phantasm-0.4.2.jar of type MOD with provider {mods folder locator at C:\Users\clear\AppData\Roaming\.minecraft\mods} [21:53:43] [main/INFO]: Found mod file player-animation-lib-forge-1.0.2-rc1+1.20.jar of type MOD with provider {mods folder locator at C:\Users\clear\AppData\Roaming\.minecraft\mods} [21:53:43] [main/INFO]: Found mod file polymorph-forge-0.49.8+1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\clear\AppData\Roaming\.minecraft\mods} [21:53:43] [main/INFO]: Found mod file PortableCraftingTable-1.20.1-3.2.2-[FORGE].jar of type MOD with provider {mods folder locator at C:\Users\clear\AppData\Roaming\.minecraft\mods} [21:53:43] [main/INFO]: Found mod file Powah-5.0.7.jar of type MOD with provider {mods folder locator at C:\Users\clear\AppData\Roaming\.minecraft\mods} [21:53:43] [main/INFO]: Found mod file puffish_skills-0.14.3-1.20-forge.jar of type MOD with provider {mods folder locator at C:\Users\clear\AppData\Roaming\.minecraft\mods} [21:53:43] [main/INFO]: Found mod file PuzzlesLib-v8.1.25-1.20.1-Forge.jar of type MOD with provider {mods folder locator at C:\Users\clear\AppData\Roaming\.minecraft\mods} [21:53:43] [main/INFO]: Found mod file Quark-4.0-460.jar of type MOD with provider {mods folder locator at C:\Users\clear\AppData\Roaming\.minecraft\mods} [21:53:43] [main/INFO]: Found mod file rebind_narrator-forge-1.20.1-2.0.2.jar of type MOD with provider {mods folder locator at C:\Users\clear\AppData\Roaming\.minecraft\mods} [21:53:43] [main/INFO]: Found mod file rechiseled-1.1.6-forge-mc1.20.jar of type MOD with provider {mods folder locator at C:\Users\clear\AppData\Roaming\.minecraft\mods} [21:53:43] [main/INFO]: Found mod file rechiseled_chipped-1.1.jar of type MOD with provider {mods folder locator at C:\Users\clear\AppData\Roaming\.minecraft\mods} [21:53:43] [main/INFO]: Found mod file RecipesLibrary-1.20.1-2.0.1.jar of type MOD with provider {mods folder locator at C:\Users\clear\AppData\Roaming\.minecraft\mods} [21:53:43] [main/INFO]: Found mod file refurbished_furniture-forge-1.20.1-1.0.8.jar of type MOD with provider {mods folder locator at C:\Users\clear\AppData\Roaming\.minecraft\mods} [21:53:43] [main/INFO]: Found mod file RegionsUnexploredForge-0.5.6+1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\clear\AppData\Roaming\.minecraft\mods} [21:53:43] [main/INFO]: Found mod file resourcefullib-forge-1.20.1-2.1.29.jar of type MOD with provider {mods folder locator at C:\Users\clear\AppData\Roaming\.minecraft\mods} [21:53:43] [main/INFO]: Found mod file RGB Blocks-1.20.1-1.1.9.1.jar of type MOD with provider {mods folder locator at C:\Users\clear\AppData\Roaming\.minecraft\mods} [21:53:43] [main/INFO]: Found mod file right-click-harvest-3.2.3+1.20.1-forge.jar of type MOD with provider {mods folder locator at C:\Users\clear\AppData\Roaming\.minecraft\mods} [21:53:43] [main/INFO]: Found mod file rubidium-0.6.5.jar of type MOD with provider {mods folder locator at C:\Users\clear\AppData\Roaming\.minecraft\mods} [21:53:43] [main/INFO]: Found mod file ScalableCatsForce-3.3.1-build-0-with-library.jar of type LANGPROVIDER with provider {mods folder locator at C:\Users\clear\AppData\Roaming\.minecraft\mods} [21:53:43] [main/INFO]: Found mod file ScalingHealth-1.20.1-8.0.2+9.jar of type MOD with provider {mods folder locator at C:\Users\clear\AppData\Roaming\.minecraft\mods} [21:53:43] [main/INFO]: Found mod file Searchables-forge-1.20.1-1.0.3.jar of type MOD with provider {mods folder locator at C:\Users\clear\AppData\Roaming\.minecraft\mods} [21:53:43] [main/INFO]: Found mod file seasonhud-forge-1.20.1-1.11.5.jar of type MOD with provider {mods folder locator at C:\Users\clear\AppData\Roaming\.minecraft\mods} [21:53:43] [main/INFO]: Found mod file SereneSeasons-forge-1.20.1-9.1.0.0.jar of type MOD with provider {mods folder locator at C:\Users\clear\AppData\Roaming\.minecraft\mods} [21:53:43] [main/INFO]: Found mod file sereneseasonsphc2crops-1.20.1-1.0.0.jar of type MOD with provider {mods folder locator at C:\Users\clear\AppData\Roaming\.minecraft\mods} [21:53:43] [main/INFO]: Found mod file silent-lib-1.20.1-8.0.0.jar of type MOD with provider {mods folder locator at C:\Users\clear\AppData\Roaming\.minecraft\mods} [21:53:43] [main/INFO]: Found mod file simplemagnets-1.1.12-forge-mc1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\clear\AppData\Roaming\.minecraft\mods} [21:53:43] [main/INFO]: Found mod file sit-1.20.1-1.3.5.jar of type MOD with provider {mods folder locator at C:\Users\clear\AppData\Roaming\.minecraft\mods} [21:53:43] [main/INFO]: Found mod file stackrefill-1.20.1-4.5.jar of type MOD with provider {mods folder locator at C:\Users\clear\AppData\Roaming\.minecraft\mods} [21:53:43] [main/INFO]: Found mod file Structory_1.20.x_v1.3.5.jar of type MOD with provider {mods folder locator at C:\Users\clear\AppData\Roaming\.minecraft\mods} [21:53:43] [main/INFO]: Found mod file structurize-1.20.1-1.0.763-snapshot.jar of type MOD with provider {mods folder locator at C:\Users\clear\AppData\Roaming\.minecraft\mods} [21:53:43] [main/INFO]: Found mod file stylecolonies-1.11-1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\clear\AppData\Roaming\.minecraft\mods} [21:53:43] [main/INFO]: Found mod file supermartijn642configlib-1.1.8-forge-mc1.20.jar of type MOD with provider {mods folder locator at C:\Users\clear\AppData\Roaming\.minecraft\mods} [21:53:43] [main/INFO]: Found mod file supermartijn642corelib-1.1.17a-forge-mc1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\clear\AppData\Roaming\.minecraft\mods} [21:53:43] [main/INFO]: Found mod file supertools-1.1.1-1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\clear\AppData\Roaming\.minecraft\mods} [21:53:43] [main/INFO]: Found mod file tectonic-forge-1.20.1-2.4.1.jar of type MOD with provider {mods folder locator at C:\Users\clear\AppData\Roaming\.minecraft\mods} [21:53:43] [main/INFO]: Found mod file tectonic_tweak-1.1.0.jar of type MOD with provider {mods folder locator at C:\Users\clear\AppData\Roaming\.minecraft\mods} [21:53:43] [main/INFO]: Found mod file TerraBlender-forge-1.20.1-3.0.1.7.jar of type MOD with provider {mods folder locator at C:\Users\clear\AppData\Roaming\.minecraft\mods} [21:53:43] [main/INFO]: Found mod file Terralith_1.20.x_v2.5.4.jar of type MOD with provider {mods folder locator at C:\Users\clear\AppData\Roaming\.minecraft\mods} [21:53:43] [main/INFO]: Found mod file The_Undergarden-1.20.1-0.8.14.jar of type MOD with provider {mods folder locator at C:\Users\clear\AppData\Roaming\.minecraft\mods} [21:53:43] [main/INFO]: Found mod file tl_skin_cape_forge_1.20_1.20.1-1.32.jar of type MOD with provider {mods folder locator at C:\Users\clear\AppData\Roaming\.minecraft\mods} [21:53:43] [main/INFO]: Found mod file toweringtownscape-1.4-1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\clear\AppData\Roaming\.minecraft\mods} [21:53:43] [main/INFO]: Found mod file towntalk-1.20.1-1.1.0.jar of type MOD with provider {mods folder locator at C:\Users\clear\AppData\Roaming\.minecraft\mods} [21:53:43] [main/INFO]: Found mod file trashcans-1.0.18b-forge-mc1.20.jar of type MOD with provider {mods folder locator at C:\Users\clear\AppData\Roaming\.minecraft\mods} [21:53:43] [main/INFO]: Found mod file twilightforest-1.20.1-4.3.2508-universal.jar of type MOD with provider {mods folder locator at C:\Users\clear\AppData\Roaming\.minecraft\mods} [21:53:43] [main/INFO]: Found mod file upgrade_aquatic-1.20.1-6.0.1.jar of type MOD with provider {mods folder locator at C:\Users\clear\AppData\Roaming\.minecraft\mods} [21:53:43] [main/INFO]: Found mod file worldedit-mod-7.2.15.jar of type MOD with provider {mods folder locator at C:\Users\clear\AppData\Roaming\.minecraft\mods} [21:53:43] [main/INFO]: Found mod file YungsApi-1.20-Forge-4.0.6.jar of type MOD with provider {mods folder locator at C:\Users\clear\AppData\Roaming\.minecraft\mods} [21:53:43] [main/INFO]: Found mod file YungsBetterMineshafts-1.20-Forge-4.0.4.jar of type MOD with provider {mods folder locator at C:\Users\clear\AppData\Roaming\.minecraft\mods} [21:53:43] [main/INFO]: Found mod file Zeta-1.0-24.jar of type MOD with provider {mods folder locator at C:\Users\clear\AppData\Roaming\.minecraft\mods} [21:53:51] [main/WARN]: Mod file C:\Users\clear\AppData\Roaming\.minecraft\libraries\net\minecraftforge\fmlcore\1.20.1-47.3.12\fmlcore-1.20.1-47.3.12.jar is missing mods.toml file [21:53:51] [main/WARN]: Mod file C:\Users\clear\AppData\Roaming\.minecraft\libraries\net\minecraftforge\javafmllanguage\1.20.1-47.3.12\javafmllanguage-1.20.1-47.3.12.jar is missing mods.toml file [21:53:51] [main/WARN]: Mod file C:\Users\clear\AppData\Roaming\.minecraft\libraries\net\minecraftforge\lowcodelanguage\1.20.1-47.3.12\lowcodelanguage-1.20.1-47.3.12.jar is missing mods.toml file [21:53:52] [main/WARN]: Mod file C:\Users\clear\AppData\Roaming\.minecraft\libraries\net\minecraftforge\mclanguage\1.20.1-47.3.12\mclanguage-1.20.1-47.3.12.jar is missing mods.toml file [21:53:53] [main/INFO]: Found mod file fmlcore-1.20.1-47.3.12.jar of type LIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.MinecraftLocator@7c6189d5 [21:53:53] [main/INFO]: Found mod file javafmllanguage-1.20.1-47.3.12.jar of type LANGPROVIDER with provider net.minecraftforge.fml.loading.moddiscovery.MinecraftLocator@7c6189d5 [21:53:53] [main/INFO]: Found mod file lowcodelanguage-1.20.1-47.3.12.jar of type LANGPROVIDER with provider net.minecraftforge.fml.loading.moddiscovery.MinecraftLocator@7c6189d5 [21:53:53] [main/INFO]: Found mod file mclanguage-1.20.1-47.3.12.jar of type LANGPROVIDER with provider net.minecraftforge.fml.loading.moddiscovery.MinecraftLocator@7c6189d5 [21:53:53] [main/INFO]: Found mod file client-1.20.1-20230612.114412-srg.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.MinecraftLocator@7c6189d5 [21:53:53] [main/INFO]: Found mod file forge-1.20.1-47.3.12-universal.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.MinecraftLocator@7c6189d5 [21:53:84] [main/WARN]: Attempted to select two dependency jars from JarJar which have the same identification: Mod File:  and Mod File: . Using Mod File:  [21:53:84] [main/WARN]: Attempted to select two dependency jars from JarJar which have the same identification: Mod File:  and Mod File: . Using Mod File:  [21:53:85] [main/WARN]: Attempted to select a dependency jar for JarJar which was passed in as source: geckolib. Using Mod File: C:\Users\clear\AppData\Roaming\.minecraft\mods\geckolib-forge-1.20.1-4.4.9.jar [21:53:85] [main/INFO]: Found 21 dependencies adding them to mods collection [21:53:85] [main/INFO]: Found mod file SmartBrainLib-neoforge-1.20.1-1.13.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@21bd20ee [21:53:85] [main/INFO]: Found mod file kuma-api-forge-20.1.9-SNAPSHOT.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@21bd20ee [21:53:85] [main/INFO]: Found mod file mixinextras-forge-0.2.0-beta.8.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@21bd20ee [21:53:85] [main/INFO]: Found mod file MinecraftForgeAPI-1.20.1-1.0.0.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@21bd20ee [21:53:85] [main/INFO]: Found mod file yabn-1.0.3.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@21bd20ee [21:53:85] [main/INFO]: Found mod file kfflang-4.11.0.jar of type LANGPROVIDER with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@21bd20ee [21:53:85] [main/INFO]: Found mod file scena-forge-1.0.103.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@21bd20ee [21:53:85] [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@21bd20ee [21:53:85] [main/INFO]: Found mod file netty-codec-http-4.1.82.Final.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@21bd20ee [21:53:85] [main/INFO]: Found mod file mclib-20.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@21bd20ee [21:53:85] [main/INFO]: Found mod file saecularia-caudices-forge-1.0.23.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@21bd20ee [21:53:85] [main/INFO]: Found mod file puzzlesaccessapi-forge-8.0.7.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@21bd20ee [21:53:85] [main/INFO]: Found mod file MixinExtras-0.3.5.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@21bd20ee [21:53:85] [main/INFO]: Found mod file kfflib-4.11.0.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@21bd20ee [21:53:85] [main/INFO]: Found mod file kffmod-4.11.0.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@21bd20ee [21:53:85] [main/INFO]: Found mod file lz4-pure-java-1.8.0.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@21bd20ee [21:53:85] [main/INFO]: Found mod file expandability-forge-9.0.4.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@21bd20ee [21:53:85] [main/INFO]: Found mod file bytecodecs-1.0.2.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@21bd20ee [21:53:85] [main/INFO]: Found mod file hsqldb-2.7.2.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@21bd20ee [21:53:85] [main/INFO]: Found mod file TslatEffectsLib-neoforge-1.20.1-1.7.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@21bd20ee [21:53:85] [main/INFO]: Found mod file jcpp-1.4.14.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@21bd20ee [21:53:77] [main/INFO]: Compatibility level set to JAVA_17 [21:53:03] [main/INFO]: Successfully loaded Mixin Connector [org.tlauncher.MixinConnector] [21:53:03] [main/INFO]: Successfully loaded Mixin Connector [de.maxhenkel.car.MixinConnector] [21:53:03] [main/INFO]: Launching target 'forgeclient' with arguments [--version, Forge 1.20.1, --gameDir, C:\Users\clear\AppData\Roaming\.minecraft, --assetsDir, C:\Users\clear\AppData\Roaming\.minecraft\assets, --uuid, 1f8060b9-5132-11e9-bfea-002590a1379b, --username, Klirov, --assetIndex, 5, --accessToken, вќ„вќ„вќ„вќ„вќ„вќ„вќ„вќ„, --clientId, null, --xuid, null, --userType, mojang, --versionType, modified, --width, 1920, --height, 1080, --fullscreen] [21:53:08] [main/WARN]: Mod 'oculus' attempted to override option 'mixin.features.render.gui.font', which doesn't exist, ignoring [21:53:08] [main/WARN]: Mod 'oculus' attempted to override option 'mixin.features.render.entity', which doesn't exist, ignoring [21:53:08] [main/WARN]: Mod 'oculus' attempted to override option 'mixin.features.render.world.sky', which doesn't exist, ignoring [21:53:08] [main/INFO]: Loaded configuration file for Rubidium: 31 options available, 0 override(s) found [21:53:09] [main/WARN]: Reference map 'cookingforblockheads.refmap.json' for cookingforblockheads.mixins.json could not be read. If this is a development environment you can ignore this message [21:53:36] [main/WARN]: Reference map 'rechiseledchipped.refmap.json' for rechiseled_chipped.mixins.json could not be read. If this is a development environment you can ignore this message [21:53:46] [main/WARN]: Reference map 'online-emotes-forge-refmap.json' for online-emotes.mixins.json could not be read. If this is a development environment you can ignore this message [21:53:57] [main/WARN]: Reference map 'immersive_paintings-common-refmap.json' for immersive_paintings.mixin.json could not be read. If this is a development environment you can ignore this message [21:53:66] [main/INFO]: Loading 181 mods:     - aiotbotania 1.20.1-4.0.5     - alexsmobs 1.22.9     - aoa3 3.7.1         |-- smartbrainlib 1.13         \-- tslateffectslib 1.7     - aquaculture 2.5.3     - architectury 9.2.14     - ars_nouveau 4.12.6         \-- mixinextras 0.2.0-beta.8     - artifacts 9.5.13         \-- expandability 9.0.4     - athena 3.1.2     - autumnity 5.0.1     - awesomedungeon 3.2.0     - awesomedungeonend 3.1.1     - awesomedungeonnether 3.1.1     - awesomedungeonocean 3.3.0     - balm 7.3.10         \-- kuma_api 20.1.9-SNAPSHOT     - benched 1.2.2a     - bendylib 4.0.0     - betteranimationscollection 8.0.0     - bettermineshafts 1.20-Forge-4.0.4     - bettervillage 3.2.0     - biomesoplenty 19.0.0.91     - blockui 1.20.1-1.0.186-beta     - blueprint 7.1.0     - bookshelf 20.2.13     - botania 1.20.1-446-FORGE     - botany_pots_ore_planting 7.22.0     - botanypots 13.0.40     - botanytrees 9.0.18     - bountiful 6.0.4+1.20.1     - byzantine 23     - car 1.20.1-1.0.34     - carryon 2.1.2.7     - catalogue 1.8.0     - chipped 3.0.7     - chiselsandbits 1.4.148         \-- scena 1.0.103     - christmascolonies 1.8     - chunkloaders 1.2.8a     - citadel 2.6.1     - cloth_config 11.1.136     - collective 7.87     - compact_storage 6.0.1.70     - configurablecane 2.5.2     - configured 2.2.3     - connectedglass 1.1.12     - connectivity 1.20.1-6.1     - controlling 12.0.2     - cookingforblockheads 16.0.9     - cosmeticarmorreworked 1.20.1-v1a     - craftable_nametags 1.0.0     - crittersandcompanions 2.2.2     - crystalcraft_unlimited_java 1.0.0     - cucumber 7.0.13     - cupboard 1.20.1-2.7     - curios 5.11.0+1.20.1     - darkpaintings 17.0.4     - direcolonies 3.1.0     - domum_ornamentum 1.20.1-1.0.282-snapshot     - doorknockerforge 1.3.0     - doubledoors 5.9     - dramaticdoors 1.20.1-3.2.8     - emotecraft 2.2.7-b.build.50     - expore 1.20.1-0.3     - fallingtree 4.3.4     - farmingforblockheads 14.0.2     - ferritecore 6.0.1     - forge 47.3.12     - forgiveness 1.4.0     - framework 0.7.12     - fusion 1.1.1     - geckolib 4.4.9     - gemsnjewels 0.1.0     - glassential 2.4.2     - glitchcore 0.0.1.1     - hammerlib 20.1.33     - hole_filler_mod 1.2.8     - immersive_paintings 0.6.7+1.20.1     - improvableskills 20.1.11     - inventoryhud 3.4.26     - inventorysorter 23.0.8     - jade 11.12.2+forge     - jadecolonies 1.4.2     - jei 15.20.0.105     - journeymap 5.10.3     - justoutdoorstuffs 1.0.2-1.20.1     - justzoom 2.0.0     - kambrik 6.1.1+1.20.1     - konkrete 1.8.0     - kotlinforforge 4.11.0     - libraryferret 4.0.0     - libx 1.20.1-5.0.12     - manyideas_core 1.4.2     - manyideas_doors 1.2.3     - matc 1.6.0     - mctb 1.20.1     - mcwbridges 3.0.0     - mcwdoors 1.1.1     - mcwfences 1.1.2     - mcwholidays 1.1.0     - mcwlights 1.1.0     - mcwpaintings 1.0.5     - mcwpaths 1.0.5     - mcwstairs 1.0.0     - mcwtrpdoors 1.1.4     - mcwwindows 2.3.0     - memoryleakfix 1.0.0     - minecolonies 1.20.1-1.1.783-snapshot     - minecraft 1.20.1     - miningmaster 4.1.3     - moreconcrete 1.4.7     - mousetweaks 2.25.1     - movingelevators 1.4.7     - multipiston 1.20-1.2.43-RELEASE     - mysticaladaptations 1.20.1-1.0.1     - mysticalagradditions 7.0.6     - mysticalagriculture 7.0.14     - mysticalcustomization 5.0.2     - mysticalexpansion 1.0.0     - mythicbotany 1.20.1-4.0.3     - nethers_exoticism 1.2.9     - oculus 1.8.0     - online_emotes 2.1.2-forge     - pamhc2crops 1.0.3     - pamhc2foodcore 1.0.5     - pamhc2foodextended 0.0NONE     - pamhc2trees 1.0.2     - patchouli 1.20.1-84-FORGE     - phantasm 0.4.1     - playeranimator 1.0.2-rc1+1.20     - polymorph 0.49.8+1.20.1         \-- spectrelib 0.13.17+1.20.1     - portablecraftingtable 3.2.2-[FORGE]     - powah 5.0.7     - puffish_skills 0.14.3     - puzzleslib 8.1.25         \-- puzzlesaccessapi 8.0.7     - quark 4.0-460     - quarryplus 1201.1.90     - rebind_narrator 2.0.2     - rechiseled 1.1.6     - rechiseled_chipped 1.1     - recipes_lib 2.0.1     - refurbished_furniture 1.0.8     - regions_unexplored 0.5.6     - resourcefullib 2.1.29     - rgbblocks 1.20.1-1.1.9.1     - rightclickharvest 3.2.3+1.20.1-forge     - rubidium 0.6.5     - scalinghealth 8.0.2+9     - searchables 1.0.3     - seasonhud 1.11.5     - sereneseasons 9.1.0.0     - sereneseasonsphc2crops 1.20.1-1.0.0     - silentlib 8.0.0     - simplemagnets 1.1.12     - sit 1.3.5     - stackrefill 4.5     - structory 1.3.5     - structurize 1.20.1-1.0.763-snapshot     - stylecolonies 1.11     - supermartijn642configlib 1.1.8     - supermartijn642corelib 1.1.17+a     - supertools 1.1.1-1.20.1     - tectonic 2.4.1     - tectonic_tweak 1.1.0     - terrablender 3.0.1.7     - terralith 2.5.4     - tlskincape 1.32     - toweringtownscape 1.4-1.20.1     - towntalk 1.1.0     - trashcans 1.0.18b     - twilightforest 4.3.2508     - undergarden 0.8.14     - upgrade_aquatic 6.0.1     - worldedit 7.2.15+6463-5ca4dff     - yungsapi 1.20-Forge-4.0.6     - zeta 1.0-24 [21:53:68] [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 [ImprovableSkills]: Patching ItemStack.hurtAndBreak [21:53:27] [main/WARN]: Error loading class: dev/latvian/mods/kubejs/recipe/RecipesEventJS (java.lang.ClassNotFoundException: dev.latvian.mods.kubejs.recipe.RecipesEventJS) [21:53:27] [main/WARN]: @Mixin target dev.latvian.mods.kubejs.recipe.RecipesEventJS was not found mixins.hammerlib.json:bs.kubejs.RecipeEventJSMixin [21:53:86] [main/WARN]: Error loading class: jeresources/api/util/LootConditionHelper (java.lang.ClassNotFoundException: jeresources.api.util.LootConditionHelper) [21:53:86] [main/WARN]: @Mixin target jeresources.api.util.LootConditionHelper was not found mixins.improvableskills.json:jer.LootConditionHelperMixin [21:53:95] [main/WARN]: Error loading class: mekanism/client/render/entity/RenderFlame (java.lang.ClassNotFoundException: mekanism.client.render.entity.RenderFlame) [21:53:95] [main/WARN]: Error loading class: mekanism/client/render/armor/MekaSuitArmor (java.lang.ClassNotFoundException: mekanism.client.render.armor.MekaSuitArmor) [21:53:00] [main/WARN]: Error loading class: me/jellysquid/mods/sodium/client/render/chunk/compile/tasks/ChunkBuilderMeshingTask (java.lang.ClassNotFoundException: me.jellysquid.mods.sodium.client.render.chunk.compile.tasks.ChunkBuilderMeshingTask) [21:53:00] [main/WARN]: @Mixin target me.jellysquid.mods.sodium.client.render.chunk.compile.tasks.ChunkBuilderMeshingTask was not found mixins.oculus.compat.sodium.json:block_id.MixinChunkRenderRebuildTask [21:53:01] [main/WARN]: Error loading class: me/jellysquid/mods/sodium/client/render/chunk/vertex/builder/ChunkMeshBufferBuilder (java.lang.ClassNotFoundException: me.jellysquid.mods.sodium.client.render.chunk.vertex.builder.ChunkMeshBufferBuilder) [21:53:01] [main/WARN]: @Mixin target me.jellysquid.mods.sodium.client.render.chunk.vertex.builder.ChunkMeshBufferBuilder was not found mixins.oculus.compat.sodium.json:block_id.MixinChunkVertexBufferBuilder [21:53:02] [main/WARN]: Error loading class: me/jellysquid/mods/sodium/client/render/chunk/compile/tasks/ChunkBuilderMeshingTask (java.lang.ClassNotFoundException: me.jellysquid.mods.sodium.client.render.chunk.compile.tasks.ChunkBuilderMeshingTask) [21:53:02] [main/WARN]: @Mixin target me.jellysquid.mods.sodium.client.render.chunk.compile.tasks.ChunkBuilderMeshingTask was not found mixins.oculus.compat.sodium.json:shader_overrides.MixinChunkBuilderMeshingTask [21:53:02] [main/WARN]: Error loading class: me/jellysquid/mods/sodium/client/render/chunk/DefaultChunkRenderer (java.lang.ClassNotFoundException: me.jellysquid.mods.sodium.client.render.chunk.DefaultChunkRenderer) [21:53:02] [main/WARN]: @Mixin target me.jellysquid.mods.sodium.client.render.chunk.DefaultChunkRenderer was not found mixins.oculus.compat.sodium.json:shader_overrides.MixinRegionChunkRenderer [21:53:02] [main/WARN]: Error loading class: me/jellysquid/mods/sodium/client/render/chunk/DefaultChunkRenderer (java.lang.ClassNotFoundException: me.jellysquid.mods.sodium.client.render.chunk.DefaultChunkRenderer) [21:53:02] [main/WARN]: @Mixin target me.jellysquid.mods.sodium.client.render.chunk.DefaultChunkRenderer was not found mixins.oculus.compat.sodium.json:shadow_map.MixinDefaultChunkRenderer [21:53:03] [main/WARN]: Error loading class: me/jellysquid/mods/sodium/client/render/chunk/vertex/format/ChunkMeshAttribute (java.lang.ClassNotFoundException: me.jellysquid.mods.sodium.client.render.chunk.vertex.format.ChunkMeshAttribute) [21:53:03] [main/WARN]: @Mixin target me.jellysquid.mods.sodium.client.render.chunk.vertex.format.ChunkMeshAttribute was not found mixins.oculus.compat.sodium.json:vertex_format.ChunkMeshAttributeAccessor [21:53:05] [main/WARN]: Error loading class: net/caffeinemc/mods/sodium/api/vertex/attributes/CommonVertexAttribute (java.lang.ClassNotFoundException: net.caffeinemc.mods.sodium.api.vertex.attributes.CommonVertexAttribute) [21:53:05] [main/WARN]: @Mixin target net.caffeinemc.mods.sodium.api.vertex.attributes.CommonVertexAttribute was not found mixins.oculus.compat.sodium.json:vertex_format.CommonVertexAttributeAccessor [21:53:05] [main/WARN]: Error loading class: me/jellysquid/mods/sodium/client/render/chunk/vertex/format/ChunkMeshAttribute (java.lang.ClassNotFoundException: me.jellysquid.mods.sodium.client.render.chunk.vertex.format.ChunkMeshAttribute) [21:53:05] [main/WARN]: @Mixin target me.jellysquid.mods.sodium.client.render.chunk.vertex.format.ChunkMeshAttribute was not found mixins.oculus.compat.sodium.json:vertex_format.MixinChunkMeshAttribute [21:53:06] [main/WARN]: Error loading class: net/caffeinemc/mods/sodium/api/vertex/attributes/CommonVertexAttribute (java.lang.ClassNotFoundException: net.caffeinemc.mods.sodium.api.vertex.attributes.CommonVertexAttribute) [21:53:06] [main/WARN]: @Mixin target net.caffeinemc.mods.sodium.api.vertex.attributes.CommonVertexAttribute was not found mixins.oculus.compat.sodium.json:vertex_format.MixinCommonVertexAttributes [21:53:06] [main/WARN]: Error loading class: me/jellysquid/mods/sodium/client/render/chunk/DefaultChunkRenderer (java.lang.ClassNotFoundException: me.jellysquid.mods.sodium.client.render.chunk.DefaultChunkRenderer) [21:53:06] [main/WARN]: @Mixin target me.jellysquid.mods.sodium.client.render.chunk.DefaultChunkRenderer was not found mixins.oculus.compat.sodium.json:vertex_format.MixinRegionChunkRenderer [21:53:06] [main/WARN]: Error loading class: me/jellysquid/mods/sodium/client/render/chunk/region/RenderRegion$DeviceResources (java.lang.ClassNotFoundException: me.jellysquid.mods.sodium.client.render.chunk.region.RenderRegion$DeviceResources) [21:53:06] [main/WARN]: @Mixin target me.jellysquid.mods.sodium.client.render.chunk.region.RenderRegion$DeviceResources was not found mixins.oculus.compat.sodium.json:vertex_format.MixinRenderRegionArenas [21:53:06] [main/WARN]: Error loading class: me/jellysquid/mods/sodium/client/render/vertex/buffer/SodiumBufferBuilder (java.lang.ClassNotFoundException: me.jellysquid.mods.sodium.client.render.vertex.buffer.SodiumBufferBuilder) [21:53:06] [main/WARN]: @Mixin target me.jellysquid.mods.sodium.client.render.vertex.buffer.SodiumBufferBuilder was not found mixins.oculus.compat.sodium.json:vertex_format.MixinSodiumBufferBuilder [21:53:06] [main/WARN]: Error loading class: me/jellysquid/mods/sodium/client/render/vertex/VertexFormatDescriptionImpl (java.lang.ClassNotFoundException: me.jellysquid.mods.sodium.client.render.vertex.VertexFormatDescriptionImpl) [21:53:06] [main/WARN]: @Mixin target me.jellysquid.mods.sodium.client.render.vertex.VertexFormatDescriptionImpl was not found mixins.oculus.compat.sodium.json:vertex_format.MixinVertexFormatDescriptionImpl [21:53:06] [main/WARN]: Error loading class: me/jellysquid/mods/sodium/client/render/vertex/serializers/VertexSerializerRegistryImpl (java.lang.ClassNotFoundException: me.jellysquid.mods.sodium.client.render.vertex.serializers.VertexSerializerRegistryImpl) [21:53:06] [main/WARN]: @Mixin target me.jellysquid.mods.sodium.client.render.vertex.serializers.VertexSerializerRegistryImpl was not found mixins.oculus.compat.sodium.json:vertex_format.MixinVertexSerializerCache [21:53:07] [main/WARN]: Error loading class: me/jellysquid/mods/sodium/client/render/chunk/vertex/format/ChunkMeshFormats (java.lang.ClassNotFoundException: me.jellysquid.mods.sodium.client.render.chunk.vertex.format.ChunkMeshFormats) [21:53:07] [main/WARN]: @Mixin target me.jellysquid.mods.sodium.client.render.chunk.vertex.format.ChunkMeshFormats was not found mixins.oculus.compat.sodium.json:vertex_format.MixinVertexTransform [21:53:07] [main/WARN]: Error loading class: me/jellysquid/mods/sodium/client/render/immediate/model/BakedModelEncoder (java.lang.ClassNotFoundException: me.jellysquid.mods.sodium.client.render.immediate.model.BakedModelEncoder) [21:53:07] [main/WARN]: @Mixin target me.jellysquid.mods.sodium.client.render.immediate.model.BakedModelEncoder was not found mixins.oculus.compat.sodium.json:vertex_format.entity.MixinModelVertex [21:53:58] [main/WARN]: Error loading class: noobanidus/mods/lootr/config/ConfigManager (java.lang.ClassNotFoundException: noobanidus.mods.lootr.config.ConfigManager) [21:53:68] [main/INFO]: [MemoryLeakFix] Will be applying 3 memory leak fixes! [21:53:68] [main/INFO]: [MemoryLeakFix] Currently enabled memory leak fixes: [targetEntityLeak, biomeTemperatureLeak, hugeScreenshotLeak] [21:53:03] [main/INFO]: Initializing MixinExtras via com.llamalad7.mixinextras.service.MixinExtrasServiceImpl(version=0.3.5). [21:53:03] [main/WARN]: Found problematic active MixinExtras instance at ca.fxco.memoryleakfix.mixinextras (version 0.2.0-beta.6) [21:53:03] [main/WARN]: Versions from 0.2.0-beta.1 to 0.2.0-beta.9 have limited support and it is strongly recommended to update. [21:53:10] [main/WARN]: @Inject(@At("INVOKE")) Shift.BY=1 on crittersandcompanions.mixins.json:LivingEntityMixin::handler$chd000$onDie exceeds the maximum allowed value: 0. Increase the value of maxShiftBy to suppress this warning. [ImprovableSkills]: Patching ItemStack.hurtAndBreak [21:53:80] [Datafixer Bootstrap/INFO]: Loaded config for: connectivity.json [21:53:90] [Datafixer Bootstrap/INFO]: 188 Datafixer optimizations took 184 milliseconds [21:53:39] [pool-4-thread-1/WARN]: @Inject(@At("INVOKE_ASSIGN")) Shift.BY=2 on refurbished_furniture.common.mixins.json:LevelChunkMixin::handler$bdo000$refurbishedFurniture$AfterRemoveBlockEntity exceeds the maximum allowed value: 0. Increase the value of maxShiftBy to suppress this warning. [21:53:69] [Render thread/WARN]: Error loading class: net/caffeinemc/mods/sodium/api/memory/MemoryIntrinsics (java.lang.ClassNotFoundException: net.caffeinemc.mods.sodium.api.memory.MemoryIntrinsics) Exception in thread "Render thread" java.lang.RuntimeException: java.lang.reflect.InvocationTargetException     at MC-BOOTSTRAP/[email protected]/cpw.mods.modlauncher.LaunchServiceHandlerDecorator.launch(LaunchServiceHandlerDecorator.java:32)     at MC-BOOTSTRAP/[email protected]/cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:53)     at MC-BOOTSTRAP/[email protected]/cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:71)     at MC-BOOTSTRAP/[email protected]/cpw.mods.modlauncher.Launcher.run(Launcher.java:108)     at MC-BOOTSTRAP/[email protected]/cpw.mods.modlauncher.Launcher.main(Launcher.java:78)     at MC-BOOTSTRAP/[email protected]/cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:26)     at MC-BOOTSTRAP/[email protected]/cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:23)     at [email protected]/cpw.mods.bootstraplauncher.BootstrapLauncher.main(BootstrapLauncher.java:141) Caused by: java.lang.reflect.InvocationTargetException     at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method)     at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77)     at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)     at java.base/java.lang.reflect.Method.invoke(Method.java:568)     at MC-BOOTSTRAP/[email protected]/net.minecraftforge.fml.loading.targets.CommonLaunchHandler.runTarget(CommonLaunchHandler.java:111)     at MC-BOOTSTRAP/[email protected]/net.minecraftforge.fml.loading.targets.CommonLaunchHandler.clientService(CommonLaunchHandler.java:99)     at MC-BOOTSTRAP/[email protected]/net.minecraftforge.fml.loading.targets.CommonClientLaunchHandler.lambda$makeService$0(CommonClientLaunchHandler.java:25)     at MC-BOOTSTRAP/[email protected]/cpw.mods.modlauncher.LaunchServiceHandlerDecorator.launch(LaunchServiceHandlerDecorator.java:30)     ... 7 more Caused by: java.lang.NoClassDefFoundError: Could not initialize class com.mojang.blaze3d.systems.RenderSystem     at TRANSFORMER/[email protected]/net.minecraft.SystemReport.m_143522_(SystemReport.java:66)     at TRANSFORMER/[email protected]/net.minecraft.client.Minecraft.m_167850_(Minecraft.java:2339)     at TRANSFORMER/[email protected]/net.minecraft.client.Minecraft.m_167872_(Minecraft.java:2332)     at TRANSFORMER/[email protected]/net.minecraft.client.main.Main.main(Main.java:191)     ... 15 more Caused by: java.lang.ExceptionInInitializerError: Exception org.spongepowered.asm.mixin.transformer.throwables.MixinTransformerError: An unexpected critical error was encountered [in thread "Render thread"]     at MC-BOOTSTRAP/org.spongepowered.mixin/org.spongepowered.asm.mixin.transformer.MixinProcessor.applyMixins(MixinProcessor.java:392)     at MC-BOOTSTRAP/org.spongepowered.mixin/org.spongepowered.asm.mixin.transformer.MixinTransformer.transformClass(MixinTransformer.java:250)     at MC-BOOTSTRAP/org.spongepowered.mixin/org.spongepowered.asm.service.modlauncher.MixinTransformationHandler.processClass(MixinTransformationHandler.java:131)     at MC-BOOTSTRAP/org.spongepowered.mixin/org.spongepowered.asm.launch.MixinLaunchPluginLegacy.processClass(MixinLaunchPluginLegacy.java:131)     at MC-BOOTSTRAP/[email protected]/cpw.mods.modlauncher.serviceapi.ILaunchPluginService.processClassWithFlags(ILaunchPluginService.java:156)     at MC-BOOTSTRAP/[email protected]/cpw.mods.modlauncher.LaunchPluginHandler.offerClassNodeToPlugins(LaunchPluginHandler.java:88)     at MC-BOOTSTRAP/[email protected]/cpw.mods.modlauncher.ClassTransformer.transform(ClassTransformer.java:120)     at MC-BOOTSTRAP/[email protected]/cpw.mods.modlauncher.TransformingClassLoader.maybeTransformClassBytes(TransformingClassLoader.java:50)     at cpw.mods.securejarhandler/cpw.mods.cl.ModuleClassLoader.readerToClass(ModuleClassLoader.java:113)     at cpw.mods.securejarhandler/cpw.mods.cl.ModuleClassLoader.lambda$findClass$15(ModuleClassLoader.java:219)     at cpw.mods.securejarhandler/cpw.mods.cl.ModuleClassLoader.loadFromModule(ModuleClassLoader.java:229)     at cpw.mods.securejarhandler/cpw.mods.cl.ModuleClassLoader.findClass(ModuleClassLoader.java:219)     at cpw.mods.securejarhandler/cpw.mods.cl.ModuleClassLoader.loadClass(ModuleClassLoader.java:135)     at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:525)     at TRANSFORMER/[email protected]/com.mojang.blaze3d.vertex.Tesselator.<init>(Tesselator.java:19)     at TRANSFORMER/[email protected]/com.mojang.blaze3d.vertex.Tesselator.<init>(Tesselator.java:23)     at TRANSFORMER/[email protected]/com.mojang.blaze3d.vertex.Tesselator.<clinit>(Tesselator.java:11)     at TRANSFORMER/[email protected]/com.mojang.blaze3d.systems.RenderSystem.<clinit>(RenderSystem.java:50)     at TRANSFORMER/[email protected]/net.minecraft.client.main.Main.main(Main.java:180)     ... 15 more Here I am! [VersionManager] Refreshing versions locally... [VersionManager] Versions has been refreshed (9 ms) [Launcher] Launcher exited. [Launcher] Minecraft closed with exit code: 1 flush now flush now  
    • Make a test with an older build: https://www.curseforge.com/minecraft/mc-mods/player-tracking-compass/files/all?page=1&pageSize=20&version=1.20.1&gameVersionTypeId=1 If this is still not working, report it to the creator: https://github.com/Serilum/.issue-tracker/issues
    • No  I wanted to use that mod.  I need a solution that doesn't involve removing the mod
    • Yeah it's weird. nothing in the logs about why it isn't loading. The game hasn't even crashed either or hung, it's still responding to me clicking in the game window (it makes the GUI clicking noise)
  • Topics

×
×
  • Create New...

Important Information

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