Jump to content

[SOLVED][1.8] Problem rendering textures in inventory


Recommended Posts

Posted

So I have recently started modding on this minecraft version and I can't get textures to worki. I have implemented a block and an item, the block textures in the world are working but neither of the item/block are working in the inventory. Any solution?

ModItem json:

{

    "parent": "somelxmod:builtin/generated",

    "textures": {

        "all": "somelxmod:items/moditems"

    },

    "display": {

        "thirdperson": {

            "rotation": [ -90, 0, 0 ],

            "translation": [ 0, 1, -3 ],

            "scale": [ 0.55, 0.55, 0.55 ]

        },

        "firstperson": {

            "rotation": [ 0, -135, 25 ],

            "translation": [ 0, 4, 2 ],

            "scale": [ 1.7, 1.7, 1.7 ]

        }

    }

}

PS, tell me if you need to know any other files.

PS2,I have been the whole day trying solutions on the internet but they are not working.

Posted

Minecraft only loads one model per

Item

by default:

modid:itemRegistryName

(where

modid

is your lowercase mod ID and

itemRegistryName

is the name you passed to

GameRegistry.registerBlock

/

registerItem

). This resolves to either the assets/modid/models/item/itemRegistryName.json model or the model specified by the

inventory

variant of the assets/modid/blockstates/itemRegistryName.json blockstates file.

 

To load one or more other models, you need to call

ModelBakery.addVariantName

with the names of the models in the same

modid:name

format as above.

 

To specify which model to use for an

Item

, call

ModelLoader.setCustomModelResourceLocation

or

ModelLoader.setCustomMeshDefinition

in preInit.

Please don't PM me to ask for help. Asking your question in a public thread preserves it for people who are having the same problem in the future.

Posted

I'm just trying to make a basic mod and I just want to use one texture but I'm not getting how to do it. I'm using this code to register de texture:

 

ModItems = new Item();

 

ModelResourceLocation mrl = new ModelResourceLocation("somelxmod" + ":" + "moditems", "inventory");

 

renderItem.getItemModelMesher().register(ModItems, 0, mrl);

 

Posted
  On 1/21/2016 at 4:06 PM, Choonster said:

Minecraft only loads one model per

Item

by default:

modid:itemRegistryName

(where

modid

is your lowercase mod ID and

itemRegistryName

is the name you passed to

GameRegistry.registerBlock

/

registerItem

). This resolves to either the assets/modid/models/item/itemRegistryName.json model or the model specified by the

inventory

variant of the assets/modid/blockstates/itemRegistryName.json blockstates file.

 

To load one or more other models, you need to call

ModelBakery.addVariantName

with the names of the models in the same

modid:name

format as above.

 

To specify which model to use for an

Item

, call

ModelLoader.setCustomModelResourceLocation

or

ModelLoader.setCustomMeshDefinition

in preInit.

 

And I have also this JSON for the blockstates folder:

{

    "variants": {

        "normal": { "model": "somelxmod:moditems" }

    }

}

Posted

Are you registering

ModItems

with the name

"moditems"

? If not, either change the model name to match the registry name of

ModItems

or call

ModelBakery.addVariantName

with

"somelxmod:moditems"

to load that model.

 

The Grey Ghost has a guide to troubleshooting item rendering here, I suggest following it.

Please don't PM me to ask for help. Asking your question in a public thread preserves it for people who are having the same problem in the future.

Posted
  On 1/21/2016 at 4:19 PM, Choonster said:

Are you registering

ModItems

with the name

"moditems"

? If not, either change the model name to match the registry name of

ModItems

or call

ModelBakery.addVariantName

with

"somelxmod:moditems"

to load that model.

 

The Grey Ghost has a guide to troubleshooting item rendering here, I suggest following it.

 

Yep I have checked that guide and I didn't find any mistake. I am registering the item with this code:

 

ModItems = new Item();

ModItems.setUnlocalizedName("moditems");

ModItems.setCreativeTab(CreativeTabs.tabMisc);

 

GameRegistry.registerItem(ModItems, "moditems");

 

And i have changed everything to lower case but it is not working anyway.

Posted

In future, please use a site like GitHub or BitBucket if you want to share your entire project. It makes it much easier to spot problems without having to download anything. It also makes it easier to share changes.

 

Your code has several issues:

  • In
    ModBlocks.init

    , you overwrite the

    ModBlocks

    field with a new instance of

    Block

    . You do the same thing for the

    ModItems

    field in

    ModItems.init

    .

  • In
    ModBlocks.init

    , you're calling

    BlockModelShapes#registerBuiltInBlocks

    . This will stop your blockstates file from being loaded, which will break your block model.

  • Your JSON files have the .JSON extension instead of .json. Paths in JARs are case-sensitive, so the case of the extension matters.
  • You should move your code to a package that includes your name and the mod's name (e.g.
    somelx.somelxmod

    )

  • You should give your blocks and items proper names that aren't the same as your block/item registration classes. These names should be singular rather than plural (e.g.
    Thing

    , not

    Things

    ).

  • Follow the naming scheme described here for your classes.

.

Please don't PM me to ask for help. Asking your question in a public thread preserves it for people who are having the same problem in the future.

Posted
  On 1/21/2016 at 11:47 PM, Choonster said:

In future, please use a site like GitHub or BitBucket if you want to share your entire project. It makes it much easier to spot problems without having to download anything. It also makes it easier to share changes.

 

Your code has several issues:

  • In
    ModBlocks.init

    , you overwrite the

    ModBlocks

    field with a new instance of

    Block

    . You do the same thing for the

    ModItems

    field in

    ModItems.init

    .

  • In
    ModBlocks.init

    , you're calling

    BlockModelShapes#registerBuiltInBlocks

    . This will stop your blockstates file from being loaded, which will break your block model.

  • Your JSON files have the .JSON extension instead of .json. Paths in JARs are case-sensitive, so the case of the extension matters.
  • You should move your code to a package that includes your name and the mod's name (e.g.
    somelx.somelxmod

    )

  • You should give your blocks and items proper names that aren't the same as your block/item registration classes. These names should be singular rather than plural (e.g.
    Thing

    , not

    Things

    ).

  • Follow the naming scheme described here for your classes.

.

 

Thank you, I have followed all your steps and now it's working. I will take into consideration for the next time using github, thank you for the advice!

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.