Jump to content

Recommended Posts

Posted

Hey all,

 

I'm having a rather serious problem with spawning my entity. I've gotten it to work perfectly in SP but in MP the thing simply will not spawn.

 

Here is the relevant code:

 

package mod_DefenseGunPack;

//Credits:
//big help from: Zorn_Taov
//
//
//
//
//
//

import mod_DefenseGunPack.handlers.CraftingHandler;
import mod_DefenseGunPack.handlers.DG3x3_SpawnPacketHandler;
import mod_DefenseGunPack.client.ClientProxy;
import mod_DefenseGunPack.handlers.DG3x3_PacketHandler;
import mod_DefenseGunPack.items.DG3x3_Item;
import mod_DefenseGunPack.turrets.DG3x3_EntityLiving;
import net.minecraft.creativetab.CreativeTabs;
import net.minecraft.entity.Entity;
import net.minecraft.entity.EntityLiving;
import net.minecraft.block.material.Material;
import net.minecraft.block.Block;
import net.minecraft.block.BlockContainer;
import net.minecraft.item.Item;
import net.minecraft.item.ItemReed;
import net.minecraft.item.ItemStack;
import net.minecraft.src.ModLoader;
import net.minecraft.tileentity.TileEntity;
import net.minecraftforge.client.MinecraftForgeClient;
import net.minecraftforge.common.ForgeHooks;
import net.minecraftforge.common.MinecraftForge;
import cpw.mods.fml.client.registry.RenderingRegistry;
import cpw.mods.fml.common.ICraftingHandler;
import cpw.mods.fml.common.Mod;
import cpw.mods.fml.common.Mod.Init;
import cpw.mods.fml.common.Mod.Instance;
import cpw.mods.fml.common.Mod.PostInit;
import cpw.mods.fml.common.Mod.PreInit;
import cpw.mods.fml.common.SidedProxy;
import cpw.mods.fml.common.event.FMLInitializationEvent;
import cpw.mods.fml.common.event.FMLPostInitializationEvent;
import cpw.mods.fml.common.event.FMLPreInitializationEvent;
import cpw.mods.fml.common.network.IConnectionHandler;
import cpw.mods.fml.common.network.IPacketHandler;
import cpw.mods.fml.common.network.NetworkMod;
import cpw.mods.fml.common.network.NetworkMod.SidedPacketHandler;
import cpw.mods.fml.common.network.NetworkRegistry;
import cpw.mods.fml.common.registry.EntityRegistry;
import cpw.mods.fml.common.registry.LanguageRegistry;
import cpw.mods.fml.common.registry.GameRegistry;

@Mod(modid = "mod_DefenseGunPack", name = "mod_DefenseGunPack", version = "0.0.1")
@NetworkMod(clientSideRequired = true, serverSideRequired = false)
public class Mod_Turrets
{
//public static final Block test = (new BlockDefenseGun3x3v1(250, mod_DefenseGunPack.EntityDefenseGun3x3v1.class))
//	.setHardness(0.5F) .setResistance(1F) .setBlockName("DefenseTurret3x3v1");

//	public static IPacketHandler packetHandler;
//
//    public static IPacketHandler packetSpawnHandler;

    public static Item DG3x3_Item;

    public void craftingRecipes()
    {
        GameRegistry.addRecipe(new ItemStack(DG3x3_Item, 1, 0), new Object[] { "##", "##", '#', Block.dirt});
    }

    @Instance("Mod_Turrets")
    public static Mod_Turrets instance;

    @SidedProxy(clientSide = "mod_DefenseGunPack.client.ClientProxy", serverSide = "mod_DefenseGunPack.CommonProxy")
    public static CommonProxy proxy;

    @PreInit
    public void preInt(FMLPreInitializationEvent event)
    {
        // stub Method
    }

    @Init
    public void load(FMLInitializationEvent event)
    {
//        packetHandler = new DG3x3_PacketHandler();
//        packetSpawnHandler = new DG3x3_SpawnPacketHandler();
//        
//        NetworkRegistry.instance().registerPacketHandler();
        
        DG3x3_Item = (new DG3x3_Item(5000-256)).setItemName("DefenseGun3x3v1")
                .setCreativeTab(CreativeTabs.tabRedstone).setIconCoord(12, 10); 
        
        craftingRecipes();
        
//        NetworkRegistry.instance().registerChannel(packetHandler, "DG3x3");
//        NetworkRegistry.instance().registerChannel(packetSpawnHandler, "DG3x3Spawn");
        
        int DG3x3id = EntityRegistry.findGlobalUniqueEntityId();
        EntityRegistry.registerGlobalEntityID(DG3x3_EntityLiving.class, "DefenseGun3x3v1", DG3x3id);
        EntityRegistry.registerModEntity(DG3x3_EntityLiving.class, "DefenseGun3x3v1",DG3x3id, this, 250, 5, false);
        
        GameRegistry.registerItem(DG3x3_Item, "DefenseGun3x3v1");
        LanguageRegistry.addName(DG3x3_Item, "DefenseGun3x3v1");
        
        ClientProxy.registerRenderInformation();
    }

    @PostInit
    public void postInit(FMLPostInitializationEvent event)
    {
        // stub Method
    }
}

 

package mod_DefenseGunPack;

import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.inventory.IInventory;
import net.minecraft.item.ItemStack;
import net.minecraft.network.INetworkManager;
import net.minecraft.network.packet.Packet250CustomPayload;
import net.minecraft.world.World;
import cpw.mods.fml.common.INetworkHandler;
import cpw.mods.fml.common.network.IGuiHandler;
import cpw.mods.fml.common.network.IPacketHandler;
import cpw.mods.fml.common.network.NetworkMod;
import cpw.mods.fml.common.network.NetworkMod.NULL;
import cpw.mods.fml.common.network.NetworkMod.SidedPacketHandler;
import cpw.mods.fml.common.network.Player;
import cpw.mods.fml.common.registry.GameRegistry;
import mod_DefenseGunPack.handlers.DG3x3_PacketHandler;

public class CommonProxy 
{
    public static void registerRenderInformation()
    {
        //No rendering for servers
    }    
}

 

package mod_DefenseGunPack.client;

import cpw.mods.fml.client.registry.RenderingRegistry;
import net.minecraft.client.model.ModelBase;
import net.minecraft.src.ModLoader;
import net.minecraftforge.client.MinecraftForgeClient;
import mod_DefenseGunPack.CommonProxy;
import mod_DefenseGunPack.turrets.DG3x3_EntityLiving;
import mod_DefenseGunPack.turrets.renderers.DG3x3_Renderer;
import mod_DefenseGunPack.turrets.models.DG3x3_Model;

public class ClientProxy extends CommonProxy
{
    public static void registerRenderInformation()
    {
        MinecraftForgeClient.preloadTexture("/mod_DefenseGunPack/DefenseGun3x3v1.png");
        RenderingRegistry.registerEntityRenderingHandler(mod_DefenseGunPack.turrets.DG3x3_EntityLiving.class, new mod_DefenseGunPack.turrets.renderers.DG3x3_Renderer());
    }
}

 

package mod_DefenseGunPack.items;

import java.io.ByteArrayInputStream;
import java.io.ByteArrayOutputStream;
import java.io.DataInputStream;
import java.io.DataOutputStream;
import java.io.IOException;

import com.google.common.io.ByteArrayDataOutput;
import com.google.common.io.ByteStreams;

import mod_DefenseGunPack.turrets.DG3x3_EntityLiving;
import net.minecraft.block.Block;
import net.minecraft.client.entity.EntityClientPlayerMP;
import net.minecraft.crash.CrashReport;
import net.minecraft.crash.CrashReportCategory;
import net.minecraft.creativetab.CreativeTabs;
import net.minecraft.entity.DataWatcher;
import net.minecraft.entity.Entity;
import net.minecraft.entity.EntityLiving;
import net.minecraft.entity.item.EntityBoat;
import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.entity.player.EntityPlayerMP;
import net.minecraft.item.Item;
import net.minecraft.item.ItemStack;
import net.minecraft.network.packet.Packet;
import net.minecraft.network.packet.Packet250CustomPayload;
import net.minecraft.src.ModLoader;
import net.minecraft.stats.StatList;
import net.minecraft.util.ReportedException;
import net.minecraft.world.World;
import net.minecraft.world.chunk.Chunk;
import net.minecraft.world.chunk.IChunkProvider;
import cpw.mods.fml.client.FMLClientHandler;
import cpw.mods.fml.common.FMLCommonHandler;
import cpw.mods.fml.common.network.EntitySpawnPacket;
import cpw.mods.fml.common.network.NetworkRegistry;
import cpw.mods.fml.common.network.PacketDispatcher;
import cpw.mods.fml.common.network.Player;
import cpw.mods.fml.common.registry.EntityRegistry;
import cpw.mods.fml.relauncher.Side;
import cpw.mods.fml.relauncher.SideOnly;



public class DG3x3_Item extends Item
{
    private int spawnID;

    public EntityPlayer PlacingPlayer;

    public DG3x3_Item(int par1)
    {
        super(par1);
    }
    
    public boolean FW_CheckPlacementLocation(World par3World, int par4, int par5, int par6, int par7)
    {
        if (!par3World.isAirBlock(par4, par5, par6))
        {
            int id = par3World.getBlockId(par4, par5, par6);

            if (id == 42 || id == 45 || id == 01 || id == 02 || id == 03)
            {
                return true;
            }
        }

        System.out.println("Placement False");
        return false;
    }

    /**
     * Callback for item usage. If the item does something special on right
     * clicking, he will have one of those. Return True if something happen and
     * false if it don't. This is for ITEMS, not BLOCKS
     */
    @Override
    public boolean onItemUse(ItemStack par1ItemStack, EntityPlayer par2EntityPlayer, World par3World, int par4, int par5, int par6, int par7, float par8, float par9, float par10)
    {
        int var11 = par3World.getBlockId(par4, par5, par6);

        if (var11 == Block.snow.blockID)
        {
            par7 = 1;
        }
        else if (var11 != Block.vine.blockID && var11 != Block.tallGrass.blockID && var11 != Block.deadBush.blockID)
        {
            if (par7 == 0)
            {
                --par5;
            }

            if (par7 == 1)
            {
                ++par5;
            }

            if (par7 == 2)
            {
                --par6;
            }

            if (par7 == 3)
            {
                ++par6;
            }

            if (par7 == 4)
            {
                --par4;
            }

            if (par7 == 5)
            {
                ++par4;
            }
        }

        if (!par2EntityPlayer.canPlayerEdit(par4, par5, par6, par7, par1ItemStack))
        {
            return false;
        }
        else if (par1ItemStack.stackSize == 0)
        {
            return false;
        }
        else
        {
            if (
                    (FW_CheckPlacementLocation(par3World, par4 - 1, par5 - 1, par6 + 1, par7) == true)
                    && (FW_CheckPlacementLocation(par3World, par4, par5 - 1, par6 + 1, par7) == true)
                    && (FW_CheckPlacementLocation(par3World, par4 + 1, par5 - 1, par6 + 1, par7) == true)
                    && (FW_CheckPlacementLocation(par3World, par4 - 1, par5 - 1, par6, par7) == true)
                    && (FW_CheckPlacementLocation(par3World, par4, par5 - 1, par6, par7) == true)
                    && (FW_CheckPlacementLocation(par3World, par4 + 1, par5 - 1, par6, par7) == true)
                    && (FW_CheckPlacementLocation(par3World, par4 - 1, par5 - 1, par6 - 1, par7) == true)
                    && (FW_CheckPlacementLocation(par3World, par4, par5 - 1, par6 - 1, par7) == true)
                    && (FW_CheckPlacementLocation(par3World, par4 + 1, par5 - 1, par6 - 1, par7) == true))
            {
                for (int i = 0; i < 3; i = i + 1)
                {
                    if (
                            (par3World.isAirBlock(par4 - 1, par5 + i, par6 + 1))
                            && (par3World.isAirBlock(par4, par5 + 1, par6 + 1))
                            && (par3World.isAirBlock(par4 + 1, par5 + i, par6 + 1))
                            && (par3World.isAirBlock(par4 - 1, par5 + i, par6))
                            && (par3World.isAirBlock(par4, par5 + 1, par6))
                            && (par3World.isAirBlock(par4 + 1, par5 + i, par6))
                            && (par3World.isAirBlock(par4 - 1, par5 + i, par6 - 1))
                            && (par3World.isAirBlock(par4, par5 + 1, par6 - 1))
                            && (par3World.isAirBlock(par4 + 1, par5 + i, par6 - 1))
                    )
                    {
                    }
                }
            }
            else
            {
                return false;
            }
        
            if(spawnTurret(par4, par5, par6, new DG3x3_EntityLiving(par3World), par3World, par2EntityPlayer))
            {
            	par1ItemStack.stackSize--;
            	return true;
            }
            par2EntityPlayer.swingItem();
            return false;
            
        }
    }

public static boolean spawnTurret(double x, double y, double z, Entity entity, World world, EntityPlayer player)
{
if(!world.isRemote)
{
	entity.setPosition(x, y, z);
	world.spawnEntityInWorld(entity);
	world.playAuxSFX(2001, (int)x, (int)y, (int)z, Block.stone.blockID);
	return true;
}
return false;
}

}

 

package mod_DefenseGunPack.turrets;

import java.io.ByteArrayInputStream;
import java.io.ByteArrayOutputStream;
import java.io.DataInputStream;
import java.io.DataOutputStream;
import java.io.IOException;
import java.util.List;
import java.util.Random;
import java.util.UUID;

import mod_DefenseGunPack.Mod_Turrets;
import mod_DefenseGunPack.packet.DG3x3_Packet;
import mod_DefenseGunPack.projectiles.EntityExplosiveArrow;
import mod_DefenseGunPack.targetfilters.FilterITurret;
import net.minecraft.client.entity.EntityClientPlayerMP;
import net.minecraft.command.IEntitySelector;
import net.minecraft.crash.CrashReport;
import net.minecraft.crash.CrashReportCategory;
import net.minecraft.entity.DataWatcher;
import net.minecraft.entity.Entity;
import net.minecraft.entity.EntityList;
import net.minecraft.entity.EntityLiving;
import net.minecraft.entity.IRangedAttackMob;
import net.minecraft.entity.WatchableObject;
import net.minecraft.entity.ai.EntityAIArrowAttack;
import net.minecraft.entity.ai.EntityAIAttackOnCollide;
import net.minecraft.entity.ai.EntityAIHurtByTarget;
import net.minecraft.entity.ai.EntityAINearestAttackableTarget;
import net.minecraft.entity.ai.EntityAIWatchClosest;
import net.minecraft.entity.monster.EntityMob;
import net.minecraft.entity.monster.EntitySlime;
import net.minecraft.entity.monster.IMob;
import net.minecraft.entity.passive.EntityAnimal;
import net.minecraft.entity.passive.EntityVillager;
import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.entity.player.EntityPlayerMP;
import net.minecraft.inventory.IInventory;
import net.minecraft.item.Item;
import net.minecraft.item.ItemStack;
import net.minecraft.nbt.NBTTagCompound;
import net.minecraft.nbt.NBTTagDouble;
import net.minecraft.nbt.NBTTagFloat;
import net.minecraft.nbt.NBTTagList;
import net.minecraft.network.packet.Packet;
import net.minecraft.network.packet.Packet250CustomPayload;
import net.minecraft.server.MinecraftServer;
import net.minecraft.util.AxisAlignedBB;
import net.minecraft.util.ChunkCoordinates;
import net.minecraft.util.DamageSource;
import net.minecraft.util.ReportedException;
import net.minecraft.world.World;
import cpw.mods.fml.common.FMLCommonHandler;
import cpw.mods.fml.common.network.EntitySpawnPacket;
import cpw.mods.fml.common.network.FMLPacket;
import cpw.mods.fml.common.network.NetworkRegistry;
import cpw.mods.fml.common.network.PacketDispatcher;
import cpw.mods.fml.common.network.Player;
import cpw.mods.fml.relauncher.Side;
import cpw.mods.fml.relauncher.SideOnly;

public class DG3x3_EntityLiving extends EntityLiving implements IInventory, IRangedAttackMob, IEntitySelector
{
    private float field_70926_e;
    private float field_70924_f;

    private EntityAIArrowAttack field_85037_d = new EntityAIArrowAttack(this, 0F, 1, 25F);
    private EntityAIAttackOnCollide field_85038_e = new EntityAIAttackOnCollide(this, EntityPlayer.class, 0.31F, false);

    private ItemStack[] DG3X3v1Contents = new ItemStack[64];
    private boolean field_70279_a;
    private double field_70276_b;
    @SideOnly(Side.CLIENT)
    private double velocityX;
    @SideOnly(Side.CLIENT)
    private double velocityY;
    @SideOnly(Side.CLIENT)
    private double velocityZ;
    private EntityPlayer entityplayer;

    private IEntitySelector ientityselector = new FilterITurret();

    public DG3x3_Packet DG3x3packet;
    public DataOutputStream outputStream;

    public DG3x3_EntityLiving(World par1World)
    {
        super(par1World);
        this.field_70279_a = true;
        this.field_70276_b = 0.07D;
        this.preventEntitySpawning = true;
        this.tasks.addTask(1, new EntityAIWatchClosest(this, EntityPlayer.class, 8.0F));
        this.tasks.addTask(2, this.field_85037_d);
        this.targetTasks.addTask(1, new EntityAIHurtByTarget(this, false));
        this.targetTasks.addTask(2, new EntityAINearestAttackableTarget(this, EntityLiving.class, 25F, 0, true, true, ientityselector));
        this.func_82164_bB();
        this.func_82162_bC();
        System.out.println("EntitySpawn 1");
    }

    public DG3x3_EntityLiving(World par1World, double par2, double par4, double par6, EntityPlayer player)
    {
        super(par1World);
        double xpos2 = par2 + 0.5;
        double zpos2 = par6 + 0.5;
        this.setPosition(xpos2, par4, zpos2);
        this.motionX = 0.0D;
        this.motionY = 0.0D;
        this.motionZ = 0.0D;
        this.prevPosX = xpos2;
        this.prevPosY = par4;
        this.prevPosZ = par6;
        this.height = 1.5F;
        this.boundingBox.setBounds(xpos2 - 1.5, par4 - 0, zpos2 - 1.5, xpos2 + 1.5, par4 + 3, zpos2 + 1.5);
        this.entityplayer = player;
        this.tasks.addTask(1, new EntityAIWatchClosest(this, EntityPlayer.class, 8.0F));
        this.tasks.addTask(2, this.field_85037_d);
        this.targetTasks.addTask(1, new EntityAIHurtByTarget(this, false));
        this.targetTasks.addTask(2, new EntityAINearestAttackableTarget(this, EntityLiving.class, 25F, 0, true, true, ientityselector));
        System.out.println("EntitySpawn 2");
    }

    @Override
    public void setAttackTarget(EntityLiving par1EntityLiving)
    {
        super.setAttackTarget(par1EntityLiving);
    }

    @SideOnly(Side.CLIENT)
    public float getInterestedAngle(float par1)
    {
        return (this.field_70924_f + (this.field_70926_e - this.field_70924_f) * par1) * 0.15F * (float)Math.PI;
    }

    /**
     * random number generator for instance. Used in random item stack selection.
     */
    private Random DG3X3v1Random = new Random();

    /**
     * the movespeed used for the new AI system
     */
    @Override
    public float getAIMoveSpeed()
    {
        return 0;
    }

    /**
     * Returns the number of slots in the inventory.
     */
    @Override
    public int getSizeInventory()
    {
        return 1;
    }

    public boolean isAIEnabled()
    {
        return true;
    }

    public boolean attackEntityAsMob(Entity par1Entity)
    {
        if (super.attackEntityAsMob(par1Entity))
        {
            return true;
        }
        else
        {
            return false;
        }
    }

    /**
     * Returns the amount of damage a mob should deal.
     */
    public int getAttackStrength(Entity par1Entity)
    {
        return 999;
    }

    protected boolean canTriggerWalking()
    {
        return false;
    }

    protected void entityInit()
    {
        super.entityInit();
        this.dataWatcher.addObject(13, new Byte((byte)0));
        this.dataWatcher.addObject(16, Byte.valueOf((byte)0));
        this.dataWatcher.addObject(17, Integer.valueOf(0));
        this.dataWatcher.addObject(18, Integer.valueOf(0));
        this.dataWatcher.addObject(19, Integer.valueOf(0));
        this.dataWatcher.addObject(20, Byte.valueOf((byte)0));
    }

    /**
     * Returns a boundingBox used to collide the entity with other entities and blocks. This enables the entity to be
     * pushable on contact, like boats or minecarts.
     */
    @Override
    public AxisAlignedBB getCollisionBox(Entity par1Entity)
    {
        return par1Entity.boundingBox;
    }

    /**
     * returns the bounding box for this entity
     */
    @Override
    public AxisAlignedBB getBoundingBox()
    {
        return this.boundingBox;
    }

    /**
     * Returns true if this entity should push and be pushed by other entities when colliding.
     */
    @Override
    public boolean canBePushed()
    {
        return false;
    }

    /**
     * Called when the entity is attacked.
     */
    public boolean attackEntityFrom(DamageSource par1DamageSource, int par2)
    {
        if (this.func_85032_ar())
        {
            return false;
        }
        else if (!this.worldObj.isRemote && !this.isDead)
        {
            this.setForwardDirection(-this.getForwardDirection());
            this.setTimeSinceHit(10);
            this.setDamageTaken(this.getDamageTaken() + par2 * 10);
            this.setBeenAttacked();

            if (par1DamageSource.getEntity() instanceof EntityPlayer && ((EntityPlayer)par1DamageSource.getEntity()).capabilities.isCreativeMode)
            {
                this.setDamageTaken(100);
            }

            if (this.getDamageTaken() > 40)
            {
                this.dropItemWithOffset(Mod_Turrets.DG3x3_Item.shiftedIndex, 1, 0.0F);
                this.setDead();
            }

            return true;
        }
        else
        {
            return true;
        }
    }

    @SideOnly(Side.CLIENT)

    /**
     * Setups the entity to do the hurt animation. Only used by packets in multiplayer.
     */
    public void performHurtAnimation()
    {
        this.setForwardDirection(-this.getForwardDirection());
        this.setTimeSinceHit(10);
        this.setDamageTaken(this.getDamageTaken() * 11);
    }

    /**
     * Returns true if other Entities should be prevented from moving through this Entity.
     */
    public boolean canBeCollidedWith()
    {
        return !this.isDead;
    }

    @SideOnly(Side.CLIENT)

    /**
     * Sets the velocity to the args. Args: x, y, z
     */
    public void setVelocity(double par1, double par3, double par5)
    {
        this.velocityX = this.motionX = par1;
        this.velocityY = this.motionY = par3;
        this.velocityZ = this.motionZ = par5;
    }

    protected void func_82164_bB()
    {
        super.func_82164_bB();
        this.setCurrentItemOrArmor(0, new ItemStack(Item.bow));
    }

    /**
     * (abstract) Protected helper method to write subclass entity data to NBT.
     */
    @Override
    public void writeEntityToNBT(NBTTagCompound par1NBTTagCompound)
    {
        super.writeEntityToNBT(par1NBTTagCompound);

        if (getSizeInventory() > 0)
        {
            NBTTagList var2 = new NBTTagList();

            for (int var3 = 0; var3 < this.getSizeInventory(); ++var3)
            {
                if (this.DG3X3v1Contents[var3] != null)
                {
                    NBTTagCompound var4 = new NBTTagCompound();
                    var4.setByte("Slot", (byte)var3);
                    this.DG3X3v1Contents[var3].writeToNBT(var4);
                    var2.appendTag(var4);
                }
            }

            par1NBTTagCompound.setTag("Items", var2);
        }
    }

    @Override
    public void readEntityFromNBT(NBTTagCompound par1NBTTagCompound)
    {
        super.readEntityFromNBT(par1NBTTagCompound);

        if (getSizeInventory() > 0)
        {
            NBTTagList var2 = par1NBTTagCompound.getTagList("Items");
            this.DG3X3v1Contents = new ItemStack[this.getSizeInventory()];

            for (int var3 = 0; var3 < var2.tagCount(); ++var3)
            {
                NBTTagCompound var4 = (NBTTagCompound)var2.tagAt(var3);
                int var5 = var4.getByte("Slot") & 255;

                if (var5 >= 0 && var5 < this.DG3X3v1Contents.length)
                {
                    this.DG3X3v1Contents[var5] = ItemStack.loadItemStackFromNBT(var4);
                }
            }
        }
    }

    protected boolean canDespawn()
    {
        return false;
    }

    /**
     * Called when a player interacts with a mob. e.g. gets milk from a cow, gets into the saddle on a pig.
     */
    public boolean interact(EntityPlayer par1EntityPlayer)
    {
        if (getSizeInventory() > 0)
        {
            if (!this.worldObj.isRemote)
            {
                par1EntityPlayer.displayGUIChest(this);
            }
        }

        return true;
    }

    /**
     * Sets the damage taken from the last hit.
     */
    public void setDamageTaken(int par1)
    {
        this.dataWatcher.updateObject(19, Integer.valueOf(par1));
    }

    @SideOnly(Side.CLIENT)
    public float getShadowSize()
    {
        return 0.0F;
    }

    /**
     * Gets the damage taken from the last hit.
     */
    public int getDamageTaken()
    {
        return this.dataWatcher.getWatchableObjectInt(19);
    }

    /**
     * Sets the time to count down from since the last time entity was hit.
     */
    public void setTimeSinceHit(int par1)
    {
        this.dataWatcher.updateObject(17, Integer.valueOf(par1));
    }

    /**
     * Gets the time since the last hit.
     */
    public int getTimeSinceHit()
    {
        return this.dataWatcher.getWatchableObjectInt(17);
    }

    /**
     * Sets the forward direction of the entity.
     */
    public void setForwardDirection(int par1)
    {
        this.dataWatcher.updateObject(18, Integer.valueOf(par1));
    }

    /**
     * Gets the forward direction of the entity.
     */
    public int getForwardDirection()
    {
        return this.dataWatcher.getWatchableObjectInt(18);
    }

    /**
     * Returns the stack in slot i
     */
    @Override
    public ItemStack getStackInSlot(int par1)
    {
        return this.DG3X3v1Contents[par1];
    }

    /**
     * Removes from an inventory slot (first arg) up to a specified number (second arg) of items and returns them in a
     * new stack.
     */
    @Override
    public ItemStack decrStackSize(int par1, int par2)
    {
        if (this.DG3X3v1Contents[par1] != null)
        {
            ItemStack var3;

            if (this.DG3X3v1Contents[par1].stackSize <= par2)
            {
                var3 = this.DG3X3v1Contents[par1];
                this.DG3X3v1Contents[par1] = null;
                this.onInventoryChanged();
                return var3;
            }
            else
            {
                var3 = this.DG3X3v1Contents[par1].splitStack(par2);

                if (this.DG3X3v1Contents[par1].stackSize == 0)
                {
                    this.DG3X3v1Contents[par1] = null;
                }

                this.onInventoryChanged();
                return var3;
            }
        }
        else
        {
            return null;
        }
    }

    /**
     * When some containers are closed they call this on each slot, then drop whatever it returns as an EntityItem -
     * like when you close a workbench GUI.
     */
    @Override
    public ItemStack getStackInSlotOnClosing(int par1)
    {
        if (this.DG3X3v1Contents[par1] != null)
        {
            ItemStack var2 = this.DG3X3v1Contents[par1];
            this.DG3X3v1Contents[par1] = null;
            return var2;
        }
        else
        {
            return null;
        }
    }

    /**
     * Sets the given item stack to the specified slot in the inventory (can be crafting or armor sections).
     */
    @Override
    public void setInventorySlotContents(int par1, ItemStack par2ItemStack)
    {
        this.DG3X3v1Contents[par1] = par2ItemStack;

        if (par2ItemStack != null && par2ItemStack.stackSize > this.getInventoryStackLimit())
        {
            par2ItemStack.stackSize = this.getInventoryStackLimit();
        }

        this.onInventoryChanged();
    }

    public int getRandomStackFromInventory()
    {
        int var1 = -1;
        int var2 = 1;

        for (int var3 = 0; var3 < this.DG3X3v1Contents.length; ++var3)
        {
            if (this.DG3X3v1Contents[var3] != null && this.DG3X3v1Random.nextInt(var2++) == 0)
            {
                var1 = var3;
            }
        }

        return var1;
    }

    public int func_70360_a(ItemStack par1ItemStack)
    {
        for (int var2 = 0; var2 < this.DG3X3v1Contents.length; ++var2)
        {
            if (this.DG3X3v1Contents[var2] == null || this.DG3X3v1Contents[var2].itemID == 0)
            {
                this.DG3X3v1Contents[var2] = par1ItemStack;
                return var2;
            }
        }

        return -1;
    }

    /**
     * Returns the name of the inventory.
     */
    @Override
    public String getInvName()
    {
        return "container.DefenseGun3x3v1"; //$NON-NLS-1$
    }

    @Override
    public int getInventoryStackLimit()
    {
        // TODO Auto-generated method stub
        return 64;
    }

    @Override
    public void onInventoryChanged()
    {
        // TODO Auto-generated method stub
    }

    /**
     * Do not make give this method the name canInteractWith because it clashes with Container
     */
    @Override
    public boolean isUseableByPlayer(EntityPlayer par1EntityPlayer)
    {
        return true;
    }

    @Override
    public void openChest()
    {
        // TODO Auto-generated method stub
    }

    @Override
    public void closeChest()
    {
        // TODO Auto-generated method stub
    }

    @Override
    public int getMaxHealth()
    {
        return 30;
    }

    @Override
    public void onLivingUpdate()
    {
        this.posX = this.prevPosX;
        this.posY = this.prevPosY;
        this.posZ = this.prevPosZ;
        super.onLivingUpdate();
    }

    public void attackEntityWithRangedAttack(EntityLiving par1EntityLiving)
    {
        EntityExplosiveArrow var2 = new EntityExplosiveArrow(this.worldObj, this, par1EntityLiving, 1.6F, 12.0F);
        var2.setDamage(5);
        var2.setKnockbackStrength(3);
        this.func_85030_a("random.bow", 1.0F, 1.0F / (this.getRNG().nextFloat() * 0.4F + 0.8F));
        this.worldObj.spawnEntityInWorld(var2);
    }

    public boolean FW_CheckPlacementLocation(World par3World, int par4, int par5, int par6, int par7)
    {
        if (!par3World.isAirBlock(par4, par5, par6))
        {
            int id = par3World.getBlockId(par4, par5, par6);

            if (id == 42 || id == 45 || id == 01 || id == 02 || id == 03)
            {
                return true;
            }
        }

        return false;
    }

    public void onUpdate()
    {
        super.onUpdate();
        this.posX = this.prevPosX;
        this.posY = this.prevPosY;
        this.posZ = this.prevPosZ;
        this.field_70924_f = this.field_70926_e;

        if (this.func_70922_bv())
        {
            this.field_70926_e += (1.0F - this.field_70926_e) * 0.4F;
        }
        else
        {
            this.field_70926_e += (0.0F - this.field_70926_e) * 0.4F;
        }

        for (int i = -1; i < 2; i = i + 1)
        {
            for (int j = -1; j < 2; j = j + 1)
            {
                if (!(FW_CheckPlacementLocation(this.worldObj, (int)this.posX + i, (int)posY - 1, (int)this.posZ + j, 0)))
                {
                    this.kill();
                }
            }
        }
    }

    public boolean func_70922_bv()
    {
        return this.dataWatcher.getWatchableObjectByte(20) == 1;
    }

    public void func_70918_i(boolean par1)
    {
        byte var2 = this.dataWatcher.getWatchableObjectByte(20);

        if (par1)
        {
            this.dataWatcher.updateObject(20, Byte.valueOf((byte)1));
        }
        else
        {
            this.dataWatcher.updateObject(20, Byte.valueOf((byte)0));
        }
    }

    public void onKillEntity(EntityLiving par1EntityLiving)
    {
        super.onKillEntity(par1EntityLiving);

        if (this.worldObj.difficultySetting >= 2 && par1EntityLiving instanceof EntityVillager)
        {
            if (this.worldObj.difficultySetting == 2 && this.rand.nextBoolean())
            {
                return;
            }

            this.dataWatcher.updateObject(20, Byte.valueOf((byte)0));
            this.worldObj.playAuxSFXAtEntity((EntityPlayer)null, 1016, (int)this.posX, (int)this.posY, (int)this.posZ, 0);
        }
    }

    @Override
    public boolean isEntityApplicable(Entity par1Entity)
    {
        if (par1Entity instanceof IMob)
        {
            return par1Entity instanceof IMob;
        }
        else if (par1Entity instanceof EntityLiving && !(par1Entity instanceof EntityPlayer) && !(par1Entity instanceof EntityVillager) && !(par1Entity instanceof EntityAnimal))
        {
            return par1Entity instanceof EntityLiving;
        }
        else if (par1Entity instanceof EntitySlime)
        {
            return par1Entity instanceof EntitySlime;
        }
        else
        {
            return false;
        }
    }
}

 

Can anyone help me figure out why this is not working in MP?

 

Thanks!

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

  • Who's Online (See full list)

×
×
  • Create New...

Important Information

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