Jump to content

Recommended Posts

Posted

Hello all

 

Before 1.6.2 i had my custom Wand to shoot Frost Shards (custom item) like arrows (and i still had the bow event implemented) but now i have updated my mod to 1.6.2 and i noticed that it didn't work anymore so i changed a couple of things and i removed the bow event aswell (as i didn't want to use that) so now i got it so that it can shoot whenever you click and all you see are the critical particles flying at the direction you aimed. They also do damage when they hit mobs and such, but i can't figure out why they are invisible. It must be something with the renderer i thought, but i can't find it yet :(

 

So i figured maybe theres someone that can point me to what i forgot or did wrong here so that my entity is no longer invisible.

 

I will provide the following src classes : EntityFrostShard, RenderFrostShard, FrostWand and a part of the renderRegister.

starting off with the EntityFrostShard:

 

 

package Mod_Ores.Items.Entity;

import java.util.List;

import Mod_Ores.Particles.RenderParticles;

import net.minecraft.block.Block;
import net.minecraft.enchantment.EnchantmentThorns;
import net.minecraft.entity.Entity;
import net.minecraft.entity.EntityLivingBase;
import net.minecraft.entity.IProjectile;
import net.minecraft.entity.monster.EntityEnderman;
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.nbt.NBTTagCompound;
import net.minecraft.network.packet.Packet70GameEvent;
import net.minecraft.util.AxisAlignedBB;
import net.minecraft.util.DamageSource;
import net.minecraft.util.MathHelper;
import net.minecraft.util.MovingObjectPosition;
import net.minecraft.util.Vec3;
import net.minecraft.world.World;
import cpw.mods.fml.relauncher.Side;
import cpw.mods.fml.relauncher.SideOnly;

public class EntityFrostShard extends Entity implements IProjectile
{
    private int xTile = -1;
    private int yTile = -1;
    private int zTile = -1;
    private int inTile;
    private int inData;
    private boolean inGround;

    /** Seems to be some sort of timer for animating an arrow. */
    public int arrowShake;

    /** The owner of this arrow. */
    public Entity shootingEntity;
    private int ticksInGround;
    private int ticksInAir;
    private double damage = 5.0D;

    /** The amount of knockback an arrow applies when it hits a mob. */
    private int knockbackStrength;

    public EntityFrostShard(World par1World)
    {
        super(par1World);
        this.renderDistanceWeight = 10.0D;
        this.setSize(0.5F, 0.5F);
    }

    public EntityFrostShard(World par1World, double par2, double par4, double par6)
    {
        super(par1World);
        this.renderDistanceWeight = 10.0D;
        this.setSize(0.5F, 0.5F);
        this.setPosition(par2, par4, par6);
        this.yOffset = 0.0F;
    }

    public EntityFrostShard(World par1World, EntityLivingBase par2EntityLivingBase, EntityLivingBase par3EntityLivingBase, float par4, float par5)
    {
        super(par1World);
        this.renderDistanceWeight = 10.0D;
        this.shootingEntity = par2EntityLivingBase;

        this.posY = par2EntityLivingBase.posY + (double)par2EntityLivingBase.getEyeHeight() - 0.10000000149011612D;
        double d0 = par3EntityLivingBase.posX - par2EntityLivingBase.posX;
        double d1 = par3EntityLivingBase.boundingBox.minY + (double)(par3EntityLivingBase.height / 3.0F) - this.posY;
        double d2 = par3EntityLivingBase.posZ - par2EntityLivingBase.posZ;
        double d3 = (double)MathHelper.sqrt_double(d0 * d0 + d2 * d2);

        if (d3 >= 1.0E-7D)
        {
            float f2 = (float)(Math.atan2(d2, d0) * 180.0D / Math.PI) - 90.0F;
            float f3 = (float)(-(Math.atan2(d1, d3) * 180.0D / Math.PI));
            double d4 = d0 / d3;
            double d5 = d2 / d3;
            this.setLocationAndAngles(par2EntityLivingBase.posX + d4, this.posY, par2EntityLivingBase.posZ + d5, f2, f3);
            this.yOffset = 0.0F;
            float f4 = (float)d3 * 0.2F;
            this.setThrowableHeading(d0, d1 + (double)f4, d2, par4, par5);
        }
    }

    public EntityFrostShard(World par1World, EntityLivingBase par2EntityLivingBase, float par3)
    {
        super(par1World);
        this.renderDistanceWeight = 10.0D;
        this.shootingEntity = par2EntityLivingBase;

        this.setSize(0.5F, 0.5F);
        this.setLocationAndAngles(par2EntityLivingBase.posX, par2EntityLivingBase.posY + (double)par2EntityLivingBase.getEyeHeight(), par2EntityLivingBase.posZ, par2EntityLivingBase.rotationYaw, par2EntityLivingBase.rotationPitch);
        this.posX -= (double)(MathHelper.cos(this.rotationYaw / 180.0F * (float)Math.PI) * 0.16F);
        this.posY -= 0.10000000149011612D;
        this.posZ -= (double)(MathHelper.sin(this.rotationYaw / 180.0F * (float)Math.PI) * 0.16F);
        this.setPosition(this.posX, this.posY, this.posZ);
        this.yOffset = 0.0F;
        this.motionX = (double)(-MathHelper.sin(this.rotationYaw / 180.0F * (float)Math.PI) * MathHelper.cos(this.rotationPitch / 180.0F * (float)Math.PI));
        this.motionZ = (double)(MathHelper.cos(this.rotationYaw / 180.0F * (float)Math.PI) * MathHelper.cos(this.rotationPitch / 180.0F * (float)Math.PI));
        this.motionY = (double)(-MathHelper.sin(this.rotationPitch / 180.0F * (float)Math.PI));
        this.setThrowableHeading(this.motionX, this.motionY, this.motionZ, par3 * 1.5F, 1.0F);
    }

    @Override
public String getEntityName() 
    {
    	return "Frost Shard";
    }
    
    protected void entityInit()
    {
        this.dataWatcher.addObject(16, Byte.valueOf((byte)0));
    }

    /**
     * Similar to setArrowHeading, it's point the throwable entity to a x, y, z direction.
     */
    public void setThrowableHeading(double par1, double par3, double par5, float par7, float par8)
    {
        float f2 = MathHelper.sqrt_double(par1 * par1 + par3 * par3 + par5 * par5);
        par1 /= (double)f2;
        par3 /= (double)f2;
        par5 /= (double)f2;
        par1 += this.rand.nextGaussian() * (double)(this.rand.nextBoolean() ? -1 : 1) * 0.007499999832361937D * (double)par8;
        par3 += this.rand.nextGaussian() * (double)(this.rand.nextBoolean() ? -1 : 1) * 0.007499999832361937D * (double)par8;
        par5 += this.rand.nextGaussian() * (double)(this.rand.nextBoolean() ? -1 : 1) * 0.007499999832361937D * (double)par8;
        par1 *= (double)par7;
        par3 *= (double)par7;
        par5 *= (double)par7;
        this.motionX = par1;
        this.motionY = par3;
        this.motionZ = par5;
        float f3 = MathHelper.sqrt_double(par1 * par1 + par5 * par5);
        this.prevRotationYaw = this.rotationYaw = (float)(Math.atan2(par1, par5) * 180.0D / Math.PI);
        this.prevRotationPitch = this.rotationPitch = (float)(Math.atan2(par3, (double)f3) * 180.0D / Math.PI);
        this.ticksInGround = 0;
    }

    @SideOnly(Side.CLIENT)

    /**
     * Sets the position and rotation. Only difference from the other one is no bounding on the rotation. Args: posX,
     * posY, posZ, yaw, pitch
     */
    public void setPositionAndRotation2(double par1, double par3, double par5, float par7, float par8, int par9)
    {
        this.setPosition(par1, par3, par5);
        this.setRotation(par7, par8);
    }

    @SideOnly(Side.CLIENT)

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

        if (this.prevRotationPitch == 0.0F && this.prevRotationYaw == 0.0F)
        {
            float f = MathHelper.sqrt_double(par1 * par1 + par5 * par5);
            this.prevRotationYaw = this.rotationYaw = (float)(Math.atan2(par1, par5) * 180.0D / Math.PI);
            this.prevRotationPitch = this.rotationPitch = (float)(Math.atan2(par3, (double)f) * 180.0D / Math.PI);
            this.prevRotationPitch = this.rotationPitch;
            this.prevRotationYaw = this.rotationYaw;
            this.setLocationAndAngles(this.posX, this.posY, this.posZ, this.rotationYaw, this.rotationPitch);
            this.ticksInGround = 0;
        }
    }

    /**
     * Called to update the entity's position/logic.
     */
    public void onUpdate()
    {
        super.onUpdate();

        if (this.prevRotationPitch == 0.0F && this.prevRotationYaw == 0.0F)
        {
            float f = MathHelper.sqrt_double(this.motionX * this.motionX + this.motionZ * this.motionZ);
            this.prevRotationYaw = this.rotationYaw = (float)(Math.atan2(this.motionX, this.motionZ) * 180.0D / Math.PI);
            this.prevRotationPitch = this.rotationPitch = (float)(Math.atan2(this.motionY, (double)f) * 180.0D / Math.PI);
        }

        int i = this.worldObj.getBlockId(this.xTile, this.yTile, this.zTile);

        if (i > 0)
        {
            Block.blocksList[i].setBlockBoundsBasedOnState(this.worldObj, this.xTile, this.yTile, this.zTile);
            AxisAlignedBB axisalignedbb = Block.blocksList[i].getCollisionBoundingBoxFromPool(this.worldObj, this.xTile, this.yTile, this.zTile);

            if (axisalignedbb != null && axisalignedbb.isVecInside(this.worldObj.getWorldVec3Pool().getVecFromPool(this.posX, this.posY, this.posZ)))
            {
                this.inGround = true;
            }
        }

        if (this.arrowShake > 0)
        {
            --this.arrowShake;
        }

        if (this.inGround)
        {
            int j = this.worldObj.getBlockId(this.xTile, this.yTile, this.zTile);
            int k = this.worldObj.getBlockMetadata(this.xTile, this.yTile, this.zTile);

            if (j == this.inTile && k == this.inData)
            {
                ++this.ticksInGround;

                if (this.ticksInGround == 1200)
                {
                    this.setDead();
                }
            }
            else
            {
                this.inGround = false;
                this.motionX *= (double)(this.rand.nextFloat() * 0.2F);
                this.motionY *= (double)(this.rand.nextFloat() * 0.2F);
                this.motionZ *= (double)(this.rand.nextFloat() * 0.2F);
                this.ticksInGround = 0;
                this.ticksInAir = 0;
            }
        }
        else
        {
            ++this.ticksInAir;
            Vec3 vec3 = this.worldObj.getWorldVec3Pool().getVecFromPool(this.posX, this.posY, this.posZ);
            Vec3 vec31 = this.worldObj.getWorldVec3Pool().getVecFromPool(this.posX + this.motionX, this.posY + this.motionY, this.posZ + this.motionZ);
            MovingObjectPosition movingobjectposition = this.worldObj.rayTraceBlocks_do_do(vec3, vec31, false, true);
            vec3 = this.worldObj.getWorldVec3Pool().getVecFromPool(this.posX, this.posY, this.posZ);
            vec31 = this.worldObj.getWorldVec3Pool().getVecFromPool(this.posX + this.motionX, this.posY + this.motionY, this.posZ + this.motionZ);

            if (movingobjectposition != null)
            {
                vec31 = this.worldObj.getWorldVec3Pool().getVecFromPool(movingobjectposition.hitVec.xCoord, movingobjectposition.hitVec.yCoord, movingobjectposition.hitVec.zCoord);
            }

            Entity entity = null;
            List list = this.worldObj.getEntitiesWithinAABBExcludingEntity(this, this.boundingBox.addCoord(this.motionX, this.motionY, this.motionZ).expand(1.0D, 1.0D, 1.0D));
            double d0 = 0.0D;
            int l;
            float f1;

            for (l = 0; l < list.size(); ++l)
            {
                Entity entity1 = (Entity)list.get(l);

                if (entity1.canBeCollidedWith() && (entity1 != this.shootingEntity || this.ticksInAir >= 5))
                {
                    f1 = 0.3F;
                    AxisAlignedBB axisalignedbb1 = entity1.boundingBox.expand((double)f1, (double)f1, (double)f1);
                    MovingObjectPosition movingobjectposition1 = axisalignedbb1.calculateIntercept(vec3, vec31);

                    if (movingobjectposition1 != null)
                    {
                        double d1 = vec3.distanceTo(movingobjectposition1.hitVec);

                        if (d1 < d0 || d0 == 0.0D)
                        {
                            entity = entity1;
                            d0 = d1;
                        }
                    }
                }
            }

            if (entity != null)
            {
                movingobjectposition = new MovingObjectPosition(entity);
            }

            if (movingobjectposition != null && movingobjectposition.entityHit != null && movingobjectposition.entityHit instanceof EntityPlayer)
            {
                EntityPlayer entityplayer = (EntityPlayer)movingobjectposition.entityHit;

                if (entityplayer.capabilities.disableDamage || this.shootingEntity instanceof EntityPlayer && !((EntityPlayer)this.shootingEntity).func_96122_a(entityplayer))
                {
                    movingobjectposition = null;
                }
            }

            float f2;
            float f3;

            if (movingobjectposition != null)
            {
                if (movingobjectposition.entityHit != null)
                {
                    f2 = MathHelper.sqrt_double(this.motionX * this.motionX + this.motionY * this.motionY + this.motionZ * this.motionZ);
                    int i1 = MathHelper.ceiling_double_int((double)f2 * this.damage);

                    if (this.getIsCritical())
                    {
                        i1 += this.rand.nextInt(i1 / 2 + 2);
                    }

                    DamageSource damagesource = null;

                    if (this.shootingEntity == null)
                    {
                        damagesource = DamageSource.causeThrownDamage(this, this);
                    }
                    else
                    {
                        damagesource = DamageSource.causeThrownDamage(this, this.shootingEntity);
                    }

                    if (this.isBurning() && !(movingobjectposition.entityHit instanceof EntityEnderman))
                    {
                        movingobjectposition.entityHit.setFire(5);
                    }

                    if (movingobjectposition.entityHit.attackEntityFrom(damagesource, (float)i1))
                    {
                        if (movingobjectposition.entityHit instanceof EntityLivingBase)
                        {
                            EntityLivingBase entitylivingbase = (EntityLivingBase)movingobjectposition.entityHit;

                            if (this.knockbackStrength > 0)
                            {
                                f3 = MathHelper.sqrt_double(this.motionX * this.motionX + this.motionZ * this.motionZ);

                                if (f3 > 0.0F)
                                {
                                    movingobjectposition.entityHit.addVelocity(this.motionX * (double)this.knockbackStrength * 0.6000000238418579D / (double)f3, 0.1D, this.motionZ * (double)this.knockbackStrength * 0.6000000238418579D / (double)f3);
                                }
                            }

                            if (this.shootingEntity != null)
                            {
                                EnchantmentThorns.func_92096_a(this.shootingEntity, entitylivingbase, this.rand);
                            }

                            if (this.shootingEntity != null && movingobjectposition.entityHit != this.shootingEntity && movingobjectposition.entityHit instanceof EntityPlayer && this.shootingEntity instanceof EntityPlayerMP)
                            {
                                ((EntityPlayerMP)this.shootingEntity).playerNetServerHandler.sendPacketToPlayer(new Packet70GameEvent(6, 0));
                            }
                        }

                        this.playSound("random.bowhit", 1.0F, 1.2F / (this.rand.nextFloat() * 0.2F + 0.9F));

                        if (!(movingobjectposition.entityHit instanceof EntityEnderman))
                        {
                            this.setDead();
                        }
                    }
                    else
                    {
                        this.motionX *= -0.10000000149011612D;
                        this.motionY *= -0.10000000149011612D;
                        this.motionZ *= -0.10000000149011612D;
                        this.rotationYaw += 180.0F;
                        this.prevRotationYaw += 180.0F;
                        this.ticksInAir = 0;
                    }
                }
                else
                {
                    this.xTile = movingobjectposition.blockX;
                    this.yTile = movingobjectposition.blockY;
                    this.zTile = movingobjectposition.blockZ;
                    this.inTile = this.worldObj.getBlockId(this.xTile, this.yTile, this.zTile);
                    this.inData = this.worldObj.getBlockMetadata(this.xTile, this.yTile, this.zTile);
                    this.motionX = (double)((float)(movingobjectposition.hitVec.xCoord - this.posX));
                    this.motionY = (double)((float)(movingobjectposition.hitVec.yCoord - this.posY));
                    this.motionZ = (double)((float)(movingobjectposition.hitVec.zCoord - this.posZ));
                    f2 = MathHelper.sqrt_double(this.motionX * this.motionX + this.motionY * this.motionY + this.motionZ * this.motionZ);
                    this.posX -= this.motionX / (double)f2 * 0.05000000074505806D;
                    this.posY -= this.motionY / (double)f2 * 0.05000000074505806D;
                    this.posZ -= this.motionZ / (double)f2 * 0.05000000074505806D;
                    this.playSound("random.bowhit", 1.0F, 1.2F / (this.rand.nextFloat() * 0.2F + 0.9F));
                    this.inGround = true;
                    this.arrowShake = 7;
                    this.setIsCritical(false);

                    if (this.inTile != 0)
                    {
                        Block.blocksList[this.inTile].onEntityCollidedWithBlock(this.worldObj, this.xTile, this.yTile, this.zTile, this);
                    }
                }
            }

            if (this.getIsCritical())
            {
                for (l = 0; l < 4; ++l)
                {
                	RenderParticles.entity = this;
                    this.worldObj.spawnParticle("crit", this.posX + this.motionX * (double)l / 4.0D, this.posY + this.motionY * (double)l / 4.0D, this.posZ + this.motionZ * (double)l / 4.0D, -this.motionX, -this.motionY + 0.2D, -this.motionZ);
                }
            }

            this.posX += this.motionX;
            this.posY += this.motionY;
            this.posZ += this.motionZ;
            f2 = MathHelper.sqrt_double(this.motionX * this.motionX + this.motionZ * this.motionZ);
            this.rotationYaw = (float)(Math.atan2(this.motionX, this.motionZ) * 180.0D / Math.PI);

            for (this.rotationPitch = (float)(Math.atan2(this.motionY, (double)f2) * 180.0D / Math.PI); this.rotationPitch - this.prevRotationPitch < -180.0F; this.prevRotationPitch -= 360.0F)
            {
                ;
            }

            while (this.rotationPitch - this.prevRotationPitch >= 180.0F)
            {
                this.prevRotationPitch += 360.0F;
            }

            while (this.rotationYaw - this.prevRotationYaw < -180.0F)
            {
                this.prevRotationYaw -= 360.0F;
            }

            while (this.rotationYaw - this.prevRotationYaw >= 180.0F)
            {
                this.prevRotationYaw += 360.0F;
            }

            this.rotationPitch = this.prevRotationPitch + (this.rotationPitch - this.prevRotationPitch) * 0.2F;
            this.rotationYaw = this.prevRotationYaw + (this.rotationYaw - this.prevRotationYaw) * 0.2F;
            float f4 = 0.99F;
            f1 = 0.05F;

            if (this.isInWater())
            {
                for (int j1 = 0; j1 < 4; ++j1)
                {
                    f3 = 0.25F;
                    this.worldObj.spawnParticle("bubble", this.posX - this.motionX * (double)f3, this.posY - this.motionY * (double)f3, this.posZ - this.motionZ * (double)f3, this.motionX, this.motionY, this.motionZ);
                }

                f4 = 0.8F;
            }

            this.motionX *= (double)f4;
            this.motionY *= (double)f4;
            this.motionZ *= (double)f4;
            this.motionY -= (double)f1;
            this.setPosition(this.posX, this.posY, this.posZ);
            this.doBlockCollisions();
        }
    }

    /**
     * (abstract) Protected helper method to write subclass entity data to NBT.
     */
    public void writeEntityToNBT(NBTTagCompound par1NBTTagCompound)
    {
        par1NBTTagCompound.setShort("xTile", (short)this.xTile);
        par1NBTTagCompound.setShort("yTile", (short)this.yTile);
        par1NBTTagCompound.setShort("zTile", (short)this.zTile);
        par1NBTTagCompound.setByte("inTile", (byte)this.inTile);
        par1NBTTagCompound.setByte("inData", (byte)this.inData);
        par1NBTTagCompound.setByte("shake", (byte)this.arrowShake);
        par1NBTTagCompound.setByte("inGround", (byte)(this.inGround ? 1 : 0));
        par1NBTTagCompound.setDouble("damage", this.damage);
    }

    /**
     * (abstract) Protected helper method to read subclass entity data from NBT.
     */
    public void readEntityFromNBT(NBTTagCompound par1NBTTagCompound)
    {
        this.xTile = par1NBTTagCompound.getShort("xTile");
        this.yTile = par1NBTTagCompound.getShort("yTile");
        this.zTile = par1NBTTagCompound.getShort("zTile");
        this.inTile = par1NBTTagCompound.getByte("inTile") & 255;
        this.inData = par1NBTTagCompound.getByte("inData") & 255;
        this.arrowShake = par1NBTTagCompound.getByte("shake") & 255;
        this.inGround = par1NBTTagCompound.getByte("inGround") == 1;

        if (par1NBTTagCompound.hasKey("damage"))
        {
            this.damage = par1NBTTagCompound.getDouble("damage");
        }
    }

    /**
     * Called by a player entity when they collide with an entity
     */
    public void onCollideWithPlayer(EntityPlayer par1EntityPlayer)
    {
        if (!this.worldObj.isRemote && this.inGround && this.arrowShake <= 0)
        {
            boolean flag = par1EntityPlayer.capabilities.isCreativeMode;

            if (flag)
            {
                //this.playSound("random.pop", 0.2F, ((this.rand.nextFloat() - this.rand.nextFloat()) * 0.7F + 1.0F) * 2.0F);
                par1EntityPlayer.onItemPickup(this, 1);
                this.setDead();
            }
        }
    }

    /**
     * returns if this entity triggers Block.onEntityWalking on the blocks they walk on. used for spiders and wolves to
     * prevent them from trampling crops
     */
    protected boolean canTriggerWalking()
    {
        return false;
    }

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

    public void setDamage(double par1)
    {
        this.damage = par1;
    }

    public double getDamage()
    {
        return this.damage;
    }

    /**
     * Sets the amount of knockback the arrow applies when it hits a mob.
     */
    public void setKnockbackStrength(int par1)
    {
        this.knockbackStrength = par1;
    }

    /**
     * If returns false, the item will not inflict any damage against entities.
     */
    public boolean canAttackWithItem()
    {
        return false;
    }

    /**
     * Whether the arrow has a stream of critical hit particles flying behind it.
     */
    public void setIsCritical(boolean par1)
    {
        byte b0 = this.dataWatcher.getWatchableObjectByte(16);

        if (par1)
        {
            this.dataWatcher.updateObject(16, Byte.valueOf((byte)(b0 | 1)));
        }
        else
        {
            this.dataWatcher.updateObject(16, Byte.valueOf((byte)(b0 & -2)));
        }
    }

    /**
     * Whether the arrow has a stream of critical hit particles flying behind it.
     */
    public boolean getIsCritical()
    {
        byte b0 = this.dataWatcher.getWatchableObjectByte(16);
        return (b0 & 1) != 0;
    }
}

 

 

 

next is RenderFrostShard

 

 

package Mod_Ores.Items.Entity;

import cpw.mods.fml.relauncher.Side;
import cpw.mods.fml.relauncher.SideOnly;
import net.minecraft.client.renderer.Tessellator;
import net.minecraft.client.renderer.entity.Render;
import net.minecraft.entity.Entity;
import net.minecraft.entity.projectile.EntityArrow;
import net.minecraft.entity.projectile.EntityPotion;
import net.minecraft.item.Item;
import net.minecraft.item.ItemPotion;
import net.minecraft.potion.PotionHelper;
import net.minecraft.util.Icon;
import net.minecraft.util.MathHelper;
import net.minecraft.util.ResourceLocation;

import org.lwjgl.opengl.GL11;
import org.lwjgl.opengl.GL12;

@SideOnly(Side.CLIENT)
public class RenderFrostShard extends Render
{
private static final ResourceLocation field_110780_a = new ResourceLocation("soulforest:textures/entities/Frost_shard.png");

    /**
     * Actually renders the given argument. This is a synthetic bridge method, always casting down its argument and then
     * handing it off to a worker function which does the actual work. In all probabilty, the class Render is generic
     * (Render<T extends Entity) and this method has signature public void doRender(T entity, double d, double d1,
     * double d2, float f, float f1). But JAD is pre 1.5 so doesn't do that.
     */
    public void renderFrostShard(EntityFrostShard par1EntityFrostShard, double par2, double par4, double par6, float par8, float par9)
    {
        this.func_110777_b(par1EntityFrostShard);
        GL11.glPushMatrix();
        GL11.glTranslatef((float)par2, (float)par4, (float)par6);
        GL11.glRotatef(par1EntityFrostShard.prevRotationYaw + (par1EntityFrostShard.rotationYaw - par1EntityFrostShard.prevRotationYaw) * par9 - 90.0F, 0.0F, 1.0F, 0.0F);
        GL11.glRotatef(par1EntityFrostShard.prevRotationPitch + (par1EntityFrostShard.rotationPitch - par1EntityFrostShard.prevRotationPitch) * par9, 0.0F, 0.0F, 1.0F);
        Tessellator tessellator = Tessellator.instance;
        byte b0 = 0;
        float f2 = 0.0F;
        float f3 = 0.5F;
        float f4 = (float)(0 + b0 * 10) / 32.0F;
        float f5 = (float)(5 + b0 * 10) / 32.0F;
        float f6 = 0.0F;
        float f7 = 0.15625F;
        float f8 = (float)(5 + b0 * 10) / 32.0F;
        float f9 = (float)(10 + b0 * 10) / 32.0F;
        float f10 = 0.05625F;
        GL11.glEnable(GL12.GL_RESCALE_NORMAL);
        float f11 = (float)par1EntityFrostShard.arrowShake - par9;

        if (f11 > 0.0F)
        {
            float f12 = -MathHelper.sin(f11 * 3.0F) * f11;
            GL11.glRotatef(f12, 0.0F, 0.0F, 1.0F);
        }

        GL11.glRotatef(45.0F, 1.0F, 0.0F, 0.0F);
        GL11.glScalef(f10, f10, f10);
        GL11.glTranslatef(-4.0F, 0.0F, 0.0F);
        GL11.glNormal3f(f10, 0.0F, 0.0F);
        tessellator.startDrawingQuads();
        tessellator.addVertexWithUV(-7.0D, -2.0D, -2.0D, (double)f6, (double)f8);
        tessellator.addVertexWithUV(-7.0D, -2.0D, 2.0D, (double)f7, (double)f8);
        tessellator.addVertexWithUV(-7.0D, 2.0D, 2.0D, (double)f7, (double)f9);
        tessellator.addVertexWithUV(-7.0D, 2.0D, -2.0D, (double)f6, (double)f9);
        tessellator.draw();
        GL11.glNormal3f(-f10, 0.0F, 0.0F);
        tessellator.startDrawingQuads();
        tessellator.addVertexWithUV(-7.0D, 2.0D, -2.0D, (double)f6, (double)f8);
        tessellator.addVertexWithUV(-7.0D, 2.0D, 2.0D, (double)f7, (double)f8);
        tessellator.addVertexWithUV(-7.0D, -2.0D, 2.0D, (double)f7, (double)f9);
        tessellator.addVertexWithUV(-7.0D, -2.0D, -2.0D, (double)f6, (double)f9);
        tessellator.draw();

        for (int i = 0; i < 4; ++i)
        {
            GL11.glRotatef(90.0F, 1.0F, 0.0F, 0.0F);
            GL11.glNormal3f(0.0F, 0.0F, f10);
            tessellator.startDrawingQuads();
            tessellator.addVertexWithUV(-8.0D, -2.0D, 0.0D, (double)f2, (double)f4);
            tessellator.addVertexWithUV(8.0D, -2.0D, 0.0D, (double)f3, (double)f4);
            tessellator.addVertexWithUV(8.0D, 2.0D, 0.0D, (double)f3, (double)f5);
            tessellator.addVertexWithUV(-8.0D, 2.0D, 0.0D, (double)f2, (double)f5);
            tessellator.draw();
        }

        GL11.glDisable(GL12.GL_RESCALE_NORMAL);
        GL11.glPopMatrix();
    }

    /**
     * Actually renders the given argument. This is a synthetic bridge method, always casting down its argument and then
     * handing it off to a worker function which does the actual work. In all probabilty, the class Render is generic
     * (Render<T extends Entity) and this method has signature public void doRender(T entity, double d, double d1,
     * double d2, float f, float f1). But JAD is pre 1.5 so doesn't do that.
     */
    public void doRender(Entity par1Entity, double par2, double par4, double par6, float par8, float par9)
    {
        this.renderFrostShard((EntityFrostShard)par1Entity, par2, par4, par6, par8, par9);
    }

    protected ResourceLocation func_110779_a(EntityFrostShard par1EntityArrow)
    {
        return field_110780_a;
    }

    protected ResourceLocation func_110775_a(Entity par1Entity)
    {
        return this.func_110779_a((EntityFrostShard)par1Entity);
    }

}

 

 

 

then the FrostWand

 

 

package Mod_Ores.Items.Tools;

import java.util.List;

import net.minecraft.client.Minecraft;
import net.minecraft.client.particle.EntityCrit2FX;
import net.minecraft.enchantment.Enchantment;
import net.minecraft.enchantment.EnchantmentHelper;
import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.item.EnumAction;
import net.minecraft.item.EnumRarity;
import net.minecraft.item.Item;
import net.minecraft.item.ItemBow;
import net.minecraft.item.ItemStack;
import net.minecraft.world.World;
import net.minecraftforge.common.MinecraftForge;
import net.minecraftforge.event.entity.player.ArrowLooseEvent;
import net.minecraftforge.event.entity.player.ArrowNockEvent;
import Mod_Ores.soul_forest;
import Mod_Ores.Init.InitItems;
import Mod_Ores.Init.SoulConfig;
import Mod_Ores.Items.Entity.EntityFrostShard;
import Mod_Ores.Particles.EntityFrostCrit2FX;
import Mod_Ores.Particles.RenderParticles;
import cpw.mods.fml.common.registry.LanguageRegistry;
import cpw.mods.fml.relauncher.Side;
import cpw.mods.fml.relauncher.SideOnly;

public class ItemFrostWand extends Item
{
private static Minecraft mc = Minecraft.getMinecraft();
private static World theWorld = mc.theWorld;
	/**
	 * ItemFrostWand Constructor
	 * @param id this is the Frost Wand ID
	 * @param Unlname This is the Unlocalized Name
	 * @param InGname This is the Name that you will see In game
	 * @param EnumToolMaterial This will set the tools material
	 */
	 public ItemFrostWand(int id, String Unlname, String InGname) //id - item ID, UName - Unlocalized Name, IGName - IngameName
	 {
		super(id); //This super will load item ID and UName
	  	setCreativeTab(soul_forest.tabSoulTools); //Set Tab in ModBase.class and plase it here (with many items its VERY code-shortening), this will load unlocalized name
	  	setUnlocalizedName(Unlname);
	  	LanguageRegistry.addName(this, InGname);
	  	this.setMaxStackSize(1);
	 }

	 @Override
	 public int getMaxItemUseDuration(ItemStack par1ItemStack)
	 {
	        return 300;
	 }

	@Override
    public ItemStack onEaten(ItemStack par1ItemStack, World par2World, EntityPlayer par3EntityPlayer)
    {
        return par1ItemStack;
    }

	@Override
    public ItemStack onItemRightClick(ItemStack par1ItemStack, World par2World, EntityPlayer par3EntityPlayer)
    {

		int j = this.getMaxItemUseDuration(par1ItemStack);

        boolean flag = par3EntityPlayer.capabilities.isCreativeMode || EnchantmentHelper.getEnchantmentLevel(Enchantment.infinity.effectId, par1ItemStack) > 0;

        if (flag || par3EntityPlayer.inventory.hasItem(InitItems.FrostShard.itemID))
        {
            float f = (float)j / 20.0F;
            f = (f * f + f * 2.0F) / 3.0F;

            if ((double)f < 0.1D)
            {
                //return;
            }

            if (f > 1.0F)
            {
                f = 1.0F;
            }

            EntityFrostShard entityfrostshard = new EntityFrostShard(par2World, par3EntityPlayer, f * 2.0F);

            if (f == 1.0F)
            {
            	entityfrostshard.setIsCritical(true);
            }

            int k = EnchantmentHelper.getEnchantmentLevel(Enchantment.power.effectId, par1ItemStack);

            if (k > 0)
            {
            	entityfrostshard.setDamage(entityfrostshard.getDamage() + (double)k * 0.5D + 0.5D);
            }

            int l = EnchantmentHelper.getEnchantmentLevel(Enchantment.punch.effectId, par1ItemStack);

            if (l > 0)
            {
            	entityfrostshard.setKnockbackStrength(1);
            }

            if (EnchantmentHelper.getEnchantmentLevel(Enchantment.flame.effectId, par1ItemStack) > 0)
            {
            	entityfrostshard.setFire(100);
            }

            par1ItemStack.damageItem(1, par3EntityPlayer);
            par2World.playSoundAtEntity(par3EntityPlayer, "random.bow", 1.0F, 1.0F / (itemRand.nextFloat() * 0.4F + 1.2F) + f * 0.5F);
            
            if(!flag)
            {
            	par3EntityPlayer.inventory.consumeInventoryItem(InitItems.FrostShard.itemID);
            }	            

            par2World.spawnEntityInWorld(entityfrostshard);
            return par1ItemStack;
        }
        
        return par1ItemStack;	      
    }
    
	public EnumRarity getRarity(ItemStack par1ItemStack)
	{
		return EnumRarity.rare;
	}

	@Override
	public void addInformation(ItemStack par1ItemStack, EntityPlayer par2EntityPlayer, List par3List, boolean par4) 
	{
		par3List.add("Powerfull yet painfull");
		par3List.add("");
		par3List.add("\u00A73Ammo : Frost Shards");
	}

    @SideOnly(Side.CLIENT)
    public boolean hasEffect(ItemStack par1ItemStack)
    {
        return true;
    }
}

 

 

 

last but not least the registers

EntityRegistry.registerGlobalEntityID(EntityFrostShard.class, "Frost Shard", EntityRegistry.findGlobalUniqueEntityId());
LanguageRegistry.instance().addStringLocalization("entity.soulforest.Frost Shard.name", "Frost 
Shard");

RenderingRegistry.registerEntityRenderingHandler(EntityFrostShard.class, new RenderFrostShard());

 

I appreciate your help, thanks!

Posted

the render code seems fine (of course i have no idea what it renders :P)

 

depending on how you register that (which should be in your client proxy) there is nothing wrong syntax/code wise with it

 

try shrinking you render code. ive noticed that you simply copied the code from another renderer, what happens when you do that is if it doesnt work you have no idea wtf is happening, try to draw like 1 quad, then 2, 3, 4, 5 etc til you have the model you want :)

how to debug 101:http://www.minecraftforge.net/wiki/Debug_101

-hydroflame, author of the forge revolution-

Posted
entity spawn like a white box

thats what i could visualize from the code

 

registers in the commonproxy

server side shouldnt know about this, commonproxy is for both side thats why i think it should be in client proxy only

 

How do i make it so that that box is rendered as the item with that texture i want.

well you're not binding the texture anywhere in your render code so that would make sens theres no texture attached (or the wrong texture)

how to debug 101:http://www.minecraftforge.net/wiki/Debug_101

-hydroflame, author of the forge revolution-

Posted

yeah fo sho

 

example:

 

 

 

in TheMod:

public static final String modid = "forgerev"

 

declaration of the ResourceLocation:

public static final ResourceLocation wing = new ResourceLocation(TheMod.modid, "FR/GUI/wing.png");

 

filesystem location:

"mcp/src/minecraft/forgerev/FR/GUI/wing.png"

 

usage example:

private void renderWing(EntityPlayer player, ModelBiped mb){

EntityPlayer playerlocal = Minecraft.getMinecraft().thePlayer;

Tessellator tessellator = Tessellator.instance;

float z = -0.4f;

float y = 0.0f;

//wing render start

Minecraft.getMinecraft().renderEngine.func_110577_a(ForgeRevCommonProxy.wing);

GL11.glPushMatrix();

double ert  = Minecraft.getMinecraft().timer.renderPartialTicks;

double py = 0;

if(player != Minecraft.getMinecraft().thePlayer){

py = (playerlocal.lastTickPosY+ert*(playerlocal.posY-playerlocal.lastTickPosY))-(player.lastTickPosY+ert*(player.posY-player.lastTickPosY))-1.562;

}

 

double px = (Minecraft.getMinecraft().thePlayer.lastTickPosX+ert*(Minecraft.getMinecraft().thePlayer.posX-Minecraft.getMinecraft().thePlayer.lastTickPosX))-(player.lastTickPosX+ert*(player.posX-player.lastTickPosX));

 

double pz = (Minecraft.getMinecraft().thePlayer.lastTickPosZ+ert*(Minecraft.getMinecraft().thePlayer.posZ-Minecraft.getMinecraft().thePlayer.lastTickPosZ))-(player.lastTickPosZ+ert*(player.posZ-player.lastTickPosZ));

GL11.glTranslated(-px, -py, -pz);

 

float rot = (float) Math.sin(tick/10f)*20;

GL11.glRotatef(-player.renderYawOffset, 0, 1, 0);

GL11.glTranslated(0, y, z);

GL11.glPushMatrix();

GL11.glRotatef(rot, 0, 1, 0);

tessellator.startDrawingQuads();

 

tessellator.setColorRGBA_F(1, 0, 0, 1);

tessellator.addVertexWithUV(-1, -1.6, 0, 0, 1);

tessellator.addVertexWithUV(-1, 1, 0, 0, 0);

tessellator.addVertexWithUV(0, 1, 0, 0.5f, 0);

tessellator.addVertexWithUV(0, -1.6, 0, 0.5f, 1);

 

tessellator.addVertexWithUV(-1, -1.6, 0, 0, 1);

tessellator.addVertexWithUV(0, -1.6, 0, 0.5f, 1);

tessellator.addVertexWithUV(0, 1, 0, 0.5f, 0);

tessellator.addVertexWithUV(-1, 1, 0, 0, 0);

tessellator.draw();

GL11.glPopMatrix();

 

GL11.glPushMatrix();

GL11.glRotatef(-rot, 0, 1, 0);

tessellator.startDrawingQuads();

tessellator.setColorRGBA_F(1, 0, 0, 1);

tessellator.addVertexWithUV(0, -1.6, 0, 0.5f, 1);

tessellator.addVertexWithUV(0, 1, 0, 0.5f, 0);

tessellator.addVertexWithUV(1, 1, 0, 1, 0);

tessellator.addVertexWithUV(1, -1.6, 0, 1, 1);

 

tessellator.addVertexWithUV(0, -1.6, 0, 0.5f, 1);

tessellator.addVertexWithUV(1, -1.6, 0, 1, 1);

tessellator.addVertexWithUV(1, 1, 0, 1, 0);

tessellator.addVertexWithUV(0, 1, 0, 0.5f, 0);

tessellator.draw();

GL11.glPopMatrix();

GL11.glPopMatrix();

}

 

 

how to debug 101:http://www.minecraftforge.net/wiki/Debug_101

-hydroflame, author of the forge revolution-

Posted

It apperently still gives me the white box thing, i have put a public ResourceLocation in my CommonProxy and added in the line you highlighted. Also i noticed that theres a ResourceLocation Function in the RenderFrostShard.class

    protected ResourceLocation func_110779_a(EntityFrostShard par1EntityArrow)
    {
        return field_110780_a;
    }

    @Override
    protected ResourceLocation func_110775_a(Entity par1Entity)
    {
        return this.func_110779_a((EntityFrostShard)par1Entity);
    }

i first had that field_110780_a to be the resourcelocation as minecraft did the same thing for an arrow

Posted

yeah ive never use the field but technicly it shouldnt make a difference

 

btw it doesnt HAVE to be in your common proxy, it could (should) be in the render class if its the only class that needs it

 

 

sooo couple of things

 

first maybe for some reason texture are disabled

do this before everything

 

GL11.glEnable(GL11.GL_TEXTURE_2D);

 

next make sure your image loaded correctly (you will see it in the logs if it screws up)

 

after that you will notice that vanilla code is resizing the images:

tessellator.addVertexWithUV(-7.0D, -2.0D, -2.0D, (double)f6, (double)f8);

        tessellator.addVertexWithUV(-7.0D, -2.0D, 2.0D, (double)f7, (double)f8);

        tessellator.addVertexWithUV(-7.0D, 2.0D, 2.0D, (double)f7, (double)f9);

        tessellator.addVertexWithUV(-7.0D, 2.0D, -2.0D, (double)f6, (double)f9);

(note the difference between vanilla code and mine)

 

basicly if your image is really huge there would be a problem

 

after that i have a few ideas but well start with that

 

 

 

ps: ive looked at your mod and its pretty legit !

how to debug 101:http://www.minecraftforge.net/wiki/Debug_101

-hydroflame, author of the forge revolution-

Posted

Okay i tried adding that glEnable thing, but that didn't do much (i know that my file is loaded correctly as it doesn't give errors and i have it in the same folder as the other entities and i believe they are all rendered the exact same way, atleast according to minecraft xD)

 

And about the image size, its an item texture so :P

 

Then i am not sure what differences between your code there and this:

        tessellator.addVertexWithUV(-7.0D, -2.0D, -2.0D, (double)f6, (double)f8);
        tessellator.addVertexWithUV(-7.0D, -2.0D, 2.0D, (double)f7, (double)f8);
        tessellator.addVertexWithUV(-7.0D, 2.0D, 2.0D, (double)f7, (double)f9);
        tessellator.addVertexWithUV(-7.0D, 2.0D, -2.0D, (double)f6, (double)f9);

 

And thanks that you like my mod, i have put quite some time in it (which i enjoy doing, like right now xD). I try to add lots of custom stuff, put together in a nice package of cool things.

Posted

hmm, then honestly I'm not sure, can you try something more basic:

 

 

GL11.glPushMatrix();
GL11.glTranslated(par2, par4, par6);
Minecraft.getMinecraft().renderEngine.func_110577_a(ForgeRevCommonProxy.wing);
Tessellator t = Tessellator.instance;
t.startDrawingQuads();
t.addVertexWithUV(0, 0, 0, 0, 0);
t.addVertexWithUV(0, 1, 0, 0, 1);
t.addVertexWithUV(1, 1, 0, 1, 1);
t.addVertexWithUV(1, 0, 0, 1, 0);

t.addVertexWithUV(0, 0, 0, 0, 0);
t.addVertexWithUV(1, 0, 0, 1, 0);
t.addVertexWithUV(1, 1, 0, 1, 1);
t.addVertexWithUV(0, 1, 0, 0, 1);
t.draw();
GL11.glPopMatrix();

 

try this and throw your shard diagonally (because it wont rotate so at certain angle you will be 90 degree compared to it and wont see shit)

how to debug 101:http://www.minecraftforge.net/wiki/Debug_101

-hydroflame, author of the forge revolution-

Posted

That basically makes it not work :P, with my code i can see it fly and it leaves the crit particles behind as i wanted. All that doesn't work is the texture... It is so odd

 

 

Off topic : could you take a look here : http://www.minecraftforge.net/forum/index.php/topic,11491.0.html

I got this weird issue with a portal.... it works like it should, but the only thing it won't do is when you travel back to the normal world you spawn somewhere underground.

Posted
That basically makes it not work

nothign shows up ? somethign shows up ?

 

because what you want right now is to have somethign that shows up with a texture, then you can work from there

how to debug 101:http://www.minecraftforge.net/wiki/Debug_101

-hydroflame, author of the forge revolution-

Posted

yeah my old code might not necessarelly work because i typed it all inside the forums :\

 

 

heres one that literally uses only the tess , hope it can help

 

@Override

public void doRender(Entity par1Entity, double par2, double par4, double par6, float par8, float par9)

    {

// EntityMeteor fb = (EntityMeteor)par1Entity;

double xzSize = par1Entity.boundingBox.maxX -par1Entity.boundingBox.minX;

double ySize = par1Entity.boundingBox.maxY-par1Entity.boundingBox.minY;

        GL11.glPushMatrix();

        Tessellator tessellator = Tessellator.instance;

        Minecraft.getMinecraft().renderEngine.func_110577_a(ForgeRevCommonProxy.blankTexture);

        tessellator.startDrawingQuads();

        tessellator.addVertexWithUV(par2-xzSize/2, par4, par6-xzSize/2, 0, 0);

        tessellator.addVertexWithUV(par2-xzSize/2, par4+ySize, par6-xzSize/2, 0, 1);

        tessellator.addVertexWithUV(par2+xzSize/2, par4+ySize, par6-xzSize/2, 1, 1);

        tessellator.addVertexWithUV(par2+xzSize/2, par4, par6-xzSize/2, 1, 0);

       

        tessellator.addVertexWithUV(par2-xzSize/2, par4, par6-xzSize/2, 0, 0);

        tessellator.addVertexWithUV(par2+xzSize/2, par4, par6-xzSize/2, 1, 0);

        tessellator.addVertexWithUV(par2+xzSize/2, par4+ySize, par6-xzSize/2, 1, 1);

        tessellator.addVertexWithUV(par2-xzSize/2, par4+ySize, par6-xzSize/2, 0, 1);

       

        tessellator.addVertexWithUV(par2-xzSize/2, par4, par6-xzSize/2, 0, 0);

        tessellator.addVertexWithUV(par2-xzSize/2, par4, par6+xzSize/2, 0, 1);

        tessellator.addVertexWithUV(par2+xzSize/2, par4, par6+xzSize/2, 1, 1);

        tessellator.addVertexWithUV(par2+xzSize/2, par4, par6-xzSize/2, 1, 0);

       

        tessellator.addVertexWithUV(par2-xzSize/2, par4, par6-xzSize/2, 0, 0);

        tessellator.addVertexWithUV(par2+xzSize/2, par4, par6-xzSize/2, 1, 0);

        tessellator.addVertexWithUV(par2+xzSize/2, par4, par6+xzSize/2, 1, 1);

        tessellator.addVertexWithUV(par2-xzSize/2, par4, par6+xzSize/2, 0, 1);

       

        tessellator.addVertexWithUV(par2-xzSize/2, par4, par6-xzSize/2, 0, 0);

        tessellator.addVertexWithUV(par2-xzSize/2, par4, par6+xzSize/2, 0, 1);

        tessellator.addVertexWithUV(par2-xzSize/2, par4+ySize, par6+xzSize/2, 1, 1);

        tessellator.addVertexWithUV(par2-xzSize/2, par4+ySize, par6-xzSize/2, 1, 0);

       

        tessellator.addVertexWithUV(par2-xzSize/2, par4, par6-xzSize/2, 0, 0);

        tessellator.addVertexWithUV(par2-xzSize/2, par4+ySize, par6-xzSize/2, 1, 0);

        tessellator.addVertexWithUV(par2-xzSize/2, par4+ySize, par6+xzSize/2, 1, 1);

        tessellator.addVertexWithUV(par2-xzSize/2, par4, par6+xzSize/2, 0, 1);

        tessellator.draw();

        GL11.glPopMatrix();

    }

how to debug 101:http://www.minecraftforge.net/wiki/Debug_101

-hydroflame, author of the forge revolution-

Posted

If you have those

public static final ResourceLocation wing = new ResourceLocation(TheMod.modid, "FR/GUI/wing.png");
...
Minecraft.getMinecraft().renderEngine.func_110577_a(ForgeRevCommonProxy.wing);

Your texture should be at:

mcp/src/minecraft/assets/'modid'/fr/gui/wing.png

 

Posted

they are, i have some entities (spells) that extends Entity directly and i have zero problem, its super weird

how to debug 101:http://www.minecraftforge.net/wiki/Debug_101

-hydroflame, author of the forge revolution-

Posted

is your mod open source, its one of those case id like to just import and check for myself

how to debug 101:http://www.minecraftforge.net/wiki/Debug_101

-hydroflame, author of the forge revolution-

Join the conversation

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

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

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

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

×   Your previous content has been restored.   Clear editor

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

Announcements



  • Recently Browsing

    • No registered users viewing this page.
  • Posts

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

×
×
  • Create New...

Important Information

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