Jump to content

Recommended Posts

Posted

So many Errors :( ... Rendering doesn't work too btw :(

PowerApplesMain:

 

package de.UnknownAssassin.PowerApples;

 

import de.UnknownAssassin.PowerApples.ItemDiamondApple;

import net.minecraft.client.Minecraft;

import net.minecraft.client.resources.model.ModelResourceLocation;

import net.minecraft.creativetab.CreativeTabs;

import net.minecraft.init.Blocks;

import net.minecraft.init.Items;

import net.minecraft.item.Item;

import net.minecraft.item.ItemFood;

import net.minecraft.item.ItemStack;

import net.minecraft.potion.Potion;

import net.minecraft.potion.PotionEffect;

import net.minecraftforge.fml.common.Mod;

import net.minecraftforge.fml.common.Mod.EventHandler;

import net.minecraftforge.fml.common.event.FMLInitializationEvent;

import net.minecraftforge.fml.common.event.FMLPostInitializationEvent;

import net.minecraftforge.fml.common.event.FMLPreInitializationEvent;

import net.minecraftforge.fml.common.registry.GameRegistry;

 

@Mod(modid = PowerApplesMain.MODID, version = PowerApplesMain.VERSION)

public class PowerApplesMain

{

    public static final String MODID = "powerapples";

    public static final String VERSION = "Alpha";

   

    public static Item diamondapple;

   

    public static CreativeTabs PowerApplesTab;

   

    @EventHandler

    public void preinit(FMLPreInitializationEvent event)

    {

    PowerApplesTab = new CreativeTabs("PowerApplesTab")

    {

    @Override

    public Item getTabIconItem(){

    return Items.apple;

    }

    };

    diamondapple = new ItemDiamondApple(0, false).setUnlocalizedName("DiamondApple").setCreativeTab(PowerApplesTab).setMaxStackSize(4);

    diamondapple = new PotionEffect(Potion.moveSpeed.id, 1200, 1)

    }

   

    @EventHandler

    public void init(FMLInitializationEvent event)

    {

    //Crafting Rezepte

    GameRegistry.addRecipe(new ItemStack(Items.diamond, 1), new Object[]

    {

    "ddd",

    "dad",

    "ddd",

    Character.valueOf('d'), Items.diamond,

    Character.valueOf('a'), Items.apple

    });

    //Register Items

    GameRegistry.registerItem(diamondapple, "DiamondApple");

    Minecraft.getMinecraft().getRenderItem().getItemModelMesher().register(diamondapple, 0, new ModelResourceLocation("powerapples:diamondapple", "inventory"));

   

    }

    @EventHandler

    public void postinit(FMLPostInitializationEvent event)

    {

    }

}

 

 

ItemDiamondApple:

 

 

package de.UnknownAssassin.PowerApples;

 

import net.minecraft.creativetab.CreativeTabs;

import net.minecraft.entity.player.EntityPlayer;

import net.minecraft.item.Item;

import net.minecraft.item.ItemFood;

import net.minecraft.item.ItemStack;

import net.minecraft.potion.PotionEffect;

import net.minecraft.world.World;

 

public class ItemDiamondApple extends ItemFood

{

 

private PotionEffect[] effects;

 

ItemDiamondApple(String "DiamondApple", int healAmount,

    float saturationModifier, boolean wolvesFavourite,

    PotionEffect effects);

this.effects = effects;

 

}

 

@Override

protected void onFoodEaten(ItemStack stack, World world, EntityPlayer player) {

    super.onFoodEaten(stack, world, player);

       

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

        if (effects != null && effects.getPotionID() > 0)

            player.addPotionEffect(new PotionEffect(this.effects.getPotionID(), this.effects.getDuration(), this.effects.getAmplifier(), this.effects.getIsAmbient()));

}

}

 

 

Posted

Not to be offensive, but seeing you code I can assume you don't know much about how objects work in java.

  On 2/26/2015 at 6:17 PM, Marcel1202 said:

    diamondapple = new ItemDiamondApple(0, false).setUnlocalizedName("DiamondApple").setCreativeTab(PowerApplesTab).setMaxStackSize(4);

    diamondapple = new PotionEffect(Potion.moveSpeed.id, 1200, 1)

 

1. Use [.code]code[./code] on forums when you paste stuff. (without dots)

2. Learn more Java - this is probably best advice you will find here.

  Quote

1.7.10 is no longer supported by forge, you are on your own.

Posted
  On 2/26/2015 at 6:53 PM, Marcel1202 said:

Because of the Forgotten ; ?

 

That wasn't really the issue. You should check out how Object declaration/initialization works. Understand what = new means and why is making new object of different class giving error when declared to non-same object field - which is what you did and I pointed out.

 

What you did: Initialized new Item, just to next line after re-init it with totally different object which is not only waste of initialization operation, but also in wrong type.

 

I can't really help you here but to point basic java mistakes and steer you to google and find tutorial on how to add effect to food - there is a LOT of it there, but 1st get some more of that java :)

  Quote

1.7.10 is no longer supported by forge, you are on your own.

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.