Jump to content

[SOLVED][1.8] Light bugs with models (face-dependent brightness and black faces)


Recommended Posts

Posted

Hello there !

 

I'm trying to create some "slope" block (45° slope) which work exactly like stairs... I'm a beginner so it was hard but I arrived to this result (using BakedQuads in a ISmartBlockModel) :

(Do not look at the bedrock texture, it's temporary)

 

a847a0995a638b31bf1c1bdf4b741067.png

 

 

 

In first view, it looks good, But in fact it's not really good :

- [solved] The first point/bug is that the brightness of the faces is always 100% (it should be 80% on north/south faces, 60% on east/west faces and 50% on the bottom) :

 

 

 

- [Not Solved] The second point/bug is that there is false lighting on itself and also on other blocks :

 

 

 

 

I don't understand because my block is extending "BlockStairs" so it has the exact same properties, and I also tryed to change every possible parameters in the model.

 

A "solution" to the second point is to set the "lightOpacity" to 0, but it's not really what I want and the vanilla stairs doesn't need it !

 

To go further I tryed to create an exact copy of the vanilla stairs using the same model json file here : https://github.com/Zyfarok/Stairs-Test

and I don't understand why but the result is different than the vanilla stairs (the second point/bug isn't fixed, but the first seems to be gone) :

 

 

 

 

So please help me to find were is the problem !

How do I create my slope model to have a correct rendering ? (without using lightOpacity or TileEntitySpecialRender)

What did I do wrong ?

Or maybe it's a Minecraft or Forge bug ? (Edit : I think the second point can't be a Minecraft bug, because it does not appear on vanilla blocks. It does only appear on Forge registered blocks)

 

You can find the code of the slope (using ISmartBlockModel) and the code of the stairs (using the vanilla existing json model file) here : https://github.com/Zyfarok/Stairs-Test

 

If you want more images :

 

 

First point/bug :

more1.png

 

 

Second point/bug :

more2.1.png

more2.2.png

 

Test with Opacity = 7 :

lightOpacity.png

 

 

 

Thank for your help, and sorry for my bad English, I'm just a simple French student.

 

P.S.: All my screenshots are done in "brightness : Moody" (Minimum but default brightness settings)

Zyfarok,

Founder of the OligoCube server Project.

(A french MMORPG/Conquest modded Minecraft server project with quite only custom mods created for the server)

More info on the OligoCube Project : http://oligocube.fr/

Posted

Hi

 

The direction-dependent lighting is based on face quads and the "shade" flag.  In the JSON it is called shade, in the FaceBakery  this is one of the flags, or alternatively in your BakedQuad it is one of the ints - see ModelBakery.makeBakedQuad -->  FaceBakery.storeVertexData

          "faces": {

                "down":  { "uv": [ 0, 0, 16, 16 ], "texture": "#bottom", "cullface": "down" },

                "up":    { "uv": [ 0, 0, 16, 16 ], "texture": "#top" },

vs the torch

            "shade": false,

            "faces": {

                "down": { "uv": [ 7, 13, 9, 15 ], "texture": "#torch" },

                "up":  { "uv": [ 7,  6, 9,  8 ], "texture": "#torch" }

            }

 

I think your second problem is related to your Block class definition, not the json, because the lighting is wrong for the adjacent block, not your block itself.  When I've seen these symptoms before it's generally been caused by  incorrect isOpaqueCube(), incorrect isFullCube() or incorrect block bounds

 

Just curious - why are you using ISmartBlockModel?  You can get the same sloped block using ordinary json?

 

-TGG

Posted

Hi,

 

- For the First bug that you call "direction-dependent lighting", I use this to create my bakedQuad :

 

new BakedQuad(Ints.concat(vertexToInts(x1, y1, z1, color, texture, u1, v1),
                    vertexToInts(x2, y2, z2, color, texture, u2, v2),
                    vertexToInts(x3, y3, z3, color, texture, u3, v3),
                    vertexToInts(x4, y4, z4, color, texture, u4, v4)),
                    tintIndex, facing);

private int[] vertexToInts(float x, float y, float z, int color, TextureAtlasSprite texture, float u, float v)
    {
        return new int[] {
                Float.floatToRawIntBits(x),
                Float.floatToRawIntBits(y),
                Float.floatToRawIntBits(z),
                color,
                Float.floatToRawIntBits(texture.getInterpolatedU(u)),
                Float.floatToRawIntBits(texture.getInterpolatedV(v)),
                0
        };
    }

 

So I suppose that I need to change the "color" value to black and change the "tintIndex" for each different faces ? (Creating the shade manually)

EDIT : Ho maybe I should bring a fix tintIndex and generate the color as the FaceBakery.getFaceShadeColor(facing) does...

 

- For the second bug :

See the "StairsTestBlock" definition :

 

public class BlockStairsTest extends BlockStairs {
    private static final String NAME_START = "test";

    public BlockStairsTest(Block block) {
        this(block.getDefaultState(), blockName(block));
    }

    public BlockStairsTest(IBlockState modelState, String name) {
        super(modelState);
        setUnlocalizedName(name);
        this.setCreativeTab(CreativeTabs.tabBlock);
    }

    private static String blockName(Block block) {
        String blockName = block.getUnlocalizedName().substring(5);
        if (blockName.length() > 1)
            return NAME_START + blockName.substring(0,1).toUpperCase() + blockName.substring(1);
        else
            return NAME_START + blockName.toUpperCase();
    }
}

 

I didn't change any isOpaqueCube(), isFullCube() definitions ! And nether the block bounds...

 

Last thing, Why did I choose ISmartBlockModel ? Because :

- I wanted to create a generic block that I can register with different textures without creating tons of json files. And I was thinking that using ISmartBlockModel would help (but now I'm not sure)

- I don't know how to create triangles with the current json files. There is probably a way but I don't know how...

- I'm a noob

Zyfarok,

Founder of the OligoCube server Project.

(A french MMORPG/Conquest modded Minecraft server project with quite only custom mods created for the server)

More info on the OligoCube Project : http://oligocube.fr/

Posted

Hi

 

yeah the tint index may also work I think.

 

But even better to just not use ISmartBlockModel.  Stick with the ordinary JSON method, it is much easier and also lets people modify your block textures much more easily!

 

Some information about JSON files and how you can make sloped quads

http://greyminecraftcoder.blogspot.com.au/2014/12/block-models-18.html

 

A triangle is just a quad with two adjacent corners on top of each other.

For example here

http://greyminecraftcoder.blogspot.co.at/2014/12/the-tessellator-and-worldrenderer-18.html

 

But perhaps even easier to use a program which can generate them for you (I think BDcraft Cubik can do this - never tried it with triangles I admit)

 

Curious that extending BlockStairs didn't work.  That should have been fine.

 

-TGG

 

Posted

Thx for your help for the JSON, I think I will go back to this format.

 

For the triangles

A triangle is just a quad with two adjacent corners on top of each other.

Yes but how to do triangles in a json file ? I've seen a resource-pack json model using vertex but this resource-pack doesn't work anymore on 1.8 (it does before)

 

Curious that extending BlockStairs didn't work.  That should have been fine.

Yes and that's the real problem now !

 

EDIT :

If no-one find out from where the bug comes, it's maybe a Forge bug... So I tried to report the issue : https://github.com/MinecraftForge/MinecraftForge/issues/2019

And my problem for the triangles in json is still there ! (I will create a new post for that if the lighting bug is solved)

 

Zyfarok,

Founder of the OligoCube server Project.

(A french MMORPG/Conquest modded Minecraft server project with quite only custom mods created for the server)

More info on the OligoCube Project : http://oligocube.fr/

Posted

Thx for your help for the JSON, I think I will go back to this format.

 

For the triangles

A triangle is just a quad with two adjacent corners on top of each other.

Yes but how to do triangles in a json file ? I've seen a resource-pack json model using vertex but this resource-pack doesn't work anymore on 1.8 (it does before)

Ah yeah, brain fade sorry.  I think you could also do this using the Blitz3D (B3DLoader) model loader for blocks that is now built into forge.  I don't reckon the vanilla model json can handle triangles (sloped quads yes, three-sided degenerate quads no).

 

Curious that extending BlockStairs didn't work.  That should have been fine.

Yes and that's the real problem now !

 

EDIT :

If no-one find out from where the bug comes, it's maybe a Forge bug... So I tried to report the issue : https://github.com/MinecraftForge/MinecraftForge/issues/2019

And my problem for the triangles in json is still there ! (I will create a new post for that if the lighting bug is solved)

Does the problem go away if you derive from a different type of block instead of BlockStairs? 

Do the dark sections stay there permanently or do they eventually pop to the correct value (a lighting update issue) after time, or if you place another block nearby?

You might also be able to narrow it down to an ambient occlusion / fancy lighting issue (a couple of those screenshots look like an ambient occlusion problem). 

I think this will be hard to track down; you would probably need to put a couple of breakpoints in the rendering code and see why the adjacent blocks are getting dud values for lighting calcs from your block.

 

-TGG

 

 

 

Posted
I think you could also do this using the Blitz3D (B3DLoader) model loader for blocks that is now built into forge.

Okay... I will check this out... But If it's too complex it's maybe better to keep using some IBakedModel (Maybe an IModel wich return some IFlexibleBakedModel would be better than my ISmartBlockModel ?)

Does the problem go away if you derive from a different type of block instead of BlockStairs?

I will try with slabs... I will edit this when done.

Do the dark sections stay there permanently or do they eventually pop to the correct value (a lighting update issue) after time, or if you place another block nearby?

No it's permanent. When there is a block in front of the face, there is automatically the dark lighting.

You might also be able to narrow it down to an ambient occlusion / fancy lighting issue (a couple of those screenshots look like an ambient occlusion problem).

Yes I think that's an ambient occlusion / fancy lighting issue, but that's only for the registered block and this point is really weird...

I think this will be hard to track down; you would probably need to put a couple of breakpoints in the rendering code and see why the adjacent blocks are getting dud values for lighting calcs from your block.

If I need to I will try to track down... =/

 

Zyfarok,

Founder of the OligoCube server Project.

(A french MMORPG/Conquest modded Minecraft server project with quite only custom mods created for the server)

More info on the OligoCube Project : http://oligocube.fr/

Posted

Problem solved !

 

In the Block.registerBlocks() method, I found this :

 

Iterator iterator = blockRegistry.iterator();
Block block13;
while (iterator.hasNext())
{
    block13 = (Block)iterator.next();
    if (block13.blockMaterial == Material.air)
    {
        block13.useNeighborBrightness = false;
    }
    else
    {
        boolean flag = false;
        boolean flag1 = block13 instanceof BlockStairs;
        boolean flag2 = block13 instanceof BlockSlab;
        boolean flag3 = block13 == block6;
        boolean flag4 = block13.translucent;
        boolean flag5 = block13.lightOpacity == 0;
        if (flag1 || flag2 || flag3 || flag4 || flag5)
        {
            flag = true;
        }
        block13.useNeighborBrightness = flag;
    }
}

 

 

My brain directly pop out that "useNeighborBrightness" should be true for my block, but this thing here is not applied to my block because my block is registered after the vanilla registration.

So I tried to do "useNeighborBrightness = true" in my block class (by chance, useNeighborBrightness is a protected field), and IT WORKS !

Look at this beautiful blocks <3 :

width=800 height=449https://raw.githubusercontent.com/Zyfarok/Stairs-Test/master/bug_solved.png[/img]

I pushed "Stairs-Test" to allow you to see the simple "this.useNeighborBrightness = true;"

 

That's cool that there is a solution, but I think this is a bug and I will explain this in my issue to allow them to correct this. (if they also consider this as a bug)

Thanks for your help TGG, and also thanks for your "MinecraftByExample" tutorials =)

Zyfarok,

Founder of the OligoCube server Project.

(A french MMORPG/Conquest modded Minecraft server project with quite only custom mods created for the server)

More info on the OligoCube Project : http://oligocube.fr/

Posted

Awesome dude, nice work

 

>        boolean flag1 = block13 instanceof BlockStairs;

>        boolean flag2 = block13 instanceof BlockSlab;

 

I should have guessed, freakin' Mojang and their dirty little quick fixes.

 

I think this is a good candidate for a Forge patch.

 

In your case, you could override getUseNeighbourBrightness() without having to access the protected field.

 

It's funny though, a couple of your symptoms don't seem to match that root cause, guess there's something more subtle going on that I'm not seeing.

 

-TGG

Posted
I think this is a good candidate for a Forge patch.

It's not what LexManos is thinking >< https://github.com/MinecraftForge/MinecraftForge/issues/2019

In your case, you could override getUseNeighbourBrightness() without having to access the protected field.

Ha yes... I could also.

It's funny though, a couple of your symptoms don't seem to match that root cause, guess there's something more subtle going on that I'm not seeing.

Which symptoms ? It's seems really logical to me :

- Only appends on "forge registered" blocks => problem in registration...

- Black faces in the block itself -> The block face take the lighting of the block that this face is facing (Ex: north block for a north facing block), but if this face is obstructed, this takes the light of the block itself (0 in this case). But if you set "useNeighborBrightness = true" it takes the bigest light value from the six adjacent blocks.

- Black faces on others -> again, the block face take the lighting of the block that this face is facing. Here 0, but if you set "useNeighborBrightness = true", it's not 0 anymore.

 

P.S.: No matter, Now I'm having some fun with my block :

 

7fc418d22f87e5b9fe9b2c1712721593.png

 

Zyfarok,

Founder of the OligoCube server Project.

(A french MMORPG/Conquest modded Minecraft server project with quite only custom mods created for the server)

More info on the OligoCube Project : http://oligocube.fr/

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

    • Mods ទាំងអស់សុទ្ធតែបង្កើតមកចំណូលចិត្តរបស់មនុស្សម្នាក់ៗ ខ្ញុំគិតថា mod ទាំងឡាយណាក៏កើតឡើងទៅដោយស្នាដៃអ្នកនិពន្ធ ខ្ញុំចង់យកប្រសាទអង្គរវត្តព្រីនយកមកធ្វើ mods ក្នុងហ្គេមវាពិតជាអស់ចា។។      All mods are created by each person's preferences. I think all mods are created by the author's work. I want to use the Angkor Wat print to make mods in the game. It's really cool. 
    • I am trying to update my server from 1.21.3 to 1.21.4 and when i do it seems to be working just fine but my friend using optifine or the base minecraft launcher cannot connect or connect for a flash then get disconected. I tried making another server and transferring the world afterward but the bug persist. Using a the new version and the world generated with it work but we want the new version !!!! Hope someone can help me and my friends!! 😁 The game message is the same every time "connection lost    Network protocol error" here is the report :  https://paste.ee/d/C3GGZ
    • [00:30:11] [main/INFO]: ModLauncher running: args [--username, LordR4ven, --version, forge-47.3.0, --gameDir, C:\Users\********\curseforge\minecraft\Instances\Wither Storm Survival, --assetsDir, C:\Users\********\curseforge\minecraft\Install\assets, --assetIndex, 5, --uuid, f414c39fed4b4e78be32e0641fe9ed99, --accessToken, ????????, --clientId, ZTdjMDQ0YmQtMWVlYS00ZjEzLWI4NWItYzAzZGFhMGQ4ODk4, --xuid, 2535411754380662, --userType, msa, --versionType, release, --width, 1024, --height, 768, --quickPlayPath, C:\Users\********\curseforge\minecraft\Install\quickPlay\java\1736055008831.json, --launchTarget, forgeclient, --fml.forgeVersion, 47.3.0, --fml.mcVersion, 1.20.1, --fml.forgeGroup, net.minecraftforge, --fml.mcpVersion, 20230612.114412] [00:30:11] [main/INFO]: ModLauncher 10.0.9+10.0.9+main.dcd20f30 starting: java version 17.0.8 by Microsoft; OS Windows 11 arch amd64 version 10.0 [00:30:13] [main/INFO]: Loading ImmediateWindowProvider fmlearlywindow [00:30:13] [main/INFO]: Trying GL version 4.6 [00:30:13] [main/INFO]: Requested GL version 4.6 got version 4.6 [00:30:13] [main/INFO]: Mixin Transmogrifier is definitely up to no good... [00:30:13] [main/INFO]: crimes against java were committed [00:30:13] [main/INFO]: Original mixin transformation service successfully crobbed by mixin-transmogrifier! [00:30:13] [main/INFO]: SpongePowered MIXIN Subsystem Version=0.8.5 Source=union:/C:/Users/********/curseforge/minecraft/Instances/Wither%20Storm%20Survival/mods/Connector-1.0.0-beta.46+1.20.1.jar%23385%23388!/ Service=ModLauncher Env=CLIENT [00:30:13] [pool-2-thread-1/INFO]: GL info: NVIDIA GeForce RTX 3050 6GB Laptop GPU/PCIe/SSE2 GL version 4.6.0 NVIDIA 566.36, NVIDIA Corporation [00:30:14] [main/INFO]: Found mod file Connector-1.0.0-beta.46+1.20.1-mod.jar of type MOD with provider org.sinytra.connector.locator.ConnectorEarlyLocator@6f3f0fae [00:30:14] [main/INFO]: Found mod file 2.0.0-BFT_mod-1.19-1.20.4.jar of type MOD with provider {mods folder locator at C:\Users\********\curseforge\minecraft\Instances\Wither Storm Survival\mods} [00:30:14] [main/INFO]: Found mod file [1.20.1]MoreCraftingTables-5.1.3.jar of type MOD with provider {mods folder locator at C:\Users\********\curseforge\minecraft\Instances\Wither Storm Survival\mods} [00:30:14] [main/INFO]: Found mod file aeroblender-1.20.1-1.0.1-neoforge.jar of type MOD with provider {mods folder locator at C:\Users\********\curseforge\minecraft\Instances\Wither Storm Survival\mods} [00:30:14] [main/INFO]: Found mod file aether-1.20.1-1.5.1-neoforge.jar of type MOD with provider {mods folder locator at C:\Users\********\curseforge\minecraft\Instances\Wither Storm Survival\mods} [00:30:14] [main/INFO]: Found mod file aether-redux-2.0.18-1.20.1-neoforge.jar of type MOD with provider {mods folder locator at C:\Users\********\curseforge\minecraft\Instances\Wither Storm Survival\mods} [00:30:14] [main/INFO]: Found mod file aileron-1.20.1-forge-1.0.3.jar of type MOD with provider {mods folder locator at C:\Users\********\curseforge\minecraft\Instances\Wither Storm Survival\mods} [00:30:14] [main/INFO]: Found mod file alexscaves-2.0.2.jar of type MOD with provider {mods folder locator at C:\Users\********\curseforge\minecraft\Instances\Wither Storm Survival\mods} [00:30:14] [main/INFO]: Found mod file All-The-Wood-Weve-Got-Forge-1.1.0.jar of type MOD with provider {mods folder locator at C:\Users\********\curseforge\minecraft\Instances\Wither Storm Survival\mods} [00:30:14] [main/INFO]: Found mod file allarrowsinfinityfix-1.5-forge-mc1.20.jar of type MOD with provider {mods folder locator at C:\Users\********\curseforge\minecraft\Instances\Wither Storm Survival\mods} [00:30:14] [main/INFO]: Found mod file alltheores-1.20.1-47.1.3-2.2.4.jar of type MOD with provider {mods folder locator at C:\Users\********\curseforge\minecraft\Instances\Wither Storm Survival\mods} [00:30:14] [main/INFO]: Found mod file allthetrims-3.4.3-forge+1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\********\curseforge\minecraft\Instances\Wither Storm Survival\mods} [00:30:14] [main/INFO]: Found mod file AmbientSounds_FORGE_v6.1.4_mc1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\********\curseforge\minecraft\Instances\Wither Storm Survival\mods} [00:30:14] [main/INFO]: Found mod file amendments-1.20-1.2.14.jar of type MOD with provider {mods folder locator at C:\Users\********\curseforge\minecraft\Instances\Wither Storm Survival\mods} [00:30:14] [main/INFO]: Found mod file architectury-9.2.14-forge.jar of type MOD with provider {mods folder locator at C:\Users\********\curseforge\minecraft\Instances\Wither Storm Survival\mods} [00:30:14] [main/INFO]: Found mod file ArmorPoser-forge-1.20.1-2.2.2.jar of type MOD with provider {mods folder locator at C:\Users\********\curseforge\minecraft\Instances\Wither Storm Survival\mods} [00:30:14] [main/INFO]: Found mod file ArmorTrimItemFix-forge-1.20.1-1.2.0.jar of type MOD with provider {mods folder locator at C:\Users\********\curseforge\minecraft\Instances\Wither Storm Survival\mods} [00:30:14] [main/INFO]: Found mod file awesomedungeonocean-forge-1.20.1-3.3.0.jar of type MOD with provider {mods folder locator at C:\Users\********\curseforge\minecraft\Instances\Wither Storm Survival\mods} [00:30:14] [main/INFO]: Found mod file balm-forge-1.20.1-7.3.10-all.jar of type MOD with provider {mods folder locator at C:\Users\********\curseforge\minecraft\Instances\Wither Storm Survival\mods} [00:30:14] [main/INFO]: Found mod file BetterAdvancements-Forge-1.20.1-0.4.2.25.jar of type MOD with provider {mods folder locator at C:\Users\********\curseforge\minecraft\Instances\Wither Storm Survival\mods} [00:30:14] [main/INFO]: Found mod file betterbeaconplacement-1.20.1-3.4.jar of type MOD with provider {mods folder locator at C:\Users\********\curseforge\minecraft\Instances\Wither Storm Survival\mods} [00:30:14] [main/INFO]: Found mod file bettercombat-forge-1.8.6+1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\********\curseforge\minecraft\Instances\Wither Storm Survival\mods} [00:30:14] [main/INFO]: Found mod file betterdeepdark-2024.07.09-1.20.1-forge.jar of type MOD with provider {mods folder locator at C:\Users\********\curseforge\minecraft\Instances\Wither Storm Survival\mods} [00:30:14] [main/INFO]: Found mod file BetterPingDisplay-1.20.1-1.1.jar of type MOD with provider {mods folder locator at C:\Users\********\curseforge\minecraft\Instances\Wither Storm Survival\mods} [00:30:14] [main/INFO]: Found mod file BetterThirdPerson-Forge-1.20-1.9.0.jar of type MOD with provider {mods folder locator at C:\Users\********\curseforge\minecraft\Instances\Wither Storm Survival\mods} [00:30:14] [main/INFO]: Found mod file bettervillage-forge-1.20.1-3.2.0.jar of type MOD with provider {mods folder locator at C:\Users\********\curseforge\minecraft\Instances\Wither Storm Survival\mods} [00:30:14] [main/INFO]: Found mod file beyond_mines_falling-1.2.0.jar of type MOD with provider {mods folder locator at C:\Users\********\curseforge\minecraft\Instances\Wither Storm Survival\mods} [00:30:14] [main/INFO]: Found mod file BiomesOPlenty-forge-1.20.1-19.0.0.94.jar of type MOD with provider {mods folder locator at C:\Users\********\curseforge\minecraft\Instances\Wither Storm Survival\mods} [00:30:14] [main/INFO]: Found mod file blazegear-1.4.1.jar of type MOD with provider {mods folder locator at C:\Users\********\curseforge\minecraft\Instances\Wither Storm Survival\mods} [00:30:14] [main/INFO]: Found mod file blox-lightbringer_1.20.1-4.6.3-SC.jar of type MOD with provider {mods folder locator at C:\Users\********\curseforge\minecraft\Instances\Wither Storm Survival\mods} [00:30:14] [main/INFO]: Found mod file blueprint-1.20.1-7.1.0.jar of type MOD with provider {mods folder locator at C:\Users\********\curseforge\minecraft\Instances\Wither Storm Survival\mods} [00:30:14] [main/INFO]: Found mod file BOMD-Forge-1.20.1-1.1.1.jar of type MOD with provider {mods folder locator at C:\Users\********\curseforge\minecraft\Instances\Wither Storm Survival\mods} [00:30:14] [main/INFO]: Found mod file BridgingMod-2.5.1+1.20.1.forge-release.jar of type MOD with provider {mods folder locator at C:\Users\********\curseforge\minecraft\Instances\Wither Storm Survival\mods} [00:30:14] [main/INFO]: Found mod file bulletsboats-0.0.7-1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\********\curseforge\minecraft\Instances\Wither Storm Survival\mods} [00:30:14] [main/INFO]: Found mod file bygonenether-1.3.2-1.20.x.jar of type MOD with provider {mods folder locator at C:\Users\********\curseforge\minecraft\Instances\Wither Storm Survival\mods} [00:30:14] [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\********\curseforge\minecraft\Instances\Wither Storm Survival\mods} [00:30:14] [main/INFO]: Found mod file callablehorses-1.20.1-1.3.0.1.jar of type MOD with provider {mods folder locator at C:\Users\********\curseforge\minecraft\Instances\Wither Storm Survival\mods} [00:30:14] [main/INFO]: Found mod file carryon-forge-1.20.1-2.1.2.7.jar of type MOD with provider {mods folder locator at C:\Users\********\curseforge\minecraft\Instances\Wither Storm Survival\mods} [00:30:14] [main/INFO]: Found mod file catloaf-1.1.3-1.20.x-FORGE.jar of type MOD with provider {mods folder locator at C:\Users\********\curseforge\minecraft\Instances\Wither Storm Survival\mods} [00:30:14] [main/INFO]: Found mod file CerbonsApi-Forge-1.20.1-1.0.0.jar of type MOD with provider {mods folder locator at C:\Users\********\curseforge\minecraft\Instances\Wither Storm Survival\mods} [00:30:14] [main/INFO]: Found mod file CHA-S-1.20-forge.jar of type MOD with provider {mods folder locator at C:\Users\********\curseforge\minecraft\Instances\Wither Storm Survival\mods} [00:30:14] [main/INFO]: Found mod file cherishedworlds-forge-6.1.7+1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\********\curseforge\minecraft\Instances\Wither Storm Survival\mods} [00:30:14] [main/INFO]: Found mod file chunkloaders-1.2.8a-forge-mc1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\********\curseforge\minecraft\Instances\Wither Storm Survival\mods} [00:30:14] [main/INFO]: Found mod file citadel-2.6.1-1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\********\curseforge\minecraft\Instances\Wither Storm Survival\mods} [00:30:14] [main/INFO]: Found mod file citresewn-1.20.1-5.jar of type MOD with provider {mods folder locator at C:\Users\********\curseforge\minecraft\Instances\Wither Storm Survival\mods} [00:30:14] [main/INFO]: Found mod file cloth-config-11.1.136-forge.jar of type MOD with provider {mods folder locator at C:\Users\********\curseforge\minecraft\Instances\Wither Storm Survival\mods} [00:30:14] [main/INFO]: Found mod file collective-1.20.1-7.87.jar of type MOD with provider {mods folder locator at C:\Users\********\curseforge\minecraft\Instances\Wither Storm Survival\mods} [00:30:14] [main/INFO]: Found mod file CommandToolExpansion2.1.jar of type MOD with provider {mods folder locator at C:\Users\********\curseforge\minecraft\Instances\Wither Storm Survival\mods} [00:30:14] [main/INFO]: Found mod file Connectible Chains-forge-1.20.1-1.0.0.jar of type MOD with provider {mods folder locator at C:\Users\********\curseforge\minecraft\Instances\Wither Storm Survival\mods} [00:30:14] [main/INFO]: Found mod file continuity-3.0.0+1.20.1.forge.jar of type MOD with provider {mods folder locator at C:\Users\********\curseforge\minecraft\Instances\Wither Storm Survival\mods} [00:30:14] [main/INFO]: Found mod file coolarmor-1.1.2-1.20.1-forge.jar of type MOD with provider {mods folder locator at C:\Users\********\curseforge\minecraft\Instances\Wither Storm Survival\mods} [00:30:14] [main/INFO]: Found mod file Corgilib-Forge-1.20.1-4.0.3.3.jar of type MOD with provider {mods folder locator at C:\Users\********\curseforge\minecraft\Instances\Wither Storm Survival\mods} [00:30:14] [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\********\curseforge\minecraft\Instances\Wither Storm Survival\mods} [00:30:14] [main/INFO]: Found mod file cosmeticarmorreworked-1.20.1-v1a.jar of type MOD with provider {mods folder locator at C:\Users\********\curseforge\minecraft\Instances\Wither Storm Survival\mods} [00:30:14] [main/INFO]: Found mod file Craftable_Elytra[REMASTERED][2.2]1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\********\curseforge\minecraft\Instances\Wither Storm Survival\mods} [00:30:14] [main/INFO]: Found mod file CraftableChainmail-1.20.1-3.2.1-[FORGE].jar of type MOD with provider {mods folder locator at C:\Users\********\curseforge\minecraft\Instances\Wither Storm Survival\mods} [00:30:14] [main/INFO]: Found mod file CreativeCore_FORGE_v2.12.28_mc1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\********\curseforge\minecraft\Instances\Wither Storm Survival\mods} [00:30:14] [main/INFO]: Found mod file cupboard-1.20.1-2.7.jar of type MOD with provider {mods folder locator at C:\Users\********\curseforge\minecraft\Instances\Wither Storm Survival\mods} [00:30:14] [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\********\curseforge\minecraft\Instances\Wither Storm Survival\mods} [00:30:14] [main/INFO]: Found mod file curious_armor_stands-1.20-5.1.0.jar of type MOD with provider {mods folder locator at C:\Users\********\curseforge\minecraft\Instances\Wither Storm Survival\mods} [00:30:14] [main/INFO]: Found mod file customfpsdisplay-2.0.0.jar of type MOD with provider {mods folder locator at C:\Users\********\curseforge\minecraft\Instances\Wither Storm Survival\mods} [00:30:14] [main/INFO]: Found mod file deathquotes-forge-1.20.1-3.3.jar of type MOD with provider {mods folder locator at C:\Users\********\curseforge\minecraft\Instances\Wither Storm Survival\mods} [00:30:14] [main/INFO]: Found mod file Deep Dark Regrowth **.**.**.** - 1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\********\curseforge\minecraft\Instances\Wither Storm Survival\mods} [00:30:14] [main/INFO]: Found mod file deep_aether-1.20.1-1.0.4.jar of type MOD with provider {mods folder locator at C:\Users\********\curseforge\minecraft\Instances\Wither Storm Survival\mods} [00:30:14] [main/INFO]: Found mod file DistantHorizons-2.2.1-a-1.20.1-forge-fabric.jar of type MOD with provider {mods folder locator at C:\Users\********\curseforge\minecraft\Instances\Wither Storm Survival\mods} [00:30:14] [main/INFO]: Found mod file DistantWorlds-Reborn-1.20.1-v1.1.0-Beta.jar of type MOD with provider {mods folder locator at C:\Users\********\curseforge\minecraft\Instances\Wither Storm Survival\mods} [00:30:14] [main/INFO]: Found mod file do_a_barrel_roll-forge-3.5.6+1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\********\curseforge\minecraft\Instances\Wither Storm Survival\mods} [00:30:14] [main/INFO]: Found mod file DoggyTalentsNext-1.20.1-1.18.39.jar of type MOD with provider {mods folder locator at C:\Users\********\curseforge\minecraft\Instances\Wither Storm Survival\mods} [00:30:14] [main/INFO]: Found mod file dragonitegear-0.3.2.jar of type MOD with provider {mods folder locator at C:\Users\********\curseforge\minecraft\Instances\Wither Storm Survival\mods} [00:30:14] [main/INFO]: Found mod file dropthemeat-1.6.jar of type MOD with provider {mods folder locator at C:\Users\********\curseforge\minecraft\Instances\Wither Storm Survival\mods} [00:30:14] [main/INFO]: Found mod file dummmmmmy-1.20-2.0.2.jar of type MOD with provider {mods folder locator at C:\Users\********\curseforge\minecraft\Instances\Wither Storm Survival\mods} [00:30:14] [main/INFO]: Found mod file Dungeon Crawl-1.20.1-2.3.15.jar of type MOD with provider {mods folder locator at C:\Users\********\curseforge\minecraft\Instances\Wither Storm Survival\mods} [00:30:14] [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\********\curseforge\minecraft\Instances\Wither Storm Survival\mods} [00:30:14] [main/INFO]: Found mod file dungeons-and-taverns-3.0.3.f[Forge].jar of type MOD with provider {mods folder locator at C:\Users\********\curseforge\minecraft\Instances\Wither Storm Survival\mods} [00:30:14] [main/INFO]: Found mod file DungeonsArise-1.20.x-2.1.58-release.jar of type MOD with provider {mods folder locator at C:\Users\********\curseforge\minecraft\Instances\Wither Storm Survival\mods} [00:30:14] [main/INFO]: Found mod file dynamiclights-1.20.1.2.jar of type MOD with provider {mods folder locator at C:\Users\********\curseforge\minecraft\Instances\Wither Storm Survival\mods} [00:30:14] [main/INFO]: Found mod file DynamicTrees-1.20.1-1.3.6.jar of type MOD with provider {mods folder locator at C:\Users\********\curseforge\minecraft\Instances\Wither Storm Survival\mods} [00:30:14] [main/INFO]: Found mod file DynamicTreesBOP-1.20.1-3.3.1.jar of type MOD with provider {mods folder locator at C:\Users\********\curseforge\minecraft\Instances\Wither Storm Survival\mods} [00:30:14] [main/INFO]: Found mod file DynamicTreesPlus-1.20.1-1.2.0-BETA3.jar of type MOD with provider {mods folder locator at C:\Users\********\curseforge\minecraft\Instances\Wither Storm Survival\mods} [00:30:14] [main/INFO]: Found mod file easel_does_it-1.20.1-1.0.5-all.jar of type MOD with provider {mods folder locator at C:\Users\********\curseforge\minecraft\Instances\Wither Storm Survival\mods} [00:30:14] [main/INFO]: Found mod file eatinganimation-1.20.1-5.1.0.jar of type MOD with provider {mods folder locator at C:\Users\********\curseforge\minecraft\Instances\Wither Storm Survival\mods} [00:30:14] [main/INFO]: Found mod file efct-1.0.1.jar of type MOD with provider {mods folder locator at C:\Users\********\curseforge\minecraft\Instances\Wither Storm Survival\mods} [00:30:14] [main/INFO]: Found mod file efxgliders-1.0.0.jar of type MOD with provider {mods folder locator at C:\Users\********\curseforge\minecraft\Instances\Wither Storm Survival\mods} [00:30:14] [main/INFO]: Found mod file efxparcool-1.0.0.jar of type MOD with provider {mods folder locator at C:\Users\********\curseforge\minecraft\Instances\Wither Storm Survival\mods} [00:30:14] [main/INFO]: Found mod file ElysiumAPI-1.20.1-1.0.2.jar of type MOD with provider {mods folder locator at C:\Users\********\curseforge\minecraft\Instances\Wither Storm Survival\mods} [00:30:14] [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\********\curseforge\minecraft\Instances\Wither Storm Survival\mods} [00:30:14] [main/INFO]: Found mod file emotecraft-for-MC1.20.1-2.2.7-b.build.50-forge.jar of type MOD with provider {mods folder locator at C:\Users\********\curseforge\minecraft\Instances\Wither Storm Survival\mods} [00:30:14] [main/INFO]: Found mod file EnchantIcon-Forge-1.20.1-1.1.1-13.jar of type MOD with provider {mods folder locator at C:\Users\********\curseforge\minecraft\Instances\Wither Storm Survival\mods} [00:30:14] [main/INFO]: Found mod file endercrop-1.20.1-1.7.0.jar of type MOD with provider {mods folder locator at C:\Users\********\curseforge\minecraft\Instances\Wither Storm Survival\mods} [00:30:14] [main/INFO]: Found mod file EndlessBiomes 1.6.0 - 1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\********\curseforge\minecraft\Instances\Wither Storm Survival\mods} [00:30:14] [main/INFO]: Found mod file endrem_forge-5.3.3-R-1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\********\curseforge\minecraft\Instances\Wither Storm Survival\mods} [00:30:14] [main/INFO]: Found mod file entity_model_features_forge_1.20.1-2.4.1.jar of type MOD with provider {mods folder locator at C:\Users\********\curseforge\minecraft\Instances\Wither Storm Survival\mods} [00:30:14] [main/INFO]: Found mod file entity_texture_features_forge_1.20.1-6.2.9.jar of type MOD with provider {mods folder locator at C:\Users\********\curseforge\minecraft\Instances\Wither Storm Survival\mods} [00:30:14] [main/INFO]: Found mod file epiccompat_parcool-forge-1.20.1-1.0.3.jar of type MOD with provider {mods folder locator at C:\Users\********\curseforge\minecraft\Instances\Wither Storm Survival\mods} [00:30:14] [main/INFO]: Found mod file epicfight-forge-20.9.6-1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\********\curseforge\minecraft\Instances\Wither Storm Survival\mods} [00:30:14] [main/INFO]: Found mod file explosiveenhancement-1.1.0-1.20.1-client-and-server.jar of type MOD with provider {mods folder locator at C:\Users\********\curseforge\minecraft\Instances\Wither Storm Survival\mods} [00:30:14] [main/INFO]: Found mod file fabric-api-0.92.2+1.11.9+1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\********\curseforge\minecraft\Instances\Wither Storm Survival\mods} [00:30:14] [main/INFO]: Found mod file Felsic Gear 1.0.0 - 1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\********\curseforge\minecraft\Instances\Wither Storm Survival\mods} [00:30:14] [main/INFO]: Found mod file fireproofboats-1.20.1-1.0.3.jar of type MOD with provider {mods folder locator at C:\Users\********\curseforge\minecraft\Instances\Wither Storm Survival\mods} [00:30:14] [main/INFO]: Found mod file FPS-Monitor-1.20-1.3.0.jar of type MOD with provider {mods folder locator at C:\Users\********\curseforge\minecraft\Instances\Wither Storm Survival\mods} [00:30:14] [main/INFO]: Found mod file gamediscs-0.3.1.jar of type MOD with provider {mods folder locator at C:\Users\********\curseforge\minecraft\Instances\Wither Storm Survival\mods} [00:30:14] [main/INFO]: Found mod file geckolib-forge-1.20.1-4.7.jar of type MOD with provider {mods folder locator at C:\Users\********\curseforge\minecraft\Instances\Wither Storm Survival\mods} [00:30:14] [main/INFO]: Found mod file Geophilic v3.1.5 f15-61.jar of type MOD with provider {mods folder locator at C:\Users\********\curseforge\minecraft\Instances\Wither Storm Survival\mods} [00:30:14] [main/INFO]: Found mod file giantspawn-1.20.1-5.2.jar of type MOD with provider {mods folder locator at C:\Users\********\curseforge\minecraft\Instances\Wither Storm Survival\mods} [00:30:14] [main/INFO]: Found mod file gliders-forge-1.1.6.jar of type MOD with provider {mods folder locator at C:\Users\********\curseforge\minecraft\Instances\Wither Storm Survival\mods} [00:30:14] [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\********\curseforge\minecraft\Instances\Wither Storm Survival\mods} [00:30:14] [main/INFO]: Found mod file gml-4.0.9-all.jar of type LANGPROVIDER with provider {mods folder locator at C:\Users\********\curseforge\minecraft\Instances\Wither Storm Survival\mods} [00:30:14] [main/INFO]: Found mod file GoldenCrops-1.20.1-1.1.jar of type MOD with provider {mods folder locator at C:\Users\********\curseforge\minecraft\Instances\Wither Storm Survival\mods} [00:30:14] [main/INFO]: Found mod file good_nights_sleep-1.20.1-1.3.1.jar of type MOD with provider {mods folder locator at C:\Users\********\curseforge\minecraft\Instances\Wither Storm Survival\mods} [00:30:14] [main/INFO]: Found mod file grabbymobs-1.20.1-1.6.jar of type MOD with provider {mods folder locator at C:\Users\********\curseforge\minecraft\Instances\Wither Storm Survival\mods} [00:30:14] [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\********\curseforge\minecraft\Instances\Wither Storm Survival\mods} [00:30:14] [main/INFO]: Found mod file Healing+Bed+1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\********\curseforge\minecraft\Instances\Wither Storm Survival\mods} [00:30:14] [main/INFO]: Found mod file healingcampfire-1.20.1-6.1.jar of type MOD with provider {mods folder locator at C:\Users\********\curseforge\minecraft\Instances\Wither Storm Survival\mods} [00:30:14] [main/INFO]: Found mod file HomingXpOrb-1.20.1-1.0.0.jar of type MOD with provider {mods folder locator at C:\Users\********\curseforge\minecraft\Instances\Wither Storm Survival\mods} [00:30:14] [main/INFO]: Found mod file HopoBetterRuinedPortals-[1.20-1.20.2]-1.3.7.jar of type MOD with provider {mods folder locator at C:\Users\********\curseforge\minecraft\Instances\Wither Storm Survival\mods} [00:30:14] [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\********\curseforge\minecraft\Instances\Wither Storm Survival\mods} [00:30:14] [main/INFO]: Found mod file incubation-1.20.1-4.0.2.jar of type MOD with provider {mods folder locator at C:\Users\********\curseforge\minecraft\Instances\Wither Storm Survival\mods} [00:30:14] [main/INFO]: Found mod file Infinite Abyss 1.20.1 version 1.8.5.jar of type MOD with provider {mods folder locator at C:\Users\********\curseforge\minecraft\Instances\Wither Storm Survival\mods} [00:30:14] [main/INFO]: Found mod file ItemsDisplayedForge-v1.3.5-1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\********\curseforge\minecraft\Instances\Wither Storm Survival\mods} [00:30:14] [main/INFO]: Found mod file Jade-1.20.1-Forge-11.12.2.jar of type MOD with provider {mods folder locator at C:\Users\********\curseforge\minecraft\Instances\Wither Storm Survival\mods} [00:30:14] [main/INFO]: Found mod file Jadens-Nether-Expansion-2.2.0.jar of type MOD with provider {mods folder locator at C:\Users\********\curseforge\minecraft\Instances\Wither Storm Survival\mods} [00:30:14] [main/INFO]: Found mod file jeed-1.20-2.2.2.jar of type MOD with provider {mods folder locator at C:\Users\********\curseforge\minecraft\Instances\Wither Storm Survival\mods} [00:30:14] [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\********\curseforge\minecraft\Instances\Wither Storm Survival\mods} [00:30:14] [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\********\curseforge\minecraft\Instances\Wither Storm Survival\mods} [00:30:14] [main/INFO]: Found mod file Just-Enough-Crowns-forge-1.20.1-1.9.0.jar of type MOD with provider {mods folder locator at C:\Users\********\curseforge\minecraft\Instances\Wither Storm Survival\mods} [00:30:14] [main/INFO]: Found mod file knightlib-forge-1.20.1-1.2.0.jar of type MOD with provider {mods folder locator at C:\Users\********\curseforge\minecraft\Instances\Wither Storm Survival\mods} [00:30:14] [main/INFO]: Found mod file knightquest-forge-1.20.1-1.8.2.jar of type MOD with provider {mods folder locator at C:\Users\********\curseforge\minecraft\Instances\Wither Storm Survival\mods} [00:30:14] [main/INFO]: Found mod file L_Enders_Cataclysm-2.31- 1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\********\curseforge\minecraft\Instances\Wither Storm Survival\mods} [00:30:14] [main/INFO]: Found mod file LegendaryTooltips-1.20.1-forge-1.4.5.jar of type MOD with provider {mods folder locator at C:\Users\********\curseforge\minecraft\Instances\Wither Storm Survival\mods} [00:30:14] [main/INFO]: Found mod file libraryferret-forge-1.20.1-4.0.0.jar of type MOD with provider {mods folder locator at C:\Users\********\curseforge\minecraft\Instances\Wither Storm Survival\mods} [00:30:14] [main/INFO]: Found mod file lionfishapi-2.4-Fix.jar of type MOD with provider {mods folder locator at C:\Users\********\curseforge\minecraft\Instances\Wither Storm Survival\mods} [00:30:14] [main/INFO]: Found mod file macawsbridgesbop-1.20-1.3.jar of type MOD with provider {mods folder locator at C:\Users\********\curseforge\minecraft\Instances\Wither Storm Survival\mods} [00:30:14] [main/INFO]: Found mod file macawsbridgesbyg-1.20.1-1.1.jar of type MOD with provider {mods folder locator at C:\Users\********\curseforge\minecraft\Instances\Wither Storm Survival\mods} [00:30:14] [main/INFO]: Found mod file magicaljewelry-1.20.1_1.6.0.jar of type MOD with provider {mods folder locator at C:\Users\********\curseforge\minecraft\Instances\Wither Storm Survival\mods} [00:30:14] [main/INFO]: Found mod file mcw-bridges-3.0.0-mc1.20.1forge.jar of type MOD with provider {mods folder locator at C:\Users\********\curseforge\minecraft\Instances\Wither Storm Survival\mods} [00:30:14] [main/INFO]: Found mod file miningmaster-1.20.1-4.1.3.jar of type MOD with provider {mods folder locator at C:\Users\********\curseforge\minecraft\Instances\Wither Storm Survival\mods} [00:30:14] [main/INFO]: Found mod file mns-1.0.3-1.20-forge.jar of type MOD with provider {mods folder locator at C:\Users\********\curseforge\minecraft\Instances\Wither Storm Survival\mods} [00:30:14] [main/INFO]: Found mod file mobbattlemusic-1.20.1-1.1.1.2-all.jar of type MOD with provider {mods folder locator at C:\Users\********\curseforge\minecraft\Instances\Wither Storm Survival\mods} [00:30:14] [main/INFO]: Found mod file mobhealthbar-forge-1.20.x-2.3.0.jar of type MOD with provider {mods folder locator at C:\Users\********\curseforge\minecraft\Instances\Wither Storm Survival\mods} [00:30:14] [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\********\curseforge\minecraft\Instances\Wither Storm Survival\mods} [00:30:14] [main/INFO]: Found mod file moonlight-1.20-2.13.45-forge.jar of type MOD with provider {mods folder locator at C:\Users\********\curseforge\minecraft\Instances\Wither Storm Survival\mods} [00:30:14] [main/INFO]: Found mod file More Totems of Undying-forge-1.20.1-2.16.0.jar of type MOD with provider {mods folder locator at C:\Users\********\curseforge\minecraft\Instances\Wither Storm Survival\mods} [00:30:14] [main/INFO]: Found mod file More Villager Trades 1.0.0 - 1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\********\curseforge\minecraft\Instances\Wither Storm Survival\mods} [00:30:14] [main/INFO]: Found mod file more_beautiful_torches-merged-1.20.1-3.0.0.jar of type MOD with provider {mods folder locator at C:\Users\********\curseforge\minecraft\Instances\Wither Storm Survival\mods} [00:30:14] [main/INFO]: Found mod file MoreChestVariants-1.5.6+1.20.2-Forge.jar of type MOD with provider {mods folder locator at C:\Users\********\curseforge\minecraft\Instances\Wither Storm Survival\mods} [00:30:14] [main/INFO]: Found mod file moremobvariants-forge+1.20.1-1.3.0.1.jar of type MOD with provider {mods folder locator at C:\Users\********\curseforge\minecraft\Instances\Wither Storm Survival\mods} [00:30:14] [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\********\curseforge\minecraft\Instances\Wither Storm Survival\mods} [00:30:14] [main/INFO]: Found mod file mowziesmobs-1.6.5.jar of type MOD with provider {mods folder locator at C:\Users\********\curseforge\minecraft\Instances\Wither Storm Survival\mods} [00:30:14] [main/INFO]: Found mod file mvs-4.1.4-1.20-forge.jar of type MOD with provider {mods folder locator at C:\Users\********\curseforge\minecraft\Instances\Wither Storm Survival\mods} [00:30:14] [main/INFO]: Found mod file Mvw-2.3.3c.jar of type MOD with provider {mods folder locator at C:\Users\********\curseforge\minecraft\Instances\Wither Storm Survival\mods} [00:30:14] [main/INFO]: Found mod file NekosEnchantedBooks-1.20.1-1.8.0.jar of type MOD with provider {mods folder locator at C:\Users\********\curseforge\minecraft\Instances\Wither Storm Survival\mods} [00:30:14] [main/INFO]: Found mod file Nether Ores Plus+ 1.0.0 - 1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\********\curseforge\minecraft\Instances\Wither Storm Survival\mods} [00:30:14] [main/INFO]: Found mod file nethervillagertrader-1.2.0-forge-1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\********\curseforge\minecraft\Instances\Wither Storm Survival\mods} [00:30:14] [main/INFO]: Found mod file notenoughanimations-forge-1.9.0-mc1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\********\curseforge\minecraft\Instances\Wither Storm Survival\mods} [00:30:14] [main/INFO]: Found mod file Notes-1.20.1-1.3.0-forge.jar of type MOD with provider {mods folder locator at C:\Users\********\curseforge\minecraft\Instances\Wither Storm Survival\mods} [00:30:14] [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\********\curseforge\minecraft\Instances\Wither Storm Survival\mods} [00:30:14] [main/INFO]: Found mod file oculus-mc1.20.1-1.8.0.jar of type MOD with provider {mods folder locator at C:\Users\********\curseforge\minecraft\Instances\Wither Storm Survival\mods} [00:30:14] [main/INFO]: Found mod file Oh-The-Biomes-Weve-Gone-Forge-1.5.0.jar of type MOD with provider {mods folder locator at C:\Users\********\curseforge\minecraft\Instances\Wither Storm Survival\mods} [00:30:14] [main/INFO]: Found mod file Oh-The-Trees-Youll-Grow-forge-1.20.1-1.3.4.jar of type MOD with provider {mods folder locator at C:\Users\********\curseforge\minecraft\Instances\Wither Storm Survival\mods} [00:30:14] [main/INFO]: Found mod file Oreganized 1.20.1-3.1.2.jar of type MOD with provider {mods folder locator at C:\Users\********\curseforge\minecraft\Instances\Wither Storm Survival\mods} [00:30:14] [main/INFO]: Found mod file overloadedarmorbar-1.20.1-1.jar of type MOD with provider {mods folder locator at C:\Users\********\curseforge\minecraft\Instances\Wither Storm Survival\mods} [00:30:14] [main/INFO]: Found mod file ParCool-1.20.1-3.3.1.0.jar of type MOD with provider {mods folder locator at C:\Users\********\curseforge\minecraft\Instances\Wither Storm Survival\mods} [00:30:14] [main/INFO]: Found mod file particlerain-1.20.1-Forge-1.0.4.jar of type MOD with provider {mods folder locator at C:\Users\********\curseforge\minecraft\Instances\Wither Storm Survival\mods} [00:30:14] [main/INFO]: Found mod file pick_up_tnt-1.1-forge.jar of type MOD with provider {mods folder locator at C:\Users\********\curseforge\minecraft\Instances\Wither Storm Survival\mods} [00:30:14] [main/INFO]: Found mod file placeableblazerods-1.20.1-3.6.jar of type MOD with provider {mods folder locator at C:\Users\********\curseforge\minecraft\Instances\Wither Storm Survival\mods} [00:30:14] [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\********\curseforge\minecraft\Instances\Wither Storm Survival\mods} [00:30:14] [main/INFO]: Found mod file playerladder-0.6.1-forge-1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\********\curseforge\minecraft\Instances\Wither Storm Survival\mods} [00:30:14] [main/INFO]: Found mod file plonk-1.20.1-10.0.5-forge.jar of type MOD with provider {mods folder locator at C:\Users\********\curseforge\minecraft\Instances\Wither Storm Survival\mods} [00:30:14] [main/INFO]: Found mod file Prism-1.20.1-forge-1.0.5.jar of type MOD with provider {mods folder locator at C:\Users\********\curseforge\minecraft\Instances\Wither Storm Survival\mods} [00:30:14] [main/INFO]: Found mod file PuzzlesLib-v8.1.25-1.20.1-Forge.jar of type MOD with provider {mods folder locator at C:\Users\********\curseforge\minecraft\Instances\Wither Storm Survival\mods} [00:30:14] [main/INFO]: Found mod file Quad-1.2.9+1.20.4-Forge.jar of type MOD with provider {mods folder locator at C:\Users\********\curseforge\minecraft\Instances\Wither Storm Survival\mods} [00:30:14] [main/INFO]: Found mod file QualityCrops-1.20.1-1.3.3.jar of type MOD with provider {mods folder locator at C:\Users\********\curseforge\minecraft\Instances\Wither Storm Survival\mods} [00:30:14] [main/INFO]: Found mod file Quark-4.0-460.jar of type MOD with provider {mods folder locator at C:\Users\********\curseforge\minecraft\Instances\Wither Storm Survival\mods} [00:30:14] [main/INFO]: Found mod file QueenBee-Forge-1.20.1-3.1.4.jar of type MOD with provider {mods folder locator at C:\Users\********\curseforge\minecraft\Instances\Wither Storm Survival\mods} [00:30:14] [main/INFO]: Found mod file radiantgear-forge-2.2.0+1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\********\curseforge\minecraft\Instances\Wither Storm Survival\mods} [00:30:14] [main/INFO]: Found mod file realisticbees-1.20.1-4.0.jar of type MOD with provider {mods folder locator at C:\Users\********\curseforge\minecraft\Instances\Wither Storm Survival\mods} [00:30:14] [main/INFO]: Found mod file realmrpg_fallen_adventurers_1.0.3_forge_1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\********\curseforge\minecraft\Instances\Wither Storm Survival\mods} [00:30:14] [main/INFO]: Found mod file right_click_get_crops-1.20.1-1.6.0.12.jar of type MOD with provider {mods folder locator at C:\Users\********\curseforge\minecraft\Instances\Wither Storm Survival\mods} [00:30:14] [main/INFO]: Found mod file rubidium-mc1.20.1-0.7.1a.jar of type MOD with provider {mods folder locator at C:\Users\********\curseforge\minecraft\Instances\Wither Storm Survival\mods} [00:30:14] [main/INFO]: Found mod file savage_and_ravage-1.20.1-6.0.0.jar of type MOD with provider {mods folder locator at C:\Users\********\curseforge\minecraft\Instances\Wither Storm Survival\mods} [00:30:14] [main/INFO]: Found mod file secondchanceforge-1.20-1.5.1.jar of type MOD with provider {mods folder locator at C:\Users\********\curseforge\minecraft\Instances\Wither Storm Survival\mods} [00:30:14] [main/INFO]: Found mod file SereneSeasons-forge-1.20.1-9.1.0.0.jar of type MOD with provider {mods folder locator at C:\Users\********\curseforge\minecraft\Instances\Wither Storm Survival\mods} [00:30:14] [main/INFO]: Found mod file ShieldExpansion-1.20.1-1.2.2.jar of type MOD with provider {mods folder locator at C:\Users\********\curseforge\minecraft\Instances\Wither Storm Survival\mods} [00:30:14] [main/INFO]: Found mod file signpost-1.20.1-2.02.0.jar of type MOD with provider {mods folder locator at C:\Users\********\curseforge\minecraft\Instances\Wither Storm Survival\mods} [00:30:14] [main/INFO]: Found mod file sit-1.20.1-1.3.5.jar of type MOD with provider {mods folder locator at C:\Users\********\curseforge\minecraft\Instances\Wither Storm Survival\mods} [00:30:14] [main/INFO]: Found mod file skinlayers3d-forge-1.7.4-mc1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\********\curseforge\minecraft\Instances\Wither Storm Survival\mods} [00:30:14] [main/INFO]: Found mod file sleep_tight-1.20-1.1.19.jar of type MOD with provider {mods folder locator at C:\Users\********\curseforge\minecraft\Instances\Wither Storm Survival\mods} [00:30:14] [main/INFO]: Found mod file snowundertrees-1.20.1-1.4.6.jar of type MOD with provider {mods folder locator at C:\Users\********\curseforge\minecraft\Instances\Wither Storm Survival\mods} [00:30:14] [main/INFO]: Found mod file snowyspirit-1.20-3.0.10.jar of type MOD with provider {mods folder locator at C:\Users\********\curseforge\minecraft\Instances\Wither Storm Survival\mods} [00:30:14] [main/INFO]: Found mod file sophisticatedbackpacks-1.20.1-3.21.2.1163.jar of type MOD with provider {mods folder locator at C:\Users\********\curseforge\minecraft\Instances\Wither Storm Survival\mods} [00:30:14] [main/INFO]: Found mod file sophisticatedcore-1.20.1-1.0.8.828.jar of type MOD with provider {mods folder locator at C:\Users\********\curseforge\minecraft\Instances\Wither Storm Survival\mods} [00:30:14] [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\********\curseforge\minecraft\Instances\Wither Storm Survival\mods} [00:30:14] [main/INFO]: Found mod file structureessentials-1.20.1-3.4.jar of type MOD with provider {mods folder locator at C:\Users\********\curseforge\minecraft\Instances\Wither Storm Survival\mods} [00:30:14] [main/INFO]: Found mod file supermartijn642configlib-1.1.8-forge-mc1.20.jar of type MOD with provider {mods folder locator at C:\Users\********\curseforge\minecraft\Instances\Wither Storm Survival\mods} [00:30:14] [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\********\curseforge\minecraft\Instances\Wither Storm Survival\mods} [00:30:14] [main/INFO]: Found mod file supplementaries-1.20-3.1.11.jar of type MOD with provider {mods folder locator at C:\Users\********\curseforge\minecraft\Instances\Wither Storm Survival\mods} [00:30:14] [main/INFO]: Found mod file sworddisplay-1.20.1-1.0.0.jar of type MOD with provider {mods folder locator at C:\Users\********\curseforge\minecraft\Instances\Wither Storm Survival\mods} [00:30:14] [main/INFO]: Found mod file TaxOceanVillager+M.1.20.1+ForM.3.1.3.jar of type MOD with provider {mods folder locator at C:\Users\********\curseforge\minecraft\Instances\Wither Storm Survival\mods} [00:30:14] [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\********\curseforge\minecraft\Instances\Wither Storm Survival\mods} [00:30:14] [main/INFO]: Found mod file the-conjurer-1.20.1-1.1.6.jar of type MOD with provider {mods folder locator at C:\Users\********\curseforge\minecraft\Instances\Wither Storm Survival\mods} [00:30:14] [main/INFO]: Found mod file The_Undergarden-1.20.1-0.8.14.jar of type MOD with provider {mods folder locator at C:\Users\********\curseforge\minecraft\Instances\Wither Storm Survival\mods} [00:30:14] [main/INFO]: Found mod file Tide-forge-1.20.1-1.4.2.jar of type MOD with provider {mods folder locator at C:\Users\********\curseforge\minecraft\Instances\Wither Storm Survival\mods} [00:30:14] [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\********\curseforge\minecraft\Instances\Wither Storm Survival\mods} [00:30:14] [main/INFO]: Found mod file UniversalEnchants-v8.0.0-1.20.1-Forge.jar of type MOD with provider {mods folder locator at C:\Users\********\curseforge\minecraft\Instances\Wither Storm Survival\mods} [00:30:14] [main/INFO]: Found mod file useful_ladders-1.20.1-1.1.0.jar of type MOD with provider {mods folder locator at C:\Users\********\curseforge\minecraft\Instances\Wither Storm Survival\mods} [00:30:14] [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\********\curseforge\minecraft\Instances\Wither Storm Survival\mods} [00:30:14] [main/INFO]: Found mod file valhelsia_structures-forge-1.20.1-1.1.2.jar of type MOD with provider {mods folder locator at C:\Users\********\curseforge\minecraft\Instances\Wither Storm Survival\mods} [00:30:14] [main/INFO]: Found mod file VanillaCookbook-2.2.2.jar of type MOD with provider {mods folder locator at C:\Users\********\curseforge\minecraft\Instances\Wither Storm Survival\mods} [00:30:14] [main/INFO]: Found mod file vanillazoom-1.20.1-2.7.jar of type MOD with provider {mods folder locator at C:\Users\********\curseforge\minecraft\Instances\Wither Storm Survival\mods} [00:30:14] [main/INFO]: Found mod file villagernames-1.20.1-8.1.jar of type MOD with provider {mods folder locator at C:\Users\********\curseforge\minecraft\Instances\Wither Storm Survival\mods} [00:30:14] [main/INFO]: Found mod file Warden_Crown-1.4.0-forge-1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\********\curseforge\minecraft\Instances\Wither Storm Survival\mods} [00:30:14] [main/INFO]: Found mod file wardenhorn-1.9-forge-mc1.20.4.jar of type MOD with provider {mods folder locator at C:\Users\********\curseforge\minecraft\Instances\Wither Storm Survival\mods} [00:30:14] [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\********\curseforge\minecraft\Instances\Wither Storm Survival\mods} [00:30:14] [main/INFO]: Found mod file waystones-forge-1.20-14.1.6.jar of type MOD with provider {mods folder locator at C:\Users\********\curseforge\minecraft\Instances\Wither Storm Survival\mods} [00:30:14] [main/INFO]: Found mod file weaponmaster_ydm-forge-1.20.1-4.2.3.jar of type MOD with provider {mods folder locator at C:\Users\********\curseforge\minecraft\Instances\Wither Storm Survival\mods} [00:30:14] [main/INFO]: Found mod file weaponthrow-1.20.1-6.0-beta.1.jar of type MOD with provider {mods folder locator at C:\Users\********\curseforge\minecraft\Instances\Wither Storm Survival\mods} [00:30:14] [main/INFO]: Found mod file whatareyouvotingfor2023-1.20.1-1.2.5.jar of type MOD with provider {mods folder locator at C:\Users\********\curseforge\minecraft\Instances\Wither Storm Survival\mods} [00:30:14] [main/INFO]: Found mod file wither_drops_netherite_templates_1.0.0_forge_1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\********\curseforge\minecraft\Instances\Wither Storm Survival\mods} [00:30:14] [main/INFO]: Found mod file witherite_armor-1.6.0-forge-1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\********\curseforge\minecraft\Instances\Wither Storm Survival\mods} [00:30:14] [main/INFO]: Found mod file witherstormmod-1.20.1-4.2.1-all.jar of type MOD with provider {mods folder locator at C:\Users\********\curseforge\minecraft\Instances\Wither Storm Survival\mods} [00:30:14] [main/INFO]: Found mod file wood_enjoyer-forge-1.20-1.1.2.jar of type MOD with provider {mods folder locator at C:\Users\********\curseforge\minecraft\Instances\Wither Storm Survival\mods} [00:30:14] [main/INFO]: Found mod file xtraarrows-3.0.10.1-forge-mc1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\********\curseforge\minecraft\Instances\Wither Storm Survival\mods} [00:30:14] [main/INFO]: Found mod file YetAnotherConfigLib-3.6.2+1.20.1-forge.jar of type MOD with provider {mods folder locator at C:\Users\********\curseforge\minecraft\Instances\Wither Storm Survival\mods} [00:30:14] [main/INFO]: Found mod file YungsApi-1.20-Forge-4.0.6.jar of type MOD with provider {mods folder locator at C:\Users\********\curseforge\minecraft\Instances\Wither Storm Survival\mods} [00:30:14] [main/INFO]: Found mod file YungsBetterDungeons-1.20-Forge-4.0.4.jar of type MOD with provider {mods folder locator at C:\Users\********\curseforge\minecraft\Instances\Wither Storm Survival\mods} [00:30:14] [main/INFO]: Found mod file YungsBetterMineshafts-1.20-Forge-4.0.4.jar of type MOD with provider {mods folder locator at C:\Users\********\curseforge\minecraft\Instances\Wither Storm Survival\mods} [00:30:14] [main/INFO]: Found mod file YungsBetterStrongholds-1.20-Forge-4.0.3.jar of type MOD with provider {mods folder locator at C:\Users\********\curseforge\minecraft\Instances\Wither Storm Survival\mods} [00:30:14] [main/INFO]: Found mod file zaps_sm_portals-1.1.2-forge-1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\********\curseforge\minecraft\Instances\Wither Storm Survival\mods} [00:30:14] [main/INFO]: Found mod file Zeta-1.0-24.jar of type MOD with provider {mods folder locator at C:\Users\********\curseforge\minecraft\Instances\Wither Storm Survival\mods} [00:30:15] [main/WARN]: Mod file C:\Users\********\curseforge\minecraft\Install\libraries\net\minecraftforge\fmlcore\1.20.1-47.3.0\fmlcore-1.20.1-47.3.0.jar is missing mods.toml file [00:30:15] [main/WARN]: Mod file C:\Users\********\curseforge\minecraft\Install\libraries\net\minecraftforge\javafmllanguage\1.20.1-47.3.0\javafmllanguage-1.20.1-47.3.0.jar is missing mods.toml file [00:30:15] [main/WARN]: Mod file C:\Users\********\curseforge\minecraft\Install\libraries\net\minecraftforge\lowcodelanguage\1.20.1-47.3.0\lowcodelanguage-1.20.1-47.3.0.jar is missing mods.toml file [00:30:15] [main/WARN]: Mod file C:\Users\********\curseforge\minecraft\Install\libraries\net\minecraftforge\mclanguage\1.20.1-47.3.0\mclanguage-1.20.1-47.3.0.jar is missing mods.toml file [00:30:15] [main/INFO]: Found mod file fmlcore-1.20.1-47.3.0.jar of type LIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.MinecraftLocator@470a659f [00:30:15] [main/INFO]: Found mod file javafmllanguage-1.20.1-47.3.0.jar of type LANGPROVIDER with provider net.minecraftforge.fml.loading.moddiscovery.MinecraftLocator@470a659f [00:30:15] [main/INFO]: Found mod file lowcodelanguage-1.20.1-47.3.0.jar of type LANGPROVIDER with provider net.minecraftforge.fml.loading.moddiscovery.MinecraftLocator@470a659f [00:30:15] [main/INFO]: Found mod file mclanguage-1.20.1-47.3.0.jar of type LANGPROVIDER with provider net.minecraftforge.fml.loading.moddiscovery.MinecraftLocator@470a659f [00:30: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@470a659f [00:30:15] [main/INFO]: Found mod file forge-1.20.1-47.3.0-universal.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.MinecraftLocator@470a659f [00:30:16] [main/WARN]: Attempted to select two dependency jars from JarJar which have the same identification: Mod File: and Mod File: . Using Mod File: [00:30:16] [main/WARN]: Attempted to select a dependency jar for JarJar which was passed in as source: playeranimator. Using Mod File: C:\Users\********\curseforge\minecraft\Instances\Wither Storm Survival\mods\player-animation-lib-forge-1.0.2-rc1+1.20.jar [00:30:16] [main/WARN]: Attempted to select a dependency jar for JarJar which was passed in as source: aeroblender. Using Mod File: C:\Users\********\curseforge\minecraft\Instances\Wither Storm Survival\mods\aeroblender-1.20.1-1.0.1-neoforge.jar [00:30:16] [main/WARN]: Attempted to select a dependency jar for JarJar which was passed in as source: curios. Using Mod File: C:\Users\********\curseforge\minecraft\Instances\Wither Storm Survival\mods\curios-forge-5.11.0+1.20.1.jar [00:30:16] [main/INFO]: Found 90 dependencies adding them to mods collection [00:30:16] [main/INFO]: Found mod file fabric-transfer-api-v1-3.3.5+631c9cd677.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@1668919e [00:30:16] [main/INFO]: Found mod file fabric-dimensions-v1-2.1.54+8005d10d77.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@1668919e [00:30:16] [main/INFO]: Found mod file jackson-dataformat-toml-2.15.2.jar of type LIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@1668919e [00:30:16] [main/INFO]: Found mod file kuma-api-forge-20.1.9-SNAPSHOT.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@1668919e [00:30:16] [main/INFO]: Found mod file fabric-renderer-api-v1-3.2.1+cf68abbe77.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@1668919e [00:30:16] [main/INFO]: Found mod file groovy-macro-4.0.13.jar of type LIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@1668919e [00:30:16] [main/INFO]: Found mod file PalladiumCore-forge-1.20-2.0.0.0-forge.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@1668919e [00:30:16] [main/INFO]: Found mod file fabric-item-api-v1-2.1.28+4d0bbcfa77.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@1668919e [00:30:16] [main/INFO]: Found mod file fabric-model-loading-api-v1-1.0.3+6274ab9d77.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@1668919e [00:30:16] [main/INFO]: Found mod file imageio-webp-3.12.0.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@1668919e [00:30:16] [main/INFO]: Found mod file fabric-rendering-fluids-v1-3.0.28+4ac5e37a77.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@1668919e [00:30:16] [main/INFO]: Found mod file fabric-screen-handler-api-v1-1.3.30+561530ec77.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@1668919e [00:30:16] [main/INFO]: Found mod file fabric-models-v0-0.4.2+7c3892a477.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@1668919e [00:30:16] [main/INFO]: Found mod file fabric-resource-loader-v0-0.11.10+bcd08ed377.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@1668919e [00:30:16] [main/INFO]: Found mod file mclib-20.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@1668919e [00:30:16] [main/INFO]: Found mod file jackson-core-2.15.2.jar of type LIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@1668919e [00:30:16] [main/INFO]: Found mod file fabric-rendering-v1-3.0.8+66e9a48f77.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@1668919e [00:30:16] [main/INFO]: Found mod file groovy-templates-4.0.13.jar of type LIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@1668919e [00:30:16] [main/INFO]: Found mod file fabric-renderer-indigo-1.5.2+b5b2da4177.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@1668919e [00:30:16] [main/INFO]: Found mod file groovy-fat-4.0.9.jar of type LANGPROVIDER with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@1668919e [00:30:16] [main/INFO]: Found mod file fabric-convention-tags-v1-1.5.5+fa3d1c0177.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@1668919e [00:30:16] [main/INFO]: Found mod file groovy-4.0.13.jar of type LIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@1668919e [00:30:16] [main/INFO]: Found mod file groovy-nio-4.0.13.jar of type LIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@1668919e [00:30:16] [main/INFO]: Found mod file groovy-dateutil-4.0.13.jar of type LIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@1668919e [00:30:16] [main/INFO]: Found mod file fabric-mining-level-api-v1-2.1.50+561530ec77.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@1668919e [00:30:16] [main/INFO]: Found mod file imageio-core-3.12.0.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@1668919e [00:30:16] [main/INFO]: Found mod file fabric-command-api-v1-1.2.34+f71b366f77.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@1668919e [00:30:16] [main/INFO]: Found mod file groovy-xml-4.0.13.jar of type LIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@1668919e [00:30:16] [main/INFO]: Found mod file fabric-block-view-api-v2-1.0.1+0767707077.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@1668919e [00:30:16] [main/INFO]: Found mod file MixinExtras-0.4.1.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@1668919e [00:30:16] [main/INFO]: Found mod file fabric-command-api-v2-2.2.13+561530ec77.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@1668919e [00:30:16] [main/INFO]: Found mod file fabric-data-attachment-api-v1-1.0.0+30ef839e77.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@1668919e [00:30:16] [main/INFO]: Found mod file crackerslib-forge-1.20.1-0.4.1.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@1668919e [00:30:16] [main/INFO]: Found mod file groovy-toml-4.0.13.jar of type LIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@1668919e [00:30:16] [main/INFO]: Found mod file mixinextras-forge-0.4.1.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@1668919e [00:30:16] [main/INFO]: Found mod file jackson-databind-2.15.2.jar of type LIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@1668919e [00:30:16] [main/INFO]: Found mod file common-lang-3.12.0.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@1668919e [00:30:16] [main/INFO]: Found mod file midnightlib-1.4.1-forge.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@1668919e [00:30:16] [main/INFO]: Found mod file groovy-ginq-4.0.13.jar of type LIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@1668919e [00:30:16] [main/INFO]: Found mod file fabric-screen-api-v1-2.0.8+45a670a577.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@1668919e [00:30:16] [main/INFO]: Found mod file fabric-particles-v1-1.1.2+78e1ecb877.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@1668919e [00:30:16] [main/INFO]: Found mod file puzzlesaccessapi-forge-8.0.7.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@1668919e [00:30:16] [main/INFO]: Found mod file gson-0.2.1.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@1668919e [00:30:16] [main/INFO]: Found mod file jankson-1.2.2.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@1668919e [00:30:16] [main/INFO]: Found mod file fabric-content-registries-v0-4.0.11+a670df1e77.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@1668919e [00:30:16] [main/INFO]: Found mod file fabric-transitive-access-wideners-v1-4.3.1+1880499877.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@1668919e [00:30:16] [main/INFO]: Found mod file groovy-datetime-4.0.13.jar of type LIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@1668919e [00:30:16] [main/INFO]: Found mod file fabric-game-rule-api-v1-1.0.40+683d4da877.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@1668919e [00:30:16] [main/INFO]: Found mod file fabric-api-base-0.4.31+ef105b4977.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@1668919e [00:30:16] [main/INFO]: Found mod file runtime-1.0.0+1.20.1.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@1668919e [00:30:16] [main/INFO]: Found mod file groovy-json-4.0.13.jar of type LIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@1668919e [00:30:16] [main/INFO]: Found mod file srgutils-0.5.4.jar of type LIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@1668919e [00:30:16] [main/INFO]: Found mod file fabric-api-lookup-api-v1-1.6.36+67f9824077.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@1668919e [00:30:16] [main/INFO]: Found mod file mod-4.0.9.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@1668919e [00:30:16] [main/INFO]: Found mod file fabric-blockrenderlayer-v1-1.1.41+1d0da21e77.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@1668919e [00:30:16] [main/INFO]: Found mod file mixinsquared-forge-0.1.2-beta.6.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@1668919e [00:30:16] [main/INFO]: Found mod file common-io-3.12.0.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@1668919e [00:30:16] [main/INFO]: Found mod file fabric-block-api-v1-1.0.11+0e6cb7f777.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@1668919e [00:30:16] [main/INFO]: Found mod file json-0.2.1.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@1668919e [00:30:16] [main/INFO]: Found mod file httpmime-4.5.10.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@1668919e [00:30:16] [main/INFO]: Found mod file jackson-annotations-2.15.2.jar of type LIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@1668919e [00:30:16] [main/INFO]: Found mod file fabric-resource-conditions-api-v1-2.3.8+9ad825cd77.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@1668919e [00:30:16] [main/INFO]: Found mod file script-mods-4.0.9-all.jar of type LIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@1668919e [00:30:16] [main/INFO]: Found mod file groovy-typecheckers-4.0.13.jar of type LIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@1668919e [00:30:16] [main/INFO]: Found mod file fabric-item-group-api-v1-4.0.12+c9161c2d77.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@1668919e [00:30:16] [main/INFO]: Found mod file cgl-1.20-forge-0.3.3.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@1668919e [00:30:16] [main/INFO]: Found mod file common-image-3.12.0.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@1668919e [00:30:16] [main/INFO]: Found mod file jcpp-1.4.14.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@1668919e [00:30:16] [main/INFO]: Found mod file Connector-1.0.0-beta.46+1.20.1-fabricloader.jar of type LIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@1668919e [00:30:16] [main/INFO]: Found mod file fabric-biome-api-v1-13.0.13+dc36698e77.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@1668919e [00:30:16] [main/INFO]: Found mod file fabric-entity-events-v1-1.6.0+6274ab9d77.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@1668919e [00:30:16] [main/INFO]: Found mod file fabric-registry-sync-v0-2.3.3+1c0ea72177.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@1668919e [00:30:16] [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@1668919e [00:30:16] [main/INFO]: Found mod file groovy-macro-library-4.0.13.jar of type LIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@1668919e [00:30:16] [main/INFO]: Found mod file imageio-metadata-3.12.0.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@1668919e [00:30:16] [main/INFO]: Found mod file fabric-recipe-api-v1-1.0.21+514a076577.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@1668919e [00:30:16] [main/INFO]: Found mod file fabric-loot-api-v2-1.2.1+eb28f93e77.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@1668919e [00:30:16] [main/INFO]: Found mod file fabric-object-builder-api-v1-11.1.3+2174fc8477.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@1668919e [00:30:16] [main/INFO]: Found mod file fabric-rendering-data-attachment-v1-0.3.37+a6081afc77.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@1668919e [00:30:16] [main/INFO]: Found mod file nitrogen_internals-1.20.1-1.0.11-neoforge.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@1668919e [00:30:16] [main/INFO]: Found mod file groovy-contracts-4.0.13.jar of type LIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@1668919e [00:30:16] [main/INFO]: Found mod file fabric-networking-api-v1-1.3.11+503a202477.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@1668919e [00:30:16] [main/INFO]: Found mod file fabric-sound-api-v1-1.0.13+4f23bd8477.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@1668919e [00:30:16] [main/INFO]: Found mod file fabric-message-api-v1-5.1.9+52cc178c77.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@1668919e [00:30:16] [main/INFO]: Found mod file fabric-lifecycle-events-v1-2.2.22+afab492177.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@1668919e [00:30:16] [main/INFO]: Found mod file fabric-data-generation-api-v1-12.3.4+369cb3a477.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@1668919e [00:30:16] [main/INFO]: Found mod file fabric-events-interaction-v0-0.6.2+0d0bd5a777.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@1668919e [00:30:16] [main/INFO]: Found mod file MixinSquared-0.1.2-beta.6.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@1668919e [00:30:16] [main/INFO]: Found mod file fabric-key-binding-api-v1-1.0.37+561530ec77.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@1668919e [00:30:16] [main/INFO]: Found mod file fabric-client-tags-api-v1-1.1.2+5d6761b877.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@1668919e [00:30:16] [main/INFO]: Fabric mod metadata not found in jar org.groovymc.gml, ignoring [00:30:17] [main/INFO]: Dependency resolution found 1 candidates to load [00:30:18] [main/INFO]: Found mod file continuity-3.0.0+1.20.1.forge_mapped_srg_1.20.1.jar of type MOD with provider org.sinytra.connector.locator.ConnectorLocator@10b8b900 [00:30:18] [main/INFO]: Starting runtime mappings setup... [00:30:19] [main/INFO]: Injecting ScriptModLocator candidates... [00:30:19] [main/INFO]: Injected Jimfs file system [00:30:19] [main/INFO]: Skipped loading script mods from directory C:\Users\********\curseforge\minecraft\Instances\Wither Storm Survival\mods\scripts as it did not exist. [00:30:19] [main/INFO]: Injected ScriptModLocator mod candidates. Found 0 valid mod candidates and 0 broken mod files. [00:30:20] [main/INFO]: Successfully made module authlib transformable [00:30:21] [GML Mappings Thread/INFO]: Loaded runtime mappings in 2161ms [00:30:21] [GML Mappings Thread/INFO]: Finished runtime mappings setup. [00:30:24] [main/INFO]: Compatibility level set to JAVA_17 [00:30:25] [main/INFO]: Launching target 'forgeclient' with arguments [--version, forge-47.3.0, --gameDir, C:\Users\********\curseforge\minecraft\Instances\Wither Storm Survival, --assetsDir, C:\Users\********\curseforge\minecraft\Install\assets, --uuid, f414c39fed4b4e78be32e0641fe9ed99, --username, LordR4ven, --assetIndex, 5, --accessToken, ????????, --clientId, ZTdjMDQ0YmQtMWVlYS00ZjEzLWI4NWItYzAzZGFhMGQ4ODk4, --xuid, 2535411754380662, --userType, msa, --versionType, release, --width, 1024, --height, 768, --quickPlayPath, C:\Users\********\curseforge\minecraft\Install\quickPlay\java\1736055008831.json] [00:30:25] [main/INFO]: Loaded configuration file for Rubidium: 41 options available, 3 override(s) found [00:30:25] [main/WARN]: Reference map 'mixins.efxgliders.refmap.json' for mixins.efxgliders.json could not be read. If this is a development environment you can ignore this message [00:30:25] [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 [00:30:26] [main/WARN]: Reference map 'knightquest.refmap.json' for knightquest.mixins.json could not be read. If this is a development environment you can ignore this message [00:30:26] [main/WARN]: Reference map 'knightquest.refmap.json' for knightquest.forge.mixins.json could not be read. If this is a development environment you can ignore this message [00:30:26] [main/INFO]: Loading 284 mods: - aeroblender 1.20.1-1.0.1-neoforge - aether 1.20.1-1.5.1-neoforge |-- cumulus_menus 1.20.1-1.0.1-neoforge \-- nitrogen_internals 1.20.1-1.0.11-neoforge - aether_redux 2.0.18 - aileron 1.20.1-forge-1.1.1 \-- midnightlib 1.4.1 - alexscaves 2.0.2 - allarrowsinfinityfix 1.5 - alltheores 2.2.4 - allthetrims 3.4.3 - ambientsounds 6.1.4 - amendments 1.20-1.2.14 - architectury 9.2.14 - armorposer 2.2.2 - armortrimitemfix 1.2.0 - awesomedungeonocean 3.3.0 - balm 7.3.10 \-- kuma_api 20.1.9-SNAPSHOT - betteradvancements **.**.**.** - betterbeaconplacement 3.4 - bettercombat 1.8.6+1.20.1 - betterdeepdark 2024.07.09-1.20.1-forge - betterdungeons 1.20-Forge-4.0.4 - bettermineshafts 1.20-Forge-4.0.4 - betterpingdisplay 1.1 - betterstrongholds 1.20-Forge-4.0.3 - betterthirdperson 1.9.0 - bettervillage 3.2.0 - beyond_mines_falling 1.2.0 - biomesoplenty **.**.**.** - biomeswevegone 1.5.0 - blazegear 1.4.1 - bloxxifys_lightbringer_mod 4.6.3 - blueprint 7.1.0 - bosses_of_mass_destruction 1.1.1 - bridgingmod 2.5.1+1.20.1 - bulletsboats 0.0.6-1.20.1 - bygonenether 1.3.2 - caelus 3.2.0+1.20.1 - callablehorses **.**.**.** - carryon **.**.**.** - cataclysm 2.31 - catloaf 1.1.3 - cerbons_api 1.0.0 - chas 1.20 - cherishedworlds 6.1.7+1.20.1 - chunkloaders 1.2.8a - citadel 2.6.1 - citresewn 1.20.1-5 - cloth_config 11.1.136 - collective 7.87 - command_tool_expansion 2.1 - commongroovylibrary 0.3.3 - conjurer_illager 1.1.6 - connectiblechains 1.0.0 - connectormod 1.0.0-beta.46+1.20.1 - continuity **.**.**.**.1.forge - coolarmor 1.1.2-1.20.1-forge - corgilib **.**.**.** - coroutil 1.20.1-1.3.7 - cosmeticarmorreworked 1.20.1-v1a - craftable_elytra_remastered 2.2 - craftablechainmail 3.2.1-[FORGE] - creativecore 2.12.28 - cupboard 1.20.1-2.7 - curios 5.11.0+1.20.1 - curious_armor_stands 1.20-5.1.0 - customfpsdisplay 2.0.0 - deathquotes 3.3 - deep_aether 1.20.1-1.0.4 - deep_dark_regrowth **.**.**.** - display 1.3.5 - distant_worlds 1.1.0 - distanthorizons 2.2.1-a - do_a_barrel_roll 3.5.6+1.20.1 - doggytalents 1.18.39 - dragonitegear 0.3.2 - dropthemeat 1.6 - dtbop 1.20.1-3.3.1 - dummmmmmy 1.20-2.0.2 - dungeoncrawl 2.3.15 - dungeonnowloading 1.5 - dungeons_arise 2.1.58-1.20.x - dynamiclights **.**.**.** - dynamictrees 1.20.1-1.3.6 - dynamictreesplus 1.20.1-1.2.0-BETA3 - easel_does_it 1.0.5 \-- mixinextras 0.4.1 - eatinganimation 5.1.0 - efct 1.0.1 - efxgliders 1.0.0 - efxparcool 1.0.0 - elysium_api 1.0.2 - elytraslot 6.4.4+1.20.1 \-- mixinsquared 0.1.2-beta.6 - emotecraft 2.2.7-b.build.50 - enchant_icon 1.1.1-13 - endercrop 1.20.1-1.7.0 - endlessbiomes 1.6.0 - endrem 5.3.3-R-1.20.1 - entity_model_features 2.4.1 - entity_texture_features 6.2.9 - epiccompat_parcool 1.0.3 - epicfight 20.9.6 - explosiveenhancement 1.1.0 - fabric_api 0.92.2+1.11.9+1.20.1 |-- fabric_api_base 0.4.31+ef105b4977 |-- fabric_api_lookup_api_v1 1.6.36+67f9824077 |-- fabric_biome_api_v1 13.0.13+dc36698e77 |-- fabric_block_api_v1 1.0.11+0e6cb7f777 |-- fabric_block_view_api_v2 1.0.1+0767707077 |-- fabric_blockrenderlayer_v1 1.1.41+1d0da21e77 |-- fabric_client_tags_api_v1 1.1.2+5d6761b877 |-- fabric_command_api_v1 1.2.34+f71b366f77 |-- fabric_command_api_v2 2.2.13+561530ec77 |-- fabric_content_registries_v0 4.0.11+a670df1e77 |-- fabric_convention_tags_v1 1.5.5+fa3d1c0177 |-- fabric_data_attachment_api_v1 1.0.0+30ef839e77 |-- fabric_data_generation_api_v1 12.3.4+369cb3a477 |-- fabric_dimensions_v1 2.1.54+8005d10d77 |-- fabric_entity_events_v1 1.6.0+6274ab9d77 |-- fabric_events_interaction_v0 0.6.2+0d0bd5a777 |-- fabric_game_rule_api_v1 1.0.40+683d4da877 |-- fabric_item_api_v1 2.1.28+4d0bbcfa77 |-- fabric_item_group_api_v1 4.0.12+c9161c2d77 |-- fabric_key_binding_api_v1 1.0.37+561530ec77 |-- fabric_lifecycle_events_v1 2.2.22+afab492177 |-- fabric_loot_api_v2 1.2.1+eb28f93e77 |-- fabric_message_api_v1 5.1.9+52cc178c77 |-- fabric_mining_level_api_v1 2.1.50+561530ec77 |-- fabric_model_loading_api_v1 1.0.3+6274ab9d77 |-- fabric_models_v0 0.4.2+7c3892a477 |-- fabric_networking_api_v1 1.3.11+503a202477 |-- fabric_object_builder_api_v1 11.1.3+2174fc8477 |-- fabric_particles_v1 1.1.2+78e1ecb877 |-- fabric_recipe_api_v1 1.0.21+514a076577 |-- fabric_registry_sync_v0 2.3.3+1c0ea72177 |-- fabric_renderer_api_v1 3.2.1+cf68abbe77 |-- fabric_renderer_indigo 1.5.2+b5b2da4177 |-- fabric_rendering_data_attachment_v1 0.3.37+a6081afc77 |-- fabric_rendering_fluids_v1 3.0.28+4ac5e37a77 |-- fabric_rendering_v1 3.0.8+66e9a48f77 |-- fabric_resource_conditions_api_v1 2.3.8+9ad825cd77 |-- fabric_resource_loader_v0 0.11.10+bcd08ed377 |-- fabric_screen_api_v1 2.0.8+45a670a577 |-- fabric_screen_handler_api_v1 1.3.30+561530ec77 |-- fabric_sound_api_v1 1.0.13+4f23bd8477 |-- fabric_transfer_api_v1 3.3.5+631c9cd677 \-- fabric_transitive_access_wideners_v1 4.3.1+1880499877 - felsic_gear 1.0.0 - fireproofboats 1.20.1-1.0.3 - forge 47.3.0 - fps 1.3.0 - gamediscs 0.3.1 - geckolib 4.7 - geophilic 3.1.5 - giantspawn 5.2 - glitchcore **.**.**.** - gml 4.0.9 - goldencrops 1.20.1-1.1 - good_nights_sleep 1.3.1 - grabbymobs 1.6 - gravestone 1.20.1-1.0.24 - healingbed 1.20.1 - healingcampfire 6.1 - homingxporb 1.20.1-1.0.0 - hoporp 1.3.7 - iceberg 1.1.25 - incubation 4.0.2 - infinite_abyss 1.8.5 - jade 11.12.2+forge - jeed 1.20-2.2.2 - jei **.**.**.** - journeymap 5.10.3 - justenoughcrowns 1.9.0 - knightlib 1.2.0 - knightquest 1.8.2 - legendarytooltips 1.4.5 - libraryferret 4.0.0 - lionfishapi 2.4-Fix - lolmcv 1.5.6 - macawsbridgesbop 1.20-1.3 - macawsbridgesbyg 1.20.1-1.1 - magicaljewelry 1.20.1_1.6.0 - mctb 1.20.1 - mcwbridges 3.0.0 - minecraft 1.20.1 - miningmaster 4.1.3 - mns 1.0.3-1.20-forge - mobbattlemusic 1.20.1-1.1.1.2 - mobhealthbar 2.3.0 - monolib 1.4.1 - moonlight 1.20-2.13.45 - more_beautiful_torches 3.0.0 - more_villager_trades 1.0.0 - moremobvariants **.**.**.** - moretotems 2.16.0 - mousetweaks 2.25.1 - mowziesmobs 1.6.4 - mr_bft 2.0.0 - mr_dungeons_andtaverns 3.0.3.f - mvs 4.1.4-1.20-forge - mvw 2.3.3c - nebs 1.8.0 - netherexp 2.2.0 - netheroresplus 1.0.0 - nethervillagertrader 1.2.0 - notenoughanimations 1.9.0 - notes 1.20.1-1.3.0-forge - nyfsspiders 2.1.1 - oculus 1.8.0 - ohthetreesyoullgrow 1.20.1-1.3.4 - oreganized 3.1.2 - overloadedarmorbar 1.20.1-1 - parcool **.**.**.** - particlerain 1.0.4 - pick_up_tnt 1.1 - placeableblazerods 3.6 - playeranimator 1.0.2-rc1+1.20 - playerladder 0.6.1 - plonk 10.0.5 - plumps_crown 1.4.0 - prism 1.0.5 - puzzleslib 8.1.25 \-- puzzlesaccessapi 8.0.7 - quad 1.2.9 - qualitycrops 1.20.1-1.3.3 - quark 4.0-460 - queen_bee 3.1.4 - radiantgear 2.2.0+1.20.1 - realisticbees 4.0 - realmrpg_skeletons 1.0.3 - right_click_get_crops 1.6.0 - rubidium 0.7.1a \-- sodium 0.5.3 - savage_and_ravage 6.0.0 - secondchanceforge 1.5.1 - sereneseasons **.**.**.** - shieldexp 1.2.2 - signpost 2.02.0 - sit 1.3.5 - skinlayers3d 1.7.4 - sleep_tight 1.20-1.1.19 - snowundertrees 1.4.6 - snowyspirit 1.20-3.0.10 - sophisticatedbackpacks 3.21.2.1163 - sophisticatedcore **.**.**.** - structure_gel 2.16.2 - structureessentials 1.20.1-3.4 - supermartijn642configlib 1.1.8 - supermartijn642corelib 1.1.18 - supplementaries 1.20-3.1.11 - sworddisplay 1.20.1-1.0.0 - taxov 3.1.3 - terrablender **.**.**.** - tide 1.4.2 - twilightforest 4.3.2508 - undergarden 0.8.14 - universalenchants 8.0.0 - useful_ladders 1.20.1-1.1.0 - valhelsia_core 1.1.2 - valhelsia_structures 1.20.1-1.1.2 - vanillacookbook 2.2.2 - vanillazoom 2.7 - vc_gliders 1.1.6 \-- palladiumcore 1.20-2.0.0.0 - villagernames 8.1 - wardenhorn 1.9 - watut 1.20.1-1.1.3 - waystones 14.1.6 - weaponmaster_ydm 4.2.3 - weaponthrow 1.20.1-6.0-beta.1 - whatareyouvotingfor 1.2.5 - wither_drops_netherite_templates 1.0.0 - witherite_armor 1.6.0 - witherstormmod 4.2.1 \-- crackerslib 1.20.1-0.4.1 - wood_enjoyer 1.1.2 - woodwevegot 1.1.0 - xtraarrows **.**.**.** - yet_another_config_lib_v3 3.6.2+1.20.1-forge - yungsapi 1.20-Forge-4.0.6 - zaps_sm_portals 1.0.1 - zeta 1.0-24 [00:30:26] [main/WARN]: Reference map 'mns-forge-refmap.json' for mns-forge.mixins.json could not be read. If this is a development environment you can ignore this message [00:30:26] [main/WARN]: Reference map 'mixins.efct.refmap.json' for mixins.efct.json could not be read. If this is a development environment you can ignore this message [00:30:26] [main/WARN]: Reference map 'doggytalents.refmap.json' for doggytalents.mixins.json could not be read. If this is a development environment you can ignore this message [00:30:26] [main/WARN]: Reference map 'mixins.efxparcool.refmap.json' for mixins.efxparcool.json could not be read. If this is a development environment you can ignore this message [00:30:26] [main/WARN]: Reference map 'CHA-S-common-refmap.json' for chas-common.mixins.json could not be read. If this is a development environment you can ignore this message [00:30:26] [main/WARN]: Reference map 'knightlib.refmap.json' for knightlib.mixins.json could not be read. If this is a development environment you can ignore this message [00:30:26] [main/WARN]: Reference map 'knightlib.refmap.json' for knightlib.forge.mixins.json could not be read. If this is a development environment you can ignore this message [00:30:26] [main/WARN]: Reference map 'more_beautiful_torches.refmap.json' for forge-more_beautiful_torches.forge.mixins.json could not be read. If this is a development environment you can ignore this message [00:30:26] [main/WARN]: Reference map 'coroutil.refmap.json' for coroutil.mixins.json could not be read. If this is a development environment you can ignore this message [00:30:26] [main/WARN]: Reference map 'mvs-forge-refmap.json' for mvs-forge.mixins.json could not be read. If this is a development environment you can ignore this message [00:30:26] [main/WARN]: Reference map '' for adapter.init.mixins.json could not be read. If this is a development environment you can ignore this message [00:30:27] [main/WARN]: Force-disabling mixin 'features.render.entity.CuboidMixin' as rule 'mixin.features.render.entity' (added by mods [oculus]) disables it and children [00:30:27] [main/WARN]: Force-disabling mixin 'features.render.entity.ModelPartMixin' as rule 'mixin.features.render.entity' (added by mods [oculus]) disables it and children [00:30:27] [main/WARN]: Force-disabling mixin 'features.render.entity.cull.EntityRendererMixin' as rule 'mixin.features.render.entity' (added by mods [oculus]) disables it and children [00:30:27] [main/WARN]: Force-disabling mixin 'features.render.entity.shadows.EntityRenderDispatcherMixin' as rule 'mixin.features.render.entity' (added by mods [oculus]) disables it and children [00:30:27] [main/WARN]: Force-disabling mixin 'features.render.gui.font.GlyphRendererMixin' as rule 'mixin.features.render.gui.font' (added by mods [oculus]) disables it and children [00:30:27] [main/WARN]: Force-disabling mixin 'features.render.world.sky.BackgroundRendererMixin' as rule 'mixin.features.render.world.sky' (added by mods [oculus]) disables it and children [00:30:27] [main/WARN]: Force-disabling mixin 'features.render.world.sky.ClientWorldMixin' as rule 'mixin.features.render.world.sky' (added by mods [oculus]) disables it and children [00:30:27] [main/WARN]: Force-disabling mixin 'features.render.world.sky.WorldRendererMixin' as rule 'mixin.features.render.world.sky' (added by mods [oculus]) disables it and children [00:30:28] [main/WARN]: Error loading class: vazkii/quark/base/module/ModuleFinder (java.lang.ClassNotFoundException: vazkii.quark.base.module.ModuleFinder) [00:30:28] [main/WARN]: Error loading class: mekanism/client/render/entity/RenderFlame (java.lang.ClassNotFoundException: mekanism.client.render.entity.RenderFlame) [00:30:28] [main/WARN]: Error loading class: mekanism/client/render/armor/MekaSuitArmor (java.lang.ClassNotFoundException: mekanism.client.render.armor.MekaSuitArmor) [00:30:28] [main/WARN]: Error loading class: me/jellysquid/mods/sodium/client/render/vertex/buffer/SodiumBufferBuilder (java.lang.ClassNotFoundException: me.jellysquid.mods.sodium.client.render.vertex.buffer.SodiumBufferBuilder) [00:30:28] [main/WARN]: @Mixin target me.jellysquid.mods.sodium.client.render.vertex.buffer.SodiumBufferBuilder was not found mixins.oculus.compat.sodium.json:vertex_format.MixinSodiumBufferBuilder from mod oculus [00:30:29] [main/WARN]: Error loading class: de/teamlapen/vampirism/client/renderer/entity/layers/VampirePlayerHeadLayer (java.lang.ClassNotFoundException: de.teamlapen.vampirism.client.renderer.entity.layers.VampirePlayerHeadLayer) [00:30:29] [main/WARN]: @Mixin target de.teamlapen.vampirism.client.renderer.entity.layers.VampirePlayerHeadLayer was not found mixins.epicfight.json:VampirismMixinVampirePlayerHeadLayer from mod epicfight [00:30:29] [main/WARN]: Error loading class: de/teamlapen/werewolves/client/render/layer/HumanWerewolfLayer (java.lang.ClassNotFoundException: de.teamlapen.werewolves.client.render.layer.HumanWerewolfLayer) [00:30:29] [main/WARN]: @Mixin target de.teamlapen.werewolves.client.render.layer.HumanWerewolfLayer was not found mixins.epicfight.json:WerewolvesMixinHumanWerewolfLayer from mod epicfight [00:30:29] [main/WARN]: Error loading class: com/legacy/lost_aether/entity/AerwhaleKingEntity (java.lang.ClassNotFoundException: com.legacy.lost_aether.entity.AerwhaleKingEntity) [00:30:29] [main/WARN]: Error loading class: com/aetherteam/aether_genesis/block/natural/GreenAercloudBlock (java.lang.ClassNotFoundException: com.aetherteam.aether_genesis.block.natural.GreenAercloudBlock) [00:30:29] [main/WARN]: @Mixin target com.aetherteam.aether_genesis.block.natural.GreenAercloudBlock was not found aether_redux.mixins.json:common.block.GreenAercloudBlockMixin from mod aether_redux [00:30:29] [main/WARN]: Error loading class: com/aetherteam/aether_genesis/block/natural/OrangeTreeBlock (java.lang.ClassNotFoundException: com.aetherteam.aether_genesis.block.natural.OrangeTreeBlock) [00:30:29] [main/WARN]: @Mixin target com.aetherteam.aether_genesis.block.natural.OrangeTreeBlock was not found aether_redux.mixins.json:common.block.OrangeTreeMixin from mod aether_redux [00:30:29] [main/WARN]: Error loading class: com/aetherteam/aether_genesis/block/natural/PurpleAercloudBlock (java.lang.ClassNotFoundException: com.aetherteam.aether_genesis.block.natural.PurpleAercloudBlock) [00:30:29] [main/WARN]: @Mixin target com.aetherteam.aether_genesis.block.natural.PurpleAercloudBlock was not found aether_redux.mixins.json:common.block.PurpleAercloudBlockMixin from mod aether_redux [00:30:29] [main/WARN]: Error loading class: com/aetherteam/aether_genesis/client/GenesisMusic (java.lang.ClassNotFoundException: com.aetherteam.aether_genesis.client.GenesisMusic) [00:30:29] [main/WARN]: @Mixin target com.aetherteam.aether_genesis.client.GenesisMusic was not found aether_redux.mixins.json:client.audio.GoTVMusicMixin from mod aether_redux [00:30:29] [main/WARN]: Error loading class: com/aetherteam/aether_genesis/client/renderer/entity/SkyrootMimicRenderer (java.lang.ClassNotFoundException: com.aetherteam.aether_genesis.client.renderer.entity.SkyrootMimicRenderer) [00:30:29] [main/WARN]: @Mixin target com.aetherteam.aether_genesis.client.renderer.entity.SkyrootMimicRenderer was not found aether_redux.mixins.json:client.render.MimicRendererMixin from mod aether_redux [00:30:29] [main/WARN]: Error loading class: net/builderdog/ancient_aether/client/renderer/entity/FestiveSwetRenderer (java.lang.ClassNotFoundException: net.builderdog.ancient_aether.client.renderer.entity.FestiveSwetRenderer) [00:30:29] [main/WARN]: @Mixin target net.builderdog.ancient_aether.client.renderer.entity.FestiveSwetRenderer was not found aether_redux.mixins.json:client.render.SwetRendererMixin from mod aether_redux [00:30:29] [main/WARN]: Error loading class: com/aetherteam/protect_your_moa/client/renderer/entity/layers/MoaArmorLayer (java.lang.ClassNotFoundException: com.aetherteam.protect_your_moa.client.renderer.entity.layers.MoaArmorLayer) [00:30:29] [main/WARN]: @Mixin target com.aetherteam.protect_your_moa.client.renderer.entity.layers.MoaArmorLayer was not found aether_redux.mixins.json:client.render.layer.MoaArmorLayerMixin from mod aether_redux [00:30:29] [main/WARN]: Error loading class: com/aetherteam/protect_your_moa/client/renderer/entity/layers/MoaChestLayer (java.lang.ClassNotFoundException: com.aetherteam.protect_your_moa.client.renderer.entity.layers.MoaChestLayer) [00:30:29] [main/WARN]: @Mixin target com.aetherteam.protect_your_moa.client.renderer.entity.layers.MoaChestLayer was not found aether_redux.mixins.json:client.render.layer.MoaChestLayerMixin from mod aether_redux [00:30:29] [main/WARN]: Error loading class: com/legacy/lost_aether/client/render/layer/MoaHeadFeatherLayer (java.lang.ClassNotFoundException: com.legacy.lost_aether.client.render.layer.MoaHeadFeatherLayer) [00:30:29] [main/WARN]: @Mixin target com.legacy.lost_aether.client.render.layer.MoaHeadFeatherLayer was not found aether_redux.mixins.json:client.render.layer.MoaFeathersLayerMixin from mod aether_redux [00:30:29] [main/INFO]: Loaded config for: structureessentials.json [00:30:30] [main/WARN]: Error loading class: net/raphimc/immediatelyfast/feature/core/BatchableBufferSource (java.lang.ClassNotFoundException: net.raphimc.immediatelyfast.feature.core.BatchableBufferSource) [00:30:30] [main/WARN]: Error loading class: me/jellysquid/mods/sodium/client/render/immediate/model/EntityRenderer (java.lang.ClassNotFoundException: me.jellysquid.mods.sodium.client.render.immediate.model.EntityRenderer) [00:30:30] [main/WARN]: Error loading class: me/jellysquid/mods/sodium/client/render/vertex/buffer/SodiumBufferBuilder (java.lang.ClassNotFoundException: me.jellysquid.mods.sodium.client.render.vertex.buffer.SodiumBufferBuilder) [00:30:30] [main/WARN]: Error loading class: dev/emi/emi/VanillaPlugin (java.lang.ClassNotFoundException: dev.emi.emi.VanillaPlugin) [00:30:30] [main/WARN]: Error loading class: dev/emi/emi/VanillaPlugin (java.lang.ClassNotFoundException: dev.emi.emi.VanillaPlugin) [00:30:30] [main/WARN]: Error loading class: me/shedaniel/rei/plugin/client/DefaultClientPlugin (java.lang.ClassNotFoundException: me.shedaniel.rei.plugin.client.DefaultClientPlugin) [00:30:30] [main/WARN]: Error loading class: vectorwing/farmersdelight/client/renderer/HangingCanvasSignRenderer (java.lang.ClassNotFoundException: vectorwing.farmersdelight.client.renderer.HangingCanvasSignRenderer) [00:30:30] [main/WARN]: Error loading class: vectorwing/farmersdelight/client/renderer/CanvasSignRenderer (java.lang.ClassNotFoundException: vectorwing.farmersdelight.client.renderer.CanvasSignRenderer) [00:30:31] [main/WARN]: Error loading class: com/simibubi/create/content/kinetics/fan/AirCurrent (java.lang.ClassNotFoundException: com.simibubi.create.content.kinetics.fan.AirCurrent) [00:30:31] [main/WARN]: @Mixin target com.simibubi.create.content.kinetics.fan.AirCurrent was not found oreganized.mixins.json:compat.AirCurrentMixin from mod oreganized [00:30:31] [main/WARN]: Error loading class: com/simibubi/create/foundation/data/recipe/LogStrippingFakeRecipes (java.lang.ClassNotFoundException: com.simibubi.create.foundation.data.recipe.LogStrippingFakeRecipes) [00:30:31] [main/WARN]: @Mixin target com.simibubi.create.foundation.data.recipe.LogStrippingFakeRecipes was not found oreganized.mixins.json:compat.LogStrippingFakeRecipesMixin from mod oreganized [00:30:31] [main/WARN]: Error loading class: noobanidus/mods/lootr/config/ConfigManager (java.lang.ClassNotFoundException: noobanidus.mods.lootr.config.ConfigManager) [00:30:31] [main/WARN]: Error loading class: vectorwing/farmersdelight/common/block/TomatoVineBlock (java.lang.ClassNotFoundException: vectorwing.farmersdelight.common.block.TomatoVineBlock) [00:30:31] [main/WARN]: Error loading class: net/raphimc/immediatelyfast/feature/map_atlas_generation/MapAtlasTexture (java.lang.ClassNotFoundException: net.raphimc.immediatelyfast.feature.map_atlas_generation.MapAtlasTexture) [00:30:32] [main/WARN]: Error loading class: com/aetherteam/aether_genesis/client/renderer/entity/SkyrootMimicRenderer (java.lang.ClassNotFoundException: com.aetherteam.aether_genesis.client.renderer.entity.SkyrootMimicRenderer) [00:30:32] [main/WARN]: Error loading class: com/aetherteam/aether_genesis/client/renderer/entity/SkyrootMimicRenderer (java.lang.ClassNotFoundException: com.aetherteam.aether_genesis.client.renderer.entity.SkyrootMimicRenderer) [00:30:32] [main/WARN]: Error loading class: net/builderdog/ancient_aether/client/renderer/entity/FestiveSwetRenderer (java.lang.ClassNotFoundException: net.builderdog.ancient_aether.client.renderer.entity.FestiveSwetRenderer) [00:30:32] [main/WARN]: Error loading class: net/builderdog/ancient_aether/client/renderer/entity/FestiveSwetRenderer (java.lang.ClassNotFoundException: net.builderdog.ancient_aether.client.renderer.entity.FestiveSwetRenderer) [00:30:32] [main/WARN]: Error loading class: org/jetbrains/annotations/ApiStatus$Internal (java.lang.ClassNotFoundException: org.jetbrains.annotations.ApiStatus$Internal) [00:30:32] [main/INFO]: Initializing MixinExtras via com.llamalad7.mixinextras.service.MixinExtrasServiceImpl(version=0.4.1). [00:30:38] [pool-4-thread-1/FATAL]: Mixin apply for mod coolarmor failed mixins.coolarmor.json:ModMagmaBlock from mod coolarmor -> net.minecraft.world.level.block.MagmaBlock: org.spongepowered.asm.mixin.injection.throwables.InvalidInjectionException @At("INVOKE") on net/minecraft/world/level/block/MagmaBlock::stepOn with priority 1000 cannot inject into net/minecraft/world/level/block/MagmaBlock::m_141947_(Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/entity/Entity;)V merged by io.github.lieonlion.quad.mixin.MagmaBlockMixin with priority 1004 [PREINJECT Applicator Phase -> mixins.coolarmor.json:ModMagmaBlock from mod coolarmor -> Prepare Injections -> -> redirect$cpb000$coolarmor$stepOn(Lnet/minecraft/world/entity/LivingEntity;)Z -> Prepare] org.spongepowered.asm.mixin.injection.throwables.InvalidInjectionException: @At("INVOKE") on net/minecraft/world/level/block/MagmaBlock::stepOn with priority 1000 cannot inject into net/minecraft/world/level/block/MagmaBlock::m_141947_(Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/entity/Entity;)V merged by io.github.lieonlion.quad.mixin.MagmaBlockMixin with priority 1004 [PREINJECT Applicator Phase -> mixins.coolarmor.json:ModMagmaBlock from mod coolarmor -> Prepare Injections -> -> redirect$cpb000$coolarmor$stepOn(Lnet/minecraft/world/entity/LivingEntity;)Z -> Prepare] at org.spongepowered.asm.mixin.injection.code.Injector.findTargetNodes(Injector.java:305) ~[mixin-0.8.5.jar:0.8.5+Jenkins-b310.git-155314e6e91465dad727e621a569906a410cd6f4] at org.spongepowered.asm.mixin.injection.code.Injector.find(Injector.java:240) ~[mixin-0.8.5.jar:0.8.5+Jenkins-b310.git-155314e6e91465dad727e621a569906a410cd6f4] at org.spongepowered.asm.mixin.injection.struct.InjectionInfo.prepare(InjectionInfo.java:421) ~[mixin-0.8.5.jar:0.8.5+Jenkins-b310.git-155314e6e91465dad727e621a569906a410cd6f4] at org.spongepowered.asm.mixin.transformer.MixinTargetContext.prepareInjections(MixinTargetContext.java:1337) ~[mixin-0.8.5.jar:0.8.5+Jenkins-b310.git-155314e6e91465dad727e621a569906a410cd6f4] at org.spongepowered.asm.mixin.transformer.MixinApplicatorStandard.prepareInjections(MixinApplicatorStandard.java:1053) ~[mixin-0.8.5.jar:0.8.5+Jenkins-b310.git-155314e6e91465dad727e621a569906a410cd6f4] at org.spongepowered.asm.mixin.transformer.MixinApplicatorStandard.applyMixin(MixinApplicatorStandard.java:395) ~[mixin-0.8.5.jar:0.8.5+Jenkins-b310.git-155314e6e91465dad727e621a569906a410cd6f4] at org.spongepowered.asm.mixin.transformer.MixinApplicatorStandard.apply(MixinApplicatorStandard.java:327) ~[mixin-0.8.5.jar:0.8.5+Jenkins-b310.git-155314e6e91465dad727e621a569906a410cd6f4] at org.spongepowered.asm.mixin.transformer.TargetClassContext.apply(TargetClassContext.java:421) ~[mixin-0.8.5.jar:0.8.5+Jenkins-b310.git-155314e6e91465dad727e621a569906a410cd6f4] at org.spongepowered.asm.mixin.transformer.TargetClassContext.applyMixins(TargetClassContext.java:403) ~[mixin-0.8.5.jar:0.8.5+Jenkins-b310.git-155314e6e91465dad727e621a569906a410cd6f4] at org.spongepowered.asm.mixin.transformer.MixinProcessor.applyMixins(MixinProcessor.java:363) ~[mixin-0.8.5.jar:0.8.5+Jenkins-b310.git-155314e6e91465dad727e621a569906a410cd6f4] at org.spongepowered.asm.mixin.transformer.MixinTransformer.transformClass(MixinTransformer.java:250) ~[mixin-0.8.5.jar:0.8.5+Jenkins-b310.git-155314e6e91465dad727e621a569906a410cd6f4] at org.spongepowered.asm.service.modlauncher.MixinTransformationHandler.processClass(MixinTransformationHandler.java:131) ~[mixin-0.8.5.jar:0.8.5+Jenkins-b310.git-155314e6e91465dad727e621a569906a410cd6f4] at org.spongepowered.asm.launch.MixinLaunchPluginLegacy.processClass(MixinLaunchPluginLegacy.java:131) ~[mixin-0.8.5.jar:0.8.5+Jenkins-b310.git-155314e6e91465dad727e621a569906a410cd6f4] at cpw.mods.modlauncher.serviceapi.ILaunchPluginService.processClassWithFlags(ILaunchPluginService.java:156) ~[modlauncher-10.0.9.jar:10.0.9+10.0.9+main.dcd20f30] at cpw.mods.modlauncher.LaunchPluginHandler.offerClassNodeToPlugins(LaunchPluginHandler.java:88) ~[modlauncher-10.0.9.jar:?] at cpw.mods.modlauncher.ClassTransformer.transform(ClassTransformer.java:120) ~[modlauncher-10.0.9.jar:?] at cpw.mods.modlauncher.TransformingClassLoader.maybeTransformClassBytes(TransformingClassLoader.java:50) ~[modlauncher-10.0.9.jar:?] at cpw.mods.cl.ModuleClassLoader.readerToClass(ModuleClassLoader.java:113) ~[securejarhandler-2.1.10.jar:?] at cpw.mods.cl.ModuleClassLoader.lambda$findClass$15(ModuleClassLoader.java:219) ~[securejarhandler-2.1.10.jar:?] at cpw.mods.cl.ModuleClassLoader.loadFromModule(ModuleClassLoader.java:229) ~[securejarhandler-2.1.10.jar:?] at cpw.mods.cl.ModuleClassLoader.findClass(ModuleClassLoader.java:219) ~[securejarhandler-2.1.10.jar:?] at cpw.mods.cl.ModuleClassLoader.loadClass(ModuleClassLoader.java:135) ~[securejarhandler-2.1.10.jar:?] at java.lang.ClassLoader.loadClass(ClassLoader.java:525) ~[?:?] at net.minecraft.world.level.block.FireBlock.m_53484_(FireBlock.java:301) ~[client-1.20.1-20230612.114412-srg.jar%23618!/:?] at net.minecraft.server.Bootstrap.m_135870_(Bootstrap.java:46) ~[client-1.20.1-20230612.114412-srg.jar%23618!/:?] at net.minecraft.client.main.Main.lambda$main$0(Main.java:151) ~[client-1.20.1-20230612.114412-srg.jar%23618!/:?] at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) ~[?:?] at java.util.concurrent.FutureTask.run(FutureTask.java:264) ~[?:?] at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) ~[?:?] at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) ~[?:?] at java.lang.Thread.run(Thread.java:833) ~[?:?]
    • what I did to solve this issue was go to Microsoft and downloaded DirectX and it solved my issue. https://www.microsoft.com/en-us/download/details.aspx?id=35 heres the link to the website if you want to download it there. Hope this helps
    • It looks like Lodestone depends on Placebo from Curse Maven, but you don't have Curse Maven in your build script. As for why it's doing this I don't know, but you can add it here: https://www.cursemaven.com/ Read line 193 if your error log pastebin: Cause 1: org.gradle.internal.resolve.ModuleVersionNotFoundException: Could not find curse.maven:placebo-283644:5414631.
  • Topics

×
×
  • Create New...

Important Information

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