Jump to content

Recommended Posts

Posted (edited)

I made entity from this tutorial: https://www.youtube.com/watch?v=p6FFl3yN18M

But i made model in blockbench bcs tabula has lags.

In BlockBench i had to download plugin for export .java file, so i did it and its here:

package com.Szymeon.knightsmod.entity.model;

import net.minecraft.client.model.ModelBase;
import net.minecraft.client.model.ModelRenderer;
import net.minecraft.entity.Entity;

public class ModelOrk extends ModelBase {

    //fields
    ModelRenderer e0;
    ModelRenderer e1;
    ModelRenderer e2;
    ModelRenderer e3;
    ModelRenderer e4;
    ModelRenderer e5;
    ModelRenderer e6;
    ModelRenderer e7;
    ModelRenderer e8;
    ModelRenderer e9;
    ModelRenderer e10;

    public ModelOrk() {
        this.textureWidth = 128;
        this.textureHeight = 128;

        this.e0 = new ModelRenderer(this, 0, 0);
        this.e0.addBox(-9F, 22F, -6F, 18, 12, 12, 1.0F);
        this.e1 = new ModelRenderer(this, 0, 0);
        this.e1.addBox(-6.5F, 17F, -5F, 13, 5, 9, 1.0F);
        this.e2 = new ModelRenderer(this, 0, 0);
        this.e2.addBox(-5F, 34F, -7.5F, 9, 11, 11, 1.0F);
        this.e3 = new ModelRenderer(this, 0, 0);
        this.e3.addBox(-12F, 16F, -3F, 3, 11, 4, 1.0F);
        this.e4 = new ModelRenderer(this, 0, 0);
        this.e4.addBox(-12F, 14F, -4F, 3, 2, 5, 1.0F);
        this.e5 = new ModelRenderer(this, 0, 0);
        this.e5.addBox(-13F, 26F, -4F, 5, 8, 6, 1.0F);
        this.e6 = new ModelRenderer(this, 0, 0);
        this.e6.addBox(8F, 26F, -4F, 5, 8, 6, 1.0F);
        this.e7 = new ModelRenderer(this, 0, 0);
        this.e7.addBox(9F, 14F, -4F, 3, 2, 5, 1.0F);
        this.e8 = new ModelRenderer(this, 0, 0);
        this.e8.addBox(9F, 16F, -3F, 3, 11, 4, 1.0F);
        this.e9 = new ModelRenderer(this, 0, 0);
        this.e9.addBox(1.5F, 0F, -3F, 6, 17, 5, 1.0F);
        this.e10 = new ModelRenderer(this, 0, 0);
        this.e10.addBox(-7.5F, 0F, -3F, 6, 17, 5, 1.0F);

    }

    @Override
    public void render(Entity entity, float f, float f1, float f2, float f3, float f4, float f5) {
        this.e0.render(f5);
        this.e1.render(f5);
        this.e2.render(f5);
        this.e3.render(f5);
        this.e4.render(f5);
        this.e5.render(f5);
        this.e6.render(f5);
        this.e7.render(f5);
        this.e8.render(f5);
        this.e9.render(f5);
        this.e10.render(f5);

    }

    public void setRotateAngle(ModelRenderer modelRenderer, float x, float y, float z) {
        modelRenderer.rotateAngleX = x;
        modelRenderer.rotateAngleY = y;
        modelRenderer.rotateAngleZ = z;
    }
}

 

But my entity looks like this:

bugged.png

 

Should looks like this:

should looks like this.png

Anyone know what's wrong?

Edited by Szymeon
Posted

Show your rendering code please

About Me

  Reveal hidden contents

Versions below 1.14.4 are no longer supported on this forum. Use the latest version to receive support.

When asking support remember to include all relevant log files (logs are found in .minecraft/logs/), code if applicable and screenshots if possible.

Only download mods from trusted sites like CurseForge (minecraft.curseforge.com). A list of bad sites can be found here, with more information available at stopmodreposts.org

Edit your own signature at www.minecraftforge.net/forum/settings/signature/ (Make sure to check its compatibility with the Dark Theme)

Posted
package com.Szymeon.knightsmod.entity.render;

import com.Szymeon.knightsmod.Main;
import com.Szymeon.knightsmod.entity.EntityOrk;
import com.Szymeon.knightsmod.entity.model.ModelOrk;

import net.minecraft.client.model.ModelBase;
import net.minecraft.client.renderer.entity.RenderLiving;
import net.minecraft.client.renderer.entity.RenderManager;
import net.minecraft.util.ResourceLocation;

public class RenderOrk extends RenderLiving<EntityOrk>
{
	public static final ResourceLocation TEXTURES = new ResourceLocation(Main.MOD_ID + ":textures/entity/ork.png");

	public RenderOrk(RenderManager manager)
	{
		super(manager, new ModelOrk(), 0.5F);
	}
	
	@Override
	protected ResourceLocation getEntityTexture(EntityOrk entity)
	{
		return TEXTURES;
	}
	
	@Override
	protected void applyRotations(EntityOrk entityLiving, float p_77043_2_, float rotationYaw, float partialTicks)
	{
		super.applyRotations(entityLiving, p_77043_2_, rotationYaw, partialTicks);
	}
}

 

Posted

To me this looks like the entity is upside down. Maybe something is wrong with your modelling software and the way it exported the model? In any case you can rotate the entity by 180 degrees around the z axis to fix this.

  • Like 1
Posted

Aaaaa, ok, thanks. btw. maybe u know how to place entity in a custom structure? I placed entity to structure and save .nbt file by mcedit. Sometimes he is in spawned structure but sometimes he isnt. :/

do u know what i mean?

Posted

Most models are created upside down because of how texture coordinates work. It’s easier for humans to create them upside down and then rotate them in the rendering. This is because texture coordinates (UV) have the V axis going down when pretty much every axis ever goes up. Here are a couple diagrams to illustrate this43350675-C0BC-4ECC-8B0E-E5B93730E52D.png.f47a47753bf07c6df5ce6739923055b9.png93E43563-356B-4321-9448-DF1AF11CADC8.thumb.png.d61081d51313dd2fa05182dc8ff71249.png

  • Like 1

About Me

  Reveal hidden contents

Versions below 1.14.4 are no longer supported on this forum. Use the latest version to receive support.

When asking support remember to include all relevant log files (logs are found in .minecraft/logs/), code if applicable and screenshots if possible.

Only download mods from trusted sites like CurseForge (minecraft.curseforge.com). A list of bad sites can be found here, with more information available at stopmodreposts.org

Edit your own signature at www.minecraftforge.net/forum/settings/signature/ (Make sure to check its compatibility with the Dark Theme)

Join the conversation

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

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

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

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

×   Your previous content has been restored.   Clear editor

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

Announcements



  • Recently Browsing

    • No registered users viewing this page.
  • Posts

    • Hello! I'm trying to make a minecraft modpack to play with my friends but the game keeps crashing. I'm not sure what to do with logs and such, but here they are.   [13:52:06] [main/INFO]:ModLauncher running: args [--username, CNMashin, --version, forge-47.4.0, --gameDir, C:\Users\wyatt\curseforge\minecraft\Instances\Kurai Kaisen Official Modpack, --assetsDir, C:\Users\wyatt\curseforge\minecraft\Install\assets, --assetIndex, 5, --uuid, da541fc8ccea4f80a96dd76df22b29e4, --accessToken, ????????, --clientId, ZjYxNzdjMzMtMzkxYi00MDUxLWI1OTEtMzA0ZDQ3N2IzZDJm, --xuid, 2535406116637419, --userType, msa, --versionType, release, --width, 1024, --height, 768, --quickPlayPath, C:\Users\wyatt\curseforge\minecraft\Install\quickPlay\java\1756147924956.json, --launchTarget, forgeclient, --fml.forgeVersion, 47.4.0, --fml.mcVersion, 1.20.1, --fml.forgeGroup, net.minecraftforge, --fml.mcpVersion, 20230612.114412] [13:52:06] [main/INFO]:ModLauncher 10.0.9+10.0.9+main.dcd20f30 starting: java version 17.0.15 by Microsoft; OS Windows 11 arch amd64 version 10.0 [13:52:07] [main/INFO]:Loading ImmediateWindowProvider fmlearlywindow [13:52:07] [main/INFO]:Trying GL version 4.6 [13:52:08] [main/INFO]:Requested GL version 4.6 got version 4.6 [13:52:08] [main/INFO]:SpongePowered MIXIN Subsystem Version=0.8.5 Source=union:/C:/Users/wyatt/curseforge/minecraft/Install/libraries/org/spongepowered/mixin/0.8.5/mixin-0.8.5.jar%23100!/ Service=ModLauncher Env=CLIENT [13:52:08] [pool-2-thread-1/INFO]:GL info: NVIDIA GeForce RTX 3060/PCIe/SSE2 GL version 4.6.0 NVIDIA 580.88, NVIDIA Corporation [13:52:08] [main/INFO]:Found mod file alexscaves-2.0.2.jar of type MOD with provider {mods folder locator at C:\Users\wyatt\curseforge\minecraft\Instances\Kurai Kaisen Official Modpack\mods} [13:52:08] [main/INFO]:Found mod file alexsmobs-1.22.9.jar of type MOD with provider {mods folder locator at C:\Users\wyatt\curseforge\minecraft\Instances\Kurai Kaisen Official Modpack\mods} [13:52:08] [main/INFO]:Found mod file ancientstructures-forge-1.20.1-0.0.7.jar of type MOD with provider {mods folder locator at C:\Users\wyatt\curseforge\minecraft\Instances\Kurai Kaisen Official Modpack\mods} [13:52:08] [main/INFO]:Found mod file ApothicAttributes-1.20.1-1.3.7.jar of type MOD with provider {mods folder locator at C:\Users\wyatt\curseforge\minecraft\Instances\Kurai Kaisen Official Modpack\mods} [13:52:08] [main/INFO]:Found mod file architectury-9.2.14-forge.jar of type MOD with provider {mods folder locator at C:\Users\wyatt\curseforge\minecraft\Instances\Kurai Kaisen Official Modpack\mods} [13:52:08] [main/INFO]:Found mod file Armor of the Ages-forge-1.20.1-1.3.8.jar of type MOD with provider {mods folder locator at C:\Users\wyatt\curseforge\minecraft\Instances\Kurai Kaisen Official Modpack\mods} [13:52: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\wyatt\curseforge\minecraft\Instances\Kurai Kaisen Official Modpack\mods} [13:52: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\wyatt\curseforge\minecraft\Instances\Kurai Kaisen Official Modpack\mods} [13:52:08] [main/INFO]:Found mod file bettercombat-forge-1.8.6+1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\wyatt\curseforge\minecraft\Instances\Kurai Kaisen Official Modpack\mods} [13:52: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\wyatt\curseforge\minecraft\Instances\Kurai Kaisen Official Modpack\mods} [13:52: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\wyatt\curseforge\minecraft\Instances\Kurai Kaisen Official Modpack\mods} [13:52:08] [main/INFO]:Found mod file caelus-forge-3.2.0+1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\wyatt\curseforge\minecraft\Instances\Kurai Kaisen Official Modpack\mods} [13:52:08] [main/INFO]:Found mod file citadel-2.6.2-1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\wyatt\curseforge\minecraft\Instances\Kurai Kaisen Official Modpack\mods} [13:52:08] [main/INFO]:Found mod file cloth-config-11.1.136-forge.jar of type MOD with provider {mods folder locator at C:\Users\wyatt\curseforge\minecraft\Instances\Kurai Kaisen Official Modpack\mods} [13:52:08] [main/INFO]:Found mod file comforts-forge-6.4.0+1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\wyatt\curseforge\minecraft\Instances\Kurai Kaisen Official Modpack\mods} [13:52:08] [main/INFO]:Found mod file connectedglass-1.1.14-forge-mc1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\wyatt\curseforge\minecraft\Instances\Kurai Kaisen Official Modpack\mods} [13:52: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\wyatt\curseforge\minecraft\Instances\Kurai Kaisen Official Modpack\mods}   [13:52: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\wyatt\curseforge\minecraft\Instances\Kurai Kaisen Official Modpack\mods} [13:52:08] [main/INFO]:Found mod file cosmeticarmorreworked-1.20.1-v1a.jar of type MOD with provider {mods folder locator at C:\Users\wyatt\curseforge\minecraft\Instances\Kurai Kaisen Official Modpack\mods} [13:52:08] [main/INFO]:Found mod file cozy_home-3.0.4-forge-1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\wyatt\curseforge\minecraft\Instances\Kurai Kaisen Official Modpack\mods} [13:52: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\wyatt\curseforge\minecraft\Instances\Kurai Kaisen Official Modpack\mods} [13:52: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\wyatt\curseforge\minecraft\Instances\Kurai Kaisen Official Modpack\mods} [13:52:08] [main/INFO]:Found mod file createaddition-1.20.1-1.3.2.jar of type MOD with provider {mods folder locator at C:\Users\wyatt\curseforge\minecraft\Instances\Kurai Kaisen Official Modpack\mods} [13:52:08] [main/INFO]:Found mod file createbigcannons-5.9.1-mc.1.20.1-forge.jar of type MOD with provider {mods folder locator at C:\Users\wyatt\curseforge\minecraft\Instances\Kurai Kaisen Official Modpack\mods} [13:52: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\wyatt\curseforge\minecraft\Instances\Kurai Kaisen Official Modpack\mods} [13:52: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\wyatt\curseforge\minecraft\Instances\Kurai Kaisen Official Modpack\mods} [13:52:08] [main/INFO]:Found mod file Cucumber-1.20.1-7.0.15.jar of type MOD with provider {mods folder locator at C:\Users\wyatt\curseforge\minecraft\Instances\Kurai Kaisen Official Modpack\mods} [13:52: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\wyatt\curseforge\minecraft\Instances\Kurai Kaisen Official Modpack\mods} [13:52:08] [main/INFO]:Found mod file dawnoftimebuilder-forge-1.20.1-1.5.18.jar of type MOD with provider {mods folder locator at C:\Users\wyatt\curseforge\minecraft\Instances\Kurai Kaisen Official Modpack\mods} [13:52: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\wyatt\curseforge\minecraft\Instances\Kurai Kaisen Official Modpack\mods} [13:52: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\wyatt\curseforge\minecraft\Instances\Kurai Kaisen Official Modpack\mods} [13:52: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\wyatt\curseforge\minecraft\Instances\Kurai Kaisen Official Modpack\mods} [13:52:08] [main/INFO]:Found mod file entity_texture_features_1.20.1-forge-7.0.1.jar of type MOD with provider {mods folder locator at C:\Users\wyatt\curseforge\minecraft\Instances\Kurai Kaisen Official Modpack\mods} [13:52:08] [main/INFO]:Found mod file fabric-api-0.92.6+1.11.14+1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\wyatt\curseforge\minecraft\Instances\Kurai Kaisen Official Modpack\mods} [13:52:08] [main/INFO]:Found mod file FarmersDelight-1.20.1-1.2.9.jar of type MOD with provider {mods folder locator at C:\Users\wyatt\curseforge\minecraft\Instances\Kurai Kaisen Official Modpack\mods} [13:52:08] [main/INFO]:Found mod file figura-0.1.5+1.20.1-forge-mc.jar of type MOD with provider {mods folder locator at C:\Users\wyatt\curseforge\minecraft\Instances\Kurai Kaisen Official Modpack\mods} [13:52:08] [main/INFO]:Found mod file framework-forge-1.20.1-0.7.15.jar of type MOD with provider {mods folder locator at C:\Users\wyatt\curseforge\minecraft\Instances\Kurai Kaisen Official Modpack\mods} [13:52:08] [main/INFO]:Found mod file ftb-library-forge-2001.2.10.jar of type MOD with provider {mods folder locator at C:\Users\wyatt\curseforge\minecraft\Instances\Kurai Kaisen Official Modpack\mods} [13:52:08] [main/INFO]:Found mod file ftb-ultimine-forge-2001.1.7.jar of type MOD with provider {mods folder locator at C:\Users\wyatt\curseforge\minecraft\Instances\Kurai Kaisen Official Modpack\mods} [13:52:08] [main/INFO]:Found mod file fusion-1.2.11a-forge-mc1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\wyatt\curseforge\minecraft\Instances\Kurai Kaisen Official Modpack\mods} [13:52:08] [main/INFO]:Found mod file geckolib-forge-1.20.1-4.7.4.jar of type MOD with provider {mods folder locator at C:\Users\wyatt\curseforge\minecraft\Instances\Kurai Kaisen Official Modpack\mods} [13:52: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\wyatt\curseforge\minecraft\Instances\Kurai Kaisen Official Modpack\mods} [13:52: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\wyatt\curseforge\minecraft\Instances\Kurai Kaisen Official Modpack\mods} [13:52:08] [main/INFO]:Found mod file irons_spellbooks-1.20.1-3.4.0.10.jar of type MOD with provider {mods folder locator at C:\Users\wyatt\curseforge\minecraft\Instances\Kurai Kaisen Official Modpack\mods} [13:52: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\wyatt\curseforge\minecraft\Instances\Kurai Kaisen Official Modpack\mods} [13:52: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\wyatt\curseforge\minecraft\Instances\Kurai Kaisen Official Modpack\mods} [13:52:08] [main/INFO]:Found mod file kotlinforforge-4.11.0-all.jar of type LIBRARY with provider {mods folder locator at C:\Users\wyatt\curseforge\minecraft\Instances\Kurai Kaisen Official Modpack\mods} [13:52:08] [main/INFO]:Found mod file L_Enders_Cataclysm-3.16.jar of type MOD with provider {mods folder locator at C:\Users\wyatt\curseforge\minecraft\Instances\Kurai Kaisen Official Modpack\mods} [13:52:08] [main/INFO]:Found mod file largemeals-1.20.1-1.3.0.jar of type MOD with provider {mods folder locator at C:\Users\wyatt\curseforge\minecraft\Instances\Kurai Kaisen Official Modpack\mods} [13:52:08] [main/INFO]:Found mod file lionfishapi-2.4-Fix.jar of type MOD with provider {mods folder locator at C:\Users\wyatt\curseforge\minecraft\Instances\Kurai Kaisen Official Modpack\mods} [13:52:08] [main/INFO]:Found mod file mdm-25.6.1-forge-1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\wyatt\curseforge\minecraft\Instances\Kurai Kaisen Official Modpack\mods}   [13:52:08] [main/INFO]:Found mod file Mekanism-1.20.1-10.4.16.80.jar of type MOD with provider {mods folder locator at C:\Users\wyatt\curseforge\minecraft\Instances\Kurai Kaisen Official Modpack\mods} [13:52:08] [main/INFO]:Found mod file MekanismGenerators-1.20.1-10.4.16.80.jar of type MOD with provider {mods folder locator at C:\Users\wyatt\curseforge\minecraft\Instances\Kurai Kaisen Official Modpack\mods} [13:52:08] [main/INFO]:Found mod file minecolonies-1.20.1-1.1.976.jar of type MOD with provider {mods folder locator at C:\Users\wyatt\curseforge\minecraft\Instances\Kurai Kaisen Official Modpack\mods} [13:52:08] [main/INFO]:Found mod file moonlight-1.20-2.16.5-forge.jar of type MOD with provider {mods folder locator at C:\Users\wyatt\curseforge\minecraft\Instances\Kurai Kaisen Official Modpack\mods} [13:52: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\wyatt\curseforge\minecraft\Instances\Kurai Kaisen Official Modpack\mods} [13:52:08] [main/INFO]:Found mod file mowziesmobs-1.7.3.jar of type MOD with provider {mods folder locator at C:\Users\wyatt\curseforge\minecraft\Instances\Kurai Kaisen Official Modpack\mods} [13:52: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\wyatt\curseforge\minecraft\Instances\Kurai Kaisen Official Modpack\mods} [13:52:08] [main/INFO]:Found mod file MysticalAgradditions-1.20.1-7.0.11.jar of type MOD with provider {mods folder locator at C:\Users\wyatt\curseforge\minecraft\Instances\Kurai Kaisen Official Modpack\mods} [13:52:08] [main/INFO]:Found mod file MysticalAgriculture-1.20.1-7.0.23.jar of type MOD with provider {mods folder locator at C:\Users\wyatt\curseforge\minecraft\Instances\Kurai Kaisen Official Modpack\mods} [13:52:08] [main/INFO]:Found mod file nethersdelight-1.20.1-4.0.jar of type MOD with provider {mods folder locator at C:\Users\wyatt\curseforge\minecraft\Instances\Kurai Kaisen Official Modpack\mods} [13:52: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\wyatt\curseforge\minecraft\Instances\Kurai Kaisen Official Modpack\mods} [13:52:08] [main/INFO]:Found mod file origins-forge-1.20.1-1.10.0.9-all.jar of type MOD with provider {mods folder locator at C:\Users\wyatt\curseforge\minecraft\Instances\Kurai Kaisen Official Modpack\mods} [13:52:08] [main/INFO]:Found mod file ParCool-1.20.1-3.4.1.4.jar of type MOD with provider {mods folder locator at C:\Users\wyatt\curseforge\minecraft\Instances\Kurai Kaisen Official Modpack\mods} [13:52:08] [main/INFO]:Found mod file Pehkui-3.8.2+1.20.1-forge.jar of type MOD with provider {mods folder locator at C:\Users\wyatt\curseforge\minecraft\Instances\Kurai Kaisen Official Modpack\mods} [13:52: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\wyatt\curseforge\minecraft\Instances\Kurai Kaisen Official Modpack\mods} [13:52: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\wyatt\curseforge\minecraft\Instances\Kurai Kaisen Official Modpack\mods} [13:52:08] [main/INFO]:Found mod file polymorph-forge-0.49.10+1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\wyatt\curseforge\minecraft\Instances\Kurai Kaisen Official Modpack\mods} [13:52:08] [main/INFO]:Found mod file redeco-1.14.1-forge-1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\wyatt\curseforge\minecraft\Instances\Kurai Kaisen Official Modpack\mods} [13:52:08] [main/INFO]:Found mod file refurbished_furniture-forge-1.20.1-1.0.14.jar of type MOD with provider {mods folder locator at C:\Users\wyatt\curseforge\minecraft\Instances\Kurai Kaisen Official Modpack\mods} [13:52: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\wyatt\curseforge\minecraft\Instances\Kurai Kaisen Official Modpack\mods} [13:52:08] [main/INFO]:Found mod file ritchiesprojectilelib-2.1.0+mc.1.20.1-forge.jar of type MOD with provider {mods folder locator at C:\Users\wyatt\curseforge\minecraft\Instances\Kurai Kaisen Official Modpack\mods} [13:52:08] [main/INFO]:Found mod file SereneSeasons-forge-1.20.1-9.1.0.2.jar of type MOD with provider {mods folder locator at C:\Users\wyatt\curseforge\minecraft\Instances\Kurai Kaisen Official Modpack\mods} [13:52:08] [main/INFO]:Found mod file sophisticatedbackpacks-1.20.1-3.23.26.1315.jar of type MOD with provider {mods folder locator at C:\Users\wyatt\curseforge\minecraft\Instances\Kurai Kaisen Official Modpack\mods} [13:52:08] [main/INFO]:Found mod file sophisticatedcore-1.20.1-1.2.81.1091.jar of type MOD with provider {mods folder locator at C:\Users\wyatt\curseforge\minecraft\Instances\Kurai Kaisen Official Modpack\mods} [13:52:08] [main/INFO]:Found mod file Steam_Rails-1.6.7+forge-mc1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\wyatt\curseforge\minecraft\Instances\Kurai Kaisen Official Modpack\mods} [13:52:08] [main/INFO]:Found mod file Structory_1.20.x_v1.3.5.jar of type MOD with provider {mods folder locator at C:\Users\wyatt\curseforge\minecraft\Instances\Kurai Kaisen Official Modpack\mods} [13:52: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\wyatt\curseforge\minecraft\Instances\Kurai Kaisen Official Modpack\mods} [13:52: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\wyatt\curseforge\minecraft\Instances\Kurai Kaisen Official Modpack\mods} [13:52:08] [main/INFO]:Found mod file supplementaries-1.20-3.1.37.jar of type MOD with provider {mods folder locator at C:\Users\wyatt\curseforge\minecraft\Instances\Kurai Kaisen Official Modpack\mods} [13:52:08] [main/INFO]:Found mod file TerraBlender-forge-1.20.1-3.0.1.10.jar of type MOD with provider {mods folder locator at C:\Users\wyatt\curseforge\minecraft\Instances\Kurai Kaisen Official Modpack\mods} [13:52: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\wyatt\curseforge\minecraft\Instances\Kurai Kaisen Official Modpack\mods} [13:52:08] [main/INFO]:Found mod file traveloptics-5.4.4-1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\wyatt\curseforge\minecraft\Instances\Kurai Kaisen Official Modpack\mods} [13:52:08] [main/INFO]:Found mod file waterframes-FORGE-mc1.20.1-v2.1.15.jar of type MOD with provider {mods folder locator at C:\Users\wyatt\curseforge\minecraft\Instances\Kurai Kaisen Official Modpack\mods} [13:52:08] [main/INFO]:Found mod file watermedia-2.1.30.jar of type MOD with provider {mods folder locator at C:\Users\wyatt\curseforge\minecraft\Instances\Kurai Kaisen Official Modpack\mods}   [13:52:08] [main/INFO]:Found mod file watermedia-2.1.30.jar of type MOD with provider {mods folder locator at C:\Users\wyatt\curseforge\minecraft\Instances\Kurai Kaisen Official Modpack\mods} [13:52:08] [main/INFO]:Found mod file waystones-forge-1.20.1-14.1.17.jar of type MOD with provider {mods folder locator at C:\Users\wyatt\curseforge\minecraft\Instances\Kurai Kaisen Official Modpack\mods} [13:52:08] [main/INFO]:Found mod file XaerosWorldMap_1.39.12_Forge_1.20.jar of type MOD with provider {mods folder locator at C:\Users\wyatt\curseforge\minecraft\Instances\Kurai Kaisen Official Modpack\mods} [13:52:08] [main/INFO]:Found mod file XeKr's Decoration-1.20.1-Forge-0.8.5.jar of type MOD with provider {mods folder locator at C:\Users\wyatt\curseforge\minecraft\Instances\Kurai Kaisen Official Modpack\mods} [13:52:08] [main/INFO]:Found mod file yet_another_config_lib_v3-3.6.6+1.20.1-forge.jar of type MOD with provider {mods folder locator at C:\Users\wyatt\curseforge\minecraft\Instances\Kurai Kaisen Official Modpack\mods} [13:52: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\wyatt\curseforge\minecraft\Instances\Kurai Kaisen Official Modpack\mods} [13:52: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\wyatt\curseforge\minecraft\Instances\Kurai Kaisen Official Modpack\mods} [13:52: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\wyatt\curseforge\minecraft\Instances\Kurai Kaisen Official Modpack\mods} [13:52: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\wyatt\curseforge\minecraft\Instances\Kurai Kaisen Official Modpack\mods} [13:52: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\wyatt\curseforge\minecraft\Instances\Kurai Kaisen Official Modpack\mods} [13:52: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\wyatt\curseforge\minecraft\Instances\Kurai Kaisen Official Modpack\mods} [13:52: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\wyatt\curseforge\minecraft\Instances\Kurai Kaisen Official Modpack\mods} [13:52: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\wyatt\curseforge\minecraft\Instances\Kurai Kaisen Official Modpack\mods} [13:52: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\wyatt\curseforge\minecraft\Instances\Kurai Kaisen Official Modpack\mods} [13:52: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\wyatt\curseforge\minecraft\Instances\Kurai Kaisen Official Modpack\mods} [13:52:08] [main/INFO]:Found mod file YungsBridges-1.20-Forge-4.0.3.jar of type MOD with provider {mods folder locator at C:\Users\wyatt\curseforge\minecraft\Instances\Kurai Kaisen Official Modpack\mods} [13:52:08] [main/INFO]:Found mod file YungsCaveBiomes-1.20.1-Forge-2.0.5.jar of type MOD with provider {mods folder locator at C:\Users\wyatt\curseforge\minecraft\Instances\Kurai Kaisen Official Modpack\mods} [13:52:08] [main/WARN]:Mod file C:\Users\wyatt\curseforge\minecraft\Install\libraries\net\minecraftforge\fmlcore\1.20.1-47.4.0\fmlcore-1.20.1-47.4.0.jar is missing mods.toml file [13:52:08] [main/WARN]:Mod file C:\Users\wyatt\curseforge\minecraft\Install\libraries\net\minecraftforge\javafmllanguage\1.20.1-47.4.0\javafmllanguage-1.20.1-47.4.0.jar is missing mods.toml file [13:52:08] [main/WARN]:Mod file C:\Users\wyatt\curseforge\minecraft\Install\libraries\net\minecraftforge\lowcodelanguage\1.20.1-47.4.0\lowcodelanguage-1.20.1-47.4.0.jar is missing mods.toml file [13:52:08] [main/WARN]:Mod file C:\Users\wyatt\curseforge\minecraft\Install\libraries\net\minecraftforge\mclanguage\1.20.1-47.4.0\mclanguage-1.20.1-47.4.0.jar is missing mods.toml file [13:52: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@7772054c [13:52: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@7772054c [13:52: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@7772054c [13:52: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@7772054c [13:52: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@7772054c [13:52: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@7772054c [13:52:09] [main/WARN]:Attempted to select two dependency jars from JarJar which have the same identification: Mod File: and Mod File: . Using Mod File: [13:52:09] [main/INFO]:Found 76 dependencies adding them to mods collection [13:52:09] [main/INFO]:Found mod file fabric-dimensions-v1-2.1.55+8005d10d77.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@714f3da4 [13:52:09] [main/INFO]:Found mod file fabric-transfer-api-v1-3.3.6+631c9cd677.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@714f3da4 [13:52:09] [main/INFO]:Found mod file kiwi-11.8.29+forge.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@714f3da4 [13:52: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@714f3da4 [13:52:09] [main/INFO]:Found mod file fabric-renderer-api-v1-3.2.2+cf68abbe77.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@714f3da4 [13:52:08] [main/WARN]:Mod file C:\Users\wyatt\curseforge\minecraft\Install\libraries\net\minecraftforge\fmlcore\1.20.1-47.4.0\fmlcore-1.20.1-47.4.0.jar is missing mods.toml file [13:52:08] [main/WARN]:Mod file C:\Users\wyatt\curseforge\minecraft\Install\libraries\net\minecraftforge\javafmllanguage\1.20.1-47.4.0\javafmllanguage-1.20.1-47.4.0.jar is missing mods.toml file [13:52:08] [main/WARN]:Mod file C:\Users\wyatt\curseforge\minecraft\Install\libraries\net\minecraftforge\lowcodelanguage\1.20.1-47.4.0\lowcodelanguage-1.20.1-47.4.0.jar is missing mods.toml file [13:52:08] [main/WARN]:Mod file C:\Users\wyatt\curseforge\minecraft\Install\libraries\net\minecraftforge\mclanguage\1.20.1-47.4.0\mclanguage-1.20.1-47.4.0.jar is missing mods.toml file [13:52: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@7772054c [13:52: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@7772054c [13:52: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@7772054c [13:52: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@7772054c [13:52: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@7772054c [13:52: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@7772054c [13:52:09] [main/WARN]:Attempted to select two dependency jars from JarJar which have the same identification: Mod File: and Mod File: . Using Mod File: [13:52:09] [main/INFO]:Found 76 dependencies adding them to mods collection [13:52:09] [main/INFO]:Found mod file fabric-dimensions-v1-2.1.55+8005d10d77.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@714f3da4 [13:52:09] [main/INFO]:Found mod file fabric-transfer-api-v1-3.3.6+631c9cd677.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@714f3da4 [13:52:09] [main/INFO]:Found mod file kiwi-11.8.29+forge.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@714f3da4 [13:52: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@714f3da4 [13:52:09] [main/INFO]:Found mod file fabric-renderer-api-v1-3.2.2+cf68abbe77.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@714f3da4 [13:52:09] [main/INFO]:Found mod file additionalentityattributes-forge-1.4.0.5+1.20.1.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@714f3da4 [13:52:09] [main/INFO]:Found mod file nv-websocket-client-2.14.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@714f3da4 [13:52:09] [main/INFO]:Found mod file kfflang-4.11.0.jar of type LANGPROVIDER with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@714f3da4 [13:52:09] [main/INFO]:Found mod file Ponder-Forge-1.20.1-1.0.80.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@714f3da4 [13:52:09] [main/INFO]:Found mod file fabric-item-api-v1-2.1.29+4d0bbcfa77.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@714f3da4 [13:52:09] [main/INFO]:Found mod file fabric-model-loading-api-v1-1.0.4+6274ab9d77.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@714f3da4 [13:52:09] [main/INFO]:Found mod file imageio-webp-3.12.0.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@714f3da4 [13:52:09] [main/INFO]:Found mod file fabric-rendering-fluids-v1-3.0.29+4ac5e37a77.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@714f3da4 [13:52:09] [main/INFO]:Found mod file fabric-screen-handler-api-v1-1.3.33+561530ec77.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@714f3da4 [13:52:09] [main/INFO]:Found mod file fabric-models-v0-0.4.3+7c3892a477.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@714f3da4 [13:52:09] [main/INFO]:Found mod file fabric-resource-loader-v0-0.11.12+4b4151c077.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@714f3da4 [13:52:09] [main/INFO]:Found mod file mclib-20.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@714f3da4 [13:52:09] [main/INFO]:Found mod file apoli-forge-1.20.1-2.9.0.8.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@714f3da4 [13:52:09] [main/INFO]:Found mod file fabric-rendering-v1-3.0.9+66e9a48f77.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@714f3da4 [13:52:09] [main/INFO]:Found mod file fabric-renderer-indigo-1.5.3+b5b2da4177.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@714f3da4 [13:52:09] [main/INFO]:Found mod file fabric-loader-2.6.0+0.15.0+1.20.1-full.jar of type LANGPROVIDER with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@714f3da4 [13:52:09] [main/INFO]:Found mod file fabric-convention-tags-v1-1.5.6+fa3d1c0177.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@714f3da4 [13:52:09] [main/INFO]:Found mod file imageio-core-3.12.0.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@714f3da4 [13:52:09] [main/INFO]:Found mod file fabric-mining-level-api-v1-2.1.52+561530ec77.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@714f3da4 [13:52:09] [main/INFO]:Found mod file fabric-command-api-v1-1.2.35+f71b366f77.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@714f3da4 [13:52:09] [main/INFO]:Found mod file fabric-block-view-api-v2-1.0.3+53347ba977.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@714f3da4 [13:52:09] [main/INFO]:Found mod file MixinExtras-0.4.1.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@714f3da4 [13:52:09] [main/INFO]:Found mod file fabric-command-api-v2-2.2.14+561530ec77.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@714f3da4 [13:52:09] [main/INFO]:Found mod file MixinSquared-0.1.1.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@714f3da4 [13:52:09] [main/INFO]:Found mod file fabric-data-attachment-api-v1-1.0.2+30ef839e77.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@714f3da4 [13:52:09] [main/INFO]:Found mod file luaj-jse-3.0.8-figura.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@714f3da4 [13:52:09] [main/INFO]:Found mod file mixinextras-forge-0.2.0-beta.8.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@714f3da4 [13:52:09] [main/INFO]:Found mod file common-lang-3.12.0.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@714f3da4 [13:52:09] [main/INFO]:Found mod file fabric-screen-api-v1-2.0.9+45a670a577.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@714f3da4 [13:52:09] [main/INFO]:Found mod file fabric-particles-v1-1.1.3+78e1ecb877.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@714f3da4 [13:52:09] [main/INFO]:Found mod file gson-0.2.1.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@714f3da4 [13:52:09] [main/INFO]:Found mod file fabric-content-registries-v0-4.0.13+a670df1e77.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@714f3da4 [13:52:09] [main/INFO]:Found mod file fabric-transitive-access-wideners-v1-4.3.2+1880499877.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@714f3da4 [13:52:09] [main/INFO]:Found mod file fabric-game-rule-api-v1-1.0.41+683d4da877.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@714f3da4 [13:52:09] [main/INFO]:Found mod file fabric-api-base-0.4.32+ef105b4977.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@714f3da4 [13:52:09] [main/INFO]:Found mod file fabric-api-lookup-api-v1-1.6.37+67f9824077.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@714f3da4 [13:52:09] [main/INFO]:Found mod file fabric-blockrenderlayer-v1-1.1.42+1d0da21e77.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@714f3da4 [13:52:09] [main/INFO]:Found mod file mixinsquared-forge-0.1.1.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@714f3da4 [13:52:09] [main/INFO]:Found mod file common-io-3.12.0.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@714f3da4 [13:52:09] [main/INFO]:Found mod file Registrate-MC1.20-1.3.3.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@714f3da4 [13:52:09] [main/INFO]:Found mod file json-0.2.1.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@714f3da4 [13:52:09] [main/INFO]:Found mod file fabric-block-api-v1-1.0.12+0e6cb7f777.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@714f3da4 [13:52:09] [main/INFO]:Found mod file spectrelib-forge-0.13.17+1.20.1.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@714f3da4 [13:52:09] [main/INFO]:Found mod file httpmime-4.5.10.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@714f3da4 [13:52:09] [main/INFO]:Found mod file fabric-resource-conditions-api-v1-2.3.9+996d00b277.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@714f3da4 [13:52:09] [main/INFO]:Found mod file calio-forge-1.20.1-1.11.0.5.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@714f3da4 [13:52:09] [main/INFO]:Found mod file kffmod-4.11.0.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@714f3da4 [13:52:09] [main/INFO]:Found mod file kfflib-4.11.0.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@714f3da4 [13:52:09] [main/INFO]:Found mod file flywheel-forge-1.20.1-1.0.4.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@714f3da4   [13:52:09] [main/INFO]:Found mod file bytecodecs-1.0.2.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@714f3da4 [13:52:09] [main/INFO]:Found mod file fabric-item-group-api-v1-4.0.14+c9161c2d77.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@714f3da4 [13:52:09] [main/INFO]:Found mod file common-image-3.12.0.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@714f3da4 [13:52:09] [main/INFO]:Found mod file jcpp-1.4.14.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@714f3da4 [13:52:09] [main/INFO]:Found mod file fabric-biome-api-v1-13.0.14+dc36698e77.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@714f3da4 [13:52:09] [main/INFO]:Found mod file fabric-entity-events-v1-1.6.1+4ca7515277.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@714f3da4 [13:52:09] [main/INFO]:Found mod file luaj-core-3.0.8-figura.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@714f3da4 [13:52:09] [main/INFO]:Found mod file fabric-registry-sync-v0-2.3.6+1c0ea72177.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@714f3da4 [13:52:09] [main/INFO]:Found mod file imageio-metadata-3.12.0.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@714f3da4 [13:52:09] [main/INFO]:Found mod file fabric-recipe-api-v1-1.0.24+514a076577.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@714f3da4 [13:52:09] [main/INFO]:Found mod file yabn-1.0.3.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@714f3da4 [13:52:09] [main/INFO]:Found mod file fabric-loot-api-v2-1.2.3+eb28f93e77.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@714f3da4 [13:52:09] [main/INFO]:Found mod file fabric-object-builder-api-v1-11.1.5+f8c414ce77.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@714f3da4 [13:52:09] [main/INFO]:Found mod file fabric-rendering-data-attachment-v1-0.3.39+a6081afc77.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@714f3da4 [13:52:09] [main/INFO]:Found mod file fabric-networking-api-v1-1.3.14+fb7c822677.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@714f3da4 [13:52:09] [main/INFO]:Found mod file fabric-sound-api-v1-1.0.14+4f23bd8477.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@714f3da4 [13:52:09] [main/INFO]:Found mod file fabric-message-api-v1-5.1.10+52cc178c77.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@714f3da4 [13:52:09] [main/INFO]:Found mod file fabric-lifecycle-events-v1-2.2.23+afab492177.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@714f3da4 [13:52:09] [main/INFO]:Found mod file fabric-data-generation-api-v1-12.3.7+369cb3a477.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@714f3da4 [13:52:09] [main/INFO]:Found mod file fabric-events-interaction-v0-0.6.5+0f26153f77.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@714f3da4 [13:52:09] [main/INFO]:Found mod file fabric-key-binding-api-v1-1.0.38+561530ec77.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@714f3da4 [13:52:09] [main/INFO]:Found mod file fabric-client-tags-api-v1-1.1.3+5d6761b877.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@714f3da4 [13:52:12] [main/INFO]:Compatibility level set to JAVA_17 [13:52:12] [main/ERROR]:Mixin config fabric-item-api-v1.client.mixins.json does not specify "minVersion" property [13:52:12] [main/ERROR]:Mixin config fabric-data-attachment-api-v1.mixins.json does not specify "minVersion" property [13:52:12] [main/ERROR]:Mixin config fabric-data-attachment-api-v1.client.mixins.json does not specify "minVersion" property [13:52:12] [main/ERROR]:Mixin config fabric-item-group-api-v1.mixins.json does not specify "minVersion" property [13:52:12] [main/ERROR]:Mixin config fabric-item-group-api-v1.client.mixins.json does not specify "minVersion" property [13:52:12] [main/ERROR]:Mixin config yacl.mixins.json does not specify "minVersion" property [13:52:12] [main/INFO]:Propagating FML mod list to Fabric Loader [13:52:12] [main/INFO]:Launching target 'forgeclient' with arguments [--version, forge-47.4.0, --gameDir, C:\Users\wyatt\curseforge\minecraft\Instances\Kurai Kaisen Official Modpack, --assetsDir, C:\Users\wyatt\curseforge\minecraft\Install\assets, --uuid, da541fc8ccea4f80a96dd76df22b29e4, --username, CNMashin, --assetIndex, 5, --accessToken, ????????, --clientId, ZjYxNzdjMzMtMzkxYi00MDUxLWI1OTEtMzA0ZDQ3N2IzZDJm, --xuid, 2535406116637419, --userType, msa, --versionType, release, --width, 1024, --height, 768, --quickPlayPath, C:\Users\wyatt\curseforge\minecraft\Install\quickPlay\java\1756147924956.json] [13:52:13] [main/INFO]:Patching IForgeItemStack#getEnchantmentLevel [13:52:13] [main/INFO]:Patching IForgeItemStack#getEnchantmentLevel
    • Hey, if you’re looking for something like Litematica but on Forge 1.20.1, you might want to check out Structurize or Building Gadgets. They’re not exact copies, but they give similar blueprint/assistance features. Hopefully that helps until a direct port shows up!
    • Make a test with an older build of worldmap https://www.curseforge.com/minecraft/mc-mods/xaeros-world-map/files/6212636
    • i have an aternos server, i added new mods but its saying exit code -1 this mod has worked before and wasn't one of the new ones that I added so im confused  The game crashed: unexpected error Error: java.lang.RuntimeException: Xaero's World Map (1.20_1.39.12) has crashed! Please report here: bit.ly/XaeroWMIssues also says The game crashed: rendering overlay Error: java.lang.OutOfMemoryError: Java heap space Forge 1.20.1 Crash Report [#mUtPwXj] - mclo.gs mclo.gs/mUtPwXj
    • it work now i just put vinery in 1.4.39 and it work's thanks for the help    
  • Topics

×
×
  • Create New...

Important Information

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