Jump to content

Recommended Posts

Posted

I tried taking my biome from 1.6 to 1.7, but got some errors with it. Here are the lines with errors:

 

CakeyMod.java:

 

public static BiomeGenBase ShroomBiome(58).setBiomeName("ShroomBiome").setMinMaxHeight(0.2F, 1F);

 

GameRegistry.addBiome(ShroomBiome);

 

 

ShroomBiome.java:

 

topBlock = (byte)CakeyMod.ShroomGrass.blockID;

 

fillerBlock = (byte)CakeyMod.ShroomGrass.blockID;

 

(I have got the ShroomGrass block working, so it can't be causing the errors in ShroomBiome.java.

Posted

Yup. Noticed it. My bad. But this doesn't work either:

 

public static BiomeGenBase ShroomBiome = new ShroomBiome(58).setBiomeName("ShroomBiome").setMinMaxHeight(0.2F, 1F);

 

It gives an error at "setMinMaxHeight"

Posted
  On 4/2/2014 at 4:02 PM, diesieben07 said:

As far as I understand the code the biomes are pretty much hard-coded into GenLayerBiome in 1.7, which is why GameRegistry.addBiome is currently removed.

There is a way though, even if its pretty hacky.

Listen to the

WorldTypeEvent.InitBiomeGens

event.

The way the low-level world-generation works is by multiple instances of the

GenLayer

class which recursively generate the terrain based on integers. Somewhere in the chain there is the GenLayerBiome which you need to find, based on the "final" GenLayers you get from the event. It will take some reflection hacks and stuff but it's possible.

Once you find the GenLayerBiome you can modify the BiomeGenBase arrays in it.

 

I am not sure if this is the only way at the moment, but to me it seems like it.

 

Your obviously on to something here, I really want to find out more about this. I just looked up the the array, I'm in the process of digging through it, but one thing I'm wondering is what accesses the GenLayerBiome. In theory if you make a new GenModdedLayerBiome you can add your new biomes into the array THEN access the new file through that. but it doesn't seem to use a specific method to use this. If you can shed more light on this that would be AWESOME. I want to figure this crap out so we can start making biomes again!

Posted

I feel like a pro now. I got it working!! No errors at the moment. Haven't just found my biome yet though and the generating is pretty laggy. I gotta leave for school now, but when i come back home I'll check if the biome is working and if it is, i can post the solution here and someone can make it even better. :)

Posted

If that works make sure you post a sample code here so others can read it and know how to as well! Also someone might be able to clean it up and even a make it render faster! Or better yet turn it into a tutorial! :D

Posted
  On 4/3/2014 at 4:41 PM, SkillCakey said:

Thank you!

 

Did you find your biome yet? I have no errors but I can't find my biome.

I did change one line of code, simply because there was no other way to go about this.

diamondBiome = new BiomeGenBase(245)

I changed to

diamondBiome = new DiamondBiome(245)

Should have then accessed it all and rendered... right?

Posted
  On 4/3/2014 at 9:49 PM, diesieben07 said:

If you look at the GenLayerBiome class you will see 4 Biome arrays. I am not 100% sure what each of them does. You should experiment a bit.

A few things.

The arrays in GenLayerBiome control the temperature. The new biomes have been reconstructed around the idea of temperate areas so, in theory, it is less likely that a desert will spawn near a snowy biome.

field_151623_c = Hot biomes (desert)

field_151623_d Temperate forest area (So forest biomes would go here)

field_151623_e Temperate Other (Hills, general biomes here)

field_151623_f Cold Biomes (Snowy tiaga ect.)

 

So most biomes really should go into e, however when I try anything BUT d (Which was the original field your code said) it throws the error. Is there something I'm missing? I feel like the biome is definitely in there... just I'm not getting it so I have two questions.

1) To change the array in your code I just change the field right? If so why would it error? It make no logical sense.

2) Is there a back door existing or one I can create to force the game to spawn in or near the biome I just created?

 

Thanks for all your help, you've helped us newbies more then you have to xD.

Posted

nevermind I feel stupid. The field name isn't as simple as just changing a letter, the field name has different numbers... freshmen mistake.

Now as far as the second portion of my question. Is there an easy way to test that my biome is in the game? Cause even changing the fields I can't seem to find it anywhere.

Posted
  On 4/4/2014 at 12:05 AM, diesieben07 said:

I'll say it again: I can't guarantee you that this method works. For finding your Biome in-game: I don't think there is a better way than just flying around.

YES IT DOES!!!!

I found it! You know what the problem was? I accidentally erased @EventHandler. You're the bomb! Thanks for being so patient! :)

Posted
  On 4/4/2014 at 12:20 AM, mrjoshiemoto said:

  Quote

I'll say it again: I can't guarantee you that this method works. For finding your Biome in-game: I don't think there is a better way than just flying around.

YES IT DOES!!!!

I found it! You know what the problem was? I accidentally erased @EventHandler. You're the bomb! Thanks for being so patient! :)

 

Hi.

I was following along with this to see if any major revelations were made in the getting biomes to work in 1.7. Was just wanting to ask you if you are declaring your new biomes any differently from 1.6? Or something different in the biome files themselves?

 

I have successfully managed to add in a new biome, but the name that pops up is "null" rather than the custom biome name I have set, and it is rather laggy. The only thing I figure is that I have missed something that wasn't mentioned in-topic, and I thought I would ask.

 

Thanks.

Posted

I would guess if you copied his code that you didn't actually do anything other then make a non-existent biome.

This should help in the

MinecraftForge.TERRAIN_GEN_BUS.register(this);

        TestBiome = (new TestBiome(56))[b][i].setBiomeName("Test Biome")[/i][/b].setHeight(height_LowPlains)
        
        {

        };	

i've put the .setbiomeName in bold because that is what names the biome. I'm not sure why it is laggy, mine isn't laggy and I've followed the code with only a few minor differences that shouldn't effect anything.

Posted

Turned out to be a rather stupid error with a misplaced bracket.

 

Woops.

 

Make that the second freshmen error made in this topic.

 

Thanks anyways!

Posted
  On 4/4/2014 at 12:30 AM, diesieben07 said:

Haha, glad that it worked :D

Hope you don't mind Im going to make a thread in the minecraft forums explaining how to do this,

Also we should have this thread solved! :)

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

    • Here is the crash report.   [11:26:36] [main/INFO]: ModLauncher running: args [--username, _Guidance_, --version, forge-47.4.0, --gameDir, C:\Users\Zents\curseforge\minecraft\Instances\Minecolonies, --assetsDir, C:\Users\Zents\curseforge\minecraft\Install\assets, --assetIndex, 5, --uuid, 6b4799c2eeab4e2ba6e2473d586297ab, --accessToken, ????????, --clientId, e13743-510e61-9c0ddc-bad528-10ab26b, --xuid, 2533275033702266, --userType, msa, --versionType, release, --width, 1920, --height, 1080, --launchTarget, forgeclient, --fml.forgeVersion, 47.4.0, --fml.mcVersion, 1.20.1, --fml.forgeGroup, net.minecraftforge, --fml.mcpVersion, 20230612.114412] [11:26:36] [main/INFO]: ModLauncher 10.0.9+10.0.9+main.dcd20f30 starting: java version 17.0.8 by Eclipse Adoptium; OS Windows 11 arch amd64 version 10.0 [11:26:37] [main/INFO]: Loading ImmediateWindowProvider fmlearlywindow [11:26:37] [main/INFO]: Trying GL version 4.6 [11:26:37] [main/INFO]: Requested GL version 4.6 got version 4.6 [11:26:37] [main/INFO]: SpongePowered MIXIN Subsystem Version=0.8.5 Source=union:/C:/Users/Zents/curseforge/minecraft/Install/libraries/org/spongepowered/mixin/0.8.5/mixin-0.8.5.jar%23100!/ Service=ModLauncher Env=CLIENT [11:26:38] [pool-2-thread-1/INFO]: GL info: NVIDIA GeForce RTX 3070 Ti/PCIe/SSE2 GL version 4.6.0 NVIDIA 572.83, NVIDIA Corporation [11:26:38] [main/INFO]: Found mod file alexsmobs-1.22.9.jar of type MOD with provider {mods folder locator at C:\Users\Zents\curseforge\minecraft\Instances\Minecolonies\mods} [11:26:38] [main/INFO]: Found mod file almanac-1.20.x-forge-1.0.2.jar of type MOD with provider {mods folder locator at C:\Users\Zents\curseforge\minecraft\Instances\Minecolonies\mods} [11:26:38] [main/INFO]: Found mod file amendments-1.20-1.2.19.jar of type MOD with provider {mods folder locator at C:\Users\Zents\curseforge\minecraft\Instances\Minecolonies\mods} [11:26:38] [main/INFO]: Found mod file ancient_golems-1.1.1-forge-1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\Zents\curseforge\minecraft\Instances\Minecolonies\mods} [11:26:38] [main/INFO]: Found mod file Aquaculture-1.20.1-2.5.5.jar of type MOD with provider {mods folder locator at C:\Users\Zents\curseforge\minecraft\Instances\Minecolonies\mods} [11:26:38] [main/INFO]: Found mod file aquamirae-6.API15.jar of type MOD with provider {mods folder locator at C:\Users\Zents\curseforge\minecraft\Instances\Minecolonies\mods} [11:26:38] [main/INFO]: Found mod file architectury-9.2.14-forge.jar of type MOD with provider {mods folder locator at C:\Users\Zents\curseforge\minecraft\Instances\Minecolonies\mods} [11:26:38] [main/INFO]: Found mod file ars_additions-1.20.1-1.6.7.jar of type MOD with provider {mods folder locator at C:\Users\Zents\curseforge\minecraft\Instances\Minecolonies\mods} [11:26:38] [main/INFO]: Found mod file ars_botania-1.0.0.jar of type MOD with provider {mods folder locator at C:\Users\Zents\curseforge\minecraft\Instances\Minecolonies\mods} [11:26:38] [main/INFO]: Found mod file ars_creo-1.20.1-4.1.0.jar of type MOD with provider {mods folder locator at C:\Users\Zents\curseforge\minecraft\Instances\Minecolonies\mods} [11:26:38] [main/INFO]: Found mod file ars_elemental-1.20.1-0.6.7.8.jar of type MOD with provider {mods folder locator at C:\Users\Zents\curseforge\minecraft\Instances\Minecolonies\mods} [11:26:38] [main/INFO]: Found mod file ars_nouveau-1.20.1-4.12.6-all.jar of type MOD with provider {mods folder locator at C:\Users\Zents\curseforge\minecraft\Instances\Minecolonies\mods} [11:26:38] [main/INFO]: Found mod file ars_ocultas-1.20.1-1.2.2-all.jar of type MOD with provider {mods folder locator at C:\Users\Zents\curseforge\minecraft\Instances\Minecolonies\mods} [11:26:38] [main/INFO]: Found mod file ars_technica-1.20.1-1.3.0-a4.jar of type MOD with provider {mods folder locator at C:\Users\Zents\curseforge\minecraft\Instances\Minecolonies\mods} [11:26:38] [main/INFO]: Found mod file artifacts-forge-9.5.16.jar of type MOD with provider {mods folder locator at C:\Users\Zents\curseforge\minecraft\Instances\Minecolonies\mods} [11:26:38] [main/INFO]: Found mod file Atlas Lib-1.20.1-1.1.12.jar of type MOD with provider {mods folder locator at C:\Users\Zents\curseforge\minecraft\Instances\Minecolonies\mods} [11:26:38] [main/INFO]: Found mod file balm-forge-1.20.1-7.3.29-all.jar of type MOD with provider {mods folder locator at C:\Users\Zents\curseforge\minecraft\Instances\Minecolonies\mods} [11:26:38] [main/INFO]: Found mod file bellsandwhistles-0.4.3-1.20.x.jar of type MOD with provider {mods folder locator at C:\Users\Zents\curseforge\minecraft\Instances\Minecolonies\mods} [11:26:38] [main/INFO]: Found mod file betterwithminecolonies-1.20-1.19.19.jar of type MOD with provider {mods folder locator at C:\Users\Zents\curseforge\minecraft\Instances\Minecolonies\mods} [11:26:38] [main/INFO]: Found mod file blockui-1.20.1-1.0.190-snapshot.jar of type MOD with provider {mods folder locator at C:\Users\Zents\curseforge\minecraft\Instances\Minecolonies\mods} [11:26:38] [main/INFO]: Found mod file blue_skies-1.20.1-1.3.31.jar of type MOD with provider {mods folder locator at C:\Users\Zents\curseforge\minecraft\Instances\Minecolonies\mods} [11:26:38] [main/INFO]: Found mod file blueprint-1.20.1-7.1.3.jar of type MOD with provider {mods folder locator at C:\Users\Zents\curseforge\minecraft\Instances\Minecolonies\mods} [11:26:38] [main/INFO]: Found mod file Botania-1.20.1-448-FORGE.jar of type MOD with provider {mods folder locator at C:\Users\Zents\curseforge\minecraft\Instances\Minecolonies\mods} [11:26:38] [main/INFO]: Found mod file Byzantine-1.21.1-32.1.jar of type MOD with provider {mods folder locator at C:\Users\Zents\curseforge\minecraft\Instances\Minecolonies\mods} [11:26:38] [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\Zents\curseforge\minecraft\Instances\Minecolonies\mods} [11:26:38] [main/INFO]: Found mod file citadel-2.6.1-1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\Zents\curseforge\minecraft\Instances\Minecolonies\mods} [11:26:38] [main/INFO]: Found mod file cloth-config-11.1.136-forge.jar of type MOD with provider {mods folder locator at C:\Users\Zents\curseforge\minecraft\Instances\Minecolonies\mods} [11:26:38] [main/INFO]: Found mod file Clumps-forge-1.20.1-12.0.0.4.jar of type MOD with provider {mods folder locator at C:\Users\Zents\curseforge\minecraft\Instances\Minecolonies\mods} [11:26:38] [main/INFO]: Found mod file CNB-1.20.1-1.5.8.jar of type MOD with provider {mods folder locator at C:\Users\Zents\curseforge\minecraft\Instances\Minecolonies\mods} [11:26:38] [main/INFO]: Found mod file create-1.20.1-0.5.1.j.jar of type MOD with provider {mods folder locator at C:\Users\Zents\curseforge\minecraft\Instances\Minecolonies\mods} [11:26:38] [main/INFO]: Found mod file Create-DnDesire-1.20.1-0.1b.Release-Early-Dev.jar of type MOD with provider {mods folder locator at C:\Users\Zents\curseforge\minecraft\Instances\Minecolonies\mods} [11:26:38] [main/INFO]: Found mod file create-stuff-additions1.20.1_v2.1.0.jar of type MOD with provider {mods folder locator at C:\Users\Zents\curseforge\minecraft\Instances\Minecolonies\mods} [11:26:38] [main/INFO]: Found mod file create_blue_skies_compat-forge-1.20.1-1.0.1.jar of type MOD with provider {mods folder locator at C:\Users\Zents\curseforge\minecraft\Instances\Minecolonies\mods} [11:26:38] [main/INFO]: Found mod file create_structures_arise-158.31.30-forge-1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\Zents\curseforge\minecraft\Instances\Minecolonies\mods} [11:26:38] [main/INFO]: Found mod file create_waystones_recipes-1.0.1.b.jar of type MOD with provider {mods folder locator at C:\Users\Zents\curseforge\minecraft\Instances\Minecolonies\mods} [11:26:38] [main/INFO]: Found mod file createaddition-1.20.1-1.2.5.jar of type MOD with provider {mods folder locator at C:\Users\Zents\curseforge\minecraft\Instances\Minecolonies\mods} [11:26:38] [main/INFO]: Found mod file CreateCasing-1.20.1-1.6.2-fix3.jar of type MOD with provider {mods folder locator at C:\Users\Zents\curseforge\minecraft\Instances\Minecolonies\mods} [11:26:38] [main/INFO]: Found mod file createchunkloading-1.6.0-forge.jar of type MOD with provider {mods folder locator at C:\Users\Zents\curseforge\minecraft\Instances\Minecolonies\mods} [11:26:38] [main/INFO]: Found mod file createcontraptionterminals-1.20-1.1.0.jar of type MOD with provider {mods folder locator at C:\Users\Zents\curseforge\minecraft\Instances\Minecolonies\mods} [11:26:38] [main/INFO]: Found mod file createdeco-2.0.2-1.20.1-forge.jar of type MOD with provider {mods folder locator at C:\Users\Zents\curseforge\minecraft\Instances\Minecolonies\mods} [11:26:38] [main/INFO]: Found mod file createoreexcavation-1.20-1.5.3.jar of type MOD with provider {mods folder locator at C:\Users\Zents\curseforge\minecraft\Instances\Minecolonies\mods} [11:26:38] [main/INFO]: Found mod file cristellib-1.1.6-forge.jar of type MOD with provider {mods folder locator at C:\Users\Zents\curseforge\minecraft\Instances\Minecolonies\mods} [11:26:38] [main/INFO]: Found mod file curios-forge-5.14.1+1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\Zents\curseforge\minecraft\Instances\Minecolonies\mods} [11:26:38] [main/INFO]: Found mod file domum_ornamentum-1.20.1-1.0.186-RELEASE-universal.jar of type MOD with provider {mods folder locator at C:\Users\Zents\curseforge\minecraft\Instances\Minecolonies\mods} [11:26:38] [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\Zents\curseforge\minecraft\Instances\Minecolonies\mods} [11:26:38] [main/INFO]: Found mod file dungeons_enhanced-1.20.1-5.4.0.jar of type MOD with provider {mods folder locator at C:\Users\Zents\curseforge\minecraft\Instances\Minecolonies\mods} [11:26:38] [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\Zents\curseforge\minecraft\Instances\Minecolonies\mods} [11:26:38] [main/INFO]: Found mod file dynamicvillage-v0.4-1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\Zents\curseforge\minecraft\Instances\Minecolonies\mods} [11:26:38] [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\Zents\curseforge\minecraft\Instances\Minecolonies\mods} [11:26:38] [main/INFO]: Found mod file entityculling-forge-1.7.4-mc1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\Zents\curseforge\minecraft\Instances\Minecolonies\mods} [11:26:38] [main/INFO]: Found mod file EuphoriaPatcher-1.6.2-r5.5.1-forge.jar of type MOD with provider {mods folder locator at C:\Users\Zents\curseforge\minecraft\Instances\Minecolonies\mods} [11:26:38] [main/INFO]: Found mod file Explorify v1.6.2 f10-48.jar of type MOD with provider {mods folder locator at C:\Users\Zents\curseforge\minecraft\Instances\Minecolonies\mods} [11:26:38] [main/INFO]: Found mod file fallingtrees-forge-mc1.20-0.13.2-SNAPSHOT.jar of type MOD with provider {mods folder locator at C:\Users\Zents\curseforge\minecraft\Instances\Minecolonies\mods} [11:26:38] [main/INFO]: Found mod file FarmersDelight-1.20.1-1.2.7.jar of type MOD with provider {mods folder locator at C:\Users\Zents\curseforge\minecraft\Instances\Minecolonies\mods} [11:26:38] [main/INFO]: Found mod file formations-1.0.3-forge-mc1.20.2.jar of type MOD with provider {mods folder locator at C:\Users\Zents\curseforge\minecraft\Instances\Minecolonies\mods} [11:26:38] [main/INFO]: Found mod file formationsnether-1.0.5.jar of type MOD with provider {mods folder locator at C:\Users\Zents\curseforge\minecraft\Instances\Minecolonies\mods} [11:26:38] [main/INFO]: Found mod file framework-forge-1.20.1-0.7.15.jar of type MOD with provider {mods folder locator at C:\Users\Zents\curseforge\minecraft\Instances\Minecolonies\mods} [11:26:38] [main/INFO]: Found mod file ftb-library-forge-2001.2.9.jar of type MOD with provider {mods folder locator at C:\Users\Zents\curseforge\minecraft\Instances\Minecolonies\mods} [11:26:38] [main/INFO]: Found mod file ftb-teams-forge-2001.3.1.jar of type MOD with provider {mods folder locator at C:\Users\Zents\curseforge\minecraft\Instances\Minecolonies\mods} [11:26:38] [main/INFO]: Found mod file Gamma_creatures-1.2.2_forge_1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\Zents\curseforge\minecraft\Instances\Minecolonies\mods} [11:26:38] [main/INFO]: Found mod file geckolib-forge-1.20.1-4.7.1.2.jar of type MOD with provider {mods folder locator at C:\Users\Zents\curseforge\minecraft\Instances\Minecolonies\mods} [11:26:38] [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\Zents\curseforge\minecraft\Instances\Minecolonies\mods} [11:26:38] [main/INFO]: Found mod file iceandfire-2.1.13-1.20.1-beta-5.jar of type MOD with provider {mods folder locator at C:\Users\Zents\curseforge\minecraft\Instances\Minecolonies\mods} [11:26:38] [main/INFO]: Found mod file immersive_aircraft-1.2.2+1.20.1-forge.jar of type MOD with provider {mods folder locator at C:\Users\Zents\curseforge\minecraft\Instances\Minecolonies\mods} [11:26:38] [main/INFO]: Found mod file immersive_armors-1.7.0+1.20.1-forge.jar of type MOD with provider {mods folder locator at C:\Users\Zents\curseforge\minecraft\Instances\Minecolonies\mods} [11:26:38] [main/INFO]: Found mod file ImmersiveEngineering-1.20.1-10.2.0-183.jar of type MOD with provider {mods folder locator at C:\Users\Zents\curseforge\minecraft\Instances\Minecolonies\mods} [11:26:38] [main/INFO]: Found mod file integrated_api-1.5.3+1.20.1-forge.jar of type MOD with provider {mods folder locator at C:\Users\Zents\curseforge\minecraft\Instances\Minecolonies\mods} [11:26:38] [main/INFO]: Found mod file integrated_cataclysm_forge-1.0.4+1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\Zents\curseforge\minecraft\Instances\Minecolonies\mods} [11:26:38] [main/INFO]: Found mod file interiors-0.5.6+forge-mc1.20.1-build.104.jar of type MOD with provider {mods folder locator at C:\Users\Zents\curseforge\minecraft\Instances\Minecolonies\mods} [11:26:38] [main/INFO]: Found mod file Jade-1.20.1-Forge-11.13.1.jar of type MOD with provider {mods folder locator at C:\Users\Zents\curseforge\minecraft\Instances\Minecolonies\mods} [11:26:38] [main/INFO]: Found mod file jei-1.20.1-forge-15.20.0.106.jar of type MOD with provider {mods folder locator at C:\Users\Zents\curseforge\minecraft\Instances\Minecolonies\mods} [11:26:38] [main/INFO]: Found mod file justzoom_forge_2.1.1_MC_1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\Zents\curseforge\minecraft\Instances\Minecolonies\mods} [11:26:38] [main/INFO]: Found mod file konkrete_forge_1.8.0_MC_1.20-1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\Zents\curseforge\minecraft\Instances\Minecolonies\mods} [11:26:38] [main/INFO]: Found mod file l2library-2.5.1.jar of type MOD with provider {mods folder locator at C:\Users\Zents\curseforge\minecraft\Instances\Minecolonies\mods} [11:26:38] [main/INFO]: Found mod file L_Enders_Cataclysm 1.20.1-2.66.jar of type MOD with provider {mods folder locator at C:\Users\Zents\curseforge\minecraft\Instances\Minecolonies\mods} [11:26:38] [main/INFO]: Found mod file legendarycreatures-1.20.1-1.0.15.jar of type MOD with provider {mods folder locator at C:\Users\Zents\curseforge\minecraft\Instances\Minecolonies\mods} [11:26:38] [main/INFO]: Found mod file letmedespawn-1.20.x-forge-1.5.0.jar of type MOD with provider {mods folder locator at C:\Users\Zents\curseforge\minecraft\Instances\Minecolonies\mods} [11:26:38] [main/INFO]: Found mod file lionfishapi-2.4-Fix.jar of type MOD with provider {mods folder locator at C:\Users\Zents\curseforge\minecraft\Instances\Minecolonies\mods} [11:26:38] [main/INFO]: Found mod file lootbeams-1.20.1-1.2.6.jar of type MOD with provider {mods folder locator at C:\Users\Zents\curseforge\minecraft\Instances\Minecolonies\mods} [11:26:38] [main/INFO]: Found mod file lootr-forge-1.20-0.7.35.91.jar of type MOD with provider {mods folder locator at C:\Users\Zents\curseforge\minecraft\Instances\Minecolonies\mods} [11:26:38] [main/INFO]: Found mod file MAtmos-7.1-forge-1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\Zents\curseforge\minecraft\Instances\Minecolonies\mods} [11:26:38] [main/INFO]: Found mod file mcw-bridges-3.1.0-mc1.20.1forge.jar of type MOD with provider {mods folder locator at C:\Users\Zents\curseforge\minecraft\Instances\Minecolonies\mods} [11:26:38] [main/INFO]: Found mod file mcw-doors-1.1.2-mc1.20.1forge.jar of type MOD with provider {mods folder locator at C:\Users\Zents\curseforge\minecraft\Instances\Minecolonies\mods} [11:26:38] [main/INFO]: Found mod file mcw-fences-1.2.0-1.20.1forge.jar of type MOD with provider {mods folder locator at C:\Users\Zents\curseforge\minecraft\Instances\Minecolonies\mods} [11:26:38] [main/INFO]: Found mod file mcw-trapdoors-1.1.4-mc1.20.1forge.jar of type MOD with provider {mods folder locator at C:\Users\Zents\curseforge\minecraft\Instances\Minecolonies\mods} [11:26:38] [main/INFO]: Found mod file mcw-windows-2.3.0-mc1.20.1forge.jar of type MOD with provider {mods folder locator at C:\Users\Zents\curseforge\minecraft\Instances\Minecolonies\mods} [11:26:38] [main/INFO]: Found mod file minecolonies-1.20.1-1.1.891-snapshot.jar of type MOD with provider {mods folder locator at C:\Users\Zents\curseforge\minecraft\Instances\Minecolonies\mods} [11:26:38] [main/INFO]: Found mod file MineColonies_Compatibility-1.20.1-2.74.jar of type MOD with provider {mods folder locator at C:\Users\Zents\curseforge\minecraft\Instances\Minecolonies\mods} [11:26:38] [main/INFO]: Found mod file MineColonies_Hordes-1.20.1-1.0.jar of type MOD with provider {mods folder locator at C:\Users\Zents\curseforge\minecraft\Instances\Minecolonies\mods} [11:26:38] [main/INFO]: Found mod file MineColonies_Tweaks-1.20.1-2.65-all.jar of type MOD with provider {mods folder locator at C:\Users\Zents\curseforge\minecraft\Instances\Minecolonies\mods} [11:26:38] [main/INFO]: Found mod file minecolonytax-2.0.1.jar of type MOD with provider {mods folder locator at C:\Users\Zents\curseforge\minecraft\Instances\Minecolonies\mods} [11:26:38] [main/INFO]: Found mod file mixininheaven-mc1.17.1-1.20-v0.0.1-hotfix.jar of type MOD with provider {mods folder locator at C:\Users\Zents\curseforge\minecraft\Instances\Minecolonies\mods} [11:26:38] [main/INFO]: Found mod file modernfix-forge-5.22.0+mc1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\Zents\curseforge\minecraft\Instances\Minecolonies\mods} [11:26:38] [main/INFO]: Found mod file modonomicon-1.20.1-forge-1.77.6.jar of type MOD with provider {mods folder locator at C:\Users\Zents\curseforge\minecraft\Instances\Minecolonies\mods} [11:26:38] [main/INFO]: Found mod file modulargolems-2.5.19.jar of type MOD with provider {mods folder locator at C:\Users\Zents\curseforge\minecraft\Instances\Minecolonies\mods} [11:26:38] [main/INFO]: Found mod file moonlight-1.20-2.14.1-forge.jar of type MOD with provider {mods folder locator at C:\Users\Zents\curseforge\minecraft\Instances\Minecolonies\mods} [11:26:38] [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\Zents\curseforge\minecraft\Instances\Minecolonies\mods} [11:26:38] [main/INFO]: Found mod file mowzies_cataclysm-1.2.0.jar of type MOD with provider {mods folder locator at C:\Users\Zents\curseforge\minecraft\Instances\Minecolonies\mods} [11:26:38] [main/INFO]: Found mod file mowziesmobs-1.7.2.jar of type MOD with provider {mods folder locator at C:\Users\Zents\curseforge\minecraft\Instances\Minecolonies\mods} [11:26:38] [main/INFO]: Found mod file multipiston-1.20-1.2.43-RELEASE.jar of type MOD with provider {mods folder locator at C:\Users\Zents\curseforge\minecraft\Instances\Minecolonies\mods} [11:26:38] [main/INFO]: Found mod file NaturesCompass-1.20.1-1.11.2-forge.jar of type MOD with provider {mods folder locator at C:\Users\Zents\curseforge\minecraft\Instances\Minecolonies\mods} [11:26:38] [main/INFO]: Found mod file noisium-forge-2.3.0+mc1.20-1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\Zents\curseforge\minecraft\Instances\Minecolonies\mods} [11:26:38] [main/INFO]: Found mod file obscure_api-15.jar of type MOD with provider {mods folder locator at C:\Users\Zents\curseforge\minecraft\Instances\Minecolonies\mods} [11:26:38] [main/INFO]: Found mod file occultism-1.20.1-1.141.4.jar of type MOD with provider {mods folder locator at C:\Users\Zents\curseforge\minecraft\Instances\Minecolonies\mods} [11:26:38] [main/INFO]: Found mod file oculus-flywheel-compat-forge1.20.1+1.1.2.jar of type MOD with provider {mods folder locator at C:\Users\Zents\curseforge\minecraft\Instances\Minecolonies\mods} [11:26:38] [main/INFO]: Found mod file oculus-mc1.20.1-1.8.0.jar of type MOD with provider {mods folder locator at C:\Users\Zents\curseforge\minecraft\Instances\Minecolonies\mods} [11:26:38] [main/INFO]: Found mod file pandalib-forge-mc1.20-0.5.2-SNAPSHOT.jar of type MOD with provider {mods folder locator at C:\Users\Zents\curseforge\minecraft\Instances\Minecolonies\mods} [11:26:38] [main/INFO]: Found mod file particular-1.20.1-Forge-1.2.1.jar of type MOD with provider {mods folder locator at C:\Users\Zents\curseforge\minecraft\Instances\Minecolonies\mods} [11:26:38] [main/INFO]: Found mod file Patchouli-1.20.1-84.1-FORGE.jar of type MOD with provider {mods folder locator at C:\Users\Zents\curseforge\minecraft\Instances\Minecolonies\mods} [11:26:38] [main/INFO]: Found mod file Quark-4.0-462.jar of type MOD with provider {mods folder locator at C:\Users\Zents\curseforge\minecraft\Instances\Minecolonies\mods} [11:26:38] [main/INFO]: Found mod file realmrpg_dragon_wyrms_1.0.1_forge_1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\Zents\curseforge\minecraft\Instances\Minecolonies\mods} [11:26:38] [main/INFO]: Found mod file RegionsUnexploredForge-0.5.6+1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\Zents\curseforge\minecraft\Instances\Minecolonies\mods} [11:26:38] [main/INFO]: Found mod file ScorchedGuns-0.4.1-1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\Zents\curseforge\minecraft\Instances\Minecolonies\mods} [11:26:38] [main/INFO]: Found mod file SereneSeasons-forge-1.20.1-9.1.0.2.jar of type MOD with provider {mods folder locator at C:\Users\Zents\curseforge\minecraft\Instances\Minecolonies\mods} [11:26:38] [main/INFO]: Found mod file simplyswords-forge-1.56.0-1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\Zents\curseforge\minecraft\Instances\Minecolonies\mods} [11:26:38] [main/INFO]: Found mod file skinlayers3d-forge-1.7.5-mc1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\Zents\curseforge\minecraft\Instances\Minecolonies\mods} [11:26:38] [main/INFO]: Found mod file SmartBrainLib-forge-1.20.1-1.15.jar of type MOD with provider {mods folder locator at C:\Users\Zents\curseforge\minecraft\Instances\Minecolonies\mods} [11:26:38] [main/INFO]: Found mod file sophisticatedbackpacks-1.20.1-3.23.17.1246.jar of type MOD with provider {mods folder locator at C:\Users\Zents\curseforge\minecraft\Instances\Minecolonies\mods} [11:26:38] [main/INFO]: Found mod file sophisticatedcore-1.20.1-1.2.59.984.jar of type MOD with provider {mods folder locator at C:\Users\Zents\curseforge\minecraft\Instances\Minecolonies\mods} [11:26:38] [main/INFO]: Found mod file sound-physics-remastered-forge-1.20.1-1.4.13.jar of type MOD with provider {mods folder locator at C:\Users\Zents\curseforge\minecraft\Instances\Minecolonies\mods} [11:26:38] [main/INFO]: Found mod file stalwart-dungeons-1.20.1-1.2.8.jar of type MOD with provider {mods folder locator at C:\Users\Zents\curseforge\minecraft\Instances\Minecolonies\mods} [11:26:38] [main/INFO]: Found mod file Steam_Rails-1.6.6+forge-mc1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\Zents\curseforge\minecraft\Instances\Minecolonies\mods} [11:26:38] [main/INFO]: Found mod file StorageDrawers-1.20.1-12.9.13.jar of type MOD with provider {mods folder locator at C:\Users\Zents\curseforge\minecraft\Instances\Minecolonies\mods} [11:26:38] [main/INFO]: Found mod file Structory_1.20.x_v1.3.5.jar of type MOD with provider {mods folder locator at C:\Users\Zents\curseforge\minecraft\Instances\Minecolonies\mods} [11:26:38] [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\Zents\curseforge\minecraft\Instances\Minecolonies\mods} [11:26:38] [main/INFO]: Found mod file structurize-1.20.1-1.0.772-snapshot.jar of type MOD with provider {mods folder locator at C:\Users\Zents\curseforge\minecraft\Instances\Minecolonies\mods} [11:26:38] [main/INFO]: Found mod file stylecolonies-1.13-1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\Zents\curseforge\minecraft\Instances\Minecolonies\mods} [11:26:38] [main/INFO]: Found mod file supplementaries-1.20-3.1.18.jar of type MOD with provider {mods folder locator at C:\Users\Zents\curseforge\minecraft\Instances\Minecolonies\mods} [11:26:38] [main/INFO]: Found mod file TCTcore-1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\Zents\curseforge\minecraft\Instances\Minecolonies\mods} [11:26:38] [main/INFO]: Found mod file TerraBlender-forge-1.20.1-3.0.1.10.jar of type MOD with provider {mods folder locator at C:\Users\Zents\curseforge\minecraft\Instances\Minecolonies\mods} [11:26:38] [main/INFO]: Found mod file The-Hordes-1.20.1-1.5.4.jar of type MOD with provider {mods folder locator at C:\Users\Zents\curseforge\minecraft\Instances\Minecolonies\mods} [11:26:38] [main/INFO]: Found mod file tombstone-1.20.1-8.9.4.jar of type MOD with provider {mods folder locator at C:\Users\Zents\curseforge\minecraft\Instances\Minecolonies\mods} [11:26:38] [main/INFO]: Found mod file toms_storage-1.20-1.7.1.jar of type MOD with provider {mods folder locator at C:\Users\Zents\curseforge\minecraft\Instances\Minecolonies\mods} [11:26:38] [main/INFO]: Found mod file Towns-and-Towers-1.12-Fabric+Forge.jar of type MOD with provider {mods folder locator at C:\Users\Zents\curseforge\minecraft\Instances\Minecolonies\mods} [11:26:38] [main/INFO]: Found mod file towntalk-1.20.1-1.1.0.jar of type MOD with provider {mods folder locator at C:\Users\Zents\curseforge\minecraft\Instances\Minecolonies\mods} [11:26:38] [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\Zents\curseforge\minecraft\Instances\Minecolonies\mods} [11:26:38] [main/INFO]: Found mod file underground_rooms-1.9.3.jar of type MOD with provider {mods folder locator at C:\Users\Zents\curseforge\minecraft\Instances\Minecolonies\mods} [11:26:38] [main/INFO]: Found mod file upgrade_aquatic-1.20.1-6.0.3.jar of type MOD with provider {mods folder locator at C:\Users\Zents\curseforge\minecraft\Instances\Minecolonies\mods} [11:26:38] [main/INFO]: Found mod file waystones-forge-1.20.1-14.1.12.jar of type MOD with provider {mods folder locator at C:\Users\Zents\curseforge\minecraft\Instances\Minecolonies\mods} [11:26:38] [main/INFO]: Found mod file xptome-1.20.1-2.2.1.jar of type MOD with provider {mods folder locator at C:\Users\Zents\curseforge\minecraft\Instances\Minecolonies\mods} [11:26:38] [main/INFO]: Found mod file YeetusExperimentus-Forge-2.3.1-build.6+mc1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\Zents\curseforge\minecraft\Instances\Minecolonies\mods} [11:26:38] [main/INFO]: Found mod file YungsApi-1.20-Forge-4.0.6.jar of type MOD with provider {mods folder locator at C:\Users\Zents\curseforge\minecraft\Instances\Minecolonies\mods} [11:26:38] [main/INFO]: Found mod file YungsBetterDungeons-1.20-Forge-4.0.4.jar of type MOD with provider {mods folder locator at C:\Users\Zents\curseforge\minecraft\Instances\Minecolonies\mods} [11:26:38] [main/INFO]: Found mod file YungsBetterEndIsland-1.20-Forge-2.0.6.jar of type MOD with provider {mods folder locator at C:\Users\Zents\curseforge\minecraft\Instances\Minecolonies\mods} [11:26:38] [main/INFO]: Found mod file YungsBetterMineshafts-1.20-Forge-4.0.4.jar of type MOD with provider {mods folder locator at C:\Users\Zents\curseforge\minecraft\Instances\Minecolonies\mods} [11:26:38] [main/INFO]: Found mod file YungsBetterNetherFortresses-1.20-Forge-2.0.6.jar of type MOD with provider {mods folder locator at C:\Users\Zents\curseforge\minecraft\Instances\Minecolonies\mods} [11:26:38] [main/INFO]: Found mod file YungsBetterOceanMonuments-1.20-Forge-3.0.4.jar of type MOD with provider {mods folder locator at C:\Users\Zents\curseforge\minecraft\Instances\Minecolonies\mods} [11:26:38] [main/INFO]: Found mod file YungsBetterStrongholds-1.20-Forge-4.0.3.jar of type MOD with provider {mods folder locator at C:\Users\Zents\curseforge\minecraft\Instances\Minecolonies\mods} [11:26:38] [main/INFO]: Found mod file Zeta-1.0-30.jar of type MOD with provider {mods folder locator at C:\Users\Zents\curseforge\minecraft\Instances\Minecolonies\mods} [11:26:38] [main/WARN]: Mod file C:\Users\Zents\curseforge\minecraft\Install\libraries\net\minecraftforge\fmlcore\1.20.1-47.4.0\fmlcore-1.20.1-47.4.0.jar is missing mods.toml file [11:26:38] [main/WARN]: Mod file C:\Users\Zents\curseforge\minecraft\Install\libraries\net\minecraftforge\javafmllanguage\1.20.1-47.4.0\javafmllanguage-1.20.1-47.4.0.jar is missing mods.toml file [11:26:38] [main/WARN]: Mod file C:\Users\Zents\curseforge\minecraft\Install\libraries\net\minecraftforge\lowcodelanguage\1.20.1-47.4.0\lowcodelanguage-1.20.1-47.4.0.jar is missing mods.toml file [11:26:38] [main/WARN]: Mod file C:\Users\Zents\curseforge\minecraft\Install\libraries\net\minecraftforge\mclanguage\1.20.1-47.4.0\mclanguage-1.20.1-47.4.0.jar is missing mods.toml file [11:26:38] [main/INFO]: Found mod file fmlcore-1.20.1-47.4.0.jar of type LIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.MinecraftLocator@5ca1f591 [11:26:38] [main/INFO]: Found mod file javafmllanguage-1.20.1-47.4.0.jar of type LANGPROVIDER with provider net.minecraftforge.fml.loading.moddiscovery.MinecraftLocator@5ca1f591 [11:26:38] [main/INFO]: Found mod file lowcodelanguage-1.20.1-47.4.0.jar of type LANGPROVIDER with provider net.minecraftforge.fml.loading.moddiscovery.MinecraftLocator@5ca1f591 [11:26:38] [main/INFO]: Found mod file mclanguage-1.20.1-47.4.0.jar of type LANGPROVIDER with provider net.minecraftforge.fml.loading.moddiscovery.MinecraftLocator@5ca1f591 [11:26:38] [main/INFO]: Found mod file client-1.20.1-20230612.114412-srg.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.MinecraftLocator@5ca1f591 [11:26:38] [main/INFO]: Found mod file forge-1.20.1-47.4.0-universal.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.MinecraftLocator@5ca1f591 [11:26:38] [main/WARN]: Attempted to select two dependency jars from JarJar which have the same identification: Mod File:  and Mod File: . Using Mod File:  [11:26:38] [main/WARN]: Attempted to select a dependency jar for JarJar which was passed in as source: geckolib. Using Mod File: C:\Users\Zents\curseforge\minecraft\Instances\Minecolonies\mods\geckolib-forge-1.20.1-4.7.1.2.jar [11:26:38] [main/INFO]: Found 22 dependencies adding them to mods collection [11:26:38] [main/INFO]: Found mod file l2screentracker-0.1.4.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@3baf6936 [11:26:38] [main/INFO]: Found mod file kuma-api-forge-20.1.10+1.20.1.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@3baf6936 [11:26:38] [main/INFO]: Found mod file mixinextras-forge-0.4.1.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@3baf6936 [11:26:38] [main/INFO]: Found mod file l2modularblock-1.1.0.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@3baf6936 [11:26:38] [main/INFO]: Found mod file mob_weapon_api-0.2.5.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@3baf6936 [11:26:38] [main/INFO]: Found mod file l2tabs-0.3.3.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@3baf6936 [11:26:38] [main/INFO]: Found mod file commonmark-ext-gfm-strikethrough-0.24.0.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@3baf6936 [11:26:38] [main/INFO]: Found mod file MathParser.org-mXparser-5.2.1.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@3baf6936 [11:26:38] [main/INFO]: Found mod file jankson-1.2.3.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@3baf6936 [11:26:38] [main/INFO]: Found mod file mixinsquared-forge-0.1.2-beta.6.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@3baf6936 [11:26:38] [main/INFO]: Found mod file Registrate-MC1.20-1.3.11.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@3baf6936 [11:26:38] [main/INFO]: Found mod file l2itemselector-0.1.9.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@3baf6936 [11:26:38] [main/INFO]: Found mod file l2serial-1.2.2.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@3baf6936 [11:26:38] [main/INFO]: Found mod file mclib-20.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@3baf6936 [11:26:38] [main/INFO]: Found mod file l2damagetracker-0.3.7.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@3baf6936 [11:26:38] [main/INFO]: Found mod file commonmark-0.24.0.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@3baf6936 [11:26:38] [main/INFO]: Found mod file expandability-forge-9.0.4.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@3baf6936 [11:26:38] [main/INFO]: Found mod file commonmark-ext-ins-0.24.0.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@3baf6936 [11:26:38] [main/INFO]: Found mod file flywheel-forge-1.20.1-0.6.11-13.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@3baf6936 [11:26:38] [main/INFO]: Found mod file MixinSquared-0.1.2-beta.6.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@3baf6936 [11:26:38] [main/INFO]: Found mod file MixinExtras-0.4.1.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@3baf6936 [11:26:38] [main/INFO]: Found mod file jcpp-1.4.14.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@3baf6936 [11:26:41] [main/INFO]: Compatibility level set to JAVA_17 [11:26:41] [main/INFO]: Successfully loaded Mixin Connector [com.sonicether.soundphysics.MixinConnector] [11:26:41] [main/INFO]: Launching target 'forgeclient' with arguments [--version, forge-47.4.0, --gameDir, C:\Users\Zents\curseforge\minecraft\Instances\Minecolonies, --assetsDir, C:\Users\Zents\curseforge\minecraft\Install\assets, --uuid, 6b4799c2eeab4e2ba6e2473d586297ab, --username, _Guidance_, --assetIndex, 5, --accessToken, ????????, --clientId, e13743-510e61-9c0ddc-bad528-10ab26b, --xuid, 2533275033702266, --userType, msa, --versionType, release, --width, 1920, --height, 1080] [11:26:41] [main/WARN]: Reference map 'createdeco-forge-refmap.json' for createdeco.mixins.json could not be read. If this is a development environment you can ignore this message [11:26:42] [main/INFO]: Loaded configuration file for ModernFix 5.22.0+mc1.20.1: 94 options available, 0 override(s) found [11:26:42] [main/INFO]: Applying Nashorn fix [11:26:42] [main/INFO]: Applied Forge config corruption patch [11:26:42] [main/WARN]: Reference map 'integrated_cataclysm.refmap.json' for integrated_cataclysm.mixins.json could not be read. If this is a development environment you can ignore this message [11:26:42] [main/WARN]: Reference map 'pandalib-common-common-refmap.json' for pandalib-common.mixins.json could not be read. If this is a development environment you can ignore this message [11:26:42] [main/WARN]: Reference map 'simplyswords-forge-refmap.json' for simplyswords.mixins.json could not be read. If this is a development environment you can ignore this message [11:26:42] [main/WARN]: Reference map 'mob_weapon_api.refmap.json' for mob_weapon_api.mixins.json could not be read. If this is a development environment you can ignore this message [11:26:42] [main/WARN]: Reference map 'modonomicon.refmap.json' for modonomicon.mixins.json could not be read. If this is a development environment you can ignore this message [11:26:42] [main/WARN]: Reference map 'modonomicon.refmap.json' for modonomicon.forge.mixins.json could not be read. If this is a development environment you can ignore this message [11:26:42] [main/WARN]: Reference map 'itemselector.refmap.json' for l2itemselector.mixins.json could not be read. If this is a development environment you can ignore this message [11:26:42] [main/WARN]: Reference map 'Aquamirae.refmap.json' for aquamirae.mixins.json could not be read. If this is a development environment you can ignore this message [11:26:42] [main/WARN]: Reference map 'cristellib-forge-refmap.json' for cristellib.mixins.json could not be read. If this is a development environment you can ignore this message [11:26:43] [main/WARN]: Error loading class: appeng/me/storage/NetworkStorage (java.lang.ClassNotFoundException: appeng.me.storage.NetworkStorage) [11:26:43] [main/WARN]: @Mixin target appeng.me.storage.NetworkStorage was not found ars_botania.mixins.json:AENetworkStorageTypeMixin [11:26:43] [main/WARN]: Error loading class: net/dries007/tfc/common/fluids/MixingFluid (java.lang.ClassNotFoundException: net.dries007.tfc.common.fluids.MixingFluid) [11:26:43] [main/WARN]: @Mixin target net.dries007.tfc.common.fluids.MixingFluid was not found particular.mixins.json:compat.TFCMixingFluidMixin [11:26:43] [main/WARN]: Error loading class: net/dries007/tfc/common/fluids/RiverWaterFluid (java.lang.ClassNotFoundException: net.dries007.tfc.common.fluids.RiverWaterFluid) [11:26:43] [main/WARN]: @Mixin target net.dries007.tfc.common.fluids.RiverWaterFluid was not found particular.mixins.json:compat.TFCWaterMixin [11:26:43] [main/WARN]: Error loading class: com/lance5057/butchercraft/workstations/butcherblock/ButcherBlockBlockEntity (java.lang.ClassNotFoundException: com.lance5057.butchercraft.workstations.butcherblock.ButcherBlockBlockEntity) [11:26:43] [main/WARN]: @Mixin target com.lance5057.butchercraft.workstations.butcherblock.ButcherBlockBlockEntity was not found minecolonies_compatibility.mixin.common.json:butchercraft.ButcherBlockBlockEntityAccessor [11:26:43] [main/WARN]: Error loading class: com/lance5057/butchercraft/workstations/hook/MeatHookBlockEntity (java.lang.ClassNotFoundException: com.lance5057.butchercraft.workstations.hook.MeatHookBlockEntity) [11:26:43] [main/WARN]: @Mixin target com.lance5057.butchercraft.workstations.hook.MeatHookBlockEntity was not found minecolonies_compatibility.mixin.common.json:butchercraft.MeatHookBlockEntityAccessor [11:26:43] [main/WARN]: Error loading class: com/cobblemon/mod/common/block/BerryBlock (java.lang.ClassNotFoundException: com.cobblemon.mod.common.block.BerryBlock) [11:26:43] [main/WARN]: @Mixin target com.cobblemon.mod.common.block.BerryBlock was not found minecolonies_compatibility.mixin.common.json:cobblemon.BerryBlockAccessor [11:26:43] [main/WARN]: Error loading class: com/lothrazar/cyclic/block/apple/AppleCropBlock (java.lang.ClassNotFoundException: com.lothrazar.cyclic.block.apple.AppleCropBlock) [11:26:43] [main/WARN]: @Mixin target com.lothrazar.cyclic.block.apple.AppleCropBlock was not found minecolonies_compatibility.mixin.common.json:cyclic.AppleCropBlockAccessor [11:26:43] [main/WARN]: Error loading class: com/mrbysco/oreberriesreplanted/block/OreBerryBushBlock (java.lang.ClassNotFoundException: com.mrbysco.oreberriesreplanted.block.OreBerryBushBlock) [11:26:43] [main/WARN]: @Mixin target com.mrbysco.oreberriesreplanted.block.OreBerryBushBlock was not found minecolonies_compatibility.mixin.common.json:oreberries.OreBerryBushBlockAccessor [11:26:43] [main/WARN]: Error loading class: reliquary/items/HandgunItem (java.lang.ClassNotFoundException: reliquary.items.HandgunItem) [11:26:43] [main/WARN]: @Mixin target reliquary.items.HandgunItem was not found minecolonies_compatibility.mixin.common.json:reliquary.HandgunItemAccessor [11:26:43] [main/WARN]: Error loading class: reliquary/entities/shot/NeutralShotEntity (java.lang.ClassNotFoundException: reliquary.entities.shot.NeutralShotEntity) [11:26:43] [main/WARN]: @Mixin target reliquary.entities.shot.NeutralShotEntity was not found minecolonies_compatibility.mixin.common.json:reliquary.NeutralShotEntityMixin [11:26:43] [main/WARN]: Error loading class: com/lothrazar/storagenetwork/block/main/NetworkModule (java.lang.ClassNotFoundException: com.lothrazar.storagenetwork.block.main.NetworkModule) [11:26:43] [main/WARN]: @Mixin target com.lothrazar.storagenetwork.block.main.NetworkModule was not found minecolonies_compatibility.mixin.common.json:storagenetwork.NetworkModuleAccessor [11:26:43] [main/WARN]: Error loading class: com/lothrazar/storagenetwork/util/UtilConnections (java.lang.ClassNotFoundException: com.lothrazar.storagenetwork.util.UtilConnections) [11:26:43] [main/WARN]: @Mixin target com.lothrazar.storagenetwork.util.UtilConnections was not found minecolonies_compatibility.mixin.common.json:storagenetwork.UtilConnectionsMixin [11:26:43] [main/WARN]: Error loading class: cofh/lib/common/block/CropBlockCoFH (java.lang.ClassNotFoundException: cofh.lib.common.block.CropBlockCoFH) [11:26:43] [main/WARN]: @Mixin target cofh.lib.common.block.CropBlockCoFH was not found minecolonies_compatibility.mixin.common.json:thermal.CropBlockCoFHAccessor [11:26:44] [main/WARN]: Error loading class: me/jellysquid/mods/sodium/client/render/chunk/compile/pipeline/FluidRenderer (java.lang.ClassNotFoundException: me.jellysquid.mods.sodium.client.render.chunk.compile.pipeline.FluidRenderer) [11:26:44] [main/WARN]: Error loading class: net/raphimc/immediatelyfast/feature/map_atlas_generation/MapAtlasTexture (java.lang.ClassNotFoundException: net.raphimc.immediatelyfast.feature.map_atlas_generation.MapAtlasTexture) [11:26:44] [main/WARN]: Error loading class: mekanism/client/render/entity/RenderFlame (java.lang.ClassNotFoundException: mekanism.client.render.entity.RenderFlame) [11:26:44] [main/WARN]: Error loading class: mekanism/client/render/armor/MekaSuitArmor (java.lang.ClassNotFoundException: mekanism.client.render.armor.MekaSuitArmor) [11:26:44] [main/INFO]: Initializing MixinExtras via com.llamalad7.mixinextras.service.MixinExtrasServiceImpl(version=0.4.1). [11:26:46] [pool-4-thread-1/INFO]: ModernFix reached bootstrap stage (11.42 s after launch) [11:26:46] [pool-4-thread-1/WARN]: @Final field delegatesByName:Ljava/util/Map; in modernfix-forge.mixins.json:perf.forge_registry_alloc.ForgeRegistryMixin should be final [11:26:46] [pool-4-thread-1/WARN]: @Final field delegatesByValue:Ljava/util/Map; in modernfix-forge.mixins.json:perf.forge_registry_alloc.ForgeRegistryMixin should be final [11:26:46] [pool-4-thread-1/INFO]: Vanilla bootstrap took 841 milliseconds [11:26:49] [pool-4-thread-1/WARN]: Static binding violation: PRIVATE @Overwrite method m_47505_ in modernfix-common.mixins.json:perf.remove_biome_temperature_cache.BiomeMixin cannot reduce visibiliy of PUBLIC target method, visibility will be upgraded. [11:26:49] [Render thread/WARN]: Error loading class: net/caffeinemc/mods/sodium/api/memory/MemoryIntrinsics (java.lang.ClassNotFoundException: net.caffeinemc.mods.sodium.api.memory.MemoryIntrinsics) [11:26:49] [Render thread/INFO]: [java.lang.ThreadGroup:uncaughtException:-1]: java.lang.RuntimeException: java.lang.reflect.InvocationTargetException [11:26:49] [Render thread/INFO]: [java.lang.ThreadGroup:uncaughtException:-1]:     at MC-BOOTSTRAP/cpw.mods.modlauncher@10.0.9/cpw.mods.modlauncher.LaunchServiceHandlerDecorator.launch(LaunchServiceHandlerDecorator.java:32) [11:26:49] [Render thread/INFO]: [java.lang.ThreadGroup:uncaughtException:-1]:     at MC-BOOTSTRAP/cpw.mods.modlauncher@10.0.9/cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:53) [11:26:49] [Render thread/INFO]: [java.lang.ThreadGroup:uncaughtException:-1]:     at MC-BOOTSTRAP/cpw.mods.modlauncher@10.0.9/cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:71) [11:26:49] [Render thread/INFO]: [java.lang.ThreadGroup:uncaughtException:-1]:     at MC-BOOTSTRAP/cpw.mods.modlauncher@10.0.9/cpw.mods.modlauncher.Launcher.run(Launcher.java:108) [11:26:49] [Render thread/INFO]: [java.lang.ThreadGroup:uncaughtException:-1]:     at MC-BOOTSTRAP/cpw.mods.modlauncher@10.0.9/cpw.mods.modlauncher.Launcher.main(Launcher.java:78) [11:26:49] [Render thread/INFO]: [java.lang.ThreadGroup:uncaughtException:-1]:     at MC-BOOTSTRAP/cpw.mods.modlauncher@10.0.9/cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:26) [11:26:49] [Render thread/INFO]: [java.lang.ThreadGroup:uncaughtException:-1]:     at MC-BOOTSTRAP/cpw.mods.modlauncher@10.0.9/cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:23) [11:26:49] [Render thread/INFO]: [java.lang.ThreadGroup:uncaughtException:-1]:     at cpw.mods.bootstraplauncher@1.1.2/cpw.mods.bootstraplauncher.BootstrapLauncher.main(BootstrapLauncher.java:141) [11:26:49] [Render thread/INFO]: [java.lang.ThreadGroup:uncaughtException:-1]: Caused by: java.lang.reflect.InvocationTargetException [11:26:49] [Render thread/INFO]: [java.lang.ThreadGroup:uncaughtException:-1]:     at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) [11:26:49] [Render thread/INFO]: [java.lang.ThreadGroup:uncaughtException:-1]:     at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) [11:26:49] [Render thread/INFO]: [java.lang.ThreadGroup:uncaughtException:-1]:     at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) [11:26:49] [Render thread/INFO]: [java.lang.ThreadGroup:uncaughtException:-1]:     at java.base/java.lang.reflect.Method.invoke(Unknown Source) [11:26:49] [Render thread/INFO]: [java.lang.ThreadGroup:uncaughtException:-1]:     at MC-BOOTSTRAP/fmlloader@1.20.1-47.4.0/net.minecraftforge.fml.loading.targets.CommonLaunchHandler.runTarget(CommonLaunchHandler.java:111) [11:26:49] [Render thread/INFO]: [java.lang.ThreadGroup:uncaughtException:-1]:     at MC-BOOTSTRAP/fmlloader@1.20.1-47.4.0/net.minecraftforge.fml.loading.targets.CommonLaunchHandler.clientService(CommonLaunchHandler.java:99) [11:26:49] [Render thread/INFO]: [java.lang.ThreadGroup:uncaughtException:-1]:     at MC-BOOTSTRAP/fmlloader@1.20.1-47.4.0/net.minecraftforge.fml.loading.targets.CommonClientLaunchHandler.lambda$makeService$0(CommonClientLaunchHandler.java:25) [11:26:49] [Render thread/INFO]: [java.lang.ThreadGroup:uncaughtException:-1]:     at MC-BOOTSTRAP/cpw.mods.modlauncher@10.0.9/cpw.mods.modlauncher.LaunchServiceHandlerDecorator.launch(LaunchServiceHandlerDecorator.java:30) [11:26:49] [Render thread/INFO]: [java.lang.ThreadGroup:uncaughtException:-1]:     ... 7 more [11:26:49] [Render thread/INFO]: [java.lang.Throwable:printStackTrace:-1]: Caused by: java.lang.NoClassDefFoundError: Could not initialize class com.mojang.blaze3d.systems.RenderSystem [11:26:49] [Render thread/INFO]: [java.lang.Throwable:printStackTrace:-1]:     at TRANSFORMER/minecraft@1.20.1/net.minecraft.SystemReport.m_143522_(SystemReport.java:66) [11:26:49] [Render thread/INFO]: [java.lang.Throwable:printStackTrace:-1]:     at TRANSFORMER/minecraft@1.20.1/net.minecraft.client.Minecraft.m_167850_(Minecraft.java:2339) [11:26:49] [Render thread/INFO]: [java.lang.Throwable:printStackTrace:-1]:     at TRANSFORMER/minecraft@1.20.1/net.minecraft.client.Minecraft.m_167872_(Minecraft.java:2332) [11:26:49] [Render thread/INFO]: [java.lang.Throwable:printStackTrace:-1]:     at TRANSFORMER/minecraft@1.20.1/net.minecraft.client.main.Main.main(Main.java:191) [11:26:49] [Render thread/INFO]: [java.lang.Throwable:printStackTrace:-1]:     ... 15 more [11:26:49] [Render thread/INFO]: [java.lang.Throwable:printStackTrace:-1]: Caused by: java.lang.ExceptionInInitializerError: Exception org.spongepowered.asm.mixin.transformer.throwables.MixinTransformerError: An unexpected critical error was encountered [in thread "Render thread"] [11:26:49] [Render thread/INFO]: [java.lang.Throwable:printStackTrace:-1]:     at MC-BOOTSTRAP/org.spongepowered.mixin/org.spongepowered.asm.mixin.transformer.MixinProcessor.applyMixins(MixinProcessor.java:392) [11:26:49] [Render thread/INFO]: [java.lang.Throwable:printStackTrace:-1]:     at MC-BOOTSTRAP/org.spongepowered.mixin/org.spongepowered.asm.mixin.transformer.MixinTransformer.transformClass(MixinTransformer.java:250) [11:26:49] [Render thread/INFO]: [java.lang.Throwable:printStackTrace:-1]:     at MC-BOOTSTRAP/org.spongepowered.mixin/org.spongepowered.asm.service.modlauncher.MixinTransformationHandler.processClass(MixinTransformationHandler.java:131) [11:26:49] [Render thread/INFO]: [java.lang.Throwable:printStackTrace:-1]:     at MC-BOOTSTRAP/org.spongepowered.mixin/org.spongepowered.asm.launch.MixinLaunchPluginLegacy.processClass(MixinLaunchPluginLegacy.java:131) [11:26:49] [Render thread/INFO]: [java.lang.Throwable:printStackTrace:-1]:     at MC-BOOTSTRAP/cpw.mods.modlauncher@10.0.9/cpw.mods.modlauncher.serviceapi.ILaunchPluginService.processClassWithFlags(ILaunchPluginService.java:156) [11:26:49] [Render thread/INFO]: [java.lang.Throwable:printStackTrace:-1]:     at MC-BOOTSTRAP/cpw.mods.modlauncher@10.0.9/cpw.mods.modlauncher.LaunchPluginHandler.offerClassNodeToPlugins(LaunchPluginHandler.java:88) [11:26:49] [Render thread/INFO]: [java.lang.Throwable:printStackTrace:-1]:     at MC-BOOTSTRAP/cpw.mods.modlauncher@10.0.9/cpw.mods.modlauncher.ClassTransformer.transform(ClassTransformer.java:120) [11:26:49] [Render thread/INFO]: [java.lang.Throwable:printStackTrace:-1]:     at MC-BOOTSTRAP/cpw.mods.modlauncher@10.0.9/cpw.mods.modlauncher.TransformingClassLoader.maybeTransformClassBytes(TransformingClassLoader.java:50) [11:26:49] [Render thread/INFO]: [java.lang.Throwable:printStackTrace:-1]:     at cpw.mods.securejarhandler/cpw.mods.cl.ModuleClassLoader.readerToClass(ModuleClassLoader.java:113) [11:26:49] [Render thread/INFO]: [java.lang.Throwable:printStackTrace:-1]:     at cpw.mods.securejarhandler/cpw.mods.cl.ModuleClassLoader.lambda$findClass$15(ModuleClassLoader.java:219) [11:26:49] [Render thread/INFO]: [java.lang.Throwable:printStackTrace:-1]:     at cpw.mods.securejarhandler/cpw.mods.cl.ModuleClassLoader.loadFromModule(ModuleClassLoader.java:229) [11:26:49] [Render thread/INFO]: [java.lang.Throwable:printStackTrace:-1]:     at cpw.mods.securejarhandler/cpw.mods.cl.ModuleClassLoader.findClass(ModuleClassLoader.java:219) [11:26:49] [Render thread/INFO]: [java.lang.Throwable:printStackTrace:-1]:     at cpw.mods.securejarhandler/cpw.mods.cl.ModuleClassLoader.loadClass(ModuleClassLoader.java:135) [11:26:49] [Render thread/INFO]: [java.lang.Throwable:printStackTrace:-1]:     at java.base/java.lang.ClassLoader.loadClass(Unknown Source) [11:26:49] [Render thread/INFO]: [java.lang.Throwable:printStackTrace:-1]:     at TRANSFORMER/minecraft@1.20.1/com.mojang.blaze3d.vertex.Tesselator.<init>(Tesselator.java:19) [11:26:49] [Render thread/INFO]: [java.lang.Throwable:printStackTrace:-1]:     at TRANSFORMER/minecraft@1.20.1/com.mojang.blaze3d.vertex.Tesselator.<init>(Tesselator.java:23) [11:26:49] [Render thread/INFO]: [java.lang.Throwable:printStackTrace:-1]:     at TRANSFORMER/minecraft@1.20.1/com.mojang.blaze3d.vertex.Tesselator.<clinit>(Tesselator.java:11) [11:26:49] [Render thread/INFO]: [java.lang.Throwable:printStackTrace:-1]:     at TRANSFORMER/minecraft@1.20.1/com.mojang.blaze3d.systems.RenderSystem.<clinit>(RenderSystem.java:50) [11:26:49] [Render thread/INFO]: [java.lang.Throwable:printStackTrace:-1]:     at TRANSFORMER/minecraft@1.20.1/net.minecraft.client.main.Main.main(Main.java:180) [11:26:49] [Render thread/INFO]: [java.lang.Throwable:printStackTrace:-1]:     ... 15 more  
    • Thanks! I didn't know I needed them together 😅
    • Did you also add Embeddium? So make a test just with Embeddium + Oculus
    • The build of the mod Reforged (Tiered) you are using is for Minecraft 1.20.5 or newer Try one of these builds: https://www.curseforge.com/minecraft/mc-mods/tiered-forge/files/all?page=1&pageSize=20&version=1.20.1&gameVersionTypeId=1
    • I have compiled a modpack of about 230 mods for Minecraft 1.20.1 on forge 47.4.0. I am not seeing any problems of dependencies, just the single error of some kind of plug in. I don't know what is happening with it or how to fix it. [20:08:49] [main/ERROR]:Error loading companion plugin class [com.stereowalker.tiered.mixin.TieredMixinPlugin] for mixin config [tiered.mixins.json]. The plugin may be out of date: UnsupportedClassVersionError:com/stereowalker/tiered/mixin/TieredMixinPlugin has been compiled by a more recent version of the Java Runtime (class file version 65.0), this version of the Java Runtime only recognizes class file versions up to 61.0
  • Topics

×
×
  • Create New...

Important Information

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