Jump to content

Recommended Posts

Posted (edited)

I'm brand new to modding and a noob programmer. I learned the old way to register blocks and items using GameRegistry.register() then I found out there is actually a new, better way to register blocks, items, and even models. The new way is to use RegistryEvents and I'm a sucker for new and better things so I tried to figure out how it works. My goal with this post is to see if anything I did can be done better and whether or not this is correct. Just because it works doesn't mean it's correct. I want to have a solid base before I build on it too much. Here is what I came up with:

RegistryEventHandler.java

@Mod.EventBusSubscriber
public class RegistryEventHandler
{
	@SubscribeEvent
	public static void registerBlocks(RegistryEvent.Register<Block> event)
	{	
		event.getRegistry().registerAll(ModBlocks.BLOCKS);
		Utils.getLogger().info("Registered blocks");
	}
	
	@SubscribeEvent
	public static void registerItems(RegistryEvent.Register<Item> event)
	{	
		event.getRegistry().registerAll(ModItems.ITEMS);
		
		for (Block block : ModBlocks.BLOCKS)
		{
			event.getRegistry().register(new ItemBlock(block).setRegistryName(block.getRegistryName()));
		}
		
		Utils.getLogger().info("Registered items");
	}
	
	@SubscribeEvent
	public static void registerModels(ModelRegistryEvent event)
	{
		for (Block block: ModBlocks.BLOCKS)
		{
			ModelLoader.setCustomModelResourceLocation(Item.getItemFromBlock(block), 0, new ModelResourceLocation(block.getRegistryName(), "inventory"));
		}
		
		for (Item item: ModItems.ITEMS)
		{
			ModelLoader.setCustomModelResourceLocation(item, 0, new ModelResourceLocation(item.getRegistryName(), "inventory"));
		}
		
		Utils.getLogger().info("Registered models");
	}
}

 

ModBlocks.java

public class ModBlocks
{
	public static final Block[] BLOCKS = {
			new BlockTinOre("tin_ore", Material.ROCK),
			new BlockTinBlock("tin_block", Material.ROCK)
	};
}

 

ModItems.java

public class ModItems
{
	public static final Item[] ITEMS = {
			new ItemTinIngot("tin_ingot")
	};
}

 

BlockTinOre.java

public class BlockTinOre extends BlockBase
{

	public BlockTinOre(String name, Material material)
	{
		super(name, material);
	}
	
}

 

BlockTinBlock.java

public class BlockTinBlock extends BlockBase
{
	public BlockTinBlock(String name, Material material)
	{
		super(name, material);
	}
}

 

BlockBase.java

public class BlockBase extends Block
{
	BlockBase(String name, Material material)
	{
		super(material);
		
		this.setRegistryName(Reference.MODID, name);
		this.setUnlocalizedName(this.getRegistryName().toString());
	}
}

 

ItemTinIngot.java

public class ItemTinIngot extends ItemBase
{
	public ItemTinIngot(String name)
	{
		super(name);
	}
}

 

ItemBase.java

public class ItemBase extends Item
{
	ItemBase(String name)
	{
		this.setRegistryName(new ResourceLocation(Reference.MODID, name));
		this.setUnlocalizedName(this.getRegistryName().toString());
	}
}

 

Edited by Kriptikz
  • Like 4
Posted
  On 2/12/2017 at 11:37 PM, diesieben07 said:

Not sure if you have a question or anything. All I can say is: kudos to you for actually doing research and not blindly copying outdated terrible tutorials. :)

Expand  

Thanks. I went through multiple iterations of this setup before I landed on this one. I edited my post to actually have a solid question. Basically I want a solid foundation before I start building and want to know if anything at all can be done better.

Posted (edited)

This is actually a good way to register blocks and items! I will probably switch to this in the future.

Also, is this 1.11 exclusive? 

Edited by Leomelonseeds
  • Like 1

Apparently I'm addicted to these forums and can't help but read all the posts. So if I somehow help you, please click the "Like This" button, it helps.

Posted

The later half of 1.10.2, at least.  I don't recall when it was first introduced.

Apparently I'm a complete and utter jerk and come to this forum just like to make fun of people, be confrontational, and make your personal life miserable.  If you think this is the case, JUST REPORT ME.  Otherwise you're just going to get reported when you reply to my posts and point it out, because odds are, I was trying to be nice.

 

Exception: If you do not understand Java, I WILL NOT HELP YOU and your thread will get locked.

 

DO NOT PM ME WITH PROBLEMS. No help will be given.

  • 6 months later...
Posted

What is the import for Utils.getLogger().info(); ? It doesn't matter which one I import, I get a syntax error

"Can't resolve method 'getLogger()' "

Else do I need to make a class called 'Utils' and create a 'getLogger()' method?

I have never used a Logger so this is new to me.

Posted (edited)
  On 8/31/2017 at 4:19 PM, JJ42001 said:

What is the import for Utils.getLogger().info(); ? It doesn't matter which one I import, I get a syntax error

"Can't resolve method 'getLogger()' "

Else do I need to make a class called 'Utils' and create a 'getLogger()' method?

I have never used a Logger so this is new to me.

Expand  

This is custom class and method. Logger is not necessary.
If you want to make a logger like many modders do, create an object of type Logger (make sure to import one from log4j library, not java) and initialize it with LogManager#getLogger("mod's id or name") (again, make sure to use log4j one). Everyone usually does that in main class, or in utils.
Use logger#info() to log information, logger#warn() to log a warning, etc.

Edited by MrBendelScrolls
  • Like 1
Posted

 

  On 9/1/2017 at 4:47 PM, JJ42001 said:

How would one go about rendering items with this method?

Expand  

Hold on, let me quote the OP. Wait just one second...

 

  On 2/12/2017 at 10:33 PM, Kriptikz said:
	@SubscribeEvent
	public static void registerModels(ModelRegistryEvent event)
	{
		for (Block block: ModBlocks.BLOCKS)
		{
			ModelLoader.setCustomModelResourceLocation(Item.getItemFromBlock(block), 0, new ModelResourceLocation(block.getRegistryName(), "inventory"));
		}
		
		for (Item item: ModItems.ITEMS)
		{
			ModelLoader.setCustomModelResourceLocation(item, 0, new ModelResourceLocation(item.getRegistryName(), "inventory"));
		}
		
		Utils.getLogger().info("Registered models");
	}

 

Expand  

Apparently I'm a complete and utter jerk and come to this forum just like to make fun of people, be confrontational, and make your personal life miserable.  If you think this is the case, JUST REPORT ME.  Otherwise you're just going to get reported when you reply to my posts and point it out, because odds are, I was trying to be nice.

 

Exception: If you do not understand Java, I WILL NOT HELP YOU and your thread will get locked.

 

DO NOT PM ME WITH PROBLEMS. No help will be given.

Posted (edited)

Yea, thats what I meant, I'll edit my other post.

I apologize for the confusion.

 

I'm still unsure how to resolve the issue though.

Edited by JJ42001
Posted
  On 9/1/2017 at 5:01 PM, JJ42001 said:

My model for the Steel Ingot is under: src/ main/ resources/ assets/ models/ item/ steel_ingot.json

 

And the texture: src/ main/ resources/ assets/ textures/ items/ steel_ingot.png

Expand  

You need your mod ID as a folder between "assets" and "textures" / "models"

Apparently I'm a complete and utter jerk and come to this forum just like to make fun of people, be confrontational, and make your personal life miserable.  If you think this is the case, JUST REPORT ME.  Otherwise you're just going to get reported when you reply to my posts and point it out, because odds are, I was trying to be nice.

 

Exception: If you do not understand Java, I WILL NOT HELP YOU and your thread will get locked.

 

DO NOT PM ME WITH PROBLEMS. No help will be given.

Posted

Log?

Apparently I'm a complete and utter jerk and come to this forum just like to make fun of people, be confrontational, and make your personal life miserable.  If you think this is the case, JUST REPORT ME.  Otherwise you're just going to get reported when you reply to my posts and point it out, because odds are, I was trying to be nice.

 

Exception: If you do not understand Java, I WILL NOT HELP YOU and your thread will get locked.

 

DO NOT PM ME WITH PROBLEMS. No help will be given.

Posted
  Reveal hidden contents

Here's the latest log.

Posted

Caused by: java.io.FileNotFoundException: isdevpds:models/item/steel_ingot.json
Caused by: java.io.FileNotFoundException: isdevpds:blockstates/steel_block.json
Caused by: java.io.FileNotFoundException: isdevpds:models/item/steel_block.json

Apparently I'm a complete and utter jerk and come to this forum just like to make fun of people, be confrontational, and make your personal life miserable.  If you think this is the case, JUST REPORT ME.  Otherwise you're just going to get reported when you reply to my posts and point it out, because odds are, I was trying to be nice.

 

Exception: If you do not understand Java, I WILL NOT HELP YOU and your thread will get locked.

 

DO NOT PM ME WITH PROBLEMS. No help will be given.

Posted

This is a really clean and nice way to do registereing. I may switch to it myself. But would you need to add a new method for Items with Metadata? At least model/texture wise? Or edit those regiser models to cycle through meta data as well?

Posted
  On 9/3/2017 at 1:06 PM, HalestormXV said:

This is a really clean and nice way to do registereing. I may switch to it myself. But would you need to add a new method for Items with Metadata? At least model/texture wise? Or edit those regiser models to cycle through meta data as well?

Expand  

What you're looking at is the only way to register blocks and items right now. And it's the raw basics of it. There's no differentiation between how blocks and items need to be handled (variants, IStateMapper, custom MeshDefinition...)

 

If you want something with a little more nuance, check out my EasyRegistry classes:

https://github.com/Draco18s/ReasonableRealism/blob/1.12.1/src/main/java/com/draco18s/hardlib/EasyRegistry.java

https://github.com/Draco18s/ReasonableRealism/blob/1.12.1/src/main/java/com/draco18s/hardlib/client/ClientEasyRegistry.java

 

Note that the classes are both proxy and event handler.

Apparently I'm a complete and utter jerk and come to this forum just like to make fun of people, be confrontational, and make your personal life miserable.  If you think this is the case, JUST REPORT ME.  Otherwise you're just going to get reported when you reply to my posts and point it out, because odds are, I was trying to be nice.

 

Exception: If you do not understand Java, I WILL NOT HELP YOU and your thread will get locked.

 

DO NOT PM ME WITH PROBLEMS. No help will be given.

Join the conversation

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

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

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

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

×   Your previous content has been restored.   Clear editor

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

Announcements



  • Recently Browsing

    • No registered users viewing this page.
  • Posts

    • I deleted create hypertube, jetpack and missiled and it still doesn't work. What do I do ?
    • We've discovered an exclusive offer that will provide maximum benefits for our valued users in Western countries. The code ALB496107 is specifically designed to bring fantastic savings to people in the USA, Canada, and various European nations, ensuring you get the most out of your Temu purchases. Prepare to be amazed by the deals you're about to unlock! We understand that everyone loves a good deal, which is why we're excited to share insights into how both new and existing customers can take advantage of these incredible savings. Whether you're looking for a Temu coupon code 2025 for existing customers or a phenomenal Temu 70% discount coupon, we've got you covered with strategies to maximize your savings this year. What Is The Temu Coupon Code 70% Off? We are delighted to share that both new and existing customers can unlock truly amazing benefits when they utilize our exclusive 70% off coupon code on both the Temu app and website. This Temu coupon 70% off is your gateway to significant savings, transforming your shopping experience into an exciting treasure hunt for deals. Get ready to experience the joy of fantastic discounts with our 70% off Temu coupon code! Here's a breakdown of the incredible benefits you can expect when you use ALB496107: ALB496107: Offers up to 70% off for new users, making your first Temu shopping spree incredibly rewarding and budget-friendly. ALB496107: Provides an impressive 70% extra off for existing users, a fantastic way to reward your continued loyalty and make your next purchase even more economical. ALB496107: Grants a flat $100 off for new Temu users, giving a substantial immediate discount on their initial order.
    • Add crash-reports with sites like https://mclo.gs/   Remove the Create addons - maybe one or more of these are not compatible with Create 6: create_hypertube create_jetpack create_missiled
    • this is the latest.log file :   [15:34:29] [main/INFO]: ModLauncher running: args [--username, Este_17000, --version, forge-47.4.0, --gameDir, C:\Users\esteb\curseforge\minecraft\Instances\Engineering (1), --assetsDir, C:\Users\esteb\curseforge\minecraft\Install\assets, --assetIndex, 5, --uuid, 146b16bc1d204d99876f65014406b450, --accessToken, ????????, --clientId, MTdiNGM1M2QtMjQzYS00ZDZjLTliOTctMjFiZDY4ZGVkZWQ3, --xuid, 2535454605082131, --userType, msa, --versionType, release, --width, 1024, --height, 768, --quickPlayPath, C:\Users\esteb\curseforge\minecraft\Install\quickPlay\java\1751031268199.json, --launchTarget, forgeclient, --fml.forgeVersion, 47.4.0, --fml.mcVersion, 1.20.1, --fml.forgeGroup, net.minecraftforge, --fml.mcpVersion, 20230612.114412] [15:34:29] [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 [15:34:30] [main/INFO]: Loading ImmediateWindowProvider fmlearlywindow [15:34:30] [main/INFO]: Trying GL version 4.6 [15:34:30] [main/INFO]: Requested GL version 4.6 got version 4.6 [15:34:31] [pool-2-thread-1/INFO]: GL info: Intel(R) UHD Graphics GL version 4.6.0 - Build 32.0.101.6737, Intel [15:34:31] [main/INFO]: Starting Essential Loader (stage2) version 1.6.5 (1425fa2d69fa2b31e49c42a2d84be645) [stable] [15:34:31] [main/INFO]: SpongePowered MIXIN Subsystem Version=0.8.5 Source=union:/C:/Users/esteb/curseforge/minecraft/Install/libraries/org/spongepowered/mixin/0.8.5/mixin-0.8.5.jar%23100!/ Service=ModLauncher Env=CLIENT [15:34:32] [main/WARN]: Found newer Essential version 1.3.8.3 [stable], skipping at user request [15:34:33] [main/INFO]: Found mod file [1.20.1] SecurityCraft v1.10.0.1.jar of type MOD with provider {mods folder locator at C:\Users\esteb\curseforge\minecraft\Instances\Engineering (1)\mods} [15:34:33] [main/INFO]: Found mod file ad_astra-forge-1.20.1-1.15.20.jar of type MOD with provider {mods folder locator at C:\Users\esteb\curseforge\minecraft\Instances\Engineering (1)\mods} [15:34:33] [main/INFO]: Found mod file adastraextra-forge-1.20.1-1.2.3.jar of type MOD with provider {mods folder locator at C:\Users\esteb\curseforge\minecraft\Instances\Engineering (1)\mods} [15:34:33] [main/INFO]: Found mod file aether-1.20.1-1.5.2-neoforge.jar of type MOD with provider {mods folder locator at C:\Users\esteb\curseforge\minecraft\Instances\Engineering (1)\mods} [15:34:33] [main/INFO]: Found mod file amendments-1.20-1.2.19.jar of type MOD with provider {mods folder locator at C:\Users\esteb\curseforge\minecraft\Instances\Engineering (1)\mods} [15:34:33] [main/INFO]: Found mod file appleskin-forge-mc1.20.1-2.5.1.jar of type MOD with provider {mods folder locator at C:\Users\esteb\curseforge\minecraft\Instances\Engineering (1)\mods} [15:34:33] [main/INFO]: Found mod file appliedenergistics2-forge-15.4.2.jar of type MOD with provider {mods folder locator at C:\Users\esteb\curseforge\minecraft\Instances\Engineering (1)\mods} [15:34:33] [main/INFO]: Found mod file Aquaculture-1.20.1-2.5.5.jar of type MOD with provider {mods folder locator at C:\Users\esteb\curseforge\minecraft\Instances\Engineering (1)\mods} [15:34:33] [main/INFO]: Found mod file aquaculturedelight-1.1.1-forge-1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\esteb\curseforge\minecraft\Instances\Engineering (1)\mods} [15:34:33] [main/INFO]: Found mod file architectury-9.2.14-forge.jar of type MOD with provider {mods folder locator at C:\Users\esteb\curseforge\minecraft\Instances\Engineering (1)\mods} [15:34:33] [main/INFO]: Found mod file balm-forge-1.20.1-7.3.30-all.jar of type MOD with provider {mods folder locator at C:\Users\esteb\curseforge\minecraft\Instances\Engineering (1)\mods} [15:34:33] [main/INFO]: Found mod file beautify-2.0.2.jar of type MOD with provider {mods folder locator at C:\Users\esteb\curseforge\minecraft\Instances\Engineering (1)\mods} [15:34:33] [main/INFO]: Found mod file BetterThirdPerson-Forge-1.20-1.9.0.jar of type MOD with provider {mods folder locator at C:\Users\esteb\curseforge\minecraft\Instances\Engineering (1)\mods} [15:34:33] [main/INFO]: Found mod file BiomesOPlenty-forge-1.20.1-19.0.0.96.jar of type MOD with provider {mods folder locator at C:\Users\esteb\curseforge\minecraft\Instances\Engineering (1)\mods} [15:34:33] [main/INFO]: Found mod file botarium-forge-1.20.1-2.3.4.jar of type MOD with provider {mods folder locator at C:\Users\esteb\curseforge\minecraft\Instances\Engineering (1)\mods} [15:34:33] [main/INFO]: Found mod file BrandonsCore-1.20.1-3.2.1.302-universal.jar of type MOD with provider {mods folder locator at C:\Users\esteb\curseforge\minecraft\Instances\Engineering (1)\mods} [15:34:33] [main/INFO]: Found mod file cfm-forge-1.20.1-7.0.0-pre36.jar of type MOD with provider {mods folder locator at C:\Users\esteb\curseforge\minecraft\Instances\Engineering (1)\mods} [15:34:33] [main/INFO]: Found mod file chefs-delight-1.0.3-forge-1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\esteb\curseforge\minecraft\Instances\Engineering (1)\mods} [15:34:33] [main/INFO]: Found mod file ChickenChunks-1.20.1-2.10.0.100-universal.jar of type MOD with provider {mods folder locator at C:\Users\esteb\curseforge\minecraft\Instances\Engineering (1)\mods} [15:34:33] [main/INFO]: Found mod file CodeChickenLib-1.20.1-4.4.0.516-universal.jar of type MOD with provider {mods folder locator at C:\Users\esteb\curseforge\minecraft\Instances\Engineering (1)\mods} [15:34:33] [main/INFO]: Found mod file Controlling-forge-1.20.1-12.0.2.jar of type MOD with provider {mods folder locator at C:\Users\esteb\curseforge\minecraft\Instances\Engineering (1)\mods} [15:34:33] [main/INFO]: Found mod file create-1.20.1-6.0.6.jar of type MOD with provider {mods folder locator at C:\Users\esteb\curseforge\minecraft\Instances\Engineering (1)\mods} [15:34:33] [main/INFO]: Found mod file create_hypertube-0.1.5-FORGE.jar of type MOD with provider {mods folder locator at C:\Users\esteb\curseforge\minecraft\Instances\Engineering (1)\mods} [15:34:33] [main/INFO]: Found mod file create_jetpack-forge-4.4.2.jar of type MOD with provider {mods folder locator at C:\Users\esteb\curseforge\minecraft\Instances\Engineering (1)\mods} [15:34:33] [main/INFO]: Found mod file create_missiled-1.0.0-forge-1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\esteb\curseforge\minecraft\Instances\Engineering (1)\mods} [15:34:33] [main/INFO]: Found mod file CTM-1.20.1-1.1.10.jar of type MOD with provider {mods folder locator at C:\Users\esteb\curseforge\minecraft\Instances\Engineering (1)\mods} [15:34:33] [main/INFO]: Found mod file Cucumber-1.20.1-7.0.13.jar of type MOD with provider {mods folder locator at C:\Users\esteb\curseforge\minecraft\Instances\Engineering (1)\mods} [15:34:33] [main/INFO]: Found mod file Draconic-Evolution-1.20.1-3.1.2.604-universal.jar of type MOD with provider {mods folder locator at C:\Users\esteb\curseforge\minecraft\Instances\Engineering (1)\mods} [15:34:33] [main/INFO]: Found mod file easy_gamma-1.0.0-forge-1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\esteb\curseforge\minecraft\Instances\Engineering (1)\mods} [15:34:33] [main/INFO]: Found mod file elevatorid-1.20.1-lex-1.9.jar of type MOD with provider {mods folder locator at C:\Users\esteb\curseforge\minecraft\Instances\Engineering (1)\mods} [15:34:33] [main/INFO]: Found mod file ExtremeReactors2-1.20.1-2.0.92.jar of type MOD with provider {mods folder locator at C:\Users\esteb\curseforge\minecraft\Instances\Engineering (1)\mods} [15:34:33] [main/INFO]: Found mod file FarmersDelight-1.20.1-1.2.7.jar of type MOD with provider {mods folder locator at C:\Users\esteb\curseforge\minecraft\Instances\Engineering (1)\mods} [15:34:33] [main/INFO]: Found mod file FluxNetworks-1.20.1-7.2.1.15.jar of type MOD with provider {mods folder locator at C:\Users\esteb\curseforge\minecraft\Instances\Engineering (1)\mods} [15:34:33] [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\esteb\curseforge\minecraft\Instances\Engineering (1)\mods} [15:34:33] [main/INFO]: Found mod file fusion-1.2.7b-forge-mc1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\esteb\curseforge\minecraft\Instances\Engineering (1)\mods} [15:34:33] [main/INFO]: Found mod file geckolib-forge-1.20.1-4.7.1.2.jar of type MOD with provider {mods folder locator at C:\Users\esteb\curseforge\minecraft\Instances\Engineering (1)\mods} [15:34:33] [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\esteb\curseforge\minecraft\Instances\Engineering (1)\mods} [15:34:33] [main/INFO]: Found mod file gravestone-forge-1.20.1-1.0.24.jar of type MOD with provider {mods folder locator at C:\Users\esteb\curseforge\minecraft\Instances\Engineering (1)\mods} [15:34:33] [main/INFO]: Found mod file green_screen_mod-2.5.0-forge-1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\esteb\curseforge\minecraft\Instances\Engineering (1)\mods} [15:34:33] [main/INFO]: Found mod file guideme-20.1.7.jar of type MOD with provider {mods folder locator at C:\Users\esteb\curseforge\minecraft\Instances\Engineering (1)\mods} [15:34:33] [main/INFO]: Found mod file HammerLib-1.20.1-20.1.50.jar of type MOD with provider {mods folder locator at C:\Users\esteb\curseforge\minecraft\Instances\Engineering (1)\mods} [15:34:33] [main/INFO]: Found mod file immersive_aircraft-1.2.2+1.20.1-forge.jar of type MOD with provider {mods folder locator at C:\Users\esteb\curseforge\minecraft\Instances\Engineering (1)\mods} [15:34:33] [main/INFO]: Found mod file ImmersiveEngineering-1.20.1-10.2.0-183.jar of type MOD with provider {mods folder locator at C:\Users\esteb\curseforge\minecraft\Instances\Engineering (1)\mods} [15:34:33] [main/INFO]: Found mod file ironchest-1.20.1-14.4.4.jar of type MOD with provider {mods folder locator at C:\Users\esteb\curseforge\minecraft\Instances\Engineering (1)\mods} [15:34:33] [main/INFO]: Found mod file IronJetpacks-1.20.1-7.0.8.jar of type MOD with provider {mods folder locator at C:\Users\esteb\curseforge\minecraft\Instances\Engineering (1)\mods} [15:34:33] [main/INFO]: Found mod file Jade-1.20.1-Forge-11.13.1.jar of type MOD with provider {mods folder locator at C:\Users\esteb\curseforge\minecraft\Instances\Engineering (1)\mods} [15:34:33] [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\esteb\curseforge\minecraft\Instances\Engineering (1)\mods} [15:34:33] [main/INFO]: Found mod file journeymap-1.20.1-5.10.3-forge.jar of type MOD with provider {mods folder locator at C:\Users\esteb\curseforge\minecraft\Instances\Engineering (1)\mods} [15:34:33] [main/INFO]: Found mod file JustEnoughProfessions-forge-1.20.1-3.0.1.jar of type MOD with provider {mods folder locator at C:\Users\esteb\curseforge\minecraft\Instances\Engineering (1)\mods} [15:34:33] [main/INFO]: Found mod file JustEnoughResources-1.20.1-1.4.0.247.jar of type MOD with provider {mods folder locator at C:\Users\esteb\curseforge\minecraft\Instances\Engineering (1)\mods} [15:34:33] [main/INFO]: Found mod file kotlinforforge-4.11.0-all.jar of type LIBRARY with provider {mods folder locator at C:\Users\esteb\curseforge\minecraft\Instances\Engineering (1)\mods} [15:34:33] [main/INFO]: Found mod file lios_overhauled_villages-1.18.2-1.21.5-v0.0.7.jar of type MOD with provider {mods folder locator at C:\Users\esteb\curseforge\minecraft\Instances\Engineering (1)\mods} [15:34:33] [main/INFO]: Found mod file man_of_many_planes-0.2.0+1.20.1-forge.jar of type MOD with provider {mods folder locator at C:\Users\esteb\curseforge\minecraft\Instances\Engineering (1)\mods} [15:34:33] [main/INFO]: Found mod file markdown_manual-MC1.20.1-forge-1.2.5+c3f0b88.jar of type MOD with provider {mods folder locator at C:\Users\esteb\curseforge\minecraft\Instances\Engineering (1)\mods} [15:34:33] [main/INFO]: Found mod file mcef-forge-2.1.6-1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\esteb\curseforge\minecraft\Instances\Engineering (1)\mods} [15:34:33] [main/INFO]: Found mod file mcjtylib-1.20-8.0.6.jar of type MOD with provider {mods folder locator at C:\Users\esteb\curseforge\minecraft\Instances\Engineering (1)\mods} [15:34:33] [main/INFO]: Found mod file mcw-bridges-3.1.0-mc1.20.1forge.jar of type MOD with provider {mods folder locator at C:\Users\esteb\curseforge\minecraft\Instances\Engineering (1)\mods} [15:34:33] [main/INFO]: Found mod file mcw-doors-1.1.2-mc1.20.1forge.jar of type MOD with provider {mods folder locator at C:\Users\esteb\curseforge\minecraft\Instances\Engineering (1)\mods} [15:34:33] [main/INFO]: Found mod file mcw-fences-1.2.0-1.20.1forge.jar of type MOD with provider {mods folder locator at C:\Users\esteb\curseforge\minecraft\Instances\Engineering (1)\mods} [15:34:33] [main/INFO]: Found mod file mcw-furniture-3.3.0-mc1.20.1forge.jar of type MOD with provider {mods folder locator at C:\Users\esteb\curseforge\minecraft\Instances\Engineering (1)\mods} [15:34:33] [main/INFO]: Found mod file mcw-holidays-1.1.0-mc1.20.1forge.jar of type MOD with provider {mods folder locator at C:\Users\esteb\curseforge\minecraft\Instances\Engineering (1)\mods} [15:34:33] [main/INFO]: Found mod file mcw-lights-1.1.2-mc1.20.1forge.jar of type MOD with provider {mods folder locator at C:\Users\esteb\curseforge\minecraft\Instances\Engineering (1)\mods} [15:34:33] [main/INFO]: Found mod file mcw-paintings-1.0.5-1.20.1forge.jar of type MOD with provider {mods folder locator at C:\Users\esteb\curseforge\minecraft\Instances\Engineering (1)\mods} [15:34:33] [main/INFO]: Found mod file mcw-paths-1.1.0forge-mc1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\esteb\curseforge\minecraft\Instances\Engineering (1)\mods} [15:34:33] [main/INFO]: Found mod file mcw-roofs-2.3.2-mc1.20.1forge.jar of type MOD with provider {mods folder locator at C:\Users\esteb\curseforge\minecraft\Instances\Engineering (1)\mods} [15:34:33] [main/INFO]: Found mod file mcw-trapdoors-1.1.4-mc1.20.1forge.jar of type MOD with provider {mods folder locator at C:\Users\esteb\curseforge\minecraft\Instances\Engineering (1)\mods} [15:34:33] [main/INFO]: Found mod file mcw-windows-2.3.0-mc1.20.1forge.jar of type MOD with provider {mods folder locator at C:\Users\esteb\curseforge\minecraft\Instances\Engineering (1)\mods} [15:34:33] [main/INFO]: Found mod file MOAdecor ART 1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\esteb\curseforge\minecraft\Instances\Engineering (1)\mods} [15:34:33] [main/INFO]: Found mod file MOAdecor BATH 1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\esteb\curseforge\minecraft\Instances\Engineering (1)\mods} [15:34:33] [main/INFO]: Found mod file MOAdecor COOKERY 1.20.2.jar of type MOD with provider {mods folder locator at C:\Users\esteb\curseforge\minecraft\Instances\Engineering (1)\mods} [15:34:33] [main/INFO]: Found mod file MOAdecor ELECTRONICS 1.20.1.A.jar of type MOD with provider {mods folder locator at C:\Users\esteb\curseforge\minecraft\Instances\Engineering (1)\mods} [15:34:33] [main/INFO]: Found mod file MOAdecor GARDEN 1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\esteb\curseforge\minecraft\Instances\Engineering (1)\mods} [15:34:33] [main/INFO]: Found mod file MOAdecor HOLIDAYS 1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\esteb\curseforge\minecraft\Instances\Engineering (1)\mods} [15:34:33] [main/INFO]: Found mod file MOAdecor LIGHTS 1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\esteb\curseforge\minecraft\Instances\Engineering (1)\mods} [15:34:33] [main/INFO]: Found mod file MOAdecor SCIENCE 1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\esteb\curseforge\minecraft\Instances\Engineering (1)\mods} [15:34:33] [main/INFO]: Found mod file MOAdecor TOYS 1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\esteb\curseforge\minecraft\Instances\Engineering (1)\mods} [15:34:33] [main/INFO]: Found mod file moneymoneymoney-1.0.1-forge-1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\esteb\curseforge\minecraft\Instances\Engineering (1)\mods} [15:34:33] [main/INFO]: Found mod file moonlight-1.20-2.14.1-forge.jar of type MOD with provider {mods folder locator at C:\Users\esteb\curseforge\minecraft\Instances\Engineering (1)\mods} [15:34:33] [main/INFO]: Found mod file MoreAndMoreArmorFORGE1201UPDATE.jar of type MOD with provider {mods folder locator at C:\Users\esteb\curseforge\minecraft\Instances\Engineering (1)\mods} [15:34:33] [main/INFO]: Found mod file moresswords-1.1.0-forge-1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\esteb\curseforge\minecraft\Instances\Engineering (1)\mods} [15:34:33] [main/INFO]: Found mod file mowziesmobs-1.7.2.jar of type MOD with provider {mods folder locator at C:\Users\esteb\curseforge\minecraft\Instances\Engineering (1)\mods} [15:34:33] [main/INFO]: Found mod file nethersdelight-1.20.1-4.0.jar of type MOD with provider {mods folder locator at C:\Users\esteb\curseforge\minecraft\Instances\Engineering (1)\mods} [15:34:33] [main/INFO]: Found mod file oc2r-1.20.1-forge-2.1.3-all.jar of type MOD with provider {mods folder locator at C:\Users\esteb\curseforge\minecraft\Instances\Engineering (1)\mods} [15:34:33] [main/INFO]: Found mod file oceansdelight-1.0.2-1.20.jar of type MOD with provider {mods folder locator at C:\Users\esteb\curseforge\minecraft\Instances\Engineering (1)\mods} [15:34:33] [main/INFO]: Found mod file Patchouli-1.20.1-84.1-FORGE.jar of type MOD with provider {mods folder locator at C:\Users\esteb\curseforge\minecraft\Instances\Engineering (1)\mods} [15:34:33] [main/INFO]: Found mod file quarry-1.20.1-1.6.5r.jar of type MOD with provider {mods folder locator at C:\Users\esteb\curseforge\minecraft\Instances\Engineering (1)\mods} [15:34:33] [main/INFO]: Found mod file rechiseled-1.1.6-forge-mc1.20.jar of type MOD with provider {mods folder locator at C:\Users\esteb\curseforge\minecraft\Instances\Engineering (1)\mods} [15:34:33] [main/INFO]: Found mod file reforgedplaymod-1.20.1-0.3.1.jar of type MOD with provider {mods folder locator at C:\Users\esteb\curseforge\minecraft\Instances\Engineering (1)\mods} [15:34:33] [main/INFO]: Found mod file refurbished_furniture-forge-1.20.1-1.0.12.jar of type MOD with provider {mods folder locator at C:\Users\esteb\curseforge\minecraft\Instances\Engineering (1)\mods} [15:34:33] [main/INFO]: Found mod file resourcefulconfig-forge-1.20.1-2.1.3.jar of type MOD with provider {mods folder locator at C:\Users\esteb\curseforge\minecraft\Instances\Engineering (1)\mods} [15:34:33] [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\esteb\curseforge\minecraft\Instances\Engineering (1)\mods} [15:34:33] [main/INFO]: Found mod file rftoolsbase-1.20-5.0.6.jar of type MOD with provider {mods folder locator at C:\Users\esteb\curseforge\minecraft\Instances\Engineering (1)\mods} [15:34:33] [main/INFO]: Found mod file rftoolsbuilder-1.20-6.0.8.jar of type MOD with provider {mods folder locator at C:\Users\esteb\curseforge\minecraft\Instances\Engineering (1)\mods} [15:34:33] [main/INFO]: Found mod file rftoolspower-1.20-6.0.2.jar of type MOD with provider {mods folder locator at C:\Users\esteb\curseforge\minecraft\Instances\Engineering (1)\mods} [15:34:33] [main/INFO]: Found mod file Searchables-forge-1.20.1-1.0.3.jar of type MOD with provider {mods folder locator at C:\Users\esteb\curseforge\minecraft\Instances\Engineering (1)\mods} [15:34:33] [main/INFO]: Found mod file simplemissiles-1.6.2-forge-1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\esteb\curseforge\minecraft\Instances\Engineering (1)\mods} [15:34:33] [main/INFO]: Found mod file SimpleQuarry-1.20.1-20.1.6.jar of type MOD with provider {mods folder locator at C:\Users\esteb\curseforge\minecraft\Instances\Engineering (1)\mods} [15:34:33] [main/INFO]: Found mod file sophisticatedbackpacks-1.20.1-3.23.18.1247.jar of type MOD with provider {mods folder locator at C:\Users\esteb\curseforge\minecraft\Instances\Engineering (1)\mods} [15:34:33] [main/INFO]: Found mod file sophisticatedcore-1.20.1-1.2.66.997.jar of type MOD with provider {mods folder locator at C:\Users\esteb\curseforge\minecraft\Instances\Engineering (1)\mods} [15:34:33] [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\esteb\curseforge\minecraft\Instances\Engineering (1)\mods} [15:34:33] [main/INFO]: Found mod file StorageDrawers-1.20.1-12.9.14.jar of type MOD with provider {mods folder locator at C:\Users\esteb\curseforge\minecraft\Instances\Engineering (1)\mods} [15:34:33] [main/INFO]: Found mod file supermartijn642configlib-1.1.8-forge-mc1.20.jar of type MOD with provider {mods folder locator at C:\Users\esteb\curseforge\minecraft\Instances\Engineering (1)\mods} [15:34:33] [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\esteb\curseforge\minecraft\Instances\Engineering (1)\mods} [15:34:33] [main/INFO]: Found mod file supplementaries-1.20-3.1.30.jar of type MOD with provider {mods folder locator at C:\Users\esteb\curseforge\minecraft\Instances\Engineering (1)\mods} [15:34:33] [main/INFO]: Found mod file suppsquared-1.20-1.1.21.jar of type MOD with provider {mods folder locator at C:\Users\esteb\curseforge\minecraft\Instances\Engineering (1)\mods} [15:34:33] [main/INFO]: Found mod file tacz-1.20.1-1.1.6.jar of type MOD with provider {mods folder locator at C:\Users\esteb\curseforge\minecraft\Instances\Engineering (1)\mods} [15:34:33] [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\esteb\curseforge\minecraft\Instances\Engineering (1)\mods} [15:34:33] [main/INFO]: Found mod file torchmaster-20.1.9.jar of type MOD with provider {mods folder locator at C:\Users\esteb\curseforge\minecraft\Instances\Engineering (1)\mods} [15:34:33] [main/INFO]: Found mod file twilightforest-1.20.1-4.3.2508-universal.jar of type MOD with provider {mods folder locator at C:\Users\esteb\curseforge\minecraft\Instances\Engineering (1)\mods} [15:34:33] [main/INFO]: Found mod file veggiesdelight-1.7.2.jar of type MOD with provider {mods folder locator at C:\Users\esteb\curseforge\minecraft\Instances\Engineering (1)\mods} [15:34:33] [main/INFO]: Found mod file voicechat-forge-1.20.1-2.5.30.jar of type MOD with provider {mods folder locator at C:\Users\esteb\curseforge\minecraft\Instances\Engineering (1)\mods} [15:34:33] [main/INFO]: Found mod file waystones-forge-1.20.1-14.1.13.jar of type MOD with provider {mods folder locator at C:\Users\esteb\curseforge\minecraft\Instances\Engineering (1)\mods} [15:34:33] [main/INFO]: Found mod file webdisplays-2.0.2-1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\esteb\curseforge\minecraft\Instances\Engineering (1)\mods} [15:34:33] [main/INFO]: Found mod file ZeroCore2-1.20.1-2.1.47.jar of type MOD with provider {mods folder locator at C:\Users\esteb\curseforge\minecraft\Instances\Engineering (1)\mods} [15:34:33] [main/WARN]: Mod file C:\Users\esteb\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 [15:34:33] [main/WARN]: Mod file C:\Users\esteb\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 [15:34:33] [main/WARN]: Mod file C:\Users\esteb\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 [15:34:33] [main/WARN]: Mod file C:\Users\esteb\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 [15:34:33] [main/INFO]: Found mod file fmlcore-1.20.1-47.4.0.jar of type LIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.MinecraftLocator@6c9320c2 [15:34:33] [main/INFO]: Found mod file javafmllanguage-1.20.1-47.4.0.jar of type LANGPROVIDER with provider net.minecraftforge.fml.loading.moddiscovery.MinecraftLocator@6c9320c2 [15:34:33] [main/INFO]: Found mod file lowcodelanguage-1.20.1-47.4.0.jar of type LANGPROVIDER with provider net.minecraftforge.fml.loading.moddiscovery.MinecraftLocator@6c9320c2 [15:34:33] [main/INFO]: Found mod file mclanguage-1.20.1-47.4.0.jar of type LANGPROVIDER with provider net.minecraftforge.fml.loading.moddiscovery.MinecraftLocator@6c9320c2 [15:34:33] [main/INFO]: Found mod file client-1.20.1-20230612.114412-srg.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.MinecraftLocator@6c9320c2 [15:34:33] [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@6c9320c2 [15:34:34] [main/WARN]: Attempted to select two dependency jars from JarJar which have the same identification: Mod File:  and Mod File: . Using Mod File: [15:34:34] [main/INFO]: Found 37 dependencies adding them to mods collection [15:34:34] [main/INFO]: Found mod file bcel-6.6.1.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@5f14761c [15:34:34] [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@5f14761c [15:34:34] [main/INFO]: Found mod file aspectjrt-1.8.2.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@5f14761c [15:34:34] [main/INFO]: Found mod file sedna.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@5f14761c [15:34:34] [main/INFO]: Found mod file mixinsquared-forge-0.1.1.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@5f14761c [15:34:34] [main/INFO]: Found mod file kfflang-4.11.0.jar of type LANGPROVIDER with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@5f14761c [15:34:34] [main/INFO]: Found mod file Registrate-MC1.20-1.3.3.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@5f14761c [15:34:34] [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@5f14761c [15:34:34] [main/INFO]: Found mod file google-api-client-java6-1.20.0.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@5f14761c [15:34:34] [main/INFO]: Found mod file mclib-20.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@5f14761c [15:34:34] [main/INFO]: Found mod file kffmod-4.11.0.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@5f14761c [15:34:34] [main/INFO]: Found mod file kfflib-4.11.0.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@5f14761c [15:34:34] [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@5f14761c [15:34:34] [main/INFO]: Found mod file bytecodecs-1.0.2.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@5f14761c [15:34:34] [main/INFO]: Found mod file curios-forge-5.6.1+1.20.1.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@5f14761c [15:34:34] [main/INFO]: Found mod file jgltf-model-3af6de4.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@5f14761c [15:34:34] [main/INFO]: Found mod file lwjgl-utils-27dcd66.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@5f14761c [15:34:34] [main/INFO]: Found mod file MixinExtras-0.4.1.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@5f14761c [15:34:34] [main/INFO]: Found mod file MixinSquared-0.1.1.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@5f14761c [15:34:34] [main/INFO]: Found mod file opennbt-0a02214.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@5f14761c [15:34:34] [main/INFO]: Found mod file mixinextras-forge-0.2.0-beta.9.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@5f14761c [15:34:34] [main/INFO]: Found mod file luaj-jse-3.0.8-figura.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@5f14761c [15:34:34] [main/INFO]: Found mod file luaj-core-3.0.8-figura.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@5f14761c [15:34:34] [main/INFO]: Found mod file MathParser.org-mXparser-5.2.1.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@5f14761c [15:34:34] [main/INFO]: Found mod file cumulus_menus-1.20.1-1.0.1-neoforge.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@5f14761c [15:34:34] [main/INFO]: Found mod file yabn-1.0.3.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@5f14761c [15:34:34] [main/INFO]: Found mod file commons-exec-1.3.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@5f14761c [15:34:34] [main/INFO]: Found mod file flightlib-forge-2.1.0.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@5f14761c [15:34:34] [main/INFO]: Found mod file nitrogen_internals-1.20.1-1.0.12-neoforge.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@5f14761c [15:34:34] [main/INFO]: Found mod file 2.79.0-a0696f8.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@5f14761c [15:34:34] [main/INFO]: Found mod file google-api-client-gson-1.20.0.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@5f14761c [15:34:34] [main/INFO]: Found mod file google-oauth-client-jetty-1.20.0.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@5f14761c [15:34:34] [main/INFO]: Found mod file google-api-services-youtube-v3-rev178-1.22.0.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@5f14761c [15:34:34] [main/INFO]: Found mod file isoparser-1.1.7.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@5f14761c [15:34:34] [main/INFO]: Found mod file jlayer-1.0.1.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@5f14761c [15:34:34] [main/INFO]: Found mod file commons-math3-3.6.1.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@5f14761c [15:34:34] [main/INFO]: Found mod file lwjgl-tinyexr-3.3.1.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@5f14761c [15:34:34] [main/INFO]: Found Kotlin-containing mod Jar[union:/C:/Users/esteb/curseforge/minecraft/Instances/Engineering%20(1)/essential/libraries/forge_1.20.1/kotlin-for-forge-4.3.0-slim.jar%23281!/], checking whether we need to upgrade it.. [15:34:34] [main/INFO]: Found outdated Kotlin core libs 0.0.0 (we ship 1.9.23) [15:34:34] [main/INFO]: Found outdated Kotlin Coroutines libs 0.0.0 (we ship 1.8.0) [15:34:34] [main/INFO]: Found outdated Kotlin Serialization libs 0.0.0 (we ship 1.6.3) [15:34:34] [main/INFO]: Generating jar with updated Kotlin at C:\Users\esteb\AppData\Local\Temp\kff-updated-kotlin-12908758738589143542-4.3.0-slim.jar [15:34:35] [main/INFO]: Found Kotlin-containing mod Jar[union:/C:/Users/esteb/curseforge/minecraft/Instances/Engineering%20(1)/mods/kotlinforforge-4.11.0-all.jar%23332!/], checking whether we need to upgrade it.. [15:34:35] [main/INFO]: Found up-to-date Kotlin core libs 2.0.0 (we ship 1.9.23) [15:34:35] [main/INFO]: Found up-to-date Kotlin Coroutines libs 1.8.1 (we ship 1.8.0) [15:34:35] [main/INFO]: Found up-to-date Kotlin Serialization libs 1.6.3 (we ship 1.6.3) [15:34:35] [main/INFO]: All good, no update needed: Jar[union:/C:/Users/esteb/curseforge/minecraft/Instances/Engineering%20(1)/mods/kotlinforforge-4.11.0-all.jar%23332!/] [15:34:38] [main/INFO]: Compatibility level set to JAVA_17 [15:34:38] [main/INFO]: Launching target 'forgeclient' with arguments [--version, forge-47.4.0, --gameDir, C:\Users\esteb\curseforge\minecraft\Instances\Engineering (1), --assetsDir, C:\Users\esteb\curseforge\minecraft\Install\assets, --uuid, 146b16bc1d204d99876f65014406b450, --username, Este_17000, --assetIndex, 5, --accessToken, ????????, --clientId, MTdiNGM1M2QtMjQzYS00ZDZjLTliOTctMjFiZDY4ZGVkZWQ3, --xuid, 2535454605082131, --userType, msa, --versionType, release, --width, 1024, --height, 768, --quickPlayPath, C:\Users\esteb\curseforge\minecraft\Install\quickPlay\java\1751031268199.json] [15:34:38] [main/WARN]: Reference map 'nitrogen_internals.refmap.json' for nitrogen_internals.mixins.json could not be read. If this is a development environment you can ignore this message [15:34:39] [main/INFO]: Starting Essential v1.3.8.2 (#0a59fb020d) [stable] [15:34:39] [main/WARN]: Error loading class: dev/latvian/mods/kubejs/recipe/RecipesEventJS (java.lang.ClassNotFoundException: dev.latvian.mods.kubejs.recipe.RecipesEventJS) [15:34:39] [main/WARN]: @Mixin target dev.latvian.mods.kubejs.recipe.RecipesEventJS was not found mixins.hammerlib.json:bs.kubejs.RecipeEventJSMixin [15:34:40] [main/WARN]: Error loading class: net/optifine/render/ChunkVisibility (java.lang.ClassNotFoundException: net.optifine.render.ChunkVisibility) [15:34:40] [main/WARN]: Error loading class: shadersmod/client/ShadersRender (java.lang.ClassNotFoundException: shadersmod.client.ShadersRender) [15:34:40] [main/WARN]: Error loading class: net/optifine/shaders/ShadersRender (java.lang.ClassNotFoundException: net.optifine.shaders.ShadersRender) [15:34:40] [main/WARN]: Error loading class: net/irisshaders/iris/uniforms/CommonUniforms (java.lang.ClassNotFoundException: net.irisshaders.iris.uniforms.CommonUniforms) [15:34:40] [main/WARN]: Error loading class: net/irisshaders/iris/Iris (java.lang.ClassNotFoundException: net.irisshaders.iris.Iris)     Please help me ! Thanks !
  • Topics

×
×
  • Create New...

Important Information

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