Jump to content

Recommended Posts

Posted

Using minecrafts Log file i've sorted out all the errors just need help with textures

  Quote
@SideOnly(Side.CLIENT)

    public IIcon getSideIcon(int p_150163_1_)

    {

        return this.field_150167_a[p_150163_1_ % this.field_150167_a.length];

    }

 

    @SideOnly(Side.CLIENT)

    public IIcon getTopIcon(int p_150161_1_)

    {

        return this.field_150166_b[p_150161_1_ % this.field_150166_b.length];

    }

so how do i alter this code to add my textures into this

Posted

@SideOnly(Side.CLIENT)

    @Override

    protected IIcon getSideIcon(int metadata)

    {

        return mySideIcon;

    }

 

    @SideOnly(Side.CLIENT)

    @Override

    protected IIcon getTopIcon(int metadata)

    {

        return myTopIcon;

    }

 

 

If you have more metadata wood just return: myIcon[metadata]

Posted

Ok like this:

 

public static final String[] TOP = {"topIcon1Name", "topIcon2Name", "topIcon3Name", and so on..};

public static final String[] SIDE = {"sideIcon1Name", "sideIcon2Name", "sideIcon3Name", and so on..};

 

private IIcon topIcon[];

private IIcon sideIcon[];

 

public void registerBlockIcons(IIconRegister iIconRegister)

{

      topIcon = new IIcon[TOP.length];

      sideIcon = new IIcon[sIDE.length];

 

      for (int i = 0; i < TOP.lenngth; i++)

      {

            topIcon = iIconRegister.registerIcon("modid" + ":" + TOP);

            sideIcon = iIconRegister.registerIcon("modid" + ":" + SIDE)

      }

   

}

 

@SideOnly(Side.CLIENT)

    @Override

    protected IIcon getSideIcon(int metadata)

    {

        return sideIcon[metadata];

    }

 

    @SideOnly(Side.CLIENT)

    @Override

    protected IIcon getTopIcon(int metadata)

    {

        return topIcon[metadata];

    }

 

 

 

That should do it! Fairy straight forward code.

Posted

Ok there is an error it comes up with following you code, which isn't just a hover over and fix,

Heres the full class

  Reveal hidden contents

 

any text in red highlight is the part eclipse registers as errors.

 

  Quote
public void registerBlockIcons(IIconRegister iIconRegister){

    topIcon = new IIcon[TOP.length];

    sideIcon = new IIcon[sIDE.length];

   

    for (int i =0; i < TOP.length;i++){

    topIcon = iIconRegister.registerIcon(HAT.MODID + ":Palm_Wood_Log" + "_Top");

    sideIcon = iIconRegister.registerIcon(HAT.MODID + ":Palm_Wood_Log" + "_Side");

    }

    }

 

The errors here want to change this

  Quote
private IIcon topIcon[];

    private IIcon sideIcon[];

into
  Quote
private IIcon topIcon;

    private IIcon sideIcon;

which of course causes array type errors down here
  Quote
  @SideOnly(Side.CLIENT)

    @Override

    protected IIcon getSideIcon(int metadata)

    {

        return sideIcon[1];

    }

 

    @SideOnly(Side.CLIENT)

    @Override

    protected IIcon getTopIcon(int metadata)

    {

        return topIcon[1];

    }

 

without resolving these errors

  Quote
public void registerBlockIcons(IIconRegister iIconRegister){

    topIcon = new IIcon[TOP.length];

    sideIcon = new IIcon[sIDE.length];

   

    for (int i =0; i < TOP.length;i++){

    topIcon = iIconRegister.registerIcon(HAT.MODID + ":Palm_Wood_Log" + "_Top");

    sideIcon = iIconRegister.registerIcon(HAT.MODID + ":Palm_Wood_Log" + "_Side");

    }

    }

 

Then it will want to change

  Quote
private IIcon topIcon;

    private IIcon sideIcon;

into
  Quote
private IIcon[] topIcon;

    private IIcon[] sideIcon;

and again get these errors 
  Quote
public void registerBlockIcons(IIconRegister iIconRegister){

    topIcon = new IIcon[TOP.length];

    sideIcon = new IIcon[sIDE.length];

   

    for (int i =0; i < TOP.length;i++){

    topIcon = iIconRegister.registerIcon(HAT.MODID + ":Palm_Wood_Log" + "_Top");

    sideIcon = iIconRegister.registerIcon(HAT.MODID + ":Palm_Wood_Log" + "_Side");

    }

    }

and to fix will try change
  Quote
private IIcon[] topIcon;

    private IIcon[] sideIcon;

back to
  Quote
private IIcon topIcon;

    private IIcon sideIcon;

which then keeps looping back through "solutions" which dont work.
Posted

In the registerIcons method, you need to change the second topIcon array to an actual array using topIcon = ***;

Don't PM me with questions. They will be ignored! Make a thread on the appropriate board for support.

 

1.12 -> 1.13 primer by williewillus.

 

1.7.10 and older versions of Minecraft are no longer supported due to it's age! Update to the latest version for support.

 

http://www.howoldisminecraft1710.today/

Posted

ok im confused with you all saying different things so Godis_apan change this to what you think it should be

  Quote
package hat.blocks.palmblocks;

 

import hat.HAT;

 

import java.util.Random;

 

import net.minecraft.block.Block;

import net.minecraft.block.BlockRotatedPillar;

import net.minecraft.block.material.Material;

import net.minecraft.client.renderer.texture.IIconRegister;

import net.minecraft.creativetab.CreativeTabs;

import net.minecraft.item.Item;

import net.minecraft.util.IIcon;

import net.minecraft.world.IBlockAccess;

import net.minecraft.world.World;

import cpw.mods.fml.relauncher.Side;

import cpw.mods.fml.relauncher.SideOnly;

 

public abstract class palmlog extends BlockRotatedPillar

{

    @SideOnly(Side.CLIENT)

    protected IIcon[] field_150167_a;

    @SideOnly(Side.CLIENT)

    protected IIcon[] field_150166_b;

    private static final String __OBFID = "CL_00000266";

    public static final String[] TOP ={"topIcon1Name"};

    public static final String[] SIDE ={"SIDEIcon1Name"};

    private IIcon topIcon[];

    private IIcon sideIcon[];

   

    public palmlog()

    {

        super(Material.wood);

        this.setHardness(2.0F);

        this.setStepSound(soundTypeWood);

    }

 

    public static int func_150165_c(int p_150165_0_)

    {

        return p_150165_0_ & 3;

    }

 

    /**

    * Returns the quantity of items to drop on block destruction.

    */

    public int quantityDropped(Random p_149745_1_)

    {

        return 1;

    }

 

    public Item getItemDropped(int p_149650_1_, Random p_149650_2_, int p_149650_3_)

    {

        return Item.getItemFromBlock(this);

    }

 

    public void breakBlock(World p_149749_1_, int p_149749_2_, int p_149749_3_, int p_149749_4_, Block p_149749_5_, int p_149749_6_)

    {

        byte b0 = 4;

        int i1 = b0 + 1;

 

        if (p_149749_1_.checkChunksExist(p_149749_2_ - i1, p_149749_3_ - i1, p_149749_4_ - i1, p_149749_2_ + i1, p_149749_3_ + i1, p_149749_4_ + i1))

        {

            for (int j1 = -b0; j1 <= b0; ++j1)

            {

                for (int k1 = -b0; k1 <= b0; ++k1)

                {

                    for (int l1 = -b0; l1 <= b0; ++l1)

                    {

                        Block block = p_149749_1_.getBlock(p_149749_2_ + j1, p_149749_3_ + k1, p_149749_4_ + l1);

                        if (block.isLeaves(p_149749_1_, p_149749_2_ + j1, p_149749_3_ + k1, p_149749_4_ + l1))

                        {

                            block.beginLeavesDecay(p_149749_1_, p_149749_2_ + j1, p_149749_3_ + k1, p_149749_4_ + l1);

                        }

                    }

                }

            }

        }

    }

    public void registerBlockIcons(IIconRegister iIconRegister){

    topIcon = new IIcon[TOP.length];

    sideIcon = new IIcon[sIDE.length];

   

    for (int i =0; i < TOP.length;i++){

    topIcon = IIconRegister.registerIcon(HAT.MODID + ":Palm_Wood_Log" + "_Top");

    sideIcon = IIconRegister.registerIcon(HAT.MODID + ":Palm_Wood_Log" + "_Side");

    }

    }

   

    @SideOnly(Side.CLIENT)

    @Override

    protected IIcon getSideIcon(int metadata)

    {

        return sideIcon[1];

    }

 

    @SideOnly(Side.CLIENT)

    @Override

    protected IIcon getTopIcon(int metadata)

    {

        return topIcon[1];

    }

 

 

    @Override

    public boolean canSustainLeaves(IBlockAccess world, int x, int y, int z)

    {

        return true;

    }

 

    @Override

    public boolean isWood(IBlockAccess world, int x, int y, int z)

    {

        return true;

    }

}

Posted

Yes but you can remove all this: 

 

 @SideOnly(Side.CLIENT)
    protected IIcon[] field_150167_a;
    @SideOnly(Side.CLIENT)
    protected IIcon[] field_150166_b;
    private static final String __OBFID = "CL_00000266";

 

And they should return 0, like this:

 

    @SideOnly(Side.CLIENT)
    @Override
    protected IIcon getSideIcon(int metadata)
    {
        return sideIcon[0];
    }

    @SideOnly(Side.CLIENT)
    @Override
    protected IIcon getTopIcon(int metadata)
    {
        return topIcon[0];
    }

Posted

ok done that but still shows errors

  Quote
for (int i =0; i < TOP.length;i++){

    topIcon = IIconRegister(HAT.MODID + ":Palm_Wood_Log" + "_Top");

    sideIcon = IIconRegisterr(HAT.MODID + ":Palm_Wood_Log" + "_Side");

in which case eclipse needs a method  "IIconRegister(string)" or as was before

  Quote
for (int i =0; i < TOP.length;i++){

    topIcon = IIconRegister.registerIcon(HAT.MODID + ":Palm_Wood_Log" + "_Top");

    sideIcon = IIconRegister.registerIcon(HAT.MODID + ":Palm_Wood_Log" + "_Side");

which goes into that loop

Posted

TGG, i know that, it's just that majesticmadman98, no offence, hasn't really got my point here. I my first or second message I explaind it all, just missed to add the little after the icons. But here's a finished code exaktly like you should have it:

 

public static final String[] TOP = {"Palm_Wood_Log_Top"};
public static final String[] SIDE = {"Palm_Wood_Log_Side"};

private IIcon[] topIcon;
private IIcon[] sideIcon;

public void registerBlockIcons(IIconRegister iIconRegister)
{
      topIcon = new IIcon[this.TOP.length];
      sideIcon = new IIcon[this.SIDE.length];

      for (int i = 0; i < TOP.lenngth; i++)
      {
            topIcon[i] = iIconRegister.registerIcon(HAT.MODID + ":" + this.TOP);
            sideIcon[i] = iIconRegister.registerIcon(HAT.MODID + ":" + this.SIDE)
      }
   
}

@SideOnly(Side.CLIENT)
    @Override
    protected IIcon getSideIcon(int metadata)
    {
        return sideIcon[metadata];
    }

    @SideOnly(Side.CLIENT)
    @Override
    protected IIcon getTopIcon(int metadata)
    {
        return topIcon[metadata];
    }

 

You shouldm't have to change anything

Posted

no offense taken, ok the class file is done with no errors but i presume is missing something as in the main file here

  Quote
palmlog = new palmlog().setBlockName("palmlog").setCreativeTab(hatblocksTab);
it says "Cannot Intitate the type palmlog" which is the part that usually links to the class which is called "palm log". Sorry for being such a pain on this tree building stuff the help is really appreciated guys, sorry if it was hard work to get this far.

 

Main class(things to do with the log will be in green)

 

  Reveal hidden contents

 

 

and the class

 

 

  Reveal hidden contents

 

Posted

Class names should always start with in initial Capital letter (including the constructors). Nothing else that is a symbol should, except manifest constants (ALL CAPS). Otherwise, you get completely hard to debug code that has errors as you can see, with no idea why.

 

Hint:

 

  Reveal hidden contents

 

Posted

A brief suggestion:

 

Use this icon array declaration at the beginning of your class. This sets the amount of icons we will be working with.

 

private IIcon[] icon = new IIcon[however_many_icons_you_need_as_an_integer];

 

Now that you've declared the number of icons to use, we need to determine on which side (and/or on which metadata) to load them:

 

@Override
@SideOnly(Side.CLIENT)
public IIcon getIcon(int side, int metadata)
{
     // 0 = bottom, 1 = top, for individual sides, please refer to BlockFurnace
}

 

Now that you've got all that, we need to register the icons so that they'll load in game:

 

@Override
@SideOnly(Side.CLIENT)
public void registerBlockIcons(IIconRegister ir)
{
     this.icon[0] = ir.registerIcon(""); // For loading textures, please refer to the hundred tutorials. I don't want to write out directory related stuff.
     // Let's say you declared 4 icons at the top. Using the number 0 as I did above uses one of the icons from our array. Still confused? Read more about arrays.
     // Now continue what I did above for each of your textures.
}

 

Hope this helps! :)

Posted
  On 4/26/2014 at 12:23 PM, majesticmadman98 said:

hey thanks for the suggestion but I'm currently using what Godis_apan said, but i cant test it as something about the block class stops the main class using the class

 

What you are effectively doing is

palmlog palmlog;
palmlog = new palmlog();

That is very obviously going to cause trouble because your compiler can't tell whether palmlog is the class definition, or the variable.

 

That is why everyone names classes in CamelCase

i.e.

Palmlog palmlog = new Palmlog();

 

If you don't stick to these conventions you're going to make yourself very unpopular with anyone who has to read or debug your code.

 

-TGG

 

Posted

ok heres the parts refering to the palm log now still with the erro and the palm log class.

  Reveal hidden contents

 

 

 

  Reveal hidden contents

 

Posted

Unless you are purposely snipping parts of your code, there are two problems.

You have not created any event handlers for FML to initialize your mod. So, none of your main mod code is getting executed.

Put

@EventHandler
public static void load(FMLPreinitializationEvent loadEvent) {
//  put your block and item creation code in here
}

Do the same for FMLInitializationEvent with another method.

The other thing is:

for (int i =0; i < TOP.length;i++){
          topIcon = iIconRegister.registerIcon(HAT.MODID + ":Palm_Wood_Log" + "_Top");
          sideIcon = iIconRegister.registerIcon(HAT.MODID + ":Palm_Wood_Log" + "_Side");
       }

needs to be:

int i;
for (i =0; i < TOP.length;i++){
      topIcon[i] = iIconRegister.registerIcon(HAT.MODID + ":Palm_Wood_Log_Top" + i);
      }
for (i =0; i < SIDE.length;i++){
      sideIcon[i] = iIconRegister.registerIcon(HAT.MODID + ":Palm_Wood_Log_Side" + i);
      }

If TOP.length == SIDE.length, you can merge the loops, like you had. You need to use the [ i ] notation.

Posted

yeah i snipped bits to but on here because i didnt think people would appreciate having to look through this

  Reveal hidden contents

 

 

so that's my main class and my log class:

  Reveal hidden contents

which still have the "Cannot initiate" error as above

 

Guest
This topic is now closed to further replies.

Announcements



  • Recently Browsing

    • No registered users viewing this page.
  • Posts

    • [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 
    • Add crash-reports with sites like https://mclo.gs/ Does it work without bettercombat?
  • Topics

  • Who's Online (See full list)

×
×
  • Create New...

Important Information

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