Jump to content

[1.16.5] Changing the use duration of an item


Skelyvelocirap

Recommended Posts

My item gives me a  random item whenever you right click. I tried to utilize the use() method. My issue is that I want to have the user press down the right click button for some time(5 seconds maybe??) and only once that is done should it give the item and repeat if its still held. I tried to use the getUseDuration() method but that doesn't work. I tried to take a look at how its done on some other items(like food items) but i can't figure it out. Can someone help be with this?

Edited by Skelyvelocirap
Link to comment
Share on other sites

3 hours ago, Skelyvelocirap said:

Can someone help be with this?

Within Item#use, you should call PlayerEntity#startUsingItem. This will start using the item when the item is used.

You can set the maximum number of ticks that the item can be used for with the return value of Item#getUseDuration.

While the item is being used, Item#onUseTick will be called every tick, and its integer parameter is the number of ticks left in the use duration. This is probably where you want to put your logic, since you mentioned that the player should be able to keep holding the item to keep the process going.

At some point, the player will release the item, which calls Item#releaseUsing. Its integer parameter is the number of ticks that the item was used for, so you could also put some logic there.

  • Like 1

Fancy 3D Graphing Calculator mod, with many different coordinate systems.

Lightweight 3D/2D position/vector transformations library, also with support for different coordinate systems.

Link to comment
Share on other sites

So that's how those work! Alright, thank you! Its now working perfectly! Although one last question. Item#use() needs you to return an Action result. I never really understood those and mostly just copied what others did. My guess is that its what is responsible for the hand movement when you right click(am I correct?). If it is, how exactly would I fix it so that it only does that once Item#onUseTick's tick parameter is 0?



EDIT: Alright so, I'm now using Item#finishUsingItem as there is no need to run my logic every tick. Hopefully this will reduce the already non-existent lag.

Edited by Skelyvelocirap
different method used
Link to comment
Share on other sites

30 minutes ago, Skelyvelocirap said:

My guess is that its what is responsible for the hand movement when you right click(am I correct?). If it is, how exactly would I fix it so that it only does that once Item#onUseTick's tick parameter is 0?

It is responsible for determining how the hand moves, but it also does a bit more.

Each ActionResult<T> has an ActionResultType and an object T. In the case of the ActionResult<ItemStack>, the ItemStack object of the returned ActionResult<ItemStack> is set as the held item.

Additionally, these ActionResultTypes dictate what happens after your Item's logic has been run. They are queried with the ActionResultType#shouldSwing and ActionResultType#consumesAction methods. The former is self-explanitory, while the latter dictates whether or not the click will be further processed.

For example, ActionResultType.SUCCESS both consumes the action and swings. This means that if you held an ender pearl in your offhand, and clicked with an item that returns a successful ActionResult<ItemStack>, the main item would swing, and no ender pearl would be thrown. ActionResultType.PASS doesn't swing or consume, so returning that would result in no animation of the main item, and an unblocked, thrown ender pearl. ActionResultType.CONSUME consumes the action, but doesn't swing, so that's probably what you want here. ActionResultType.FAIL behaves as PASS, but is used more in the context of Block placement, I think, and as a message to prevent a behaviour.

For your purposes, I would probably recommend returning CONSUME unless LIvingEntity#getUseItemRemainingTicks (this is the value passed into Item#onUseTick) fits your requirements (you could also use LivingEntity#getTicksUsingItem), in which case you would return SUCCESS.

It might also be helpful to return true from Item#useOnRelease, so that your item is used when released, in addition to initially.

Fancy 3D Graphing Calculator mod, with many different coordinate systems.

Lightweight 3D/2D position/vector transformations library, also with support for different coordinate systems.

Link to comment
Share on other sites

Alright. So ActionResult basically just tells Minecraft whether or not to swing the hand, along with whether or not it should process the item further(so inhibiting other items from doing their thing instead). And so I would simply check(in Item#use) if LivingEntity#getUseItemRemainingTicks is greater than 0, if it is than return Consume, or else success?

For the Item#useOnRelease, i dont think i will do that as what im trying to do is wait until the 5 seconds have passed. If i return true then the user could just spam right click and get it over with.

Link to comment
Share on other sites

4 minutes ago, Skelyvelocirap said:

Alright. So ActionResult basically just tells Minecraft whether or not to swing the hand, along with whether or not it should process the item further(so inhibiting other items from doing their thing instead).

Yup, that's about right.

4 minutes ago, Skelyvelocirap said:

And so I would simply check(in Item#use) if LivingEntity#getUseItemRemainingTicks is greater than 0, if it is than return Consume, or else success?

The exact details of when you should do what depend on how you want it to work and look. Ultimately, that's up to you, so you should try to set something up using these tools, experiment a bit, and figure out what produces the best result. It seems like you mostly understand what's going on here, so that ought to go fairly well.

Fancy 3D Graphing Calculator mod, with many different coordinate systems.

Lightweight 3D/2D position/vector transformations library, also with support for different coordinate systems.

Link to comment
Share on other sites

Oops, i didn't submit it.

Alright!

Ok, well it seems to work exactly how i want it to currently! Although, for some reason it still swings the players arms even though im returning ActionResult#consume(stack). Am i supposed to override that somewhere else as well?

Also, this isn't 100% related but what would I need to override to add an animation to the item? I don't mean how do I make an animation(don't quite know how but i should be able to find it on google), rather how do I make it play when the item is held down. I now know that for the items it would be the Item#onUseTick. Is there a similar method for the animation?

Link to comment
Share on other sites

22 minutes ago, Skelyvelocirap said:

Ok, well it seems to work exactly how i want it to currently! Although, for some reason it still swings the players arms even though im returning ActionResult#consume(stack). Am i supposed to override that somewhere else as well?

Please post your code, so that I can see what might be causing this (I won't be able to respond until tomorrow, though, since I need to sleep now).

22 minutes ago, Skelyvelocirap said:

Also, this isn't 100% related but what would I need to override to add an animation to the item? I don't mean how do I make an animation(don't quite know how but i should be able to find it on google), rather how do I make it play when the item is held down. I now know that for the items it would be the Item#onUseTick. Is there a similar method for the animation?

I've never done this before, so my knowledge is limited. Here is a link to the documentation on the topic, though, which seems fairly straightforward.

  • Like 1

Fancy 3D Graphing Calculator mod, with many different coordinate systems.

Lightweight 3D/2D position/vector transformations library, also with support for different coordinate systems.

Link to comment
Share on other sites

This is your problem.

The boolean parameter of ActionResult<T>#sidedSuccess is whether or not the game is running on the logical client, and so returns success on true, or consume on false. Your condition will usually be true, so a success is usually returned, which causes the item to swing. I don't think it's necessary to use sidedSuccess for this, but if you do, you should pass in World.isClientSide, or an equivalent. Regardless, the condition should be updated.

Fancy 3D Graphing Calculator mod, with many different coordinate systems.

Lightweight 3D/2D position/vector transformations library, also with support for different coordinate systems.

Link to comment
Share on other sites

Oops, I forgot I switched to ActionResult#sidedSuccess. And thank you for noticing it was backwards. Although this isn't really the problem. My item is ALWAYS doing that, even if the condition is false(the if statements before it). When the player is not in the correct liquids it should return ActionResult#consume(which it does) but it still swings the players arms. I know this for sure as you might notice that its logging the item in the pan(which i forgot to remove...).

Link to comment
Share on other sites

I've done some testing, and there are 3 things that cause the item to move.

The first is when you return a success, the item will swing. Updating the returns as previously discussed achieves the desired result in this context.

The second is when you return a consume, the item will bob if it is not in use. This means that if you try to use the pan while not able to do any panning, it will bob repeatedly (but not jarringly quickly). If you don't want this, you can return a pass, which has no visual effect.

The third is when you set the damage value every tick. This is what causes the glitchy-looking vibration, and it would seem you can fix it by setting the damage less frequently (once every 3 ticks eliminated all unwanted movement in my experiments).

  • Like 1

Fancy 3D Graphing Calculator mod, with many different coordinate systems.

Lightweight 3D/2D position/vector transformations library, also with support for different coordinate systems.

Link to comment
Share on other sites

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.



  • Recently Browsing

    • No registered users viewing this page.
  • Posts

    • Create a test server with these mods on your own system first
    • This is a MacOs related issue   Make a test with adding -Dfml.earlyprogresswindow=false to your JVM-Arguments
    • I already used MultiMC before this and they don't support forge. I tried AT Launcher and got this: log: https://paste.atlauncher.com/view/a034546d-ce40-42f7-bbad-074c971264dc I'm not entirely sure how to change the lwjgl version in the launcher though.
    • Having issues loading up a custom mod pack, cannot get past error code 1, forge provides following latest.log. How do I read this or identify the issue?       [17:43:10] [main/INFO]: ModLauncher running: args [--username, NootDoot_, --version, forge-47.3.11, --gameDir, C:\Users\Matt\curseforge\minecraft\Instances\Cave Horror Project - CHP1, --assetsDir, C:\Users\Matt\curseforge\minecraft\Install\assets, --assetIndex, 5, --uuid, 67a9bbf5b4604ab9b58c341318c513f9, --accessToken, ????????, --clientId, b36f3a-706c02-21e9ed-f89093-10aa624, --xuid, 2533274985580668, --userType, msa, --versionType, release, --width, 1920, --height, 1080, , , , , --launchTarget, forgeclient, --fml.forgeVersion, 47.3.11, --fml.mcVersion, 1.20.1, --fml.forgeGroup, net.minecraftforge, --fml.mcpVersion, 20230612.114412] [17:43:10] [main/INFO]: ModLauncher 10.0.9+10.0.9+main.dcd20f30 starting: java version 17.0.8 by Eclipse Adoptium; OS Windows 11 arch amd64 version 10.0 [17:43:12] [main/INFO]: Loading ImmediateWindowProvider fmlearlywindow [17:43:12] [main/INFO]: Trying GL version 4.6 [17:43:12] [main/INFO]: Requested GL version 4.6 got version 4.6 [17:43:12] [pool-2-thread-1/INFO]: GL info: NVIDIA GeForce RTX 3060 Laptop GPU/PCIe/SSE2 GL version 4.6.0 NVIDIA 560.94, NVIDIA Corporation [17:43:14] [main/INFO]: Starting Essential Loader (stage2) version 1.6.3 (285f951adc7537f49ae3ef9fc0d2fd3e) [stable] [17:43:14] [main/INFO]: SpongePowered MIXIN Subsystem Version=0.8.5 Source=union:/C:/Users/Matt/curseforge/minecraft/Install/libraries/org/spongepowered/mixin/0.8.5/mixin-0.8.5.jar%23100!/ Service=ModLauncher Env=CLIENT [17:43:15] [main/INFO]: Found mod file [1.20.1-forge]-Epic-Knights-9.16.jar of type MOD with provider {mods folder locator at C:\Users\Matt\curseforge\minecraft\Instances\Cave Horror Project - CHP1\mods} [17:43:15] [main/INFO]: Found mod file [1.20.1] SecurityCraft v1.9.11.jar of type MOD with provider {mods folder locator at C:\Users\Matt\curseforge\minecraft\Instances\Cave Horror Project - CHP1\mods} [17:43:15] [main/INFO]: Found mod file AdvancementPlaques-1.20.1-forge-1.6.7.jar of type MOD with provider {mods folder locator at C:\Users\Matt\curseforge\minecraft\Instances\Cave Horror Project - CHP1\mods} [17:43:15] [main/INFO]: Found mod file alexsdelight-1.5.jar of type MOD with provider {mods folder locator at C:\Users\Matt\curseforge\minecraft\Instances\Cave Horror Project - CHP1\mods} [17:43:15] [main/INFO]: Found mod file alexsmobs-1.22.9.jar of type MOD with provider {mods folder locator at C:\Users\Matt\curseforge\minecraft\Instances\Cave Horror Project - CHP1\mods} [17:43:15] [main/INFO]: Found mod file AmbientSounds_FORGE_v6.1.3_mc1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\Matt\curseforge\minecraft\Instances\Cave Horror Project - CHP1\mods} [17:43:15] [main/INFO]: Found mod file amendments-1.20-1.2.12.jar of type MOD with provider {mods folder locator at C:\Users\Matt\curseforge\minecraft\Instances\Cave Horror Project - CHP1\mods} [17:43:15] [main/INFO]: Found mod file anomaly-1.9.0-forge-1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\Matt\curseforge\minecraft\Instances\Cave Horror Project - CHP1\mods} [17:43:15] [main/INFO]: Found mod file Apollyon v1.1.0 (Forge 1.20.1).jar of type MOD with provider {mods folder locator at C:\Users\Matt\curseforge\minecraft\Instances\Cave Horror Project - CHP1\mods} [17:43:15] [main/INFO]: Found mod file ApothicAttributes-1.20.1-1.3.7.jar of type MOD with provider {mods folder locator at C:\Users\Matt\curseforge\minecraft\Instances\Cave Horror Project - CHP1\mods} [17:43:15] [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\Matt\curseforge\minecraft\Instances\Cave Horror Project - CHP1\mods} [17:43:15] [main/INFO]: Found mod file architectury-9.2.14-forge.jar of type MOD with provider {mods folder locator at C:\Users\Matt\curseforge\minecraft\Instances\Cave Horror Project - CHP1\mods} [17:43:15] [main/INFO]: Found mod file ArPhEx-3.2.4-forge-1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\Matt\curseforge\minecraft\Instances\Cave Horror Project - CHP1\mods} [17:43:15] [main/INFO]: Found mod file balm-forge-1.20.1-7.3.9-all.jar of type MOD with provider {mods folder locator at C:\Users\Matt\curseforge\minecraft\Instances\Cave Horror Project - CHP1\mods} [17:43:15] [main/INFO]: Found mod file BetterTitleScreen-1.20-1.13.2.jar of type MOD with provider {mods folder locator at C:\Users\Matt\curseforge\minecraft\Instances\Cave Horror Project - CHP1\mods} [17:43:15] [main/INFO]: Found mod file BiomesOPlenty-1.20.1-18.0.0.592.jar of type MOD with provider {mods folder locator at C:\Users\Matt\curseforge\minecraft\Instances\Cave Horror Project - CHP1\mods} [17:43:15] [main/INFO]: Found mod file Bookshelf-Forge-1.20.1-20.2.13.jar of type MOD with provider {mods folder locator at C:\Users\Matt\curseforge\minecraft\Instances\Cave Horror Project - CHP1\mods} [17:43:15] [main/INFO]: Found mod file born_in_chaos_[Forge]1.20.1_1.5_halloween_event.jar of type MOD with provider {mods folder locator at C:\Users\Matt\curseforge\minecraft\Instances\Cave Horror Project - CHP1\mods} [17:43:15] [main/INFO]: Found mod file Butchersdelight beta 1.20.1 2.1.0.jar of type MOD with provider {mods folder locator at C:\Users\Matt\curseforge\minecraft\Instances\Cave Horror Project - CHP1\mods} [17:43:15] [main/INFO]: Found mod file Butchersdelight Foods beta 1.20.1 1.0.3.jar of type MOD with provider {mods folder locator at C:\Users\Matt\curseforge\minecraft\Instances\Cave Horror Project - CHP1\mods} [17:43:15] [main/INFO]: Found mod file caelus-forge-3.2.0+1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\Matt\curseforge\minecraft\Instances\Cave Horror Project - CHP1\mods} [17:43:15] [main/INFO]: Found mod file camera-forge-1.20.1-1.0.14.jar of type MOD with provider {mods folder locator at C:\Users\Matt\curseforge\minecraft\Instances\Cave Horror Project - CHP1\mods} [17:43:15] [main/INFO]: Found mod file cameraoverhaul-1.1-1.20.4.jar of type MOD with provider {mods folder locator at C:\Users\Matt\curseforge\minecraft\Instances\Cave Horror Project - CHP1\mods} [17:43:15] [main/INFO]: Found mod file CarbonConfig-1.20-1.2.6.jar of type MOD with provider {mods folder locator at C:\Users\Matt\curseforge\minecraft\Instances\Cave Horror Project - CHP1\mods} [17:43:15] [main/INFO]: Found mod file castle_in_the_sky-1.20.1-0.6.0.jar of type MOD with provider {mods folder locator at C:\Users\Matt\curseforge\minecraft\Instances\Cave Horror Project - CHP1\mods} [17:43:15] [main/INFO]: Found mod file cave_dweller-1.20.1-1.6.4.jar of type MOD with provider {mods folder locator at C:\Users\Matt\curseforge\minecraft\Instances\Cave Horror Project - CHP1\mods} [17:43:15] [main/INFO]: Found mod file cavedust-2.0.4-1.20.1-forge.jar of type MOD with provider {mods folder locator at C:\Users\Matt\curseforge\minecraft\Instances\Cave Horror Project - CHP1\mods} [17:43:15] [main/INFO]: Found mod file chat_heads-0.13.4-forge-1.20.jar of type MOD with provider {mods folder locator at C:\Users\Matt\curseforge\minecraft\Instances\Cave Horror Project - CHP1\mods} [17:43:15] [main/INFO]: Found mod file Chunk-Pregenerator-1.20-4.4.4.jar of type MOD with provider {mods folder locator at C:\Users\Matt\curseforge\minecraft\Instances\Cave Horror Project - CHP1\mods} [17:43:15] [main/INFO]: Found mod file Chunky-1.3.146.jar of type MOD with provider {mods folder locator at C:\Users\Matt\curseforge\minecraft\Instances\Cave Horror Project - CHP1\mods} [17:43:15] [main/INFO]: Found mod file citadel-2.6.0-1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\Matt\curseforge\minecraft\Instances\Cave Horror Project - CHP1\mods} [17:43:15] [main/INFO]: Found mod file cloth-config-11.1.136-forge.jar of type MOD with provider {mods folder locator at C:\Users\Matt\curseforge\minecraft\Instances\Cave Horror Project - CHP1\mods} [17:43:15] [main/INFO]: Found mod file Clumps-forge-1.20.1-12.0.0.4.jar of type MOD with provider {mods folder locator at C:\Users\Matt\curseforge\minecraft\Instances\Cave Horror Project - CHP1\mods} [17:43:15] [main/INFO]: Found mod file ColdSweat-2.3.7.jar of type MOD with provider {mods folder locator at C:\Users\Matt\curseforge\minecraft\Instances\Cave Horror Project - CHP1\mods} [17:43:15] [main/INFO]: Found mod file collective-1.20.1-7.87.jar of type MOD with provider {mods folder locator at C:\Users\Matt\curseforge\minecraft\Instances\Cave Horror Project - CHP1\mods} [17:43:15] [main/INFO]: Found mod file configured-forge-1.20.1-2.2.3.jar of type MOD with provider {mods folder locator at C:\Users\Matt\curseforge\minecraft\Instances\Cave Horror Project - CHP1\mods} [17:43:15] [main/INFO]: Found mod file connectedglass-1.1.12-forge-mc1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\Matt\curseforge\minecraft\Instances\Cave Horror Project - CHP1\mods} [17:43:15] [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\Matt\curseforge\minecraft\Instances\Cave Horror Project - CHP1\mods} [17:43:15] [main/INFO]: Found mod file coroutil-forge-1.20.1-1.3.7.jar of type MOD with provider {mods folder locator at C:\Users\Matt\curseforge\minecraft\Instances\Cave Horror Project - CHP1\mods} [17:43:15] [main/INFO]: Found mod file CraftPresence-2.5.1+1.20.1-forge.jar of type MOD with provider {mods folder locator at C:\Users\Matt\curseforge\minecraft\Instances\Cave Horror Project - CHP1\mods} [17:43:15] [main/INFO]: Found mod file crashexploitfixer-forge-1.1.0+1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\Matt\curseforge\minecraft\Instances\Cave Horror Project - CHP1\mods} [17:43:15] [main/INFO]: Found mod file crawlondemand-1.20.x-1.0.0.jar of type MOD with provider {mods folder locator at C:\Users\Matt\curseforge\minecraft\Instances\Cave Horror Project - CHP1\mods} [17:43:15] [main/INFO]: Found mod file cristellib-1.1.6-forge.jar of type MOD with provider {mods folder locator at C:\Users\Matt\curseforge\minecraft\Instances\Cave Horror Project - CHP1\mods} [17:43:15] [main/INFO]: Found mod file cupboard-1.20.1-2.7.jar of type MOD with provider {mods folder locator at C:\Users\Matt\curseforge\minecraft\Instances\Cave Horror Project - CHP1\mods} [17:43:15] [main/INFO]: Found mod file curios-forge-5.11.0+1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\Matt\curseforge\minecraft\Instances\Cave Horror Project - CHP1\mods} [17:43:15] [main/INFO]: Found mod file curiouslanterns-1.20.1-1.3.3.jar of type MOD with provider {mods folder locator at C:\Users\Matt\curseforge\minecraft\Instances\Cave Horror Project - CHP1\mods} [17:43:15] [main/INFO]: Found mod file decorative_blocks-forge-1.20.1-4.1.3.jar of type MOD with provider {mods folder locator at C:\Users\Matt\curseforge\minecraft\Instances\Cave Horror Project - CHP1\mods} [17:43:15] [main/INFO]: Found mod file Deep Dark Regrowth 1.2.6.1 - 1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\Matt\curseforge\minecraft\Instances\Cave Horror Project - CHP1\mods} [17:43:15] [main/INFO]: Found mod file Delightful-1.20.1-3.6.jar of type MOD with provider {mods folder locator at C:\Users\Matt\curseforge\minecraft\Instances\Cave Horror Project - CHP1\mods} [17:43:15] [main/INFO]: Found mod file delightfulburgers-1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\Matt\curseforge\minecraft\Instances\Cave Horror Project - CHP1\mods} [17:43:15] [main/INFO]: Found mod file delightfulsandwich-1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\Matt\curseforge\minecraft\Instances\Cave Horror Project - CHP1\mods} [17:43:15] [main/INFO]: Found mod file disenchanting_table-merged-1.20.1-3.1.0.jar of type MOD with provider {mods folder locator at C:\Users\Matt\curseforge\minecraft\Instances\Cave Horror Project - CHP1\mods} [17:43:15] [main/INFO]: Found mod file dixtas_armory-1.1.9-1.20.1-beta.jar of type MOD with provider {mods folder locator at C:\Users\Matt\curseforge\minecraft\Instances\Cave Horror Project - CHP1\mods} [17:43:15] [main/INFO]: Found mod file doubledoors-1.20.1-5.9.jar of type MOD with provider {mods folder locator at C:\Users\Matt\curseforge\minecraft\Instances\Cave Horror Project - CHP1\mods} [17:43:15] [main/INFO]: Found mod file DripSounds-1.19.4-0.3.2.jar of type MOD with provider {mods folder locator at C:\Users\Matt\curseforge\minecraft\Instances\Cave Horror Project - CHP1\mods} [17:43:15] [main/INFO]: Found mod file Dungeon Crawl-1.20.1-2.3.14.jar of type MOD with provider {mods folder locator at C:\Users\Matt\curseforge\minecraft\Instances\Cave Horror Project - CHP1\mods} [17:43:15] [main/INFO]: Found mod file Dungeon Now Loading-forge-1.20.1-1.5.jar of type MOD with provider {mods folder locator at C:\Users\Matt\curseforge\minecraft\Instances\Cave Horror Project - CHP1\mods} [17:43:15] [main/INFO]: Found mod file dungeons_enhanced-1.20.1-5.2.2.jar of type MOD with provider {mods folder locator at C:\Users\Matt\curseforge\minecraft\Instances\Cave Horror Project - CHP1\mods} [17:43:15] [main/INFO]: Found mod file dynamiccrosshair-7.4.4+1.20-forge.jar of type MOD with provider {mods folder locator at C:\Users\Matt\curseforge\minecraft\Instances\Cave Horror Project - CHP1\mods} [17:43:15] [main/INFO]: Found mod file dynamiclights-1.20.1.2.jar of type MOD with provider {mods folder locator at C:\Users\Matt\curseforge\minecraft\Instances\Cave Horror Project - CHP1\mods} [17:43:15] [main/INFO]: Found mod file eatinganimation-1.20.1-5.1.0.jar of type MOD with provider {mods folder locator at C:\Users\Matt\curseforge\minecraft\Instances\Cave Horror Project - CHP1\mods} [17:43:15] [main/INFO]: Found mod file elytraslot-forge-6.4.4+1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\Matt\curseforge\minecraft\Instances\Cave Horror Project - CHP1\mods} [17:43:15] [main/INFO]: Found mod file embeddium-0.3.31+mc1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\Matt\curseforge\minecraft\Instances\Cave Horror Project - CHP1\mods} [17:43:15] [main/INFO]: Found mod file embeddiumplus-1.20.1-v1.2.13.jar of type MOD with provider {mods folder locator at C:\Users\Matt\curseforge\minecraft\Instances\Cave Horror Project - CHP1\mods} [17:43:15] [main/INFO]: Found mod file enchanted_arsenal-1.0.1-forge-1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\Matt\curseforge\minecraft\Instances\Cave Horror Project - CHP1\mods} [17:43:15] [main/INFO]: Found mod file EnchantmentDescriptions-Forge-1.20.1-17.1.19.jar of type MOD with provider {mods folder locator at C:\Users\Matt\curseforge\minecraft\Instances\Cave Horror Project - CHP1\mods} [17:43:15] [main/INFO]: Found mod file endofherobrine-1.20.1-1.0.8.2.jar of type MOD with provider {mods folder locator at C:\Users\Matt\curseforge\minecraft\Instances\Cave Horror Project - CHP1\mods} [17:43:15] [main/INFO]: Found mod file entity_model_features_forge_1.20.1-2.2.6.jar of type MOD with provider {mods folder locator at C:\Users\Matt\curseforge\minecraft\Instances\Cave Horror Project - CHP1\mods} [17:43:15] [main/INFO]: Found mod file entity_texture_features_forge_1.20.1-6.2.5.jar of type MOD with provider {mods folder locator at C:\Users\Matt\curseforge\minecraft\Instances\Cave Horror Project - CHP1\mods} [17:43:15] [main/INFO]: Found mod file epic_stats_mod_remastered-1.1.8f-forge-1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\Matt\curseforge\minecraft\Instances\Cave Horror Project - CHP1\mods} [17:43:15] [main/INFO]: Found mod file epicfight-forge-20.9.5-1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\Matt\curseforge\minecraft\Instances\Cave Horror Project - CHP1\mods} [17:43:15] [main/INFO]: Found mod file Explorify v1.6.2 f10-48.jar of type MOD with provider {mods folder locator at C:\Users\Matt\curseforge\minecraft\Instances\Cave Horror Project - CHP1\mods} [17:43:15] [main/INFO]: Found mod file exposure-1.20.1-1.7.7-forge.jar of type MOD with provider {mods folder locator at C:\Users\Matt\curseforge\minecraft\Instances\Cave Horror Project - CHP1\mods} [17:43:15] [main/INFO]: Found mod file exposure_catalog-1.20.1-1.0.3-forge.jar of type MOD with provider {mods folder locator at C:\Users\Matt\curseforge\minecraft\Instances\Cave Horror Project - CHP1\mods} [17:43:15] [main/INFO]: Found mod file EyesInTheDarkness-1.20.1-1.3.10.jar of type MOD with provider {mods folder locator at C:\Users\Matt\curseforge\minecraft\Instances\Cave Horror Project - CHP1\mods} [17:43:15] [main/INFO]: Found mod file Fallingleaves-1.20.1-2.1.0.jar of type MOD with provider {mods folder locator at C:\Users\Matt\curseforge\minecraft\Instances\Cave Horror Project - CHP1\mods} [17:43:15] [main/INFO]: Found mod file FallingTree-1.20.1-4.3.4.jar of type MOD with provider {mods folder locator at C:\Users\Matt\curseforge\minecraft\Instances\Cave Horror Project - CHP1\mods} [17:43:15] [main/INFO]: Found mod file fancymenu_forge_3.3.2_MC_1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\Matt\curseforge\minecraft\Instances\Cave Horror Project - CHP1\mods} [17:43:15] [main/INFO]: Found mod file FarmersDelight-1.20.1-1.2.4.jar of type MOD with provider {mods folder locator at C:\Users\Matt\curseforge\minecraft\Instances\Cave Horror Project - CHP1\mods} [17:43:15] [main/INFO]: Found mod file farmersrespite-1.20.1-2.1.2.jar of type MOD with provider {mods folder locator at C:\Users\Matt\curseforge\minecraft\Instances\Cave Horror Project - CHP1\mods} [17:43:15] [main/INFO]: Found mod file ferritecore-6.0.1-forge.jar of type MOD with provider {mods folder locator at C:\Users\Matt\curseforge\minecraft\Instances\Cave Horror Project - CHP1\mods} [17:43:15] [main/INFO]: Found mod file findme-3.2.1-forge.jar of type MOD with provider {mods folder locator at C:\Users\Matt\curseforge\minecraft\Instances\Cave Horror Project - CHP1\mods} [17:43:15] [main/INFO]: Found mod file firstperson-forge-2.4.5-mc1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\Matt\curseforge\minecraft\Instances\Cave Horror Project - CHP1\mods} [17:43:15] [main/INFO]: Found mod file flib-1.20.1-0.0.14.jar of type MOD with provider {mods folder locator at C:\Users\Matt\curseforge\minecraft\Instances\Cave Horror Project - CHP1\mods} [17:43:15] [main/INFO]: Found mod file framework-forge-1.20.1-0.7.11.jar of type MOD with provider {mods folder locator at C:\Users\Matt\curseforge\minecraft\Instances\Cave Horror Project - CHP1\mods} [17:43:15] [main/INFO]: Found mod file From-The-Fog-1.20-v1.9.2-Forge-Fabric.jar of type MOD with provider {mods folder locator at C:\Users\Matt\curseforge\minecraft\Instances\Cave Horror Project - CHP1\mods} [17:43:15] [main/INFO]: Found mod file fusion-1.1.1-forge-mc1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\Matt\curseforge\minecraft\Instances\Cave Horror Project - CHP1\mods} [17:43:15] [main/INFO]: Found mod file geckolib-forge-1.20.1-4.4.9.jar of type MOD with provider {mods folder locator at C:\Users\Matt\curseforge\minecraft\Instances\Cave Horror Project - CHP1\mods} [17:43:15] [main/INFO]: Found mod file GeckoLibOculusCompat-Forge-1.0.1.jar of type MOD with provider {mods folder locator at C:\Users\Matt\curseforge\minecraft\Instances\Cave Horror Project - CHP1\mods} [17:43:15] [main/INFO]: Found mod file GeophilicReforged-v1.2.0.jar of type MOD with provider {mods folder locator at C:\Users\Matt\curseforge\minecraft\Instances\Cave Horror Project - CHP1\mods} [17:43:15] [main/INFO]: Found mod file gk_unbreakable-2.7.jar of type MOD with provider {mods folder locator at C:\Users\Matt\curseforge\minecraft\Instances\Cave Horror Project - CHP1\mods} [17:43:15] [main/INFO]: Found mod file gml-4.0.9-all.jar of type LANGPROVIDER with provider {mods folder locator at C:\Users\Matt\curseforge\minecraft\Instances\Cave Horror Project - CHP1\mods} [17:43:15] [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\Matt\curseforge\minecraft\Instances\Cave Horror Project - CHP1\mods} [17:43:15] [main/INFO]: Found mod file guccivuitton-1.20.1-0.2.1.jar of type MOD with provider {mods folder locator at C:\Users\Matt\curseforge\minecraft\Instances\Cave Horror Project - CHP1\mods} [17:43:15] [main/INFO]: Found mod file gundurability-1.4.2.jar of type MOD with provider {mods folder locator at C:\Users\Matt\curseforge\minecraft\Instances\Cave Horror Project - CHP1\mods} [17:43:15] [main/INFO]: Found mod file hardcorerevival-forge-1.20.1-12.0.6.jar of type MOD with provider {mods folder locator at C:\Users\Matt\curseforge\minecraft\Instances\Cave Horror Project - CHP1\mods} [17:43:15] [main/INFO]: Found mod file Highlighter-1.20.1-forge-1.1.9.jar of type MOD with provider {mods folder locator at C:\Users\Matt\curseforge\minecraft\Instances\Cave Horror Project - CHP1\mods} [17:43:15] [main/INFO]: Found mod file horror_element_mod-1.6.0-forge-1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\Matt\curseforge\minecraft\Instances\Cave Horror Project - CHP1\mods} [17:43:15] [main/INFO]: Found mod file HungerStrike-1.20.1-8.0.0.jar of type MOD with provider {mods folder locator at C:\Users\Matt\curseforge\minecraft\Instances\Cave Horror Project - CHP1\mods} [17:43:15] [main/INFO]: Found mod file Iceberg-1.20.1-forge-1.1.25.jar of type MOD with provider {mods folder locator at C:\Users\Matt\curseforge\minecraft\Instances\Cave Horror Project - CHP1\mods} [17:43:15] [main/INFO]: Found mod file ImmediatelyFast-Forge-1.3.1+1.20.4.jar of type MOD with provider {mods folder locator at C:\Users\Matt\curseforge\minecraft\Instances\Cave Horror Project - CHP1\mods} [17:43:15] [main/INFO]: Found mod file immersive_aircraft-1.1.2+1.20.1-forge.jar of type MOD with provider {mods folder locator at C:\Users\Matt\curseforge\minecraft\Instances\Cave Horror Project - CHP1\mods} [17:43:15] [main/INFO]: Found mod file immersive_armors-1.6.1+1.20.1-forge.jar of type MOD with provider {mods folder locator at C:\Users\Matt\curseforge\minecraft\Instances\Cave Horror Project - CHP1\mods} [17:43:15] [main/INFO]: Found mod file immersivemessages-forge-1.0.14-1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\Matt\curseforge\minecraft\Instances\Cave Horror Project - CHP1\mods} [17:43:15] [main/INFO]: Found mod file ImmersiveUI-FORGE-0.2.2.jar of type MOD with provider {mods folder locator at C:\Users\Matt\curseforge\minecraft\Instances\Cave Horror Project - CHP1\mods} [17:43:15] [main/INFO]: Found mod file impactful-20.8.3.jar of type MOD with provider {mods folder locator at C:\Users\Matt\curseforge\minecraft\Instances\Cave Horror Project - CHP1\mods} [17:43:15] [main/INFO]: Found mod file incontrol-1.20-9.2.8.jar of type MOD with provider {mods folder locator at C:\Users\Matt\curseforge\minecraft\Instances\Cave Horror Project - CHP1\mods} [17:43:15] [main/INFO]: Found mod file InsaneLib-1.15.0-mc1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\Matt\curseforge\minecraft\Instances\Cave Horror Project - CHP1\mods} [17:43:15] [main/INFO]: Found mod file inventorysorter-1.20.1-23.0.1.jar of type MOD with provider {mods folder locator at C:\Users\Matt\curseforge\minecraft\Instances\Cave Horror Project - CHP1\mods} [17:43:15] [main/INFO]: Found mod file InvMove-1.20-0.8.4-Forge.jar of type MOD with provider {mods folder locator at C:\Users\Matt\curseforge\minecraft\Instances\Cave Horror Project - CHP1\mods} [17:43:15] [main/INFO]: Found mod file ironchest-1.20.1-14.4.4.jar of type MOD with provider {mods folder locator at C:\Users\Matt\curseforge\minecraft\Instances\Cave Horror Project - CHP1\mods} [17:43:15] [main/INFO]: Found mod file ironfurnaces-1.20.1-4.1.6.jar of type MOD with provider {mods folder locator at C:\Users\Matt\curseforge\minecraft\Instances\Cave Horror Project - CHP1\mods} [17:43:15] [main/INFO]: Found mod file item-filters-forge-2001.1.0-build.59.jar of type MOD with provider {mods folder locator at C:\Users\Matt\curseforge\minecraft\Instances\Cave Horror Project - CHP1\mods} [17:43:15] [main/INFO]: Found mod file Jade-1.20.1-forge-11.11.1.jar of type MOD with provider {mods folder locator at C:\Users\Matt\curseforge\minecraft\Instances\Cave Horror Project - CHP1\mods} [17:43:15] [main/INFO]: Found mod file jei-1.20.1-forge-15.12.2.51.jar of type MOD with provider {mods folder locator at C:\Users\Matt\curseforge\minecraft\Instances\Cave Horror Project - CHP1\mods} [17:43:15] [main/INFO]: Found mod file jei-1.20.1-forge-15.20.0.105.jar of type MOD with provider {mods folder locator at C:\Users\Matt\curseforge\minecraft\Instances\Cave Horror Project - CHP1\mods} [17:43:15] [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\Matt\curseforge\minecraft\Instances\Cave Horror Project - CHP1\mods} [17:43:15] [main/INFO]: Found mod file konkrete_forge_1.8.0_MC_1.20-1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\Matt\curseforge\minecraft\Instances\Cave Horror Project - CHP1\mods} [17:43:15] [main/INFO]: Found mod file kotlinforforge-4.11.0-all.jar of type LIBRARY with provider {mods folder locator at C:\Users\Matt\curseforge\minecraft\Instances\Cave Horror Project - CHP1\mods} [17:43:15] [main/INFO]: Found mod file L_Enders_Cataclysm-2.16 - 1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\Matt\curseforge\minecraft\Instances\Cave Horror Project - CHP1\mods} [17:43:15] [main/INFO]: Found mod file LeonsSpookyMusic+M1.20.1+ForM.1.0.1.jar of type MOD with provider {mods folder locator at C:\Users\Matt\curseforge\minecraft\Instances\Cave Horror Project - CHP1\mods} [17:43:15] [main/INFO]: Found mod file Lexiconfig-forge-1.3.11.jar of type MOD with provider {mods folder locator at C:\Users\Matt\curseforge\minecraft\Instances\Cave Horror Project - CHP1\mods} [17:43:15] [main/INFO]: Found mod file lhmiracleroad-forge-1.20.1-1.7.2.jar of type MOD with provider {mods folder locator at C:\Users\Matt\curseforge\minecraft\Instances\Cave Horror Project - CHP1\mods} [17:43:15] [main/INFO]: Found mod file lionfishapi-1.9.jar of type MOD with provider {mods folder locator at C:\Users\Matt\curseforge\minecraft\Instances\Cave Horror Project - CHP1\mods} [17:43:15] [main/INFO]: Found mod file lootbeams-1.20.1-1.2.6.jar of type MOD with provider {mods folder locator at C:\Users\Matt\curseforge\minecraft\Instances\Cave Horror Project - CHP1\mods} [17:43:15] [main/INFO]: Found mod file ls_djl-1.0.0.jar of type MOD with provider {mods folder locator at C:\Users\Matt\curseforge\minecraft\Instances\Cave Horror Project - CHP1\mods} [17:43:15] [main/INFO]: Found mod file ls_spooky_paintings-2.1.1-forge-1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\Matt\curseforge\minecraft\Instances\Cave Horror Project - CHP1\mods} [17:43:15] [main/INFO]: Found mod file Lunar-forge-1.20.1-0.2.0.jar of type MOD with provider {mods folder locator at C:\Users\Matt\curseforge\minecraft\Instances\Cave Horror Project - CHP1\mods} [17:43:15] [main/INFO]: Found mod file majrusz-library-forge-1.20.1-7.0.8.jar of type MOD with provider {mods folder locator at C:\Users\Matt\curseforge\minecraft\Instances\Cave Horror Project - CHP1\mods} [17:43:15] [main/INFO]: Found mod file mcjtylib-1.20-8.0.6.jar of type MOD with provider {mods folder locator at C:\Users\Matt\curseforge\minecraft\Instances\Cave Horror Project - CHP1\mods} [17:43:15] [main/INFO]: Found mod file mcw-doors-1.1.1forge-mc1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\Matt\curseforge\minecraft\Instances\Cave Horror Project - CHP1\mods} [17:43:15] [main/INFO]: Found mod file mcw-fences-1.1.2-mc1.20.1forge.jar of type MOD with provider {mods folder locator at C:\Users\Matt\curseforge\minecraft\Instances\Cave Horror Project - CHP1\mods} [17:43:15] [main/INFO]: Found mod file mcw-trapdoors-1.1.3-mc1.20.1forge.jar of type MOD with provider {mods folder locator at C:\Users\Matt\curseforge\minecraft\Instances\Cave Horror Project - CHP1\mods} [17:43:15] [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\Matt\curseforge\minecraft\Instances\Cave Horror Project - CHP1\mods} [17:43:15] [main/INFO]: Found mod file Mekanism-1.20.1-10.4.9.61.jar of type MOD with provider {mods folder locator at C:\Users\Matt\curseforge\minecraft\Instances\Cave Horror Project - CHP1\mods} [17:43:15] [main/INFO]: Found mod file MekanismAdditions-1.20.1-10.4.9.61.jar of type MOD with provider {mods folder locator at C:\Users\Matt\curseforge\minecraft\Instances\Cave Horror Project - CHP1\mods} [17:43:15] [main/INFO]: Found mod file MekanismGenerators-1.20.1-10.4.9.61.jar of type MOD with provider {mods folder locator at C:\Users\Matt\curseforge\minecraft\Instances\Cave Horror Project - CHP1\mods} [17:43:15] [main/INFO]: Found mod file MekanismTools-1.20.1-10.4.9.61.jar of type MOD with provider {mods folder locator at C:\Users\Matt\curseforge\minecraft\Instances\Cave Horror Project - CHP1\mods} [17:43:15] [main/INFO]: Found mod file MekanismWeapons-1.20.1-1.5.jar of type MOD with provider {mods folder locator at C:\Users\Matt\curseforge\minecraft\Instances\Cave Horror Project - CHP1\mods} [17:43:15] [main/INFO]: Found mod file melody_forge_1.0.3_MC_1.20.1-1.20.4.jar of type MOD with provider {mods folder locator at C:\Users\Matt\curseforge\minecraft\Instances\Cave Horror Project - CHP1\mods} [17:43:15] [main/INFO]: Found mod file modernfix-forge-5.19.4+mc1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\Matt\curseforge\minecraft\Instances\Cave Horror Project - CHP1\mods} [17:43:15] [main/INFO]: Found mod file monolib-forge-1.20.1-1.4.1.jar of type MOD with provider {mods folder locator at C:\Users\Matt\curseforge\minecraft\Instances\Cave Horror Project - CHP1\mods} [17:43:15] [main/INFO]: Found mod file moonlight-1.20-2.13.21-forge.jar of type MOD with provider {mods folder locator at C:\Users\Matt\curseforge\minecraft\Instances\Cave Horror Project - CHP1\mods} [17:43:15] [main/INFO]: Found mod file MouseTweaks-forge-mc1.20.1-2.25.1.jar of type MOD with provider {mods folder locator at C:\Users\Matt\curseforge\minecraft\Instances\Cave Horror Project - CHP1\mods} [17:43:15] [main/INFO]: Found mod file MutantMonsters-v8.0.7-1.20.1-Forge.jar of type MOD with provider {mods folder locator at C:\Users\Matt\curseforge\minecraft\Instances\Cave Horror Project - CHP1\mods} [17:43:15] [main/INFO]: Found mod file NaturesCompass-1.20.1-1.11.2-forge.jar of type MOD with provider {mods folder locator at C:\Users\Matt\curseforge\minecraft\Instances\Cave Horror Project - CHP1\mods} [17:43:15] [main/INFO]: Found mod file netherportalfix-forge-1.20-13.0.1.jar of type MOD with provider {mods folder locator at C:\Users\Matt\curseforge\minecraft\Instances\Cave Horror Project - CHP1\mods} [17:43:15] [main/INFO]: Found mod file nyfsspiders-forge-1.20.1-2.1.1.jar of type MOD with provider {mods folder locator at C:\Users\Matt\curseforge\minecraft\Instances\Cave Horror Project - CHP1\mods} [17:43:15] [main/INFO]: Found mod file Obscure-Tooltips-2.2.jar of type MOD with provider {mods folder locator at C:\Users\Matt\curseforge\minecraft\Instances\Cave Horror Project - CHP1\mods} [17:43:15] [main/INFO]: Found mod file obscure_api-15.jar of type MOD with provider {mods folder locator at C:\Users\Matt\curseforge\minecraft\Instances\Cave Horror Project - CHP1\mods} [17:43:15] [main/INFO]: Found mod file OctoLib-FORGE-0.4.2+1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\Matt\curseforge\minecraft\Instances\Cave Horror Project - CHP1\mods} [17:43:15] [main/INFO]: Found mod file oculus-mc1.20.1-1.7.0.jar of type MOD with provider {mods folder locator at C:\Users\Matt\curseforge\minecraft\Instances\Cave Horror Project - CHP1\mods} [17:43:15] [main/INFO]: Found mod file Paraglider-forge-20.1.3.jar of type MOD with provider {mods folder locator at C:\Users\Matt\curseforge\minecraft\Instances\Cave Horror Project - CHP1\mods} [17:43:15] [main/INFO]: Found mod file Patchouli-1.20.1-84-FORGE.jar of type MOD with provider {mods folder locator at C:\Users\Matt\curseforge\minecraft\Instances\Cave Horror Project - CHP1\mods} [17:43:15] [main/INFO]: Found mod file Ping-Wheel-1.10.0-forge-1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\Matt\curseforge\minecraft\Instances\Cave Horror Project - CHP1\mods} [17:43:15] [main/INFO]: Found mod file Placebo-1.20.1-8.6.2.jar of type MOD with provider {mods folder locator at C:\Users\Matt\curseforge\minecraft\Instances\Cave Horror Project - CHP1\mods} [17:43:15] [main/INFO]: Found mod file player-animation-lib-forge-1.0.2-rc1+1.20.jar of type MOD with provider {mods folder locator at C:\Users\Matt\curseforge\minecraft\Instances\Cave Horror Project - CHP1\mods} [17:43:15] [main/INFO]: Found mod file polymorph-forge-0.49.5+1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\Matt\curseforge\minecraft\Instances\Cave Horror Project - CHP1\mods} [17:43:15] [main/INFO]: Found mod file PresenceFootsteps-1.20.1-1.9.1-beta.1.jar of type MOD with provider {mods folder locator at C:\Users\Matt\curseforge\minecraft\Instances\Cave Horror Project - CHP1\mods} [17:43:15] [main/INFO]: Found mod file PuzzlesLib-v8.1.24-1.20.1-Forge.jar of type MOD with provider {mods folder locator at C:\Users\Matt\curseforge\minecraft\Instances\Cave Horror Project - CHP1\mods} [17:43:15] [main/INFO]: Found mod file radiantgear-forge-2.1.5+1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\Matt\curseforge\minecraft\Instances\Cave Horror Project - CHP1\mods} [17:43:15] [main/INFO]: Found mod file radium-mc1.20.1-0.12.4+git.26c9d8e.jar of type MOD with provider {mods folder locator at C:\Users\Matt\curseforge\minecraft\Instances\Cave Horror Project - CHP1\mods} [17:43:15] [main/INFO]: Found mod file refurbished_furniture-forge-1.20.1-1.0.6.jar of type MOD with provider {mods folder locator at C:\Users\Matt\curseforge\minecraft\Instances\Cave Horror Project - CHP1\mods} [17:43:15] [main/INFO]: Found mod file relics-1.20.1-0.8.0.7.jar of type MOD with provider {mods folder locator at C:\Users\Matt\curseforge\minecraft\Instances\Cave Horror Project - CHP1\mods} [17:43:15] [main/INFO]: Found mod file repurposed_structures-7.1.15+1.20.1-forge.jar of type MOD with provider {mods folder locator at C:\Users\Matt\curseforge\minecraft\Instances\Cave Horror Project - CHP1\mods} [17:43:15] [main/INFO]: Found mod file rubidium-mc1.20.1-0.7.1a.jar of type MOD with provider {mods folder locator at C:\Users\Matt\curseforge\minecraft\Instances\Cave Horror Project - CHP1\mods} [17:43:15] [main/INFO]: Found mod file scarecrowsterritory-1.1.11e-forge-mc1.20.jar of type MOD with provider {mods folder locator at C:\Users\Matt\curseforge\minecraft\Instances\Cave Horror Project - CHP1\mods} [17:43:15] [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\Matt\curseforge\minecraft\Instances\Cave Horror Project - CHP1\mods} [17:43:15] [main/INFO]: Found mod file ShoulderSurfing-Forge-1.20.1-4.6.0.jar of type MOD with provider {mods folder locator at C:\Users\Matt\curseforge\minecraft\Instances\Cave Horror Project - CHP1\mods} [17:43:15] [main/INFO]: Found mod file SimpleRadio-forge-1.20.1-2.4.6.1.jar of type MOD with provider {mods folder locator at C:\Users\Matt\curseforge\minecraft\Instances\Cave Horror Project - CHP1\mods} [17:43:15] [main/INFO]: Found mod file sodiumdynamiclights-forge-1.0.9-1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\Matt\curseforge\minecraft\Instances\Cave Horror Project - CHP1\mods} [17:43:15] [main/INFO]: Found mod file sodiumoptionsapi-forge-1.0.5-1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\Matt\curseforge\minecraft\Instances\Cave Horror Project - CHP1\mods} [17:43:15] [main/INFO]: Found mod file sons-of-sins-1.20.1-2.1.6.jar of type MOD with provider {mods folder locator at C:\Users\Matt\curseforge\minecraft\Instances\Cave Horror Project - CHP1\mods} [17:43:15] [main/INFO]: Found mod file sophisticatedbackpacks-1.20.1-3.20.11.1121.jar of type MOD with provider {mods folder locator at C:\Users\Matt\curseforge\minecraft\Instances\Cave Horror Project - CHP1\mods} [17:43:15] [main/INFO]: Found mod file sophisticatedcore-1.20.1-0.6.35.733.jar of type MOD with provider {mods folder locator at C:\Users\Matt\curseforge\minecraft\Instances\Cave Horror Project - CHP1\mods} [17:43:15] [main/INFO]: Found mod file sound-physics-remastered-forge-1.20.1-1.4.5.jar of type MOD with provider {mods folder locator at C:\Users\Matt\curseforge\minecraft\Instances\Cave Horror Project - CHP1\mods} [17:43:15] [main/INFO]: Found mod file spark-1.10.53-forge.jar of type MOD with provider {mods folder locator at C:\Users\Matt\curseforge\minecraft\Instances\Cave Horror Project - CHP1\mods} [17:43:15] [main/INFO]: Found mod file StorageDrawers-1.20.1-12.9.10.jar of type MOD with provider {mods folder locator at C:\Users\Matt\curseforge\minecraft\Instances\Cave Horror Project - CHP1\mods} [17:43:15] [main/INFO]: Found mod file structure_gel-1.20.1-2.16.2.jar of type MOD with provider {mods folder locator at C:\Users\Matt\curseforge\minecraft\Instances\Cave Horror Project - CHP1\mods} [17:43:15] [main/INFO]: Found mod file supermartijn642configlib-1.1.8-forge-mc1.20.jar of type MOD with provider {mods folder locator at C:\Users\Matt\curseforge\minecraft\Instances\Cave Horror Project - CHP1\mods} [17:43:15] [main/INFO]: Found mod file supermartijn642corelib-1.1.17a-forge-mc1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\Matt\curseforge\minecraft\Instances\Cave Horror Project - CHP1\mods} [17:43:15] [main/INFO]: Found mod file tacz-1.20.1-1.0.3-all.jar of type MOD with provider {mods folder locator at C:\Users\Matt\curseforge\minecraft\Instances\Cave Horror Project - CHP1\mods} [17:43:15] [main/INFO]: Found mod file tacz_npc-2.1-forge-1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\Matt\curseforge\minecraft\Instances\Cave Horror Project - CHP1\mods} [17:43:15] [main/INFO]: Found mod file TerraBlender-forge-1.20.1-3.0.1.7.jar of type MOD with provider {mods folder locator at C:\Users\Matt\curseforge\minecraft\Instances\Cave Horror Project - CHP1\mods} [17:43:15] [main/INFO]: Found mod file The-Man-From-The-Fog-1.3.1a-1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\Matt\curseforge\minecraft\Instances\Cave Horror Project - CHP1\mods} [17:43:15] [main/INFO]: Found mod file The_Graveyard_3.1_(FORGE)_for_1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\Matt\curseforge\minecraft\Instances\Cave Horror Project - CHP1\mods} [17:43:15] [main/INFO]: Found mod file the_knocker-1.4.0-forge-1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\Matt\curseforge\minecraft\Instances\Cave Horror Project - CHP1\mods} [17:43:15] [main/INFO]: Found mod file THEUNDEADREVAMPED_1.4c_1.20.1(Bug Fixes).jar of type MOD with provider {mods folder locator at C:\Users\Matt\curseforge\minecraft\Instances\Cave Horror Project - CHP1\mods} [17:43:15] [main/INFO]: Found mod file ToastControl-1.20.1-8.0.3.jar of type MOD with provider {mods folder locator at C:\Users\Matt\curseforge\minecraft\Instances\Cave Horror Project - CHP1\mods} [17:43:15] [main/INFO]: Found mod file torchmaster-20.1.9.jar of type MOD with provider {mods folder locator at C:\Users\Matt\curseforge\minecraft\Instances\Cave Horror Project - CHP1\mods} [17:43:15] [main/INFO]: Found mod file totw_additions-1.3.1-1.20.x-forge.jar of type MOD with provider {mods folder locator at C:\Users\Matt\curseforge\minecraft\Instances\Cave Horror Project - CHP1\mods} [17:43:15] [main/INFO]: Found mod file totw_modded-forge-1.20.1-1.0.5.jar of type MOD with provider {mods folder locator at C:\Users\Matt\curseforge\minecraft\Instances\Cave Horror Project - CHP1\mods} [17:43:15] [main/INFO]: Found mod file Towns-and-Towers-1.12-Fabric+Forge.jar of type MOD with provider {mods folder locator at C:\Users\Matt\curseforge\minecraft\Instances\Cave Horror Project - CHP1\mods} [17:43:15] [main/INFO]: Found mod file trashcans-1.0.18b-forge-mc1.20.jar of type MOD with provider {mods folder locator at C:\Users\Matt\curseforge\minecraft\Instances\Cave Horror Project - CHP1\mods} [17:43:15] [main/INFO]: Found mod file trashslot-forge-1.20-15.1.0.jar of type MOD with provider {mods folder locator at C:\Users\Matt\curseforge\minecraft\Instances\Cave Horror Project - CHP1\mods} [17:43:15] [main/INFO]: Found mod file travelersbackpack-forge-1.20.1-9.1.16.jar of type MOD with provider {mods folder locator at C:\Users\Matt\curseforge\minecraft\Instances\Cave Horror Project - CHP1\mods} [17:43:15] [main/INFO]: Found mod file TravelersTitles-1.20-Forge-4.0.2.jar of type MOD with provider {mods folder locator at C:\Users\Matt\curseforge\minecraft\Instances\Cave Horror Project - CHP1\mods} [17:43:15] [main/INFO]: Found mod file treeharvester-1.20.1-9.1.jar of type MOD with provider {mods folder locator at C:\Users\Matt\curseforge\minecraft\Instances\Cave Horror Project - CHP1\mods} [17:43:15] [main/INFO]: Found mod file txnilib-forge-1.0.19-1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\Matt\curseforge\minecraft\Instances\Cave Horror Project - CHP1\mods} [17:43:15] [main/INFO]: Found mod file UniLib-1.0.3+1.20.1-forge.jar of type MOD with provider {mods folder locator at C:\Users\Matt\curseforge\minecraft\Instances\Cave Horror Project - CHP1\mods} [17:43:15] [main/INFO]: Found mod file valhelsia_core-forge-1.20.1-1.1.2.jar of type MOD with provider {mods folder locator at C:\Users\Matt\curseforge\minecraft\Instances\Cave Horror Project - CHP1\mods} [17:43:15] [main/INFO]: Found mod file vanilla-refresh-1.4.19h.jar of type MOD with provider {mods folder locator at C:\Users\Matt\curseforge\minecraft\Instances\Cave Horror Project - CHP1\mods} [17:43:15] [main/INFO]: Found mod file voicechat-forge-1.20.1-2.5.25.jar of type MOD with provider {mods folder locator at C:\Users\Matt\curseforge\minecraft\Instances\Cave Horror Project - CHP1\mods} [17:43:15] [main/INFO]: Found mod file vtaw_mw-forge-1.20.1-1.0.4.jar of type MOD with provider {mods folder locator at C:\Users\Matt\curseforge\minecraft\Instances\Cave Horror Project - CHP1\mods} [17:43:15] [main/INFO]: Found mod file wardrobe-1.0.3.1-forge-1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\Matt\curseforge\minecraft\Instances\Cave Horror Project - CHP1\mods} [17:43:15] [main/INFO]: Found mod file watut-forge-1.20.1-1.1.3.jar of type MOD with provider {mods folder locator at C:\Users\Matt\curseforge\minecraft\Instances\Cave Horror Project - CHP1\mods} [17:43:15] [main/INFO]: Found mod file waystones-forge-1.20-14.1.6.jar of type MOD with provider {mods folder locator at C:\Users\Matt\curseforge\minecraft\Instances\Cave Horror Project - CHP1\mods} [17:43:15] [main/INFO]: Found mod file WeaponsOfMiracles-20.1.8.5.5.jar of type MOD with provider {mods folder locator at C:\Users\Matt\curseforge\minecraft\Instances\Cave Horror Project - CHP1\mods} [17:43:15] [main/INFO]: Found mod file WhisperingSpirits-forge-1.20.1-v1.4.0.jar of type MOD with provider {mods folder locator at C:\Users\Matt\curseforge\minecraft\Instances\Cave Horror Project - CHP1\mods} [17:43:15] [main/INFO]: Found mod file WI-Zoom-1.5-MC1.20.1-Forge.jar of type MOD with provider {mods folder locator at C:\Users\Matt\curseforge\minecraft\Instances\Cave Horror Project - CHP1\mods} [17:43:15] [main/INFO]: Found mod file YetAnotherConfigLib-3.6.1+1.20.1-forge.jar of type MOD with provider {mods folder locator at C:\Users\Matt\curseforge\minecraft\Instances\Cave Horror Project - CHP1\mods} [17:43:15] [main/INFO]: Found mod file YouDied-1.20-3.0.0.17-forge.jar of type MOD with provider {mods folder locator at C:\Users\Matt\curseforge\minecraft\Instances\Cave Horror Project - CHP1\mods} [17:43:15] [main/INFO]: Found mod file YungsApi-1.20-Forge-4.0.6.jar of type MOD with provider {mods folder locator at C:\Users\Matt\curseforge\minecraft\Instances\Cave Horror Project - CHP1\mods} [17:43:15] [main/INFO]: Found mod file YungsBetterDesertTemples-1.20-Forge-3.0.3.jar of type MOD with provider {mods folder locator at C:\Users\Matt\curseforge\minecraft\Instances\Cave Horror Project - CHP1\mods} [17:43:15] [main/INFO]: Found mod file YungsBetterDungeons-1.20-Forge-4.0.4.jar of type MOD with provider {mods folder locator at C:\Users\Matt\curseforge\minecraft\Instances\Cave Horror Project - CHP1\mods} [17:43:15] [main/INFO]: Found mod file YungsBetterEndIsland-1.20-Forge-2.0.6.jar of type MOD with provider {mods folder locator at C:\Users\Matt\curseforge\minecraft\Instances\Cave Horror Project - CHP1\mods} [17:43:15] [main/INFO]: Found mod file YungsBetterJungleTemples-1.20-Forge-2.0.5.jar of type MOD with provider {mods folder locator at C:\Users\Matt\curseforge\minecraft\Instances\Cave Horror Project - CHP1\mods} [17:43:15] [main/INFO]: Found mod file YungsBetterMineshafts-1.20-Forge-4.0.4.jar of type MOD with provider {mods folder locator at C:\Users\Matt\curseforge\minecraft\Instances\Cave Horror Project - CHP1\mods} [17:43:15] [main/INFO]: Found mod file YungsBetterNetherFortresses-1.20-Forge-2.0.6.jar of type MOD with provider {mods folder locator at C:\Users\Matt\curseforge\minecraft\Instances\Cave Horror Project - CHP1\mods} [17:43:15] [main/INFO]: Found mod file YungsBetterOceanMonuments-1.20-Forge-3.0.4.jar of type MOD with provider {mods folder locator at C:\Users\Matt\curseforge\minecraft\Instances\Cave Horror Project - CHP1\mods} [17:43:15] [main/INFO]: Found mod file YungsBetterStrongholds-1.20-Forge-4.0.3.jar of type MOD with provider {mods folder locator at C:\Users\Matt\curseforge\minecraft\Instances\Cave Horror Project - CHP1\mods} [17:43:15] [main/INFO]: Found mod file YungsBetterWitchHuts-1.20-Forge-3.0.3.jar of type MOD with provider {mods folder locator at C:\Users\Matt\curseforge\minecraft\Instances\Cave Horror Project - CHP1\mods} [17:43:15] [main/INFO]: Found mod file YungsBridges-1.20-Forge-4.0.3.jar of type MOD with provider {mods folder locator at C:\Users\Matt\curseforge\minecraft\Instances\Cave Horror Project - CHP1\mods} [17:43:15] [main/INFO]: Found mod file YungsCaveBiomes-1.20.1-Forge-2.0.1.jar of type MOD with provider {mods folder locator at C:\Users\Matt\curseforge\minecraft\Instances\Cave Horror Project - CHP1\mods} [17:43:15] [main/INFO]: Found mod file YungsExtras-1.20-Forge-4.0.3.jar of type MOD with provider {mods folder locator at C:\Users\Matt\curseforge\minecraft\Instances\Cave Horror Project - CHP1\mods} [17:43:15] [main/INFO]: Found mod file YungsMenuTweaks-1.20.1-Forge-1.0.2.jar of type MOD with provider {mods folder locator at C:\Users\Matt\curseforge\minecraft\Instances\Cave Horror Project - CHP1\mods} [17:43:15] [main/WARN]: Mod file C:\Users\Matt\curseforge\minecraft\Install\libraries\net\minecraftforge\fmlcore\1.20.1-47.3.11\fmlcore-1.20.1-47.3.11.jar is missing mods.toml file [17:43:15] [main/WARN]: Mod file C:\Users\Matt\curseforge\minecraft\Install\libraries\net\minecraftforge\javafmllanguage\1.20.1-47.3.11\javafmllanguage-1.20.1-47.3.11.jar is missing mods.toml file [17:43:15] [main/WARN]: Mod file C:\Users\Matt\curseforge\minecraft\Install\libraries\net\minecraftforge\lowcodelanguage\1.20.1-47.3.11\lowcodelanguage-1.20.1-47.3.11.jar is missing mods.toml file [17:43:15] [main/WARN]: Mod file C:\Users\Matt\curseforge\minecraft\Install\libraries\net\minecraftforge\mclanguage\1.20.1-47.3.11\mclanguage-1.20.1-47.3.11.jar is missing mods.toml file [17:43:15] [main/INFO]: Found mod file fmlcore-1.20.1-47.3.11.jar of type LIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.MinecraftLocator@73010765 [17:43:15] [main/INFO]: Found mod file javafmllanguage-1.20.1-47.3.11.jar of type LANGPROVIDER with provider net.minecraftforge.fml.loading.moddiscovery.MinecraftLocator@73010765 [17:43:15] [main/INFO]: Found mod file lowcodelanguage-1.20.1-47.3.11.jar of type LANGPROVIDER with provider net.minecraftforge.fml.loading.moddiscovery.MinecraftLocator@73010765 [17:43:15] [main/INFO]: Found mod file mclanguage-1.20.1-47.3.11.jar of type LANGPROVIDER with provider net.minecraftforge.fml.loading.moddiscovery.MinecraftLocator@73010765 [17:43:15] [main/INFO]: Found mod file client-1.20.1-20230612.114412-srg.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.MinecraftLocator@73010765 [17:43:15] [main/INFO]: Found mod file forge-1.20.1-47.3.11-universal.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.MinecraftLocator@73010765 [17:43:15] [main/ERROR]: Found duplicate mods:     Mod ID: 'rubidium' from mod files: rubidium-mc1.20.1-0.7.1a.jar, embeddium-0.3.31+mc1.20.1.jar [17:43:15] [main/ERROR]: Failed to build unique mod list after mod discovery. net.minecraftforge.fml.loading.EarlyLoadingException: Duplicate mods found     at net.minecraftforge.fml.loading.UniqueModListBuilder.buildUniqueList(UniqueModListBuilder.java:87) ~[fmlloader-1.20.1-47.3.11.jar:1.0]     at net.minecraftforge.fml.loading.moddiscovery.ModDiscoverer.discoverMods(ModDiscoverer.java:106) ~[fmlloader-1.20.1-47.3.11.jar:?]     at net.minecraftforge.fml.loading.FMLLoader.beginModScan(FMLLoader.java:164) ~[fmlloader-1.20.1-47.3.11.jar:1.0]     at net.minecraftforge.fml.loading.FMLServiceProvider.beginScanning(FMLServiceProvider.java:86) ~[fmlloader-1.20.1-47.3.11.jar:1.0]     at cpw.mods.modlauncher.TransformationServiceDecorator.runScan(TransformationServiceDecorator.java:112) ~[modlauncher-10.0.9.jar:?]     at cpw.mods.modlauncher.TransformationServicesHandler.lambda$runScanningTransformationServices$8(TransformationServicesHandler.java:100) ~[modlauncher-10.0.9.jar:?]     at java.util.stream.ReferencePipeline$3$1.accept(Unknown Source) ~[?:?]     at java.util.HashMap$ValueSpliterator.forEachRemaining(Unknown Source) ~[?:?]     at java.util.stream.AbstractPipeline.copyInto(Unknown Source) ~[?:?]     at java.util.stream.AbstractPipeline.wrapAndCopyInto(Unknown Source) ~[?:?]     at java.util.stream.AbstractPipeline.evaluate(Unknown Source) ~[?:?]     at java.util.stream.AbstractPipeline.evaluateToArrayNode(Unknown Source) ~[?:?]     at java.util.stream.ReferencePipeline.toArray(Unknown Source) ~[?:?]     at java.util.stream.ReferencePipeline.toArray(Unknown Source) ~[?:?]     at java.util.stream.ReferencePipeline.toList(Unknown Source) ~[?:?]     at cpw.mods.modlauncher.TransformationServicesHandler.runScanningTransformationServices(TransformationServicesHandler.java:102) ~[modlauncher-10.0.9.jar:?]     at cpw.mods.modlauncher.TransformationServicesHandler.initializeTransformationServices(TransformationServicesHandler.java:55) ~[modlauncher-10.0.9.jar:?]     at cpw.mods.modlauncher.Launcher.run(Launcher.java:88) ~[modlauncher-10.0.9.jar:?]     at cpw.mods.modlauncher.Launcher.main(Launcher.java:78) ~[modlauncher-10.0.9.jar:?]     at cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:26) ~[modlauncher-10.0.9.jar:?]     at cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:23) ~[modlauncher-10.0.9.jar:?]     at cpw.mods.bootstraplauncher.BootstrapLauncher.main(BootstrapLauncher.java:141) ~[bootstraplauncher-1.1.2.jar:?] [17:43:15] [main/ERROR]: Mod Discovery failed. Skipping dependency discovery. [17:43:15] [main/INFO]: Found Kotlin-containing mod Jar[union:/C:/Users/Matt/curseforge/minecraft/Instances/Cave%20Horror%20Project%20-%20CHP1/essential/libraries/forge_1.20.1/kotlin-for-forge-4.3.0-slim.jar%23393!/], checking whether we need to upgrade it.. [17:43:15] [main/INFO]: Found outdated Kotlin core libs 0.0.0 (we ship 1.9.23) [17:43:15] [main/INFO]: Found outdated Kotlin Coroutines libs 0.0.0 (we ship 1.8.0) [17:43:15] [main/INFO]: Found outdated Kotlin Serialization libs 0.0.0 (we ship 1.6.3) [17:43:15] [main/INFO]: Generating jar with updated Kotlin at C:\Users\Matt\AppData\Local\Temp\kff-updated-kotlin-1753545753304001276-4.3.0-slim.jar [17:43:16] [main/ERROR]: Missing language javafml version [33,) wanted by Essential (forge_1.20.1).jar     Unable to generate a crash report as the game doesn't even fully boot :(
  • Topics

×
×
  • Create New...

Important Information

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