Jump to content

Recommended Posts

Posted

How would I go with making a texture for an EntityThrowable? I want to add a dagger that can be thrown, I have done that but it doesn't have a texture. I bet there's a Forge hook for this, could anybody show me an example?

Posted

I'd suggest you make your own render file similar to RenderArrow.

If you don't mind how silly your dagger entity would look with the standard throwable renderer, just use RenderSnowball.

Posted
  On 4/11/2013 at 5:59 PM, FatherToast said:

I'd suggest you make your own render file similar to RenderArrow.

If you don't mind how silly your dagger entity would look with the standard throwable renderer, just use RenderSnowball.

Yea well the thing is I don't know how to change the texture file, do you? :)

Posted

Use RenderFireball code, I think it's simpler.

 

        Icon icon = Item.fireballCharge.getIconFromDamage(0);
        this.loadTexture("/gui/items.png");
        Tessellator tessellator = Tessellator.instance;
        float f3 = icon.getMinU();
        float f4 = icon.getMaxU();
        float f5 = icon.getMinV();
        float f6 = icon.getMaxV();

 

Replace the icon with what You need. Or You could use Techne, there are some tutorials I may recommend.

 

How to create models using Techne.

http://pixelmon.wikinet.org/wiki/Techne_Tutorial

 

How to texture models using Techne.

http://dragonith.deviantart.com/art/Techne-Tutorial-Texturing-I-264650065

 

http://dragonith.deviantart.com/art/Techne-Tutorial-Texturing-II-264719834

 

You would also require another tutorial, on how to use Techne generated code to render entities. I've been using it to render items so far.

Posted
  On 4/12/2013 at 12:14 PM, Senitiel said:

Use RenderFireball code, I think it's simpler.

I used the fireball code, but it still doesn't render. Here's my code:

RenderSilverDagger:

 

  Reveal hidden contents

 

ClientProxy:

 

  Reveal hidden contents

 

Questions:

  • What does the float parameter in the RenderSilverDagger constructor do?
  • Do I need to register anything more?
  • Is there anything more you'd recommend?

Posted

Well, if it rendered, It would crash, as You cannot cast EntityDagger into EntityFireball in doRenderFireball. Change types used in method.

 

Second: in EntitySilverDagger class, you have to define a constructor, which takes only world as parameter. Even if You don't use it anywhere, rendering functions still need it.

 

Thirdly, you'll need also to register EntityID in EntityRegistry

 

//RegisterRenders is a fine place for this line
EntityRegistry.registerGlobalEntityID(EntitySilverDagger.class, "SilverDagger", ModLoader.getUniqueEntityId());

 

And register entity in Your load method

 

EntityRegistry.registerModEntity(EntitySilverDagger.class, "SilverDagger", 1, instance, 160, 1, false);

 

Does it work now?

 

The float is not needed. Remove it.

Posted
  On 4/12/2013 at 9:05 PM, Senitiel said:

Well, if it rendered, It would crash, as You cannot cast EntityDagger into EntityFireball in doRenderFireball. Change types used in method.

 

Second: in EntitySilverDagger class, you have to define a constructor, which takes only world as parameter. Even if You don't use it anywhere, rendering functions still need it.

 

Thirdly, you'll need also to register EntityID in EntityRegistry

 

Does it work now?

I'm really sorry about all these questions but I really just want to add a simple snowball with another texture. Now, I followed your steps provided here and I got it to render! :D but it renders as a white cube flying in the air, I don't want it like a cube, I just want the texture flying in the air... If I remove the float, then I'll have to remove these two lines of code:

float f2 = this.field_77002_a;
GL11.glScalef(f2 / 1.0F, f2 / 1.0F, f2 / 1.0F);

It doesn't change anything so I wonder if you know what they do? Also since it doesn't render any texture, I can guess that I've put a wrong path in it. Is this correct?

Icon icon = SilverDagger.swordSilver.getIconFromDamage(0);
loadTexture("/mods/silverdagger/textures/items/Silver_Dagger.png");

Or should I change the path somehow? Thank you so much for this help

Posted

I have a similar problem as well i have a throwable snowball with a rock in it :/ i just wanted it to look like a snowball ? it currently renders as a white cube as well, i hope you find a way to solve this soon :)

Use examples, i have aspergers.

Examples make sense to me.

Posted

I'm not sure if it will work for You  - it worked when I tried some tests myself, but then You may be missing some code I'm not aware You don't have.

 

loadTexture("/mods/silverdagger/textures/items/Silver_Dagger.png");

This should rather stay

 

this.loadTexture("/gui/items.png");

 

Important is that

 

Icon icon = SilverDagger.swordSilver.getIconFromDamage(0);

 

Try it. Now, if it works, further explanation is not necessary.

 

If not:

 

1. Delete (or better comment, using ctrl+/ shortcut) the whole render code (I mean doRender function), leaving it

an empty function.

 

2.Try to run it - if

a) it still renders like white cube, that would mean that

Your render code isn't even used. You would have to double check render registering, for example using

 

the tutorial I provided. Part II and part III contain info about rendering.

 

b) the entity simply doesn't show, that the thing that needs checking is if Your getIconFromDamage returns initialized Icon. You may need to move item registration to preInit method if it doesn't.

Posted
  On 4/13/2013 at 3:44 PM, Senitiel said:

I'm not sure if it will work for You  - it worked when I tried some tests myself, but then You may be missing some code I'm not aware You don't have.

I got it to work! The problem was in the render registration, I registered it in the registerRenderers method in ClientProxy.java at first, but then I tried to do it in the load method and it worked! Do you know why it didn't work in ClientProxy? I did initialize it in the main class... :S

 

Btw, I read some of the tutorial you provided, that seriously is a really great tutorial! I will definitely use it in the future! Thanks a lot :D

Posted

I'm glad that I helped You, Raggarcowboy.

 

As for You, ashtonr12:

 

  Quote
and you use modloader. in your tutorials which makes the mod non smp compatible :/

 

Hm. I use it in my mod as well, and it works in multi, doesn't crash server. Are You sure that it causes issues?

 

As for code, this works fine. The example item is thrownItem and entitythrownitem.

 

SpaceMarineMod.class

 

  Reveal hidden contents

 

 

ClientProxy

 

  Reveal hidden contents

 

 

 

ThrownItemEntity

 

  Reveal hidden contents

 

 

RenderThrownItem

 

  Reveal hidden contents

 

Posted
  On 4/13/2013 at 5:04 PM, ashtonr12 said:

please post our working code, PLEASE!...

<3

I would go ahead and follow Senitiels code, however if it still doesn't work, the part that fixed it for me was switching place of...

RenderingRegistry.registerEntityRenderingHandler(EntitySilverDagger.class, new RenderSilverDagger());

from ClientProxy.java to your load/init-method in your main mod-class, like so

@Init
public void load(FMLPreInitializationEvent event)
{
     RenderingRegistry.registerEntityRenderingHandler(EntityBlasterBolt.class, new RenderBlasterBolt());
}

Good luck! :)

Posted

ok so i added and followed the tutorials twice but the entity doesnt seem to render, i have it so that its basiccaly exactly the same as a snowball, i think i must have missed a line of code :( whne i right click the RockSnowball is consumed (good) but the entity doesnt show(bab) but when i shoot it at water i can hear it splash (good) so its obvoisely there but not rendering also nothing happens when i shoot it at living entities such as cows.

 

Main Class;

EntityRegistry.registerModEntity(EntityRockSnowball.class, "RockSnowball", 2, this , 250, 1, false);

Item Class;

package ashtonsmod.common;

import net.minecraft.block.Block;
import net.minecraft.client.renderer.texture.IconRegister;
import net.minecraft.creativetab.CreativeTabs;
import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.entity.projectile.EntitySnowball;
import net.minecraft.item.Item;
import net.minecraft.item.ItemStack;
import net.minecraft.world.World;

public class RockSnowball extends Item
{
    public RockSnowball(int par1)
    {
        super(par1);
        this.maxStackSize = 64;
    }
    
    public ItemStack onItemRightClick(ItemStack par1ItemStack, World par2World, EntityPlayer par3EntityPlayer)
    {
        if (!par3EntityPlayer.capabilities.isCreativeMode)
        {
            --par1ItemStack.stackSize;
        }

        par2World.playSoundAtEntity(par3EntityPlayer, "random.bow", 0.5F, 0.4F / (itemRand.nextFloat() * 0.4F + 0.8F));

        if (!par2World.isRemote)
        {
            par2World.spawnEntityInWorld(new EntityRockSnowball(par2World, par3EntityPlayer));
        }

        return par1ItemStack;
    }
    
    @Override
   	public void updateIcons(IconRegister par1IconRegister)
    {
        this.iconIndex = par1IconRegister.registerIcon("ashtonsmod:RockSnowball");
    }}

Entity Class

package ashtonsmod.common;

import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.entity.projectile.EntityThrowable;
import net.minecraft.nbt.NBTTagCompound;
import net.minecraft.util.MovingObjectPosition;
import net.minecraft.world.World;

public class EntityRockSnowball extends EntityThrowable{

public EntityRockSnowball(World par1World) {
  super(par1World);
  // TODO Auto-generated constructor stub
}

public EntityRockSnowball(World par2World, EntityPlayer par3EntityPlayer) {
  super(par2World,par3EntityPlayer);
}

@Override
protected void entityInit() {

}

@Override
public void readEntityFromNBT(NBTTagCompound nbttagcompound) {

}

@Override
public void writeEntityToNBT(NBTTagCompound nbttagcompound) {

}

@Override
protected void onImpact(MovingObjectPosition movingobjectposition) {
  this.setDead();
  
}

}

Render Class;

package ashtonsmod.common;

import net.minecraft.client.renderer.Tessellator;
import net.minecraft.client.renderer.entity.Render;
import net.minecraft.entity.Entity;
import net.minecraft.util.Icon;

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

public class RenderRockSnowball extends Render
{

public RenderRockSnowball()
{
} 

public void doRenderThrownItem(EntityRockSnowball par1EntityThrownItem, double par2, double par4, double par6, float par8, float par9)
{
    GL11.glPushMatrix();
    GL11.glTranslatef((float)par2, (float)par4, (float)par6);
    GL11.glEnable(GL12.GL_RESCALE_NORMAL);
    float f2 = 1.0F;
    GL11.glScalef(f2 / 1.0F, f2 / 1.0F, f2 / 1.0F);
    Icon icon = ashtonsmod.RockSnowball.getIconFromDamage(0);
    this.loadTexture("ashtonsmod:RockSnowball");
    Tessellator tessellator = Tessellator.instance;
    float f3 = icon.getMinU();
    float f4 = icon.getMaxU();
    float f5 = icon.getMinV();
    float f6 = icon.getMaxV();
    float f7 = 1.0F;
    float f8 = 0.5F;
    float f9 = 0.25F;
    GL11.glRotatef(180.0F - this.renderManager.playerViewY, 0.0F, 1.0F, 0.0F);
    GL11.glRotatef(-this.renderManager.playerViewX, 1.0F, 0.0F, 0.0F);
    tessellator.startDrawingQuads();
    tessellator.setNormal(0.0F, 1.0F, 0.0F);
    tessellator.addVertexWithUV((double)(0.0F - f8), (double)(0.0F - f9), 0.0D, (double)f3, (double)f6);
    tessellator.addVertexWithUV((double)(f7 - f8), (double)(0.0F - f9), 0.0D, (double)f4, (double)f6);
    tessellator.addVertexWithUV((double)(f7 - f8), (double)(1.0F - f9), 0.0D, (double)f4, (double)f5);
    tessellator.addVertexWithUV((double)(0.0F - f8), (double)(1.0F - f9), 0.0D, (double)f3, (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.doRenderRockSnowball((EntityRockSnowball)par1Entity, par2, par4, par6, par8, par9);
}

private void doRenderRockSnowball(EntityRockSnowball par1Entity, double par2,
	double par4, double par6, float par8, float par9) {

}

}

 

Client Proxy Class;

package ashtonsmod.client;

import ashtonsmod.common.EntityRockSnowball;
import ashtonsmod.common.RenderRockSnowball;
import ashtonsmod.common.RockSnowball;
import cpw.mods.fml.client.registry.RenderingRegistry;
import cpw.mods.fml.common.registry.EntityRegistry;
import net.minecraft.client.renderer.entity.Render;
import net.minecraft.src.ModLoader;
import net.minecraftforge.client.MinecraftForgeClient;

public class ClientProxyashtonsmod extends ashtonsmod.common.CommonProxy {
        	 @Override
             public void registerRenderers() {
              super.registerRenderers(); 
                 EntityRegistry.registerGlobalEntityID(EntityRockSnowball.class, "RockSnoball", ModLoader.getUniqueEntityId());
                 RenderingRegistry.registerEntityRenderingHandler(EntityRockSnowball.class, new RenderRockSnowball());
        }
        
        public void renderRegistry() {
        }
}

 

why these problems?

Use examples, i have aspergers.

Examples make sense to me.

Posted

Well, You were supposed to use RenderThrownItem it as the body for

 

private void doRenderRockSnowball(EntityRockSnowball par1Entity, double par2,
	double par4, double par6, float par8, float par9) {

}

 

Remember, there's no magic here - if a method isn't called anywhere, then it won't do anything. You may check it using Eclipse right click->show references

Posted

did you mean this part?

public void doRenderRockSnowball(EntityRockSnowball par1EntityRockSnowball, double par2, double par4, double par6, float par8, float par9)
{

i missed some words there but now it just shoots a white square that does not interact with the world

Use examples, i have aspergers.

Examples make sense to me.

Posted
  On 4/13/2013 at 9:10 PM, ashtonr12 said:

i was meant to use what as what?

Seems as your code has quite a lot of flaws... First of all, instead of "this.setDead();" in onImpact in your EntityRockSnowball class, use this code:

 

  Reveal hidden contents

 

That will damage the target and also spawn a snowball particle. You can change the number I've commented by to change the damage.

Second of all, in the doRenderThrownItem, replace...

this.loadTexture("ashtonsmod:RockSnowball");

... with...

this.loadTexture("/gui/items.png");

Third thing, inside the doRender function, put doRenderThrownItem(etc...) instead of doRenderRockSnowball(etc...) since this function is completely empty. Also you can delete the doRenderRockSnowball function (the last function of the render class) since it only takes unnecessary space.

 

Now if all of this still doesn't work, then take away the RenderingRegistry.registerEntityRenderingHandler(EntityRockSnowball.class, new RenderRockSnowball()); line from your ClientProxy and put it in the load/init function of your main class.

 

Hope this helped ;)

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

    • I made a new modpack compared to the last time I got this error message - one of the mods made the world harder to live in and laggier - and I got this error message upon world loading again. Here is the debug log, as I cannot find a crash report from today that correlates to this error message (I assume that's because the game didn't crash). Here is the mclogs link to said debug log. If there is anything else I can do, just let me know - I'm not great at this stuff so if this isn't the right way to go about this, tell me. I've read the FAQ but that doesn't magically make my problem solving skills that much better 😅 https://mclo.gs/Wb0s4E6
    • [00:43:03] [main/INFO]: ModLauncher running: args [--username, Pon4ic, --version, креейт РіРѕСЂРѕРґ, --gameDir, C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ, --assetsDir, C:\Users\biver\AppData\Roaming\.minecraft\assets, --assetIndex, 5, --uuid, 23eed3e43ab3452fb0164dffda5e81b5, --accessToken, вќ„вќ„вќ„вќ„вќ„вќ„вќ„вќ„, --clientId, null, --xuid, null, --userType, mojang, --versionType, modified, --width, 925, --height, 530, --launchTarget, forgeclient, --fml.forgeVersion, 47.4.0, --fml.mcVersion, 1.20.1, --fml.forgeGroup, net.minecraftforge, --fml.mcpVersion, 20230612.114412] [00:43:03] [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 [00:43:06] [main/INFO]: Loading ImmediateWindowProvider fmlearlywindow [00:43:06] [main/INFO]: Trying GL version 4.6 [00:43:06] [main/INFO]: Requested GL version 4.6 got version 4.6 [00:43:06] [main/INFO]: OptiFineTransformationService.onLoad [00:43:06] [main/INFO]: OptiFine ZIP file URL: union:/C:/Users/biver/AppData/Roaming/.minecraft/versions/креейт%20РіРѕСЂРѕРґ/mods/preview_OptiFine_1.20.1_HD_U_I6_pre6.jar%23346!/ [00:43:06] [main/INFO]: OptiFine ZIP file: C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods\preview_OptiFine_1.20.1_HD_U_I6_pre6.jar [00:43:06] [main/INFO]: Target.PRE_CLASS is available [00:43:07] [main/INFO]: SpongePowered MIXIN Subsystem Version=0.8.5 Source=union:/C:/Users/biver/AppData/Roaming/.minecraft/libraries/org/spongepowered/mixin/0.8.5/mixin-0.8.5.jar%23100!/ Service=ModLauncher Env=CLIENT [00:43:07] [main/INFO]: OptiFineTransformationService.initialize [00:43:07] [pool-2-thread-1/INFO]: GL info: NVIDIA GeForce RTX 3060 Laptop GPU/PCIe/SSE2 GL version 4.6.0 NVIDIA 566.36, NVIDIA Corporation [00:43:08] [main/INFO]: Found mod file AdLods-1.20.1-8.1.7.0-build.1496.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file AdvancementPlaques-1.20.1-forge-1.6.9.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file ae2qolrecipes-forge-1.18-1.20.1-1.3.0.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file AI-Improvements-1.20-0.5.2.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file almanac-1.20.x-forge-1.0.2.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file AmbientSounds_FORGE_v6.1.11_mc1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file amendments-1.20-2.1.2.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file appleskin-forge-mc1.20.1-2.5.1.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file appliedenergistics2-forge-15.4.8.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file architectury-9.2.14-forge.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [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\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file baguettelib-1.20.1-Forge-1.0.0.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file balm-forge-1.20.1-7.3.34-all.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file bellsandwhistles-0.4.5-1.20.x-Create6.0+.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file BetterF3-7.0.2-Forge-1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file betterp2p-1.5.0-forge.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file blockui-1.20.1-1.0.193.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file blur-forge-3.1.1.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [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\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file botarium-forge-1.20.1-2.3.4.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file Byzantine-1.21.1-35.1.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [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\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file chat_heads-0.13.18-forge-1.20.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [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\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file ChippedExpress-universal-20x.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file chunkloaders-1.2.9-forge-mc1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file Chunky-1.3.146.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file cloth-config-11.1.136-forge.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file collective-1.20.1-8.3.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [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\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file constructionwand-1.20.1-2.11.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [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\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file copycats-3.0.2+mc.1.20.1-forge.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file coroutil-forge-1.20.1-1.3.7.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file corpse-forge-1.20.1-1.0.21.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file corpsecurioscompat-1.20.x-Forge-3.0.2.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file craftingstation-1.20.1-1.2.3.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file create-1.20.1-6.0.6.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file create-new-age-forge-1.20.1-1.1.4.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file create-stuff-additions1.20.1_v2.1.0.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file create_central_kitchen-1.20.1-for-create-6.0.4-1.4.1.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file create_connected-1.1.7-mc1.20.1-all.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file create_enchantment_industry-1.3.3-for-create-6.0.6.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file create_jetpack-forge-4.4.2.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file create_ltab-2.7.8.1.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file create_winery-1.7.0-forge-1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file createaddition-1.20.1-1.3.1.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file createcontraptionterminals-1.20-1.2.0.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file createdeco-2.0.3-1.20.1-forge.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file CreateNumismatics-1.0.15+forge-mc1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file createrailwaysnavigator-forge-1.20.1-beta-0.8.4-C6.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file CreativeCore_FORGE_v2.12.32_mc1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file Crystal-Clear-2.1-Beta-forge.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file cupboard-1.20.1-2.7.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file curios-forge-5.14.1+1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file decorative_blocks-forge-1.20.1-4.1.3.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file design_decor-0.4.0b-1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file domum_ornamentum-1.20.1-1.0.291-snapshot-universal.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file dragonlib-forge-1.20.1-2.2.24.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file DripSounds-1.19.4-0.3.2.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file EasyAnvils-v8.0.2-1.20.1-Forge.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file EasyMagic-v8.0.1-1.20.1-Forge.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file emi-1.1.22+1.20.1+forge.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file emi_enchanting-0.1.2+1.20.1+forge.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file emi_loot-0.7.6+1.20.1+forge.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file emitrades-forge-1.2.1+mc1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file Emojiful-Forge-1.20.1-4.2.0.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file EnchantmentDescriptions-Forge-1.20.1-17.1.19.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file endrem_forge-5.3.3-R-1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file entityculling-forge-1.8.2-mc1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file Explorify v1.6.2 f10-48.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file ExtraLib-1.7.3-1.20.1-Forge.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file fallingleaves-1.20.1-2.1.2.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file fancymenu_forge_3.6.4_MC_1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file FarmersDelight-1.20.1-1.2.8.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file fastboot-1.20.x-1.2.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file FastFurnace-1.20.1-8.0.2.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file FastLeafDecay-32.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file FastSuite-1.20.1-5.1.0.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file FastWorkbench-1.20.1-8.0.4.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file ferritecore-6.0.1-forge.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file ForgeEndertech-1.20.1-11.1.8.0-build.1486.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file FpsReducer2-forge-1.20.1-2.5.1.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file ftb-library-forge-2001.2.10.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file ftb-quests-forge-2001.4.14.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file ftb-teams-forge-2001.3.1.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file ftb-xmod-compat-forge-2.1.3.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file fusion-1.2.10-forge-mc1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file fzzy_config-0.7.2+1.20.1+forge.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file geckolib-forge-1.20.1-4.7.3.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [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\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file guideme-20.1.11.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file Iceberg-1.20.1-forge-1.1.25.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file ImmersiveUI-FORGE-0.3.0.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file interiors-0.5.6+forge-mc1.20.1-local.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file inventoryessentials-forge-1.20.1-8.2.9.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file inventorysorter-1.20.1-23.0.7.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file Jade-1.20.1-Forge-11.13.2.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file JadeAddons-1.20.1-Forge-5.5.0.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file JadeColonies-1.20.1-1.4.2.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file jei-1.20.1-forge-15.20.0.112.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file jeiintegration_1.20.1-10.0.0.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [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\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file JustEnoughProfessions-forge-1.20.1-3.0.1.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file JustEnoughResources-1.20.1-1.4.0.247.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [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\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file kotlinforforge-4.11.0-all.jar of type LIBRARY with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file kubejs-create-forge-2001.3.0-build.8.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file kubejs-forge-2001.6.5-build.16.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file leaky-1.20.1-2.1.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file letmedespawn-1.20.x-forge-1.5.0.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file lootintegrations-1.20.1-4.7.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file lootintegrations_yungs-1.4.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file mcw-bridges-3.1.0-mc1.20.1forge.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file mcw-doors-1.1.2-mc1.20.1forge.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file mcw-fences-1.2.0-1.20.1forge.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file mcw-furniture-3.3.0-mc1.20.1forge.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file mcw-lights-1.1.2-mc1.20.1forge.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file mcw-roofs-2.3.2-mc1.20.1forge.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file mcw-stairs-1.0.1-1.20.1forge.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [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\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file mcw-windows-2.4.0-1.20.1forge.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file mcwfencesbop-1.20-1.2.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file melody_forge_1.0.3_MC_1.20.1-1.20.4.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file minecolonies-1.20.1-1.1.1011-snapshot.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file modelfix-1.15.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file modernfix-forge-5.24.4+mc1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file moonlight-1.20-2.16.2-forge.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [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\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file MRU-1.0.4+1.20.1+forge.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file multipiston-1.20-1.2.43-RELEASE.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file netherportalfix-forge-1.20-13.0.1.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file NoChatReports-FORGE-1.20.1-v2.2.2.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file notenoughanimations-forge-1.10.1-mc1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file notenoughcrashes-4.4.9+1.20.1-forge.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file OctoLib-FORGE-0.5.0.1+1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file oculus-mc1.20.1-1.8.0.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file ok_zoomer-forge-5.4.0-beta.8.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file open-parties-and-claims-forge-1.20.1-0.25.3.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file packetfixer-3.1.4-1.18-1.20.4-merged.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file particle_core-0.2.6+1.20.1+forge.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file PickUpNotifier-v8.0.0-1.20.1-Forge.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file Placebo-1.20.1-8.6.3.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [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\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file ponderjs-1.20.1-2.0.6.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file PresenceFootsteps-1.20.1-1.9.1-beta.1.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file PuzzlesLib-v8.1.32-1.20.1-Forge.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file radium-mc1.20.1-0.12.4+git.26c9d8e.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file rechiseled-1.1.6-forge-mc1.20.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file rechiseled_chipped-1.2.1-1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file reforgedplaymod-1.20.1-0.3.1.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [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\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file rhino-forge-2001.2.3-build.10.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [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\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file shulkerboxtooltip-forge-4.0.4+1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file skinlayers3d-forge-1.9.0-mc1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file sliceanddice-forge-3.4.1.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file sophisticatedbackpacks-1.20.1-3.23.24.1302.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file sophisticatedcore-1.20.1-1.2.80.1073.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file sophisticatedstorage-1.20.1-1.3.59.1224.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file sound-physics-remastered-forge-1.20.1-1.4.15.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file starlight-1.1.2+forge.1cda73c.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file Steam_Rails-1.6.12-alpha+forge-mc1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file steampowered-1.20.1-3.0.4.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file structurize-1.20.1-1.0.781-snapshot.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file stylecolonies-1.20.1-1.15.28.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file supermartijn642configlib-1.1.8-forge-mc1.20.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file supermartijn642corelib-1.1.18-forge-mc1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file Terralith_1.20.x_v2.5.4.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file tfmg-1.0.2c.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [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\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file ToastControl-1.20.1-8.0.3.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file toms_storage-1.20-1.7.1.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file towntalk-1.20.1-1.1.0.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file vintageimprovements-1.20.1-0.2.0.3.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file visuality-forge-2.0.2.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file voicechat-forge-1.20.1-2.5.36.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file watut-forge-1.20.1-1.2.3.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file YungsApi-1.20-Forge-4.0.6.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file YungsBetterDesertTemples-1.20-Forge-3.0.3.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file YungsBetterDungeons-1.20-Forge-4.0.4.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file YungsBetterEndIsland-1.20-Forge-2.0.6.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file YungsBetterJungleTemples-1.20-Forge-2.0.5.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file YungsBetterMineshafts-1.20-Forge-4.0.4.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file YungsBetterNetherFortresses-1.20-Forge-2.0.6.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file YungsBetterOceanMonuments-1.20-Forge-3.0.4.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file YungsBetterStrongholds-1.20-Forge-4.0.3.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file YungsBetterWitchHuts-1.20-Forge-3.0.3.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/INFO]: Found mod file Zeta-1.0-30.jar of type MOD with provider {mods folder locator at C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods} [00:43:08] [main/WARN]: Mod file C:\Users\biver\AppData\Roaming\.minecraft\libraries\net\minecraftforge\fmlcore\1.20.1-47.4.0\fmlcore-1.20.1-47.4.0.jar is missing mods.toml file [00:43:08] [main/WARN]: Mod file C:\Users\biver\AppData\Roaming\.minecraft\libraries\net\minecraftforge\javafmllanguage\1.20.1-47.4.0\javafmllanguage-1.20.1-47.4.0.jar is missing mods.toml file [00:43:08] [main/WARN]: Mod file C:\Users\biver\AppData\Roaming\.minecraft\libraries\net\minecraftforge\lowcodelanguage\1.20.1-47.4.0\lowcodelanguage-1.20.1-47.4.0.jar is missing mods.toml file [00:43:08] [main/WARN]: Mod file C:\Users\biver\AppData\Roaming\.minecraft\libraries\net\minecraftforge\mclanguage\1.20.1-47.4.0\mclanguage-1.20.1-47.4.0.jar is missing mods.toml file [00:43:08] [main/INFO]: Found mod file fmlcore-1.20.1-47.4.0.jar of type LIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.MinecraftLocator@3971f0fe [00:43:08] [main/INFO]: Found mod file javafmllanguage-1.20.1-47.4.0.jar of type LANGPROVIDER with provider net.minecraftforge.fml.loading.moddiscovery.MinecraftLocator@3971f0fe [00:43:08] [main/INFO]: Found mod file lowcodelanguage-1.20.1-47.4.0.jar of type LANGPROVIDER with provider net.minecraftforge.fml.loading.moddiscovery.MinecraftLocator@3971f0fe [00:43:08] [main/INFO]: Found mod file mclanguage-1.20.1-47.4.0.jar of type LANGPROVIDER with provider net.minecraftforge.fml.loading.moddiscovery.MinecraftLocator@3971f0fe [00:43:08] [main/INFO]: Found mod file client-1.20.1-20230612.114412-srg.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.MinecraftLocator@3971f0fe [00:43:08] [main/INFO]: Found mod file forge-1.20.1-47.4.0-universal.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.MinecraftLocator@3971f0fe [00:43:09] [main/WARN]: Attempted to select two dependency jars from JarJar which have the same identification: Mod File:  and Mod File: . Using Mod File:  [00:43:09] [main/WARN]: Attempted to select a dependency jar for JarJar which was passed in as source: dragonlib. Using Mod File: C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods\dragonlib-forge-1.20.1-2.2.24.jar [00:43:09] [main/WARN]: Attempted to select a dependency jar for JarJar which was passed in as source: architectury. Using Mod File: C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ\mods\architectury-9.2.14-forge.jar [00:43:09] [main/INFO]: Found 39 dependencies adding them to mods collection [00:43:09] [main/INFO]: Found mod file kuma-api-forge-20.1.10+1.20.1.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@60d40ff4 [00:43:09] [main/INFO]: Found mod file aspectjrt-1.8.2.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@60d40ff4 [00:43:09] [main/INFO]: Found mod file satin-forge-1.20.1+1.15.0-SNAPSHOT.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@60d40ff4 [00:43:09] [main/INFO]: Found mod file kfflang-4.11.0.jar of type LANGPROVIDER with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@60d40ff4 [00:43:09] [main/INFO]: Found mod file Ponder-Forge-1.20.1-1.0.81.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@60d40ff4 [00:43:09] [main/INFO]: Found mod file Registrate-MC1.20-1.3.3.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@60d40ff4 [00:43:09] [main/INFO]: Found mod file json-0.2.1.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@60d40ff4 [00:43:09] [main/INFO]: Found mod file google-api-client-java6-1.20.0.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@60d40ff4 [00:43:09] [main/INFO]: Found mod file mclib-20.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@60d40ff4 [00:43:09] [main/INFO]: Found mod file TRender-1.0.6-1.20.1-forge-SNAPSHOT.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@60d40ff4 [00:43:09] [main/INFO]: Found mod file wrench_wrapper-0.6.2.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@60d40ff4 [00:43:09] [main/INFO]: Found mod file snakeyaml-2.2.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@60d40ff4 [00:43:09] [main/INFO]: Found mod file kffmod-4.11.0.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@60d40ff4 [00:43:09] [main/INFO]: Found mod file kfflib-4.11.0.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@60d40ff4 [00:43:09] [main/INFO]: Found mod file bytecodecs-1.0.2.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@60d40ff4 [00:43:09] [main/INFO]: Found mod file flywheel-forge-1.20.1-1.0.4-243.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@60d40ff4 [00:43:09] [main/INFO]: Found mod file jgltf-model-3af6de4.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@60d40ff4 [00:43:09] [main/INFO]: Found mod file lwjgl-utils-27dcd66.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@60d40ff4 [00:43:09] [main/INFO]: Found mod file MixinExtras-0.4.1.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@60d40ff4 [00:43:09] [main/INFO]: Found mod file jcpp-1.4.14.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@60d40ff4 [00:43:09] [main/INFO]: Found mod file opennbt-0a02214.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@60d40ff4 [00:43:09] [main/INFO]: Found mod file mixinextras-forge-0.2.0.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@60d40ff4 [00:43:09] [main/INFO]: Found mod file jankson-1.2.3.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@60d40ff4 [00:43:09] [main/INFO]: Found mod file yabn-1.0.3.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@60d40ff4 [00:43:09] [main/INFO]: Found mod file conditional-mixin-forge-0.6.4.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@60d40ff4 [00:43:09] [main/INFO]: Found mod file TRansition-1.0.4-1.20.1-forge-SNAPSHOT.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@60d40ff4 [00:43:09] [main/INFO]: Found mod file commons-exec-1.3.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@60d40ff4 [00:43:09] [main/INFO]: Found mod file animated-gif-lib-for-java-animated-gif-lib-1.7.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@60d40ff4 [00:43:09] [main/INFO]: Found mod file flightlib-forge-2.1.0.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@60d40ff4 [00:43:09] [main/INFO]: Found mod file 2.79.0-a0696f8.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@60d40ff4 [00:43:09] [main/INFO]: Found mod file google-api-client-gson-1.20.0.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@60d40ff4 [00:43:09] [main/INFO]: Found mod file google-oauth-client-jetty-1.20.0.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@60d40ff4 [00:43:09] [main/INFO]: Found mod file puzzlesaccessapi-forge-20.1.1.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@60d40ff4 [00:43:09] [main/INFO]: Found mod file google-api-services-youtube-v3-rev178-1.22.0.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@60d40ff4 [00:43:09] [main/INFO]: Found mod file tomlkt-jvm-0.3.7.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@60d40ff4 [00:43:09] [main/INFO]: Found mod file isoparser-1.1.7.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@60d40ff4 [00:43:09] [main/INFO]: Found mod file lwjgl-tinyexr-3.3.1.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@60d40ff4 [00:43:09] [main/INFO]: Found mod file NanoLiveConfig-1.2.1.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@60d40ff4 [00:43:09] [main/INFO]: Found mod file japng-0.5.3.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@60d40ff4 [00:43:10] [main/INFO]: OptiFineTransformationService.transformers [00:43:10] [main/INFO]: Targets: 412 [00:43:11] [main/INFO]: additionalClassesLocator: [optifine., net.optifine.] [00:43:14] [main/INFO]: Compatibility level set to JAVA_17 [00:43:14] [main/ERROR]: Mixin config mixins.satin.client.json does not specify "minVersion" property [00:43:14] [main/ERROR]: Mixin config emi_loot.mixins.json does not specify "minVersion" property [00:43:14] [main/INFO]: Successfully loaded Mixin Connector [ca.spottedleaf.starlight.mixin.MixinConnector] [00:43:14] [main/INFO]: Successfully loaded Mixin Connector [com.sonicether.soundphysics.MixinConnector] [00:43:14] [main/INFO]: Successfully loaded Mixin Connector [org.tlauncher.MixinConnector] [00:43:14] [main/INFO]: Launching target 'forgeclient' with arguments [--version, креейт РіРѕСЂРѕРґ, --gameDir, C:\Users\biver\AppData\Roaming\.minecraft\versions\креейт РіРѕСЂРѕРґ, --assetsDir, C:\Users\biver\AppData\Roaming\.minecraft\assets, --uuid, 23eed3e43ab3452fb0164dffda5e81b5, --username, Pon4ic, --assetIndex, 5, --accessToken, вќ„вќ„вќ„вќ„вќ„вќ„вќ„вќ„, --clientId, null, --xuid, null, --userType, mojang, --versionType, modified, --width, 925, --height, 530] [00:43:15] [main/INFO]: Loaded configuration file for ModernFix 5.24.4+mc1.20.1: 96 options available, 3 override(s) found [00:43:15] [main/WARN]: Option 'mixin.perf.faster_texture_stitching' overriden (by mods [optifine]) to 'false' [00:43:15] [main/WARN]: Option 'mixin.bugfix.entity_pose_stack' overriden (by mods [optifine]) to 'false' [00:43:15] [main/WARN]: Option 'mixin.launch.class_search_cache' overriden (by mods [optifine]) to 'false' [00:43:15] [main/FATAL]: OptiFine detected. Use of ModernFix with OptiFine is not supported due to its impact on launch time and breakage of Forge features. [00:43:15] [main/INFO]: Applying Nashorn fix [00:43:15] [main/INFO]: Applied Forge config corruption patch [00:43:15] [main/INFO]: Loaded configuration file for Radium: 125 options available, 1 override(s) found [00:43:15] [main/WARN]: Reference map 'tfmg.refmap.json' for design_decor.mixins.json could not be read. If this is a development environment you can ignore this message [00:43:15] [main/WARN]: Reference map 'puzzlesaccessapi.common.refmap.json' for puzzlesaccessapi.common.mixins.json could not be read. If this is a development environment you can ignore this message [00:43:15] [main/WARN]: Reference map 'steampowered.refmap.json' for steampowered.mixins.json could not be read. If this is a development environment you can ignore this message [00:43:15] [main/INFO]: Loading 202 mods:     - adlods 8.1.7.0     - advancementplaques 1.6.9     - ae2 15.4.8     - ae2qolrecipes 1.3.0     - aiimprovements 0.5.2     - almanac 1.0.2     - ambientsounds 6.1.11     - amendments 1.20-2.1.2     - appleskin 2.5.1+mc1.20.1     - architectury 9.2.14     - athena 3.1.2     - baguettelib 1.0.0     - balm 7.3.34         \-- kuma_api 20.1.10     - bellsandwhistles 0.4.3-1.20.x     - betterdeserttemples 1.20-Forge-3.0.3     - betterdungeons 1.20-Forge-4.0.4     - betterendisland 1.20-Forge-2.0.6     - betterf3 7.0.2     - betterfortresses 1.20-Forge-2.0.6     - betterjungletemples 1.20-Forge-2.0.5     - bettermineshafts 1.20-Forge-4.0.4     - betteroceanmonuments 1.20-Forge-3.0.4     - betterp2p 1.5.0     - betterstrongholds 1.20-Forge-4.0.3     - betterwitchhuts 1.20-Forge-3.0.3     - blockui 1.20.1-1.0.193     - blur 3.1.1         \-- satin 1.20.1+1.15.0-SNAPSHOT     - bookshelf 20.2.13     - botarium 2.3.4     - byzantine 35.1     - carryon 2.1.2.7     - chat_heads 0.13.18     - chipped 3.0.7     - chipped_express 1.3.2     - chunkloaders 1.2.9     - chunky 1.3.146     - cloth_config 11.1.136     - collective 8.3     - configured 2.2.3     - constructionwand 1.20.1-2.11     - controlling 12.0.2     - copycats 3.0.2+mc.1.20.1-forge     - coroutil 1.20.1-1.3.7     - corpse 1.20.1-1.0.21     - corpsecurioscompat 3.0.2     - craftingstation 1.20.1-1.2.3     - create 6.0.6     - create_central_kitchen 1.4.1         \-- mixinextras 0.2.0     - create_connected 1.1.7-mc1.20.1     - create_enchantment_industry 1.3.3-for-create-6.0.6     - create_jetpack 4.4.2         \-- flightlib 2.1.0     - create_ltab 2.7.0     - create_new_age 1.1.4     - create_sa 2.1.0     - create_winery 1.7.0     - createaddition 1.20.1-1.3.1     - createcontraptionterminals 1.2.0     - createdeco 2.0.3-1.20.1-forge     - createrailwaysnavigator 1.20.1-beta-0.8.4-C6     - creativecore 2.12.32     - crystal_clear 2.1-Beta     - cupboard 1.20.1-2.7     - curios 5.14.1+1.20.1     - decorative_blocks 4.1.3     - design_decor 0.4.0b     - domum_ornamentum 1.20.1-1.0.291-snapshot     - dragonlib 1.20.1-2.2.24     - easyanvils 8.0.2     - easymagic 8.0.1     - emi 1.1.22+1.20.1+forge     - emi_enchanting 0.1.2+1.20.1+forge     - emi_loot 0.7.6+1.20.1+forge     - emitrades 1.2.1+mc1.20.1     - emojiful 4.2.0     - enchdesc 17.1.19     - endrem 5.3.3-R-1.20.1     - entityculling 1.8.2     - explorify 1.6.2     - extralib 1.7.3     - fallingleaves 2.1.2     - fancymenu 3.6.4     - farmersdelight 1.20.1-1.2.8     - fastbench 8.0.4     - fastboot 1.2     - fastfurnace 8.0.2     - fastleafdecay 32     - fastsuite 5.1.0     - ferritecore 6.0.1     - forge 47.4.0     - forgeendertech 11.1.8.0     - fpsreducer 1.20.1-2.5.1     - ftblibrary 2001.2.10     - ftbquests 2001.4.14     - ftbteams 2001.3.1     - ftbxmodcompat 2.1.3     - fusion 1.2.10     - fzzy_config 0.7.2+1.20.1+forge     - geckolib 4.7.3     - glitchcore 0.0.1.1     - guideme 20.1.11     - iceberg 1.1.25     - immersiveui 0.3.0     - interiors 0.5.6     - inventoryessentials 8.2.9     - inventorysorter 23.0.7     - jade 11.13.2+forge     - jadeaddons 5.5.0+forge     - jadecolonies 1.4.2     - jei 15.20.0.112     - jeiintegration 10.0.0     - jeresources 1.4.0.247     - journeymap 5.10.3     - justenoughprofessions 3.0.1     - konkrete 1.8.0     - kotlinforforge 4.11.0     - kubejs 2001.6.5-build.16     - kubejs_create 2001.3.0-build.8     - leaky 1.20.1-2.1     - letmedespawn 1.5.0     - lootintegrations 1.20.1-4.7     - lootintegrations_yungs 1     - mcwbridges 3.1.0     - mcwdoors 1.1.2     - mcwfences 1.2.0     - mcwfencesbop 1.20-1.2     - mcwfurnitures 3.3.0     - mcwlights 1.1.2     - mcwroofs 2.3.2     - mcwstairs 1.0.1     - mcwtrpdoors 1.1.4     - mcwwindows 2.4.0     - melody 1.0.2     - minecolonies 1.20.1-1.1.1011-snapshot     - minecraft 1.20.1     - modelfix 1.15     - modernfix 5.24.4+mc1.20.1     - moonlight 1.20-2.16.2     - mousetweaks 2.25.1     - mru 1.0.4+1.20.1+forge     - multipiston 1.20-1.2.43-RELEASE     - netherportalfix 13.0.1     - nochatreports 1.20.1-v2.2.2     - notenoughanimations 1.10.1     - notenoughcrashes 4.4.9+1.20.1     - numismatics 1.0.15+forge-mc1.20.1     - octolib 0.5.0.1     - oculus 1.8.0     - ok_zoomer 5.4.0-beta.8         \-- wrench_wrapper 0.6.2     - openpartiesandclaims 0.25.3     - packetfixer 3.1.4     - particle_core 0.2.6+1.20.1+forge         \-- conditional_mixin 0.6.4     - pickupnotifier 8.0.0     - placebo 8.6.3     - playeranimator 1.0.2-rc1+1.20     - ponderjs 2.0.6         |-- flywheel 1.0.4-243         \-- ponder 1.0.81     - presencefootsteps 1.20.1-1.9.1-beta.1     - puzzleslib 8.1.32         \-- puzzlesaccessapi 20.1.1     - radium 0.12.4+git.26c9d8e     - railways 1.6.12-alpha+forge-mc1.20.1     - rechiseled 1.1.6     - rechiseled_chipped 1.2     - reforgedplaymod 0.3.1         \-- replaymod 2.6.18     - resourcefullib 2.1.29     - rhino 2001.2.3-build.10     - searchables 1.0.3     - shulkerboxtooltip 4.0.4+1.20.1     - skinlayers3d 1.9.0         |-- transition 1.0.4         \-- trender 1.0.6     - sliceanddice 3.4.1     - sophisticatedbackpacks 3.23.24.1302     - sophisticatedcore 1.2.80.1073     - sophisticatedstorage 1.3.59.1224     - sound_physics_remastered 1.20.1-1.4.15     - starlight 1.1.2+forge.1cda73c     - steampowered 1.20.1-3.0.4     - structurize 1.20.1-1.0.781-snapshot     - stylecolonies 1.20.1-1.15.28     - supermartijn642configlib 1.1.8     - supermartijn642corelib 1.1.18     - terralith 2.5.4     - tfmg 1.0.2c     - tlskincape 1.32     - toastcontrol 8.0.3     - toms_storage 1.7.1     - towntalk 1.1.0     - vintageimprovements 1.20.1-0.2.0.3     - visuality 2.0.2     - voicechat 1.20.1-2.5.36     - waterdripsound 0.3.2     - watut 1.20.1-1.2.3     - yungsapi 1.20-Forge-4.0.6     - zeta 1.0-30 [00:43:16] [main/INFO]: OptiFine was detected. [00:43:16] [main/INFO]: OptiFabric was NOT detected. [00:43:16] [main/WARN]: Reference map 'Create-The_Factory_Must_Grow.refmap.json' for tfmg.mixins.json could not be read. If this is a development environment you can ignore this message [00:43:16] [main/WARN]: Reference map 'betterp2p-forge-refmap.json' for betterp2p.mixins.json could not be read. If this is a development environment you can ignore this message [00:43:16] [main/WARN]: Reference map 'coroutil.refmap.json' for coroutil.mixins.json could not be read. If this is a development environment you can ignore this message [00:43:16] [main/INFO]: Packet Fixer forge 1.19.4-1.20.1 has been applied successfully. [00:43:18] [main/WARN]: Error loading class: shadersmod/client/ShadersRender (java.lang.ClassNotFoundException: shadersmod.client.ShadersRender) [00:43:18] [main/WARN]: Error loading class: net/coderbot/iris/pipeline/HandRenderer (java.lang.ClassNotFoundException: net.coderbot.iris.pipeline.HandRenderer) [00:43:18] [main/WARN]: Error loading class: com/ultramega/showcaseitem/ShowcaseItemFeature (java.lang.ClassNotFoundException: com.ultramega.showcaseitem.ShowcaseItemFeature) [00:43:18] [main/WARN]: Error loading class: mekanism/client/render/entity/RenderFlame (java.lang.ClassNotFoundException: mekanism.client.render.entity.RenderFlame) [00:43:18] [main/WARN]: Error loading class: mekanism/client/render/armor/MekaSuitArmor (java.lang.ClassNotFoundException: mekanism.client.render.armor.MekaSuitArmor) [00:43:18] [main/WARN]: Force-disabling mixin 'alloc.blockstate.StateMixin' as option 'mixin.alloc.blockstate' (added by mods [ferritecore]) disables it and children [00:43:19] [main/INFO]: Patching IForgeItemStack#getEnchantmentLevel [00:43:19] [main/INFO]: Patching IForgeItemStack#getEnchantmentLevel [00:43:19] [main/INFO]: bre2el.fpsreducer.mixin.RenderSystemMixin will be applied. [00:43:19] [main/INFO]: bre2el.fpsreducer.mixin.WindowMixin will be applied. [00:43:19] [main/WARN]: Error loading class: me/jellysquid/mods/sodium/client/render/SodiumWorldRenderer (java.lang.ClassNotFoundException: me.jellysquid.mods.sodium.client.render.SodiumWorldRenderer) [00:43:19] [main/WARN]: Error loading class: me/jellysquid/mods/lithium/common/ai/pathing/PathNodeDefaults (java.lang.ClassNotFoundException: me.jellysquid.mods.lithium.common.ai.pathing.PathNodeDefaults) [00:43:20] [main/WARN]: Error loading class: net/fabricmc/fabric/impl/datagen/FabricDataGenHelper (java.lang.ClassNotFoundException: net.fabricmc.fabric.impl.datagen.FabricDataGenHelper) [00:43:20] [main/WARN]: Error loading class: net/mehvahdjukaar/supplementaries/common/entities/SlimeBallEntity (java.lang.ClassNotFoundException: net.mehvahdjukaar.supplementaries.common.entities.SlimeBallEntity) [00:43:20] [main/WARN]: Error loading class: me/jellysquid/mods/lithium/common/ai/pathing/PathNodeDefaults (java.lang.ClassNotFoundException: me.jellysquid.mods.lithium.common.ai.pathing.PathNodeDefaults) [00:43:20] [main/WARN]: Error loading class: mezz/modnametooltip/TooltipEventHandler (java.lang.ClassNotFoundException: mezz.modnametooltip.TooltipEventHandler) [00:43:20] [main/WARN]: Error loading class: me/shedaniel/rei/impl/client/ClientHelperImpl (java.lang.ClassNotFoundException: me.shedaniel.rei.impl.client.ClientHelperImpl) [00:43:20] [main/WARN]: Error loading class: com/simibubi/create/foundation/ponder/PonderWorld (java.lang.ClassNotFoundException: com.simibubi.create.foundation.ponder.PonderWorld) [00:43:20] [main/WARN]: Error loading class: vazkii/quark/addons/oddities/inventory/BackpackMenu (java.lang.ClassNotFoundException: vazkii.quark.addons.oddities.inventory.BackpackMenu) [00:43:20] [main/WARN]: Error loading class: studio/fantasyit/ars_botania/event/CapEvent (java.lang.ClassNotFoundException: studio.fantasyit.ars_botania.event.CapEvent) [00:43:20] [main/WARN]: @Mixin target studio.fantasyit.ars_botania.event.CapEvent was not found create_central_kitchen.mixins.json:common.arsbotania.CapEventMixin [00:43:20] [main/WARN]: Error loading class: dan200/computercraft/shared/integration/MoreRedIntegration (java.lang.ClassNotFoundException: dan200.computercraft.shared.integration.MoreRedIntegration) [00:43:20] [main/WARN]: @Mixin target dan200.computercraft.shared.integration.MoreRedIntegration was not found create_central_kitchen.mixins.json:common.computercraft.MoreRedIntegrationMixin [00:43:20] [main/WARN]: Error loading class: umpaz/farmersrespite/common/block/CoffeeBushBlock (java.lang.ClassNotFoundException: umpaz.farmersrespite.common.block.CoffeeBushBlock) [00:43:20] [main/WARN]: @Mixin target umpaz.farmersrespite.common.block.CoffeeBushBlock was not found create_central_kitchen.mixins.json:common.farmersrespite.CoffeeBushBlockMixin [00:43:20] [main/WARN]: Error loading class: umpaz/farmersrespite/common/block/CoffeeBushTopBlock (java.lang.ClassNotFoundException: umpaz.farmersrespite.common.block.CoffeeBushTopBlock) [00:43:20] [main/WARN]: @Mixin target umpaz.farmersrespite.common.block.CoffeeBushTopBlock was not found create_central_kitchen.mixins.json:common.farmersrespite.CoffeeBushTopBlockMixin [00:43:20] [main/WARN]: Error loading class: umpaz/farmersrespite/common/block/CoffeeDoubleStemBlock (java.lang.ClassNotFoundException: umpaz.farmersrespite.common.block.CoffeeDoubleStemBlock) [00:43:20] [main/WARN]: @Mixin target umpaz.farmersrespite.common.block.CoffeeDoubleStemBlock was not found create_central_kitchen.mixins.json:common.farmersrespite.CoffeeDoubleStemBlockMixin [00:43:20] [main/WARN]: Error loading class: umpaz/farmersrespite/common/block/CoffeeMiddleStemBlock (java.lang.ClassNotFoundException: umpaz.farmersrespite.common.block.CoffeeMiddleStemBlock) [00:43:20] [main/WARN]: @Mixin target umpaz.farmersrespite.common.block.CoffeeMiddleStemBlock was not found create_central_kitchen.mixins.json:common.farmersrespite.CoffeeMiddleStemBlockMixin [00:43:20] [main/WARN]: Error loading class: umpaz/farmersrespite/common/block/CoffeeStemBlock (java.lang.ClassNotFoundException: umpaz.farmersrespite.common.block.CoffeeStemBlock) [00:43:20] [main/WARN]: @Mixin target umpaz.farmersrespite.common.block.CoffeeStemBlock was not found create_central_kitchen.mixins.json:common.farmersrespite.CoffeeStemBlockMixin [00:43:20] [main/WARN]: Error loading class: umpaz/farmersrespite/common/block/entity/KettleBlockEntity (java.lang.ClassNotFoundException: umpaz.farmersrespite.common.block.entity.KettleBlockEntity) [00:43:20] [main/WARN]: @Mixin target umpaz.farmersrespite.common.block.entity.KettleBlockEntity was not found create_central_kitchen.mixins.json:common.farmersrespite.KettleBlockEntityMixin [00:43:20] [main/WARN]: Error loading class: umpaz/farmersrespite/common/block/SmallTeaBushBlock (java.lang.ClassNotFoundException: umpaz.farmersrespite.common.block.SmallTeaBushBlock) [00:43:20] [main/WARN]: @Mixin target umpaz.farmersrespite.common.block.SmallTeaBushBlock was not found create_central_kitchen.mixins.json:common.farmersrespite.SmallTeaBushBlockMixin [00:43:20] [main/WARN]: Error loading class: umpaz/farmersrespite/common/block/TeaBushBlock (java.lang.ClassNotFoundException: umpaz.farmersrespite.common.block.TeaBushBlock) [00:43:20] [main/WARN]: @Mixin target umpaz.farmersrespite.common.block.TeaBushBlock was not found create_central_kitchen.mixins.json:common.farmersrespite.TeaBushBlockMixin [00:43:20] [main/WARN]: Error loading class: com/sammy/minersdelight/content/block/copper_pot/CopperPotBlockEntity (java.lang.ClassNotFoundException: com.sammy.minersdelight.content.block.copper_pot.CopperPotBlockEntity) [00:43:20] [main/WARN]: @Mixin target com.sammy.minersdelight.content.block.copper_pot.CopperPotBlockEntity was not found create_central_kitchen.mixins.json:common.minersdelight.CopperPotBlockEntityMixin [00:43:20] [main/WARN]: Error loading class: com/sammy/minersdelight/content/block/sticky_basket/StickyBasketBlockEntity (java.lang.ClassNotFoundException: com.sammy.minersdelight.content.block.sticky_basket.StickyBasketBlockEntity) [00:43:20] [main/WARN]: @Mixin target com.sammy.minersdelight.content.block.sticky_basket.StickyBasketBlockEntity was not found create_central_kitchen.mixins.json:common.minersdelight.StickyBasketBlockEntityAccessor [00:43:20] [main/WARN]: Error loading class: com/sammy/minersdelight/content/block/sticky_basket/StickyBasketBlockEntity (java.lang.ClassNotFoundException: com.sammy.minersdelight.content.block.sticky_basket.StickyBasketBlockEntity) [00:43:20] [main/WARN]: @Mixin target com.sammy.minersdelight.content.block.sticky_basket.StickyBasketBlockEntity was not found create_central_kitchen.mixins.json:common.minersdelight.StickyBasketBlockEntityMixin [00:43:20] [main/WARN]: Error loading class: com/teamabnormals/neapolitan/common/item/DrinkItem (java.lang.ClassNotFoundException: com.teamabnormals.neapolitan.common.item.DrinkItem) [00:43:20] [main/WARN]: @Mixin target com.teamabnormals.neapolitan.common.item.DrinkItem was not found create_central_kitchen.mixins.json:common.neapolitan.DrinkItemMixin [00:43:20] [main/WARN]: Error loading class: net/orcinus/overweightfarming/blocks/CropFullBlock (java.lang.ClassNotFoundException: net.orcinus.overweightfarming.blocks.CropFullBlock) [00:43:20] [main/WARN]: @Mixin target net.orcinus.overweightfarming.blocks.CropFullBlock was not found create_central_kitchen.mixins.json:common.overweightfarming.CropFullBlockMixin [00:43:20] [main/WARN]: Error loading class: shadersmod/client/ShadersRender (java.lang.ClassNotFoundException: shadersmod.client.ShadersRender) [00:43:20] [main/WARN]: Error loading class: shadersmod/client/ShadersRender (java.lang.ClassNotFoundException: shadersmod.client.ShadersRender) [00:43:21] [main/INFO]: Initializing MixinExtras via com.llamalad7.mixinextras.service.MixinExtrasServiceImpl(version=0.4.1). [00:43:21] [main/INFO]: Mixing client.MixinMinecraft from mixins/common/nochatreports.mixins.json into net.minecraft.client.Minecraft [00:43:22] [main/WARN]: Static binding violation: PRIVATE @Overwrite method m_216202_ in modernfix-forge.mixins.json:perf.tag_id_caching.TagOrElementLocationMixin cannot reduce visibiliy of PUBLIC target method, visibility will be upgraded. [00:43:22] [main/INFO]: Injecting BlockStateBase cache population hook into getOpacityIfCached from ca.spottedleaf.starlight.mixin.common.blockstate.BlockStateBaseMixin [00:43:22] [main/INFO]: Injecting BlockStateBase cache population hook into getNeighborPathNodeType from me.jellysquid.mods.lithium.mixin.ai.pathing.AbstractBlockStateMixin [00:43:22] [main/INFO]: Injecting BlockStateBase cache population hook into getPathNodeType from me.jellysquid.mods.lithium.mixin.ai.pathing.AbstractBlockStateMixin [00:43:22] [main/INFO]: Injecting BlockStateBase cache population hook into isConditionallyFullOpaque from ca.spottedleaf.starlight.mixin.common.blockstate.BlockStateBaseMixin [00:43:22] [main/INFO]: Injecting BlockStateBase cache population hook into getAllFlags from me.jellysquid.mods.lithium.mixin.util.block_tracking.AbstractBlockStateMixin [00:43:22] [main/INFO]: Patching IForgeItemStack#getEnchantmentLevel [00:43:22] [main/INFO]: Patching IForgeItemStack#getEnchantmentLevel [00:43:22] [main/INFO]: Patching IForgeItemStack#getEnchantmentLevel [00:43:22] [main/INFO]: Patching IForgeItemStack#getEnchantmentLevel Exception in thread "main"   <log4j:Event logger="STDERR" timestamp="1755639803350" level="INFO" thread="main">     <log4j:Message><![CDATA[[java.lang.ThreadGroup:uncaughtException:1077]: java.lang.RuntimeException: java.lang.reflect.InvocationTargetException]]></log4j:Message>   </log4j:Event> [00:43:23] [main/INFO]: [java.lang.ThreadGroup:uncaughtException:1077]:     at MC-BOOTSTRAP/cpw.mods.modlauncher@10.0.9/cpw.mods.modlauncher.LaunchServiceHandlerDecorator.launch(LaunchServiceHandlerDecorator.java:32) [00:43:23] [main/INFO]: [java.lang.ThreadGroup:uncaughtException:1077]:     at MC-BOOTSTRAP/cpw.mods.modlauncher@10.0.9/cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:53) [00:43:23] [main/INFO]: [java.lang.ThreadGroup:uncaughtException:1077]:     at MC-BOOTSTRAP/cpw.mods.modlauncher@10.0.9/cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:71) [00:43:23] [main/INFO]: [java.lang.ThreadGroup:uncaughtException:1077]:     at MC-BOOTSTRAP/cpw.mods.modlauncher@10.0.9/cpw.mods.modlauncher.Launcher.run(Launcher.java:108) [00:43:23] [main/INFO]: [java.lang.ThreadGroup:uncaughtException:1077]:     at MC-BOOTSTRAP/cpw.mods.modlauncher@10.0.9/cpw.mods.modlauncher.Launcher.main(Launcher.java:78) [00:43:23] [main/INFO]: [java.lang.ThreadGroup:uncaughtException:1077]:     at MC-BOOTSTRAP/cpw.mods.modlauncher@10.0.9/cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:26) [00:43:23] [main/INFO]: [java.lang.ThreadGroup:uncaughtException:1077]:     at MC-BOOTSTRAP/cpw.mods.modlauncher@10.0.9/cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:23) [00:43:23] [main/INFO]: [java.lang.ThreadGroup:uncaughtException:1077]:     at cpw.mods.bootstraplauncher@1.1.2/cpw.mods.bootstraplauncher.BootstrapLauncher.main(BootstrapLauncher.java:141) [00:43:23] [main/INFO]: [java.lang.ThreadGroup:uncaughtException:1086]: Caused by: java.lang.reflect.InvocationTargetException [00:43:23] [main/INFO]: [java.lang.ThreadGroup:uncaughtException:1086]:     at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) [00:43:23] [main/INFO]: [java.lang.ThreadGroup:uncaughtException:1086]:     at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) [00:43:23] [main/INFO]: [java.lang.ThreadGroup:uncaughtException:1086]:     at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) [00:43:23] [main/INFO]: [java.lang.ThreadGroup:uncaughtException:1086]:     at java.base/java.lang.reflect.Method.invoke(Method.java:568) [00:43:23] [main/INFO]: [java.lang.ThreadGroup:uncaughtException:1086]:     at MC-BOOTSTRAP/fmlloader@1.20.1-47.4.0/net.minecraftforge.fml.loading.targets.CommonLaunchHandler.runTarget(CommonLaunchHandler.java:111) [00:43:23] [main/INFO]: [java.lang.ThreadGroup:uncaughtException:1086]:     at MC-BOOTSTRAP/fmlloader@1.20.1-47.4.0/net.minecraftforge.fml.loading.targets.CommonLaunchHandler.clientService(CommonLaunchHandler.java:99) [00:43:23] [main/INFO]: [java.lang.ThreadGroup:uncaughtException:1086]:     at MC-BOOTSTRAP/fmlloader@1.20.1-47.4.0/net.minecraftforge.fml.loading.targets.CommonClientLaunchHandler.lambda$makeService$0(CommonClientLaunchHandler.java:25) [00:43:23] [main/INFO]: [java.lang.ThreadGroup:uncaughtException:1086]:     at MC-BOOTSTRAP/cpw.mods.modlauncher@10.0.9/cpw.mods.modlauncher.LaunchServiceHandlerDecorator.launch(LaunchServiceHandlerDecorator.java:30) [00:43:23] [main/INFO]: [java.lang.ThreadGroup:uncaughtException:1086]:     ... 7 more [00:43:23] [main/INFO]: [java.lang.Throwable:printStackTrace:659]: Caused by: org.spongepowered.asm.mixin.transformer.throwables.MixinTransformerError: An unexpected critical error was encountered [00:43:23] [main/INFO]: [java.lang.Throwable:printStackTrace:659]:     at MC-BOOTSTRAP/org.spongepowered.mixin/org.spongepowered.asm.mixin.transformer.MixinProcessor.applyMixins(MixinProcessor.java:392) [00:43:23] [main/INFO]: [java.lang.Throwable:printStackTrace:659]:     at MC-BOOTSTRAP/org.spongepowered.mixin/org.spongepowered.asm.mixin.transformer.MixinTransformer.transformClass(MixinTransformer.java:250) [00:43:23] [main/INFO]: [java.lang.Throwable:printStackTrace:659]:     at MC-BOOTSTRAP/org.spongepowered.mixin/org.spongepowered.asm.service.modlauncher.MixinTransformationHandler.processClass(MixinTransformationHandler.java:131) [00:43:23] [main/INFO]: [java.lang.Throwable:printStackTrace:659]:     at MC-BOOTSTRAP/org.spongepowered.mixin/org.spongepowered.asm.launch.MixinLaunchPluginLegacy.processClass(MixinLaunchPluginLegacy.java:131) [00:43:23] [main/INFO]: [java.lang.Throwable:printStackTrace:659]:     at MC-BOOTSTRAP/cpw.mods.modlauncher@10.0.9/cpw.mods.modlauncher.serviceapi.ILaunchPluginService.processClassWithFlags(ILaunchPluginService.java:156) [00:43:23] [main/INFO]: [java.lang.Throwable:printStackTrace:659]:     at MC-BOOTSTRAP/cpw.mods.modlauncher@10.0.9/cpw.mods.modlauncher.LaunchPluginHandler.offerClassNodeToPlugins(LaunchPluginHandler.java:88) [00:43:23] [main/INFO]: [java.lang.Throwable:printStackTrace:659]:     at MC-BOOTSTRAP/cpw.mods.modlauncher@10.0.9/cpw.mods.modlauncher.ClassTransformer.transform(ClassTransformer.java:120) [00:43:23] [main/INFO]: [java.lang.Throwable:printStackTrace:659]:     at MC-BOOTSTRAP/cpw.mods.modlauncher@10.0.9/cpw.mods.modlauncher.TransformingClassLoader.maybeTransformClassBytes(TransformingClassLoader.java:50) [00:43:23] [main/INFO]: [java.lang.Throwable:printStackTrace:659]:     at cpw.mods.securejarhandler/cpw.mods.cl.ModuleClassLoader.readerToClass(ModuleClassLoader.java:113) [00:43:23] [main/INFO]: [java.lang.Throwable:printStackTrace:659]:     at cpw.mods.securejarhandler/cpw.mods.cl.ModuleClassLoader.lambda$findClass$15(ModuleClassLoader.java:219) [00:43:23] [main/INFO]: [java.lang.Throwable:printStackTrace:659]:     at cpw.mods.securejarhandler/cpw.mods.cl.ModuleClassLoader.loadFromModule(ModuleClassLoader.java:229) [00:43:23] [main/INFO]: [java.lang.Throwable:printStackTrace:659]:     at cpw.mods.securejarhandler/cpw.mods.cl.ModuleClassLoader.findClass(ModuleClassLoader.java:219) [00:43:23] [main/INFO]: [java.lang.Throwable:printStackTrace:659]:     at cpw.mods.securejarhandler/cpw.mods.cl.ModuleClassLoader.loadClass(ModuleClassLoader.java:135) [00:43:23] [main/INFO]: [java.lang.Throwable:printStackTrace:659]:     at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:525) [00:43:23] [main/INFO]: [java.lang.Throwable:printStackTrace:659]:     at TRANSFORMER/net.optifine/net.optifine.reflect.Reflector.<clinit>(Reflector.java:283) [00:43:23] [main/INFO]: [java.lang.Throwable:printStackTrace:659]:     at TRANSFORMER/minecraft@1.20.1/net.minecraft.CrashReport.m_127526_(CrashReport.java:175) [00:43:23] [main/INFO]: [java.lang.Throwable:printStackTrace:659]:     at TRANSFORMER/minecraft@1.20.1/net.minecraft.CrashReport.m_127529_(CrashReport.java:345) [00:43:23] [main/INFO]: [java.lang.Throwable:printStackTrace:659]:     at TRANSFORMER/minecraft@1.20.1/net.minecraft.client.main.Main.main(Main.java:149) [00:43:23] [main/INFO]: [java.lang.Throwable:printStackTrace:659]:     ... 15 more [00:43:23] [main/INFO]: [java.lang.Throwable:printStackTrace:682]: Caused by: org.spongepowered.asm.mixin.injection.throwables.InjectionError: Critical injection failure: Callback method iris$beginClouds(Lcom/mojang/blaze3d/vertex/PoseStack;Lorg/joml/Matrix4f;FDDDLorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V in mixins.oculus.json:MixinLevelRenderer failed injection check, (0/1) succeeded. Scanned 1 target(s). Using refmap oculus-mixins-refmap.json [00:43:23] [main/INFO]: [java.lang.Throwable:printStackTrace:682]:     at MC-BOOTSTRAP/org.spongepowered.mixin/org.spongepowered.asm.mixin.injection.struct.InjectionInfo.postInject(InjectionInfo.java:468) [00:43:23] [main/INFO]: [java.lang.Throwable:printStackTrace:682]:     at MC-BOOTSTRAP/org.spongepowered.mixin/org.spongepowered.asm.mixin.transformer.MixinTargetContext.applyInjections(MixinTargetContext.java:1362) [00:43:23] [main/INFO]: [java.lang.Throwable:printStackTrace:682]:     at MC-BOOTSTRAP/org.spongepowered.mixin/org.spongepowered.asm.mixin.transformer.MixinApplicatorStandard.applyInjections(MixinApplicatorStandard.java:1051) [00:43:23] [main/INFO]: [java.lang.Throwable:printStackTrace:682]:     at MC-BOOTSTRAP/org.spongepowered.mixin/org.spongepowered.asm.mixin.transformer.MixinApplicatorStandard.applyMixin(MixinApplicatorStandard.java:400) [00:43:23] [main/INFO]: [java.lang.Throwable:printStackTrace:682]:     at MC-BOOTSTRAP/org.spongepowered.mixin/org.spongepowered.asm.mixin.transformer.MixinApplicatorStandard.apply(MixinApplicatorStandard.java:325) [00:43:23] [main/INFO]: [java.lang.Throwable:printStackTrace:682]:     at MC-BOOTSTRAP/org.spongepowered.mixin/org.spongepowered.asm.mixin.transformer.TargetClassContext.apply(TargetClassContext.java:383) [00:43:23] [main/INFO]: [java.lang.Throwable:printStackTrace:682]:     at MC-BOOTSTRAP/org.spongepowered.mixin/org.spongepowered.asm.mixin.transformer.TargetClassContext.applyMixins(TargetClassContext.java:365) [00:43:23] [main/INFO]: [java.lang.Throwable:printStackTrace:682]:     at MC-BOOTSTRAP/org.spongepowered.mixin/org.spongepowered.asm.mixin.transformer.MixinProcessor.applyMixins(MixinProcessor.java:363) [00:43:23] [main/INFO]: [java.lang.Throwable:printStackTrace:682]:     ... 32 more Here I am! [VersionManager] Refreshing versions locally... [VersionManager] Versions has been refreshed (110 ms) [Launcher] Launcher exited. [Launcher] Minecraft closed with exit code: 1 flush now flush now  
    • Also remove cc-tweaked The build you are using is not compatible with Create
    • https://mclo.gs/D91YYGv been reformatted
    • Almost worked. But no that didn’t fix it mostly 
  • Topics

×
×
  • Create New...

Important Information

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