Jump to content

Spawning Particles on LivingHurtEvent?


jredfox

Recommended Posts

Guys you might be confused because many people will put the code for both classes in a single file. But they are still separate classes. if you think about it, the message itself gets instantiated every time it is sent, whereas there should be a single handler.

 

The general concept is:

1) Make a class that extends IMessage.

2) This class can have fields representing the payload information, and you need a constructor that takes in that information and assigns it to the field. (Note I think you also need a default constructor with no parameters as well.)

3) You need to override the toBytes() and fromBytes() methods to put your field information into the ByteBuf that is passed in. You should use ByteBufUtils for converting your information.

4) You make a separate class that extends IMessageHandler

5) In that class you need to override the onMessage() method. The message instance will be passed to you and you can access the fields and do whatever you need to do. Note that due to threaded nature, for packets that go from client to server, I think you need to encapsulate your code as a Runnable.

6) The return value for the onMessage() method should generally be null. It is possible to create a confirmation method where the receiver sends a packet back to confirm receipt and unerrored processing, but that is a more advanced topic.

 

I have an example here: https://github.com/jabelar/ExampleMod-1.12/blob/master/src/main/java/com/blogspot/jabelarminecraft/examplemod/networking/MessageSyncEntityToServer.java

Edited by jabelar

Check out my tutorials here: http://jabelarminecraft.blogspot.com/

Link to comment
Share on other sites

10 minutes ago, jabelar said:

Guys you might be confused because many people will put the code for both classes in a single file. But they are still separate classes. if you think about it, the message itself gets instantiated every time it is sent, whereas there should be a single handler.

 

The general concept is:

1) Make a class that extends IMessage.

2) This class can have fields representing the payload information, and you need a constructor that takes in that information and assigns it to the field. (Note I think you also need a default constructor with no parameters as well.)

3) You need to override the toBytes() and fromBytes() methods to put your field information into the ByteBuf that is passed in. You should use ByteBufUtils for converting your information.

4) You make a separate class that extends IMessageHandler

5) In that class you need to override the onMessage() method. The message instance will be passed to you and you can access the fields and do whatever you need to do. Note that due to threaded nature I think you need to encapsulate your code as a Runnable.

6) The return value for the onMessage() method should generally be null. It is possible to create a confirmation method where the receiver sends a packet back to confirm receipt and unerrored processing, but that is a more advanced topic.

 

I have an example here: https://github.com/jabelar/ExampleMod-1.12/blob/master/src/main/java/com/blogspot/jabelarminecraft/examplemod/networking/MessageSyncEntityToServer.java

So I debuged my code and discovered the data isn't being transferred to the client.
 

[10:16:11] [Netty Local Client IO #0/INFO] [STDOUT]: [com.evilnotch.respawnscreen.network.PacketParticle:handleClientSide:39]: idEnt:0 idParticle:0


On server side I printed the particle id during the consturctor it said "Server:42" for the id rather then both being 0. Why is this occurring I specified a specific packet constructor when sending to the client and to and from bytes looks like they should work.
 

    @Override
    public void toBytes(ByteBuf buffer){
        buffer.writeInt(this.particleId);
        buffer.writeInt(this.entid);
    }

    @Override
    public void fromBytes(ByteBuf buffer){
        this.particleId = buffer.readInt();
        this.entid = buffer.readInt();
    }


Here is my code:
https://github.com/jredfox/norespawnscreen

here is how I call the packet from the server:
NetWorkHandler.INSTANCE.sendToDimension(new PacketParticle(EnumParticleTypes.DRAGON_BREATH,player.getEntityId() ),player.dimension);

Edited by jredfox
Link to comment
Share on other sites

7 minutes ago, diesieben07 said:

Here you are accessing the fields from the message handler's instance. However you never set these to any meaningful values (how could you, it's the message handler, only the message has useful values here). You need to get the data from the message passed to the method.

This is why you do not implement IMessageHandler and IMessage on the same class (which you are still doing). It is confusing and creates weird, meaningless fields in your message handler.

 

Not to be snarky, but this is making me very happy right now. You didn't want to listen because you are oh so smart and don't need to follow conventions. And guess what, you made the exact mistake that is the reason for me recommending not to do what you did.

 

So, for the love of god: I do not say the things I say because I am bored or want to screw with you.

yeah a beginners mistake I forgot that there was the messege argument there. I was fallowing a youtube video which seemed pretty good to me.

I see why there are separate objects but, I don't see why forge just can't combine them and remove the arg of IMessege so sending to and from you don't have to worry about additional classes. Not saying it don't work just happy I was noob.

 

Edited by jredfox
Link to comment
Share on other sites

11 minutes ago, diesieben07 said:

No, that is a terrible tutorial, because he is teaching that terrible practice.

This is a holdover from pre-1.7 (I think, might be even older) networking, where SimpleNetworkWrapper was not a thing. If you do not like this separation into message handler and message then do not use SimpleMessageHandler! There are other systems available (event based, for example) from the NetworkRegistry. Do not shoe-horn your old habits into the new system in a completely broken way.

Wasn't mine was the videos. Thanks for pointing that out.

My packet handler doesn't work for anything else that isn't explosion particle do you know why this is? This is the code that executes off of the client side I know the width should have been passed from the original entity as well but, for now only testing players which will always be the same when sending the packet.

	public static void spawnParticles(Entity e,int particleId,double x, double y, double z) 
	{
        for (int k = 0; k < 20; ++k)
        {
        	Random rand = getRND(e);
            double d2 = rand.nextGaussian() * 0.02D;
            double d0 = rand.nextGaussian() * 0.02D;
            double d1 = rand.nextGaussian() * 0.02D;
            e.world.spawnParticle(EnumParticleTypes.getParticleFromId(particleId), x + (double)(rand.nextFloat() * e.width * 2.0F) - (double)e.width, y + (double)(rand.nextFloat() * e.height), e.posZ + (double)(rand.nextFloat() * e.width * 2.0F) - (double)e.width, d2, d0, d1);
        }
	}

 

Link to comment
Share on other sites

1 minute ago, jredfox said:

My packet handler doesn't work for anything else that isn't explosion particle do you know why this is?

You need to trace the execution. Like you've already done a bit of, put console statements throughout your code (or use debug mode in your IDE). It should be really obvious quickly -- what ID does it think it is getting? Does that id match what you sent? Does that id match the id for the particle you intended?

Check out my tutorials here: http://jabelarminecraft.blogspot.com/

Link to comment
Share on other sites

13 minutes ago, jabelar said:

Also another problem with your packet code is that you're reaching across logical sides. You can't access Minecraft() class directly in your onMessage() method. You'll need to call a proxy method.

if you look it's only called on client side.

the particle id does change it just doesn't render anything but, the explosion.

Another issue I am having is the particle xyz double coords are no where near the death of the player.
https://github.com/jredfox/norespawnscreen

 

I could test on hurt event to but, I think the results would be the same

Edit: I printed out the coords sent to the client they are the same as sent from the server of the original player

Edited by jredfox
Link to comment
Share on other sites

5 minutes ago, jredfox said:

if you look it's only called on client side.

Dude, you're really not listening to all the good advice you're getting. We know better as we've been doing this for over a decade. We're not just making stuff up.

 

You're missing some very fundamental concepts that are very important. In this case, it has nothing to do with being called on the client side. The problem is your class is still going to load on the server side (it needs to because that is where the packet is constructed). When the class is loaded, at some point it is going to try to "understand" what the code is supposed to do and the problem is that the Minecraft class isn't loaded on the server at all. So that code is basically broken (not compilable/interpretable) on the server and will cause an error. You may not notice the error when you're testing on an integrated server because technically both client and server code is available to the same JVM, but with dedicated server it will fail.

 

What  I've noticed is that you're running around way too fast without fully understanding what you're doing. Furthermore, you're really not listening to our advice. We are giving advice because we know it is important. Why are you even asking if you are discounting our advice?

Edited by jabelar

Check out my tutorials here: http://jabelarminecraft.blogspot.com/

Link to comment
Share on other sites

6 minutes ago, jabelar said:

Dude, you're really not listening to all the good advice you're getting. We know better as we've been doing this for over a decade. We're not just making stuff up.

 

You're missing some very fundamental concepts that are very important. In this case, it has nothing to do with being called on the client side. The problem is your class is still going to load on the server side (it needs to because that is where the packet is constructed). When the class is loaded, at some point it is going to try to "understand" what the code is supposed to do and the problem is that the Minecraft class isn't loaded on the server at all. So that code is basically broken (not compilable/interpretable) on the server and will cause an error. You may not notice the error when you're testing on an integrated server because technically both client and server code is available to the same JVM, but with dedicated server it will fail.

 

What  I've noticed is that you're running around way too fast without fully understanding what you're doing. Furthermore, you're really not listening to our advice. We are giving advice because we know it is important. Why are you even asking if you are discounting our advice?

will fix it later if it crashes right now all I care about is does the particles appear and if so when and where do they appear? If it loads on the server like you say then it will crash but, it won't load on the server it should be the imports that are crashing on startup not during that event it loads into memory going into the else statement which will never happen on the server and crash. It will crash before it even gets into that statement from class not found nothing to do with going into the else statement.

Edited by jredfox
Link to comment
Share on other sites

Just now, jredfox said:

will fix it later if it crashes right now all I care about is does the particles appear?

This is sort of what I mean you you're running too fast. In programming you need to progress cautiously, making sure each piece of code works fully bug-free before moving on to the next part. 

 

Anyway, again are you tracing the execution? If you step through the execution it will be obvious -- you'll see the id, you'll step through the particle spawning code, and you'll see everything that is happening.

Check out my tutorials here: http://jabelarminecraft.blogspot.com/

Link to comment
Share on other sites

6 minutes ago, diesieben07 said:

That's not how imports work. The class file has no concept of imports. What will crash is the verifier. If you don't know what that is, look it up. It's complicated.

However, if you don't want to do that, trust us please and understand that no, you cannot reference client-only classes from common code. No, even if it's "never called".

Well I didn't even execute code on startup but, had client imports and next thing I know on dedicated server it crashes I never even used them could be mistaking but, remember it in 1.12 with deving silkspawners.

jeblar I need to verify the client code works before making minor patches on server. Or I would constantly be going back and forth and forget what I need to do on the client. If it's major I fix it immediately and I always launch dedicated and test stuff before compiling. "So if anything going too fast would be not fixing client before going back to server" I copied it from a tutorial and minechess mod.

Edited by jredfox
Link to comment
Share on other sites

On 5/9/2018 at 7:24 AM, Choonster said:

 

Entity#getEntityId is completely unrelated to global entity IDs. It's a unique entity ID specifically designed to be sent over the network.

ok thanks

Edited by jredfox
Link to comment
Share on other sites

1 hour ago, jredfox said:

Well I didn't even execute code on startup but, had client imports and next thing I know on dedicated server it crashes I never even used them could be mistaking but, remember it in 1.12 with deving silkspawners.

It has nothing to do with executing. It has to do with the class file being valid at all, meaning that the JVM has to recognize what is inside the file even if it is not executing.

 

If you just had a class that never executed at all that contained reference to a client-only class such as Minecraft or Renderer and such, it will fail. Because the JVM can't have files that it doesn't understand. The server literally has no idea what the Minecraft class is.

 

You might as well have random text in the method -- would you expect a method with random text in it to not cause an error? There is no difference between saying Minecraft.getMinecraft() and Garbage.getGarbage() -- they'll throw the same error.

 

Code can cause an error just by existing if it causes invalid Java, it doesn't have to be executed. Compilation (and the related activities like linking) can't just say "I don't know what that class is but I hope it is never executed".

Check out my tutorials here: http://jabelarminecraft.blogspot.com/

Link to comment
Share on other sites

6 minutes ago, jabelar said:

It has nothing to do with executing. It has to do with the class file being valid at all, meaning that the JVM has to recognize what is inside the file even if it is not executing.

 

If you just had a class that never executed at all that contained reference to a client-only class such as Minecraft or Renderer and such, it will fail. Because the JVM can't have files that it doesn't understand. The server literally has no idea what the Minecraft class is.

 

You might as well have random text in the method -- would you expect a method with random text in it to not cause an error? There is no difference between saying Minecraft.getMinecraft() and Garbage.getGarbage() -- they'll throw the same error.

 

Code can cause an error just by existing if it causes invalid Java, it doesn't have to be executed. Compilation (and the related activities like linking) can't just say "I don't know what that class is but I hope it is never executed".

Yeah don't worry already fixed it on server side 

Link to comment
Share on other sites

On 5/8/2018 at 5:52 AM, Choonster said:

 

Yes, call World#spawnParticles on the client World in the packet's handler to spawn the particles.

Edit: after some detailed tests I used EnumParticleTypes.getshouldIngoreRange() since that seems to be what vanilla uses I kill entity player without any mods and it was long distense

could you please explain what EnumParticleTypes.getShouldIgnoreRange() should be done in my code? Should I be using that boolean for long distance when using/creating my own sendPacketToPlayersWithinRange() ?
 

	public static void sendToAllPlayersWithinRange(World world,double x, double y, double z, boolean longDistance,IMessage packet) 
	{
        for (int i = 0; i < world.playerEntities.size(); ++i)
        {
        	EntityPlayerMP player = (EntityPlayerMP) world.playerEntities.get(i);
        	BlockPos blockpos = player.getPosition();
        	double d0 = blockpos.distanceSq(x, y, z);

        	if (d0 <= 1024.0D || longDistance && d0 <= 262144.0D)
        	{
            	NetWorkHandler.INSTANCE.sendTo(packet, player);
        	}
        }
	}

 

Edited by jredfox
Link to comment
Share on other sites

11 hours ago, jredfox said:

could you please explain what EnumParticleTypes.getShouldIgnoreRange() should be done in my code? Should I be using that boolean for long distance whe

 

Looking at the vanilla code it isn't quite clear. Here is all the vanilla type definitions and the boolean is the ignoreRange value:

 

    EXPLOSION_NORMAL("explode", 0, true),
    EXPLOSION_LARGE("largeexplode", 1, true),
    EXPLOSION_HUGE("hugeexplosion", 2, true),
    FIREWORKS_SPARK("fireworksSpark", 3, false),
    WATER_BUBBLE("bubble", 4, false),
    WATER_SPLASH("splash", 5, false),
    WATER_WAKE("wake", 6, false),
    SUSPENDED("suspended", 7, false),
    SUSPENDED_DEPTH("depthsuspend", 8, false),
    CRIT("crit", 9, false),
    CRIT_MAGIC("magicCrit", 10, false),
    SMOKE_NORMAL("smoke", 11, false),
    SMOKE_LARGE("largesmoke", 12, false),
    SPELL("spell", 13, false),
    SPELL_INSTANT("instantSpell", 14, false),
    SPELL_MOB("mobSpell", 15, false),
    SPELL_MOB_AMBIENT("mobSpellAmbient", 16, false),
    SPELL_WITCH("witchMagic", 17, false),
    DRIP_WATER("dripWater", 18, false),
    DRIP_LAVA("dripLava", 19, false),
    VILLAGER_ANGRY("angryVillager", 20, false),
    VILLAGER_HAPPY("happyVillager", 21, false),
    TOWN_AURA("townaura", 22, false),
    NOTE("note", 23, false),
    PORTAL("portal", 24, false),
    ENCHANTMENT_TABLE("enchantmenttable", 25, false),
    FLAME("flame", 26, false),
    LAVA("lava", 27, false),
    FOOTSTEP("footstep", 28, false),
    CLOUD("cloud", 29, false),
    REDSTONE("reddust", 30, false),
    SNOWBALL("snowballpoof", 31, false),
    SNOW_SHOVEL("snowshovel", 32, false),
    SLIME("slime", 33, false),
    HEART("heart", 34, false),
    BARRIER("barrier", 35, false),
    ITEM_CRACK("iconcrack", 36, false, 2),
    BLOCK_CRACK("blockcrack", 37, false, 1),
    BLOCK_DUST("blockdust", 38, false, 1),
    WATER_DROP("droplet", 39, false),
    ITEM_TAKE("take", 40, false),
    MOB_APPEARANCE("mobappearance", 41, true),
    DRAGON_BREATH("dragonbreath", 42, false),
    END_ROD("endRod", 43, false),
    DAMAGE_INDICATOR("damageIndicator", 44, true),
    SWEEP_ATTACK("sweepAttack", 45, true),
    FALLING_DUST("fallingdust", 46, false, 1),
    TOTEM("totem", 47, false),
    SPIT("spit", 48, true);

 

If you look at the RenderGlobal#spawnParticle0() method you'll see that the code includes the following:

            int k1 = this.calculateParticleLevel(minParticles);
            double d3 = entity.posX - xCoord;
            double d4 = entity.posY - yCoord;
            double d5 = entity.posZ - zCoord;

            if (ignoreRange)
            {
                return this.mc.effectRenderer.spawnEffectParticle(particleID, xCoord, yCoord, zCoord, xSpeed, ySpeed, zSpeed, parameters);
            }
            else if (d3 * d3 + d4 * d4 + d5 * d5 > 1024.0D)
            {
                return null;
            }

 

So it looks like if ignoreRange is false then particles will only spawn in a radius of 32 blocks (square root of 1024).

Check out my tutorials here: http://jabelarminecraft.blogspot.com/

Link to comment
Share on other sites

Join the conversation

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

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

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

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

×   Your previous content has been restored.   Clear editor

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

Announcements



  • Recently Browsing

    • No registered users viewing this page.
  • Posts

    • I've been trying nonstop to get my mods to work in my forge server but I can't even launch forge without it crashing, this is the error with the server I'm trying to launch. It doesn't even open. I've tried all youtube fixes but none seem to work. Any fixes or help would be appreciated. More Info: I installed java 23 and both my minecraft mods folder and server mods folder have the same exact mods in them. I got all of these mods from a modpack called CuteCraft by Bunee_z Server only launches without mods 2024-05-11 12:24:09,800 main WARN Advanced terminal features are not available in this environment [12:24:09] [main/INFO] [cp.mo.mo.Launcher/MODLAUNCHER]: ModLauncher running: args [--launchTarget, forgeserver, --fml.forgeVersion, 43.3.0, --fml.mcVersion, 1.19.2, --fml.forgeGroup, net.minecraftforge, --fml.mcpVersion, 20220805.130853] [12:24:09] [main/INFO] [cp.mo.mo.Launcher/MODLAUNCHER]: ModLauncher 10.0.8+10.0.8+main.0ef7e830 starting: java version 22.0.1 by Oracle Corporation; OS Windows 11 arch amd64 version 10.0 [12:24:10] [main/INFO] [mixin/]: SpongePowered MIXIN Subsystem Version=0.8.5 Source=union:/C:/Users/Redux/Desktop/Emersons%20Server/libraries/org/spongepowered/mixin/0.8.5/mixin-0.8.5.jar%2363!/ Service=ModLauncher Env=SERVER [12:24:11] [main/WARN] [ne.mi.fm.lo.mo.ModFileParser/LOADING]: Mod file C:\Users\Redux\Desktop\Emersons Server\libraries\net\minecraftforge\fmlcore\1.19.2-43.3.0\fmlcore-1.19.2-43.3.0.jar is missing mods.toml file [12:24:11] [main/WARN] [ne.mi.fm.lo.mo.ModFileParser/LOADING]: Mod file C:\Users\Redux\Desktop\Emersons Server\libraries\net\minecraftforge\javafmllanguage\1.19.2-43.3.0\javafmllanguage-1.19.2-43.3.0.jar is missing mods.toml file [12:24:11] [main/WARN] [ne.mi.fm.lo.mo.ModFileParser/LOADING]: Mod file C:\Users\Redux\Desktop\Emersons Server\libraries\net\minecraftforge\lowcodelanguage\1.19.2-43.3.0\lowcodelanguage-1.19.2-43.3.0.jar is missing mods.toml file [12:24:11] [main/WARN] [ne.mi.fm.lo.mo.ModFileParser/LOADING]: Mod file C:\Users\Redux\Desktop\Emersons Server\libraries\net\minecraftforge\mclanguage\1.19.2-43.3.0\mclanguage-1.19.2-43.3.0.jar is missing mods.toml file [12:24:11] [main/WARN] [ne.mi.ja.se.JarSelector/]: Attempted to select two dependency jars from JarJar which have the same identification: Mod File:  and Mod File: . Using Mod File: [12:24:11] [main/INFO] [ne.mi.fm.lo.mo.JarInJarDependencyLocator/]: Found 13 dependencies adding them to mods collection [12:24:12] [main/ERROR] [mixin/]: Mixin config dynamiclightsreforged.mixins.json does not specify "minVersion" property [12:24:12] [main/INFO] [mixin/]: Compatibility level set to JAVA_17 [12:24:12] [main/ERROR] [mixin/]: Mixin config mixins.oculus.compat.sodium.json does not specify "minVersion" property [12:24:12] [main/INFO] [mixin/]: Successfully loaded Mixin Connector [ca.spottedleaf.starlight.mixin.MixinConnector] [12:24:12] [main/INFO] [cp.mo.mo.LaunchServiceHandler/MODLAUNCHER]: Launching target 'forgeserver' with arguments [] [12:24:12] [main/INFO] [Rubidium/]: Loaded configuration file for Rubidium: 30 options available, 1 override(s) found [12:24:12] [main/WARN] [mixin/]: Reference map 'vinery-forge-refmap.json' for vinery.mixins.json could not be read. If this is a development environment you can ignore this message [12:24:12] [main/INFO] [Sodium Extra Config/]: Loaded configuration file for Sodium Extra: 28 options available, 0 override(s) found [12:24:12] [main/WARN] [mixin/]: Reference map 'carpeted-common-refmap.json' for carpeted-common.mixins.json could not be read. If this is a development environment you can ignore this message [12:24:12] [main/WARN] [mixin/]: Reference map 'carpeted-forge-refmap.json' for carpeted.mixins.json could not be read. If this is a development environment you can ignore this message [12:24:12] [main/WARN] [mixin/]: Reference map 'betterjukebox-forge-refmap.json' for betterjukebox-forge.mixins.json could not be read. If this is a development environment you can ignore this message [12:24:12] [main/WARN] [CanaryConfig/]: Mod 'pluto' attempted to override option 'mixin.world.player_chunk_tick', which doesn't exist, ignoring [12:24:12] [main/INFO] [Canary/]: Loaded configuration file for Canary: 117 options available, 0 override(s) found [12:24:12] [main/WARN] [mixin/]: Error loading class: net/minecraft/client/model/IronGolemModel (java.lang.ClassNotFoundException: net.minecraft.client.model.IronGolemModel) [12:24:12] [main/WARN] [mixin/]: @Mixin target net.minecraft.client.model.IronGolemModel was not found strawgolem.mixins.json:IronGolemModelMixin [12:24:13] [main/INFO] [ne.mi.co.Co.placebo/COREMODLOG]: Patching IForgeItemStack#getEnchantmentLevel [12:24:13] [main/INFO] [ne.mi.co.Co.placebo/COREMODLOG]: Patching IForgeItemStack#getEnchantmentLevel [12:24:13] [main/WARN] [mixin/]: Error loading class: vazkii/quark/addons/oddities/inventory/BackpackMenu (java.lang.ClassNotFoundException: vazkii.quark.addons.oddities.inventory.BackpackMenu) [12:24:13] [main/WARN] [mixin/]: Error loading class: java/lang/invoke/MethodHandles$Lookup (java.lang.IllegalArgumentException: Unsupported class file major version 66) [12:24:13] [main/WARN] [mixin/]: Error loading class: java/lang/invoke/MethodHandles$Lookup (java.lang.IllegalArgumentException: Unsupported class file major version 66) [12:24:13] [main/WARN] [mixin/]: Error loading class: java/lang/invoke/MethodHandles$Lookup (java.lang.IllegalArgumentException: Unsupported class file major version 66) [12:24:13] [main/WARN] [mixin/]: Error loading class: java/lang/invoke/MethodHandles$Lookup (java.lang.IllegalArgumentException: Unsupported class file major version 66) [12:24:13] [main/WARN] [mixin/]: Error loading class: java/util/Map$Entry (java.lang.IllegalArgumentException: Unsupported class file major version 66) [12:24:13] [main/WARN] [mixin/]: Error loading class: java/lang/invoke/MethodHandles$Lookup (java.lang.IllegalArgumentException: Unsupported class file major version 66) [12:24:13] [main/WARN] [mixin/]: Error loading class: java/lang/invoke/MethodHandles$Lookup (java.lang.IllegalArgumentException: Unsupported class file major version 66) [12:24:13] [main/WARN] [mixin/]: Error loading class: java/lang/invoke/MethodHandles$Lookup (java.lang.IllegalArgumentException: Unsupported class file major version 66) [12:24:13] [main/WARN] [mixin/]: Error loading class: java/lang/invoke/MethodHandles$Lookup (java.lang.IllegalArgumentException: Unsupported class file major version 66) [12:24:13] [main/WARN] [mixin/]: Error loading class: java/lang/invoke/MethodHandles$Lookup (java.lang.IllegalArgumentException: Unsupported class file major version 66) [12:24:13] [main/WARN] [mixin/]: Error loading class: java/lang/invoke/MethodHandles$Lookup (java.lang.IllegalArgumentException: Unsupported class file major version 66) [12:24:13] [main/WARN] [mixin/]: Error loading class: java/lang/invoke/MethodHandles$Lookup (java.lang.IllegalArgumentException: Unsupported class file major version 66) [12:24:13] [main/WARN] [mixin/]: Error loading class: java/lang/invoke/MethodHandles$Lookup (java.lang.IllegalArgumentException: Unsupported class file major version 66) [12:24:13] [main/WARN] [mixin/]: Error loading class: java/lang/invoke/MethodHandles$Lookup (java.lang.IllegalArgumentException: Unsupported class file major version 66) [12:24:13] [main/WARN] [mixin/]: Error loading class: java/lang/invoke/MethodHandles$Lookup (java.lang.IllegalArgumentException: Unsupported class file major version 66) [12:24:13] [main/WARN] [mixin/]: Error loading class: java/lang/invoke/MethodHandles$Lookup (java.lang.IllegalArgumentException: Unsupported class file major version 66) [12:24:13] [main/WARN] [mixin/]: Error loading class: java/lang/invoke/MethodHandles$Lookup (java.lang.IllegalArgumentException: Unsupported class file major version 66) [12:24:13] [main/WARN] [mixin/]: Error loading class: java/lang/invoke/MethodHandles$Lookup (java.lang.IllegalArgumentException: Unsupported class file major version 66) [12:24:13] [main/WARN] [mixin/]: Error loading class: java/lang/invoke/MethodHandles$Lookup (java.lang.IllegalArgumentException: Unsupported class file major version 66) [12:24:13] [main/WARN] [mixin/]: Error loading class: java/lang/invoke/MethodHandles$Lookup (java.lang.IllegalArgumentException: Unsupported class file major version 66) [12:24:13] [main/WARN] [mixin/]: Error loading class: java/lang/invoke/MethodHandles$Lookup (java.lang.IllegalArgumentException: Unsupported class file major version 66) [12:24:13] [main/WARN] [mixin/]: Error loading class: java/lang/invoke/MethodHandles$Lookup (java.lang.IllegalArgumentException: Unsupported class file major version 66) [12:24:13] [main/WARN] [mixin/]: Error loading class: java/lang/invoke/MethodHandles$Lookup (java.lang.IllegalArgumentException: Unsupported class file major version 66) [12:24:13] [main/WARN] [mixin/]: Error loading class: java/lang/invoke/MethodHandles$Lookup (java.lang.IllegalArgumentException: Unsupported class file major version 66) [12:24:13] [main/WARN] [mixin/]: Error loading class: java/lang/invoke/MethodHandles$Lookup (java.lang.IllegalArgumentException: Unsupported class file major version 66) [12:24:13] [main/WARN] [mixin/]: Error loading class: java/lang/invoke/MethodHandles$Lookup (java.lang.IllegalArgumentException: Unsupported class file major version 66) [12:24:13] [main/WARN] [mixin/]: Error loading class: java/util/Map$Entry (java.lang.IllegalArgumentException: Unsupported class file major version 66) [12:24:13] [main/WARN] [mixin/]: Error loading class: java/lang/invoke/MethodHandles$Lookup (java.lang.IllegalArgumentException: Unsupported class file major version 66) [12:24:13] [main/WARN] [mixin/]: Error loading class: java/lang/invoke/MethodHandles$Lookup (java.lang.IllegalArgumentException: Unsupported class file major version 66) [12:24:13] [main/WARN] [mixin/]: Error loading class: java/lang/invoke/MethodHandles$Lookup (java.lang.IllegalArgumentException: Unsupported class file major version 66) [12:24:13] [main/WARN] [mixin/]: Error loading class: java/lang/invoke/MethodHandles$Lookup (java.lang.IllegalArgumentException: Unsupported class file major version 66) [12:24:13] [main/WARN] [mixin/]: Error loading class: java/lang/invoke/MethodHandles$Lookup (java.lang.IllegalArgumentException: Unsupported class file major version 66) [12:24:13] [main/WARN] [mixin/]: Error loading class: java/lang/invoke/MethodHandles$Lookup (java.lang.IllegalArgumentException: Unsupported class file major version 66) [12:24:13] [main/WARN] [mixin/]: Error loading class: java/lang/invoke/MethodHandles$Lookup (java.lang.IllegalArgumentException: Unsupported class file major version 66) [12:24:13] [main/WARN] [mixin/]: Error loading class: java/util/Map$Entry (java.lang.IllegalArgumentException: Unsupported class file major version 66) [12:24:13] [main/WARN] [mixin/]: Error loading class: java/util/Map$Entry (java.lang.IllegalArgumentException: Unsupported class file major version 66) [12:24:13] [main/WARN] [mixin/]: Error loading class: java/lang/invoke/MethodHandles$Lookup (java.lang.IllegalArgumentException: Unsupported class file major version 66) [12:24:13] [main/WARN] [mixin/]: Error loading class: java/lang/invoke/MethodHandles$Lookup (java.lang.IllegalArgumentException: Unsupported class file major version 66) [12:24:13] [main/WARN] [mixin/]: Error loading class: java/lang/invoke/MethodHandles$Lookup (java.lang.IllegalArgumentException: Unsupported class file major version 66) [12:24:13] [main/WARN] [mixin/]: Error loading class: java/util/Map$Entry (java.lang.IllegalArgumentException: Unsupported class file major version 66) [12:24:13] [main/WARN] [mixin/]: Error loading class: java/lang/invoke/MethodHandles$Lookup (java.lang.IllegalArgumentException: Unsupported class file major version 66) [12:24:13] [main/WARN] [mixin/]: Error loading class: java/lang/invoke/MethodHandles$Lookup (java.lang.IllegalArgumentException: Unsupported class file major version 66) [12:24:13] [main/WARN] [mixin/]: Error loading class: java/util/concurrent/ForkJoinPool$ForkJoinWorkerThreadFactory (java.lang.IllegalArgumentException: Unsupported class file major version 66) [12:24:13] [main/WARN] [mixin/]: Error loading class: java/lang/invoke/MethodHandles$Lookup (java.lang.IllegalArgumentException: Unsupported class file major version 66) [12:24:13] [main/WARN] [mixin/]: Error loading class: java/util/concurrent/ForkJoinPool$ForkJoinWorkerThreadFactory (java.lang.IllegalArgumentException: Unsupported class file major version 66) [12:24:13] [main/WARN] [mixin/]: Error loading class: java/lang/Thread$UncaughtExceptionHandler (java.lang.IllegalArgumentException: Unsupported class file major version 66) [12:24:13] [main/WARN] [mixin/]: Error loading class: java/lang/invoke/MethodHandles$Lookup (java.lang.IllegalArgumentException: Unsupported class file major version 66) [12:24:13] [main/WARN] [mixin/]: Error loading class: java/lang/invoke/MethodHandles$Lookup (java.lang.IllegalArgumentException: Unsupported class file major version 66) [12:24:13] [main/WARN] [mixin/]: Error loading class: java/lang/invoke/MethodHandles$Lookup (java.lang.IllegalArgumentException: Unsupported class file major version 66) [12:24:13] [main/WARN] [mixin/]: Error loading class: java/lang/invoke/MethodHandles$Lookup (java.lang.IllegalArgumentException: Unsupported class file major version 66) [12:24:13] [main/WARN] [mixin/]: Error loading class: java/lang/invoke/MethodHandles$Lookup (java.lang.IllegalArgumentException: Unsupported class file major version 66) [12:24:13] [main/WARN] [mixin/]: Error loading class: java/lang/invoke/MethodHandles$Lookup (java.lang.IllegalArgumentException: Unsupported class file major version 66) [12:24:13] [main/WARN] [mixin/]: Error loading class: java/lang/invoke/MethodHandles$Lookup (java.lang.IllegalArgumentException: Unsupported class file major version 66) [12:24:13] [main/WARN] [mixin/]: Error loading class: java/lang/invoke/MethodHandles$Lookup (java.lang.IllegalArgumentException: Unsupported class file major version 66) [12:24:13] [main/WARN] [mixin/]: Error loading class: java/lang/invoke/MethodHandles$Lookup (java.lang.IllegalArgumentException: Unsupported class file major version 66) [12:24:13] [main/WARN] [mixin/]: Error loading class: java/lang/invoke/MethodHandles$Lookup (java.lang.IllegalArgumentException: Unsupported class file major version 66) [12:24:13] [main/WARN] [mixin/]: Error loading class: java/lang/invoke/MethodHandles$Lookup (java.lang.IllegalArgumentException: Unsupported class file major version 66) [12:24:13] [main/WARN] [mixin/]: Error loading class: java/lang/invoke/MethodHandles$Lookup (java.lang.IllegalArgumentException: Unsupported class file major version 66) [12:24:13] [main/WARN] [mixin/]: Error loading class: java/lang/invoke/MethodHandles$Lookup (java.lang.IllegalArgumentException: Unsupported class file major version 66) [12:24:13] [main/WARN] [mixin/]: Error loading class: java/lang/invoke/MethodHandles$Lookup (java.lang.IllegalArgumentException: Unsupported class file major version 66) [12:24:13] [main/WARN] [mixin/]: Error loading class: java/lang/invoke/MethodHandles$Lookup (java.lang.IllegalArgumentException: Unsupported class file major version 66) [12:24:13] [main/WARN] [mixin/]: Error loading class: java/util/Map$Entry (java.lang.IllegalArgumentException: Unsupported class file major version 66) [12:24:13] [main/WARN] [mixin/]: Error loading class: java/lang/invoke/MethodHandles$Lookup (java.lang.IllegalArgumentException: Unsupported class file major version 66) [12:24:13] [main/WARN] [mixin/]: Error loading class: java/lang/invoke/MethodHandles$Lookup (java.lang.IllegalArgumentException: Unsupported class file major version 66) [12:24:13] [main/WARN] [mixin/]: Error loading class: java/lang/invoke/MethodHandles$Lookup (java.lang.IllegalArgumentException: Unsupported class file major version 66) [12:24:13] [main/WARN] [mixin/]: Error loading class: java/lang/invoke/MethodHandles$Lookup (java.lang.IllegalArgumentException: Unsupported class file major version 66) [12:24:13] [main/WARN] [mixin/]: Error loading class: java/lang/invoke/MethodHandles$Lookup (java.lang.IllegalArgumentException: Unsupported class file major version 66) [12:24:13] [main/WARN] [mixin/]: Error loading class: java/util/Map$Entry (java.lang.IllegalArgumentException: Unsupported class file major version 66) [12:24:13] [main/WARN] [mixin/]: Error loading class: java/lang/invoke/MethodHandles$Lookup (java.lang.IllegalArgumentException: Unsupported class file major version 66) [12:24:13] [main/WARN] [mixin/]: Error loading class: java/util/Map$Entry (java.lang.IllegalArgumentException: Unsupported class file major version 66) [12:24:13] [main/WARN] [mixin/]: Error loading class: java/lang/invoke/MethodHandles$Lookup (java.lang.IllegalArgumentException: Unsupported class file major version 66) [12:24:13] [main/WARN] [mixin/]: Error loading class: java/lang/invoke/MethodHandles$Lookup (java.lang.IllegalArgumentException: Unsupported class file major version 66) [12:24:13] [main/WARN] [mixin/]: Error loading class: java/util/Map$Entry (java.lang.IllegalArgumentException: Unsupported class file major version 66) [12:24:13] [main/WARN] [mixin/]: Error loading class: java/lang/invoke/MethodHandles$Lookup (java.lang.IllegalArgumentException: Unsupported class file major version 66) [12:24:13] [main/WARN] [mixin/]: Error loading class: java/lang/invoke/MethodHandles$Lookup (java.lang.IllegalArgumentException: Unsupported class file major version 66) [12:24:13] [main/WARN] [mixin/]: Error loading class: java/lang/invoke/MethodHandles$Lookup (java.lang.IllegalArgumentException: Unsupported class file major version 66) [12:24:13] [main/WARN] [mixin/]: Error loading class: java/lang/invoke/MethodHandles$Lookup (java.lang.IllegalArgumentException: Unsupported class file major version 66) [12:24:13] [main/WARN] [mixin/]: Error loading class: java/lang/invoke/MethodHandles$Lookup (java.lang.IllegalArgumentException: Unsupported class file major version 66) [12:24:13] [main/WARN] [mixin/]: Error loading class: java/lang/invoke/MethodHandles$Lookup (java.lang.IllegalArgumentException: Unsupported class file major version 66) [12:24:13] [main/WARN] [mixin/]: Error loading class: java/lang/invoke/MethodHandles$Lookup (java.lang.IllegalArgumentException: Unsupported class file major version 66) [12:24:13] [main/WARN] [mixin/]: Error loading class: java/lang/invoke/MethodHandles$Lookup (java.lang.IllegalArgumentException: Unsupported class file major version 66) [12:24:13] [main/WARN] [mixin/]: Error loading class: java/lang/invoke/MethodHandles$Lookup (java.lang.IllegalArgumentException: Unsupported class file major version 66) [12:24:13] [main/WARN] [mixin/]: Error loading class: java/lang/invoke/MethodHandles$Lookup (java.lang.IllegalArgumentException: Unsupported class file major version 66) [12:24:13] [main/WARN] [mixin/]: Error loading class: java/lang/invoke/MethodHandles$Lookup (java.lang.IllegalArgumentException: Unsupported class file major version 66) [12:24:13] [main/INFO] [MixinExtras|Service/]: Initializing MixinExtras via com.llamalad7.mixinextras.service.MixinExtrasServiceImpl(version=0.2.0-rc.5). [12:24:13] [main/WARN] [mixin/]: Error loading class: java/lang/Thread (java.lang.IllegalArgumentException: Unsupported class file major version 66) Exception in thread "main" java.lang.RuntimeException: org.spongepowered.asm.mixin.transformer.throwables.MixinTransformerError: An unexpected critical error was encountered         at MC-BOOTSTRAP/[email protected]/cpw.mods.modlauncher.LaunchServiceHandlerDecorator.launch(LaunchServiceHandlerDecorator.java:32)         at MC-BOOTSTRAP/[email protected]/cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:53)         at MC-BOOTSTRAP/[email protected]/cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:71)         at MC-BOOTSTRAP/[email protected]/cpw.mods.modlauncher.Launcher.run(Launcher.java:106)         at MC-BOOTSTRAP/[email protected]/cpw.mods.modlauncher.Launcher.main(Launcher.java:77)         at MC-BOOTSTRAP/[email protected]/cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:26)         at MC-BOOTSTRAP/[email protected]/cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:23)         at [email protected]/cpw.mods.bootstraplauncher.BootstrapLauncher.main(BootstrapLauncher.java:141) Caused by: org.spongepowered.asm.mixin.transformer.throwables.MixinTransformerError: An unexpected critical error was encountered         at MC-BOOTSTRAP/org.spongepowered.mixin/org.spongepowered.asm.mixin.transformer.MixinProcessor.applyMixins(MixinProcessor.java:392)         at MC-BOOTSTRAP/org.spongepowered.mixin/org.spongepowered.asm.mixin.transformer.MixinTransformer.transformClass(MixinTransformer.java:250)         at MC-BOOTSTRAP/org.spongepowered.mixin/org.spongepowered.asm.service.modlauncher.MixinTransformationHandler.processClass(MixinTransformationHandler.java:131)         at MC-BOOTSTRAP/org.spongepowered.mixin/org.spongepowered.asm.launch.MixinLaunchPluginLegacy.processClass(MixinLaunchPluginLegacy.java:131)         at MC-BOOTSTRAP/[email protected]/cpw.mods.modlauncher.serviceapi.ILaunchPluginService.processClassWithFlags(ILaunchPluginService.java:156)         at MC-BOOTSTRAP/[email protected]/cpw.mods.modlauncher.LaunchPluginHandler.offerClassNodeToPlugins(LaunchPluginHandler.java:88)         at MC-BOOTSTRAP/[email protected]/cpw.mods.modlauncher.ClassTransformer.transform(ClassTransformer.java:120)         at MC-BOOTSTRAP/[email protected]/cpw.mods.modlauncher.TransformingClassLoader.maybeTransformClassBytes(TransformingClassLoader.java:50)         at cpw.mods.securejarhandler/cpw.mods.cl.ModuleClassLoader.readerToClass(ModuleClassLoader.java:113)         at cpw.mods.securejarhandler/cpw.mods.cl.ModuleClassLoader.lambda$findClass$15(ModuleClassLoader.java:219)         at cpw.mods.securejarhandler/cpw.mods.cl.ModuleClassLoader.loadFromModule(ModuleClassLoader.java:229)         at cpw.mods.securejarhandler/cpw.mods.cl.ModuleClassLoader.findClass(ModuleClassLoader.java:219)         at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:637)         at java.base/java.lang.Class.forName(Class.java:620)         at java.base/java.lang.Class.forName(Class.java:595)         at MC-BOOTSTRAP/[email protected]/net.minecraftforge.fml.loading.targets.CommonServerLaunchHandler.lambda$launchService$0(CommonServerLaunchHandler.java:29)         at MC-BOOTSTRAP/[email protected]/cpw.mods.modlauncher.LaunchServiceHandlerDecorator.launch(LaunchServiceHandlerDecorator.java:30)         ... 7 more Caused by: org.spongepowered.asm.mixin.throwables.ClassMetadataNotFoundException: java.lang.Thread         at MC-BOOTSTRAP/org.spongepowered.mixin/org.spongepowered.asm.mixin.transformer.MixinPreProcessorStandard.transformMethod(MixinPreProcessorStandard.java:754)         at MC-BOOTSTRAP/org.spongepowered.mixin/org.spongepowered.asm.mixin.transformer.MixinPreProcessorStandard.transform(MixinPreProcessorStandard.java:739)         at MC-BOOTSTRAP/org.spongepowered.mixin/org.spongepowered.asm.mixin.transformer.MixinPreProcessorStandard.attach(MixinPreProcessorStandard.java:310)         at MC-BOOTSTRAP/org.spongepowered.mixin/org.spongepowered.asm.mixin.transformer.MixinPreProcessorStandard.createContextFor(MixinPreProcessorStandard.java:280)         at MC-BOOTSTRAP/org.spongepowered.mixin/org.spongepowered.asm.mixin.transformer.MixinInfo.createContextFor(MixinInfo.java:1288)         at MC-BOOTSTRAP/org.spongepowered.mixin/org.spongepowered.asm.mixin.transformer.MixinApplicatorStandard.apply(MixinApplicatorStandard.java:292)         at MC-BOOTSTRAP/org.spongepowered.mixin/org.spongepowered.asm.mixin.transformer.TargetClassContext.apply(TargetClassContext.java:383)         at MC-BOOTSTRAP/org.spongepowered.mixin/org.spongepowered.asm.mixin.transformer.TargetClassContext.applyMixins(TargetClassContext.java:365)         at MC-BOOTSTRAP/org.spongepowered.mixin/org.spongepowered.asm.mixin.transformer.MixinProcessor.applyMixins(MixinProcessor.java:363)         ... 23 more
    • [12мая2024 17:30:19.046] [main/INFO] [cpw.mods.modlauncher.Launcher/MODLAUNCHER]: ModLauncher running: args [--uuid, 2f1c12f0d0d33cd3a57297dc6e0bc697, --accessToken, ????????, --launchTarget, forgeclient, --fml.forgeVersion, 47.2.20, --fml.mcVersion, 1.20.1, --fml.forgeGroup, net.minecraftforge, --fml.mcpVersion, 20230612.114412, --username, LOLMANXD432, --version, Forge 1.20.1, --gameDir, D:\.minecraft, --assetsDir, D:\.minecraft\assets, --assetIndex, 5, --clientId, forge-47.2.32, --xuid, null, --userType, legacy, --versionType, release, --width, 925, --height, 530] [12мая2024 17:30:19.091] [main/INFO] [cpw.mods.modlauncher.Launcher/MODLAUNCHER]: ModLauncher 10.0.9+10.0.9+main.dcd20f30 starting: java version 17.0.2 by Azul Systems, Inc.; OS Windows 7 arch amd64 version 6.1 [12мая2024 17:30:19.319] [main/DEBUG] [cpw.mods.modlauncher.LaunchServiceHandler/MODLAUNCHER]: Found launch services [fmlclientdev,forgeclient,minecraft,forgegametestserverdev,fmlserveruserdev,fmlclient,fmldatauserdev,forgeserverdev,forgeserveruserdev,forgeclientdev,forgeclientuserdev,forgeserver,forgedatadev,fmlserver,fmlclientuserdev,fmlserverdev,forgedatauserdev,testharness,forgegametestserveruserdev] [12мая2024 17:30:19.427] [main/DEBUG] [cpw.mods.modlauncher.NameMappingServiceHandler/MODLAUNCHER]: Found naming services : [srgtomcp] [12мая2024 17:30:19.467] [main/DEBUG] [cpw.mods.modlauncher.LaunchPluginHandler/MODLAUNCHER]: Found launch plugins: [mixin,eventbus,slf4jfixer,object_holder_definalize,runtime_enum_extender,capability_token_subclass,accesstransformer,runtimedistcleaner] [12мая2024 17:30:19.536] [main/DEBUG] [cpw.mods.modlauncher.TransformationServicesHandler/MODLAUNCHER]: Discovering transformation services [12мая2024 17:30:19.568] [main/DEBUG] [net.minecraftforge.fml.loading.FMLPaths/CORE]: Path GAMEDIR is D:\.minecraft [12мая2024 17:30:19.568] [main/DEBUG] [net.minecraftforge.fml.loading.FMLPaths/CORE]: Path MODSDIR is D:\.minecraft\mods [12мая2024 17:30:19.571] [main/DEBUG] [net.minecraftforge.fml.loading.FMLPaths/CORE]: Path CONFIGDIR is D:\.minecraft\config [12мая2024 17:30:19.572] [main/DEBUG] [net.minecraftforge.fml.loading.FMLPaths/CORE]: Path FMLCONFIG is D:\.minecraft\config\fml.toml [12мая2024 17:30:22.076] [main/DEBUG] [cpw.mods.modlauncher.TransformationServicesHandler/MODLAUNCHER]: Found additional transformation services from discovery services:  [12мая2024 17:30:22.109] [main/INFO] [net.minecraftforge.fml.loading.ImmediateWindowHandler/]: Loading ImmediateWindowProvider fmlearlywindow [12мая2024 17:30:22.487] [main/INFO] [EARLYDISPLAY/]: Trying GL version 4.6 [12мая2024 17:30:23.089] [main/INFO] [EARLYDISPLAY/]: Requested GL version 4.6 got version 4.6 [12мая2024 17:30:23.204] [main/DEBUG] [cpw.mods.modlauncher.TransformationServicesHandler/MODLAUNCHER]: Found transformer services : [mixin,fml] [12мая2024 17:30:23.204] [main/DEBUG] [cpw.mods.modlauncher.TransformationServicesHandler/MODLAUNCHER]: Transformation services loading [12мая2024 17:30:23.206] [main/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator/MODLAUNCHER]: Loading service mixin [12мая2024 17:30:23.207] [main/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator/MODLAUNCHER]: Loaded service mixin [12мая2024 17:30:23.207] [main/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator/MODLAUNCHER]: Loading service fml [12мая2024 17:30:23.211] [main/DEBUG] [net.minecraftforge.fml.loading.LauncherVersion/CORE]: Found FMLLauncher version 1.0 [12мая2024 17:30:23.211] [main/DEBUG] [net.minecraftforge.fml.loading.FMLLoader/CORE]: FML 1.0 loading [12мая2024 17:30:23.211] [main/DEBUG] [net.minecraftforge.fml.loading.FMLLoader/CORE]: FML found ModLauncher version : 10.0.9+10.0.9+main.dcd20f30 [12мая2024 17:30:23.212] [main/DEBUG] [net.minecraftforge.fml.loading.FMLLoader/CORE]: FML found AccessTransformer version : 8.0.4+66+master.c09db6d7 [12мая2024 17:30:23.213] [main/DEBUG] [net.minecraftforge.fml.loading.FMLLoader/CORE]: FML found EventBus version : 6.0.5+6.0.5+master.eb8e549b [12мая2024 17:30:23.215] [main/DEBUG] [net.minecraftforge.fml.loading.FMLLoader/CORE]: Found Runtime Dist Cleaner [12мая2024 17:30:23.227] [main/DEBUG] [net.minecraftforge.fml.loading.FMLLoader/CORE]: FML found CoreMod version : 5.0.1+15+master.dc5a2922 [12мая2024 17:30:23.232] [main/DEBUG] [net.minecraftforge.fml.loading.FMLLoader/CORE]: Found ForgeSPI package implementation version 7.0.1+7.0.1+master.d2b38bf6 [12мая2024 17:30:23.232] [main/DEBUG] [net.minecraftforge.fml.loading.FMLLoader/CORE]: Found ForgeSPI package specification 5 [12мая2024 17:30:23.243] [main/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator/MODLAUNCHER]: Loaded service fml [12мая2024 17:30:23.244] [main/DEBUG] [cpw.mods.modlauncher.TransformationServicesHandler/MODLAUNCHER]: Configuring option handling for services [12мая2024 17:30:23.269] [main/DEBUG] [cpw.mods.modlauncher.TransformationServicesHandler/MODLAUNCHER]: Transformation services initializing [12мая2024 17:30:23.274] [main/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator/MODLAUNCHER]: Initializing transformation service mixin [12мая2024 17:30:23.334] [main/DEBUG] [mixin/]: MixinService [ModLauncher] was successfully booted in cpw.mods.cl.ModuleClassLoader@1ed1993a [12мая2024 17:30:23.415] [main/INFO] [mixin/]: SpongePowered MIXIN Subsystem Version=0.8.5 Source=union:/D:/.minecraft/libraries/org/spongepowered/mixin/0.8.5/mixin-0.8.5.jar%23109!/ Service=ModLauncher Env=CLIENT [12мая2024 17:30:23.429] [main/DEBUG] [mixin/]: Initialising Mixin Platform Manager [12мая2024 17:30:23.430] [main/DEBUG] [mixin/]: Adding mixin platform agents for container ModLauncher Root Container(ModLauncher:4f56a0a2) [12мая2024 17:30:23.432] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for ModLauncher Root Container(ModLauncher:4f56a0a2) [12мая2024 17:30:23.434] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container ModLauncher Root Container(ModLauncher:4f56a0a2) [12мая2024 17:30:23.436] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for ModLauncher Root Container(ModLauncher:4f56a0a2) [12мая2024 17:30:23.436] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container ModLauncher Root Container(ModLauncher:4f56a0a2) [12мая2024 17:30:23.447] [main/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator/MODLAUNCHER]: Initialized transformation service mixin [12мая2024 17:30:23.448] [main/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator/MODLAUNCHER]: Initializing transformation service fml [12мая2024 17:30:23.448] [main/DEBUG] [net.minecraftforge.fml.loading.FMLServiceProvider/CORE]: Setting up basic FML game directories [12мая2024 17:30:23.449] [main/DEBUG] [net.minecraftforge.fml.loading.FMLPaths/CORE]: Path GAMEDIR is D:\.minecraft [12мая2024 17:30:23.450] [main/DEBUG] [net.minecraftforge.fml.loading.FMLPaths/CORE]: Path MODSDIR is D:\.minecraft\mods [12мая2024 17:30:23.451] [main/DEBUG] [net.minecraftforge.fml.loading.FMLPaths/CORE]: Path CONFIGDIR is D:\.minecraft\config [12мая2024 17:30:23.451] [main/DEBUG] [net.minecraftforge.fml.loading.FMLPaths/CORE]: Path FMLCONFIG is D:\.minecraft\config\fml.toml [12мая2024 17:30:23.451] [main/DEBUG] [net.minecraftforge.fml.loading.FMLServiceProvider/CORE]: Loading configuration [12мая2024 17:30:23.460] [main/DEBUG] [net.minecraftforge.fml.loading.FMLServiceProvider/CORE]: Preparing ModFile [12мая2024 17:30:23.467] [main/DEBUG] [net.minecraftforge.fml.loading.FMLServiceProvider/CORE]: Preparing launch handler [12мая2024 17:30:23.469] [main/DEBUG] [net.minecraftforge.fml.loading.FMLLoader/CORE]: Using forgeclient as launch service [12мая2024 17:30:23.519] [main/DEBUG] [net.minecraftforge.fml.loading.FMLLoader/CORE]: Received command line version data  : VersionInfo[forgeVersion=47.2.20, mcVersion=1.20.1, mcpVersion=20230612.114412, forgeGroup=net.minecraftforge] [12мая2024 17:30:23.529] [main/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator/MODLAUNCHER]: Initialized transformation service fml [12мая2024 17:30:23.533] [main/DEBUG] [cpw.mods.modlauncher.NameMappingServiceHandler/MODLAUNCHER]: Current naming domain is 'srg' [12мая2024 17:30:23.537] [main/DEBUG] [cpw.mods.modlauncher.NameMappingServiceHandler/MODLAUNCHER]: Identified name mapping providers {} [12мая2024 17:30:23.541] [main/DEBUG] [cpw.mods.modlauncher.TransformationServicesHandler/MODLAUNCHER]: Transformation services begin scanning [12мая2024 17:30:23.554] [main/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator/MODLAUNCHER]: Beginning scan trigger - transformation service mixin [12мая2024 17:30:23.555] [main/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator/MODLAUNCHER]: End scan trigger - transformation service mixin [12мая2024 17:30:23.556] [main/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator/MODLAUNCHER]: Beginning scan trigger - transformation service fml [12мая2024 17:30:23.556] [main/DEBUG] [net.minecraftforge.fml.loading.FMLServiceProvider/CORE]: Initiating mod scan [12мая2024 17:30:23.599] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModListHandler/CORE]: Found mod coordinates from lists: [] [12мая2024 17:30:23.613] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModDiscoverer/CORE]: Found Mod Locators : (mods folder:null),(maven libs:null),(exploded directory:null),(minecraft:null),(userdev classpath:null) [12мая2024 17:30:23.614] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModDiscoverer/CORE]: Found Dependency Locators : (JarInJar:null) [12мая2024 17:30:23.642] [pool-2-thread-1/INFO] [EARLYDISPLAY/]: GL info: GeForce GT 730/PCIe/SSE2 GL version 4.6.0 NVIDIA 390.77, NVIDIA Corporation [12мая2024 17:30:23.651] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate D:\.minecraft\mods\AdvancementPlaques-1.20.1-forge-1.5.1.jar [12мая2024 17:30:23.846] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file AdvancementPlaques-1.20.1-forge-1.5.1.jar with {advancementplaques} mods - versions {1.5.1} [12мая2024 17:30:23.864] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate D:\.minecraft\mods\alexscaves-1.1.4.jar [12мая2024 17:30:23.871] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file alexscaves-1.1.4.jar with {alexscaves} mods - versions {1.1.4} [12мая2024 17:30:23.910] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate D:\.minecraft\mods\alexsmobs-1.22.8.jar [12мая2024 17:30:23.929] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file alexsmobs-1.22.8.jar with {alexsmobs} mods - versions {1.22.8} [12мая2024 17:30:23.955] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate D:\.minecraft\mods\AmbientSounds_FORGE_v5.3.9_mc1.20.1.jar [12мая2024 17:30:23.959] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file AmbientSounds_FORGE_v5.3.9_mc1.20.1.jar with {ambientsounds} mods - versions {5.3.9} [12мая2024 17:30:23.971] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate D:\.minecraft\mods\architectury-9.2.14-forge.jar [12мая2024 17:30:23.978] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file architectury-9.2.14-forge.jar with {architectury} mods - versions {9.2.14} [12мая2024 17:30:24.001] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate D:\.minecraft\mods\BadOptimizations-2.1.1.jar [12мая2024 17:30:24.011] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file BadOptimizations-2.1.1.jar with {badoptimizations} mods - versions {2.1.1} [12мая2024 17:30:24.026] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate D:\.minecraft\mods\balm-forge-1.20.1-7.2.2.jar [12мая2024 17:30:24.030] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file balm-forge-1.20.1-7.2.2.jar with {balm} mods - versions {7.2.2} [12мая2024 17:30:24.069] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate D:\.minecraft\mods\blur-forge-3.1.1.jar [12мая2024 17:30:24.089] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file blur-forge-3.1.1.jar with {blur} mods - versions {3.1.1} [12мая2024 17:30:24.099] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate D:\.minecraft\mods\canary-mc1.20.1-0.3.3.jar [12мая2024 17:30:24.128] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file canary-mc1.20.1-0.3.3.jar with {canary} mods - versions {0.3.3} [12мая2024 17:30:24.142] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate D:\.minecraft\mods\citadel-2.5.4-1.20.1.jar [12мая2024 17:30:24.156] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file citadel-2.5.4-1.20.1.jar with {citadel} mods - versions {2.5.4} [12мая2024 17:30:24.182] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate D:\.minecraft\mods\CreativeCore_FORGE_v2.11.27_mc1.20.1.jar [12мая2024 17:30:24.185] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file CreativeCore_FORGE_v2.11.27_mc1.20.1.jar with {creativecore} mods - versions {2.11.27} [12мая2024 17:30:24.201] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate D:\.minecraft\mods\doespotatotick-1.20.1-4.0.2.jar [12мая2024 17:30:24.203] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file doespotatotick-1.20.1-4.0.2.jar with {doespotatotick} mods - versions {1.20.1-4.0.2} [12мая2024 17:30:24.218] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate D:\.minecraft\mods\dungeons-and-taverns-3.0.3.f.jar [12мая2024 17:30:24.228] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file dungeons-and-taverns-3.0.3.f.jar with {mr_dungeons_andtaverns} mods - versions {3.0.3.f} [12мая2024 17:30:24.240] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate D:\.minecraft\mods\dynamiclightsreforged-1.20.1_v1.6.0.jar [12мая2024 17:30:24.247] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file dynamiclightsreforged-1.20.1_v1.6.0.jar with {dynamiclightsreforged} mods - versions {1.20.1_v1.6.0} [12мая2024 17:30:24.255] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate D:\.minecraft\mods\entity_model_features_forge_1.20.1-2.0.2.jar [12мая2024 17:30:24.263] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file entity_model_features_forge_1.20.1-2.0.2.jar with {entity_model_features} mods - versions {2.0.2} [12мая2024 17:30:24.281] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate D:\.minecraft\mods\entity_texture_features_forge_1.20.1-6.0.1.jar [12мая2024 17:30:24.284] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file entity_texture_features_forge_1.20.1-6.0.1.jar with {entity_texture_features} mods - versions {6.0.1} [12мая2024 17:30:24.302] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate D:\.minecraft\mods\entityculling-forge-1.6.2-mc1.20.1.jar [12мая2024 17:30:24.304] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file entityculling-forge-1.6.2-mc1.20.1.jar with {entityculling} mods - versions {1.6.2} [12мая2024 17:30:24.316] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate D:\.minecraft\mods\EpicFight-20.7.4.jar [12мая2024 17:30:24.318] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file EpicFight-20.7.4.jar with {epicfight} mods - versions {20.7.4} [12мая2024 17:30:24.330] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate D:\.minecraft\mods\explorify-v1.4.0.jar [12мая2024 17:30:24.332] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file explorify-v1.4.0.jar with {explorify} mods - versions {1.4.0} [12мая2024 17:30:24.346] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate D:\.minecraft\mods\Fallingleaves-1.20.1-2.1.0.jar [12мая2024 17:30:24.351] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file Fallingleaves-1.20.1-2.1.0.jar with {fallingleaves} mods - versions {2.1.0} [12мая2024 17:30:24.366] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate D:\.minecraft\mods\FastFurnace-1.20.1-8.0.2.jar [12мая2024 17:30:24.368] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file FastFurnace-1.20.1-8.0.2.jar with {fastfurnace} mods - versions {8.0.2} [12мая2024 17:30:24.372] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate D:\.minecraft\mods\fastpaintings-1.20-1.2.7.jar [12мая2024 17:30:24.378] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file fastpaintings-1.20-1.2.7.jar with {fastpaintings} mods - versions {1.20-1.2.7} [12мая2024 17:30:24.385] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate D:\.minecraft\mods\FastSuite-1.20.1-5.0.1.jar [12мая2024 17:30:24.390] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file FastSuite-1.20.1-5.0.1.jar with {fastsuite} mods - versions {5.0.1} [12мая2024 17:30:24.423] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate D:\.minecraft\mods\FastWorkbench-1.20.1-8.0.4.jar [12мая2024 17:30:24.425] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file FastWorkbench-1.20.1-8.0.4.jar with {fastbench} mods - versions {8.0.4} [12мая2024 17:30:24.503] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate D:\.minecraft\mods\ferritecore-6.0.1-forge.jar [12мая2024 17:30:24.505] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file ferritecore-6.0.1-forge.jar with {ferritecore} mods - versions {6.0.1} [12мая2024 17:30:24.516] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate D:\.minecraft\mods\Iceberg-1.20.1-forge-1.1.21.jar [12мая2024 17:30:24.520] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file Iceberg-1.20.1-forge-1.1.21.jar with {iceberg} mods - versions {1.1.21} [12мая2024 17:30:24.526] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate D:\.minecraft\mods\ImmediatelyFast-Forge-1.2.14+1.20.4.jar [12мая2024 17:30:24.530] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file ImmediatelyFast-Forge-1.2.14+1.20.4.jar with {immediatelyfast} mods - versions {1.2.14+1.20.4} [12мая2024 17:30:24.539] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate D:\.minecraft\mods\jei-1.20.1-forge-15.3.0.4.jar [12мая2024 17:30:24.548] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file jei-1.20.1-forge-15.3.0.4.jar with {jei} mods - versions {15.3.0.4} [12мая2024 17:30:24.564] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate D:\.minecraft\mods\klmaster-forge-1.20-1.20.1.jar [12мая2024 17:30:24.567] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file klmaster-forge-1.20-1.20.1.jar with {klmaster} mods - versions {3.0} [12мая2024 17:30:24.578] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate D:\.minecraft\mods\majrusz-library-forge-1.20.1-7.0.8.jar [12мая2024 17:30:24.582] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file majrusz-library-forge-1.20.1-7.0.8.jar with {majruszlibrary} mods - versions {7.0.8} [12мая2024 17:30:24.587] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate D:\.minecraft\mods\majruszs-difficulty-forge-1.20.1-1.9.10.jar [12мая2024 17:30:24.589] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file majruszs-difficulty-forge-1.20.1-1.9.10.jar with {majruszsdifficulty} mods - versions {1.9.10} [12мая2024 17:30:24.596] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate D:\.minecraft\mods\majruszs-enchantments-forge-1.20.1-1.10.8.jar [12мая2024 17:30:24.599] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file majruszs-enchantments-forge-1.20.1-1.10.8.jar with {majruszsenchantments} mods - versions {1.10.8} [12мая2024 17:30:24.607] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate D:\.minecraft\mods\make_bubbles_pop-0.2.0-forge-mc1.19.4+.jar [12мая2024 17:30:24.611] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file make_bubbles_pop-0.2.0-forge-mc1.19.4+.jar with {make_bubbles_pop} mods - versions {0.2.0-forge} [12мая2024 17:30:24.623] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate D:\.minecraft\mods\modernfix-forge-5.17.0+mc1.20.1.jar [12мая2024 17:30:24.627] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file modernfix-forge-5.17.0+mc1.20.1.jar with {modernfix} mods - versions {5.17.0+mc1.20.1} [12мая2024 17:30:24.634] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate D:\.minecraft\mods\moonlight-1.20-2.11.17-forge.jar [12мая2024 17:30:24.635] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file moonlight-1.20-2.11.17-forge.jar with {moonlight} mods - versions {1.20-2.11.17} [12мая2024 17:30:24.641] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate D:\.minecraft\mods\nerb-1.20.1-0.3-FORGE.jar [12мая2024 17:30:24.646] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file nerb-1.20.1-0.3-FORGE.jar with {nerb} mods - versions {0.3} [12мая2024 17:30:24.653] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate D:\.minecraft\mods\notenoughanimations-forge-1.7.3-mc1.20.1.jar [12мая2024 17:30:24.654] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file notenoughanimations-forge-1.7.3-mc1.20.1.jar with {notenoughanimations} mods - versions {1.7.3} [12мая2024 17:30:24.663] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate D:\.minecraft\mods\notenoughcrashes-4.4.7+1.20.1-forge.jar [12мая2024 17:30:24.668] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file notenoughcrashes-4.4.7+1.20.1-forge.jar with {notenoughcrashes} mods - versions {4.4.7+1.20.1} [12мая2024 17:30:24.677] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate D:\.minecraft\mods\oculus-mc1.20.1-1.7.0.jar [12мая2024 17:30:24.680] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file oculus-mc1.20.1-1.7.0.jar with {oculus} mods - versions {1.7.0} [12мая2024 17:30:24.684] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate D:\.minecraft\mods\Placebo-1.20.1-8.6.1.jar [12мая2024 17:30:24.685] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file Placebo-1.20.1-8.6.1.jar with {placebo} mods - versions {8.6.1} [12мая2024 17:30:24.689] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate D:\.minecraft\mods\rubidium-mc1.20.1-0.7.1a.jar [12мая2024 17:30:24.691] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file rubidium-mc1.20.1-0.7.1a.jar with {rubidium,sodium} mods - versions {0.7.1a,0.5.3} [12мая2024 17:30:24.698] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate D:\.minecraft\mods\saturn-mc1.20.1-0.1.3.jar [12мая2024 17:30:24.700] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file saturn-mc1.20.1-0.1.3.jar with {saturn} mods - versions {0.1.3} [12мая2024 17:30:24.703] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate D:\.minecraft\mods\sfcr-1.7.6-mc1.20.jar [12мая2024 17:30:24.705] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file sfcr-1.7.6-mc1.20.jar with {sfcr} mods - versions {1.7.6-mc1.20} [12мая2024 17:30:24.710] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate D:\.minecraft\mods\smoothboot(reloaded)-mc1.20.1-0.0.4.jar [12мая2024 17:30:24.712] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file smoothboot(reloaded)-mc1.20.1-0.0.4.jar with {smoothboot} mods - versions {0.0.4} [12мая2024 17:30:24.717] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate D:\.minecraft\mods\sound-physics-remastered-forge-1.20.1-1.3.1.jar [12мая2024 17:30:24.719] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file sound-physics-remastered-forge-1.20.1-1.3.1.jar with {sound_physics_remastered} mods - versions {1.20.1-1.3.1} [12мая2024 17:30:24.733] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate D:\.minecraft\mods\starlight-1.1.2+forge.1cda73c.jar [12мая2024 17:30:24.735] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file starlight-1.1.2+forge.1cda73c.jar with {starlight} mods - versions {1.1.2+forge.1cda73c} [12мая2024 17:30:24.741] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate D:\.minecraft\mods\takesapillage-1.0.3-1.20.1.jar [12мая2024 17:30:24.746] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file takesapillage-1.0.3-1.20.1.jar with {takesapillage} mods - versions {1.0.3} [12мая2024 17:30:24.754] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate D:\.minecraft\mods\waystones-forge-1.20-14.1.3.jar [12мая2024 17:30:24.755] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file waystones-forge-1.20-14.1.3.jar with {waystones} mods - versions {14.1.3} [12мая2024 17:30:24.760] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate D:\.minecraft\mods\wd's_fps_boost-1.0.0-forge-1.20.1.jar [12мая2024 17:30:24.761] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file wd's_fps_boost-1.0.0-forge-1.20.1.jar with {waters_fps_boost} mods - versions {1.0.0} [12мая2024 17:30:24.767] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate D:\.minecraft\mods\witherstormmod-1.20.1-4.1-all.jar [12мая2024 17:30:24.770] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file witherstormmod-1.20.1-4.1-all.jar with {witherstormmod} mods - versions {4.1} [12мая2024 17:30:24.785] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate D:\.minecraft\mods\YungsApi-1.20-Forge-4.0.4.jar [12мая2024 17:30:24.787] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file YungsApi-1.20-Forge-4.0.4.jar with {yungsapi} mods - versions {1.20-Forge-4.0.4} [12мая2024 17:30:24.801] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate D:\.minecraft\mods\YungsBetterDesertTemples-1.20-Forge-3.0.3.jar [12мая2024 17:30:24.803] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file YungsBetterDesertTemples-1.20-Forge-3.0.3.jar with {betterdeserttemples} mods - versions {1.20-Forge-3.0.3} [12мая2024 17:30:24.813] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate D:\.minecraft\mods\YungsBetterDungeons-1.20-Forge-4.0.3.jar [12мая2024 17:30:24.815] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file YungsBetterDungeons-1.20-Forge-4.0.3.jar with {betterdungeons} mods - versions {1.20-Forge-4.0.3} [12мая2024 17:30:24.820] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate D:\.minecraft\mods\YungsBetterEndIsland-1.20-Forge-2.0.6.jar [12мая2024 17:30:24.823] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file YungsBetterEndIsland-1.20-Forge-2.0.6.jar with {betterendisland} mods - versions {1.20-Forge-2.0.6} [12мая2024 17:30:24.836] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate D:\.minecraft\mods\YungsBetterJungleTemples-1.20-Forge-2.0.4.jar [12мая2024 17:30:24.838] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file YungsBetterJungleTemples-1.20-Forge-2.0.4.jar with {betterjungletemples} mods - versions {1.20-Forge-2.0.4} [12мая2024 17:30:24.849] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate D:\.minecraft\mods\YungsBetterMineshafts-1.20-Forge-4.0.4.jar [12мая2024 17:30:24.851] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file YungsBetterMineshafts-1.20-Forge-4.0.4.jar with {bettermineshafts} mods - versions {1.20-Forge-4.0.4} [12мая2024 17:30:24.865] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate D:\.minecraft\mods\YungsBetterNetherFortresses-1.20-Forge-2.0.5.jar [12мая2024 17:30:24.867] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file YungsBetterNetherFortresses-1.20-Forge-2.0.5.jar with {betterfortresses} mods - versions {1.20-Forge-2.0.5} [12мая2024 17:30:24.884] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate D:\.minecraft\mods\YungsBetterOceanMonuments-1.20-Forge-3.0.4.jar [12мая2024 17:30:24.886] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file YungsBetterOceanMonuments-1.20-Forge-3.0.4.jar with {betteroceanmonuments} mods - versions {1.20-Forge-3.0.4} [12мая2024 17:30:24.898] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate D:\.minecraft\mods\YungsBetterStrongholds-1.20-Forge-4.0.3.jar [12мая2024 17:30:24.900] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file YungsBetterStrongholds-1.20-Forge-4.0.3.jar with {betterstrongholds} mods - versions {1.20-Forge-4.0.3} [12мая2024 17:30:24.913] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate D:\.minecraft\mods\YungsBetterWitchHuts-1.20-Forge-3.0.3.jar [12мая2024 17:30:24.917] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file YungsBetterWitchHuts-1.20-Forge-3.0.3.jar with {betterwitchhuts} mods - versions {1.20-Forge-3.0.3} [12мая2024 17:30:24.923] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate D:\.minecraft\mods\YungsBridges-1.20-Forge-4.0.3.jar [12мая2024 17:30:24.925] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file YungsBridges-1.20-Forge-4.0.3.jar with {yungsbridges} mods - versions {1.20-Forge-4.0.3} [12мая2024 17:30:24.931] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate D:\.minecraft\mods\YungsExtras-1.20-Forge-4.0.3.jar [12мая2024 17:30:24.933] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file YungsExtras-1.20-Forge-4.0.3.jar with {yungsextras} mods - versions {1.20-Forge-4.0.3} [12мая2024 17:30:25.490] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file client-1.20.1-20230612.114412-srg.jar with {minecraft} mods - versions {1.20.1} [12мая2024 17:30:25.501] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate D:\.minecraft\libraries\net\minecraftforge\fmlcore\1.20.1-47.2.20\fmlcore-1.20.1-47.2.20.jar [12мая2024 17:30:25.501] [main/WARN] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Mod file D:\.minecraft\libraries\net\minecraftforge\fmlcore\1.20.1-47.2.20\fmlcore-1.20.1-47.2.20.jar is missing mods.toml file [12мая2024 17:30:25.509] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate D:\.minecraft\libraries\net\minecraftforge\javafmllanguage\1.20.1-47.2.20\javafmllanguage-1.20.1-47.2.20.jar [12мая2024 17:30:25.509] [main/WARN] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Mod file D:\.minecraft\libraries\net\minecraftforge\javafmllanguage\1.20.1-47.2.20\javafmllanguage-1.20.1-47.2.20.jar is missing mods.toml file [12мая2024 17:30:25.516] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate D:\.minecraft\libraries\net\minecraftforge\lowcodelanguage\1.20.1-47.2.20\lowcodelanguage-1.20.1-47.2.20.jar [12мая2024 17:30:25.517] [main/WARN] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Mod file D:\.minecraft\libraries\net\minecraftforge\lowcodelanguage\1.20.1-47.2.20\lowcodelanguage-1.20.1-47.2.20.jar is missing mods.toml file [12мая2024 17:30:25.523] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate D:\.minecraft\libraries\net\minecraftforge\mclanguage\1.20.1-47.2.20\mclanguage-1.20.1-47.2.20.jar [12мая2024 17:30:25.523] [main/WARN] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Mod file D:\.minecraft\libraries\net\minecraftforge\mclanguage\1.20.1-47.2.20\mclanguage-1.20.1-47.2.20.jar is missing mods.toml file [12мая2024 17:30:25.611] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate D:\.minecraft\libraries\net\minecraftforge\forge\1.20.1-47.2.20\forge-1.20.1-47.2.20-universal.jar [12мая2024 17:30:25.620] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file forge-1.20.1-47.2.20-universal.jar with {forge} mods - versions {47.2.20} [12мая2024 17:30:25.690] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF\jarjar\metadata.json from saturn-mc1.20.1-0.1.3.jar, it does not contain dependency information. [12мая2024 17:30:25.690] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF\jarjar\metadata.json from dynamiclightsreforged-1.20.1_v1.6.0.jar, it does not contain dependency information. [12мая2024 17:30:25.691] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF\jarjar\metadata.json from YungsBetterDungeons-1.20-Forge-4.0.3.jar, it does not contain dependency information. [12мая2024 17:30:25.691] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF\jarjar\metadata.json from notenoughcrashes-4.4.7+1.20.1-forge.jar, it does not contain dependency information. [12мая2024 17:30:25.691] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF\jarjar\metadata.json from YungsBetterWitchHuts-1.20-Forge-3.0.3.jar, it does not contain dependency information. [12мая2024 17:30:25.691] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF\jarjar\metadata.json from alexsmobs-1.22.8.jar, it does not contain dependency information. [12мая2024 17:30:25.692] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF\jarjar\metadata.json from jei-1.20.1-forge-15.3.0.4.jar, it does not contain dependency information. [12мая2024 17:30:25.692] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF\jarjar\metadata.json from majruszs-difficulty-forge-1.20.1-1.9.10.jar, it does not contain dependency information. [12мая2024 17:30:25.692] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF\jarjar\metadata.json from YungsBetterOceanMonuments-1.20-Forge-3.0.4.jar, it does not contain dependency information. [12мая2024 17:30:25.693] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF\jarjar\metadata.json from nerb-1.20.1-0.3-FORGE.jar, it does not contain dependency information. [12мая2024 17:30:25.693] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF\jarjar\metadata.json from rubidium-mc1.20.1-0.7.1a.jar, it does not contain dependency information. [12мая2024 17:30:25.693] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF\jarjar\metadata.json from sound-physics-remastered-forge-1.20.1-1.3.1.jar, it does not contain dependency information. [12мая2024 17:30:25.693] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF\jarjar\metadata.json from waystones-forge-1.20-14.1.3.jar, it does not contain dependency information. [12мая2024 17:30:25.694] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF\jarjar\metadata.json from Fallingleaves-1.20.1-2.1.0.jar, it does not contain dependency information. [12мая2024 17:30:25.694] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF\jarjar\metadata.json from EpicFight-20.7.4.jar, it does not contain dependency information. [12мая2024 17:30:25.694] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF\jarjar\metadata.json from FastSuite-1.20.1-5.0.1.jar, it does not contain dependency information. [12мая2024 17:30:25.694] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF\jarjar\metadata.json from Placebo-1.20.1-8.6.1.jar, it does not contain dependency information. [12мая2024 17:30:25.698] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF\jarjar\metadata.json from citadel-2.5.4-1.20.1.jar, it does not contain dependency information. [12мая2024 17:30:25.699] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF\jarjar\metadata.json from YungsApi-1.20-Forge-4.0.4.jar, it does not contain dependency information. [12мая2024 17:30:25.700] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF\jarjar\metadata.json from make_bubbles_pop-0.2.0-forge-mc1.19.4+.jar, it does not contain dependency information. [12мая2024 17:30:25.701] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF\jarjar\metadata.json from starlight-1.1.2+forge.1cda73c.jar, it does not contain dependency information. [12мая2024 17:30:25.701] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF\jarjar\metadata.json from YungsBetterDesertTemples-1.20-Forge-3.0.3.jar, it does not contain dependency information. [12мая2024 17:30:25.701] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF\jarjar\metadata.json from takesapillage-1.0.3-1.20.1.jar, it does not contain dependency information. [12мая2024 17:30:25.701] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF\jarjar\metadata.json from balm-forge-1.20.1-7.2.2.jar, it does not contain dependency information. [12мая2024 17:30:25.701] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF\jarjar\metadata.json from wd's_fps_boost-1.0.0-forge-1.20.1.jar, it does not contain dependency information. [12мая2024 17:30:25.702] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF\jarjar\metadata.json from YungsBetterNetherFortresses-1.20-Forge-2.0.5.jar, it does not contain dependency information. [12мая2024 17:30:25.705] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF\jarjar\metadata.json from forge-1.20.1-47.2.20-universal.jar, it does not contain dependency information. [12мая2024 17:30:25.706] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF\jarjar\metadata.json from sfcr-1.7.6-mc1.20.jar, it does not contain dependency information. [12мая2024 17:30:25.706] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF\jarjar\metadata.json from AdvancementPlaques-1.20.1-forge-1.5.1.jar, it does not contain dependency information. [12мая2024 17:30:25.706] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF\jarjar\metadata.json from client-1.20.1-20230612.114412-srg.jar, it does not contain dependency information. [12мая2024 17:30:25.707] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF\jarjar\metadata.json from entity_model_features_forge_1.20.1-2.0.2.jar, it does not contain dependency information. [12мая2024 17:30:25.707] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF\jarjar\metadata.json from alexscaves-1.1.4.jar, it does not contain dependency information. [12мая2024 17:30:25.708] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF\jarjar\metadata.json from AmbientSounds_FORGE_v5.3.9_mc1.20.1.jar, it does not contain dependency information. [12мая2024 17:30:25.709] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF\jarjar\metadata.json from klmaster-forge-1.20-1.20.1.jar, it does not contain dependency information. [12мая2024 17:30:25.709] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF\jarjar\metadata.json from explorify-v1.4.0.jar, it does not contain dependency information. [12мая2024 17:30:25.710] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF\jarjar\metadata.json from CreativeCore_FORGE_v2.11.27_mc1.20.1.jar, it does not contain dependency information. [12мая2024 17:30:25.710] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF\jarjar\metadata.json from YungsBridges-1.20-Forge-4.0.3.jar, it does not contain dependency information. [12мая2024 17:30:25.711] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF\jarjar\metadata.json from smoothboot(reloaded)-mc1.20.1-0.0.4.jar, it does not contain dependency information. [12мая2024 17:30:25.711] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF\jarjar\metadata.json from notenoughanimations-forge-1.7.3-mc1.20.1.jar, it does not contain dependency information. [12мая2024 17:30:25.712] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF\jarjar\metadata.json from Iceberg-1.20.1-forge-1.1.21.jar, it does not contain dependency information. [12мая2024 17:30:25.712] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF\jarjar\metadata.json from FastWorkbench-1.20.1-8.0.4.jar, it does not contain dependency information. [12мая2024 17:30:25.713] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF\jarjar\metadata.json from YungsExtras-1.20-Forge-4.0.3.jar, it does not contain dependency information. [12мая2024 17:30:25.713] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF\jarjar\metadata.json from dungeons-and-taverns-3.0.3.f.jar, it does not contain dependency information. [12мая2024 17:30:25.713] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF\jarjar\metadata.json from entityculling-forge-1.6.2-mc1.20.1.jar, it does not contain dependency information. [12мая2024 17:30:25.713] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF\jarjar\metadata.json from doespotatotick-1.20.1-4.0.2.jar, it does not contain dependency information. [12мая2024 17:30:25.715] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF\jarjar\metadata.json from canary-mc1.20.1-0.3.3.jar, it does not contain dependency information. [12мая2024 17:30:25.716] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF\jarjar\metadata.json from YungsBetterStrongholds-1.20-Forge-4.0.3.jar, it does not contain dependency information. [12мая2024 17:30:25.717] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF\jarjar\metadata.json from FastFurnace-1.20.1-8.0.2.jar, it does not contain dependency information. [12мая2024 17:30:25.717] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF\jarjar\metadata.json from architectury-9.2.14-forge.jar, it does not contain dependency information. [12мая2024 17:30:25.718] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF\jarjar\metadata.json from ferritecore-6.0.1-forge.jar, it does not contain dependency information. [12мая2024 17:30:25.718] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF\jarjar\metadata.json from YungsBetterEndIsland-1.20-Forge-2.0.6.jar, it does not contain dependency information. [12мая2024 17:30:25.718] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF\jarjar\metadata.json from majruszs-enchantments-forge-1.20.1-1.10.8.jar, it does not contain dependency information. [12мая2024 17:30:25.719] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF\jarjar\metadata.json from YungsBetterMineshafts-1.20-Forge-4.0.4.jar, it does not contain dependency information. [12мая2024 17:30:25.720] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF\jarjar\metadata.json from majrusz-library-forge-1.20.1-7.0.8.jar, it does not contain dependency information. [12мая2024 17:30:25.720] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF\jarjar\metadata.json from YungsBetterJungleTemples-1.20-Forge-2.0.4.jar, it does not contain dependency information. [12мая2024 17:30:25.721] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF\jarjar\metadata.json from mclanguage-1.20.1-47.2.20.jar, it does not contain dependency information. [12мая2024 17:30:25.722] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF\jarjar\metadata.json from javafmllanguage-1.20.1-47.2.20.jar, it does not contain dependency information. [12мая2024 17:30:25.729] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF\jarjar\metadata.json from fmlcore-1.20.1-47.2.20.jar, it does not contain dependency information. [12мая2024 17:30:25.730] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF\jarjar\metadata.json from lowcodelanguage-1.20.1-47.2.20.jar, it does not contain dependency information. [12мая2024 17:30:25.925] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate  [12мая2024 17:30:25.926] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file forge-mixinextras-forge-0.3.2.jar with {mixinextras} mods - versions {0.3.2} [12мая2024 17:30:25.944] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate  [12мая2024 17:30:25.946] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file satin-forge-1.20.1+1.15.0-SNAPSHOT.jar with {satin} mods - versions {1.20.1+1.15.0-SNAPSHOT} [12мая2024 17:30:25.960] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate  [12мая2024 17:30:25.984] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file crackerslib-forge-1.20.1-0.3.2.1.jar with {crackerslib} mods - versions {1.20.1-0.3.2.1} [12мая2024 17:30:26.022] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate  [12мая2024 17:30:26.023] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file mixinextras-forge-0.2.1-beta.2.jar with {mixinextras} mods - versions {0.2.1-beta.2} [12мая2024 17:30:26.077] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate  [12мая2024 17:30:26.079] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file mixinextras-forge-0.3.5.jar with {mixinextras} mods - versions {0.3.5} [12мая2024 17:30:26.093] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate  [12мая2024 17:30:26.095] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file mixinextras-forge-0.3.2.jar with {mixinextras} mods - versions {0.3.2} [12мая2024 17:30:26.103] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate  [12мая2024 17:30:26.107] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file mixinextras-forge-0.2.1-beta.2.jar with {mixinextras} mods - versions {0.2.1-beta.2} [12мая2024 17:30:26.142] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate  [12мая2024 17:30:26.144] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file mixinextras-forge-0.2.1.jar with {mixinextras} mods - versions {0.2.1} [12мая2024 17:30:26.145] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF\jarjar\metadata.json from crackerslib-forge-1.20.1-0.3.2.1.jar, it does not contain dependency information. [12мая2024 17:30:26.157] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF\jarjar\metadata.json from httpmime-4.5.10.jar, it does not contain dependency information. [12мая2024 17:30:26.169] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF\jarjar\metadata.json from Reflect-1.3.2.jar, it does not contain dependency information. [12мая2024 17:30:26.194] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF\jarjar\metadata.json from jcpp-1.4.14.jar, it does not contain dependency information. [12мая2024 17:30:26.194] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF\jarjar\metadata.json from MixinExtras-0.3.2.jar, it does not contain dependency information. [12мая2024 17:30:26.208] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF\jarjar\metadata.json from MixinExtras-0.2.1-beta.2.jar, it does not contain dependency information. [12мая2024 17:30:26.208] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF\jarjar\metadata.json from MixinExtras-0.3.5.jar, it does not contain dependency information. [12мая2024 17:30:26.208] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF\jarjar\metadata.json from MixinExtras-0.3.2.jar, it does not contain dependency information. [12мая2024 17:30:26.208] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF\jarjar\metadata.json from MixinExtras-0.2.1-beta.2.jar, it does not contain dependency information. [12мая2024 17:30:26.209] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF\jarjar\metadata.json from MixinExtras-0.2.1.jar, it does not contain dependency information. [12мая2024 17:30:26.383] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate  [12мая2024 17:30:26.385] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file mixinextras-forge-0.3.5.jar with {mixinextras} mods - versions {0.3.5} [12мая2024 17:30:26.400] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate  [12мая2024 17:30:26.403] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file crackerslib-forge-1.20.1-0.3.2.1.jar with {crackerslib} mods - versions {1.20.1-0.3.2.1} [12мая2024 17:30:26.414] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate  [12мая2024 17:30:26.417] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file satin-forge-1.20.1+1.15.0-SNAPSHOT.jar with {satin} mods - versions {1.20.1+1.15.0-SNAPSHOT} [12мая2024 17:30:26.431] [main/INFO] [net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator/]: Found 7 dependencies adding them to mods collection [12мая2024 17:30:26.438] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate D:\.minecraft\mods\dynamiclightsreforged-1.20.1_v1.6.0.jar [12мая2024 17:30:26.440] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file dynamiclightsreforged-1.20.1_v1.6.0.jar with {dynamiclightsreforged} mods - versions {1.20.1_v1.6.0} [12мая2024 17:30:26.457] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file D:\.minecraft\mods\dynamiclightsreforged-1.20.1_v1.6.0.jar with languages [LanguageSpec[languageName=javafml, acceptedVersions=[36,)]] [12мая2024 17:30:26.461] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate D:\.minecraft\mods\saturn-mc1.20.1-0.1.3.jar [12мая2024 17:30:26.464] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file saturn-mc1.20.1-0.1.3.jar with {saturn} mods - versions {0.1.3} [12мая2024 17:30:26.468] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file D:\.minecraft\mods\saturn-mc1.20.1-0.1.3.jar with languages [LanguageSpec[languageName=javafml, acceptedVersions=[47,)]] [12мая2024 17:30:26.469] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate D:\.minecraft\mods\notenoughcrashes-4.4.7+1.20.1-forge.jar [12мая2024 17:30:26.471] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file notenoughcrashes-4.4.7+1.20.1-forge.jar with {notenoughcrashes} mods - versions {4.4.7+1.20.1} [12мая2024 17:30:26.471] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file D:\.minecraft\mods\notenoughcrashes-4.4.7+1.20.1-forge.jar with languages [LanguageSpec[languageName=javafml, acceptedVersions=[35,)]] [12мая2024 17:30:26.471] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate D:\.minecraft\mods\YungsBetterDungeons-1.20-Forge-4.0.3.jar [12мая2024 17:30:26.473] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file YungsBetterDungeons-1.20-Forge-4.0.3.jar with {betterdungeons} mods - versions {1.20-Forge-4.0.3} [12мая2024 17:30:26.474] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file D:\.minecraft\mods\YungsBetterDungeons-1.20-Forge-4.0.3.jar with languages [LanguageSpec[languageName=javafml, acceptedVersions=[46,)]] [12мая2024 17:30:26.474] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate D:\.minecraft\mods\alexsmobs-1.22.8.jar [12мая2024 17:30:26.476] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file alexsmobs-1.22.8.jar with {alexsmobs} mods - versions {1.22.8} [12мая2024 17:30:26.477] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file D:\.minecraft\mods\alexsmobs-1.22.8.jar with languages [LanguageSpec[languageName=javafml, acceptedVersions=[46,)]] [12мая2024 17:30:26.477] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate D:\.minecraft\mods\YungsBetterWitchHuts-1.20-Forge-3.0.3.jar [12мая2024 17:30:26.478] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file YungsBetterWitchHuts-1.20-Forge-3.0.3.jar with {betterwitchhuts} mods - versions {1.20-Forge-3.0.3} [12мая2024 17:30:26.479] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file D:\.minecraft\mods\YungsBetterWitchHuts-1.20-Forge-3.0.3.jar with languages [LanguageSpec[languageName=javafml, acceptedVersions=[46,)]] [12мая2024 17:30:26.479] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate  [12мая2024 17:30:26.480] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file satin-forge-1.20.1+1.15.0-SNAPSHOT.jar with {satin} mods - versions {1.20.1+1.15.0-SNAPSHOT} [12мая2024 17:30:26.480] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file  with languages [LanguageSpec[languageName=javafml, acceptedVersions=*]] [12мая2024 17:30:26.480] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate D:\.minecraft\mods\jei-1.20.1-forge-15.3.0.4.jar [12мая2024 17:30:26.486] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file jei-1.20.1-forge-15.3.0.4.jar with {jei} mods - versions {15.3.0.4} [12мая2024 17:30:26.487] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file D:\.minecraft\mods\jei-1.20.1-forge-15.3.0.4.jar with languages [LanguageSpec[languageName=javafml, acceptedVersions=[47,)]] [12мая2024 17:30:26.487] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate D:\.minecraft\mods\majruszs-difficulty-forge-1.20.1-1.9.10.jar [12мая2024 17:30:26.540] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file majruszs-difficulty-forge-1.20.1-1.9.10.jar with {majruszsdifficulty} mods - versions {1.9.10} [12мая2024 17:30:26.540] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file D:\.minecraft\mods\majruszs-difficulty-forge-1.20.1-1.9.10.jar with languages [LanguageSpec[languageName=javafml, acceptedVersions=[47,)]] [12мая2024 17:30:26.541] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate D:\.minecraft\mods\YungsBetterOceanMonuments-1.20-Forge-3.0.4.jar [12мая2024 17:30:26.545] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file YungsBetterOceanMonuments-1.20-Forge-3.0.4.jar with {betteroceanmonuments} mods - versions {1.20-Forge-3.0.4} [12мая2024 17:30:26.546] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file D:\.minecraft\mods\YungsBetterOceanMonuments-1.20-Forge-3.0.4.jar with languages [LanguageSpec[languageName=javafml, acceptedVersions=[46,)]] [12мая2024 17:30:26.547] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate D:\.minecraft\mods\nerb-1.20.1-0.3-FORGE.jar [12мая2024 17:30:26.554] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file nerb-1.20.1-0.3-FORGE.jar with {nerb} mods - versions {0.3} [12мая2024 17:30:26.555] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file D:\.minecraft\mods\nerb-1.20.1-0.3-FORGE.jar with languages [LanguageSpec[languageName=javafml, acceptedVersions=[46,)]] [12мая2024 17:30:26.556] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate D:\.minecraft\mods\rubidium-mc1.20.1-0.7.1a.jar [12мая2024 17:30:26.561] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file rubidium-mc1.20.1-0.7.1a.jar with {rubidium,sodium} mods - versions {0.7.1a,0.5.3} [12мая2024 17:30:26.561] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file D:\.minecraft\mods\rubidium-mc1.20.1-0.7.1a.jar with languages [LanguageSpec[languageName=javafml, acceptedVersions=[47,)]] [12мая2024 17:30:26.561] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate D:\.minecraft\mods\sound-physics-remastered-forge-1.20.1-1.3.1.jar [12мая2024 17:30:26.563] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file sound-physics-remastered-forge-1.20.1-1.3.1.jar with {sound_physics_remastered} mods - versions {1.20.1-1.3.1} [12мая2024 17:30:26.563] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file D:\.minecraft\mods\sound-physics-remastered-forge-1.20.1-1.3.1.jar with languages [LanguageSpec[languageName=javafml, acceptedVersions=*]] [12мая2024 17:30:26.563] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate D:\.minecraft\mods\waystones-forge-1.20-14.1.3.jar [12мая2024 17:30:26.569] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file waystones-forge-1.20-14.1.3.jar with {waystones} mods - versions {14.1.3} [12мая2024 17:30:26.570] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file D:\.minecraft\mods\waystones-forge-1.20-14.1.3.jar with languages [LanguageSpec[languageName=javafml, acceptedVersions=[46,)]] [12мая2024 17:30:26.570] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate D:\.minecraft\mods\EpicFight-20.7.4.jar [12мая2024 17:30:26.571] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file EpicFight-20.7.4.jar with {epicfight} mods - versions {20.7.4} [12мая2024 17:30:26.572] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file D:\.minecraft\mods\EpicFight-20.7.4.jar with languages [LanguageSpec[languageName=javafml, acceptedVersions=[40,)]] [12мая2024 17:30:26.572] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate D:\.minecraft\mods\Fallingleaves-1.20.1-2.1.0.jar [12мая2024 17:30:26.573] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file Fallingleaves-1.20.1-2.1.0.jar with {fallingleaves} mods - versions {2.1.0} [12мая2024 17:30:26.573] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file D:\.minecraft\mods\Fallingleaves-1.20.1-2.1.0.jar with languages [LanguageSpec[languageName=javafml, acceptedVersions=[46,)]] [12мая2024 17:30:26.574] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate D:\.minecraft\mods\FastSuite-1.20.1-5.0.1.jar [12мая2024 17:30:26.575] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file FastSuite-1.20.1-5.0.1.jar with {fastsuite} mods - versions {5.0.1} [12мая2024 17:30:26.575] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file D:\.minecraft\mods\FastSuite-1.20.1-5.0.1.jar with languages [LanguageSpec[languageName=javafml, acceptedVersions=[32,)]] [12мая2024 17:30:26.584] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate D:\.minecraft\mods\citadel-2.5.4-1.20.1.jar [12мая2024 17:30:26.586] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file citadel-2.5.4-1.20.1.jar with {citadel} mods - versions {2.5.4} [12мая2024 17:30:26.586] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file D:\.minecraft\mods\citadel-2.5.4-1.20.1.jar with languages [LanguageSpec[languageName=javafml, acceptedVersions=[47,)]] [12мая2024 17:30:26.586] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate D:\.minecraft\mods\modernfix-forge-5.17.0+mc1.20.1.jar [12мая2024 17:30:26.588] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file modernfix-forge-5.17.0+mc1.20.1.jar with {modernfix} mods - versions {5.17.0+mc1.20.1} [12мая2024 17:30:26.589] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file D:\.minecraft\mods\modernfix-forge-5.17.0+mc1.20.1.jar with languages [LanguageSpec[languageName=javafml, acceptedVersions=[46,)]] [12мая2024 17:30:26.589] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate D:\.minecraft\mods\Placebo-1.20.1-8.6.1.jar [12мая2024 17:30:26.591] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file Placebo-1.20.1-8.6.1.jar with {placebo} mods - versions {8.6.1} [12мая2024 17:30:26.591] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file D:\.minecraft\mods\Placebo-1.20.1-8.6.1.jar with languages [LanguageSpec[languageName=javafml, acceptedVersions=[32,)]] [12мая2024 17:30:26.593] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Found coremod placebo_get_ench_level_event with Javascript path coremods/get_ench_level_event.js [12мая2024 17:30:26.593] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Found coremod placebo_get_ench_level_event_specific with Javascript path coremods/get_ench_level_event_specific.js [12мая2024 17:30:26.593] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Found coremod coremods/get_ench_level_event.js [12мая2024 17:30:26.594] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Found coremod coremods/get_ench_level_event_specific.js [12мая2024 17:30:26.594] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate  [12мая2024 17:30:26.595] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file crackerslib-forge-1.20.1-0.3.2.1.jar with {crackerslib} mods - versions {1.20.1-0.3.2.1} [12мая2024 17:30:26.596] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file  with languages [LanguageSpec[languageName=javafml, acceptedVersions=[47,)]] [12мая2024 17:30:26.596] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate D:\.minecraft\mods\YungsApi-1.20-Forge-4.0.4.jar [12мая2024 17:30:26.598] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file YungsApi-1.20-Forge-4.0.4.jar with {yungsapi} mods - versions {1.20-Forge-4.0.4} [12мая2024 17:30:26.599] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file D:\.minecraft\mods\YungsApi-1.20-Forge-4.0.4.jar with languages [LanguageSpec[languageName=javafml, acceptedVersions=[46,)]] [12мая2024 17:30:26.599] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate D:\.minecraft\mods\make_bubbles_pop-0.2.0-forge-mc1.19.4+.jar [12мая2024 17:30:26.600] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file make_bubbles_pop-0.2.0-forge-mc1.19.4+.jar with {make_bubbles_pop} mods - versions {0.2.0-forge} [12мая2024 17:30:26.601] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file D:\.minecraft\mods\make_bubbles_pop-0.2.0-forge-mc1.19.4+.jar with languages [LanguageSpec[languageName=javafml, acceptedVersions=[45,)]] [12мая2024 17:30:26.601] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate D:\.minecraft\mods\starlight-1.1.2+forge.1cda73c.jar [12мая2024 17:30:26.602] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file starlight-1.1.2+forge.1cda73c.jar with {starlight} mods - versions {1.1.2+forge.1cda73c} [12мая2024 17:30:26.603] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file D:\.minecraft\mods\starlight-1.1.2+forge.1cda73c.jar with languages [LanguageSpec[languageName=javafml, acceptedVersions=[46,)]] [12мая2024 17:30:26.603] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate D:\.minecraft\mods\takesapillage-1.0.3-1.20.1.jar [12мая2024 17:30:26.604] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file takesapillage-1.0.3-1.20.1.jar with {takesapillage} mods - versions {1.0.3} [12мая2024 17:30:26.605] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file D:\.minecraft\mods\takesapillage-1.0.3-1.20.1.jar with languages [LanguageSpec[languageName=javafml, acceptedVersions=[46,)]] [12мая2024 17:30:26.605] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate D:\.minecraft\mods\YungsBetterDesertTemples-1.20-Forge-3.0.3.jar [12мая2024 17:30:26.606] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file YungsBetterDesertTemples-1.20-Forge-3.0.3.jar with {betterdeserttemples} mods - versions {1.20-Forge-3.0.3} [12мая2024 17:30:26.607] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file D:\.minecraft\mods\YungsBetterDesertTemples-1.20-Forge-3.0.3.jar with languages [LanguageSpec[languageName=javafml, acceptedVersions=[46,)]] [12мая2024 17:30:26.607] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate D:\.minecraft\mods\balm-forge-1.20.1-7.2.2.jar [12мая2024 17:30:26.609] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file balm-forge-1.20.1-7.2.2.jar with {balm} mods - versions {7.2.2} [12мая2024 17:30:26.609] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file D:\.minecraft\mods\balm-forge-1.20.1-7.2.2.jar with languages [LanguageSpec[languageName=javafml, acceptedVersions=[46,)]] [12мая2024 17:30:26.610] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate D:\.minecraft\mods\wd's_fps_boost-1.0.0-forge-1.20.1.jar [12мая2024 17:30:26.611] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file wd's_fps_boost-1.0.0-forge-1.20.1.jar with {waters_fps_boost} mods - versions {1.0.0} [12мая2024 17:30:26.612] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file D:\.minecraft\mods\wd's_fps_boost-1.0.0-forge-1.20.1.jar with languages [LanguageSpec[languageName=javafml, acceptedVersions=[47,)]] [12мая2024 17:30:26.612] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate D:\.minecraft\mods\YungsBetterNetherFortresses-1.20-Forge-2.0.5.jar [12мая2024 17:30:26.614] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file YungsBetterNetherFortresses-1.20-Forge-2.0.5.jar with {betterfortresses} mods - versions {1.20-Forge-2.0.5} [12мая2024 17:30:26.614] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file D:\.minecraft\mods\YungsBetterNetherFortresses-1.20-Forge-2.0.5.jar with languages [LanguageSpec[languageName=javafml, acceptedVersions=[46,)]] [12мая2024 17:30:26.615] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate D:\.minecraft\libraries\net\minecraftforge\forge\1.20.1-47.2.20\forge-1.20.1-47.2.20-universal.jar [12мая2024 17:30:26.617] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file forge-1.20.1-47.2.20-universal.jar with {forge} mods - versions {47.2.20} [12мая2024 17:30:26.617] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file D:\.minecraft\libraries\net\minecraftforge\forge\1.20.1-47.2.20\forge-1.20.1-47.2.20-universal.jar with languages [LanguageSpec[languageName=javafml, acceptedVersions=[24,]]] [12мая2024 17:30:26.619] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Found coremod field_to_method with Javascript path coremods/field_to_method.js [12мая2024 17:30:26.620] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Found coremod field_to_instanceof with Javascript path coremods/field_to_instanceof.js [12мая2024 17:30:26.620] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Found coremod add_bouncer_method with Javascript path coremods/add_bouncer_method.js [12мая2024 17:30:26.620] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Found coremod method_redirector with Javascript path coremods/method_redirector.js [12мая2024 17:30:26.621] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Found coremod coremods/field_to_method.js [12мая2024 17:30:26.621] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Found coremod coremods/field_to_instanceof.js [12мая2024 17:30:26.621] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Found coremod coremods/add_bouncer_method.js [12мая2024 17:30:26.621] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Found coremod coremods/method_redirector.js [12мая2024 17:30:26.621] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate D:\.minecraft\mods\sfcr-1.7.6-mc1.20.jar [12мая2024 17:30:26.623] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file sfcr-1.7.6-mc1.20.jar with {sfcr} mods - versions {1.7.6-mc1.20} [12мая2024 17:30:26.624] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file D:\.minecraft\mods\sfcr-1.7.6-mc1.20.jar with languages [LanguageSpec[languageName=javafml, acceptedVersions=[46,)]] [12мая2024 17:30:26.624] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate D:\.minecraft\mods\AdvancementPlaques-1.20.1-forge-1.5.1.jar [12мая2024 17:30:26.632] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file AdvancementPlaques-1.20.1-forge-1.5.1.jar with {advancementplaques} mods - versions {1.5.1} [12мая2024 17:30:26.632] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file D:\.minecraft\mods\AdvancementPlaques-1.20.1-forge-1.5.1.jar with languages [LanguageSpec[languageName=javafml, acceptedVersions=[46,)]] [12мая2024 17:30:26.632] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate D:\.minecraft\mods\entity_model_features_forge_1.20.1-2.0.2.jar [12мая2024 17:30:26.635] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file entity_model_features_forge_1.20.1-2.0.2.jar with {entity_model_features} mods - versions {2.0.2} [12мая2024 17:30:26.636] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file D:\.minecraft\mods\entity_model_features_forge_1.20.1-2.0.2.jar with languages [LanguageSpec[languageName=javafml, acceptedVersions=[46,)]] [12мая2024 17:30:26.640] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file client-1.20.1-20230612.114412-srg.jar with {minecraft} mods - versions {1.20.1} [12мая2024 17:30:26.640] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file D:\.minecraft\libraries\net\minecraft\client\1.20.1-20230612.114412\client-1.20.1-20230612.114412-srg.jar with languages [LanguageSpec[languageName=minecraft, acceptedVersions=1]] [12мая2024 17:30:26.641] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate D:\.minecraft\mods\entity_texture_features_forge_1.20.1-6.0.1.jar [12мая2024 17:30:26.642] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file entity_texture_features_forge_1.20.1-6.0.1.jar with {entity_texture_features} mods - versions {6.0.1} [12мая2024 17:30:26.642] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file D:\.minecraft\mods\entity_texture_features_forge_1.20.1-6.0.1.jar with languages [LanguageSpec[languageName=javafml, acceptedVersions=[46,)]] [12мая2024 17:30:26.642] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate D:\.minecraft\mods\alexscaves-1.1.4.jar [12мая2024 17:30:26.649] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file alexscaves-1.1.4.jar with {alexscaves} mods - versions {1.1.4} [12мая2024 17:30:26.649] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file D:\.minecraft\mods\alexscaves-1.1.4.jar with languages [LanguageSpec[languageName=javafml, acceptedVersions=[46,)]] [12мая2024 17:30:26.650] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate D:\.minecraft\mods\AmbientSounds_FORGE_v5.3.9_mc1.20.1.jar [12мая2024 17:30:26.652] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file AmbientSounds_FORGE_v5.3.9_mc1.20.1.jar with {ambientsounds} mods - versions {5.3.9} [12мая2024 17:30:26.652] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file D:\.minecraft\mods\AmbientSounds_FORGE_v5.3.9_mc1.20.1.jar with languages [LanguageSpec[languageName=javafml, acceptedVersions=[46,)]] [12мая2024 17:30:26.652] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate D:\.minecraft\mods\moonlight-1.20-2.11.17-forge.jar [12мая2024 17:30:26.655] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file moonlight-1.20-2.11.17-forge.jar with {moonlight} mods - versions {1.20-2.11.17} [12мая2024 17:30:26.657] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file D:\.minecraft\mods\moonlight-1.20-2.11.17-forge.jar with languages [LanguageSpec[languageName=javafml, acceptedVersions=[40,)]] [12мая2024 17:30:26.658] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate D:\.minecraft\mods\klmaster-forge-1.20-1.20.1.jar [12мая2024 17:30:26.659] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file klmaster-forge-1.20-1.20.1.jar with {klmaster} mods - versions {3.0} [12мая2024 17:30:26.659] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file D:\.minecraft\mods\klmaster-forge-1.20-1.20.1.jar with languages [LanguageSpec[languageName=javafml, acceptedVersions=[10,500)]] [12мая2024 17:30:26.660] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate D:\.minecraft\mods\blur-forge-3.1.1.jar [12мая2024 17:30:26.660] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file blur-forge-3.1.1.jar with {blur} mods - versions {3.1.1} [12мая2024 17:30:26.661] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file D:\.minecraft\mods\blur-forge-3.1.1.jar with languages [LanguageSpec[languageName=javafml, acceptedVersions=*]] [12мая2024 17:30:26.661] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate D:\.minecraft\mods\explorify-v1.4.0.jar [12мая2024 17:30:26.663] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file explorify-v1.4.0.jar with {explorify} mods - versions {1.4.0} [12мая2024 17:30:26.664] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file D:\.minecraft\mods\explorify-v1.4.0.jar with languages [LanguageSpec[languageName=lowcodefml, acceptedVersions=[41,99)]] [12мая2024 17:30:26.664] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate D:\.minecraft\mods\CreativeCore_FORGE_v2.11.27_mc1.20.1.jar [12мая2024 17:30:26.665] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file CreativeCore_FORGE_v2.11.27_mc1.20.1.jar with {creativecore} mods - versions {2.11.27} [12мая2024 17:30:26.665] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file D:\.minecraft\mods\CreativeCore_FORGE_v2.11.27_mc1.20.1.jar with languages [LanguageSpec[languageName=javafml, acceptedVersions=[46,)]] [12мая2024 17:30:26.666] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate D:\.minecraft\mods\smoothboot(reloaded)-mc1.20.1-0.0.4.jar [12мая2024 17:30:26.670] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file smoothboot(reloaded)-mc1.20.1-0.0.4.jar with {smoothboot} mods - versions {0.0.4} [12мая2024 17:30:26.670] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file D:\.minecraft\mods\smoothboot(reloaded)-mc1.20.1-0.0.4.jar with languages [LanguageSpec[languageName=javafml, acceptedVersions=[47,)]] [12мая2024 17:30:26.670] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate D:\.minecraft\mods\YungsBridges-1.20-Forge-4.0.3.jar [12мая2024 17:30:26.676] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file YungsBridges-1.20-Forge-4.0.3.jar with {yungsbridges} mods - versions {1.20-Forge-4.0.3} [12мая2024 17:30:26.677] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file D:\.minecraft\mods\YungsBridges-1.20-Forge-4.0.3.jar with languages [LanguageSpec[languageName=javafml, acceptedVersions=[46,)]] [12мая2024 17:30:26.677] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate D:\.minecraft\mods\fastpaintings-1.20-1.2.7.jar [12мая2024 17:30:26.689] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file fastpaintings-1.20-1.2.7.jar with {fastpaintings} mods - versions {1.20-1.2.7} [12мая2024 17:30:26.689] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file D:\.minecraft\mods\fastpaintings-1.20-1.2.7.jar with languages [LanguageSpec[languageName=javafml, acceptedVersions=[41,)]] [12мая2024 17:30:26.690] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate D:\.minecraft\mods\Iceberg-1.20.1-forge-1.1.21.jar [12мая2024 17:30:26.691] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file Iceberg-1.20.1-forge-1.1.21.jar with {iceberg} mods - versions {1.1.21} [12мая2024 17:30:26.691] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file D:\.minecraft\mods\Iceberg-1.20.1-forge-1.1.21.jar with languages [LanguageSpec[languageName=javafml, acceptedVersions=[47,)]] [12мая2024 17:30:26.692] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate D:\.minecraft\mods\notenoughanimations-forge-1.7.3-mc1.20.1.jar [12мая2024 17:30:26.694] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file notenoughanimations-forge-1.7.3-mc1.20.1.jar with {notenoughanimations} mods - versions {1.7.3} [12мая2024 17:30:26.694] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file D:\.minecraft\mods\notenoughanimations-forge-1.7.3-mc1.20.1.jar with languages [LanguageSpec[languageName=javafml, acceptedVersions=[28,)]] [12мая2024 17:30:26.695] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate D:\.minecraft\mods\oculus-mc1.20.1-1.7.0.jar [12мая2024 17:30:26.696] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file oculus-mc1.20.1-1.7.0.jar with {oculus} mods - versions {1.7.0} [12мая2024 17:30:26.696] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file D:\.minecraft\mods\oculus-mc1.20.1-1.7.0.jar with languages [LanguageSpec[languageName=javafml, acceptedVersions=*]] [12мая2024 17:30:26.696] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate D:\.minecraft\mods\FastWorkbench-1.20.1-8.0.4.jar [12мая2024 17:30:26.698] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file FastWorkbench-1.20.1-8.0.4.jar with {fastbench} mods - versions {8.0.4} [12мая2024 17:30:26.698] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file D:\.minecraft\mods\FastWorkbench-1.20.1-8.0.4.jar with languages [LanguageSpec[languageName=javafml, acceptedVersions=[32,)]] [12мая2024 17:30:26.699] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate D:\.minecraft\mods\dungeons-and-taverns-3.0.3.f.jar [12мая2024 17:30:26.700] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file dungeons-and-taverns-3.0.3.f.jar with {mr_dungeons_andtaverns} mods - versions {3.0.3.f} [12мая2024 17:30:26.701] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file D:\.minecraft\mods\dungeons-and-taverns-3.0.3.f.jar with languages [LanguageSpec[languageName=lowcodefml, acceptedVersions=[40,)]] [12мая2024 17:30:26.701] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate D:\.minecraft\mods\YungsExtras-1.20-Forge-4.0.3.jar [12мая2024 17:30:26.703] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file YungsExtras-1.20-Forge-4.0.3.jar with {yungsextras} mods - versions {1.20-Forge-4.0.3} [12мая2024 17:30:26.703] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file D:\.minecraft\mods\YungsExtras-1.20-Forge-4.0.3.jar with languages [LanguageSpec[languageName=javafml, acceptedVersions=[46,)]] [12мая2024 17:30:26.704] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate D:\.minecraft\mods\doespotatotick-1.20.1-4.0.2.jar [12мая2024 17:30:26.705] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file doespotatotick-1.20.1-4.0.2.jar with {doespotatotick} mods - versions {1.20.1-4.0.2} [12мая2024 17:30:26.706] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file D:\.minecraft\mods\doespotatotick-1.20.1-4.0.2.jar with languages [LanguageSpec[languageName=javafml, acceptedVersions=[36,)]] [12мая2024 17:30:26.706] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate D:\.minecraft\mods\entityculling-forge-1.6.2-mc1.20.1.jar [12мая2024 17:30:26.708] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file entityculling-forge-1.6.2-mc1.20.1.jar with {entityculling} mods - versions {1.6.2} [12мая2024 17:30:26.708] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file D:\.minecraft\mods\entityculling-forge-1.6.2-mc1.20.1.jar with languages [LanguageSpec[languageName=javafml, acceptedVersions=[35,)]] [12мая2024 17:30:26.708] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate D:\.minecraft\mods\canary-mc1.20.1-0.3.3.jar [12мая2024 17:30:26.710] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file canary-mc1.20.1-0.3.3.jar with {canary} mods - versions {0.3.3} [12мая2024 17:30:26.711] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file D:\.minecraft\mods\canary-mc1.20.1-0.3.3.jar with languages [LanguageSpec[languageName=javafml, acceptedVersions=[47,)]] [12мая2024 17:30:26.711] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate D:\.minecraft\mods\witherstormmod-1.20.1-4.1-all.jar [12мая2024 17:30:26.712] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file witherstormmod-1.20.1-4.1-all.jar with {witherstormmod} mods - versions {4.1} [12мая2024 17:30:26.713] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file D:\.minecraft\mods\witherstormmod-1.20.1-4.1-all.jar with languages [LanguageSpec[languageName=javafml, acceptedVersions=[47,)]] [12мая2024 17:30:26.713] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate D:\.minecraft\mods\YungsBetterStrongholds-1.20-Forge-4.0.3.jar [12мая2024 17:30:26.714] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file YungsBetterStrongholds-1.20-Forge-4.0.3.jar with {betterstrongholds} mods - versions {1.20-Forge-4.0.3} [12мая2024 17:30:26.714] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file D:\.minecraft\mods\YungsBetterStrongholds-1.20-Forge-4.0.3.jar with languages [LanguageSpec[languageName=javafml, acceptedVersions=[46,)]] [12мая2024 17:30:26.714] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate D:\.minecraft\mods\ImmediatelyFast-Forge-1.2.14+1.20.4.jar [12мая2024 17:30:26.716] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file ImmediatelyFast-Forge-1.2.14+1.20.4.jar with {immediatelyfast} mods - versions {1.2.14+1.20.4} [12мая2024 17:30:26.716] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file D:\.minecraft\mods\ImmediatelyFast-Forge-1.2.14+1.20.4.jar with languages [LanguageSpec[languageName=javafml, acceptedVersions=[46,)]] [12мая2024 17:30:26.716] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate D:\.minecraft\mods\FastFurnace-1.20.1-8.0.2.jar [12мая2024 17:30:26.718] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file FastFurnace-1.20.1-8.0.2.jar with {fastfurnace} mods - versions {8.0.2} [12мая2024 17:30:26.719] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file D:\.minecraft\mods\FastFurnace-1.20.1-8.0.2.jar with languages [LanguageSpec[languageName=javafml, acceptedVersions=[32,)]] [12мая2024 17:30:26.722] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate D:\.minecraft\mods\architectury-9.2.14-forge.jar [12мая2024 17:30:26.723] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file architectury-9.2.14-forge.jar with {architectury} mods - versions {9.2.14} [12мая2024 17:30:26.724] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file D:\.minecraft\mods\architectury-9.2.14-forge.jar with languages [LanguageSpec[languageName=javafml, acceptedVersions=[46,)]] [12мая2024 17:30:26.724] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate D:\.minecraft\mods\ferritecore-6.0.1-forge.jar [12мая2024 17:30:26.726] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file ferritecore-6.0.1-forge.jar with {ferritecore} mods - versions {6.0.1} [12мая2024 17:30:26.726] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file D:\.minecraft\mods\ferritecore-6.0.1-forge.jar with languages [LanguageSpec[languageName=javafml, acceptedVersions=[28,)]] [12мая2024 17:30:26.727] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate D:\.minecraft\mods\YungsBetterEndIsland-1.20-Forge-2.0.6.jar [12мая2024 17:30:26.739] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file YungsBetterEndIsland-1.20-Forge-2.0.6.jar with {betterendisland} mods - versions {1.20-Forge-2.0.6} [12мая2024 17:30:26.741] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file D:\.minecraft\mods\YungsBetterEndIsland-1.20-Forge-2.0.6.jar with languages [LanguageSpec[languageName=javafml, acceptedVersions=[46,)]] [12мая2024 17:30:26.749] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate D:\.minecraft\mods\majruszs-enchantments-forge-1.20.1-1.10.8.jar [12мая2024 17:30:26.754] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file majruszs-enchantments-forge-1.20.1-1.10.8.jar with {majruszsenchantments} mods - versions {1.10.8} [12мая2024 17:30:26.754] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file D:\.minecraft\mods\majruszs-enchantments-forge-1.20.1-1.10.8.jar with languages [LanguageSpec[languageName=javafml, acceptedVersions=[47,)]] [12мая2024 17:30:26.755] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate D:\.minecraft\mods\BadOptimizations-2.1.1.jar [12мая2024 17:30:26.756] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file BadOptimizations-2.1.1.jar with {badoptimizations} mods - versions {2.1.1} [12мая2024 17:30:26.756] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file D:\.minecraft\mods\BadOptimizations-2.1.1.jar with languages [LanguageSpec[languageName=lowcodefml, acceptedVersions=[38,)]] [12мая2024 17:30:26.756] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate D:\.minecraft\mods\YungsBetterMineshafts-1.20-Forge-4.0.4.jar [12мая2024 17:30:26.757] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file YungsBetterMineshafts-1.20-Forge-4.0.4.jar with {bettermineshafts} mods - versions {1.20-Forge-4.0.4} [12мая2024 17:30:26.757] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file D:\.minecraft\mods\YungsBetterMineshafts-1.20-Forge-4.0.4.jar with languages [LanguageSpec[languageName=javafml, acceptedVersions=[46,)]] [12мая2024 17:30:26.758] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate D:\.minecraft\mods\majrusz-library-forge-1.20.1-7.0.8.jar [12мая2024 17:30:26.759] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file majrusz-library-forge-1.20.1-7.0.8.jar with {majruszlibrary} mods - versions {7.0.8} [12мая2024 17:30:26.759] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file D:\.minecraft\mods\majrusz-library-forge-1.20.1-7.0.8.jar with languages [LanguageSpec[languageName=javafml, acceptedVersions=[47,)]] [12мая2024 17:30:26.760] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate D:\.minecraft\mods\YungsBetterJungleTemples-1.20-Forge-2.0.4.jar [12мая2024 17:30:26.761] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file YungsBetterJungleTemples-1.20-Forge-2.0.4.jar with {betterjungletemples} mods - versions {1.20-Forge-2.0.4} [12мая2024 17:30:26.761] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file D:\.minecraft\mods\YungsBetterJungleTemples-1.20-Forge-2.0.4.jar with languages [LanguageSpec[languageName=javafml, acceptedVersions=[46,)]] [12мая2024 17:30:26.762] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate  [12мая2024 17:30:26.763] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file mixinextras-forge-0.3.5.jar with {mixinextras} mods - versions {0.3.5} [12мая2024 17:30:26.763] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file  with languages [LanguageSpec[languageName=javafml, acceptedVersions=*]] [12мая2024 17:30:26.765] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file  with languages [] [12мая2024 17:30:26.767] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file  with languages [] [12мая2024 17:30:26.768] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file  with languages [] [12мая2024 17:30:26.769] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file  with languages [] [12мая2024 17:30:26.772] [main/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator/MODLAUNCHER]: End scan trigger - transformation service fml [12мая2024 17:30:26.820] [main/DEBUG] [net.minecraftforge.fml.loading.LanguageLoadingProvider/CORE]: Found 3 language providers [12мая2024 17:30:26.822] [main/DEBUG] [net.minecraftforge.fml.loading.LanguageLoadingProvider/CORE]: Found language provider minecraft, version 1.0 [12мая2024 17:30:26.825] [main/DEBUG] [net.minecraftforge.fml.loading.LanguageLoadingProvider/CORE]: Found language provider lowcodefml, version 47 [12мая2024 17:30:26.826] [main/DEBUG] [net.minecraftforge.fml.loading.LanguageLoadingProvider/CORE]: Found language provider javafml, version 47 [12мая2024 17:30:26.857] [main/DEBUG] [net.minecraftforge.fml.loading.ModSorter/]: Configured system mods: [minecraft, forge] [12мая2024 17:30:26.858] [main/DEBUG] [net.minecraftforge.fml.loading.ModSorter/]: Found system mod: minecraft [12мая2024 17:30:26.858] [main/DEBUG] [net.minecraftforge.fml.loading.ModSorter/]: Found system mod: forge [12мая2024 17:30:26.871] [main/DEBUG] [net.minecraftforge.fml.loading.ModSorter/LOADING]: Found 136 mod requirements (131 mandatory, 5 optional) [12мая2024 17:30:26.875] [main/DEBUG] [net.minecraftforge.fml.loading.ModSorter/LOADING]: Found 0 mod requirements missing (0 mandatory, 0 optional) [12мая2024 17:30:29.628] [main/DEBUG] [cpw.mods.modlauncher.TransformationServicesHandler/MODLAUNCHER]: Transformation services loading transformers [12мая2024 17:30:29.632] [main/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator/MODLAUNCHER]: Initializing transformers for transformation service mixin [12мая2024 17:30:29.646] [main/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator/MODLAUNCHER]: Initialized transformers for transformation service mixin [12мая2024 17:30:29.646] [main/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator/MODLAUNCHER]: Initializing transformers for transformation service fml [12мая2024 17:30:29.646] [main/DEBUG] [net.minecraftforge.fml.loading.FMLServiceProvider/CORE]: Loading coremod transformers [12мая2024 17:30:29.650] [main/DEBUG] [net.minecraftforge.coremod.CoreModEngine/COREMOD]: Loading CoreMod from coremods/get_ench_level_event.js [12мая2024 17:30:34.494] [main/DEBUG] [net.minecraftforge.coremod.CoreModEngine/COREMOD]: CoreMod loaded successfully [12мая2024 17:30:34.494] [main/DEBUG] [net.minecraftforge.coremod.CoreModEngine/COREMOD]: Loading CoreMod from coremods/get_ench_level_event_specific.js [12мая2024 17:30:34.608] [main/DEBUG] [net.minecraftforge.coremod.CoreModEngine/COREMOD]: CoreMod loaded successfully [12мая2024 17:30:34.608] [main/DEBUG] [net.minecraftforge.coremod.CoreModEngine/COREMOD]: Loading CoreMod from coremods/field_to_method.js [12мая2024 17:30:35.323] [main/DEBUG] [net.minecraftforge.coremod.CoreModEngine/COREMOD]: CoreMod loaded successfully [12мая2024 17:30:35.323] [main/DEBUG] [net.minecraftforge.coremod.CoreModEngine/COREMOD]: Loading CoreMod from coremods/field_to_instanceof.js [12мая2024 17:30:35.721] [main/DEBUG] [net.minecraftforge.coremod.CoreModEngine/COREMOD]: CoreMod loaded successfully [12мая2024 17:30:35.721] [main/DEBUG] [net.minecraftforge.coremod.CoreModEngine/COREMOD]: Loading CoreMod from coremods/add_bouncer_method.js [12мая2024 17:30:36.002] [main/DEBUG] [net.minecraftforge.coremod.CoreModEngine/COREMOD]: CoreMod loaded successfully [12мая2024 17:30:36.002] [main/DEBUG] [net.minecraftforge.coremod.CoreModEngine/COREMOD]: Loading CoreMod from coremods/method_redirector.js [12мая2024 17:30:36.276] [main/DEBUG] [net.minecraftforge.coremod.CoreModEngine/COREMOD]: CoreMod loaded successfully [12мая2024 17:30:36.329] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModMethodTransformer@2272cbb0 to Target : METHOD {Lnet/minecraftforge/common/extensions/IForgeItemStack;} {getAllEnchantments} {()Ljava/util/Map;} [12мая2024 17:30:36.331] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModMethodTransformer@32f1fafe to Target : METHOD {Lnet/minecraftforge/common/extensions/IForgeItemStack;} {getEnchantmentLevel} {(Lnet/minecraft/world/item/enchantment/Enchantment;)I} [12мая2024 17:30:36.332] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@5d512ddb to Target : CLASS {Lnet/minecraft/world/level/biome/Biome;} {} {V} [12мая2024 17:30:36.332] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@707ca986 to Target : CLASS {Lnet/minecraft/world/level/levelgen/structure/Structure;} {} {V} [12мая2024 17:30:36.332] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@4de79b7d to Target : CLASS {Lnet/minecraft/world/effect/MobEffectInstance;} {} {V} [12мая2024 17:30:36.333] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@183ade54 to Target : CLASS {Lnet/minecraft/world/level/block/LiquidBlock;} {} {V} [12мая2024 17:30:36.333] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@4c51077d to Target : CLASS {Lnet/minecraft/world/item/BucketItem;} {} {V} [12мая2024 17:30:36.333] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@5974b7e8 to Target : CLASS {Lnet/minecraft/world/level/block/StairBlock;} {} {V} [12мая2024 17:30:36.334] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@2839e3c8 to Target : CLASS {Lnet/minecraft/world/level/block/FlowerPotBlock;} {} {V} [12мая2024 17:30:36.338] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@66bf40e5 to Target : CLASS {Lnet/minecraft/world/item/ItemStack;} {} {V} [12мая2024 17:30:36.339] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@2291d9a0 to Target : CLASS {Lnet/minecraft/network/play/client/CClientSettingsPacket;} {} {V} [12мая2024 17:30:36.340] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@5e26f1ed to Target : CLASS {Lnet/minecraft/world/entity/EntityType;} {} {V} [12мая2024 17:30:36.340] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@5e26f1ed to Target : CLASS {Lnet/minecraft/world/entity/monster/Spider;} {} {V} [12мая2024 17:30:36.340] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@5e26f1ed to Target : CLASS {Lnet/minecraft/world/level/levelgen/PhantomSpawner;} {} {V} [12мая2024 17:30:36.340] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@5e26f1ed to Target : CLASS {Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate;} {} {V} [12мая2024 17:30:36.340] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@5e26f1ed to Target : CLASS {Lnet/minecraft/world/entity/monster/Strider;} {} {V} [12мая2024 17:30:36.341] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@5e26f1ed to Target : CLASS {Lnet/minecraft/world/entity/monster/Evoker$EvokerSummonSpellGoal;} {} {V} [12мая2024 17:30:36.341] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@5e26f1ed to Target : CLASS {Lnet/minecraft/world/entity/monster/ZombieVillager;} {} {V} [12мая2024 17:30:36.341] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@5e26f1ed to Target : CLASS {Lnet/minecraft/server/commands/RaidCommand;} {} {V} [12мая2024 17:30:36.341] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@5e26f1ed to Target : CLASS {Lnet/minecraft/world/level/levelgen/PatrolSpawner;} {} {V} [12мая2024 17:30:36.341] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@5e26f1ed to Target : CLASS {Lnet/minecraft/world/level/levelgen/structure/structures/OceanRuinPieces$OceanRuinPiece;} {} {V} [12мая2024 17:30:36.341] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@5e26f1ed to Target : CLASS {Lnet/minecraft/world/entity/ai/village/VillageSiege;} {} {V} [12мая2024 17:30:36.341] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@5e26f1ed to Target : CLASS {Lnet/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentPiece;} {} {V} [12мая2024 17:30:36.342] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@5e26f1ed to Target : CLASS {Lnet/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$WoodlandMansionPiece;} {} {V} [12мая2024 17:30:36.342] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@5e26f1ed to Target : CLASS {Lnet/minecraft/world/entity/npc/Villager;} {} {V} [12мая2024 17:30:36.342] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@5e26f1ed to Target : CLASS {Lnet/minecraft/world/entity/raid/Raid;} {} {V} [12мая2024 17:30:36.342] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@5e26f1ed to Target : CLASS {Lnet/minecraft/world/entity/npc/CatSpawner;} {} {V} [12мая2024 17:30:36.342] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@5e26f1ed to Target : CLASS {Lnet/minecraft/world/level/levelgen/structure/structures/SwampHutPiece;} {} {V} [12мая2024 17:30:36.342] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@5e26f1ed to Target : CLASS {Lnet/minecraft/world/entity/animal/horse/SkeletonTrapGoal;} {} {V} [12мая2024 17:30:36.343] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@5e26f1ed to Target : CLASS {Lnet/minecraft/world/entity/animal/frog/Tadpole;} {} {V} [12мая2024 17:30:36.343] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@5e26f1ed to Target : CLASS {Lnet/minecraft/server/commands/SummonCommand;} {} {V} [12мая2024 17:30:36.343] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@5e26f1ed to Target : CLASS {Lnet/minecraft/world/entity/monster/Zombie;} {} {V} [12мая2024 17:30:36.343] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@5e26f1ed to Target : CLASS {Lnet/minecraft/world/level/NaturalSpawner;} {} {V} [12мая2024 17:30:36.343] [main/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator/MODLAUNCHER]: Initialized transformers for transformation service fml [12мая2024 17:30:39.086] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:ModLauncher Root Container(ModLauncher:4f56a0a2)] [12мая2024 17:30:39.086] [main/DEBUG] [mixin/]: Processing launch tasks for PlatformAgent[MixinPlatformAgentDefault:ModLauncher Root Container(ModLauncher:4f56a0a2)] [12мая2024 17:30:39.086] [main/DEBUG] [mixin/]: Adding mixin platform agents for container SecureJarResource(dynamiclightsreforged) [12мая2024 17:30:39.086] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(dynamiclightsreforged) [12мая2024 17:30:39.087] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(dynamiclightsreforged) [12мая2024 17:30:39.087] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(dynamiclightsreforged) [12мая2024 17:30:39.087] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container SecureJarResource(dynamiclightsreforged) [12мая2024 17:30:39.087] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(dynamiclightsreforged)] [12мая2024 17:30:39.087] [main/DEBUG] [mixin/]: Registering mixin config: dynamiclightsreforged.mixins.json [12мая2024 17:30:39.386] [main/DEBUG] [mixin/]: Compatibility level JAVA_8 specified by dynamiclightsreforged.mixins.json is lower than the default level supported by the current mixin service (JAVA_16). [12мая2024 17:30:39.387] [main/ERROR] [mixin/]: Mixin config dynamiclightsreforged.mixins.json does not specify "minVersion" property [12мая2024 17:30:39.389] [main/DEBUG] [mixin/]: Adding mixin platform agents for container SecureJarResource(saturn) [12мая2024 17:30:39.389] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(saturn) [12мая2024 17:30:39.391] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(saturn) [12мая2024 17:30:39.391] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(saturn) [12мая2024 17:30:39.391] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container SecureJarResource(saturn) [12мая2024 17:30:39.391] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(saturn)] [12мая2024 17:30:39.391] [main/DEBUG] [mixin/]: Registering mixin config: saturn.mixins.json [12мая2024 17:30:39.399] [main/DEBUG] [mixin/]: Compatibility level JAVA_17 specified by saturn.mixins.json is higher than the maximum level supported by this version of mixin (JAVA_13). [12мая2024 17:30:39.437] [main/INFO] [mixin/]: Compatibility level set to JAVA_17 [12мая2024 17:30:39.437] [main/DEBUG] [mixin/]: Adding mixin platform agents for container SecureJarResource(notenoughcrashes) [12мая2024 17:30:39.438] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(notenoughcrashes) [12мая2024 17:30:39.438] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(notenoughcrashes) [12мая2024 17:30:39.438] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(notenoughcrashes) [12мая2024 17:30:39.438] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container SecureJarResource(notenoughcrashes) [12мая2024 17:30:39.438] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(notenoughcrashes)] [12мая2024 17:30:39.438] [main/DEBUG] [mixin/]: Registering mixin config: notenoughcrashes.mixins.json [12мая2024 17:30:39.442] [main/DEBUG] [mixin/]: Registering mixin config: notenoughcrashes.forge.mixins.json [12мая2024 17:30:39.470] [main/DEBUG] [mixin/]: Compatibility level JAVA_8 specified by notenoughcrashes.forge.mixins.json is lower than the default level supported by the current mixin service (JAVA_16). [12мая2024 17:30:39.483] [main/DEBUG] [mixin/]: Adding mixin platform agents for container SecureJarResource(betterdungeons) [12мая2024 17:30:39.498] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(betterdungeons) [12мая2024 17:30:39.499] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(betterdungeons) [12мая2024 17:30:39.499] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(betterdungeons) [12мая2024 17:30:39.500] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container SecureJarResource(betterdungeons) [12мая2024 17:30:39.500] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(betterdungeons)] [12мая2024 17:30:39.500] [main/DEBUG] [mixin/]: Registering mixin config: betterdungeons.mixins.json [12мая2024 17:30:39.508] [main/DEBUG] [mixin/]: Registering mixin config: betterdungeons_forge.mixins.json [12мая2024 17:30:39.518] [main/DEBUG] [mixin/]: Adding mixin platform agents for container SecureJarResource(alexsmobs) [12мая2024 17:30:39.518] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(alexsmobs) [12мая2024 17:30:39.518] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(alexsmobs) [12мая2024 17:30:39.518] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(alexsmobs) [12мая2024 17:30:39.519] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container SecureJarResource(alexsmobs) [12мая2024 17:30:39.519] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(alexsmobs)] [12мая2024 17:30:39.519] [main/DEBUG] [mixin/]: Registering mixin config: citadel.mixins.json [12мая2024 17:30:39.528] [main/DEBUG] [mixin/]: Adding mixin platform agents for container SecureJarResource(betterwitchhuts) [12мая2024 17:30:39.530] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(betterwitchhuts) [12мая2024 17:30:39.530] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(betterwitchhuts) [12мая2024 17:30:39.531] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(betterwitchhuts) [12мая2024 17:30:39.531] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container SecureJarResource(betterwitchhuts) [12мая2024 17:30:39.531] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(betterwitchhuts)] [12мая2024 17:30:39.532] [main/DEBUG] [mixin/]: Registering mixin config: betterwitchhuts.mixins.json [12мая2024 17:30:39.538] [main/DEBUG] [mixin/]: Registering mixin config: betterwitchhuts_forge.mixins.json [12мая2024 17:30:39.542] [main/DEBUG] [mixin/]: Adding mixin platform agents for container SecureJarResource(satin) [12мая2024 17:30:39.542] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(satin) [12мая2024 17:30:39.543] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(satin) [12мая2024 17:30:39.543] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(satin) [12мая2024 17:30:39.543] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container SecureJarResource(satin) [12мая2024 17:30:39.543] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(satin)] [12мая2024 17:30:39.549] [main/DEBUG] [mixin/]: Registering mixin config: mixins.satin.client.json [12мая2024 17:30:39.557] [main/DEBUG] [mixin/]: Compatibility level JAVA_16 specified by mixins.satin.client.json is higher than the maximum level supported by this version of mixin (JAVA_13). [12мая2024 17:30:39.558] [main/ERROR] [mixin/]: Mixin config mixins.satin.client.json does not specify "minVersion" property [12мая2024 17:30:39.558] [main/DEBUG] [mixin/]: Adding mixin platform agents for container SecureJarResource(jei) [12мая2024 17:30:39.558] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(jei) [12мая2024 17:30:39.558] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(jei) [12мая2024 17:30:39.558] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(jei) [12мая2024 17:30:39.558] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container SecureJarResource(jei) [12мая2024 17:30:39.559] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(jei)] [12мая2024 17:30:39.560] [main/DEBUG] [mixin/]: Adding mixin platform agents for container SecureJarResource(majruszsdifficulty) [12мая2024 17:30:39.561] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(majruszsdifficulty) [12мая2024 17:30:39.561] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(majruszsdifficulty) [12мая2024 17:30:39.563] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(majruszsdifficulty) [12мая2024 17:30:39.563] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container SecureJarResource(majruszsdifficulty) [12мая2024 17:30:39.564] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(majruszsdifficulty)] [12мая2024 17:30:39.564] [main/DEBUG] [mixin/]: Registering mixin config: majruszsdifficulty-common.mixins.json [12мая2024 17:30:39.568] [main/DEBUG] [mixin/]: Registering mixin config: majruszsdifficulty-forge.mixins.json [12мая2024 17:30:39.572] [main/DEBUG] [mixin/]: Adding mixin platform agents for container SecureJarResource(betteroceanmonuments) [12мая2024 17:30:39.572] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(betteroceanmonuments) [12мая2024 17:30:39.573] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(betteroceanmonuments) [12мая2024 17:30:39.573] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(betteroceanmonuments) [12мая2024 17:30:39.573] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container SecureJarResource(betteroceanmonuments) [12мая2024 17:30:39.573] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(betteroceanmonuments)] [12мая2024 17:30:39.573] [main/DEBUG] [mixin/]: Registering mixin config: betteroceanmonuments.mixins.json [12мая2024 17:30:39.578] [main/DEBUG] [mixin/]: Registering mixin config: betteroceanmonuments_forge.mixins.json [12мая2024 17:30:39.581] [main/DEBUG] [mixin/]: Adding mixin platform agents for container SecureJarResource(nerb) [12мая2024 17:30:39.581] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(nerb) [12мая2024 17:30:39.581] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(nerb) [12мая2024 17:30:39.581] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(nerb) [12мая2024 17:30:39.581] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container SecureJarResource(nerb) [12мая2024 17:30:39.581] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(nerb)] [12мая2024 17:30:39.581] [main/DEBUG] [mixin/]: Registering mixin config: nerb-common.mixins.json [12мая2024 17:30:39.590] [main/DEBUG] [mixin/]: Registering mixin config: nerb.mixins.json [12мая2024 17:30:39.594] [main/DEBUG] [mixin/]: Adding mixin platform agents for container SecureJarResource(rubidium) [12мая2024 17:30:39.594] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(rubidium) [12мая2024 17:30:39.594] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(rubidium) [12мая2024 17:30:39.594] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(rubidium) [12мая2024 17:30:39.594] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container SecureJarResource(rubidium) [12мая2024 17:30:39.594] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(rubidium)] [12мая2024 17:30:39.594] [main/DEBUG] [mixin/]: Registering mixin config: rubidium.mixins.json [12мая2024 17:30:39.598] [main/DEBUG] [mixin/]: Registering mixin config: rubidium.compat.mixins.json [12мая2024 17:30:39.601] [main/DEBUG] [mixin/]: Adding mixin platform agents for container SecureJarResource(sound_physics_remastered) [12мая2024 17:30:39.602] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(sound_physics_remastered) [12мая2024 17:30:39.602] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(sound_physics_remastered) [12мая2024 17:30:39.603] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(sound_physics_remastered) [12мая2024 17:30:39.603] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container SecureJarResource(sound_physics_remastered) [12мая2024 17:30:39.603] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(sound_physics_remastered)] [12мая2024 17:30:39.603] [main/DEBUG] [mixin/]: Adding mixin platform agents for container SecureJarResource(waystones) [12мая2024 17:30:39.603] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(waystones) [12мая2024 17:30:39.604] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(waystones) [12мая2024 17:30:39.604] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(waystones) [12мая2024 17:30:39.604] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container SecureJarResource(waystones) [12мая2024 17:30:39.604] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(waystones)] [12мая2024 17:30:39.604] [main/DEBUG] [mixin/]: Registering mixin config: waystones.mixins.json [12мая2024 17:30:39.609] [main/DEBUG] [mixin/]: Adding mixin platform agents for container SecureJarResource(epicfight) [12мая2024 17:30:39.609] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(epicfight) [12мая2024 17:30:39.609] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(epicfight) [12мая2024 17:30:39.609] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(epicfight) [12мая2024 17:30:39.610] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container SecureJarResource(epicfight) [12мая2024 17:30:39.610] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(epicfight)] [12мая2024 17:30:39.610] [main/DEBUG] [mixin/]: Registering mixin config: epicfight.mixins.json [12мая2024 17:30:39.616] [main/DEBUG] [mixin/]: Adding mixin platform agents for container SecureJarResource(fallingleaves) [12мая2024 17:30:39.616] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(fallingleaves) [12мая2024 17:30:39.616] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(fallingleaves) [12мая2024 17:30:39.616] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(fallingleaves) [12мая2024 17:30:39.616] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container SecureJarResource(fallingleaves) [12мая2024 17:30:39.630] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(fallingleaves)] [12мая2024 17:30:39.632] [main/DEBUG] [mixin/]: Registering mixin config: fallingleaves.mixins.json [12мая2024 17:30:39.636] [main/DEBUG] [mixin/]: Adding mixin platform agents for container SecureJarResource(fastsuite) [12мая2024 17:30:39.636] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(fastsuite) [12мая2024 17:30:39.636] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(fastsuite) [12мая2024 17:30:39.637] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(fastsuite) [12мая2024 17:30:39.637] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container SecureJarResource(fastsuite) [12мая2024 17:30:39.637] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(fastsuite)] [12мая2024 17:30:39.637] [main/DEBUG] [mixin/]: Registering mixin config: fastsuite.mixins.json [12мая2024 17:30:39.640] [main/DEBUG] [mixin/]: Adding mixin platform agents for container SecureJarResource(citadel) [12мая2024 17:30:39.649] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(citadel) [12мая2024 17:30:39.649] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(citadel) [12мая2024 17:30:39.650] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(citadel) [12мая2024 17:30:39.650] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container SecureJarResource(citadel) [12мая2024 17:30:39.650] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(citadel)] [12мая2024 17:30:39.650] [main/DEBUG] [mixin/]: Registering mixin config: citadel.mixins.json [12мая2024 17:30:39.650] [main/DEBUG] [mixin/]: Adding mixin platform agents for container SecureJarResource(modernfix) [12мая2024 17:30:39.650] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(modernfix) [12мая2024 17:30:39.650] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(modernfix) [12мая2024 17:30:39.650] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(modernfix) [12мая2024 17:30:39.650] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container SecureJarResource(modernfix) [12мая2024 17:30:39.650] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(modernfix)] [12мая2024 17:30:39.650] [main/DEBUG] [mixin/]: Registering mixin config: modernfix-common.mixins.json [12мая2024 17:30:39.653] [main/DEBUG] [mixin/]: Registering mixin config: modernfix-forge.mixins.json [12мая2024 17:30:39.656] [main/DEBUG] [mixin/]: Adding mixin platform agents for container SecureJarResource(placebo) [12мая2024 17:30:39.656] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(placebo) [12мая2024 17:30:39.656] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(placebo) [12мая2024 17:30:39.656] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(placebo) [12мая2024 17:30:39.656] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container SecureJarResource(placebo) [12мая2024 17:30:39.656] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(placebo)] [12мая2024 17:30:39.656] [main/DEBUG] [mixin/]: Registering mixin config: placebo.mixins.json [12мая2024 17:30:39.659] [main/DEBUG] [mixin/]: Adding mixin platform agents for container SecureJarResource(crackerslib) [12мая2024 17:30:39.659] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(crackerslib) [12мая2024 17:30:39.659] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(crackerslib) [12мая2024 17:30:39.659] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(crackerslib) [12мая2024 17:30:39.659] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container SecureJarResource(crackerslib) [12мая2024 17:30:39.659] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(crackerslib)] [12мая2024 17:30:39.660] [main/DEBUG] [mixin/]: Registering mixin config: crackerslib.mixins.json [12мая2024 17:30:39.664] [main/DEBUG] [mixin/]: Adding mixin platform agents for container SecureJarResource(yungsapi) [12мая2024 17:30:39.664] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(yungsapi) [12мая2024 17:30:39.664] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(yungsapi) [12мая2024 17:30:39.664] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(yungsapi) [12мая2024 17:30:39.664] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container SecureJarResource(yungsapi) [12мая2024 17:30:39.664] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(yungsapi)] [12мая2024 17:30:39.664] [main/DEBUG] [mixin/]: Registering mixin config: yungsapi.mixins.json [12мая2024 17:30:39.667] [main/DEBUG] [mixin/]: Registering mixin config: yungsapi_forge.mixins.json [12мая2024 17:30:39.670] [main/DEBUG] [mixin/]: Adding mixin platform agents for container SecureJarResource(make_bubbles_pop) [12мая2024 17:30:39.670] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(make_bubbles_pop) [12мая2024 17:30:39.670] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(make_bubbles_pop) [12мая2024 17:30:39.670] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(make_bubbles_pop) [12мая2024 17:30:39.670] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container SecureJarResource(make_bubbles_pop) [12мая2024 17:30:39.670] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(make_bubbles_pop)] [12мая2024 17:30:39.670] [main/DEBUG] [mixin/]: Registering mixin config: make_bubbles_pop.mixins.json [12мая2024 17:30:39.699] [main/DEBUG] [mixin/]: Adding mixin platform agents for container SecureJarResource(starlight) [12мая2024 17:30:39.699] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(starlight) [12мая2024 17:30:39.700] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(starlight) [12мая2024 17:30:39.700] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(starlight) [12мая2024 17:30:39.700] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container SecureJarResource(starlight) [12мая2024 17:30:39.700] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(starlight)] [12мая2024 17:30:39.700] [main/DEBUG] [mixin/]: Registering mixin config: starlight.mixins.json [12мая2024 17:30:39.737] [main/DEBUG] [mixin/]: Adding mixin platform agents for container SecureJarResource(takesapillage) [12мая2024 17:30:39.737] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(takesapillage) [12мая2024 17:30:39.737] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(takesapillage) [12мая2024 17:30:39.737] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(takesapillage) [12мая2024 17:30:39.738] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container SecureJarResource(takesapillage) [12мая2024 17:30:39.738] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(takesapillage)] [12мая2024 17:30:39.738] [main/DEBUG] [mixin/]: Registering mixin config: takesapillage.mixins.json [12мая2024 17:30:39.740] [main/DEBUG] [mixin/]: Adding mixin platform agents for container SecureJarResource(betterdeserttemples) [12мая2024 17:30:39.740] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(betterdeserttemples) [12мая2024 17:30:39.740] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(betterdeserttemples) [12мая2024 17:30:39.741] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(betterdeserttemples) [12мая2024 17:30:39.741] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container SecureJarResource(betterdeserttemples) [12мая2024 17:30:39.741] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(betterdeserttemples)] [12мая2024 17:30:39.741] [main/DEBUG] [mixin/]: Registering mixin config: betterdeserttemples.mixins.json [12мая2024 17:30:39.743] [main/DEBUG] [mixin/]: Registering mixin config: betterdeserttemples_forge.mixins.json [12мая2024 17:30:39.749] [main/DEBUG] [mixin/]: Adding mixin platform agents for container SecureJarResource(balm) [12мая2024 17:30:39.749] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(balm) [12мая2024 17:30:39.749] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(balm) [12мая2024 17:30:39.749] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(balm) [12мая2024 17:30:39.749] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container SecureJarResource(balm) [12мая2024 17:30:39.749] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(balm)] [12мая2024 17:30:39.749] [main/DEBUG] [mixin/]: Registering mixin config: balm.mixins.json [12мая2024 17:30:39.752] [main/DEBUG] [mixin/]: Adding mixin platform agents for container SecureJarResource(waters_fps_boost) [12мая2024 17:30:39.752] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(waters_fps_boost) [12мая2024 17:30:39.752] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(waters_fps_boost) [12мая2024 17:30:39.752] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(waters_fps_boost) [12мая2024 17:30:39.752] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container SecureJarResource(waters_fps_boost) [12мая2024 17:30:39.752] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(waters_fps_boost)] [12мая2024 17:30:39.753] [main/DEBUG] [mixin/]: Adding mixin platform agents for container SecureJarResource(betterfortresses) [12мая2024 17:30:39.753] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(betterfortresses) [12мая2024 17:30:39.753] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(betterfortresses) [12мая2024 17:30:39.753] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(betterfortresses) [12мая2024 17:30:39.753] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container SecureJarResource(betterfortresses) [12мая2024 17:30:39.753] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(betterfortresses)] [12мая2024 17:30:39.753] [main/DEBUG] [mixin/]: Registering mixin config: betterfortresses.mixins.json [12мая2024 17:30:39.758] [main/DEBUG] [mixin/]: Registering mixin config: betterfortresses_forge.mixins.json [12мая2024 17:30:39.769] [main/DEBUG] [mixin/]: Adding mixin platform agents for container SecureJarResource(forge) [12мая2024 17:30:39.769] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(forge) [12мая2024 17:30:39.769] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(forge) [12мая2024 17:30:39.770] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(forge) [12мая2024 17:30:39.770] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container SecureJarResource(forge) [12мая2024 17:30:39.770] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(forge)] [12мая2024 17:30:39.770] [main/DEBUG] [mixin/]: Adding mixin platform agents for container SecureJarResource(sfcr) [12мая2024 17:30:39.770] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(sfcr) [12мая2024 17:30:39.770] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(sfcr) [12мая2024 17:30:39.770] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(sfcr) [12мая2024 17:30:39.770] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container SecureJarResource(sfcr) [12мая2024 17:30:39.770] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(sfcr)] [12мая2024 17:30:39.770] [main/DEBUG] [mixin/]: Registering mixin config: forge-sfcr-common.mixins.json [12мая2024 17:30:39.773] [main/DEBUG] [mixin/]: Compatibility level JAVA_8 specified by forge-sfcr-common.mixins.json is lower than the default level supported by the current mixin service (JAVA_16). [12мая2024 17:30:39.774] [main/DEBUG] [mixin/]: Adding mixin platform agents for container SecureJarResource(advancementplaques) [12мая2024 17:30:39.774] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(advancementplaques) [12мая2024 17:30:39.774] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(advancementplaques) [12мая2024 17:30:39.774] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(advancementplaques) [12мая2024 17:30:39.774] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container SecureJarResource(advancementplaques) [12мая2024 17:30:39.774] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(advancementplaques)] [12мая2024 17:30:39.774] [main/DEBUG] [mixin/]: Adding mixin platform agents for container SecureJarResource(entity_model_features) [12мая2024 17:30:39.774] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(entity_model_features) [12мая2024 17:30:39.774] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(entity_model_features) [12мая2024 17:30:39.775] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(entity_model_features) [12мая2024 17:30:39.775] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container SecureJarResource(entity_model_features) [12мая2024 17:30:39.775] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(entity_model_features)] [12мая2024 17:30:39.775] [main/DEBUG] [mixin/]: Registering mixin config: entity_model_features-common.mixins.json [12мая2024 17:30:39.779] [main/DEBUG] [mixin/]: Registering mixin config: entity_model_features.mixins.json [12мая2024 17:30:39.782] [main/ERROR] [mixin/]: Mixin config entity_model_features.mixins.json does not specify "minVersion" property [12мая2024 17:30:39.783] [main/DEBUG] [mixin/]: Registering mixin config: entity_model_features-optional.mixins.json [12мая2024 17:30:39.787] [main/DEBUG] [mixin/]: Adding mixin platform agents for container SecureJarResource(minecraft) [12мая2024 17:30:39.787] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(minecraft) [12мая2024 17:30:39.787] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(minecraft) [12мая2024 17:30:39.787] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(minecraft) [12мая2024 17:30:39.787] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container SecureJarResource(minecraft) [12мая2024 17:30:39.787] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(minecraft)] [12мая2024 17:30:39.791] [main/DEBUG] [mixin/]: Adding mixin platform agents for container SecureJarResource(entity_texture_features) [12мая2024 17:30:39.791] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(entity_texture_features) [12мая2024 17:30:39.791] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(entity_texture_features) [12мая2024 17:30:39.791] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(entity_texture_features) [12мая2024 17:30:39.791] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container SecureJarResource(entity_texture_features) [12мая2024 17:30:39.791] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(entity_texture_features)] [12мая2024 17:30:39.791] [main/DEBUG] [mixin/]: Registering mixin config: entity_texture_features-forge.mixins.json [12мая2024 17:30:39.794] [main/DEBUG] [mixin/]: Registering mixin config: entity_texture_features-common.mixins.json [12мая2024 17:30:39.798] [main/DEBUG] [mixin/]: Adding mixin platform agents for container SecureJarResource(alexscaves) [12мая2024 17:30:39.798] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(alexscaves) [12мая2024 17:30:39.798] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(alexscaves) [12мая2024 17:30:39.798] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(alexscaves) [12мая2024 17:30:39.798] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container SecureJarResource(alexscaves) [12мая2024 17:30:39.798] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(alexscaves)] [12мая2024 17:30:39.808] [main/DEBUG] [mixin/]: Registering mixin config: citadel.mixins.json [12мая2024 17:30:39.808] [main/DEBUG] [mixin/]: Registering mixin config: alexscaves.mixins.json [12мая2024 17:30:39.815] [main/DEBUG] [mixin/]: Adding mixin platform agents for container SecureJarResource(ambientsounds) [12мая2024 17:30:39.816] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(ambientsounds) [12мая2024 17:30:39.818] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(ambientsounds) [12мая2024 17:30:39.818] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(ambientsounds) [12мая2024 17:30:39.818] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container SecureJarResource(ambientsounds) [12мая2024 17:30:39.818] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(ambientsounds)] [12мая2024 17:30:39.818] [main/DEBUG] [mixin/]: Registering mixin config: ambientsounds.mixins.json [12мая2024 17:30:39.821] [main/DEBUG] [mixin/]: Adding mixin platform agents for container SecureJarResource(moonlight) [12мая2024 17:30:39.821] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(moonlight) [12мая2024 17:30:39.821] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(moonlight) [12мая2024 17:30:39.821] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(moonlight) [12мая2024 17:30:39.821] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container SecureJarResource(moonlight) [12мая2024 17:30:39.821] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(moonlight)] [12мая2024 17:30:39.821] [main/DEBUG] [mixin/]: Registering mixin config: moonlight-common.mixins.json [12мая2024 17:30:40.360] [main/DEBUG] [mixin/]: Error cleaning class output directory: .mixin.out\class [12мая2024 17:30:40.368] [main/DEBUG] [mixin/]: Preparing mixins for MixinEnvironment[PREINIT] [12мая2024 17:30:40.432] [main/DEBUG] [mixin/]: Registering mixin config: moonlight.mixins.json [12мая2024 17:30:40.436] [main/DEBUG] [mixin/]: Adding mixin platform agents for container SecureJarResource(klmaster) [12мая2024 17:30:40.436] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(klmaster) [12мая2024 17:30:40.436] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(klmaster) [12мая2024 17:30:40.436] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(klmaster) [12мая2024 17:30:40.436] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container SecureJarResource(klmaster) [12мая2024 17:30:40.436] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(klmaster)] [12мая2024 17:30:40.436] [main/DEBUG] [mixin/]: Registering mixin config: klmaster.mixins.json [12мая2024 17:30:40.440] [main/DEBUG] [mixin/]: Compatibility level JAVA_8 specified by klmaster.mixins.json is lower than the default level supported by the current mixin service (JAVA_16). [12мая2024 17:30:40.442] [main/DEBUG] [mixin/]: Adding mixin platform agents for container SecureJarResource(blur) [12мая2024 17:30:40.442] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(blur) [12мая2024 17:30:40.443] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(blur) [12мая2024 17:30:40.443] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(blur) [12мая2024 17:30:40.443] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container SecureJarResource(blur) [12мая2024 17:30:40.443] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(blur)] [12мая2024 17:30:40.443] [main/DEBUG] [mixin/]: Registering mixin config: mixins.blur.json [12мая2024 17:30:40.452] [main/DEBUG] [mixin/]: Adding mixin platform agents for container SecureJarResource(explorify) [12мая2024 17:30:40.453] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(explorify) [12мая2024 17:30:40.453] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(explorify) [12мая2024 17:30:40.453] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(explorify) [12мая2024 17:30:40.453] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container SecureJarResource(explorify) [12мая2024 17:30:40.453] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(explorify)] [12мая2024 17:30:40.453] [main/DEBUG] [mixin/]: Adding mixin platform agents for container SecureJarResource(creativecore) [12мая2024 17:30:40.453] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(creativecore) [12мая2024 17:30:40.453] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(creativecore) [12мая2024 17:30:40.453] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(creativecore) [12мая2024 17:30:40.453] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container SecureJarResource(creativecore) [12мая2024 17:30:40.453] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(creativecore)] [12мая2024 17:30:40.454] [main/DEBUG] [mixin/]: Registering mixin config: creativecore.mixins.json [12мая2024 17:30:40.457] [main/DEBUG] [mixin/]: Registering mixin config: creativecore.forge.mixins.json [12мая2024 17:30:40.463] [main/DEBUG] [mixin/]: Adding mixin platform agents for container SecureJarResource(smoothboot) [12мая2024 17:30:40.464] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(smoothboot) [12мая2024 17:30:40.464] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(smoothboot) [12мая2024 17:30:40.468] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(smoothboot) [12мая2024 17:30:40.468] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container SecureJarResource(smoothboot) [12мая2024 17:30:40.469] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(smoothboot)] [12мая2024 17:30:40.469] [main/DEBUG] [mixin/]: Registering mixin config: smoothboot.mixins.json [12мая2024 17:30:40.471] [main/DEBUG] [mixin/]: Adding mixin platform agents for container SecureJarResource(yungsbridges) [12мая2024 17:30:40.472] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(yungsbridges) [12мая2024 17:30:40.472] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(yungsbridges) [12мая2024 17:30:40.472] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(yungsbridges) [12мая2024 17:30:40.472] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container SecureJarResource(yungsbridges) [12мая2024 17:30:40.472] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(yungsbridges)] [12мая2024 17:30:40.472] [main/DEBUG] [mixin/]: Registering mixin config: yungsbridges.mixins.json [12мая2024 17:30:40.475] [main/DEBUG] [mixin/]: Registering mixin config: yungsbridges_forge.mixins.json [12мая2024 17:30:40.479] [main/DEBUG] [mixin/]: Adding mixin platform agents for container SecureJarResource(fastpaintings) [12мая2024 17:30:40.484] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(fastpaintings) [12мая2024 17:30:40.484] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(fastpaintings) [12мая2024 17:30:40.486] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(fastpaintings) [12мая2024 17:30:40.486] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container SecureJarResource(fastpaintings) [12мая2024 17:30:40.486] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(fastpaintings)] [12мая2024 17:30:40.486] [main/DEBUG] [mixin/]: Registering mixin config: fastpaintings.mixins.json [12мая2024 17:30:40.489] [main/DEBUG] [mixin/]: Registering mixin config: fastpaintings-forge.mixins.json [12мая2024 17:30:40.491] [main/DEBUG] [mixin/]: Adding mixin platform agents for container SecureJarResource(iceberg) [12мая2024 17:30:40.492] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(iceberg) [12мая2024 17:30:40.492] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(iceberg) [12мая2024 17:30:40.492] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(iceberg) [12мая2024 17:30:40.492] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container SecureJarResource(iceberg) [12мая2024 17:30:40.492] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(iceberg)] [12мая2024 17:30:40.492] [main/DEBUG] [mixin/]: Registering mixin config: iceberg.mixins.json [12мая2024 17:30:40.494] [main/DEBUG] [mixin/]: Adding mixin platform agents for container SecureJarResource(notenoughanimations) [12мая2024 17:30:40.495] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(notenoughanimations) [12мая2024 17:30:40.495] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(notenoughanimations) [12мая2024 17:30:40.495] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(notenoughanimations) [12мая2024 17:30:40.495] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container SecureJarResource(notenoughanimations) [12мая2024 17:30:40.495] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(notenoughanimations)] [12мая2024 17:30:40.495] [main/DEBUG] [mixin/]: Registering mixin config: notenoughanimations.mixins.json [12мая2024 17:30:40.498] [main/DEBUG] [mixin/]: Compatibility level JAVA_8 specified by notenoughanimations.mixins.json is lower than the default level supported by the current mixin service (JAVA_16). [12мая2024 17:30:40.499] [main/DEBUG] [mixin/]: Adding mixin platform agents for container SecureJarResource(oculus) [12мая2024 17:30:40.499] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(oculus) [12мая2024 17:30:40.499] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(oculus) [12мая2024 17:30:40.500] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(oculus) [12мая2024 17:30:40.500] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container SecureJarResource(oculus) [12мая2024 17:30:40.500] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(oculus)] [12мая2024 17:30:40.500] [main/DEBUG] [mixin/]: Registering mixin config: mixins.oculus.json [12мая2024 17:30:40.502] [main/DEBUG] [mixin/]: Compatibility level JAVA_8 specified by mixins.oculus.json is lower than the default level supported by the current mixin service (JAVA_16). [12мая2024 17:30:40.503] [main/DEBUG] [mixin/]: Registering mixin config: mixins.oculus.fantastic.json [12мая2024 17:30:40.506] [main/DEBUG] [mixin/]: Compatibility level JAVA_8 specified by mixins.oculus.fantastic.json is lower than the default level supported by the current mixin service (JAVA_16). [12мая2024 17:30:40.507] [main/DEBUG] [mixin/]: Registering mixin config: mixins.oculus.vertexformat.json [12мая2024 17:30:40.510] [main/DEBUG] [mixin/]: Compatibility level JAVA_8 specified by mixins.oculus.vertexformat.json is lower than the default level supported by the current mixin service (JAVA_16). [12мая2024 17:30:40.514] [main/DEBUG] [mixin/]: Registering mixin config: mixins.oculus.bettermipmaps.json [12мая2024 17:30:40.521] [main/DEBUG] [mixin/]: Compatibility level JAVA_8 specified by mixins.oculus.bettermipmaps.json is lower than the default level supported by the current mixin service (JAVA_16). [12мая2024 17:30:40.521] [main/DEBUG] [mixin/]: Registering mixin config: mixins.oculus.fixes.maxfpscrash.json [12мая2024 17:30:40.524] [main/DEBUG] [mixin/]: Compatibility level JAVA_8 specified by mixins.oculus.fixes.maxfpscrash.json is lower than the default level supported by the current mixin service (JAVA_16). [12мая2024 17:30:40.525] [main/DEBUG] [mixin/]: Registering mixin config: oculus-batched-entity-rendering.mixins.json [12мая2024 17:30:40.529] [main/DEBUG] [mixin/]: Compatibility level JAVA_8 specified by oculus-batched-entity-rendering.mixins.json is lower than the default level supported by the current mixin service (JAVA_16). [12мая2024 17:30:40.537] [main/DEBUG] [mixin/]: Registering mixin config: mixins.oculus.compat.sodium.json [12мая2024 17:30:40.541] [main/DEBUG] [mixin/]: Compatibility level JAVA_8 specified by mixins.oculus.compat.sodium.json is lower than the default level supported by the current mixin service (JAVA_16). [12мая2024 17:30:40.542] [main/DEBUG] [mixin/]: Registering mixin config: mixins.oculus.compat.indigo.json [12мая2024 17:30:40.553] [main/DEBUG] [mixin/]: Compatibility level JAVA_8 specified by mixins.oculus.compat.indigo.json is lower than the default level supported by the current mixin service (JAVA_16). [12мая2024 17:30:40.557] [main/DEBUG] [mixin/]: Registering mixin config: mixins.oculus.compat.indium.json [12мая2024 17:30:40.561] [main/DEBUG] [mixin/]: Compatibility level JAVA_8 specified by mixins.oculus.compat.indium.json is lower than the default level supported by the current mixin service (JAVA_16). [12мая2024 17:30:40.561] [main/DEBUG] [mixin/]: Registering mixin config: mixins.oculus.compat.dh.json [12мая2024 17:30:40.573] [main/DEBUG] [mixin/]: Compatibility level JAVA_8 specified by mixins.oculus.compat.dh.json is lower than the default level supported by the current mixin service (JAVA_16). [12мая2024 17:30:40.574] [main/DEBUG] [mixin/]: Registering mixin config: mixins.oculus.compat.pixelmon.json [12мая2024 17:30:40.577] [main/DEBUG] [mixin/]: Compatibility level JAVA_8 specified by mixins.oculus.compat.pixelmon.json is lower than the default level supported by the current mixin service (JAVA_16). [12мая2024 17:30:40.579] [main/DEBUG] [mixin/]: Adding mixin platform agents for container SecureJarResource(fastbench) [12мая2024 17:30:40.580] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(fastbench) [12мая2024 17:30:40.580] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(fastbench) [12мая2024 17:30:40.580] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(fastbench) [12мая2024 17:30:40.580] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container SecureJarResource(fastbench) [12мая2024 17:30:40.580] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(fastbench)] [12мая2024 17:30:40.587] [main/DEBUG] [mixin/]: Registering mixin config: fastbench.mixins.json [12мая2024 17:30:40.591] [main/DEBUG] [mixin/]: Adding mixin platform agents for container SecureJarResource(mr_dungeons_andtaverns) [12мая2024 17:30:40.591] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(mr_dungeons_andtaverns) [12мая2024 17:30:40.592] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(mr_dungeons_andtaverns) [12мая2024 17:30:40.593] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(mr_dungeons_andtaverns) [12мая2024 17:30:40.594] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container SecureJarResource(mr_dungeons_andtaverns) [12мая2024 17:30:40.594] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(mr_dungeons_andtaverns)] [12мая2024 17:30:40.595] [main/DEBUG] [mixin/]: Adding mixin platform agents for container SecureJarResource(yungsextras) [12мая2024 17:30:40.595] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(yungsextras) [12мая2024 17:30:40.595] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(yungsextras) [12мая2024 17:30:40.595] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(yungsextras) [12мая2024 17:30:40.595] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container SecureJarResource(yungsextras) [12мая2024 17:30:40.595] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(yungsextras)] [12мая2024 17:30:40.595] [main/DEBUG] [mixin/]: Registering mixin config: yungsextras.mixins.json [12мая2024 17:30:40.603] [main/DEBUG] [mixin/]: Registering mixin config: yungsextras_forge.mixins.json [12мая2024 17:30:40.606] [main/DEBUG] [mixin/]: Adding mixin platform agents for container SecureJarResource(doespotatotick) [12мая2024 17:30:40.606] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(doespotatotick) [12мая2024 17:30:40.606] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(doespotatotick) [12мая2024 17:30:40.607] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(doespotatotick) [12мая2024 17:30:40.607] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container SecureJarResource(doespotatotick) [12мая2024 17:30:40.607] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(doespotatotick)] [12мая2024 17:30:40.607] [main/DEBUG] [mixin/]: Registering mixin config: doespotatotick.mixins.json [12мая2024 17:30:40.609] [main/DEBUG] [mixin/]: Compatibility level JAVA_8 specified by doespotatotick.mixins.json is lower than the default level supported by the current mixin service (JAVA_16). [12мая2024 17:30:40.610] [main/DEBUG] [mixin/]: Adding mixin platform agents for container SecureJarResource(entityculling) [12мая2024 17:30:40.610] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(entityculling) [12мая2024 17:30:40.610] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(entityculling) [12мая2024 17:30:40.610] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(entityculling) [12мая2024 17:30:40.610] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container SecureJarResource(entityculling) [12мая2024 17:30:40.610] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(entityculling)] [12мая2024 17:30:40.610] [main/DEBUG] [mixin/]: Registering mixin config: entityculling.mixins.json [12мая2024 17:30:40.613] [main/DEBUG] [mixin/]: Compatibility level JAVA_16 specified by entityculling.mixins.json is higher than the maximum level supported by this version of mixin (JAVA_13). [12мая2024 17:30:40.614] [main/DEBUG] [mixin/]: Adding mixin platform agents for container SecureJarResource(canary) [12мая2024 17:30:40.614] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(canary) [12мая2024 17:30:40.615] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(canary) [12мая2024 17:30:40.615] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(canary) [12мая2024 17:30:40.615] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container SecureJarResource(canary) [12мая2024 17:30:40.615] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(canary)] [12мая2024 17:30:40.615] [main/DEBUG] [mixin/]: Registering mixin config: canary.mixins.json [12мая2024 17:30:40.618] [main/DEBUG] [mixin/]: Adding mixin platform agents for container SecureJarResource(witherstormmod) [12мая2024 17:30:40.619] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(witherstormmod) [12мая2024 17:30:40.619] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(witherstormmod) [12мая2024 17:30:40.619] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(witherstormmod) [12мая2024 17:30:40.619] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container SecureJarResource(witherstormmod) [12мая2024 17:30:40.619] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(witherstormmod)] [12мая2024 17:30:40.619] [main/DEBUG] [mixin/]: Registering mixin config: witherstormmod.mixins.json [12мая2024 17:30:40.622] [main/DEBUG] [mixin/]: Adding mixin platform agents for container SecureJarResource(betterstrongholds) [12мая2024 17:30:40.622] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(betterstrongholds) [12мая2024 17:30:40.622] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(betterstrongholds) [12мая2024 17:30:40.622] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(betterstrongholds) [12мая2024 17:30:40.622] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container SecureJarResource(betterstrongholds) [12мая2024 17:30:40.622] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(betterstrongholds)] [12мая2024 17:30:40.622] [main/DEBUG] [mixin/]: Registering mixin config: betterstrongholds.mixins.json [12мая2024 17:30:40.624] [main/DEBUG] [mixin/]: Registering mixin config: betterstrongholds_forge.mixins.json [12мая2024 17:30:40.630] [main/DEBUG] [mixin/]: Adding mixin platform agents for container SecureJarResource(immediatelyfast) [12мая2024 17:30:40.630] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(immediatelyfast) [12мая2024 17:30:40.630] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(immediatelyfast) [12мая2024 17:30:40.631] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(immediatelyfast) [12мая2024 17:30:40.631] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container SecureJarResource(immediatelyfast) [12мая2024 17:30:40.631] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(immediatelyfast)] [12мая2024 17:30:40.631] [main/DEBUG] [mixin/]: Registering mixin config: immediatelyfast-forge.mixins.json [12мая2024 17:30:40.638] [main/DEBUG] [mixin/]: Registering mixin config: immediatelyfast-common.mixins.json [12мая2024 17:30:40.642] [main/DEBUG] [mixin/]: Adding mixin platform agents for container SecureJarResource(fastfurnace) [12мая2024 17:30:40.642] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(fastfurnace) [12мая2024 17:30:40.643] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(fastfurnace) [12мая2024 17:30:40.643] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(fastfurnace) [12мая2024 17:30:40.643] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container SecureJarResource(fastfurnace) [12мая2024 17:30:40.643] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(fastfurnace)] [12мая2024 17:30:40.643] [main/DEBUG] [mixin/]: Registering mixin config: fastfurnace.mixins.json [12мая2024 17:30:40.646] [main/DEBUG] [mixin/]: Adding mixin platform agents for container SecureJarResource(architectury) [12мая2024 17:30:40.646] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(architectury) [12мая2024 17:30:40.647] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(architectury) [12мая2024 17:30:40.647] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(architectury) [12мая2024 17:30:40.647] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container SecureJarResource(architectury) [12мая2024 17:30:40.647] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(architectury)] [12мая2024 17:30:40.647] [main/DEBUG] [mixin/]: Registering mixin config: architectury.mixins.json [12мая2024 17:30:40.650] [main/DEBUG] [mixin/]: Compatibility level JAVA_16 specified by architectury.mixins.json is higher than the maximum level supported by this version of mixin (JAVA_13). [12мая2024 17:30:40.651] [main/DEBUG] [mixin/]: Registering mixin config: architectury-common.mixins.json [12мая2024 17:30:40.654] [main/DEBUG] [mixin/]: Compatibility level JAVA_16 specified by architectury-common.mixins.json is higher than the maximum level supported by this version of mixin (JAVA_13). [12мая2024 17:30:40.654] [main/DEBUG] [mixin/]: Adding mixin platform agents for container SecureJarResource(ferritecore) [12мая2024 17:30:40.655] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(ferritecore) [12мая2024 17:30:40.655] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(ferritecore) [12мая2024 17:30:40.655] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(ferritecore) [12мая2024 17:30:40.655] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container SecureJarResource(ferritecore) [12мая2024 17:30:40.655] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(ferritecore)] [12мая2024 17:30:40.655] [main/DEBUG] [mixin/]: Registering mixin config: ferritecore.predicates.mixin.json [12мая2024 17:30:40.659] [main/DEBUG] [mixin/]: Registering mixin config: ferritecore.fastmap.mixin.json [12мая2024 17:30:40.669] [main/DEBUG] [mixin/]: Registering mixin config: ferritecore.mrl.mixin.json [12мая2024 17:30:40.672] [main/DEBUG] [mixin/]: Registering mixin config: ferritecore.dedupmultipart.mixin.json [12мая2024 17:30:40.675] [main/DEBUG] [mixin/]: Registering mixin config: ferritecore.blockstatecache.mixin.json [12мая2024 17:30:40.678] [main/DEBUG] [mixin/]: Registering mixin config: ferritecore.dedupbakedquad.mixin.json [12мая2024 17:30:40.681] [main/DEBUG] [mixin/]: Registering mixin config: ferritecore.threaddetec.mixin.json [12мая2024 17:30:40.684] [main/DEBUG] [mixin/]: Registering mixin config: ferritecore.modelsides.mixin.json [12мая2024 17:30:40.688] [main/DEBUG] [mixin/]: Adding mixin platform agents for container SecureJarResource(betterendisland) [12мая2024 17:30:40.691] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(betterendisland) [12мая2024 17:30:40.691] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(betterendisland) [12мая2024 17:30:40.692] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(betterendisland) [12мая2024 17:30:40.692] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container SecureJarResource(betterendisland) [12мая2024 17:30:40.692] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(betterendisland)] [12мая2024 17:30:40.692] [main/DEBUG] [mixin/]: Registering mixin config: betterendisland.mixins.json [12мая2024 17:30:40.695] [main/DEBUG] [mixin/]: Registering mixin config: betterendisland_forge.mixins.json [12мая2024 17:30:40.701] [main/DEBUG] [mixin/]: Adding mixin platform agents for container SecureJarResource(majruszsenchantments) [12мая2024 17:30:40.701] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(majruszsenchantments) [12мая2024 17:30:40.701] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(majruszsenchantments) [12мая2024 17:30:40.702] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(majruszsenchantments) [12мая2024 17:30:40.702] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container SecureJarResource(majruszsenchantments) [12мая2024 17:30:40.702] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(majruszsenchantments)] [12мая2024 17:30:40.702] [main/DEBUG] [mixin/]: Registering mixin config: majruszsenchantments-common.mixins.json [12мая2024 17:30:40.705] [main/DEBUG] [mixin/]: Adding mixin platform agents for container SecureJarResource(badoptimizations) [12мая2024 17:30:40.705] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(badoptimizations) [12мая2024 17:30:40.705] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(badoptimizations) [12мая2024 17:30:40.705] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(badoptimizations) [12мая2024 17:30:40.705] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container SecureJarResource(badoptimizations) [12мая2024 17:30:40.706] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(badoptimizations)] [12мая2024 17:30:40.706] [main/DEBUG] [mixin/]: Registering mixin config: forge-badoptimizations.mixins.json [12мая2024 17:30:40.708] [main/DEBUG] [mixin/]: Adding mixin platform agents for container SecureJarResource(bettermineshafts) [12мая2024 17:30:40.708] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(bettermineshafts) [12мая2024 17:30:40.708] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(bettermineshafts) [12мая2024 17:30:40.708] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(bettermineshafts) [12мая2024 17:30:40.709] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container SecureJarResource(bettermineshafts) [12мая2024 17:30:40.709] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(bettermineshafts)] [12мая2024 17:30:40.709] [main/DEBUG] [mixin/]: Registering mixin config: bettermineshafts.mixins.json [12мая2024 17:30:40.711] [main/DEBUG] [mixin/]: Registering mixin config: bettermineshafts_forge.mixins.json [12мая2024 17:30:40.713] [main/DEBUG] [mixin/]: Adding mixin platform agents for container SecureJarResource(majruszlibrary) [12мая2024 17:30:40.713] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(majruszlibrary) [12мая2024 17:30:40.714] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(majruszlibrary) [12мая2024 17:30:40.714] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(majruszlibrary) [12мая2024 17:30:40.714] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container SecureJarResource(majruszlibrary) [12мая2024 17:30:40.714] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(majruszlibrary)] [12мая2024 17:30:40.714] [main/DEBUG] [mixin/]: Registering mixin config: majruszlibrary-common.mixins.json [12мая2024 17:30:40.716] [main/DEBUG] [mixin/]: Registering mixin config: majruszlibrary-forge.mixins.json [12мая2024 17:30:40.719] [main/DEBUG] [mixin/]: Adding mixin platform agents for container SecureJarResource(betterjungletemples) [12мая2024 17:30:40.719] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(betterjungletemples) [12мая2024 17:30:40.719] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(betterjungletemples) [12мая2024 17:30:40.719] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(betterjungletemples) [12мая2024 17:30:40.719] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container SecureJarResource(betterjungletemples) [12мая2024 17:30:40.719] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(betterjungletemples)] [12мая2024 17:30:40.719] [main/DEBUG] [mixin/]: Registering mixin config: betterjungletemples.mixins.json [12мая2024 17:30:40.722] [main/DEBUG] [mixin/]: Registering mixin config: betterjungletemples_forge.mixins.json [12мая2024 17:30:40.724] [main/DEBUG] [mixin/]: Adding mixin platform agents for container SecureJarResource(mixinextras) [12мая2024 17:30:40.724] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(mixinextras) [12мая2024 17:30:40.724] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(mixinextras) [12мая2024 17:30:40.725] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(mixinextras) [12мая2024 17:30:40.725] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container SecureJarResource(mixinextras) [12мая2024 17:30:40.725] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(mixinextras)] [12мая2024 17:30:40.725] [main/DEBUG] [mixin/]: Registering mixin config: mixinextras.init.mixins.json [12мая2024 17:30:40.727] [main/DEBUG] [mixin/]: Adding mixin platform agents for container SecureJarResource(jcpp) [12мая2024 17:30:40.727] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(jcpp) [12мая2024 17:30:40.727] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(jcpp) [12мая2024 17:30:40.727] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(jcpp) [12мая2024 17:30:40.727] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container SecureJarResource(jcpp) [12мая2024 17:30:40.728] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(jcpp)] [12мая2024 17:30:40.728] [main/DEBUG] [mixin/]: Adding mixin platform agents for container SecureJarResource(org.apache.httpcomponents.httpmime) [12мая2024 17:30:40.728] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(org.apache.httpcomponents.httpmime) [12мая2024 17:30:40.728] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(org.apache.httpcomponents.httpmime) [12мая2024 17:30:40.728] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(org.apache.httpcomponents.httpmime) [12мая2024 17:30:40.728] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container SecureJarResource(org.apache.httpcomponents.httpmime) [12мая2024 17:30:40.728] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(org.apache.httpcomponents.httpmime)] [12мая2024 17:30:40.728] [main/DEBUG] [mixin/]: Adding mixin platform agents for container SecureJarResource(MixinExtras) [12мая2024 17:30:40.728] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(MixinExtras) [12мая2024 17:30:40.728] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(MixinExtras) [12мая2024 17:30:40.728] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(MixinExtras) [12мая2024 17:30:40.728] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container SecureJarResource(MixinExtras) [12мая2024 17:30:40.728] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(MixinExtras)] [12мая2024 17:30:40.728] [main/DEBUG] [mixin/]: Adding mixin platform agents for container SecureJarResource(Reflect) [12мая2024 17:30:40.729] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(Reflect) [12мая2024 17:30:40.729] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(Reflect) [12мая2024 17:30:40.729] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(Reflect) [12мая2024 17:30:40.729] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container SecureJarResource(Reflect) [12мая2024 17:30:40.729] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(Reflect)] [12мая2024 17:30:40.729] [main/DEBUG] [mixin/]: inject() running with 72 agents [12мая2024 17:30:40.729] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:ModLauncher Root Container(ModLauncher:4f56a0a2)] [12мая2024 17:30:40.729] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(dynamiclightsreforged)] [12мая2024 17:30:40.729] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(saturn)] [12мая2024 17:30:40.729] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(notenoughcrashes)] [12мая2024 17:30:40.729] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(betterdungeons)] [12мая2024 17:30:40.729] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(alexsmobs)] [12мая2024 17:30:40.729] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(betterwitchhuts)] [12мая2024 17:30:40.729] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(satin)] [12мая2024 17:30:40.729] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(jei)] [12мая2024 17:30:40.729] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(majruszsdifficulty)] [12мая2024 17:30:40.729] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(betteroceanmonuments)] [12мая2024 17:30:40.730] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(nerb)] [12мая2024 17:30:40.730] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(rubidium)] [12мая2024 17:30:40.730] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(sound_physics_remastered)] [12мая2024 17:30:40.730] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(waystones)] [12мая2024 17:30:40.730] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(epicfight)] [12мая2024 17:30:40.730] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(fallingleaves)] [12мая2024 17:30:40.730] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(fastsuite)] [12мая2024 17:30:40.730] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(citadel)] [12мая2024 17:30:40.730] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(modernfix)] [12мая2024 17:30:40.730] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(placebo)] [12мая2024 17:30:40.730] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(crackerslib)] [12мая2024 17:30:40.730] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(yungsapi)] [12мая2024 17:30:40.730] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(make_bubbles_pop)] [12мая2024 17:30:40.730] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(starlight)] [12мая2024 17:30:40.730] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(takesapillage)] [12мая2024 17:30:40.730] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(betterdeserttemples)] [12мая2024 17:30:40.730] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(balm)] [12мая2024 17:30:40.730] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(waters_fps_boost)] [12мая2024 17:30:40.730] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(betterfortresses)] [12мая2024 17:30:40.730] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(forge)] [12мая2024 17:30:40.731] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(sfcr)] [12мая2024 17:30:40.731] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(advancementplaques)] [12мая2024 17:30:40.731] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(entity_model_features)] [12мая2024 17:30:40.731] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(minecraft)] [12мая2024 17:30:40.731] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(entity_texture_features)] [12мая2024 17:30:40.731] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(alexscaves)] [12мая2024 17:30:40.731] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(ambientsounds)] [12мая2024 17:30:40.731] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(moonlight)] [12мая2024 17:30:40.731] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(klmaster)] [12мая2024 17:30:40.731] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(blur)] [12мая2024 17:30:40.731] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(explorify)] [12мая2024 17:30:40.731] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(creativecore)] [12мая2024 17:30:40.731] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(smoothboot)] [12мая2024 17:30:40.731] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(yungsbridges)] [12мая2024 17:30:40.731] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(fastpaintings)] [12мая2024 17:30:40.731] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(iceberg)] [12мая2024 17:30:40.731] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(notenoughanimations)] [12мая2024 17:30:40.732] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(oculus)] [12мая2024 17:30:40.732] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(fastbench)] [12мая2024 17:30:40.732] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(mr_dungeons_andtaverns)] [12мая2024 17:30:40.732] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(yungsextras)] [12мая2024 17:30:40.732] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(doespotatotick)] [12мая2024 17:30:40.732] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(entityculling)] [12мая2024 17:30:40.732] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(canary)] [12мая2024 17:30:40.732] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(witherstormmod)] [12мая2024 17:30:40.732] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(betterstrongholds)] [12мая2024 17:30:40.732] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(immediatelyfast)] [12мая2024 17:30:40.732] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(fastfurnace)] [12мая2024 17:30:40.732] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(architectury)] [12мая2024 17:30:40.732] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(ferritecore)] [12мая2024 17:30:40.732] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(betterendisland)] [12мая2024 17:30:40.732] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(majruszsenchantments)] [12мая2024 17:30:40.732] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(badoptimizations)] [12мая2024 17:30:40.733] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(bettermineshafts)] [12мая2024 17:30:40.733] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(majruszlibrary)] [12мая2024 17:30:40.733] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(betterjungletemples)] [12мая2024 17:30:40.733] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(mixinextras)] [12мая2024 17:30:40.733] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(jcpp)] [12мая2024 17:30:40.733] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(org.apache.httpcomponents.httpmime)] [12мая2024 17:30:40.733] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(MixinExtras)] [12мая2024 17:30:40.733] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(Reflect)] [12мая2024 17:30:40.735] [main/DEBUG] [mixin/]: Checking for additional mixins for MixinEnvironment[PREINIT] [12мая2024 17:30:40.737] [main/INFO] [mixin/]: Successfully loaded Mixin Connector [com.sonicether.soundphysics.MixinConnector] [12мая2024 17:30:40.740] [main/INFO] [mixin/]: Successfully loaded Mixin Connector [ca.spottedleaf.starlight.mixin.MixinConnector] [12мая2024 17:30:40.756] [main/INFO] [cpw.mods.modlauncher.LaunchServiceHandler/MODLAUNCHER]: Launching target 'forgeclient' with arguments [--version, Forge 1.20.1, --gameDir, D:\.minecraft, --assetsDir, D:\.minecraft\assets, --uuid, 2f1c12f0d0d33cd3a57297dc6e0bc697, --accessToken, ????????, --username, LOLMANXD432, --assetIndex, 5, --clientId, forge-47.2.32, --xuid, null, --userType, legacy, --versionType, release, --width, 925, --height, 530] [12мая2024 17:30:40.795] [main/DEBUG] [mixin/]: Preparing mixins for MixinEnvironment[DEFAULT] [12мая2024 17:30:40.803] [main/DEBUG] [mixin/]: Selecting config dynamiclightsreforged.mixins.json [12мая2024 17:30:40.824] [main/DEBUG] [mixin/]: Selecting config saturn.mixins.json [12мая2024 17:30:40.928] [main/INFO] [com.abdelaziz.saturn.common.Saturn/]: Loaded Saturn config file with 4 configurable options [12мая2024 17:30:40.951] [main/DEBUG] [mixin/]: Selecting config notenoughcrashes.mixins.json [12мая2024 17:30:40.954] [main/DEBUG] [mixin/]: Selecting config notenoughcrashes.forge.mixins.json [12мая2024 17:30:40.957] [main/DEBUG] [mixin/]: Selecting config betterdungeons.mixins.json [12мая2024 17:30:40.960] [main/DEBUG] [mixin/]: Selecting config betterdungeons_forge.mixins.json [12мая2024 17:30:40.963] [main/DEBUG] [mixin/]: Selecting config citadel.mixins.json [12мая2024 17:30:40.967] [main/DEBUG] [mixin/]: Selecting config betterwitchhuts.mixins.json [12мая2024 17:30:40.971] [main/DEBUG] [mixin/]: Selecting config betterwitchhuts_forge.mixins.json [12мая2024 17:30:40.973] [main/DEBUG] [mixin/]: Selecting config mixins.satin.client.json [12мая2024 17:30:40.976] [main/DEBUG] [mixin/]: Selecting config majruszsdifficulty-common.mixins.json [12мая2024 17:30:40.979] [main/DEBUG] [mixin/]: Selecting config majruszsdifficulty-forge.mixins.json [12мая2024 17:30:40.982] [main/DEBUG] [mixin/]: Selecting config betteroceanmonuments.mixins.json [12мая2024 17:30:40.986] [main/DEBUG] [mixin/]: Selecting config betteroceanmonuments_forge.mixins.json [12мая2024 17:30:40.990] [main/DEBUG] [mixin/]: Selecting config nerb-common.mixins.json [12мая2024 17:30:40.993] [main/DEBUG] [mixin/]: Selecting config nerb.mixins.json [12мая2024 17:30:40.997] [main/WARN] [mixin/]: Reference map 'nerb-forge-refmap.json' for nerb.mixins.json could not be read. If this is a development environment you can ignore this message [12мая2024 17:30:40.999] [main/DEBUG] [mixin/]: Selecting config rubidium.mixins.json [12мая2024 17:30:41.064] [main/INFO] [Rubidium/]: Loaded configuration file for Rubidium: 41 options available, 3 override(s) found [12мая2024 17:30:41.073] [main/DEBUG] [mixin/]: Selecting config rubidium.compat.mixins.json [12мая2024 17:30:41.088] [main/DEBUG] [mixin/]: Selecting config waystones.mixins.json [12мая2024 17:30:41.091] [main/DEBUG] [mixin/]: Selecting config epicfight.mixins.json [12мая2024 17:30:41.094] [main/DEBUG] [mixin/]: Selecting config fallingleaves.mixins.json [12мая2024 17:30:41.097] [main/DEBUG] [mixin/]: Selecting config fastsuite.mixins.json [12мая2024 17:30:41.103] [main/DEBUG] [mixin/]: Selecting config modernfix-common.mixins.json [12мая2024 17:30:41.508] [main/WARN] [ModernFixConfig/]: ModelDataManager bugfixes have been disabled to prevent broken rendering with Rubidium installed. Please migrate to Embeddium. [12мая2024 17:30:41.522] [main/INFO] [ModernFix/]: Loaded configuration file for ModernFix 5.17.0+mc1.20.1: 78 options available, 4 override(s) found [12мая2024 17:30:41.546] [main/WARN] [ModernFix/]: Option 'mixin.perf.faster_item_rendering' overriden (by user configuration) to 'true' [12мая2024 17:30:41.546] [main/WARN] [ModernFix/]: Option 'mixin.perf.dynamic_resources' overriden (by user configuration) to 'true' [12мая2024 17:30:41.547] [main/WARN] [ModernFix/]: Option 'mixin.bugfix.model_data_manager_cme' overriden (by mods [rubidium]) to 'false' [12мая2024 17:30:41.548] [main/WARN] [ModernFix/]: Option 'mixin.perf.thread_priorities' overriden (by mods [smoothboot]) to 'false' [12мая2024 17:30:41.549] [main/INFO] [ModernFix/]: Applying Nashorn fix [12мая2024 17:30:41.641] [main/INFO] [ModernFix/]: Applied Forge config corruption patch [12мая2024 17:30:41.669] [main/DEBUG] [mixin/]: Selecting config modernfix-forge.mixins.json [12мая2024 17:30:41.672] [main/DEBUG] [mixin/]: Selecting config placebo.mixins.json [12мая2024 17:30:41.675] [main/DEBUG] [mixin/]: Selecting config crackerslib.mixins.json [12мая2024 17:30:41.677] [main/DEBUG] [mixin/]: Selecting config yungsapi.mixins.json [12мая2024 17:30:41.682] [main/DEBUG] [mixin/]: Selecting config yungsapi_forge.mixins.json [12мая2024 17:30:41.685] [main/DEBUG] [mixin/]: Selecting config make_bubbles_pop.mixins.json [12мая2024 17:30:41.692] [main/DEBUG] [mixin/]: Selecting config starlight.mixins.json [12мая2024 17:30:41.697] [main/DEBUG] [mixin/]: Selecting config takesapillage.mixins.json [12мая2024 17:30:41.700] [main/DEBUG] [mixin/]: Selecting config betterdeserttemples.mixins.json [12мая2024 17:30:41.702] [main/DEBUG] [mixin/]: Selecting config betterdeserttemples_forge.mixins.json [12мая2024 17:30:41.705] [main/DEBUG] [mixin/]: Selecting config balm.mixins.json [12мая2024 17:30:41.707] [main/DEBUG] [mixin/]: Selecting config betterfortresses.mixins.json [12мая2024 17:30:41.709] [main/DEBUG] [mixin/]: Selecting config betterfortresses_forge.mixins.json [12мая2024 17:30:41.712] [main/DEBUG] [mixin/]: Selecting config forge-sfcr-common.mixins.json [12мая2024 17:30:41.715] [main/DEBUG] [mixin/]: Selecting config entity_model_features-common.mixins.json [12мая2024 17:30:41.722] [main/DEBUG] [mixin/]: Selecting config entity_model_features.mixins.json [12мая2024 17:30:41.726] [main/DEBUG] [mixin/]: Selecting config entity_model_features-optional.mixins.json [12мая2024 17:30:41.730] [main/DEBUG] [mixin/]: Selecting config entity_texture_features-forge.mixins.json [12мая2024 17:30:41.736] [main/DEBUG] [mixin/]: Selecting config entity_texture_features-common.mixins.json [12мая2024 17:30:41.739] [main/DEBUG] [mixin/]: Selecting config alexscaves.mixins.json [12мая2024 17:30:41.742] [main/DEBUG] [mixin/]: Selecting config ambientsounds.mixins.json [12мая2024 17:30:41.745] [main/DEBUG] [mixin/]: Selecting config moonlight-common.mixins.json [12мая2024 17:30:41.748] [main/DEBUG] [mixin/]: Selecting config moonlight.mixins.json [12мая2024 17:30:41.750] [main/DEBUG] [mixin/]: Selecting config klmaster.mixins.json [12мая2024 17:30:41.753] [main/DEBUG] [mixin/]: Selecting config mixins.blur.json [12мая2024 17:30:41.755] [main/DEBUG] [mixin/]: Selecting config creativecore.mixins.json [12мая2024 17:30:41.758] [main/DEBUG] [mixin/]: Selecting config creativecore.forge.mixins.json [12мая2024 17:30:41.760] [main/DEBUG] [mixin/]: Selecting config smoothboot.mixins.json [12мая2024 17:30:41.762] [main/DEBUG] [mixin/]: Selecting config yungsbridges.mixins.json [12мая2024 17:30:41.765] [main/DEBUG] [mixin/]: Selecting config yungsbridges_forge.mixins.json [12мая2024 17:30:41.767] [main/DEBUG] [mixin/]: Selecting config fastpaintings.mixins.json [12мая2024 17:30:41.773] [main/DEBUG] [mixin/]: Selecting config fastpaintings-forge.mixins.json [12мая2024 17:30:41.777] [main/WARN] [mixin/]: Reference map 'fastpaintings-forge-refmap.json' for fastpaintings-forge.mixins.json could not be read. If this is a development environment you can ignore this message [12мая2024 17:30:41.777] [main/DEBUG] [mixin/]: Selecting config iceberg.mixins.json [12мая2024 17:30:41.781] [main/DEBUG] [mixin/]: Selecting config notenoughanimations.mixins.json [12мая2024 17:30:41.784] [main/DEBUG] [mixin/]: Selecting config mixins.oculus.json [12мая2024 17:30:41.789] [main/DEBUG] [mixin/]: Selecting config mixins.oculus.fantastic.json [12мая2024 17:30:41.793] [main/DEBUG] [mixin/]: Selecting config mixins.oculus.vertexformat.json [12мая2024 17:30:41.797] [main/DEBUG] [mixin/]: Selecting config mixins.oculus.bettermipmaps.json [12мая2024 17:30:41.802] [main/DEBUG] [mixin/]: Selecting config mixins.oculus.fixes.maxfpscrash.json [12мая2024 17:30:41.808] [main/DEBUG] [mixin/]: Selecting config oculus-batched-entity-rendering.mixins.json [12мая2024 17:30:41.816] [main/DEBUG] [mixin/]: Selecting config mixins.oculus.compat.sodium.json [12мая2024 17:30:41.821] [main/DEBUG] [mixin/]: Selecting config mixins.oculus.compat.indigo.json [12мая2024 17:30:41.827] [main/DEBUG] [mixin/]: Selecting config mixins.oculus.compat.indium.json [12мая2024 17:30:41.832] [main/DEBUG] [mixin/]: Selecting config mixins.oculus.compat.dh.json [12мая2024 17:30:41.857] [main/DEBUG] [mixin/]: Selecting config mixins.oculus.compat.pixelmon.json [12мая2024 17:30:41.868] [main/DEBUG] [mixin/]: Selecting config fastbench.mixins.json [12мая2024 17:30:41.873] [main/DEBUG] [mixin/]: Selecting config yungsextras.mixins.json [12мая2024 17:30:41.877] [main/WARN] [mixin/]: Reference map 'yungsextras.refmap.json' for yungsextras.mixins.json could not be read. If this is a development environment you can ignore this message [12мая2024 17:30:41.877] [main/DEBUG] [mixin/]: Selecting config yungsextras_forge.mixins.json [12мая2024 17:30:41.880] [main/WARN] [mixin/]: Reference map 'yungsextras.refmap.json' for yungsextras_forge.mixins.json could not be read. If this is a development environment you can ignore this message [12мая2024 17:30:41.881] [main/DEBUG] [mixin/]: Selecting config doespotatotick.mixins.json [12мая2024 17:30:41.883] [main/DEBUG] [mixin/]: Selecting config entityculling.mixins.json [12мая2024 17:30:41.885] [main/DEBUG] [mixin/]: Selecting config canary.mixins.json [12мая2024 17:30:41.990] [main/INFO] [Canary/]: Loaded configuration file for Canary: 116 options available, 0 override(s) found [12мая2024 17:30:42.007] [main/DEBUG] [mixin/]: Selecting config witherstormmod.mixins.json [12мая2024 17:30:42.010] [main/DEBUG] [mixin/]: Selecting config betterstrongholds.mixins.json [12мая2024 17:30:42.012] [main/DEBUG] [mixin/]: Selecting config betterstrongholds_forge.mixins.json [12мая2024 17:30:42.014] [main/DEBUG] [mixin/]: Selecting config immediatelyfast-forge.mixins.json [12мая2024 17:30:42.122] [main/DEBUG] [mixin/]: Selecting config immediatelyfast-common.mixins.json [12мая2024 17:30:42.126] [main/DEBUG] [mixin/]: Selecting config fastfurnace.mixins.json [12мая2024 17:30:42.131] [main/DEBUG] [mixin/]: Selecting config architectury.mixins.json [12мая2024 17:30:42.136] [main/DEBUG] [mixin/]: Selecting config architectury-common.mixins.json [12мая2024 17:30:42.142] [main/DEBUG] [mixin/]: Selecting config ferritecore.predicates.mixin.json [12мая2024 17:30:42.192] [main/DEBUG] [mixin/]: Selecting config ferritecore.fastmap.mixin.json [12мая2024 17:30:42.196] [main/DEBUG] [mixin/]: Selecting config ferritecore.mrl.mixin.json [12мая2024 17:30:42.199] [main/DEBUG] [mixin/]: Selecting config ferritecore.dedupmultipart.mixin.json [12мая2024 17:30:42.203] [main/DEBUG] [mixin/]: Selecting config ferritecore.blockstatecache.mixin.json [12мая2024 17:30:42.211] [main/DEBUG] [mixin/]: Selecting config ferritecore.dedupbakedquad.mixin.json [12мая2024 17:30:42.229] [main/DEBUG] [mixin/]: Selecting config ferritecore.threaddetec.mixin.json [12мая2024 17:30:42.232] [main/DEBUG] [mixin/]: Selecting config ferritecore.modelsides.mixin.json [12мая2024 17:30:42.236] [main/DEBUG] [mixin/]: Selecting config betterendisland.mixins.json [12мая2024 17:30:42.239] [main/DEBUG] [mixin/]: Selecting config betterendisland_forge.mixins.json [12мая2024 17:30:42.241] [main/DEBUG] [mixin/]: Selecting config majruszsenchantments-common.mixins.json [12мая2024 17:30:42.243] [main/DEBUG] [mixin/]: Selecting config forge-badoptimizations.mixins.json [12мая2024 17:30:42.265] [main/INFO] [BadOptimizations/]: Loading config from D:\.minecraft\config\badoptimizations.txt [12мая2024 17:30:42.291] [main/INFO] [BadOptimizations/]: Config version: 2 [12мая2024 17:30:42.292] [main/INFO] [BadOptimizations/]: BadOptimizations config dump: [12мая2024 17:30:42.293] [main/INFO] [BadOptimizations/]: enable_toast_optimizations: true [12мая2024 17:30:42.293] [main/INFO] [BadOptimizations/]: ignore_mod_incompatibilities: false [12мая2024 17:30:42.293] [main/INFO] [BadOptimizations/]: lightmap_time_change_needed_for_update: 80 [12мая2024 17:30:42.294] [main/INFO] [BadOptimizations/]: enable_lightmap_caching: true [12мая2024 17:30:42.294] [main/INFO] [BadOptimizations/]: enable_particle_manager_optimization: true [12мая2024 17:30:42.294] [main/INFO] [BadOptimizations/]: enable_entity_renderer_caching: true [12мая2024 17:30:42.294] [main/INFO] [BadOptimizations/]: enable_fps_string_optimization: true [12мая2024 17:30:42.294] [main/INFO] [BadOptimizations/]: log_config: true [12мая2024 17:30:42.294] [main/INFO] [BadOptimizations/]: enable_remove_redundant_fov_calculations: true [12мая2024 17:30:42.294] [main/INFO] [BadOptimizations/]: config_version: 2 [12мая2024 17:30:42.295] [main/INFO] [BadOptimizations/]: enable_sky_angle_caching_in_worldrenderer: true [12мая2024 17:30:42.295] [main/INFO] [BadOptimizations/]: enable_block_entity_renderer_caching: true [12мая2024 17:30:42.295] [main/INFO] [BadOptimizations/]: skycolor_time_change_needed_for_update: 3 [12мая2024 17:30:42.296] [main/INFO] [BadOptimizations/]: enable_entity_flag_caching: true [12мая2024 17:30:42.296] [main/INFO] [BadOptimizations/]: enable_debug_renderer_disable_if_not_needed: true [12мая2024 17:30:42.296] [main/INFO] [BadOptimizations/]: enable_sky_color_caching: true [12мая2024 17:30:42.297] [main/INFO] [BadOptimizations/]: enable_remove_tutorial_if_not_demo: true [12мая2024 17:30:42.298] [main/INFO] [BadOptimizations/]: show_f3_text: true [12мая2024 17:30:42.302] [main/DEBUG] [mixin/]: Selecting config bettermineshafts.mixins.json [12мая2024 17:30:42.308] [main/DEBUG] [mixin/]: Selecting config bettermineshafts_forge.mixins.json [12мая2024 17:30:42.312] [main/DEBUG] [mixin/]: Selecting config majruszlibrary-common.mixins.json [12мая2024 17:30:42.315] [main/DEBUG] [mixin/]: Selecting config majruszlibrary-forge.mixins.json [12мая2024 17:30:42.319] [main/DEBUG] [mixin/]: Selecting config betterjungletemples.mixins.json [12мая2024 17:30:42.322] [main/DEBUG] [mixin/]: Selecting config betterjungletemples_forge.mixins.json [12мая2024 17:30:42.324] [main/DEBUG] [mixin/]: Selecting config mixinextras.init.mixins.json [12мая2024 17:30:42.541] [main/DEBUG] [MixinExtras|Service/]: com.llamalad7.mixinextras.service.MixinExtrasServiceImpl(version=0.3.5) is taking over from null [12мая2024 17:30:42.746] [main/DEBUG] [mixin/]: Registering new injector for @Inject with org.spongepowered.asm.mixin.injection.struct.CallbackInjectionInfo [12мая2024 17:30:42.754] [main/DEBUG] [mixin/]: Registering new injector for @ModifyArg with org.spongepowered.asm.mixin.injection.struct.ModifyArgInjectionInfo [12мая2024 17:30:42.759] [main/DEBUG] [mixin/]: Registering new injector for @ModifyArgs with org.spongepowered.asm.mixin.injection.struct.ModifyArgsInjectionInfo [12мая2024 17:30:42.765] [main/DEBUG] [mixin/]: Registering new injector for @Redirect with org.spongepowered.asm.mixin.injection.struct.RedirectInjectionInfo [12мая2024 17:30:42.772] [main/DEBUG] [mixin/]: Registering new injector for @ModifyVariable with org.spongepowered.asm.mixin.injection.struct.ModifyVariableInjectionInfo [12мая2024 17:30:42.779] [main/DEBUG] [mixin/]: Registering new injector for @ModifyConstant with org.spongepowered.asm.mixin.injection.struct.ModifyConstantInjectionInfo [12мая2024 17:30:42.827] [main/DEBUG] [mixin/]: Selecting config sound_physics_remastered.mixins.json [12мая2024 17:30:42.831] [main/DEBUG] [mixin/]: Preparing dynamiclightsreforged.mixins.json (21) [12мая2024 17:30:43.270] [main/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer/COREMOD]: Transforming net/minecraft/world/entity/EntityType [12мая2024 17:30:44.458] [main/DEBUG] [mixin/]: Preparing saturn.mixins.json (29) [12мая2024 17:30:44.502] [main/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer/COREMOD]: Transforming net/minecraft/world/entity/monster/Strider [12мая2024 17:30:44.904] [main/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer/COREMOD]: Transforming net/minecraft/world/level/biome/Biome [12мая2024 17:30:44.962] [main/DEBUG] [mixin/]: Preparing notenoughcrashes.mixins.json (6) [12мая2024 17:30:44.974] [main/DEBUG] [mixin/]: Preparing notenoughcrashes.forge.mixins.json (2) [12мая2024 17:30:44.979] [main/DEBUG] [mixin/]: Preparing betterdungeons.mixins.json (8) [12мая2024 17:30:44.991] [main/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer/COREMOD]: Transforming net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate [12мая2024 17:30:45.314] [main/DEBUG] [mixin/]: Preparing betterdungeons_forge.mixins.json (0) [12мая2024 17:30:45.315] [main/DEBUG] [mixin/]: Preparing citadel.mixins.json (18) [12мая2024 17:30:45.420] [main/DEBUG] [mixin/]: Preparing betterwitchhuts.mixins.json (5) [12мая2024 17:30:45.424] [main/DEBUG] [mixin/]: Preparing betterwitchhuts_forge.mixins.json (0) [12мая2024 17:30:45.424] [main/DEBUG] [mixin/]: Preparing mixins.satin.client.json (16) [12мая2024 17:30:45.475] [main/DEBUG] [mixin/]: Preparing majruszsdifficulty-common.mixins.json (7) [12мая2024 17:30:45.502] [main/DEBUG] [mixin/]: Preparing majruszsdifficulty-forge.mixins.json (1) [12мая2024 17:30:45.515] [main/DEBUG] [mixin/]: Preparing betteroceanmonuments.mixins.json (8) [12мая2024 17:30:45.532] [main/DEBUG] [mixin/]: Preparing betteroceanmonuments_forge.mixins.json (0) [12мая2024 17:30:45.532] [main/DEBUG] [mixin/]: Preparing nerb-common.mixins.json (4) [12мая2024 17:30:45.545] [main/DEBUG] [mixin/]: Preparing nerb.mixins.json (0) [12мая2024 17:30:45.545] [main/DEBUG] [mixin/]: Preparing rubidium.mixins.json (74) [12мая2024 17:30:45.580] [main/WARN] [Rubidium/]: Force-disabling mixin 'features.render.entity.CuboidMixin' as rule 'mixin.features.render.entity' (added by mods [oculus]) disables it and children [12мая2024 17:30:45.583] [main/WARN] [Rubidium/]: Force-disabling mixin 'features.render.entity.ModelPartMixin' as rule 'mixin.features.render.entity' (added by mods [oculus]) disables it and children [12мая2024 17:30:45.585] [main/WARN] [Rubidium/]: Force-disabling mixin 'features.render.entity.cull.EntityRendererMixin' as rule 'mixin.features.render.entity' (added by mods [oculus]) disables it and children [12мая2024 17:30:45.587] [main/WARN] [Rubidium/]: Force-disabling mixin 'features.render.entity.shadows.EntityRenderDispatcherMixin' as rule 'mixin.features.render.entity' (added by mods [oculus]) disables it and children [12мая2024 17:30:45.589] [main/WARN] [Rubidium/]: Force-disabling mixin 'features.render.gui.font.GlyphRendererMixin' as rule 'mixin.features.render.gui.font' (added by mods [oculus]) disables it and children [12мая2024 17:30:45.612] [main/WARN] [Rubidium/]: Force-disabling mixin 'features.render.world.sky.BackgroundRendererMixin' as rule 'mixin.features.render.world.sky' (added by mods [oculus]) disables it and children [12мая2024 17:30:45.614] [main/WARN] [Rubidium/]: Force-disabling mixin 'features.render.world.sky.ClientWorldMixin' as rule 'mixin.features.render.world.sky' (added by mods [oculus]) disables it and children [12мая2024 17:30:45.616] [main/WARN] [Rubidium/]: Force-disabling mixin 'features.render.world.sky.WorldRendererMixin' as rule 'mixin.features.render.world.sky' (added by mods [oculus]) disables it and children [12мая2024 17:30:45.797] [main/DEBUG] [mixin/]: @Mixin target net/minecraft/client/multiplayer/ClientChunkCache$Storage is public in rubidium.mixins.json:features.world.storage.ClientChunkMapMixin and should be specified in value [12мая2024 17:30:45.828] [main/DEBUG] [mixin/]: Preparing rubidium.compat.mixins.json (1) [12мая2024 17:30:45.838] [main/DEBUG] [mixin/]: Preparing waystones.mixins.json (3) [12мая2024 17:30:45.846] [main/DEBUG] [mixin/]: Preparing epicfight.mixins.json (14) [12мая2024 17:30:45.955] [main/DEBUG] [mixin/]: Preparing fallingleaves.mixins.json (5) [12мая2024 17:30:45.975] [main/DEBUG] [mixin/]: Preparing fastsuite.mixins.json (3) [12мая2024 17:30:45.981] [main/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer/COREMOD]: Transforming net/minecraft/world/item/ItemStack [12мая2024 17:30:46.028] [main/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer/COREMOD]: Transforming getEnchantmentLevel with desc (Lnet/minecraft/world/item/enchantment/Enchantment;)I [12мая2024 17:30:46.039] [main/INFO] [net.minecraftforge.coremod.CoreMod.placebo/COREMODLOG]: Patching IForgeItemStack#getEnchantmentLevel [12мая2024 17:30:46.090] [main/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer/COREMOD]: Transforming getAllEnchantments with desc ()Ljava/util/Map; [12мая2024 17:30:46.100] [main/INFO] [net.minecraftforge.coremod.CoreMod.placebo/COREMODLOG]: Patching IForgeItemStack#getEnchantmentLevel [12мая2024 17:30:46.115] [main/DEBUG] [mixin/]: Preparing modernfix-common.mixins.json (82) [12мая2024 17:30:46.130] [main/DEBUG] [ModernFix/]: No rules matched mixin 'perf.compact_mojang_registries.MappedRegistryMixin', treating as foreign and disabling! [12мая2024 17:30:46.476] [main/DEBUG] [mixin/]: Preparing modernfix-forge.mixins.json (46) [12мая2024 17:30:46.657] [main/DEBUG] [mixin/]: Preparing placebo.mixins.json (6) [12мая2024 17:30:46.674] [main/DEBUG] [mixin/]: Preparing crackerslib.mixins.json (2) [12мая2024 17:30:46.675] [main/DEBUG] [mixin/]: Preparing yungsapi.mixins.json (11) [12мая2024 17:30:46.682] [main/DEBUG] [yungsapi/]: Loaded com.yungnickyoung.minecraft.yungsapi.services.ForgePlatformHelper@4a9bce99 for service interface com.yungnickyoung.minecraft.yungsapi.services.IPlatformHelper [12мая2024 17:30:46.684] [main/DEBUG] [yungsapi/]: Loaded com.yungnickyoung.minecraft.yungsapi.services.ForgeAutoRegisterHelper@59a2d756 for service interface com.yungnickyoung.minecraft.yungsapi.services.IAutoRegisterHelper [12мая2024 17:30:46.686] [main/DEBUG] [yungsapi/]: Loaded com.yungnickyoung.minecraft.yungsapi.services.ForgeBlockEntityTypeHelper@295b07e0 for service interface com.yungnickyoung.minecraft.yungsapi.services.IBlockEntityTypeHelper [12мая2024 17:30:46.705] [main/DEBUG] [mixin/]: Preparing yungsapi_forge.mixins.json (1) [12мая2024 17:30:46.706] [main/DEBUG] [mixin/]: Preparing make_bubbles_pop.mixins.json (6) [12мая2024 17:30:46.724] [main/DEBUG] [mixin/]: Preparing starlight.mixins.json (13) [12мая2024 17:30:46.759] [main/DEBUG] [mixin/]: Preparing takesapillage.mixins.json (3) [12мая2024 17:30:46.766] [main/DEBUG] [mixin/]: Preparing betterdeserttemples.mixins.json (9) [12мая2024 17:30:46.773] [main/DEBUG] [mixin/]: Preparing betterdeserttemples_forge.mixins.json (0) [12мая2024 17:30:46.773] [main/DEBUG] [mixin/]: Preparing balm.mixins.json (17) [12мая2024 17:30:46.796] [main/DEBUG] [mixin/]: Preparing betterfortresses.mixins.json (6) [12мая2024 17:30:46.799] [main/DEBUG] [mixin/]: Preparing betterfortresses_forge.mixins.json (0) [12мая2024 17:30:46.799] [main/DEBUG] [mixin/]: Preparing forge-sfcr-common.mixins.json (5) [12мая2024 17:30:46.812] [main/DEBUG] [mixin/]: Preparing entity_model_features-common.mixins.json (41) [12мая2024 17:30:46.893] [main/DEBUG] [mixin/]: Preparing entity_model_features.mixins.json (0) [12мая2024 17:30:46.893] [main/DEBUG] [mixin/]: Preparing entity_texture_features-forge.mixins.json (1) [12мая2024 17:30:46.897] [main/DEBUG] [mixin/]: Preparing entity_texture_features-common.mixins.json (45) [12мая2024 17:30:46.958] [main/WARN] [mixin/]: Error loading class: net/coderbot/batchedentityrendering/impl/FullyBufferedMultiBufferSource (java.lang.ClassNotFoundException: net.coderbot.batchedentityrendering.impl.FullyBufferedMultiBufferSource) [12мая2024 17:30:46.959] [main/DEBUG] [mixin/]: Skipping virtual target net.coderbot.batchedentityrendering.impl.FullyBufferedMultiBufferSource for entity_texture_features-common.mixins.json:mods.iris.MixinFullyBufferedMultiBufferSource [12мая2024 17:30:46.962] [main/WARN] [mixin/]: Error loading class: net/coderbot/iris/layer/InnerWrappedRenderType (java.lang.ClassNotFoundException: net.coderbot.iris.layer.InnerWrappedRenderType) [12мая2024 17:30:46.963] [main/DEBUG] [mixin/]: Skipping virtual target net.coderbot.iris.layer.InnerWrappedRenderType for entity_texture_features-common.mixins.json:mods.iris.MixinInnerWrappedRenderType [12мая2024 17:30:46.966] [main/WARN] [mixin/]: Error loading class: net/coderbot/iris/layer/OuterWrappedRenderType (java.lang.ClassNotFoundException: net.coderbot.iris.layer.OuterWrappedRenderType) [12мая2024 17:30:46.967] [main/DEBUG] [mixin/]: Skipping virtual target net.coderbot.iris.layer.OuterWrappedRenderType for entity_texture_features-common.mixins.json:mods.iris.MixinOuterWrappedRenderType [12мая2024 17:30:46.974] [main/WARN] [mixin/]: Error loading class: dev/tr7zw/skinlayers/render/CustomizableModelPart (java.lang.ClassNotFoundException: dev.tr7zw.skinlayers.render.CustomizableModelPart) [12мая2024 17:30:46.975] [main/DEBUG] [mixin/]: Skipping virtual target dev.tr7zw.skinlayers.render.CustomizableModelPart for entity_texture_features-common.mixins.json:mods.skin_layers.MixinCustomizableModelPart [12мая2024 17:30:46.979] [main/WARN] [mixin/]: Error loading class: me/jellysquid/mods/sodium/client/render/vertex/buffer/SodiumBufferBuilder (java.lang.ClassNotFoundException: me.jellysquid.mods.sodium.client.render.vertex.buffer.SodiumBufferBuilder) [12мая2024 17:30:46.979] [main/DEBUG] [mixin/]: Skipping virtual target me.jellysquid.mods.sodium.client.render.vertex.buffer.SodiumBufferBuilder for entity_texture_features-common.mixins.json:mods.sodium.MixinSodiumBufferBuilder [12мая2024 17:30:46.981] [main/WARN] [mixin/]: Error loading class: me/jellysquid/mods/sodium/client/render/immediate/model/EntityRenderer (java.lang.ClassNotFoundException: me.jellysquid.mods.sodium.client.render.immediate.model.EntityRenderer) [12мая2024 17:30:46.982] [main/DEBUG] [mixin/]: Skipping virtual target me.jellysquid.mods.sodium.client.render.immediate.model.EntityRenderer for entity_texture_features-common.mixins.json:mods.sodium.MixinModelPartSodium [12мая2024 17:30:46.982] [main/DEBUG] [mixin/]: Preparing alexscaves.mixins.json (43) [12мая2024 17:30:47.006] [main/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer/COREMOD]: Transforming net/minecraft/world/level/NaturalSpawner [12мая2024 17:30:47.166] [main/DEBUG] [mixin/]: Preparing ambientsounds.mixins.json (2) [12мая2024 17:30:47.168] [main/DEBUG] [mixin/]: Preparing moonlight-common.mixins.json (30) [12мая2024 17:30:47.214] [main/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer/COREMOD]: Transforming net/minecraft/world/entity/npc/Villager [12мая2024 17:30:47.530] [main/DEBUG] [mixin/]: @Mixin target net/minecraft/client/gui/MapRenderer$MapInstance is public in moonlight-common.mixins.json:MapInstanceMixin and should be specified in value [12мая2024 17:30:47.532] [main/DEBUG] [mixin/]: Preparing moonlight.mixins.json (10) [12мая2024 17:30:47.565] [main/DEBUG] [mixin/]: Preparing klmaster.mixins.json (12) [12мая2024 17:30:47.596] [main/DEBUG] [mixin/]: Preparing mixins.blur.json (1) [12мая2024 17:30:47.597] [main/DEBUG] [mixin/]: Preparing creativecore.mixins.json (8) [12мая2024 17:30:47.630] [main/DEBUG] [mixin/]: Preparing creativecore.forge.mixins.json (3) [12мая2024 17:30:47.635] [main/DEBUG] [mixin/]: Preparing smoothboot.mixins.json (5) [12мая2024 17:30:47.649] [main/DEBUG] [mixin/]: Preparing yungsbridges.mixins.json (1) [12мая2024 17:30:47.649] [main/DEBUG] [mixin/]: Preparing yungsbridges_forge.mixins.json (0) [12мая2024 17:30:47.650] [main/DEBUG] [mixin/]: Preparing fastpaintings.mixins.json (4) [12мая2024 17:30:47.655] [main/DEBUG] [mixin/]: Preparing fastpaintings-forge.mixins.json (0) [12мая2024 17:30:47.655] [main/DEBUG] [mixin/]: Preparing iceberg.mixins.json (7) [12мая2024 17:30:47.665] [main/DEBUG] [mixin/]: Preparing notenoughanimations.mixins.json (7) [12мая2024 17:30:47.672] [main/DEBUG] [mixin/]: Preparing mixins.oculus.json (86) [12мая2024 17:30:47.833] [main/DEBUG] [mixin/]: Preparing mixins.oculus.fantastic.json (5) [12мая2024 17:30:47.841] [main/DEBUG] [mixin/]: Preparing mixins.oculus.vertexformat.json (8) [12мая2024 17:30:47.855] [main/DEBUG] [mixin/]: @Mixin target net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk$RebuildTask is public in mixins.oculus.vertexformat.json:block_rendering.MixinChunkRebuildTask and should be specified in value [12мая2024 17:30:47.855] [main/DEBUG] [mixin/]: Preparing mixins.oculus.bettermipmaps.json (0) [12мая2024 17:30:47.855] [main/DEBUG] [mixin/]: Preparing mixins.oculus.fixes.maxfpscrash.json (1) [12мая2024 17:30:47.856] [main/DEBUG] [mixin/]: Preparing oculus-batched-entity-rendering.mixins.json (17) [12мая2024 17:30:47.883] [main/DEBUG] [mixin/]: Preparing mixins.oculus.compat.sodium.json (49) [12мая2024 17:30:47.972] [main/WARN] [mixin/]: Error loading class: me/jellysquid/mods/sodium/client/render/vertex/buffer/SodiumBufferBuilder (java.lang.ClassNotFoundException: me.jellysquid.mods.sodium.client.render.vertex.buffer.SodiumBufferBuilder) [12мая2024 17:30:47.972] [main/WARN] [mixin/]: @Mixin target me.jellysquid.mods.sodium.client.render.vertex.buffer.SodiumBufferBuilder was not found mixins.oculus.compat.sodium.json:vertex_format.MixinSodiumBufferBuilder [12мая2024 17:30:47.982] [main/DEBUG] [mixin/]: Preparing mixins.oculus.compat.indigo.json (1) [12мая2024 17:30:47.986] [main/DEBUG] [mixin/]: Preparing mixins.oculus.compat.indium.json (1) [12мая2024 17:30:47.987] [main/DEBUG] [mixin/]: Preparing mixins.oculus.compat.dh.json (4) [12мая2024 17:30:47.989] [main/DEBUG] [mixin/]: Preparing mixins.oculus.compat.pixelmon.json (1) [12мая2024 17:30:47.990] [main/DEBUG] [mixin/]: Preparing fastbench.mixins.json (4) [12мая2024 17:30:47.996] [main/WARN] [mixin/]: Error loading class: vazkii/quark/addons/oddities/inventory/BackpackMenu (java.lang.ClassNotFoundException: vazkii.quark.addons.oddities.inventory.BackpackMenu) [12мая2024 17:30:47.997] [main/DEBUG] [mixin/]: Skipping virtual target vazkii.quark.addons.oddities.inventory.BackpackMenu for fastbench.mixins.json:MixinBackpackMenu [12мая2024 17:30:48.003] [main/DEBUG] [mixin/]: Preparing yungsextras.mixins.json (0) [12мая2024 17:30:48.003] [main/DEBUG] [mixin/]: Preparing yungsextras_forge.mixins.json (0) [12мая2024 17:30:48.003] [main/DEBUG] [mixin/]: Preparing doespotatotick.mixins.json (3) [12мая2024 17:30:48.008] [main/WARN] [mixin/]: Error loading class: dev/ftb/mods/ftbchunks/data/ClaimedChunkManagerImpl (java.lang.ClassNotFoundException: dev.ftb.mods.ftbchunks.data.ClaimedChunkManagerImpl) [12мая2024 17:30:48.009] [main/WARN] [mixin/]: @Mixin target dev.ftb.mods.ftbchunks.data.ClaimedChunkManagerImpl was not found doespotatotick.mixins.json:ClaimedChunkManagerAccessor [12мая2024 17:30:48.009] [main/DEBUG] [mixin/]: Preparing entityculling.mixins.json (6) [12мая2024 17:30:48.014] [main/DEBUG] [mixin/]: Preparing canary.mixins.json (203) [12мая2024 17:30:48.249] [main/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer/COREMOD]: Transforming net/minecraft/world/entity/raid/Raid [12мая2024 17:30:48.582] [main/DEBUG] [mixin/]: Preparing witherstormmod.mixins.json (58) [12мая2024 17:30:48.611] [main/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer/COREMOD]: Transforming net/minecraft/world/entity/monster/ZombieVillager [12мая2024 17:30:48.693] [main/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer/COREMOD]: Transforming net/minecraft/world/entity/monster/Zombie [12мая2024 17:30:48.860] [main/DEBUG] [mixin/]: Preparing betterstrongholds.mixins.json (2) [12мая2024 17:30:48.869] [main/DEBUG] [mixin/]: Preparing betterstrongholds_forge.mixins.json (0) [12мая2024 17:30:48.869] [main/DEBUG] [mixin/]: Preparing immediatelyfast-forge.mixins.json (6) [12мая2024 17:30:48.874] [main/DEBUG] [mixin/]: Preparing immediatelyfast-common.mixins.json (34) [12мая2024 17:30:48.939] [main/DEBUG] [mixin/]: Preparing fastfurnace.mixins.json (1) [12мая2024 17:30:48.940] [main/DEBUG] [mixin/]: Preparing architectury.mixins.json (9) [12мая2024 17:30:48.959] [main/DEBUG] [mixin/]: Preparing architectury-common.mixins.json (10) [12мая2024 17:30:48.965] [main/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer/COREMOD]: Transforming net/minecraft/world/item/BucketItem [12мая2024 17:30:48.999] [main/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer/COREMOD]: Transforming net/minecraft/world/level/block/LiquidBlock [12мая2024 17:30:49.006] [main/DEBUG] [mixin/]: Preparing ferritecore.predicates.mixin.json (3) [12мая2024 17:30:49.018] [main/DEBUG] [mixin/]: Preparing ferritecore.fastmap.mixin.json (1) [12мая2024 17:30:49.024] [main/DEBUG] [mixin/]: Preparing ferritecore.mrl.mixin.json (2) [12мая2024 17:30:49.025] [main/DEBUG] [mixin/]: Preparing ferritecore.dedupmultipart.mixin.json (2) [12мая2024 17:30:49.027] [main/DEBUG] [mixin/]: Preparing ferritecore.blockstatecache.mixin.json (8) [12мая2024 17:30:49.037] [main/DEBUG] [mixin/]: @Mixin target net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase$Cache is public in ferritecore.blockstatecache.mixin.json:BlockStateCacheMixin and should be specified in value [12мая2024 17:30:49.044] [main/DEBUG] [mixin/]: Preparing ferritecore.dedupbakedquad.mixin.json (2) [12мая2024 17:30:49.050] [main/DEBUG] [mixin/]: Preparing ferritecore.threaddetec.mixin.json (1) [12мая2024 17:30:49.051] [main/DEBUG] [mixin/]: Preparing ferritecore.modelsides.mixin.json (1) [12мая2024 17:30:49.053] [main/DEBUG] [mixin/]: Preparing betterendisland.mixins.json (9) [12мая2024 17:30:49.113] [main/DEBUG] [mixin/]: Preparing betterendisland_forge.mixins.json (0) [12мая2024 17:30:49.113] [main/DEBUG] [mixin/]: Preparing majruszsenchantments-common.mixins.json (4) [12мая2024 17:30:49.118] [main/DEBUG] [mixin/]: Preparing forge-badoptimizations.mixins.json (26) [12мая2024 17:30:49.306] [main/DEBUG] [mixin/]: Preparing bettermineshafts.mixins.json (4) [12мая2024 17:30:49.311] [main/DEBUG] [mixin/]: Preparing bettermineshafts_forge.mixins.json (0) [12мая2024 17:30:49.311] [main/DEBUG] [mixin/]: Preparing majruszlibrary-common.mixins.json (58) [12мая2024 17:30:49.417] [main/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer/COREMOD]: Transforming net/minecraft/world/level/levelgen/PhantomSpawner [12мая2024 17:30:49.448] [main/DEBUG] [mixin/]: Preparing majruszlibrary-forge.mixins.json (4) [12мая2024 17:30:49.459] [main/WARN] [mixin/]: Error loading class: com/teammetallurgy/aquaculture/entity/AquaFishingBobberEntity (java.lang.ClassNotFoundException: com.teammetallurgy.aquaculture.entity.AquaFishingBobberEntity) [12мая2024 17:30:49.459] [main/DEBUG] [mixin/]: Skipping virtual target com.teammetallurgy.aquaculture.entity.AquaFishingBobberEntity for majruszlibrary-forge.mixins.json:MixinAquaFishingBobberEntity [12мая2024 17:30:49.460] [main/DEBUG] [mixin/]: Preparing betterjungletemples.mixins.json (8) [12мая2024 17:30:49.476] [main/DEBUG] [mixin/]: Preparing betterjungletemples_forge.mixins.json (0) [12мая2024 17:30:49.476] [main/DEBUG] [mixin/]: Preparing mixinextras.init.mixins.json (0) [12мая2024 17:30:49.476] [main/DEBUG] [mixin/]: Preparing sound_physics_remastered.mixins.json (9) [12мая2024 17:30:49.491] [main/DEBUG] [mixin/]: Preparing entity_model_features-optional.mixins.json (1) [12мая2024 17:30:50.020] [main/DEBUG] [mixin/]: Inner class org/embeddedt/modernfix/forge/mixin/perf/dynamic_resources/ModelBakeryMixin$1 in org/embeddedt/modernfix/forge/mixin/perf/dynamic_resources/ModelBakeryMixin on net/minecraft/client/resources/model/ModelBakery gets unique name net/minecraft/client/resources/model/ModelBakery$Anonymous$4d6f4e8f25494d1cbe538f4f0cbb25c9 [12мая2024 17:30:50.045] [main/DEBUG] [mixin/]: Inner class traben/entity_model_features/mixin/MixinBlockEntity$1 in traben/entity_model_features/mixin/MixinBlockEntity on net/minecraft/world/level/block/entity/BlockEntity gets unique name net/minecraft/world/level/block/entity/BlockEntity$Anonymous$015503ec05fc468c8e930fe3a48d1206 [12мая2024 17:30:50.049] [main/DEBUG] [mixin/]: Inner class traben/entity_model_features/mixin/MixinEntity$1 in traben/entity_model_features/mixin/MixinEntity on net/minecraft/world/entity/Entity gets unique name net/minecraft/world/entity/Entity$Anonymous$3b50edb2b1384d30b5650d839c02a7c2 [12мая2024 17:30:50.127] [main/DEBUG] [mixin/]: Inner class net/mehvahdjukaar/moonlight/core/mixins/forge/ItemMixin$1 in net/mehvahdjukaar/moonlight/core/mixins/forge/ItemMixin on net/minecraft/world/item/Item gets unique name net/minecraft/world/item/Item$Anonymous$3217c5475e3c45deb09f4ccf88fb67f5 [12мая2024 17:30:50.261] [main/DEBUG] [mixin/]: Inner class com/abdelaziz/canary/mixin/ai/poi/SectionStorageMixin$1 in com/abdelaziz/canary/mixin/ai/poi/SectionStorageMixin on net/minecraft/world/level/chunk/storage/SectionStorage gets unique name net/minecraft/world/level/chunk/storage/SectionStorage$Anonymous$06c55816baff4cc98223b90738368a5b [12мая2024 17:30:50.275] [main/DEBUG] [mixin/]: Inner class com/abdelaziz/canary/mixin/chunk/palette/PalettedContainerMixin$1 in com/abdelaziz/canary/mixin/chunk/palette/PalettedContainerMixin on net/minecraft/world/level/chunk/PalettedContainer$Strategy gets unique name net/minecraft/world/level/chunk/PalettedContainer$Strategy$Anonymous$18169d2797f74e17ac864fe7e5d462aa [12мая2024 17:30:50.276] [main/DEBUG] [mixin/]: Inner class com/abdelaziz/canary/mixin/chunk/palette/PalettedContainerMixin$2 in com/abdelaziz/canary/mixin/chunk/palette/PalettedContainerMixin on net/minecraft/world/level/chunk/PalettedContainer$Strategy gets unique name net/minecraft/world/level/chunk/PalettedContainer$Strategy$Anonymous$cab86b5b9b9f443a8c7be4f5a31d70d8 [12мая2024 17:30:50.394] [main/DEBUG] [mixin/]: Inner class forge/me/thosea/badoptimizations/mixin/entitydata/MixinDataTracker$1 in forge/me/thosea/badoptimizations/mixin/entitydata/MixinDataTracker on net/minecraft/network/syncher/SynchedEntityData gets unique name net/minecraft/network/syncher/SynchedEntityData$Anonymous$a480530703914b8b95cd4c16cd4b82f7 [12мая2024 17:30:50.394] [main/DEBUG] [mixin/]: Inner class forge/me/thosea/badoptimizations/mixin/entitydata/MixinDataTracker$2 in forge/me/thosea/badoptimizations/mixin/entitydata/MixinDataTracker on net/minecraft/network/syncher/SynchedEntityData gets unique name net/minecraft/network/syncher/SynchedEntityData$Anonymous$09841db86839449398fbeddbc55948d9 [12мая2024 17:30:50.408] [main/DEBUG] [mixin/]: Inner class com/majruszlibrary/mixin/MixinEntity$1 in com/majruszlibrary/mixin/MixinEntity on net/minecraft/world/entity/Entity gets unique name net/minecraft/world/entity/Entity$Anonymous$c00a008654a0441db2a9ef0a74e210a4 [12мая2024 17:30:50.408] [main/DEBUG] [mixin/]: Inner class com/majruszlibrary/mixin/MixinEntity$Config in com/majruszlibrary/mixin/MixinEntity on net/minecraft/world/entity/Entity gets unique name net/minecraft/world/entity/Entity$Config$caefde32a7594616a6e9c7f8b31bf5e7 [12мая2024 17:30:50.430] [main/DEBUG] [mixin/]: Prepared 1186 mixins in 9,630 sec (8,1ms avg) (0ms load, 0ms transform, 0ms plugin) [12мая2024 17:30:50.453] [main/INFO] [MixinExtras|Service/]: Initializing MixinExtras via com.llamalad7.mixinextras.service.MixinExtrasServiceImpl(version=0.3.5). [12мая2024 17:30:50.458] [main/DEBUG] [mixin/]: Registering new injector for @SugarWrapper with com.llamalad7.mixinextras.sugar.impl.SugarWrapperInjectionInfo [12мая2024 17:30:50.460] [main/DEBUG] [mixin/]: Registering new injector for @FactoryRedirectWrapper with com.llamalad7.mixinextras.wrapper.factory.FactoryRedirectWrapperInjectionInfo [12мая2024 17:30:50.499] [main/DEBUG] [mixin/]: Mixing texture.MixinAbstractTexture from mixins.oculus.json into net.minecraft.client.renderer.texture.AbstractTexture [12мая2024 17:30:50.509] [main/DEBUG] [mixin/]: mixins.oculus.json:texture.MixinAbstractTexture: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_8 supports class version 52) [12мая2024 17:30:50.687] [main/DEBUG] [mixin/]: Mixing texture.SimpleTextureAccessor from mixins.oculus.json into net.minecraft.client.renderer.texture.SimpleTexture [12мая2024 17:30:50.688] [main/DEBUG] [mixin/]: mixins.oculus.json:texture.SimpleTextureAccessor: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_8 supports class version 52) [12мая2024 17:30:50.731] [main/DEBUG] [mixin/]: Mixing features.render.immediate.matrix_stack.VertexConsumerMixin from rubidium.mixins.json into com.mojang.blaze3d.vertex.VertexConsumer [12мая2024 17:30:50.901] [main/DEBUG] [mixin/]: Mixing hud_batching.consumer.MixinDrawContext from immediatelyfast-forge.mixins.json into net.minecraft.client.gui.GuiGraphics [12мая2024 17:30:50.907] [main/DEBUG] [mixin/]: Mixing hud_batching.consumer.MixinDrawContext from immediatelyfast-common.mixins.json into net.minecraft.client.gui.GuiGraphics [12мая2024 17:30:50.975] [main/DEBUG] [mixin/]: Mixing features.textures.animations.tracking.DrawContextMixin from rubidium.mixins.json into net.minecraft.client.gui.GuiGraphics [12мая2024 17:30:50.993] [main/DEBUG] [mixin/]: Mixing GuiGraphicsMixin from iceberg.mixins.json into net.minecraft.client.gui.GuiGraphics [12мая2024 17:30:51.026] [main/DEBUG] [mixin/]: Mixing MixinGuiGraphics from majruszlibrary-common.mixins.json into net.minecraft.client.gui.GuiGraphics [12мая2024 17:30:51.265] [main/DEBUG] [mixin/]: Mixing client.MinecraftMixin from alexscaves.mixins.json into net.minecraft.client.Minecraft [12мая2024 17:30:51.316] [main/DEBUG] [mixin/]: Mixing MinecraftClientMixin from dynamiclightsreforged.mixins.json into net.minecraft.client.Minecraft [12мая2024 17:30:51.317] [main/DEBUG] [mixin/]: dynamiclightsreforged.mixins.json:MinecraftClientMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_8 supports class version 52) [12мая2024 17:30:51.324] [main/DEBUG] [mixin/]: Mixing client.MixinMinecraftClient from notenoughcrashes.mixins.json into net.minecraft.client.Minecraft [12мая2024 17:30:51.359] [main/DEBUG] [mixin/]: Mixing event.MinecraftClientMixin from mixins.satin.client.json into net.minecraft.client.Minecraft [12мая2024 17:30:51.360] [main/DEBUG] [mixin/]: mixins.satin.client.json:event.MinecraftClientMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) [12мая2024 17:30:51.366] [main/DEBUG] [mixin/]: Mixing core.MinecraftClientMixin from rubidium.mixins.json into net.minecraft.client.Minecraft [12мая2024 17:30:51.367] [main/DEBUG] [mixin/]: Renaming synthetic method lambda$postInit$0(Lnet/minecraft/client/gui/screens/Screen;)Lnet/minecraft/client/gui/screens/Screen; to md359651$lambda$postInit$0$0 in rubidium.mixins.json:core.MinecraftClientMixin [12мая2024 17:30:51.438] [main/DEBUG] [mixin/]: Mixing MinecraftClientMixin from fallingleaves.mixins.json into net.minecraft.client.Minecraft [12мая2024 17:30:51.441] [main/DEBUG] [mixin/]: Mixing feature.measure_time.MinecraftMixin from modernfix-common.mixins.json into net.minecraft.client.Minecraft [12мая2024 17:30:51.451] [main/DEBUG] [mixin/]: Mixing perf.dedicated_reload_executor.MinecraftMixin from modernfix-common.mixins.json into net.minecraft.client.Minecraft [12мая2024 17:30:51.458] [main/DEBUG] [mixin/]: Mixing perf.blast_search_trees.MinecraftMixin from modernfix-common.mixins.json into net.minecraft.client.Minecraft [12мая2024 17:30:51.462] [main/DEBUG] [mixin/]: Renaming synthetic method lambda$replaceSearchTrees$2(Lorg/embeddedt/modernfix/searchtree/SearchTreeProviderRegistry$Provider;Ljava/util/List;)Lnet/minecraft/client/searchtree/RefreshableSearchTree; to md359651$lambda$replaceSearchTrees$2$1 in modernfix-common.mixins.json:perf.blast_search_trees.MinecraftMixin [12мая2024 17:30:51.463] [main/DEBUG] [mixin/]: Renaming synthetic method lambda$replaceSearchTrees$1(Lorg/embeddedt/modernfix/searchtree/SearchTreeProviderRegistry$Provider;Ljava/util/List;)Lnet/minecraft/client/searchtree/RefreshableSearchTree; to md359651$lambda$replaceSearchTrees$1$2 in modernfix-common.mixins.json:perf.blast_search_trees.MinecraftMixin [12мая2024 17:30:51.463] [main/DEBUG] [mixin/]: Renaming synthetic method lambda$replaceSearchTrees$0(Lorg/embeddedt/modernfix/searchtree/SearchTreeProviderRegistry$Provider;Ljava/util/List;)Lnet/minecraft/client/searchtree/RefreshableSearchTree; to md359651$lambda$replaceSearchTrees$0$3 in modernfix-common.mixins.json:perf.blast_search_trees.MinecraftMixin [12мая2024 17:30:51.501] [main/DEBUG] [mixin/]: Mixing bugfix.concurrency.MinecraftMixin from modernfix-common.mixins.json into net.minecraft.client.Minecraft [12мая2024 17:30:51.502] [main/DEBUG] [mixin/]: Discarding sythetic bridge method synthetic in m_6937_ because existing method in modernfix-common.mixins.json:bugfix.concurrency.MinecraftMixin is compatible [12мая2024 17:30:51.513] [main/DEBUG] [mixin/]: Mixing bugfix.world_leaks.MinecraftMixin from modernfix-common.mixins.json into net.minecraft.client.Minecraft [12мая2024 17:30:51.530] [main/DEBUG] [mixin/]: Mixing feature.measure_time.MinecraftMixin_Forge from modernfix-forge.mixins.json into net.minecraft.client.Minecraft [12мая2024 17:30:51.532] [main/DEBUG] [mixin/]: Mixing MinecraftMixin from balm.mixins.json into net.minecraft.client.Minecraft [12мая2024 17:30:51.536] [main/DEBUG] [mixin/]: Mixing MixinResourceReload from entity_model_features-common.mixins.json into net.minecraft.client.Minecraft [12мая2024 17:30:51.545] [main/DEBUG] [mixin/]: Mixing accessor.MinecraftClientAccessor from entity_model_features-common.mixins.json into net.minecraft.client.Minecraft [12мая2024 17:30:51.548] [main/DEBUG] [mixin/]: Mixing reloading.MixinMinecraftClient from entity_texture_features-common.mixins.json into net.minecraft.client.Minecraft [12мая2024 17:30:51.559] [main/DEBUG] [mixin/]: Mixing MinecraftMixin from iceberg.mixins.json into net.minecraft.client.Minecraft [12мая2024 17:30:51.607] [main/DEBUG] [mixin/]: Mixing MixinMinecraft_PipelineManagement from mixins.oculus.json into net.minecraft.client.Minecraft [12мая2024 17:30:51.615] [main/DEBUG] [mixin/]: mixins.oculus.json:MixinMinecraft_PipelineManagement: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_8 supports class version 52) [12мая2024 17:30:51.629] [main/DEBUG] [mixin/]: Mixing MixinMinecraft from witherstormmod.mixins.json into net.minecraft.client.Minecraft [12мая2024 17:30:51.630] [main/DEBUG] [mixin/]: Mixing core.MixinMinecraftClient from immediatelyfast-common.mixins.json into net.minecraft.client.Minecraft [12мая2024 17:30:51.633] [main/DEBUG] [mixin/]: Mixing MixinMinecraft from architectury.mixins.json into net.minecraft.client.Minecraft [12мая2024 17:30:51.645] [main/DEBUG] [mixin/]: Mixing MixinMinecraft from majruszlibrary-common.mixins.json into net.minecraft.client.Minecraft [12мая2024 17:30:51.647] [main/DEBUG] [mixin/]: Mixing fps_string.MixinClient from forge-badoptimizations.mixins.json into net.minecraft.client.Minecraft [12мая2024 17:30:52.128] [main/DEBUG] [mixin/]: Mixing perf.fix_loop_spin_waiting.BlockableEventLoopMixin from modernfix-common.mixins.json into net.minecraft.util.thread.BlockableEventLoop [12мая2024 17:30:52.162] [main/DEBUG] [mixin/]: Mixing client.MixinMain from notenoughcrashes.forge.mixins.json into net.minecraft.client.main.Main [12мая2024 17:30:52.162] [main/DEBUG] [mixin/]: notenoughcrashes.forge.mixins.json:client.MixinMain: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_8 supports class version 52) [12мая2024 17:30:52.165] [main/DEBUG] [mixin/]: Mixing client.MainMixin from smoothboot.mixins.json into net.minecraft.client.main.Main [12мая2024 17:30:52.191] [main/DEBUG] [Smooth Boot (Reloaded)/]: Config path: D:\.minecraft/config/smoothboot.json [12мая2024 17:30:52.196] [main/DEBUG] [mixin/]: Mixing math.sine_lut.MthMixin from canary.mixins.json into net.minecraft.util.Mth [12мая2024 17:30:52.208] [main/DEBUG] [mixin/]: Mixing UtilMixin from smoothboot.mixins.json into net.minecraft.Util [12мая2024 17:30:52.209] [main/DEBUG] [mixin/]: Renaming synthetic method lambda$replaceIoWorker$1(Ljava/lang/Runnable;)Ljava/lang/Thread; to md359651$lambda$replaceIoWorker$1$0 in smoothboot.mixins.json:UtilMixin [12мая2024 17:30:52.209] [main/DEBUG] [mixin/]: Renaming synthetic method lambda$replaceWorker$0(Ljava/lang/String;Ljava/util/concurrent/ForkJoinPool;)Ljava/util/concurrent/ForkJoinWorkerThread; to md359651$lambda$replaceWorker$0$1 in smoothboot.mixins.json:UtilMixin [12мая2024 17:30:52.242] [main/DEBUG] [mixin/]: Mixing SuppressLogMixin from yungsbridges.mixins.json into net.minecraft.Util [12мая2024 17:30:52.249] [main/DEBUG] [mixin/]: Mixing SuppressLogMixin from bettermineshafts.mixins.json into net.minecraft.Util [12мая2024 17:30:52.454] [main/DEBUG] [Smooth Boot (Reloaded)/]: Config: com.abdelaziz.smoothboot.config.SmoothBootConfig@7acb5200 [12мая2024 17:30:52.454] [main/INFO] [Smooth Boot (Reloaded)/]: Smooth Boot (Reloaded) config initialized [12мая2024 17:30:52.454] [main/DEBUG] [Smooth Boot (Reloaded)/]: Initialized client game thread [12мая2024 17:30:52.683] [main/DEBUG] [mixin/]: Mixing perf.tag_id_caching.TagOrElementLocationMixin from modernfix-forge.mixins.json into net.minecraft.util.ExtraCodecs$TagOrElementLocation [12мая2024 17:30:52.974] [main/DEBUG] [io.netty.util.internal.logging.InternalLoggerFactory/]: Using SLF4J as the default logging framework [12мая2024 17:30:52.984] [main/DEBUG] [io.netty.util.ResourceLeakDetector/]: -Dio.netty.leakDetection.level: simple [12мая2024 17:30:52.985] [main/DEBUG] [io.netty.util.ResourceLeakDetector/]: -Dio.netty.leakDetection.targetRecords: 4 [12мая2024 17:30:53.199] [main/DEBUG] [mixin/]: Mixing TextColorMixin from iceberg.mixins.json into net.minecraft.network.chat.TextColor [12мая2024 17:30:53.283] [main/DEBUG] [mixin/]: Mixing MixinIdentifier from entity_texture_features-common.mixins.json into net.minecraft.resources.ResourceLocation [12мая2024 17:30:53.306] [main/DEBUG] [mixin/]: Mixing ResourceLocationAccess from ferritecore.mrl.mixin.json into net.minecraft.resources.ResourceLocation [12мая2024 17:30:53.307] [main/DEBUG] [mixin/]: Mixing texture.MixinResourceLocation from mixins.oculus.json into net.minecraft.resources.ResourceLocation [12мая2024 17:30:53.308] [main/DEBUG] [mixin/]: mixins.oculus.json:texture.MixinResourceLocation: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_8 supports class version 52) [12мая2024 17:30:53.362] [main/DEBUG] [mixin/]: Mixing ScreenMixin from nerb-common.mixins.json into net.minecraft.client.gui.screens.Screen [12мая2024 17:30:53.366] [main/DEBUG] [mixin/]: Mixing ScreenAccessor from balm.mixins.json into net.minecraft.client.gui.screens.Screen [12мая2024 17:30:53.367] [main/DEBUG] [mixin/]: Mixing MixinScreen from mixins.blur.json into net.minecraft.client.gui.screens.Screen [12мая2024 17:30:53.739] [main/DEBUG] [mixin/]: Mixing MixinCrashReport from notenoughcrashes.mixins.json into net.minecraft.CrashReport [12мая2024 17:30:53.740] [main/DEBUG] [mixin/]: Renaming synthetic method lambda$beforeSystemDetailsAreWritten$1()Ljava/lang/String; to md359651$lambda$beforeSystemDetailsAreWritten$1$0 in notenoughcrashes.mixins.json:MixinCrashReport [12мая2024 17:30:53.740] [main/DEBUG] [mixin/]: Renaming synthetic method lambda$beforeSystemDetailsAreWritten$0(Lfudge/notenoughcrashes/platform/CommonModMetadata;)Ljava/lang/String; to md359651$lambda$beforeSystemDetailsAreWritten$0$1 in notenoughcrashes.mixins.json:MixinCrashReport [12мая2024 17:30:53.840] [main/DEBUG] [mixin/]: Mixing MixinSystemReport from mixins.oculus.json into net.minecraft.SystemReport [12мая2024 17:30:53.841] [main/DEBUG] [mixin/]: mixins.oculus.json:MixinSystemReport: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_8 supports class version 52) [12мая2024 17:30:53.841] [main/DEBUG] [mixin/]: Renaming synthetic method lambda$fillSystemDetails$1()Ljava/lang/String; to md359651$lambda$fillSystemDetails$1$0 in mixins.oculus.json:MixinSystemReport [12мая2024 17:30:53.841] [main/DEBUG] [mixin/]: Renaming synthetic method lambda$fillSystemDetails$0(Ljava/lang/StringBuilder;Lnet/irisshaders/iris/shaderpack/ShaderPack;)V to md359651$lambda$fillSystemDetails$0$1 in mixins.oculus.json:MixinSystemReport [12мая2024 17:30:53.981] [main/DEBUG] [oshi.util.FileUtil/]: No oshi.properties file found from ClassLoader cpw.mods.modlauncher.TransformingClassLoader@286855ea [12мая2024 17:30:55.292] [main/DEBUG] [oshi.util.FileUtil/]: No oshi.architecture.properties file found from ClassLoader cpw.mods.modlauncher.TransformingClassLoader@286855ea [12мая2024 17:30:56.093] [main/DEBUG] [mixin/]: Mixing feature.measure_time.BootstrapMixin from modernfix-common.mixins.json into net.minecraft.server.Bootstrap [12мая2024 17:30:56.097] [main/DEBUG] [mixin/]: Mixing core.BootstrapMixin from modernfix-forge.mixins.json into net.minecraft.server.Bootstrap [12мая2024 17:30:56.107] [main/DEBUG] [mixin/]: Mixing core.BootstrapClientMixin from modernfix-forge.mixins.json into net.minecraft.server.Bootstrap [12мая2024 17:30:56.154] [pool-4-thread-1/INFO] [net.minecraft.server.Bootstrap/]: ModernFix reached bootstrap stage (45.71 s after launch) [12мая2024 17:30:56.199] [pool-4-thread-1/DEBUG] [mixin/]: Mixing perf.mojang_registry_size.MappedRegistryMixin from modernfix-common.mixins.json into net.minecraft.core.MappedRegistry [12мая2024 17:30:56.240] [pool-4-thread-1/DEBUG] [mixin/]: Mixing perf.mojang_registry_size.ResourceKeyMixin from modernfix-common.mixins.json into net.minecraft.resources.ResourceKey [12мая2024 17:30:56.241] [pool-4-thread-1/DEBUG] [mixin/]: Renaming synthetic method lambda$createEfficient$0(Lnet/minecraft/resources/ResourceLocation;)Ljava/util/Map; to md359651$lambda$createEfficient$0$0 in modernfix-common.mixins.json:perf.mojang_registry_size.ResourceKeyMixin [12мая2024 17:30:56.360] [pool-4-thread-1/DEBUG] [mixin/]: Mixing inject.MixinGameEvent from architectury-common.mixins.json into net.minecraft.world.level.gameevent.GameEvent [12мая2024 17:30:56.397] [pool-4-thread-1/DEBUG] [mixin/]: Mixing SoundEventMixin from sound_physics_remastered.mixins.json into net.minecraft.sounds.SoundEvent [12мая2024 17:30:56.439] [pool-4-thread-1/DEBUG] [mixin/]: Mixing perf.reduce_blockstate_cache_rebuilds.GameDataMixin from modernfix-forge.mixins.json into net.minecraftforge.registries.GameData [12мая2024 17:30:56.478] [pool-4-thread-1/DEBUG] [mixin/]: Mixing perf.forge_registry_alloc.ForgeRegistryMixin from modernfix-forge.mixins.json into net.minecraftforge.registries.ForgeRegistry [12мая2024 17:30:56.486] [pool-4-thread-1/DEBUG] [mixin/]: Mixing perf.fast_registry_validation.ForgeRegistryMixin from modernfix-forge.mixins.json into net.minecraftforge.registries.ForgeRegistry [12мая2024 17:30:56.495] [pool-4-thread-1/WARN] [mixin/]: @Final field delegatesByName:Ljava/util/Map; in modernfix-forge.mixins.json:perf.forge_registry_alloc.ForgeRegistryMixin should be final [12мая2024 17:30:56.496] [pool-4-thread-1/WARN] [mixin/]: @Final field delegatesByValue:Ljava/util/Map; in modernfix-forge.mixins.json:perf.forge_registry_alloc.ForgeRegistryMixin should be final [12мая2024 17:30:56.542] [pool-4-thread-1/DEBUG] [mixin/]: Mixing perf.reduce_blockstate_cache_rebuilds.BlockCallbacksMixin from modernfix-forge.mixins.json into net.minecraftforge.registries.GameData$BlockCallbacks [12мая2024 17:30:56.571] [pool-4-thread-1/DEBUG] [mixin/]: Mixing perf.forge_registry_alloc.DelegateHolderMixin from modernfix-forge.mixins.json into net.minecraft.world.level.block.Block [12мая2024 17:30:56.572] [pool-4-thread-1/DEBUG] [mixin/]: Mixing shapes.blockstate_cache.BlockMixin from canary.mixins.json into net.minecraft.world.level.block.Block [12мая2024 17:30:56.573] [pool-4-thread-1/DEBUG] [mixin/]: Renaming synthetic method lambda$static$0(Lnet/minecraft/world/phys/shapes/VoxelShape;)Z to md359651$lambda$static$0$0 in canary.mixins.json:shapes.blockstate_cache.BlockMixin [12мая2024 17:30:56.576] [pool-4-thread-1/DEBUG] [mixin/]: Mixing inject.MixinBlock from architectury-common.mixins.json into net.minecraft.world.level.block.Block [12мая2024 17:30:56.671] [pool-4-thread-1/DEBUG] [mixin/]: Mixing math.fast_blockpos.BlockPosMixin from canary.mixins.json into net.minecraft.core.BlockPos [12мая2024 17:30:56.696] [pool-4-thread-1/DEBUG] [mixin/]: Mixing bugfix.chunk_deadlock.BlockStateBaseMixin from modernfix-common.mixins.json into net.minecraft.world.level.block.state.BlockBehaviour$BlockStateBase [12мая2024 17:30:56.698] [pool-4-thread-1/DEBUG] [mixin/]: Mixing MixinBlockStateBehavior from mixins.oculus.json into net.minecraft.world.level.block.state.BlockBehaviour$BlockStateBase [12мая2024 17:30:56.698] [pool-4-thread-1/DEBUG] [mixin/]: mixins.oculus.json:MixinBlockStateBehavior: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_8 supports class version 52) [12мая2024 17:30:56.700] [pool-4-thread-1/DEBUG] [mixin/]: Mixing perf.reduce_blockstate_cache_rebuilds.BlockStateBaseMixin from modernfix-common.mixins.json into net.minecraft.world.level.block.state.BlockBehaviour$BlockStateBase [12мая2024 17:30:56.706] [pool-4-thread-1/DEBUG] [mixin/]: Mixing common.blockstate.BlockStateBaseMixin from starlight.mixins.json into net.minecraft.world.level.block.state.BlockBehaviour$BlockStateBase [12мая2024 17:30:56.709] [pool-4-thread-1/DEBUG] [mixin/]: Mixing ai.pathing.BlockStateBaseMixin from canary.mixins.json into net.minecraft.world.level.block.state.BlockBehaviour$BlockStateBase [12мая2024 17:30:56.724] [pool-4-thread-1/DEBUG] [mixin/]: Mixing BlockStateBaseMixin from ferritecore.blockstatecache.mixin.json into net.minecraft.world.level.block.state.BlockBehaviour$BlockStateBase [12мая2024 17:30:56.780] [pool-4-thread-1/INFO] [ModernFix/]: Injecting BlockStateBase cache population hook into getNeighborPathNodeType from com.abdelaziz.canary.mixin.ai.pathing.BlockStateBaseMixin [12мая2024 17:30:56.785] [pool-4-thread-1/INFO] [ModernFix/]: Injecting BlockStateBase cache population hook into getPathNodeType from com.abdelaziz.canary.mixin.ai.pathing.BlockStateBaseMixin [12мая2024 17:30:56.785] [pool-4-thread-1/INFO] [ModernFix/]: Injecting BlockStateBase cache population hook into getOpacityIfCached from ca.spottedleaf.starlight.mixin.common.blockstate.BlockStateBaseMixin [12мая2024 17:30:56.786] [pool-4-thread-1/INFO] [ModernFix/]: Injecting BlockStateBase cache population hook into isConditionallyFullOpaque from ca.spottedleaf.starlight.mixin.common.blockstate.BlockStateBaseMixin [12мая2024 17:30:56.806] [pool-4-thread-1/DEBUG] [mixin/]: Mixing FastMapStateHolderMixin from ferritecore.fastmap.mixin.json into net.minecraft.world.level.block.state.StateHolder [12мая2024 17:30:56.831] [pool-4-thread-1/DEBUG] [mixin/]: Mixing perf.model_optimizations.PropertyMixin from modernfix-common.mixins.json into net.minecraft.world.level.block.state.properties.Property [12мая2024 17:30:56.851] [pool-4-thread-1/DEBUG] [mixin/]: Mixing entitydata.MixinEntity from forge-badoptimizations.mixins.json into net.minecraft.world.entity.Entity [12мая2024 17:30:56.865] [pool-4-thread-1/DEBUG] [mixin/]: Mixing lightsource.EntityMixin from dynamiclightsreforged.mixins.json into net.minecraft.world.entity.Entity [12мая2024 17:30:56.866] [pool-4-thread-1/DEBUG] [mixin/]: dynamiclightsreforged.mixins.json:lightsource.EntityMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_8 supports class version 52) [12мая2024 17:30:56.891] [pool-4-thread-1/DEBUG] [mixin/]: Mixing EntityMixin from balm.mixins.json into net.minecraft.world.entity.Entity [12мая2024 17:30:56.894] [pool-4-thread-1/DEBUG] [mixin/]: Mixing MixinEntity from entity_model_features-common.mixins.json into net.minecraft.world.entity.Entity [12мая2024 17:30:56.916] [pool-4-thread-1/DEBUG] [mixin/]: Mixing entity.misc.MixinEntity from entity_texture_features-common.mixins.json into net.minecraft.world.entity.Entity [12мая2024 17:30:56.921] [pool-4-thread-1/DEBUG] [mixin/]: Mixing EntityMixin from alexscaves.mixins.json into net.minecraft.world.entity.Entity [12мая2024 17:30:56.954] [pool-4-thread-1/DEBUG] [mixin/]: Mixing glowing.EntityMixin from klmaster.mixins.json into net.minecraft.world.entity.Entity [12мая2024 17:30:56.955] [pool-4-thread-1/DEBUG] [mixin/]: klmaster.mixins.json:glowing.EntityMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_8 supports class version 52) [12мая2024 17:30:56.958] [pool-4-thread-1/DEBUG] [mixin/]: Mixing CullableMixin from entityculling.mixins.json into net.minecraft.world.entity.Entity [12мая2024 17:30:56.958] [pool-4-thread-1/DEBUG] [mixin/]: entityculling.mixins.json:CullableMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) [12мая2024 17:30:56.962] [pool-4-thread-1/DEBUG] [mixin/]: Mixing alloc.deep_passengers.EntityMixin from canary.mixins.json into net.minecraft.world.entity.Entity [12мая2024 17:30:56.969] [pool-4-thread-1/DEBUG] [mixin/]: Mixing collections.fluid_submersion.EntityMixin from canary.mixins.json into net.minecraft.world.entity.Entity [12мая2024 17:30:56.975] [pool-4-thread-1/DEBUG] [mixin/]: Mixing entity.collisions.movement.EntityMixin from canary.mixins.json into net.minecraft.world.entity.Entity [12мая2024 17:30:57.000] [pool-4-thread-1/DEBUG] [mixin/]: Mixing entity.collisions.suffocation.EntityMixin from canary.mixins.json into net.minecraft.world.entity.Entity [12мая2024 17:30:57.005] [pool-4-thread-1/DEBUG] [mixin/]: Mixing entity.collisions.unpushable_cramming.EntityMixin from canary.mixins.json into net.minecraft.world.entity.Entity [12мая2024 17:30:57.012] [pool-4-thread-1/DEBUG] [mixin/]: Mixing entity.skip_fire_check.EntityMixin from canary.mixins.json into net.minecraft.world.entity.Entity [12мая2024 17:30:57.027] [pool-4-thread-1/DEBUG] [mixin/]: Mixing MixinEntity from majruszlibrary-common.mixins.json into net.minecraft.world.entity.Entity [12мая2024 17:30:57.037] [pool-4-thread-1/DEBUG] [mixin/]: Mixing EntityMixin from sound_physics_remastered.mixins.json into net.minecraft.world.entity.Entity [12мая2024 17:30:57.039] [pool-4-thread-1/DEBUG] [mixin/]: Mixing renderer.entity.MixinEntity from forge-badoptimizations.mixins.json into net.minecraft.world.entity.Entity [12мая2024 17:30:57.040] [pool-4-thread-1/DEBUG] [mixin/]: Mixing MixinEntity from notenoughcrashes.mixins.json into net.minecraft.world.entity.Entity [12мая2024 17:30:57.041] [pool-4-thread-1/DEBUG] [mixin/]: Renaming synthetic method lambda$onPopulateCrashReport$0()Ljava/lang/String; to md359651$lambda$onPopulateCrashReport$0$0 in notenoughcrashes.mixins.json:MixinEntity [12мая2024 17:30:57.432] [pool-4-thread-1/DEBUG] [mixin/]: Mixing entitydata.MixinLivingEntity from forge-badoptimizations.mixins.json into net.minecraft.world.entity.LivingEntity [12мая2024 17:30:57.443] [pool-4-thread-1/DEBUG] [mixin/]: Mixing lightsource.LivingEntityMixin from dynamiclightsreforged.mixins.json into net.minecraft.world.entity.LivingEntity [12мая2024 17:30:57.444] [pool-4-thread-1/DEBUG] [mixin/]: dynamiclightsreforged.mixins.json:lightsource.LivingEntityMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_8 supports class version 52) [12мая2024 17:30:57.448] [pool-4-thread-1/DEBUG] [mixin/]: Mixing allocations.fall_sounds.LivingEntityMixin from saturn.mixins.json into net.minecraft.world.entity.LivingEntity [12мая2024 17:30:57.449] [pool-4-thread-1/DEBUG] [mixin/]: Mixing LivingEntityMixin from citadel.mixins.json into net.minecraft.world.entity.LivingEntity [12мая2024 17:30:57.453] [pool-4-thread-1/DEBUG] [mixin/]: Mixing MixinLivingEntity from epicfight.mixins.json into net.minecraft.world.entity.LivingEntity [12мая2024 17:30:57.464] [pool-4-thread-1/DEBUG] [mixin/]: Mixing perf.forge_cap_retrieval.LivingEntityMixin from modernfix-forge.mixins.json into net.minecraft.world.entity.LivingEntity [12мая2024 17:30:57.466] [pool-4-thread-1/DEBUG] [mixin/]: Mixing PharaohKilledMixin from betterdeserttemples.mixins.json into net.minecraft.world.entity.LivingEntity [12мая2024 17:30:57.468] [pool-4-thread-1/DEBUG] [mixin/]: Renaming synthetic method lambda$betterdeserttemples_pharaohDie$0(Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/server/level/ServerPlayer;)V to md359651$lambda$betterdeserttemples_pharaohDie$0$0 in betterdeserttemples.mixins.json:PharaohKilledMixin [12мая2024 17:30:57.503] [pool-4-thread-1/DEBUG] [mixin/]: Mixing LivingEntityMixin from alexscaves.mixins.json into net.minecraft.world.entity.LivingEntity [12мая2024 17:30:57.511] [pool-4-thread-1/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer/COREMOD]: Transforming net/minecraft/world/effect/MobEffectInstance [12мая2024 17:30:57.528] [pool-4-thread-1/DEBUG] [mixin/]: Mixing LivingEntityMixin from notenoughanimations.mixins.json into net.minecraft.world.entity.LivingEntity [12мая2024 17:30:57.528] [pool-4-thread-1/DEBUG] [mixin/]: notenoughanimations.mixins.json:LivingEntityMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_8 supports class version 52) [12мая2024 17:30:57.530] [pool-4-thread-1/DEBUG] [mixin/]: Mixing alloc.enum_values.living_entity.LivingEntityMixin from canary.mixins.json into net.minecraft.world.entity.LivingEntity [12мая2024 17:30:57.531] [pool-4-thread-1/DEBUG] [mixin/]: Mixing entity.collisions.unpushable_cramming.LivingEntityMixin from canary.mixins.json into net.minecraft.world.entity.LivingEntity [12мая2024 17:30:57.537] [pool-4-thread-1/DEBUG] [mixin/]: Mixing entity.fast_elytra_check.LivingEntityMixin from canary.mixins.json into net.minecraft.world.entity.LivingEntity [12мая2024 17:30:57.537] [pool-4-thread-1/DEBUG] [mixin/]: Mixing entity.fast_hand_swing.LivingEntityMixin from canary.mixins.json into net.minecraft.world.entity.LivingEntity [12мая2024 17:30:57.538] [pool-4-thread-1/DEBUG] [mixin/]: Mixing entity.fast_powder_snow_check.LivingEntityMixin from canary.mixins.json into net.minecraft.world.entity.LivingEntity [12мая2024 17:30:57.539] [pool-4-thread-1/DEBUG] [mixin/]: Mixing entity.skip_equipment_change_check.LivingEntityMixin from canary.mixins.json into net.minecraft.world.entity.LivingEntity [12мая2024 17:30:57.541] [pool-4-thread-1/DEBUG] [mixin/]: Renaming synthetic method lambda$static$0(Lnet/minecraft/world/item/ItemStack;)Z to md359651$lambda$static$0$1 in canary.mixins.json:entity.skip_equipment_change_check.LivingEntityMixin [12мая2024 17:30:57.543] [pool-4-thread-1/DEBUG] [mixin/]: Mixing MixinLivingEntity from witherstormmod.mixins.json into net.minecraft.world.entity.LivingEntity [12мая2024 17:30:57.544] [pool-4-thread-1/DEBUG] [mixin/]: Renaming synthetic method lambda$witherstormmod$preventDrops_dropAllDeathLoot$0(Lorg/apache/commons/lang3/mutable/MutableBoolean;Lnet/minecraft/world/phys/Vec3;)V to md359651$lambda$witherstormmod$preventDrops_dropAllDeathLoot$0$2 in witherstormmod.mixins.json:MixinLivingEntity [12мая2024 17:30:57.549] [pool-4-thread-1/DEBUG] [mixin/]: Mixing MixinLivingEntityAccessor from witherstormmod.mixins.json into net.minecraft.world.entity.LivingEntity [12мая2024 17:30:57.550] [pool-4-thread-1/DEBUG] [mixin/]: Mixing MixinLivingEntity from majruszlibrary-common.mixins.json into net.minecraft.world.entity.LivingEntity [12мая2024 17:30:57.573] [pool-4-thread-1/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer/COREMOD]: Transforming getEnchantmentLevel with desc (Lnet/minecraft/world/item/enchantment/Enchantment;)I [12мая2024 17:30:57.575] [pool-4-thread-1/INFO] [net.minecraftforge.coremod.CoreMod.placebo/COREMODLOG]: Patching IForgeItemStack#getEnchantmentLevel [12мая2024 17:30:57.576] [pool-4-thread-1/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer/COREMOD]: Transforming getAllEnchantments with desc ()Ljava/util/Map; [12мая2024 17:30:57.577] [pool-4-thread-1/INFO] [net.minecraftforge.coremod.CoreMod.placebo/COREMODLOG]: Patching IForgeItemStack#getEnchantmentLevel [12мая2024 17:30:57.795] [pool-4-thread-1/DEBUG] [mixin/]: Mixing perf.model_optimizations.BooleanPropertyMixin from modernfix-common.mixins.json into net.minecraft.world.level.block.state.properties.BooleanProperty [12мая2024 17:30:57.806] [pool-4-thread-1/DEBUG] [mixin/]: Mixing WorldMixin from dynamiclightsreforged.mixins.json into net.minecraft.world.level.Level [12мая2024 17:30:57.806] [pool-4-thread-1/DEBUG] [mixin/]: dynamiclightsreforged.mixins.json:WorldMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_8 supports class version 52) [12мая2024 17:30:57.807] [pool-4-thread-1/DEBUG] [mixin/]: Mixing LevelMixin from citadel.mixins.json into net.minecraft.world.level.Level [12мая2024 17:30:57.811] [pool-4-thread-1/DEBUG] [mixin/]: Mixing common.world.LevelMixin from starlight.mixins.json into net.minecraft.world.level.Level [12мая2024 17:30:57.811] [pool-4-thread-1/DEBUG] [mixin/]: Mixing alloc.chunk_random.LevelMixin from canary.mixins.json into net.minecraft.world.level.Level [12мая2024 17:30:57.813] [pool-4-thread-1/DEBUG] [mixin/]: Mixing entity.collisions.intersection.LevelMixin from canary.mixins.json into net.minecraft.world.level.Level [12мая2024 17:30:57.816] [pool-4-thread-1/DEBUG] [mixin/]: Mixing util.block_entity_retrieval.LevelMixin from canary.mixins.json into net.minecraft.world.level.Level [12мая2024 17:30:57.821] [pool-4-thread-1/DEBUG] [mixin/]: Mixing world.block_entity_ticking.sleeping.LevelMixin from canary.mixins.json into net.minecraft.world.level.Level [12мая2024 17:30:57.822] [pool-4-thread-1/DEBUG] [mixin/]: Mixing world.chunk_access.LevelMixin from canary.mixins.json into net.minecraft.world.level.Level [12мая2024 17:30:57.824] [pool-4-thread-1/DEBUG] [mixin/]: Mixing world.inline_block_access.LevelMixin from canary.mixins.json into net.minecraft.world.level.Level [12мая2024 17:30:57.830] [pool-4-thread-1/DEBUG] [mixin/]: Mixing world.inline_height.LevelMixin from canary.mixins.json into net.minecraft.world.level.Level [12мая2024 17:30:57.835] [pool-4-thread-1/DEBUG] [mixin/]: Mixing WorldMixin from doespotatotick.mixins.json into net.minecraft.world.level.Level [12мая2024 17:30:57.876] [pool-4-thread-1/DEBUG] [mixin/]: Mixing util.chunk_access.LevelReaderMixin from canary.mixins.json into net.minecraft.world.level.LevelReader [12мая2024 17:30:57.907] [pool-4-thread-1/DEBUG] [mixin/]: Mixing ServerLevelMixin from betterendisland.mixins.json into net.minecraft.server.level.ServerLevel [12мая2024 17:30:58.030] [pool-4-thread-1/DEBUG] [mixin/]: Mixing ServerLevelMixin from citadel.mixins.json into net.minecraft.server.level.ServerLevel [12мая2024 17:30:58.035] [pool-4-thread-1/DEBUG] [mixin/]: Mixing perf.cache_strongholds.ServerLevelMixin from modernfix-common.mixins.json into net.minecraft.server.level.ServerLevel [12мая2024 17:30:58.040] [pool-4-thread-1/DEBUG] [mixin/]: Mixing bugfix.chunk_deadlock.ServerLevelMixin from modernfix-common.mixins.json into net.minecraft.server.level.ServerLevel [12мая2024 17:30:58.041] [pool-4-thread-1/DEBUG] [mixin/]: Mixing common.world.ServerWorldMixin from starlight.mixins.json into net.minecraft.server.level.ServerLevel [12мая2024 17:30:58.047] [pool-4-thread-1/DEBUG] [mixin/]: Mixing ServerLevelMixin from betterdeserttemples.mixins.json into net.minecraft.server.level.ServerLevel [12мая2024 17:30:58.048] [pool-4-thread-1/DEBUG] [mixin/]: Mixing ServerWorldAccessor from forge-sfcr-common.mixins.json into net.minecraft.server.level.ServerLevel [12мая2024 17:30:58.049] [pool-4-thread-1/DEBUG] [mixin/]: forge-sfcr-common.mixins.json:ServerWorldAccessor: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_8 supports class version 52) [12мая2024 17:30:58.049] [pool-4-thread-1/DEBUG] [mixin/]: Mixing alloc.chunk_random.ServerLevelMixin from canary.mixins.json into net.minecraft.server.level.ServerLevel [12мая2024 17:30:58.050] [pool-4-thread-1/DEBUG] [mixin/]: Mixing chunk.replace_streams.ServerLevelMixin from canary.mixins.json into net.minecraft.server.level.ServerLevel [12мая2024 17:30:58.055] [pool-4-thread-1/DEBUG] [mixin/]: Mixing entity.inactive_navigations.ServerLevelMixin from canary.mixins.json into net.minecraft.server.level.ServerLevel [12мая2024 17:30:58.061] [pool-4-thread-1/DEBUG] [mixin/]: Mixing profiler.ServerLevelMixin from canary.mixins.json into net.minecraft.server.level.ServerLevel [12мая2024 17:30:58.062] [pool-4-thread-1/DEBUG] [mixin/]: Mixing util.accessors.ServerLevelAccessor from canary.mixins.json into net.minecraft.server.level.ServerLevel [12мая2024 17:30:58.062] [pool-4-thread-1/DEBUG] [mixin/]: Mixing world.block_entity_ticking.sleeping.ServerLevelMixin from canary.mixins.json into net.minecraft.server.level.ServerLevel [12мая2024 17:30:58.063] [pool-4-thread-1/DEBUG] [mixin/]: Mixing IMixinServerLevel from majruszlibrary-common.mixins.json into net.minecraft.server.level.ServerLevel [12мая2024 17:30:58.063] [pool-4-thread-1/DEBUG] [mixin/]: Mixing MixinServerLevel from majruszlibrary-common.mixins.json into net.minecraft.server.level.ServerLevel [12мая2024 17:30:58.065] [pool-4-thread-1/DEBUG] [mixin/]: Mixing EndergeticExpansionMixins from betterendisland.mixins.json into net.minecraft.server.level.ServerLevel [12мая2024 17:30:58.150] [pool-4-thread-1/DEBUG] [mixin/]: Unexpected: Registered method getEntityManager()Lnet/minecraft/world/level/entity/PersistentEntitySectionManager; in net.minecraft.server.level.ServerLevel was not merged [12мая2024 17:30:58.214] [pool-4-thread-1/DEBUG] [mixin/]: Mixing MixinItemEntity from witherstormmod.mixins.json into net.minecraft.world.entity.item.ItemEntity [12мая2024 17:30:58.247] [pool-4-thread-1/DEBUG] [mixin/]: Mixing entitydata.MixinPlayer from forge-badoptimizations.mixins.json into net.minecraft.world.entity.player.Player [12мая2024 17:30:58.256] [pool-4-thread-1/DEBUG] [mixin/]: Mixing lightsource.PlayerEntityMixin from dynamiclightsreforged.mixins.json into net.minecraft.world.entity.player.Player [12мая2024 17:30:58.256] [pool-4-thread-1/DEBUG] [mixin/]: dynamiclightsreforged.mixins.json:lightsource.PlayerEntityMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_8 supports class version 52) [12мая2024 17:30:58.260] [pool-4-thread-1/DEBUG] [mixin/]: Mixing allocations.fall_sounds.PlayerMixin from saturn.mixins.json into net.minecraft.world.entity.player.Player [12мая2024 17:30:58.262] [pool-4-thread-1/DEBUG] [mixin/]: Mixing allocations.item_cooldowns.PlayerMixin from saturn.mixins.json into net.minecraft.world.entity.player.Player [12мая2024 17:30:58.266] [pool-4-thread-1/DEBUG] [mixin/]: Mixing MixinPlayer from epicfight.mixins.json into net.minecraft.world.entity.player.Player [12мая2024 17:30:58.270] [pool-4-thread-1/DEBUG] [mixin/]: Mixing MixinPlayerEntity from entity_model_features-common.mixins.json into net.minecraft.world.entity.player.Player [12мая2024 17:30:58.274] [pool-4-thread-1/DEBUG] [mixin/]: Mixing entity.misc.MixinPlayerEntity from entity_texture_features-common.mixins.json into net.minecraft.world.entity.player.Player [12мая2024 17:30:58.277] [pool-4-thread-1/DEBUG] [mixin/]: Mixing icon.PlayerMixin from klmaster.mixins.json into net.minecraft.world.entity.player.Player [12мая2024 17:30:58.277] [pool-4-thread-1/DEBUG] [mixin/]: klmaster.mixins.json:icon.PlayerMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_8 supports class version 52) [12мая2024 17:30:58.289] [pool-4-thread-1/DEBUG] [mixin/]: Mixing PlayerEntityMixin from notenoughanimations.mixins.json into net.minecraft.world.entity.player.Player [12мая2024 17:30:58.289] [pool-4-thread-1/DEBUG] [mixin/]: notenoughanimations.mixins.json:PlayerEntityMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_8 supports class version 52) [12мая2024 17:30:58.291] [pool-4-thread-1/DEBUG] [mixin/]: Renaming synthetic method lambda$getData$0(Ljava/util/function/Supplier;Ldev/tr7zw/notenoughanimations/versionless/animations/DataHolder;)Ljava/lang/Object; to md359651$lambda$getData$0$0 in notenoughanimations.mixins.json:PlayerEntityMixin [12мая2024 17:30:58.296] [pool-4-thread-1/DEBUG] [mixin/]: Mixing MixinPlayer from witherstormmod.mixins.json into net.minecraft.world.entity.player.Player [12мая2024 17:30:58.300] [pool-4-thread-1/DEBUG] [mixin/]: Mixing MixinPlayer from majruszlibrary-common.mixins.json into net.minecraft.world.entity.player.Player [12мая2024 17:30:58.622] [pool-4-thread-1/DEBUG] [mixin/]: Mixing perf.fast_forge_dummies.NamespacedHolderHelperMixin from modernfix-forge.mixins.json into net.minecraftforge.registries.NamespacedWrapper [12мая2024 17:30:58.683] [pool-4-thread-1/DEBUG] [mixin/]: Mixing inject.MixinFluid from architectury-common.mixins.json into net.minecraft.world.level.material.Fluid [12мая2024 17:30:58.692] [pool-4-thread-1/DEBUG] [mixin/]: Mixing ItemMixin from iceberg.mixins.json into net.minecraft.world.item.Item [12мая2024 17:30:58.712] [pool-4-thread-1/DEBUG] [mixin/]: Mixing perf.forge_registry_alloc.DelegateHolderMixin from modernfix-forge.mixins.json into net.minecraft.world.item.Item [12мая2024 17:30:58.713] [pool-4-thread-1/DEBUG] [mixin/]: Mixing ItemMixin from moonlight-common.mixins.json into net.minecraft.world.item.Item [12мая2024 17:30:58.716] [pool-4-thread-1/DEBUG] [mixin/]: Mixing ItemMixin from moonlight.mixins.json into net.minecraft.world.item.Item [12мая2024 17:30:58.718] [pool-4-thread-1/DEBUG] [mixin/]: Mixing MixinItem from mixins.oculus.json into net.minecraft.world.item.Item [12мая2024 17:30:58.718] [pool-4-thread-1/DEBUG] [mixin/]: mixins.oculus.json:MixinItem: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_8 supports class version 52) [12мая2024 17:30:58.718] [pool-4-thread-1/DEBUG] [mixin/]: Mixing inject.MixinItem from architectury-common.mixins.json into net.minecraft.world.item.Item [12мая2024 17:30:58.720] [pool-4-thread-1/DEBUG] [mixin/]: Mixing MixinItem from majruszsenchantments-common.mixins.json into net.minecraft.world.item.Item [12мая2024 17:30:58.721] [pool-4-thread-1/DEBUG] [mixin/]: Mixing MixinItem from majruszlibrary-common.mixins.json into net.minecraft.world.item.Item [12мая2024 17:30:58.816] [pool-4-thread-1/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer/COREMOD]: Transforming net/minecraft/world/entity/EntityType [12мая2024 17:30:59.731] [pool-4-thread-1/DEBUG] [mixin/]: Mixing EntityTypeMixin from dynamiclightsreforged.mixins.json into net.minecraft.world.entity.EntityType [12мая2024 17:30:59.732] [pool-4-thread-1/DEBUG] [mixin/]: dynamiclightsreforged.mixins.json:EntityTypeMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_8 supports class version 52) [12мая2024 17:30:59.736] [pool-4-thread-1/DEBUG] [mixin/]: Mixing EntityTypeMixin from doespotatotick.mixins.json into net.minecraft.world.entity.EntityType [12мая2024 17:30:59.738] [pool-4-thread-1/DEBUG] [mixin/]: Mixing inject.MixinEntityType from architectury-common.mixins.json into net.minecraft.world.entity.EntityType [12мая2024 17:30:59.739] [pool-4-thread-1/DEBUG] [mixin/]: Mixing renderer.entity.MixinEntityType from forge-badoptimizations.mixins.json into net.minecraft.world.entity.EntityType [12мая2024 17:30:59.821] [pool-4-thread-1/DEBUG] [mixin/]: Mixing MixinMobEffect from witherstormmod.mixins.json into net.minecraft.world.effect.MobEffect [12мая2024 17:30:59.858] [pool-4-thread-1/DEBUG] [mixin/]: Mixing IMixinEnchantment from majruszlibrary-common.mixins.json into net.minecraft.world.item.enchantment.Enchantment [12мая2024 17:30:59.859] [pool-4-thread-1/DEBUG] [mixin/]: Mixing MixinEnchantment from majruszlibrary-forge.mixins.json into net.minecraft.world.item.enchantment.Enchantment [12мая2024 17:30:59.896] [pool-4-thread-1/DEBUG] [mixin/]: Mixing BlockEntityTypeMixin from dynamiclightsreforged.mixins.json into net.minecraft.world.level.block.entity.BlockEntityType [12мая2024 17:30:59.896] [pool-4-thread-1/DEBUG] [mixin/]: dynamiclightsreforged.mixins.json:BlockEntityTypeMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_8 supports class version 52) [12мая2024 17:30:59.897] [pool-4-thread-1/DEBUG] [mixin/]: Mixing perf.dynamic_dfu.BlockEntityTypeMixin from modernfix-common.mixins.json into net.minecraft.world.level.block.entity.BlockEntityType [12мая2024 17:30:59.898] [pool-4-thread-1/DEBUG] [mixin/]: Mixing MixinBlockEntityType from crackerslib.mixins.json into net.minecraft.world.level.block.entity.BlockEntityType [12мая2024 17:30:59.899] [pool-4-thread-1/DEBUG] [mixin/]: Mixing renderer.blockentity.MixinBlockEntityType from forge-badoptimizations.mixins.json into net.minecraft.world.level.block.entity.BlockEntityType [12мая2024 17:30:59.930] [pool-4-thread-1/DEBUG] [mixin/]: Mixing ChunkStatusMixin from citadel.mixins.json into net.minecraft.world.level.chunk.ChunkStatus [12мая2024 17:31:00.001] [pool-4-thread-1/DEBUG] [mixin/]: Mixing IMixinArgumentTypeInfos from majruszlibrary-common.mixins.json into net.minecraft.commands.synchronization.ArgumentTypeInfos [12мая2024 17:31:00.008] [pool-4-thread-1/DEBUG] [mixin/]: Renaming @Accessor method getByClass()Ljava/util/Map; to getByClass_$md$359651$0 in majruszlibrary-common.mixins.json:IMixinArgumentTypeInfos [12мая2024 17:31:00.110] [pool-4-thread-1/DEBUG] [mixin/]: Mixing ai.poi.PoiTypesMixin from canary.mixins.json into net.minecraft.world.entity.ai.village.poi.PoiTypes [12мая2024 17:31:00.439] [pool-4-thread-1/DEBUG] [mixin/]: Mixing MixinCreativeModeTab from majruszlibrary-common.mixins.json into net.minecraft.world.item.CreativeModeTab [12мая2024 17:31:00.458] [pool-4-thread-1/DEBUG] [mixin/]: Mixing FireBlockMixin from moonlight.mixins.json into net.minecraft.world.level.block.FireBlock [12мая2024 17:31:00.592] [pool-4-thread-1/DEBUG] [mixin/]: Mixing features.render.immediate.DirectionMixin from rubidium.mixins.json into net.minecraft.core.Direction [12мая2024 17:31:00.593] [pool-4-thread-1/DEBUG] [mixin/]: Mixing math.fast_blockpos.DirectionMixin from canary.mixins.json into net.minecraft.core.Direction [12мая2024 17:31:00.594] [pool-4-thread-1/DEBUG] [mixin/]: Mixing math.fast_util.DirectionMixin from canary.mixins.json into net.minecraft.core.Direction [12мая2024 17:31:00.739] [pool-4-thread-1/DEBUG] [mixin/]: Mixing VoxelShapeAccessor from creativecore.mixins.json into net.minecraft.world.phys.shapes.VoxelShape [12мая2024 17:31:00.739] [pool-4-thread-1/DEBUG] [mixin/]: Mixing block.moving_block_shapes.VoxelShapeMixin from canary.mixins.json into net.minecraft.world.phys.shapes.VoxelShape [12мая2024 17:31:00.744] [pool-4-thread-1/DEBUG] [mixin/]: Mixing shapes.specialized_shapes.VoxelShapeMixin from canary.mixins.json into net.minecraft.world.phys.shapes.VoxelShape [12мая2024 17:31:00.773] [pool-4-thread-1/DEBUG] [mixin/]: Mixing VoxelShapeAccess from ferritecore.blockstatecache.mixin.json into net.minecraft.world.phys.shapes.VoxelShape [12мая2024 17:31:00.806] [pool-4-thread-1/DEBUG] [mixin/]: Unexpected: Registered method setShape(Lnet/minecraft/world/phys/shapes/DiscreteVoxelShape;)V in net.minecraft.world.phys.shapes.VoxelShape was not merged [12мая2024 17:31:00.826] [pool-4-thread-1/DEBUG] [mixin/]: Mixing ShapesMixin from creativecore.mixins.json into net.minecraft.world.phys.shapes.Shapes [12мая2024 17:31:00.852] [pool-4-thread-1/DEBUG] [mixin/]: Mixing shapes.optimized_matching.ShapesMixin from canary.mixins.json into net.minecraft.world.phys.shapes.Shapes [12мая2024 17:31:00.854] [pool-4-thread-1/DEBUG] [mixin/]: Mixing shapes.shape_merging.ShapesMixin from canary.mixins.json into net.minecraft.world.phys.shapes.Shapes [12мая2024 17:31:00.857] [pool-4-thread-1/DEBUG] [mixin/]: Mixing shapes.specialized_shapes.ShapesMixin from canary.mixins.json into net.minecraft.world.phys.shapes.Shapes [12мая2024 17:31:00.919] [pool-4-thread-1/DEBUG] [mixin/]: Mixing SliceShapeAccess from ferritecore.blockstatecache.mixin.json into net.minecraft.world.phys.shapes.SliceShape [12мая2024 17:31:00.932] [pool-4-thread-1/DEBUG] [mixin/]: Mixing DiscreteVSAccess from ferritecore.blockstatecache.mixin.json into net.minecraft.world.phys.shapes.DiscreteVoxelShape [12мая2024 17:31:00.938] [pool-4-thread-1/DEBUG] [mixin/]: Mixing BitSetDVSAccess from ferritecore.blockstatecache.mixin.json into net.minecraft.world.phys.shapes.BitSetDiscreteVoxelShape [12мая2024 17:31:00.977] [pool-4-thread-1/DEBUG] [mixin/]: Mixing shapes.precompute_shape_arrays.CubeVoxelShapeMixin from canary.mixins.json into net.minecraft.world.phys.shapes.CubeVoxelShape [12мая2024 17:31:00.986] [pool-4-thread-1/DEBUG] [mixin/]: Mixing ArrayVSAccess from ferritecore.blockstatecache.mixin.json into net.minecraft.world.phys.shapes.ArrayVoxelShape [12мая2024 17:31:01.004] [pool-4-thread-1/DEBUG] [mixin/]: Mixing shapes.precompute_shape_arrays.CubePointRangeMixin from canary.mixins.json into net.minecraft.world.phys.shapes.CubePointRange [12мая2024 17:31:01.616] [pool-4-thread-1/DEBUG] [mixin/]: Mixing perf.reduce_blockstate_cache_rebuilds.BlocksMixin from modernfix-common.mixins.json into net.minecraft.world.level.block.Blocks [12мая2024 17:31:01.617] [pool-4-thread-1/DEBUG] [mixin/]: Renaming synthetic method lambda$getEmptyConsumer$0(Ljava/lang/Object;)V to md359651$lambda$getEmptyConsumer$0$0 in modernfix-common.mixins.json:perf.reduce_blockstate_cache_rebuilds.BlocksMixin [12мая2024 17:31:01.754] [pool-4-thread-1/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer/COREMOD]: Transforming net/minecraft/world/level/block/LiquidBlock [12мая2024 17:31:01.755] [pool-4-thread-1/DEBUG] [mixin/]: Mixing inject.MixinLiquidBlock from architectury-common.mixins.json into net.minecraft.world.level.block.LiquidBlock [12мая2024 17:31:01.760] [pool-4-thread-1/DEBUG] [mixin/]: Mixing MixinFallingBlock from witherstormmod.mixins.json into net.minecraft.world.level.block.FallingBlock [12мая2024 17:31:01.786] [pool-4-thread-1/DEBUG] [mixin/]: Mixing features.options.render_layers.LeavesBlockMixin from rubidium.mixins.json into net.minecraft.world.level.block.LeavesBlock [12мая2024 17:31:01.789] [pool-4-thread-1/DEBUG] [mixin/]: Mixing LeafTickMixin from fallingleaves.mixins.json into net.minecraft.world.level.block.LeavesBlock [12мая2024 17:31:01.848] [pool-4-thread-1/DEBUG] [mixin/]: Mixing accessor.DispenserBlockAccessor from moonlight-common.mixins.json into net.minecraft.world.level.block.DispenserBlock [12мая2024 17:31:01.850] [pool-4-thread-1/DEBUG] [mixin/]: Renaming @Accessor method getDispenserRegistry()Ljava/util/Map; to getDispenserRegistry_$md$359651$0 in moonlight-common.mixins.json:accessor.DispenserBlockAccessor [12мая2024 17:31:01.877] [pool-4-thread-1/DEBUG] [mixin/]: Mixing alloc.enum_values.piston_block.PistonBaseBlockMixin from canary.mixins.json into net.minecraft.world.level.block.piston.PistonBaseBlock [12мая2024 17:31:01.950] [pool-4-thread-1/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer/COREMOD]: Transforming net/minecraft/world/level/block/StairBlock [12мая2024 17:31:01.982] [pool-4-thread-1/DEBUG] [mixin/]: Mixing alloc.enum_values.redstone_wire.RedStoneWireBlockMixin from canary.mixins.json into net.minecraft.world.level.block.RedStoneWireBlock [12мая2024 17:31:01.982] [pool-4-thread-1/DEBUG] [mixin/]: Mixing block.redstone_wire.RedStoneWireBlockMixin from canary.mixins.json into net.minecraft.world.level.block.RedStoneWireBlock [12мая2024 17:31:02.006] [pool-4-thread-1/DEBUG] [mixin/]: Mixing CropBlockMixin from balm.mixins.json into net.minecraft.world.level.block.CropBlock [12мая2024 17:31:02.159] [pool-4-thread-1/DEBUG] [mixin/]: Mixing StemBlockMixin from balm.mixins.json into net.minecraft.world.level.block.StemBlock [12мая2024 17:31:02.214] [pool-4-thread-1/DEBUG] [mixin/]: Mixing perf.deduplicate_wall_shapes.WallBlockMixin from modernfix-common.mixins.json into net.minecraft.world.level.block.WallBlock [12мая2024 17:31:02.229] [pool-4-thread-1/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer/COREMOD]: Transforming net/minecraft/world/level/block/FlowerPotBlock [12мая2024 17:31:02.288] [pool-4-thread-1/DEBUG] [mixin/]: Mixing AnvilBlockMixin from placebo.mixins.json into net.minecraft.world.level.block.AnvilBlock [12мая2024 17:31:02.323] [pool-4-thread-1/DEBUG] [mixin/]: Mixing util.inventory_comparator_tracking.ComparatorBlockMixin from canary.mixins.json into net.minecraft.world.level.block.ComparatorBlock [12мая2024 17:31:02.474] [pool-4-thread-1/DEBUG] [mixin/]: Mixing BarrelOnUse from make_bubbles_pop.mixins.json into net.minecraft.world.level.block.BarrelBlock [12мая2024 17:31:02.514] [pool-4-thread-1/DEBUG] [mixin/]: Mixing MixinBellBlock from witherstormmod.mixins.json into net.minecraft.world.level.block.BellBlock [12мая2024 17:31:02.577] [pool-4-thread-1/DEBUG] [mixin/]: Mixing MixinPowderSnowBlock from majruszlibrary-common.mixins.json into net.minecraft.world.level.block.PowderSnowBlock [12мая2024 17:31:02.651] [pool-4-thread-1/DEBUG] [mixin/]: Mixing MixinPointedDripstoneBlock from witherstormmod.mixins.json into net.minecraft.world.level.block.PointedDripstoneBlock [12мая2024 17:31:02.651] [pool-4-thread-1/DEBUG] [mixin/]: Renaming @Invoker method callIsStalagmite(Lnet/minecraft/world/level/block/state/BlockState;)Z to callIsStalagmite_$md$359651$0 in witherstormmod.mixins.json:MixinPointedDripstoneBlock [12мая2024 17:31:02.652] [pool-4-thread-1/DEBUG] [mixin/]: Renaming @Invoker method callSpawnFallingStalactite(Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;)V to callSpawnFallingStalactite_$md$359651$1 in witherstormmod.mixins.json:MixinPointedDripstoneBlock [12мая2024 17:31:02.841] [pool-4-thread-1/DEBUG] [mixin/]: Mixing perf.state_definition_construct.StateDefinitionMixin from modernfix-common.mixins.json into net.minecraft.world.level.block.state.StateDefinition [12мая2024 17:31:03.034] [pool-4-thread-1/DEBUG] [mixin/]: Mixing FlowingFluidMixin from alexscaves.mixins.json into net.minecraft.world.level.material.FlowingFluid [12мая2024 17:31:03.093] [pool-4-thread-1/DEBUG] [mixin/]: Mixing block.flatten_states.FluidStateMixin from canary.mixins.json into net.minecraft.world.level.material.FluidState [12мая2024 17:31:03.502] [pool-4-thread-1/INFO] [net.minecraft.server.Bootstrap/]: Vanilla bootstrap took 7314 milliseconds [12мая2024 17:31:03.603] [pool-4-thread-1/DEBUG] [io.netty.util.internal.PlatformDependent0/]: -Dio.netty.noUnsafe: false [12мая2024 17:31:03.604] [pool-4-thread-1/DEBUG] [io.netty.util.internal.PlatformDependent0/]: Java version: 17 [12мая2024 17:31:03.607] [pool-4-thread-1/DEBUG] [io.netty.util.internal.PlatformDependent0/]: sun.misc.Unsafe.theUnsafe: available [12мая2024 17:31:03.609] [pool-4-thread-1/DEBUG] [io.netty.util.internal.PlatformDependent0/]: sun.misc.Unsafe.copyMemory: available [12мая2024 17:31:03.613] [pool-4-thread-1/DEBUG] [io.netty.util.internal.PlatformDependent0/]: sun.misc.Unsafe.storeFence: available [12мая2024 17:31:03.614] [pool-4-thread-1/DEBUG] [io.netty.util.internal.PlatformDependent0/]: java.nio.Buffer.address: available [12мая2024 17:31:03.620] [pool-4-thread-1/DEBUG] [io.netty.util.internal.PlatformDependent0/]: direct buffer constructor: unavailable java.lang.UnsupportedOperationException: Reflective setAccessible(true) disabled     at io.netty.util.internal.ReflectionUtil.trySetAccessible(ReflectionUtil.java:31) ~[netty-common-4.1.82.Final.jar%23132!/:4.1.82.Final]     at io.netty.util.internal.PlatformDependent0$5.run(PlatformDependent0.java:288) ~[netty-common-4.1.82.Final.jar%23132!/:4.1.82.Final]     at java.security.AccessController.doPrivileged(Unknown Source) ~[?:?]     at io.netty.util.internal.PlatformDependent0.<clinit>(PlatformDependent0.java:282) ~[netty-common-4.1.82.Final.jar%23132!/:4.1.82.Final]     at io.netty.util.internal.PlatformDependent.isAndroid(PlatformDependent.java:333) ~[netty-common-4.1.82.Final.jar%23132!/:4.1.82.Final]     at io.netty.util.internal.PlatformDependent.<clinit>(PlatformDependent.java:88) ~[netty-common-4.1.82.Final.jar%23132!/:4.1.82.Final]     at io.netty.util.ConstantPool.<init>(ConstantPool.java:34) ~[netty-common-4.1.82.Final.jar%23132!/:4.1.82.Final]     at io.netty.util.AttributeKey$1.<init>(AttributeKey.java:27) ~[netty-common-4.1.82.Final.jar%23132!/:4.1.82.Final]     at io.netty.util.AttributeKey.<clinit>(AttributeKey.java:27) ~[netty-common-4.1.82.Final.jar%23132!/:4.1.82.Final]     at net.minecraftforge.network.NetworkConstants.<clinit>(NetworkConstants.java:34) ~[forge-1.20.1-47.2.20-universal.jar%23298!/:?]     at net.minecraft.server.Bootstrap.handler$znb000$doClassloadHack(Bootstrap.java:1034) ~[client-1.20.1-20230612.114412-srg.jar%23293!/:?]     at net.minecraft.server.Bootstrap.m_135870_(Bootstrap.java:64) ~[client-1.20.1-20230612.114412-srg.jar%23293!/:?]     at net.minecraftforge.registries.ForgeRegistries.init(ForgeRegistries.java:212) ~[forge-1.20.1-47.2.20-universal.jar%23298!/:?]     at net.minecraftforge.registries.ForgeRegistries.<clinit>(ForgeRegistries.java:65) ~[forge-1.20.1-47.2.20-universal.jar%23298!/:?]     at net.minecraft.world.level.block.LiquidBlock.<init>(LiquidBlock.java:53) ~[client-1.20.1-20230612.114412-srg.jar%23293!/:?]     at net.minecraft.world.level.block.Blocks.<clinit>(Blocks.java:77) ~[client-1.20.1-20230612.114412-srg.jar%23293!/:?]     at net.minecraft.world.level.block.FireBlock.m_53484_(FireBlock.java:301) ~[client-1.20.1-20230612.114412-srg.jar%23293!/:?]     at net.minecraft.server.Bootstrap.m_135870_(Bootstrap.java:46) ~[client-1.20.1-20230612.114412-srg.jar%23293!/:?]     at net.minecraft.client.main.Main.lambda$main$0(Main.java:151) ~[client-1.20.1-20230612.114412-srg.jar%23293!/:?]     at java.util.concurrent.Executors$RunnableAdapter.call(Unknown Source) ~[?:?]     at java.util.concurrent.FutureTask.run(Unknown Source) ~[?:?]     at java.util.concurrent.ThreadPoolExecutor.runWorker(Unknown Source) ~[?:?]     at java.util.concurrent.ThreadPoolExecutor$Worker.run(Unknown Source) ~[?:?]     at java.lang.Thread.run(Unknown Source) ~[?:?] [12мая2024 17:31:03.624] [pool-4-thread-1/DEBUG] [io.netty.util.internal.PlatformDependent0/]: java.nio.Bits.unaligned: available, true [12мая2024 17:31:03.626] [pool-4-thread-1/DEBUG] [io.netty.util.internal.PlatformDependent0/]: jdk.internal.misc.Unsafe.allocateUninitializedArray(int): unavailable java.lang.IllegalAccessException: class io.netty.util.internal.PlatformDependent0$7 (in module io.netty.common) cannot access class jdk.internal.misc.Unsafe (in module java.base) because module java.base does not export jdk.internal.misc to module io.netty.common     at jdk.internal.reflect.Reflection.newIllegalAccessException(Unknown Source) ~[?:?]     at java.lang.reflect.AccessibleObject.checkAccess(Unknown Source) ~[?:?]     at java.lang.reflect.Method.invoke(Unknown Source) ~[?:?]     at io.netty.util.internal.PlatformDependent0$7.run(PlatformDependent0.java:410) ~[netty-common-4.1.82.Final.jar%23132!/:4.1.82.Final]     at java.security.AccessController.doPrivileged(Unknown Source) ~[?:?]     at io.netty.util.internal.PlatformDependent0.<clinit>(PlatformDependent0.java:401) ~[netty-common-4.1.82.Final.jar%23132!/:4.1.82.Final]     at io.netty.util.internal.PlatformDependent.isAndroid(PlatformDependent.java:333) ~[netty-common-4.1.82.Final.jar%23132!/:4.1.82.Final]     at io.netty.util.internal.PlatformDependent.<clinit>(PlatformDependent.java:88) ~[netty-common-4.1.82.Final.jar%23132!/:4.1.82.Final]     at io.netty.util.ConstantPool.<init>(ConstantPool.java:34) ~[netty-common-4.1.82.Final.jar%23132!/:4.1.82.Final]     at io.netty.util.AttributeKey$1.<init>(AttributeKey.java:27) ~[netty-common-4.1.82.Final.jar%23132!/:4.1.82.Final]     at io.netty.util.AttributeKey.<clinit>(AttributeKey.java:27) ~[netty-common-4.1.82.Final.jar%23132!/:4.1.82.Final]     at net.minecraftforge.network.NetworkConstants.<clinit>(NetworkConstants.java:34) ~[forge-1.20.1-47.2.20-universal.jar%23298!/:?]     at net.minecraft.server.Bootstrap.handler$znb000$doClassloadHack(Bootstrap.java:1034) ~[client-1.20.1-20230612.114412-srg.jar%23293!/:?]     at net.minecraft.server.Bootstrap.m_135870_(Bootstrap.java:64) ~[client-1.20.1-20230612.114412-srg.jar%23293!/:?]     at net.minecraftforge.registries.ForgeRegistries.init(ForgeRegistries.java:212) ~[forge-1.20.1-47.2.20-universal.jar%23298!/:?]     at net.minecraftforge.registries.ForgeRegistries.<clinit>(ForgeRegistries.java:65) ~[forge-1.20.1-47.2.20-universal.jar%23298!/:?]     at net.minecraft.world.level.block.LiquidBlock.<init>(LiquidBlock.java:53) ~[client-1.20.1-20230612.114412-srg.jar%23293!/:?]     at net.minecraft.world.level.block.Blocks.<clinit>(Blocks.java:77) ~[client-1.20.1-20230612.114412-srg.jar%23293!/:?]     at net.minecraft.world.level.block.FireBlock.m_53484_(FireBlock.java:301) ~[client-1.20.1-20230612.114412-srg.jar%23293!/:?]     at net.minecraft.server.Bootstrap.m_135870_(Bootstrap.java:46) ~[client-1.20.1-20230612.114412-srg.jar%23293!/:?]     at net.minecraft.client.main.Main.lambda$main$0(Main.java:151) ~[client-1.20.1-20230612.114412-srg.jar%23293!/:?]     at java.util.concurrent.Executors$RunnableAdapter.call(Unknown Source) ~[?:?]     at java.util.concurrent.FutureTask.run(Unknown Source) ~[?:?]     at java.util.concurrent.ThreadPoolExecutor.runWorker(Unknown Source) ~[?:?]     at java.util.concurrent.ThreadPoolExecutor$Worker.run(Unknown Source) ~[?:?]     at java.lang.Thread.run(Unknown Source) ~[?:?] [12мая2024 17:31:03.628] [pool-4-thread-1/DEBUG] [io.netty.util.internal.PlatformDependent0/]: java.nio.DirectByteBuffer.<init>(long, int): unavailable [12мая2024 17:31:03.628] [pool-4-thread-1/DEBUG] [io.netty.util.internal.PlatformDependent/]: sun.misc.Unsafe: available [12мая2024 17:31:03.633] [pool-4-thread-1/DEBUG] [io.netty.util.internal.PlatformDependent/]: maxDirectMemory: 4194304000 bytes (maybe) [12мая2024 17:31:03.634] [pool-4-thread-1/DEBUG] [io.netty.util.internal.PlatformDependent/]: -Dio.netty.tmpdir: C:\Users\user\AppData\Local\Temp (java.io.tmpdir) [12мая2024 17:31:03.635] [pool-4-thread-1/DEBUG] [io.netty.util.internal.PlatformDependent/]: -Dio.netty.bitMode: 64 (sun.arch.data.model) [12мая2024 17:31:03.635] [pool-4-thread-1/DEBUG] [io.netty.util.internal.PlatformDependent/]: Platform: Windows [12мая2024 17:31:03.636] [pool-4-thread-1/DEBUG] [io.netty.util.internal.PlatformDependent/]: -Dio.netty.maxDirectMemory: -1 bytes [12мая2024 17:31:03.636] [pool-4-thread-1/DEBUG] [io.netty.util.internal.PlatformDependent/]: -Dio.netty.uninitializedArrayAllocationThreshold: -1 [12мая2024 17:31:03.639] [pool-4-thread-1/DEBUG] [io.netty.util.internal.CleanerJava9/]: java.nio.ByteBuffer.cleaner(): available [12мая2024 17:31:03.639] [pool-4-thread-1/DEBUG] [io.netty.util.internal.PlatformDependent/]: -Dio.netty.noPreferDirect: false [12мая2024 17:31:04.222] [pool-4-thread-1/DEBUG] [mixin/]: Mixing FallingBlockEntityMixin from alexscaves.mixins.json into net.minecraft.world.entity.item.FallingBlockEntity [12мая2024 17:31:04.227] [pool-4-thread-1/DEBUG] [mixin/]: Mixing MixinFallingBlockEntity from architectury.mixins.json into net.minecraft.world.entity.item.FallingBlockEntity [12мая2024 17:31:04.277] [pool-4-thread-1/DEBUG] [mixin/]: Mixing lightsource.BlockEntityMixin from dynamiclightsreforged.mixins.json into net.minecraft.world.level.block.entity.BlockEntity [12мая2024 17:31:04.278] [pool-4-thread-1/DEBUG] [mixin/]: dynamiclightsreforged.mixins.json:lightsource.BlockEntityMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_8 supports class version 52) [12мая2024 17:31:04.286] [pool-4-thread-1/DEBUG] [mixin/]: Mixing MixinBlockEntity from entity_model_features-common.mixins.json into net.minecraft.world.level.block.entity.BlockEntity [12мая2024 17:31:04.290] [pool-4-thread-1/DEBUG] [mixin/]: Mixing entity.misc.MixinBlockEntity from entity_texture_features-common.mixins.json into net.minecraft.world.level.block.entity.BlockEntity [12мая2024 17:31:04.298] [pool-4-thread-1/DEBUG] [mixin/]: Mixing CullableMixin from entityculling.mixins.json into net.minecraft.world.level.block.entity.BlockEntity [12мая2024 17:31:04.299] [pool-4-thread-1/DEBUG] [mixin/]: entityculling.mixins.json:CullableMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) [12мая2024 17:31:04.301] [pool-4-thread-1/DEBUG] [mixin/]: Mixing util.inventory_change_listening.BlockEntityMixin from canary.mixins.json into net.minecraft.world.level.block.entity.BlockEntity [12мая2024 17:31:04.303] [pool-4-thread-1/DEBUG] [mixin/]: Mixing util.inventory_comparator_tracking.BlockEntityMixin from canary.mixins.json into net.minecraft.world.level.block.entity.BlockEntity [12мая2024 17:31:04.305] [pool-4-thread-1/DEBUG] [mixin/]: Mixing MixinTileEntity from notenoughcrashes.mixins.json into net.minecraft.world.level.block.entity.BlockEntity [12мая2024 17:31:04.306] [pool-4-thread-1/DEBUG] [mixin/]: Renaming synthetic method lambda$onPopulateCrashReport$0()Ljava/lang/String; to md359651$lambda$onPopulateCrashReport$0$0 in notenoughcrashes.mixins.json:MixinTileEntity [12мая2024 17:31:04.344] [pool-4-thread-1/DEBUG] [mixin/]: Mixing MixinBrushableBlockEntity from majruszlibrary-common.mixins.json into net.minecraft.world.level.block.entity.BrushableBlockEntity [12мая2024 17:31:04.560] [pool-4-thread-1/DEBUG] [mixin/]: Mixing accessor.DispenserBlockEntityAccessor from moonlight-common.mixins.json into net.minecraft.world.level.block.entity.DispenserBlockEntity [12мая2024 17:31:04.561] [pool-4-thread-1/DEBUG] [mixin/]: Mixing util.inventory_change_listening.StackListReplacementTracking$InventoryChangeTrackingDispenserBlockEntity from canary.mixins.json into net.minecraft.world.level.block.entity.DispenserBlockEntity [12мая2024 17:31:04.587] [pool-4-thread-1/DEBUG] [mixin/]: Mixing util.inventory_change_listening.RandomizableContainerBlockEntityMixin from canary.mixins.json into net.minecraft.world.level.block.entity.RandomizableContainerBlockEntity [12мая2024 17:31:04.613] [pool-4-thread-1/DEBUG] [mixin/]: Mixing util.inventory_change_listening.StackListReplacementTracking$StackListReplacementTrackingBaseContainerBlockEntity from canary.mixins.json into net.minecraft.world.level.block.entity.BaseContainerBlockEntity [12мая2024 17:31:04.855] [pool-4-thread-1/DEBUG] [mixin/]: Mixing math.fast_util.AxisCycleDirectionMixin$ForwardMixin from canary.mixins.json into net.minecraft.core.AxisCycle$2 [12мая2024 17:31:04.865] [pool-4-thread-1/DEBUG] [mixin/]: Mixing math.fast_util.AxisCycleDirectionMixin$BackwardMixin from canary.mixins.json into net.minecraft.core.AxisCycle$3 [12мая2024 17:31:05.048] [pool-4-thread-1/DEBUG] [mixin/]: Mixing PistonBlockEntityMixin from moonlight-common.mixins.json into net.minecraft.world.level.block.piston.PistonMovingBlockEntity [12мая2024 17:31:05.061] [pool-4-thread-1/DEBUG] [mixin/]: Mixing block.moving_block_shapes.PistonMovingBlockEntityMixin from canary.mixins.json into net.minecraft.world.level.block.piston.PistonMovingBlockEntity [12мая2024 17:31:05.342] [pool-4-thread-1/DEBUG] [mixin/]: Mixing lightsource.TntEntityMixin from dynamiclightsreforged.mixins.json into net.minecraft.world.entity.item.PrimedTnt [12мая2024 17:31:05.342] [pool-4-thread-1/DEBUG] [mixin/]: dynamiclightsreforged.mixins.json:lightsource.TntEntityMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_8 supports class version 52) [12мая2024 17:31:05.345] [pool-4-thread-1/DEBUG] [mixin/]: Mixing MixinPrimedTnt from witherstormmod.mixins.json into net.minecraft.world.entity.item.PrimedTnt [12мая2024 17:31:05.753] [pool-4-thread-1/DEBUG] [mixin/]: Mixing ChestBubble from make_bubbles_pop.mixins.json into net.minecraft.world.level.block.entity.ChestBlockEntity [12мая2024 17:31:05.785] [pool-4-thread-1/DEBUG] [mixin/]: Mixing util.inventory_change_listening.ChestBlockEntityMixin from canary.mixins.json into net.minecraft.world.level.block.entity.ChestBlockEntity [12мая2024 17:31:05.786] [pool-4-thread-1/DEBUG] [mixin/]: Mixing util.inventory_change_listening.StackListReplacementTracking$InventoryChangeTrackingChestBlockEntity from canary.mixins.json into net.minecraft.world.level.block.entity.ChestBlockEntity [12мая2024 17:31:05.885] [pool-4-thread-1/DEBUG] [mixin/]: Mixing AbstractContainerMenuInvoker from placebo.mixins.json into net.minecraft.world.inventory.AbstractContainerMenu [12мая2024 17:31:05.902] [pool-4-thread-1/DEBUG] [mixin/]: Mixing MixinCraftingMenu from fastbench.mixins.json into net.minecraft.world.inventory.CraftingMenu [12мая2024 17:31:05.908] [pool-4-thread-1/DEBUG] [mixin/]: Renaming synthetic method lambda$slotsChanged$0(Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)V to md359651$lambda$slotsChanged$0$0 in fastbench.mixins.json:MixinCraftingMenu [12мая2024 17:31:05.977] [pool-4-thread-1/DEBUG] [mixin/]: Mixing world.block_entity_ticking.sleeping.furnace.AbstractFurnaceBlockEntityMixin from canary.mixins.json into net.minecraft.world.level.block.entity.AbstractFurnaceBlockEntity [12мая2024 17:31:05.981] [pool-4-thread-1/DEBUG] [mixin/]: Mixing MixinAbstractFurnaceBlockEntity from fastfurnace.mixins.json into net.minecraft.world.level.block.entity.AbstractFurnaceBlockEntity [12мая2024 17:31:06.230] [pool-4-thread-1/DEBUG] [mixin/]: Mixing math.fast_util.AABBMixin from canary.mixins.json into net.minecraft.world.phys.AABB [12мая2024 17:31:06.286] [pool-4-thread-1/DEBUG] [mixin/]: Mixing PersistentTridentMixin from betteroceanmonuments.mixins.json into net.minecraft.world.entity.projectile.AbstractArrow [12мая2024 17:31:06.290] [pool-4-thread-1/DEBUG] [mixin/]: Mixing AbstractArrowMixin from alexscaves.mixins.json into net.minecraft.world.entity.projectile.AbstractArrow [12мая2024 17:31:06.312] [pool-4-thread-1/DEBUG] [mixin/]: Mixing accessor.ProjectileAccessor from betteroceanmonuments.mixins.json into net.minecraft.world.entity.projectile.Projectile [12мая2024 17:31:06.313] [pool-4-thread-1/DEBUG] [mixin/]: Mixing MixinProjectile from majruszlibrary-common.mixins.json into net.minecraft.world.entity.projectile.Projectile [12мая2024 17:31:06.363] [pool-4-thread-1/DEBUG] [mixin/]: Mixing MixinMob from epicfight.mixins.json into net.minecraft.world.entity.Mob [12мая2024 17:31:06.365] [pool-4-thread-1/DEBUG] [mixin/]: Mixing MobRememberSpawnReasonMixin from takesapillage.mixins.json into net.minecraft.world.entity.Mob [12мая2024 17:31:06.367] [pool-4-thread-1/DEBUG] [mixin/]: Mixing MobMixin from alexscaves.mixins.json into net.minecraft.world.entity.Mob [12мая2024 17:31:06.370] [pool-4-thread-1/DEBUG] [mixin/]: Mixing EntityMixin from moonlight-common.mixins.json into net.minecraft.world.entity.Mob [12мая2024 17:31:06.371] [pool-4-thread-1/DEBUG] [mixin/]: Mixing entity.inactive_navigations.MobMixin from canary.mixins.json into net.minecraft.world.entity.Mob [12мая2024 17:31:06.377] [pool-4-thread-1/DEBUG] [mixin/]: Mixing entity.skip_equipment_change_check.MobMixin from canary.mixins.json into net.minecraft.world.entity.Mob [12мая2024 17:31:06.378] [pool-4-thread-1/DEBUG] [mixin/]: Mixing MixinMob from witherstormmod.mixins.json into net.minecraft.world.entity.Mob [12мая2024 17:31:06.382] [pool-4-thread-1/DEBUG] [mixin/]: Mixing IMixinMob from majruszlibrary-common.mixins.json into net.minecraft.world.entity.Mob [12мая2024 17:31:06.383] [pool-4-thread-1/DEBUG] [mixin/]: Mixing MixinMob from majruszlibrary-common.mixins.json into net.minecraft.world.entity.Mob [12мая2024 17:31:06.402] [pool-4-thread-1/WARN] [mixin/]: Method overwrite conflict for getMobSpawnType in majruszlibrary-common.mixins.json:MixinMob, previously written by com.izofar.takesapillage.mixin.MobRememberSpawnReasonMixin. Skipping method. [12мая2024 17:31:06.410] [pool-4-thread-1/DEBUG] [mixin/]: Unexpected: Registered method getMobSpawnType()Lnet/minecraft/world/entity/MobSpawnType; in net.minecraft.world.entity.Mob was not merged [12мая2024 17:31:06.539] [pool-4-thread-1/DEBUG] [mixin/]: Mixing allocations.fall_sounds.MonsterMixin from saturn.mixins.json into net.minecraft.world.entity.monster.Monster [12мая2024 17:31:06.747] [pool-4-thread-1/DEBUG] [mixin/]: Mixing world.block_entity_ticking.sleeping.brewing_stand.BrewingStandBlockEntityMixin from canary.mixins.json into net.minecraft.world.level.block.entity.BrewingStandBlockEntity [12мая2024 17:31:06.750] [pool-4-thread-1/DEBUG] [mixin/]: Mixing MixinBrewingStandBlockEntity from majruszlibrary-common.mixins.json into net.minecraft.world.level.block.entity.BrewingStandBlockEntity [12мая2024 17:31:06.840] [pool-4-thread-1/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer/COREMOD]: Transforming net/minecraft/world/item/ItemStack [12мая2024 17:31:06.844] [pool-4-thread-1/DEBUG] [mixin/]: Mixing ItemStackMixin from fastsuite.mixins.json into net.minecraft.world.item.ItemStack [12мая2024 17:31:06.848] [pool-4-thread-1/DEBUG] [mixin/]: Mixing ItemStackMixin from placebo.mixins.json into net.minecraft.world.item.ItemStack [12мая2024 17:31:06.848] [pool-4-thread-1/DEBUG] [mixin/]: Renaming synthetic method lambda$getOrCreate$0(Ljava/util/function/Function;Ljava/util/function/ToIntFunction;Lnet/minecraft/resources/ResourceLocation;)Ldev/shadowsoffire/placebo/util/CachedObject; to md359651$lambda$getOrCreate$0$0 in placebo.mixins.json:ItemStackMixin [12мая2024 17:31:06.852] [pool-4-thread-1/DEBUG] [mixin/]: Mixing util.item_stack_tracking.ItemStackMixin from canary.mixins.json into net.minecraft.world.item.ItemStack [12мая2024 17:31:06.858] [pool-4-thread-1/DEBUG] [mixin/]: Mixing MixinItemStack from majruszlibrary-common.mixins.json into net.minecraft.world.item.ItemStack [12мая2024 17:31:06.923] [pool-4-thread-1/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer/COREMOD]: Transforming getEnchantmentLevel with desc (Lnet/minecraft/world/item/enchantment/Enchantment;)I [12мая2024 17:31:06.924] [pool-4-thread-1/INFO] [net.minecraftforge.coremod.CoreMod.placebo/COREMODLOG]: Patching IForgeItemStack#getEnchantmentLevel [12мая2024 17:31:06.927] [pool-4-thread-1/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer/COREMOD]: Transforming getAllEnchantments with desc ()Ljava/util/Map; [12мая2024 17:31:06.928] [pool-4-thread-1/INFO] [net.minecraftforge.coremod.CoreMod.placebo/COREMODLOG]: Patching IForgeItemStack#getEnchantmentLevel [12мая2024 17:31:07.181] [pool-4-thread-1/DEBUG] [mixin/]: Mixing entity.misc.MixinSkullBlockEntity from entity_texture_features-common.mixins.json into net.minecraft.world.level.block.entity.SkullBlockEntity [12мая2024 17:31:07.193] [pool-4-thread-1/DEBUG] [mixin/]: Mixing MixinWitherBoss from epicfight.mixins.json into net.minecraft.world.entity.boss.wither.WitherBoss [12мая2024 17:31:07.196] [pool-4-thread-1/DEBUG] [mixin/]: Renaming @Unique method m_7515_()Lnet/minecraft/sounds/SoundEvent; to md359651$m_7515_$0 in epicfight.mixins.json:MixinWitherBoss [12мая2024 17:31:07.266] [pool-4-thread-1/WARN] [mixin/]: @Final field f_31427_:[I in epicfight.mixins.json:MixinWitherBoss should be final [12мая2024 17:31:07.267] [pool-4-thread-1/WARN] [mixin/]: @Final field f_31428_:[I in epicfight.mixins.json:MixinWitherBoss should be final [12мая2024 17:31:07.393] [pool-4-thread-1/DEBUG] [mixin/]: Mixing entity.hopper_minecart.HopperBlockEntityMixin from canary.mixins.json into net.minecraft.world.level.block.entity.HopperBlockEntity [12мая2024 17:31:07.398] [pool-4-thread-1/DEBUG] [mixin/]: Mixing util.inventory_change_listening.StackListReplacementTracking$InventoryChangeTrackingHopperBlockEntity from canary.mixins.json into net.minecraft.world.level.block.entity.HopperBlockEntity [12мая2024 17:31:07.400] [pool-4-thread-1/DEBUG] [mixin/]: Mixing world.block_entity_ticking.sleeping.hopper.HopperBlockEntityMixin from canary.mixins.json into net.minecraft.world.level.block.entity.HopperBlockEntity [12мая2024 17:31:07.728] [pool-4-thread-1/DEBUG] [mixin/]: Mixing TheEndGatewayBlockEntityMixin from betterendisland.mixins.json into net.minecraft.world.level.block.entity.TheEndGatewayBlockEntity [12мая2024 17:31:07.787] [pool-4-thread-1/DEBUG] [mixin/]: Mixing util.inventory_change_listening.StackListReplacementTracking$InventoryChangeTrackingShulkerBoxBlockEntity from canary.mixins.json into net.minecraft.world.level.block.entity.ShulkerBoxBlockEntity [12мая2024 17:31:07.794] [pool-4-thread-1/DEBUG] [mixin/]: Mixing world.block_entity_ticking.sleeping.shulker_box.ShulkerBoxBlockEntityMixin from canary.mixins.json into net.minecraft.world.level.block.entity.ShulkerBoxBlockEntity [12мая2024 17:31:07.834] [pool-4-thread-1/DEBUG] [mixin/]: Mixing MixinAnimal from majruszlibrary-common.mixins.json into net.minecraft.world.entity.animal.Animal [12мая2024 17:31:08.007] [pool-4-thread-1/DEBUG] [mixin/]: Mixing util.inventory_change_listening.StackListReplacementTracking$InventoryChangeTrackingBarrelBlockEntity from canary.mixins.json into net.minecraft.world.level.block.entity.BarrelBlockEntity [12мая2024 17:31:08.059] [pool-4-thread-1/DEBUG] [mixin/]: Mixing SmithingMenuMixin from citadel.mixins.json into net.minecraft.world.inventory.SmithingMenu [12мая2024 17:31:08.114] [pool-4-thread-1/DEBUG] [mixin/]: Mixing world.block_entity_ticking.sleeping.campfire.CampfireBlockEntityMixin from canary.mixins.json into net.minecraft.world.level.block.entity.CampfireBlockEntity [12мая2024 17:31:08.592] [pool-4-thread-1/DEBUG] [mixin/]: Mixing LightningEntityMixin from moonlight-common.mixins.json into net.minecraft.world.entity.LightningBolt [12мая2024 17:31:08.594] [pool-4-thread-1/DEBUG] [mixin/]: Mixing MixinLightningBolt from architectury-common.mixins.json into net.minecraft.world.entity.LightningBolt [12мая2024 17:31:08.807] [pool-4-thread-1/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer/COREMOD]: Transforming net/minecraft/world/entity/animal/frog/Tadpole [12мая2024 17:31:08.898] [pool-4-thread-1/DEBUG] [mixin/]: Mixing BlockItemMixin from moonlight-common.mixins.json into net.minecraft.world.item.BlockItem [12мая2024 17:31:08.971] [pool-4-thread-1/DEBUG] [mixin/]: Mixing PaintingItemMixin from fastpaintings.mixins.json into net.minecraft.world.item.HangingEntityItem [12мая2024 17:31:09.124] [pool-4-thread-1/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer/COREMOD]: Transforming net/minecraft/world/item/BucketItem [12мая2024 17:31:09.125] [pool-4-thread-1/DEBUG] [mixin/]: Mixing inject.MixinBucketItem from architectury-common.mixins.json into net.minecraft.world.item.BucketItem [12мая2024 17:31:09.173] [pool-4-thread-1/DEBUG] [mixin/]: Mixing MapItemMixin from moonlight-common.mixins.json into net.minecraft.world.item.MapItem [12мая2024 17:31:09.176] [pool-4-thread-1/DEBUG] [mixin/]: Renaming synthetic method lambda$update$1(Lnet/minecraft/world/level/saveddata/maps/MapItemSavedData;Lnet/minecraft/world/entity/Entity;Ljava/util/concurrent/atomic/AtomicBoolean;Lnet/minecraft/resources/ResourceLocation;Lnet/mehvahdjukaar/moonlight/api/map/CustomMapData;)V to md359651$lambda$update$1$0 in moonlight-common.mixins.json:MapItemMixin [12мая2024 17:31:09.176] [pool-4-thread-1/DEBUG] [mixin/]: Renaming synthetic method lambda$appendHoverText$0(Lnet/minecraft/world/level/saveddata/maps/MapItemSavedData;Lnet/minecraft/world/item/ItemStack;Ljava/util/List;Lnet/minecraft/resources/ResourceLocation;Lnet/mehvahdjukaar/moonlight/api/map/CustomMapData;)V to md359651$lambda$appendHoverText$0$1 in moonlight-common.mixins.json:MapItemMixin [12мая2024 17:31:09.206] [pool-4-thread-1/DEBUG] [mixin/]: Mixing ShearItemMixin from moonlight-common.mixins.json into net.minecraft.world.item.ShearsItem [12мая2024 17:31:09.289] [pool-4-thread-1/DEBUG] [mixin/]: Mixing MixinHorseArmorItem from majruszsenchantments-common.mixins.json into net.minecraft.world.item.HorseArmorItem [12мая2024 17:31:09.298] [pool-4-thread-1/DEBUG] [mixin/]: Mixing MixinChorusFruitItem from majruszlibrary-common.mixins.json into net.minecraft.world.item.ChorusFruitItem [12мая2024 17:31:09.316] [pool-4-thread-1/DEBUG] [mixin/]: Mixing MixinShieldItem from majruszsenchantments-common.mixins.json into net.minecraft.world.item.ShieldItem [12мая2024 17:31:09.329] [pool-4-thread-1/DEBUG] [mixin/]: Mixing MixinCrossbowItem from witherstormmod.mixins.json into net.minecraft.world.item.CrossbowItem [12мая2024 17:31:09.331] [pool-4-thread-1/DEBUG] [mixin/]: Renaming synthetic method lambda$shootProjectile$1(Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/entity/LivingEntity;)V to md359651$lambda$shootProjectile$1$0 in witherstormmod.mixins.json:MixinCrossbowItem [12мая2024 17:31:09.331] [pool-4-thread-1/DEBUG] [mixin/]: Renaming synthetic method lambda$static$0(Lnet/minecraft/world/item/ItemStack;)Z to md359651$lambda$static$0$1 in witherstormmod.mixins.json:MixinCrossbowItem [12мая2024 17:31:09.390] [pool-4-thread-1/DEBUG] [mixin/]: Mixing inject.MixinItemProperties from architectury-common.mixins.json into net.minecraft.world.item.Item$Properties [12мая2024 17:31:09.522] [pool-4-thread-1/DEBUG] [mixin/]: Mixing lightsource.AbstractMinecartEntityMixin from dynamiclightsreforged.mixins.json into net.minecraft.world.entity.vehicle.AbstractMinecart [12мая2024 17:31:09.523] [pool-4-thread-1/DEBUG] [mixin/]: dynamiclightsreforged.mixins.json:lightsource.AbstractMinecartEntityMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_8 supports class version 52) [12мая2024 17:31:09.525] [pool-4-thread-1/DEBUG] [mixin/]: Mixing AbstractMinecartMixin from alexscaves.mixins.json into net.minecraft.world.entity.vehicle.AbstractMinecart [12мая2024 17:31:09.572] [pool-4-thread-1/DEBUG] [mixin/]: Mixing entity.collisions.unpushable_cramming.AbstractMinecartMixin from canary.mixins.json into net.minecraft.world.entity.vehicle.AbstractMinecart [12мая2024 17:31:09.573] [pool-4-thread-1/DEBUG] [mixin/]: Mixing entity.replace_entitytype_predicates.AbstractMinecartMixin from canary.mixins.json into net.minecraft.world.entity.vehicle.AbstractMinecart [12мая2024 17:31:09.573] [pool-4-thread-1/DEBUG] [mixin/]: Renaming synthetic method lambda$getOtherAbstractMinecarts$0(Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/entity/vehicle/AbstractMinecart;)Z to md359651$lambda$getOtherAbstractMinecarts$0$0 in canary.mixins.json:entity.replace_entitytype_predicates.AbstractMinecartMixin [12мая2024 17:31:09.787] [pool-4-thread-1/DEBUG] [mixin/]: Generating mapped inner class net/minecraft/world/entity/Entity$Anonymous$3b50edb2b1384d30b5650d839c02a7c2 (originally traben/entity_model_features/mixin/MixinEntity$1) [12мая2024 17:31:09.844] [pool-4-thread-1/DEBUG] [mixin/]: Mixing lightsource.AbstractDecorationEntityMixin from dynamiclightsreforged.mixins.json into net.minecraft.world.entity.decoration.HangingEntity [12мая2024 17:31:09.844] [pool-4-thread-1/DEBUG] [mixin/]: dynamiclightsreforged.mixins.json:lightsource.AbstractDecorationEntityMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_8 supports class version 52) [12мая2024 17:31:09.847] [pool-4-thread-1/DEBUG] [mixin/]: Mixing HangingentityMixin from fastpaintings.mixins.json into net.minecraft.world.entity.decoration.HangingEntity [12мая2024 17:31:09.848] [pool-4-thread-1/DEBUG] [mixin/]: Mixing entity.replace_entitytype_predicates.HangingEntityMixin from canary.mixins.json into net.minecraft.world.entity.decoration.HangingEntity [12мая2024 17:31:09.849] [pool-4-thread-1/DEBUG] [mixin/]: Renaming synthetic method lambda$getAbstractDecorationEntities$0(Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/entity/decoration/HangingEntity;)Z to md359651$lambda$getAbstractDecorationEntities$0$0 in canary.mixins.json:entity.replace_entitytype_predicates.HangingEntityMixin [12мая2024 17:31:09.866] [pool-4-thread-1/DEBUG] [mixin/]: Mixing entity.inactive_navigations.PathNavigationMixin from canary.mixins.json into net.minecraft.world.entity.ai.navigation.PathNavigation [12мая2024 17:31:09.899] [pool-4-thread-1/DEBUG] [mixin/]: Mixing MixinMobCategory from majruszlibrary-common.mixins.json into net.minecraft.world.entity.MobCategory [12мая2024 17:31:09.926] [pool-4-thread-1/DEBUG] [mixin/]: Mixing perf.dynamic_dfu.EntityTypeBuilderMixin from modernfix-common.mixins.json into net.minecraft.world.entity.EntityType$Builder [12мая2024 17:31:09.956] [pool-4-thread-1/DEBUG] [mixin/]: Mixing MixinAreaEffectCloud from witherstormmod.mixins.json into net.minecraft.world.entity.AreaEffectCloud [12мая2024 17:31:09.988] [pool-4-thread-1/DEBUG] [mixin/]: Mixing allocations.fall_sounds.ArmorStandMixin from saturn.mixins.json into net.minecraft.world.entity.decoration.ArmorStand [12мая2024 17:31:09.988] [pool-4-thread-1/DEBUG] [mixin/]: Mixing entity.replace_entitytype_predicates.ArmorStandMixin from canary.mixins.json into net.minecraft.world.entity.decoration.ArmorStand [12мая2024 17:31:09.989] [pool-4-thread-1/DEBUG] [mixin/]: Renaming synthetic method lambda$getMinecartsDirectly$0(Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/entity/Entity;)Z to md359651$lambda$getMinecartsDirectly$0$0 in canary.mixins.json:entity.replace_entitytype_predicates.ArmorStandMixin [12мая2024 17:31:09.990] [pool-4-thread-1/DEBUG] [mixin/]: Mixing entity.skip_equipment_change_check.ArmorStandMixin from canary.mixins.json into net.minecraft.world.entity.decoration.ArmorStand [12мая2024 17:31:10.051] [pool-4-thread-1/DEBUG] [mixin/]: Mixing MixinArrow from majruszlibrary-common.mixins.json into net.minecraft.world.entity.projectile.Arrow [12мая2024 17:31:10.098] [pool-4-thread-1/DEBUG] [mixin/]: Mixing MixinExperienceOrb from majruszlibrary-common.mixins.json into net.minecraft.world.entity.ExperienceOrb [12мая2024 17:31:10.114] [pool-4-thread-1/DEBUG] [mixin/]: Mixing ServerPlayerMixin from betterendisland.mixins.json into net.minecraft.server.level.ServerPlayer [12мая2024 17:31:10.116] [pool-4-thread-1/DEBUG] [mixin/]: Mixing MixinServerPlayer from epicfight.mixins.json into net.minecraft.server.level.ServerPlayer [12мая2024 17:31:10.119] [pool-4-thread-1/DEBUG] [mixin/]: Mixing ServerPlayerEntityTickMixin from yungsapi.mixins.json into net.minecraft.server.level.ServerPlayer [12мая2024 17:31:10.121] [pool-4-thread-1/DEBUG] [mixin/]: Mixing ServerPlayerTickMixin from betterdeserttemples.mixins.json into net.minecraft.server.level.ServerPlayer [12мая2024 17:31:10.127] [pool-4-thread-1/DEBUG] [mixin/]: Mixing MixinServerPlayer from majruszlibrary-common.mixins.json into net.minecraft.server.level.ServerPlayer [12мая2024 17:31:10.166] [pool-4-thread-1/DEBUG] [mixin/]: Mixing perf.ticking_chunk_alloc.BatMixin from modernfix-common.mixins.json into net.minecraft.world.entity.ambient.Bat [12мая2024 17:31:10.202] [pool-4-thread-1/DEBUG] [mixin/]: Mixing MixinBee from witherstormmod.mixins.json into net.minecraft.world.entity.animal.Bee [12мая2024 17:31:10.242] [pool-4-thread-1/DEBUG] [mixin/]: Mixing IMixinBreedGoal from majruszlibrary-common.mixins.json into net.minecraft.world.entity.ai.goal.BreedGoal [12мая2024 17:31:10.247] [pool-4-thread-1/DEBUG] [mixin/]: Mixing MixinBeePollinateGoal from witherstormmod.mixins.json into net.minecraft.world.entity.animal.Bee$BeePollinateGoal [12мая2024 17:31:10.262] [pool-4-thread-1/DEBUG] [mixin/]: Mixing BeeGoalMixin from moonlight-common.mixins.json into net.minecraft.world.entity.animal.Bee$BeeGrowCropGoal [12мая2024 17:31:10.297] [pool-4-thread-1/DEBUG] [mixin/]: Mixing entity.misc.MixinBlazeEntity from entity_texture_features-common.mixins.json into net.minecraft.world.entity.monster.Blaze [12мая2024 17:31:10.360] [pool-4-thread-1/DEBUG] [mixin/]: Mixing entity.collisions.unpushable_cramming.BoatMixin from canary.mixins.json into net.minecraft.world.entity.vehicle.Boat [12мая2024 17:31:10.399] [pool-4-thread-1/DEBUG] [mixin/]: Mixing MixinAbstractHorse from majruszlibrary-common.mixins.json into net.minecraft.world.entity.animal.horse.AbstractHorse [12мая2024 17:31:10.442] [pool-4-thread-1/DEBUG] [mixin/]: Mixing MixinTamableAnimal from majruszlibrary-common.mixins.json into net.minecraft.world.entity.TamableAnimal [12мая2024 17:31:10.467] [pool-4-thread-1/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer/COREMOD]: Transforming net/minecraft/world/entity/monster/Spider [12мая2024 17:31:10.509] [pool-4-thread-1/DEBUG] [mixin/]: Mixing MixinAbstractSkeleton from witherstormmod.mixins.json into net.minecraft.world.entity.monster.AbstractSkeleton [12мая2024 17:31:10.620] [pool-4-thread-1/DEBUG] [mixin/]: Mixing IMixinCreeper from majruszsdifficulty-common.mixins.json into net.minecraft.world.entity.monster.Creeper [12мая2024 17:31:10.621] [pool-4-thread-1/DEBUG] [mixin/]: Mixing IMixinCreeper from witherstormmod.mixins.json into net.minecraft.world.entity.monster.Creeper [12мая2024 17:31:10.622] [pool-4-thread-1/DEBUG] [mixin/]: Unexpected: Registered method setExplosionRadius(I)V in net.minecraft.world.entity.monster.Creeper was not merged [12мая2024 17:31:10.629] [pool-4-thread-1/DEBUG] [mixin/]: Mixing MixinSwellGoal from witherstormmod.mixins.json into net.minecraft.world.entity.ai.goal.SwellGoal [12мая2024 17:31:10.634] [pool-4-thread-1/WARN] [mixin/]: @Inject(@At("INVOKE")) Shift.BY=2 on witherstormmod.mixins.json:MixinSwellGoal::handler$cjk000$canUseInvoke exceeds the maximum allowed value: 0. Increase the value of maxShiftBy to suppress this warning. [12мая2024 17:31:10.668] [pool-4-thread-1/DEBUG] [mixin/]: Mixing MixinDragonFireball from witherstormmod.mixins.json into net.minecraft.world.entity.projectile.DragonFireball [12мая2024 17:31:10.685] [pool-4-thread-1/DEBUG] [mixin/]: Mixing lightsource.ExplosiveProjectileEntityMixin from dynamiclightsreforged.mixins.json into net.minecraft.world.entity.projectile.AbstractHurtingProjectile [12мая2024 17:31:10.686] [pool-4-thread-1/DEBUG] [mixin/]: dynamiclightsreforged.mixins.json:lightsource.ExplosiveProjectileEntityMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_8 supports class version 52) [12мая2024 17:31:10.694] [pool-4-thread-1/DEBUG] [mixin/]: Mixing entity.inactive_navigations.DrownedMixin from canary.mixins.json into net.minecraft.world.entity.monster.Drowned [12мая2024 17:31:10.696] [pool-4-thread-1/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer/COREMOD]: Transforming net/minecraft/world/entity/monster/Zombie [12мая2024 17:31:10.806] [pool-4-thread-1/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer/COREMOD]: Transforming net/minecraft/world/entity/monster/Zombie [12мая2024 17:31:11.024] [pool-4-thread-1/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer/COREMOD]: Transforming net/minecraft/world/entity/monster/ZombieVillager [12мая2024 17:31:11.122] [pool-4-thread-1/DEBUG] [mixin/]: Mixing IMixinZombieVillager from witherstormmod.mixins.json into net.minecraft.world.entity.monster.ZombieVillager [12мая2024 17:31:11.264] [pool-4-thread-1/DEBUG] [mixin/]: Mixing entity.inactive_navigations.DrownedGoToBeachGoalMixin from canary.mixins.json into net.minecraft.world.entity.monster.Drowned$DrownedGoToBeachGoal [12мая2024 17:31:11.271] [pool-4-thread-1/DEBUG] [mixin/]: Mixing MixinThrownTrident from epicfight.mixins.json into net.minecraft.world.entity.projectile.ThrownTrident [12мая2024 17:31:11.311] [pool-4-thread-1/DEBUG] [mixin/]: Mixing MixinEndCrystal from epicfight.mixins.json into net.minecraft.world.entity.boss.enderdragon.EndCrystal [12мая2024 17:31:11.360] [pool-4-thread-1/DEBUG] [mixin/]: Mixing ai.raid.RaiderMixin from canary.mixins.json into net.minecraft.world.entity.raid.Raider [12мая2024 17:31:11.361] [pool-4-thread-1/DEBUG] [mixin/]: Renaming synthetic method lambda$static$0(Lnet/minecraft/world/entity/item/ItemEntity;)Z to md359651$lambda$static$0$0 in canary.mixins.json:ai.raid.RaiderMixin [12мая2024 17:31:11.453] [pool-4-thread-1/DEBUG] [mixin/]: Mixing ai.raid.ObtainRaidLeaderBannerGoalMixin from canary.mixins.json into net.minecraft.world.entity.raid.Raider$ObtainRaidLeaderBannerGoal [12мая2024 17:31:11.457] [pool-4-thread-1/DEBUG] [mixin/]: Mixing ai.poi.tasks.RaiderMoveThroughVillageGoalMixin from canary.mixins.json into net.minecraft.world.entity.raid.Raider$RaiderMoveThroughVillageGoal [12мая2024 17:31:11.465] [pool-4-thread-1/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer/COREMOD]: Transforming net/minecraft/world/entity/monster/Evoker$EvokerSummonSpellGoal [12мая2024 17:31:11.669] [pool-4-thread-1/DEBUG] [mixin/]: Mixing FixBlockPlaceContextMixin from moonlight-common.mixins.json into net.minecraft.world.item.context.BlockPlaceContext [12мая2024 17:31:11.762] [pool-4-thread-1/DEBUG] [mixin/]: Mixing MixinFoxBreedGoal from majruszlibrary-common.mixins.json into net.minecraft.world.entity.animal.Fox$FoxBreedGoal [12мая2024 17:31:11.792] [pool-4-thread-1/DEBUG] [mixin/]: Mixing FrogMixin from alexscaves.mixins.json into net.minecraft.world.entity.animal.frog.Frog [12мая2024 17:31:11.861] [pool-4-thread-1/DEBUG] [mixin/]: Mixing entity.replace_entitytype_predicates.ItemFrameMixin from canary.mixins.json into net.minecraft.world.entity.decoration.ItemFrame [12мая2024 17:31:11.861] [pool-4-thread-1/DEBUG] [mixin/]: Renaming synthetic method lambda$getAbstractDecorationEntities$0(Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/entity/decoration/HangingEntity;)Z to md359651$lambda$getAbstractDecorationEntities$0$0 in canary.mixins.json:entity.replace_entitytype_predicates.ItemFrameMixin [12мая2024 17:31:11.882] [pool-4-thread-1/DEBUG] [mixin/]: Mixing entity.misc.MixinGlowSquidEntity from entity_texture_features-common.mixins.json into net.minecraft.world.entity.GlowSquid [12мая2024 17:31:11.927] [pool-4-thread-1/DEBUG] [mixin/]: Mixing allocations.do_nothing.ZoglinMixin from saturn.mixins.json into net.minecraft.world.entity.monster.Zoglin [12мая2024 17:31:11.973] [pool-4-thread-1/DEBUG] [mixin/]: Mixing entity.replace_entitytype_predicates.GolemRandomStrollInVillageGoalMixin from canary.mixins.json into net.minecraft.world.entity.ai.goal.GolemRandomStrollInVillageGoal [12мая2024 17:31:12.006] [pool-4-thread-1/DEBUG] [mixin/]: Mixing entity.replace_entitytype_predicates.LlamaFollowCaravanGoalMixin from canary.mixins.json into net.minecraft.world.entity.ai.goal.LlamaFollowCaravanGoal [12мая2024 17:31:12.007] [pool-4-thread-1/DEBUG] [mixin/]: Renaming synthetic method lambda$getLlamasForCaravan$0(Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/entity/animal/horse/Llama;)Z to md359651$lambda$getLlamasForCaravan$0$0 in canary.mixins.json:entity.replace_entitytype_predicates.LlamaFollowCaravanGoalMixin [12мая2024 17:31:12.041] [pool-4-thread-1/DEBUG] [mixin/]: Mixing accessor.MooshroomEntityAccessor from entity_texture_features-common.mixins.json into net.minecraft.world.entity.animal.MushroomCow [12мая2024 17:31:12.107] [pool-4-thread-1/DEBUG] [mixin/]: Mixing IMixinPhantom from witherstormmod.mixins.json into net.minecraft.world.entity.monster.Phantom [12мая2024 17:31:12.125] [pool-4-thread-1/DEBUG] [mixin/]: Mixing allocations.animal.PigMixin from saturn.mixins.json into net.minecraft.world.entity.animal.Pig [12мая2024 17:31:12.209] [pool-4-thread-1/DEBUG] [mixin/]: Mixing allocations.animal.SheepMixin from saturn.mixins.json into net.minecraft.world.entity.animal.Sheep [12мая2024 17:31:12.235] [pool-4-thread-1/DEBUG] [mixin/]: Mixing IMixinShulkerBullet from witherstormmod.mixins.json into net.minecraft.world.entity.projectile.ShulkerBullet [12мая2024 17:31:12.268] [pool-4-thread-1/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer/COREMOD]: Transforming net/minecraft/world/entity/animal/horse/SkeletonTrapGoal [12мая2024 17:31:12.349] [pool-4-thread-1/DEBUG] [mixin/]: Mixing entity.block.MixinMobSpawnerLogic from entity_texture_features-common.mixins.json into net.minecraft.world.level.BaseSpawner [12мая2024 17:31:12.410] [pool-4-thread-1/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer/COREMOD]: Transforming net/minecraft/world/entity/monster/Strider [12мая2024 17:31:12.485] [pool-4-thread-1/DEBUG] [mixin/]: Mixing allocations.animal.StriderMixin from saturn.mixins.json into net.minecraft.world.entity.monster.Strider [12мая2024 17:31:12.731] [pool-4-thread-1/DEBUG] [mixin/]: Mixing core.SynchedEntityDataMixin from modernfix-common.mixins.json into net.minecraft.network.syncher.SynchedEntityData [12мая2024 17:31:12.732] [pool-4-thread-1/DEBUG] [mixin/]: Mixing entity.data_tracker.use_arrays.SynchedEntityDataMixin from canary.mixins.json into net.minecraft.network.syncher.SynchedEntityData [12мая2024 17:31:12.743] [pool-4-thread-1/DEBUG] [mixin/]: Mixing IMixinSynchedEntityData from witherstormmod.mixins.json into net.minecraft.network.syncher.SynchedEntityData [12мая2024 17:31:12.743] [pool-4-thread-1/DEBUG] [mixin/]: Mixing entity.data_tracker.no_locks.SynchedEntityDataMixin from canary.mixins.json into net.minecraft.network.syncher.SynchedEntityData [12мая2024 17:31:12.744] [pool-4-thread-1/DEBUG] [mixin/]: Mixing entitydata.MixinDataTracker from forge-badoptimizations.mixins.json into net.minecraft.network.syncher.SynchedEntityData [12мая2024 17:31:12.897] [pool-4-thread-1/DEBUG] [mixin/]: Mixing ai.sensor.secondary_poi.SecondaryPoiSensorMixin from canary.mixins.json into net.minecraft.world.entity.ai.sensing.SecondaryPoiSensor [12мая2024 17:31:12.909] [pool-4-thread-1/DEBUG] [mixin/]: Mixing ClayGolemSensorMixin from takesapillage.mixins.json into net.minecraft.world.entity.ai.sensing.GolemSensor [12мая2024 17:31:12.910] [pool-4-thread-1/DEBUG] [mixin/]: Renaming synthetic method lambda$checkForNearbyClayGolem$0(Lnet/minecraft/world/entity/LivingEntity;)Z to md359651$lambda$checkForNearbyClayGolem$0$0 in takesapillage.mixins.json:ClayGolemSensorMixin [12мая2024 17:31:12.967] [pool-4-thread-1/DEBUG] [mixin/]: Mixing perf.ticking_chunk_alloc.ChunkAccessMixin from modernfix-common.mixins.json into net.minecraft.world.level.chunk.ChunkAccess [12мая2024 17:31:12.968] [pool-4-thread-1/DEBUG] [mixin/]: Mixing common.chunk.ChunkAccessMixin from starlight.mixins.json into net.minecraft.world.level.chunk.ChunkAccess [12мая2024 17:31:12.979] [pool-4-thread-1/DEBUG] [mixin/]: Mixing world.inline_block_access.LevelChunkMixin from canary.mixins.json into net.minecraft.world.level.chunk.LevelChunk [12мая2024 17:31:12.986] [pool-4-thread-1/DEBUG] [mixin/]: Mixing common.chunk.LevelChunkMixin from starlight.mixins.json into net.minecraft.world.level.chunk.LevelChunk [12мая2024 17:31:12.989] [pool-4-thread-1/DEBUG] [mixin/]: Mixing LevelChunkMixin from moonlight-common.mixins.json into net.minecraft.world.level.chunk.LevelChunk [12мая2024 17:31:12.990] [pool-4-thread-1/DEBUG] [mixin/]: Mixing world.block_entity_ticking.sleeping.LevelChunkMixin from canary.mixins.json into net.minecraft.world.level.chunk.LevelChunk [12мая2024 17:31:12.992] [pool-4-thread-1/DEBUG] [mixin/]: Mixing world.combined_heightmap_update.LevelChunkMixin from canary.mixins.json into net.minecraft.world.level.chunk.LevelChunk [12мая2024 17:31:12.996] [pool-4-thread-1/DEBUG] [mixin/]: Mixing world.inline_height.LevelChunkMixin from canary.mixins.json into net.minecraft.world.level.chunk.LevelChunk [12мая2024 17:31:13.042] [pool-4-thread-1/DEBUG] [mixin/]: Mixing util.world_border_listener.WorldBorderMixin from canary.mixins.json into net.minecraft.world.level.border.WorldBorder [12мая2024 17:31:13.121] [pool-4-thread-1/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer/COREMOD]: Transforming net/minecraft/world/entity/npc/Villager [12мая2024 17:31:13.227] [pool-4-thread-1/DEBUG] [mixin/]: Mixing VillagerMixin from moonlight-common.mixins.json into net.minecraft.world.entity.npc.Villager [12мая2024 17:31:13.236] [pool-4-thread-1/DEBUG] [mixin/]: Mixing MixinVillager from witherstormmod.mixins.json into net.minecraft.world.entity.npc.Villager [12мая2024 17:31:13.237] [pool-4-thread-1/DEBUG] [mixin/]: Mixing MixinVillager from majruszlibrary-common.mixins.json into net.minecraft.world.entity.npc.Villager [12мая2024 17:31:13.334] [pool-4-thread-1/DEBUG] [mixin/]: Mixing MixinWanderingTrader from majruszlibrary-common.mixins.json into net.minecraft.world.entity.npc.WanderingTrader [12мая2024 17:31:13.460] [pool-4-thread-1/DEBUG] [mixin/]: Mixing MixinFishingHook from witherstormmod.mixins.json into net.minecraft.world.entity.projectile.FishingHook [12мая2024 17:31:13.469] [pool-4-thread-1/DEBUG] [mixin/]: Mixing MixinFishingHook from majruszlibrary-common.mixins.json into net.minecraft.world.entity.projectile.FishingHook [12мая2024 17:31:13.493] [pool-4-thread-1/DEBUG] [mixin/]: Mixing entity.collisions.unpushable_cramming.EntitySelectorMixin from canary.mixins.json into net.minecraft.world.entity.EntitySelector [12мая2024 17:31:13.531] [pool-4-thread-1/DEBUG] [mixin/]: Mixing inject.MixinFoodPropertiesBuilder from architectury-common.mixins.json into net.minecraft.world.food.FoodProperties$Builder [12мая2024 17:31:13.547] [pool-4-thread-1/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer/COREMOD]: Transforming net/minecraft/world/effect/MobEffectInstance [12мая2024 17:31:13.706] [pool-4-thread-1/DEBUG] [mixin/]: Mixing bugfix.forge_vehicle_packets.ServerGamePacketListenerImplMixin from modernfix-forge.mixins.json into net.minecraft.server.network.ServerGamePacketListenerImpl [12мая2024 17:31:13.781] [pool-4-thread-1/DEBUG] [mixin/]: Mixing accessor.PotionBrewingAccessor from yungsapi.mixins.json into net.minecraft.world.item.alchemy.PotionBrewing [12мая2024 17:31:13.781] [pool-4-thread-1/DEBUG] [mixin/]: Renaming @Invoker method callAddMix(Lnet/minecraft/world/item/alchemy/Potion;Lnet/minecraft/world/item/Item;Lnet/minecraft/world/item/alchemy/Potion;)V to callAddMix_$md$359651$0 in yungsapi.mixins.json:accessor.PotionBrewingAccessor [12мая2024 17:31:13.840] [pool-4-thread-1/DEBUG] [mixin/]: Mixing perf.nbt_memory_usage.CompoundTagMixin from modernfix-common.mixins.json into net.minecraft.nbt.CompoundTag [12мая2024 17:31:13.842] [pool-4-thread-1/DEBUG] [mixin/]: Mixing alloc.nbt.CompoundTagMixin from canary.mixins.json into net.minecraft.nbt.CompoundTag [12мая2024 17:31:13.865] [pool-4-thread-1/DEBUG] [mixin/]: Mixing perf.nbt_memory_usage.CompoundTag1Mixin from modernfix-common.mixins.json into net.minecraft.nbt.CompoundTag$1 [12мая2024 17:31:13.870] [pool-4-thread-1/DEBUG] [mixin/]: Mixing alloc.nbt.CompoundTagMixin$Type from canary.mixins.json into net.minecraft.nbt.CompoundTag$1 [12мая2024 17:31:14.087] [pool-4-thread-1/DEBUG] [mixin/]: Generating mapped inner class net/minecraft/world/level/block/entity/BlockEntity$Anonymous$015503ec05fc468c8e930fe3a48d1206 (originally traben/entity_model_features/mixin/MixinBlockEntity$1) [12мая2024 17:31:14.123] [pool-4-thread-1/DEBUG] [mixin/]: Mixing accessor.StructureProcessorAccessor from betterdungeons.mixins.json into net.minecraft.world.level.levelgen.structure.templatesystem.StructureProcessor [12мая2024 17:31:14.124] [pool-4-thread-1/DEBUG] [mixin/]: Mixing accessor.StructureProcessorAccessor from betterwitchhuts.mixins.json into net.minecraft.world.level.levelgen.structure.templatesystem.StructureProcessor [12мая2024 17:31:14.124] [pool-4-thread-1/DEBUG] [mixin/]: Mixing accessor.StructureProcessorAccessor from betteroceanmonuments.mixins.json into net.minecraft.world.level.levelgen.structure.templatesystem.StructureProcessor [12мая2024 17:31:14.124] [pool-4-thread-1/DEBUG] [mixin/]: Mixing accessor.StructureProcessorAccessor from betterdeserttemples.mixins.json into net.minecraft.world.level.levelgen.structure.templatesystem.StructureProcessor [12мая2024 17:31:14.125] [pool-4-thread-1/DEBUG] [mixin/]: Mixing accessor.StructureProcessorAccessor from betterjungletemples.mixins.json into net.minecraft.world.level.levelgen.structure.templatesystem.StructureProcessor [12мая2024 17:31:14.126] [pool-4-thread-1/DEBUG] [mixin/]: Unexpected: Registered method callGetType()Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureProcessorType; in net.minecraft.world.level.levelgen.structure.templatesystem.StructureProcessor was not merged [12мая2024 17:31:14.127] [pool-4-thread-1/DEBUG] [mixin/]: Unexpected: Registered method callGetType()Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureProcessorType; in net.minecraft.world.level.levelgen.structure.templatesystem.StructureProcessor was not merged [12мая2024 17:31:14.127] [pool-4-thread-1/DEBUG] [mixin/]: Unexpected: Registered method callGetType()Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureProcessorType; in net.minecraft.world.level.levelgen.structure.templatesystem.StructureProcessor was not merged [12мая2024 17:31:14.127] [pool-4-thread-1/DEBUG] [mixin/]: Unexpected: Registered method callGetType()Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureProcessorType; in net.minecraft.world.level.levelgen.structure.templatesystem.StructureProcessor was not merged [12мая2024 17:31:14.180] [pool-4-thread-1/DEBUG] [mixin/]: Mixing common.lightengine.LevelLightEngineMixin from starlight.mixins.json into net.minecraft.world.level.lighting.LevelLightEngine [12мая2024 17:31:14.183] [pool-4-thread-1/DEBUG] [mixin/]: Renaming synthetic method lambda$clientUpdateLight$1(J)[Lca/spottedleaf/starlight/common/light/SWMRNibbleArray; to md359651$lambda$clientUpdateLight$1$0 in starlight.mixins.json:common.lightengine.LevelLightEngineMixin [12мая2024 17:31:14.184] [pool-4-thread-1/DEBUG] [mixin/]: Renaming synthetic method lambda$clientUpdateLight$0(J)[Lca/spottedleaf/starlight/common/light/SWMRNibbleArray; to md359651$lambda$clientUpdateLight$0$1 in starlight.mixins.json:common.lightengine.LevelLightEngineMixin [12мая2024 17:31:14.214] [pool-4-thread-1/DEBUG] [mixin/]: Mixing common.lightengine.ThreadedLevelLightEngineMixin from starlight.mixins.json into net.minecraft.server.level.ThreadedLevelLightEngine [12мая2024 17:31:14.215] [pool-4-thread-1/DEBUG] [mixin/]: Renaming synthetic method lambda$lightChunk$7(Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/world/level/chunk/ChunkAccess;Ljava/lang/Throwable;)V to md359651$lambda$lightChunk$7$0 in starlight.mixins.json:common.lightengine.ThreadedLevelLightEngineMixin [12мая2024 17:31:14.215] [pool-4-thread-1/DEBUG] [mixin/]: Renaming synthetic method lambda$lightChunk$6(Lnet/minecraft/world/level/ChunkPos;Ljava/lang/Runnable;)V to md359651$lambda$lightChunk$6$1 in starlight.mixins.json:common.lightengine.ThreadedLevelLightEngineMixin [12мая2024 17:31:14.215] [pool-4-thread-1/DEBUG] [mixin/]: Renaming synthetic method lambda$lightChunk$5(Lnet/minecraft/world/level/chunk/ChunkAccess;ZLnet/minecraft/world/level/ChunkPos;)Lnet/minecraft/world/level/chunk/ChunkAccess; to md359651$lambda$lightChunk$5$2 in starlight.mixins.json:common.lightengine.ThreadedLevelLightEngineMixin [12мая2024 17:31:14.215] [pool-4-thread-1/DEBUG] [mixin/]: Renaming synthetic method lambda$updateSectionStatus$4(Lnet/minecraft/core/SectionPos;Z)Ljava/util/concurrent/CompletableFuture; to md359651$lambda$updateSectionStatus$4$3 in starlight.mixins.json:common.lightengine.ThreadedLevelLightEngineMixin [12мая2024 17:31:14.215] [pool-4-thread-1/DEBUG] [mixin/]: Renaming synthetic method lambda$checkBlock$3(Lnet/minecraft/core/BlockPos;)Ljava/util/concurrent/CompletableFuture; to md359651$lambda$checkBlock$3$4 in starlight.mixins.json:common.lightengine.ThreadedLevelLightEngineMixin [12мая2024 17:31:14.216] [pool-4-thread-1/DEBUG] [mixin/]: Renaming synthetic method lambda$queueTaskForSection$2(IILjava/lang/Void;Ljava/lang/Throwable;)V to md359651$lambda$queueTaskForSection$2$5 in starlight.mixins.json:common.lightengine.ThreadedLevelLightEngineMixin [12мая2024 17:31:14.216] [pool-4-thread-1/DEBUG] [mixin/]: Renaming synthetic method lambda$queueTaskForSection$1(JIILnet/minecraft/server/level/ServerLevel;Ljava/lang/Void;)V to md359651$lambda$queueTaskForSection$1$6 in starlight.mixins.json:common.lightengine.ThreadedLevelLightEngineMixin [12мая2024 17:31:14.217] [pool-4-thread-1/DEBUG] [mixin/]: Renaming synthetic method lambda$queueTaskForSection$0(IIILjava/util/function/Supplier;)V to md359651$lambda$queueTaskForSection$0$7 in starlight.mixins.json:common.lightengine.ThreadedLevelLightEngineMixin [12мая2024 17:31:14.290] [pool-4-thread-1/DEBUG] [mixin/]: Mixing world.combined_heightmap_update.HeightmapAccessor from canary.mixins.json into net.minecraft.world.level.levelgen.Heightmap [12мая2024 17:31:14.323] [pool-4-thread-1/DEBUG] [mixin/]: Mixing perf.cache_upgraded_structures.StructureManagerMixin from modernfix-common.mixins.json into net.minecraft.world.level.levelgen.structure.templatesystem.StructureTemplateManager [12мая2024 17:31:14.328] [pool-4-thread-1/DEBUG] [mixin/]: Mixing perf.dynamic_structure_manager.StructureManagerMixin from modernfix-common.mixins.json into net.minecraft.world.level.levelgen.structure.templatesystem.StructureTemplateManager [12мая2024 17:31:14.384] [pool-4-thread-1/DEBUG] [mixin/]: Mixing ChunkGeneratorMixin from citadel.mixins.json into net.minecraft.world.level.chunk.ChunkGenerator [12мая2024 17:31:14.389] [pool-4-thread-1/DEBUG] [mixin/]: Mixing DisableVanillaWitchHutsMixin from betterwitchhuts.mixins.json into net.minecraft.world.level.chunk.ChunkGenerator [12мая2024 17:31:14.392] [pool-4-thread-1/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer/COREMOD]: Transforming net/minecraft/world/level/levelgen/structure/Structure [12мая2024 17:31:14.408] [pool-4-thread-1/DEBUG] [mixin/]: Mixing DisableVanillaMonumentsMixin from betteroceanmonuments.mixins.json into net.minecraft.world.level.chunk.ChunkGenerator [12мая2024 17:31:14.410] [pool-4-thread-1/DEBUG] [mixin/]: Mixing DisableVanillaPyramidsMixin from betterdeserttemples.mixins.json into net.minecraft.world.level.chunk.ChunkGenerator [12мая2024 17:31:14.410] [pool-4-thread-1/DEBUG] [mixin/]: Mixing DisableVanillaFortressesMixin from betterfortresses.mixins.json into net.minecraft.world.level.chunk.ChunkGenerator [12мая2024 17:31:14.412] [pool-4-thread-1/DEBUG] [mixin/]: Mixing DisableVanillaStrongholdsMixin from betterstrongholds.mixins.json into net.minecraft.world.level.chunk.ChunkGenerator [12мая2024 17:31:14.413] [pool-4-thread-1/DEBUG] [mixin/]: Mixing DisableVanillaMineshaftsMixin from bettermineshafts.mixins.json into net.minecraft.world.level.chunk.ChunkGenerator [12мая2024 17:31:14.416] [pool-4-thread-1/DEBUG] [mixin/]: Mixing DisableVanillaJungleTempleMixin from betterjungletemples.mixins.json into net.minecraft.world.level.chunk.ChunkGenerator [12мая2024 17:31:14.639] [pool-4-thread-1/DEBUG] [mixin/]: Mixing InventoryMixin from moonlight-common.mixins.json into net.minecraft.world.entity.player.Inventory [12мая2024 17:31:14.707] [pool-4-thread-1/DEBUG] [mixin/]: Mixing SlotAccessor from balm.mixins.json into net.minecraft.world.inventory.Slot [12мая2024 17:31:14.733] [pool-4-thread-1/DEBUG] [mixin/]: Mixing GrindstoneMenuSlotMixin from moonlight-common.mixins.json into net.minecraft.world.inventory.GrindstoneMenu$4 [12мая2024 17:31:14.809] [pool-4-thread-1/DEBUG] [mixin/]: Mixing MapExtendingRecipeMixin from moonlight-common.mixins.json into net.minecraft.world.item.crafting.MapExtendingRecipe [12мая2024 17:31:15.199] [pool-4-thread-1/DEBUG] [mixin/]: Mixing MixinBiomes from mixins.oculus.json into net.minecraft.world.level.biome.Biomes [12мая2024 17:31:15.199] [pool-4-thread-1/DEBUG] [mixin/]: mixins.oculus.json:MixinBiomes: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_8 supports class version 52) [12мая2024 17:31:15.299] [pool-4-thread-1/DEBUG] [mixin/]: Mixing IMixinLootPoolSingletonContainer from majruszsdifficulty-common.mixins.json into net.minecraft.world.level.storage.loot.entries.LootPoolSingletonContainer [12мая2024 17:31:15.369] [pool-4-thread-1/DEBUG] [mixin/]: Mixing EnchantRandomlyFunctionMixin from alexscaves.mixins.json into net.minecraft.world.level.storage.loot.functions.EnchantRandomlyFunction [12мая2024 17:31:15.372] [pool-4-thread-1/DEBUG] [mixin/]: Renaming synthetic method lambda$ac_enchantItem$0(ZLnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/enchantment/Enchantment;)Z to md359651$lambda$ac_enchantItem$0$0 in alexscaves.mixins.json:EnchantRandomlyFunctionMixin [12мая2024 17:31:15.400] [pool-4-thread-1/DEBUG] [mixin/]: Mixing MixinLootingEnchantFunction from majruszlibrary-common.mixins.json into net.minecraft.world.level.storage.loot.functions.LootingEnchantFunction [12мая2024 17:31:15.693] [pool-4-thread-1/DEBUG] [mixin/]: Mixing collections.mob_spawning.WeightedRandomListMixin from canary.mixins.json into net.minecraft.util.random.WeightedRandomList [12мая2024 17:31:15.717] [pool-4-thread-1/DEBUG] [mixin/]: Mixing DimensionTypeAccessor from mixins.oculus.json into net.minecraft.world.level.dimension.DimensionType [12мая2024 17:31:15.717] [pool-4-thread-1/DEBUG] [mixin/]: mixins.oculus.json:DimensionTypeAccessor: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_8 supports class version 52) [12мая2024 17:31:15.946] [pool-4-thread-1/DEBUG] [mixin/]: Mixing NoVinesInTemplesMixin from betterjungletemples.mixins.json into net.minecraft.world.level.levelgen.feature.VinesFeature [12мая2024 17:31:15.963] [pool-4-thread-1/DEBUG] [mixin/]: Mixing MultifaceGrowthFeatureMixin from alexscaves.mixins.json into net.minecraft.world.level.levelgen.feature.MultifaceGrowthFeature [12мая2024 17:31:15.967] [pool-4-thread-1/DEBUG] [mixin/]: Mixing NoMagmaInStructuresMixin from betteroceanmonuments.mixins.json into net.minecraft.world.level.levelgen.feature.UnderwaterMagmaFeature [12мая2024 17:31:15.984] [pool-4-thread-1/DEBUG] [mixin/]: Mixing SpikeFeatureMixin from betterendisland.mixins.json into net.minecraft.world.level.levelgen.feature.SpikeFeature [12мая2024 17:31:15.993] [pool-4-thread-1/DEBUG] [mixin/]: Mixing EndGatewayFeatureMixin from betterendisland.mixins.json into net.minecraft.world.level.levelgen.feature.EndGatewayFeature [12мая2024 17:31:15.998] [pool-4-thread-1/DEBUG] [mixin/]: Mixing SeagrassFeatureMixin from alexscaves.mixins.json into net.minecraft.world.level.levelgen.feature.SeagrassFeature [12мая2024 17:31:16.004] [pool-4-thread-1/DEBUG] [mixin/]: Mixing KelpFeatureMixin from alexscaves.mixins.json into net.minecraft.world.level.levelgen.feature.KelpFeature [12мая2024 17:31:16.028] [pool-4-thread-1/DEBUG] [mixin/]: Mixing CoralFeatureMixin from alexscaves.mixins.json into net.minecraft.world.level.levelgen.feature.CoralFeature [12мая2024 17:31:16.043] [pool-4-thread-1/DEBUG] [mixin/]: Mixing NoBasaltColumnsInStructuresMixin from betterdungeons.mixins.json into net.minecraft.world.level.levelgen.feature.BasaltColumnsFeature [12мая2024 17:31:16.046] [pool-4-thread-1/DEBUG] [mixin/]: Mixing NoBasaltColumnsInStructuresMixin from betterfortresses.mixins.json into net.minecraft.world.level.levelgen.feature.BasaltColumnsFeature [12мая2024 17:31:16.056] [pool-4-thread-1/DEBUG] [mixin/]: Mixing NoDeltasInStructuresMixin from betterdungeons.mixins.json into net.minecraft.world.level.levelgen.feature.DeltaFeature [12мая2024 17:31:16.057] [pool-4-thread-1/DEBUG] [mixin/]: Mixing NoDeltasInStructuresMixin from betterfortresses.mixins.json into net.minecraft.world.level.levelgen.feature.DeltaFeature [12мая2024 17:31:16.457] [pool-4-thread-1/DEBUG] [mixin/]: Mixing EndSpikeMixin from betterendisland.mixins.json into net.minecraft.world.level.levelgen.feature.SpikeFeature$EndSpike [12мая2024 17:31:16.609] [pool-4-thread-1/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer/COREMOD]: Transforming net/minecraft/world/level/levelgen/structure/Structure [12мая2024 17:31:16.727] [pool-4-thread-1/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer/COREMOD]: Transforming net/minecraft/world/level/levelgen/structure/structures/OceanRuinPieces$OceanRuinPiece [12мая2024 17:31:16.761] [pool-4-thread-1/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer/COREMOD]: Transforming net/minecraft/world/level/levelgen/structure/structures/SwampHutPiece [12мая2024 17:31:16.781] [pool-4-thread-1/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer/COREMOD]: Transforming net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentPiece [12мая2024 17:31:16.871] [pool-4-thread-1/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer/COREMOD]: Transforming net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$WoodlandMansionPiece [12мая2024 17:31:16.919] [pool-4-thread-1/DEBUG] [mixin/]: Mixing collections.mob_spawning.MobSpawnSettingsMixin from canary.mixins.json into net.minecraft.world.level.biome.MobSpawnSettings [12мая2024 17:31:16.953] [pool-4-thread-1/DEBUG] [mixin/]: Mixing JigsawStructureMixin from alexscaves.mixins.json into net.minecraft.world.level.levelgen.structure.structures.JigsawStructure [12мая2024 17:31:16.961] [pool-4-thread-1/DEBUG] [mixin/]: Mixing StructureTemplatePoolAccessor from waystones.mixins.json into net.minecraft.world.level.levelgen.structure.pools.StructureTemplatePool [12мая2024 17:31:16.962] [pool-4-thread-1/DEBUG] [mixin/]: Mixing accessor.StructureTemplatePoolAccessor from yungsapi.mixins.json into net.minecraft.world.level.levelgen.structure.pools.StructureTemplatePool [12мая2024 17:31:16.963] [pool-4-thread-1/DEBUG] [mixin/]: Mixing IncreaseStructureWeightLimitMixinForge from yungsapi_forge.mixins.json into net.minecraft.world.level.levelgen.structure.pools.StructureTemplatePool [12мая2024 17:31:16.964] [pool-4-thread-1/DEBUG] [mixin/]: Unexpected: Registered method getRawTemplates()Ljava/util/List; in net.minecraft.world.level.levelgen.structure.pools.StructureTemplatePool was not merged [12мая2024 17:31:16.995] [pool-4-thread-1/DEBUG] [mixin/]: Mixing OceanMonumentStructureMixin from alexscaves.mixins.json into net.minecraft.world.level.levelgen.structure.structures.OceanMonumentStructure [12мая2024 17:31:17.018] [pool-4-thread-1/DEBUG] [mixin/]: Mixing ShipwreckStructureMixin from alexscaves.mixins.json into net.minecraft.world.level.levelgen.structure.structures.ShipwreckStructure [12мая2024 17:31:17.171] [pool-4-thread-1/DEBUG] [mixin/]: Mixing BiomeSourceMixin from citadel.mixins.json into net.minecraft.world.level.biome.BiomeSource [12мая2024 17:31:17.186] [pool-4-thread-1/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer/COREMOD]: Transforming net/minecraft/world/level/biome/Biome [12мая2024 17:31:17.186] [pool-4-thread-1/DEBUG] [mixin/]: Mixing MixinBiome from mixins.oculus.json into net.minecraft.world.level.biome.Biome [12мая2024 17:31:17.187] [pool-4-thread-1/DEBUG] [mixin/]: mixins.oculus.json:MixinBiome: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_8 supports class version 52) [12мая2024 17:31:17.188] [pool-4-thread-1/DEBUG] [mixin/]: Mixing leaks.biome_temperature_cache.BiomeMixin from saturn.mixins.json into net.minecraft.world.level.biome.Biome [12мая2024 17:31:17.188] [pool-4-thread-1/DEBUG] [mixin/]: Mixing features.world.biome.BiomeMixin from rubidium.mixins.json into net.minecraft.world.level.biome.Biome [12мая2024 17:31:17.194] [pool-4-thread-1/DEBUG] [mixin/]: Mixing perf.remove_biome_temperature_cache.BiomeMixin from modernfix-common.mixins.json into net.minecraft.world.level.biome.Biome [12мая2024 17:31:17.199] [pool-4-thread-1/DEBUG] [mixin/]: Mixing world.chunk_ticking.spread_ice.BiomeMixin from canary.mixins.json into net.minecraft.world.level.biome.Biome [12мая2024 17:31:17.205] [pool-4-thread-1/WARN] [mixin/]: Method overwrite conflict for m_47505_ in modernfix-common.mixins.json:perf.remove_biome_temperature_cache.BiomeMixin, previously written by com.abdelaziz.saturn.mixin.leaks.biome_temperature_cache.BiomeMixin. Skipping method. [12мая2024 17:31:17.220] [pool-4-thread-1/DEBUG] [mixin/]: Unexpected: Registered method m_47505_(Lnet/minecraft/core/BlockPos;)F in net.minecraft.world.level.biome.Biome was not merged [12мая2024 17:31:17.342] [pool-4-thread-1/DEBUG] [mixin/]: Mixing MultiNoiseBiomeSourceMixin from citadel.mixins.json into net.minecraft.world.level.biome.MultiNoiseBiomeSource [12мая2024 17:31:17.433] [pool-4-thread-1/DEBUG] [mixin/]: Mixing NoiseBasedChunkGeneratorMixin from citadel.mixins.json into net.minecraft.world.level.levelgen.NoiseBasedChunkGenerator [12мая2024 17:31:17.882] [pool-4-thread-1/DEBUG] [mixin/]: Mixing SinglePoolElementMixin from waystones.mixins.json into net.minecraft.world.level.levelgen.structure.pools.SinglePoolElement [12мая2024 17:31:17.887] [pool-4-thread-1/DEBUG] [mixin/]: Mixing accessor.SinglePoolElementAccessor from yungsapi.mixins.json into net.minecraft.world.level.levelgen.structure.pools.SinglePoolElement [12мая2024 17:31:17.906] [pool-4-thread-1/DEBUG] [mixin/]: Mixing accessor.ListPoolElementAccessor from yungsapi.mixins.json into net.minecraft.world.level.levelgen.structure.pools.ListPoolElement [12мая2024 17:31:17.911] [pool-4-thread-1/DEBUG] [mixin/]: Mixing accessor.FeaturePoolElementAccessor from yungsapi.mixins.json into net.minecraft.world.level.levelgen.structure.pools.FeaturePoolElement [12мая2024 17:31:18.156] [main/DEBUG] [mixin/]: Mixing blockrenderlayer.RenderLayerMixin from mixins.satin.client.json into net.minecraft.client.renderer.RenderType [12мая2024 17:31:18.157] [main/DEBUG] [mixin/]: mixins.satin.client.json:blockrenderlayer.RenderLayerMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) [12мая2024 17:31:18.158] [main/DEBUG] [mixin/]: Mixing render.RenderLayerAccessor from mixins.satin.client.json into net.minecraft.client.renderer.RenderType [12мая2024 17:31:18.159] [main/DEBUG] [mixin/]: mixins.satin.client.json:render.RenderLayerAccessor: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) [12мая2024 17:31:18.160] [main/DEBUG] [mixin/]: Renaming @Invoker method satin$of(Ljava/lang/String;Lcom/mojang/blaze3d/vertex/VertexFormat;Lcom/mojang/blaze3d/vertex/VertexFormat$Mode;IZZLnet/minecraft/client/renderer/RenderType$CompositeState;)Lnet/minecraft/client/renderer/RenderType$CompositeRenderType; to satin$of_$md$359651$0 in mixins.satin.client.json:render.RenderLayerAccessor [12мая2024 17:31:18.160] [main/DEBUG] [mixin/]: Mixing render.RenderLayerMixin from mixins.satin.client.json into net.minecraft.client.renderer.RenderType [12мая2024 17:31:18.160] [main/DEBUG] [mixin/]: mixins.satin.client.json:render.RenderLayerMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) [12мая2024 17:31:18.160] [main/DEBUG] [mixin/]: Mixing MixinRenderLayer from entity_texture_features-common.mixins.json into net.minecraft.client.renderer.RenderType [12мая2024 17:31:18.161] [main/DEBUG] [mixin/]: Mixing rendertype.RenderTypeAccessor from mixins.oculus.json into net.minecraft.client.renderer.RenderType [12мая2024 17:31:18.161] [main/DEBUG] [mixin/]: mixins.oculus.json:rendertype.RenderTypeAccessor: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_8 supports class version 52) [12мая2024 17:31:18.161] [main/DEBUG] [mixin/]: Mixing MixinRenderType from oculus-batched-entity-rendering.mixins.json into net.minecraft.client.renderer.RenderType [12мая2024 17:31:18.161] [main/DEBUG] [mixin/]: oculus-batched-entity-rendering.mixins.json:MixinRenderType: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_8 supports class version 52) [12мая2024 17:31:18.163] [main/DEBUG] [mixin/]: Mixing RenderTypeAccessor from oculus-batched-entity-rendering.mixins.json into net.minecraft.client.renderer.RenderType [12мая2024 17:31:18.163] [main/DEBUG] [mixin/]: oculus-batched-entity-rendering.mixins.json:RenderTypeAccessor: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_8 supports class version 52) [12мая2024 17:31:18.163] [main/DEBUG] [mixin/]: Mixing MixinRenderType from witherstormmod.mixins.json into net.minecraft.client.renderer.RenderType [12мая2024 17:31:18.174] [main/DEBUG] [mixin/]: Unexpected: Registered method shouldSortOnUpload()Z in net.minecraft.client.renderer.RenderType was not merged [12мая2024 17:31:18.185] [main/DEBUG] [mixin/]: Mixing render.RenderPhaseAccessor from mixins.satin.client.json into net.minecraft.client.renderer.RenderStateShard [12мая2024 17:31:18.185] [main/DEBUG] [mixin/]: mixins.satin.client.json:render.RenderPhaseAccessor: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) [12мая2024 17:31:18.185] [main/DEBUG] [mixin/]: Mixing rendertype.RenderStateShardAccessor from mixins.oculus.json into net.minecraft.client.renderer.RenderStateShard [12мая2024 17:31:18.185] [main/DEBUG] [mixin/]: mixins.oculus.json:rendertype.RenderStateShardAccessor: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_8 supports class version 52) [12мая2024 17:31:18.185] [main/DEBUG] [mixin/]: Renaming @Accessor method getTranslucentTransparency()Lnet/minecraft/client/renderer/RenderStateShard$TransparencyStateShard; to getTranslucentTransparency_$md$359651$0 in mixins.oculus.json:rendertype.RenderStateShardAccessor [12мая2024 17:31:18.185] [main/DEBUG] [mixin/]: Mixing RenderStateShardAccessor from oculus-batched-entity-rendering.mixins.json into net.minecraft.client.renderer.RenderStateShard [12мая2024 17:31:18.186] [main/DEBUG] [mixin/]: oculus-batched-entity-rendering.mixins.json:RenderStateShardAccessor: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_8 supports class version 52) [12мая2024 17:31:18.186] [main/DEBUG] [mixin/]: Renaming @Accessor method getNO_TRANSPARENCY()Lnet/minecraft/client/renderer/RenderStateShard$TransparencyStateShard; to getNO_TRANSPARENCY_$md$359651$1 in oculus-batched-entity-rendering.mixins.json:RenderStateShardAccessor [12мая2024 17:31:18.186] [main/DEBUG] [mixin/]: Renaming @Accessor method getGLINT_TRANSPARENCY()Lnet/minecraft/client/renderer/RenderStateShard$TransparencyStateShard; to getGLINT_TRANSPARENCY_$md$359651$2 in oculus-batched-entity-rendering.mixins.json:RenderStateShardAccessor [12мая2024 17:31:18.186] [main/DEBUG] [mixin/]: Renaming @Accessor method getCRUMBLING_TRANSPARENCY()Lnet/minecraft/client/renderer/RenderStateShard$TransparencyStateShard; to getCRUMBLING_TRANSPARENCY_$md$359651$3 in oculus-batched-entity-rendering.mixins.json:RenderStateShardAccessor [12мая2024 17:31:18.187] [main/DEBUG] [mixin/]: Unexpected: Registered method getName()Ljava/lang/String; in net.minecraft.client.renderer.RenderStateShard was not merged [12мая2024 17:31:18.208] [main/DEBUG] [mixin/]: Mixing render.RenderLayerMultiPhaseMixin from mixins.satin.client.json into net.minecraft.client.renderer.RenderType$CompositeRenderType [12мая2024 17:31:18.208] [main/DEBUG] [mixin/]: mixins.satin.client.json:render.RenderLayerMultiPhaseMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) [12мая2024 17:31:18.210] [main/DEBUG] [mixin/]: Mixing MixinMultiPhase from entity_texture_features-common.mixins.json into net.minecraft.client.renderer.RenderType$CompositeRenderType [12мая2024 17:31:18.212] [main/DEBUG] [mixin/]: Mixing MixinCompositeRenderType from oculus-batched-entity-rendering.mixins.json into net.minecraft.client.renderer.RenderType$CompositeRenderType [12мая2024 17:31:18.212] [main/DEBUG] [mixin/]: oculus-batched-entity-rendering.mixins.json:MixinCompositeRenderType: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_8 supports class version 52) [12мая2024 17:31:18.242] [main/DEBUG] [mixin/]: Mixing GameRendererMixin from moonlight-common.mixins.json into net.minecraft.client.renderer.GameRenderer [12мая2024 17:31:18.243] [main/DEBUG] [mixin/]: Mixing event.GameRendererMixin from mixins.satin.client.json into net.minecraft.client.renderer.GameRenderer [12мая2024 17:31:18.244] [main/DEBUG] [mixin/]: mixins.satin.client.json:event.GameRendererMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) [12мая2024 17:31:18.244] [main/DEBUG] [mixin/]: Renaming synthetic method lambda$useCustomEntityShader$1()Lnet/minecraft/client/renderer/PostChain; to md359651$lambda$useCustomEntityShader$1$0 in mixins.satin.client.json:event.GameRendererMixin [12мая2024 17:31:18.244] [main/DEBUG] [mixin/]: Renaming synthetic method lambda$useCustomEntityShader$0(Lnet/minecraft/resources/ResourceLocation;)V to md359651$lambda$useCustomEntityShader$0$1 in mixins.satin.client.json:event.GameRendererMixin [12мая2024 17:31:18.246] [main/DEBUG] [mixin/]: Mixing features.gui.hooks.console.GameRendererMixin from rubidium.mixins.json into net.minecraft.client.renderer.GameRenderer [12мая2024 17:31:18.249] [main/DEBUG] [mixin/]: Mixing perf.faster_item_rendering.GameRendererMixin from modernfix-common.mixins.json into net.minecraft.client.renderer.GameRenderer [12мая2024 17:31:18.250] [main/DEBUG] [mixin/]: Mixing MixinGameRendererAccessor from crackerslib.mixins.json into net.minecraft.client.renderer.GameRenderer [12мая2024 17:31:18.250] [main/DEBUG] [mixin/]: Mixing GameRendererMixin from forge-sfcr-common.mixins.json into net.minecraft.client.renderer.GameRenderer [12мая2024 17:31:18.250] [main/DEBUG] [mixin/]: forge-sfcr-common.mixins.json:GameRendererMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_8 supports class version 52) [12мая2024 17:31:18.252] [main/DEBUG] [mixin/]: Mixing MixinGameRenderer from entity_model_features-common.mixins.json into net.minecraft.client.renderer.GameRenderer [12мая2024 17:31:18.253] [main/DEBUG] [mixin/]: Mixing client.GameRendererMixin from alexscaves.mixins.json into net.minecraft.client.renderer.GameRenderer [12мая2024 17:31:18.260] [main/DEBUG] [mixin/]: Mixing GameRendererAccessor from mixins.oculus.json into net.minecraft.client.renderer.GameRenderer [12мая2024 17:31:18.260] [main/DEBUG] [mixin/]: mixins.oculus.json:GameRendererAccessor: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_8 supports class version 52) [12мая2024 17:31:18.260] [main/DEBUG] [mixin/]: Mixing MixinGameRenderer from mixins.oculus.json into net.minecraft.client.renderer.GameRenderer [12мая2024 17:31:18.261] [main/DEBUG] [mixin/]: mixins.oculus.json:MixinGameRenderer: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_8 supports class version 52) [12мая2024 17:31:18.287] [main/DEBUG] [mixin/]: Mixing MixinModelViewBobbing from mixins.oculus.json into net.minecraft.client.renderer.GameRenderer [12мая2024 17:31:18.287] [main/DEBUG] [mixin/]: mixins.oculus.json:MixinModelViewBobbing: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_8 supports class version 52) [12мая2024 17:31:18.293] [main/DEBUG] [mixin/]: Mixing IMixinGameRenderer from witherstormmod.mixins.json into net.minecraft.client.renderer.GameRenderer [12мая2024 17:31:18.294] [main/DEBUG] [mixin/]: Mixing MixinGameRenderer from witherstormmod.mixins.json into net.minecraft.client.renderer.GameRenderer [12мая2024 17:31:18.294] [main/DEBUG] [mixin/]: Renaming synthetic method lambda$bobViewTail$0(FLcom/mojang/blaze3d/vertex/PoseStack;Lnonamecrackers2/witherstormmod/client/capability/PlayerCameraShaker;)V to md359651$lambda$bobViewTail$0$2 in witherstormmod.mixins.json:MixinGameRenderer [12мая2024 17:31:18.305] [main/DEBUG] [mixin/]: Mixing core.compat.MixinGameRenderer from immediatelyfast-common.mixins.json into net.minecraft.client.renderer.GameRenderer [12мая2024 17:31:18.314] [main/DEBUG] [mixin/]: Mixing MixinGameRenderer_NightVisionCompat from mixins.oculus.json into net.minecraft.client.renderer.GameRenderer [12мая2024 17:31:18.315] [main/DEBUG] [mixin/]: mixins.oculus.json:MixinGameRenderer_NightVisionCompat: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_8 supports class version 52) [12мая2024 17:31:18.319] [main/DEBUG] [mixin/]: Mixing accessor.GameRendererAccessor from forge-badoptimizations.mixins.json into net.minecraft.client.renderer.GameRenderer [12мая2024 17:31:18.320] [main/DEBUG] [mixin/]: Mixing tick.MixinGameRenderer from forge-badoptimizations.mixins.json into net.minecraft.client.renderer.GameRenderer [12мая2024 17:31:18.499] [main/DEBUG] [mixin/]: Mixing core.MixinVertexConsumerProvider from immediatelyfast-common.mixins.json into net.minecraft.client.renderer.MultiBufferSource [12мая2024 17:31:18.506] [main/DEBUG] [mixin/]: Mixing MixinLocalPlayer from epicfight.mixins.json into net.minecraft.client.player.LocalPlayer [12мая2024 17:31:18.508] [main/DEBUG] [mixin/]: Mixing client.LocalPlayerMixin from alexscaves.mixins.json into net.minecraft.client.player.LocalPlayer [12мая2024 17:31:18.520] [main/DEBUG] [mixin/]: Mixing LocalPlayerMixin from sound_physics_remastered.mixins.json into net.minecraft.client.player.LocalPlayer [12мая2024 17:31:18.553] [main/DEBUG] [mixin/]: Mixing client.AbstractClientPlayerMixin from citadel.mixins.json into net.minecraft.client.player.AbstractClientPlayer [12мая2024 17:31:18.556] [main/DEBUG] [mixin/]: Mixing texture.AbstractClientPlayerMixin from klmaster.mixins.json into net.minecraft.client.player.AbstractClientPlayer [12мая2024 17:31:18.556] [main/DEBUG] [mixin/]: klmaster.mixins.json:texture.AbstractClientPlayerMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_8 supports class version 52) [12мая2024 17:31:18.559] [main/DEBUG] [mixin/]: Mixing renderer.entity.MixinClientPlayer from forge-badoptimizations.mixins.json into net.minecraft.client.player.AbstractClientPlayer [12мая2024 17:31:18.580] [main/DEBUG] [mixin/]: Mixing ClientWorldMixin from dynamiclightsreforged.mixins.json into net.minecraft.client.multiplayer.ClientLevel [12мая2024 17:31:18.580] [main/DEBUG] [mixin/]: dynamiclightsreforged.mixins.json:ClientWorldMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_8 supports class version 52) [12мая2024 17:31:18.581] [main/DEBUG] [mixin/]: Mixing client.ClientLevelMixin from citadel.mixins.json into net.minecraft.client.multiplayer.ClientLevel [12мая2024 17:31:18.585] [main/DEBUG] [mixin/]: Mixing core.world.biome.ClientWorldMixin from rubidium.mixins.json into net.minecraft.client.multiplayer.ClientLevel [12мая2024 17:31:18.590] [main/DEBUG] [mixin/]: Mixing core.world.map.ClientWorldMixin from rubidium.mixins.json into net.minecraft.client.multiplayer.ClientLevel [12мая2024 17:31:18.591] [main/DEBUG] [mixin/]: Mixing client.world.ClientLevelMixin from starlight.mixins.json into net.minecraft.client.multiplayer.ClientLevel [12мая2024 17:31:18.595] [main/DEBUG] [mixin/]: Mixing client.ClientLevelMixin from alexscaves.mixins.json into net.minecraft.client.multiplayer.ClientLevel [12мая2024 17:31:18.598] [main/DEBUG] [mixin/]: Mixing block_rendering.MixinClientLevel from mixins.oculus.vertexformat.json into net.minecraft.client.multiplayer.ClientLevel [12мая2024 17:31:18.599] [main/DEBUG] [mixin/]: mixins.oculus.vertexformat.json:block_rendering.MixinClientLevel: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_8 supports class version 52) [12мая2024 17:31:18.599] [main/DEBUG] [mixin/]: Mixing ClientWorldMixin from entityculling.mixins.json into net.minecraft.client.multiplayer.ClientLevel [12мая2024 17:31:18.600] [main/DEBUG] [mixin/]: entityculling.mixins.json:ClientWorldMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) [12мая2024 17:31:18.612] [main/DEBUG] [mixin/]: Mixing chunk.entity_class_groups.ClientLevelMixin from canary.mixins.json into net.minecraft.client.multiplayer.ClientLevel [12мая2024 17:31:18.613] [main/DEBUG] [mixin/]: Mixing MixinClientLevel from witherstormmod.mixins.json into net.minecraft.client.multiplayer.ClientLevel [12мая2024 17:31:18.619] [main/DEBUG] [mixin/]: Mixing MixinClientLevel from architectury.mixins.json into net.minecraft.client.multiplayer.ClientLevel [12мая2024 17:31:18.621] [main/DEBUG] [mixin/]: Mixing MixinClientLevel from majruszlibrary-common.mixins.json into net.minecraft.client.multiplayer.ClientLevel [12мая2024 17:31:18.622] [main/DEBUG] [mixin/]: Renaming synthetic method lambda$majruszlibrary$delayExecution$1(Ljava/lang/Class;Ljava/util/function/Consumer;Ljava/lang/Integer;)Ljava/util/function/Consumer; to md359651$lambda$majruszlibrary$delayExecution$1$0 in majruszlibrary-common.mixins.json:MixinClientLevel [12мая2024 17:31:18.623] [main/DEBUG] [mixin/]: Renaming synthetic method lambda$majruszlibrary$delayExecution$0(Ljava/lang/Class;Ljava/util/function/Consumer;Lnet/minecraft/world/entity/Entity;)V to md359651$lambda$majruszlibrary$delayExecution$0$1 in majruszlibrary-common.mixins.json:MixinClientLevel [12мая2024 17:31:18.624] [main/DEBUG] [mixin/]: Mixing ClientLevelMixin from sound_physics_remastered.mixins.json into net.minecraft.client.multiplayer.ClientLevel [12мая2024 17:31:18.625] [main/DEBUG] [mixin/]: Mixing tick.MixinClientWorld from forge-badoptimizations.mixins.json into net.minecraft.client.multiplayer.ClientLevel [12мая2024 17:31:18.787] [main/DEBUG] [mixin/]: Mixing gl.CoreShaderMixin from mixins.satin.client.json into net.minecraft.client.renderer.ShaderInstance [12мая2024 17:31:18.788] [main/DEBUG] [mixin/]: mixins.satin.client.json:gl.CoreShaderMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) [12мая2024 17:31:18.789] [main/DEBUG] [mixin/]: Mixing features.shader.uniform.ShaderProgramMixin from rubidium.mixins.json into net.minecraft.client.renderer.ShaderInstance [12мая2024 17:31:18.802] [main/DEBUG] [mixin/]: Mixing MixinShaderInstance from mixins.oculus.json into net.minecraft.client.renderer.ShaderInstance [12мая2024 17:31:18.804] [main/DEBUG] [mixin/]: mixins.oculus.json:MixinShaderInstance: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_8 supports class version 52) [12мая2024 17:31:18.864] [main/DEBUG] [mixin/]: Mixing features.textures.animations.tracking.SpriteAtlasTextureMixin from rubidium.mixins.json into net.minecraft.client.renderer.texture.TextureAtlas [12мая2024 17:31:18.867] [main/DEBUG] [mixin/]: Mixing texture.TextureAtlasAccessor from mixins.oculus.json into net.minecraft.client.renderer.texture.TextureAtlas [12мая2024 17:31:18.867] [main/DEBUG] [mixin/]: mixins.oculus.json:texture.TextureAtlasAccessor: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_8 supports class version 52) [12мая2024 17:31:18.872] [main/DEBUG] [mixin/]: Mixing texture.pbr.MixinTextureAtlas from mixins.oculus.json into net.minecraft.client.renderer.texture.TextureAtlas [12мая2024 17:31:18.873] [main/DEBUG] [mixin/]: mixins.oculus.json:texture.pbr.MixinTextureAtlas: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_8 supports class version 52) [12мая2024 17:31:18.876] [main/DEBUG] [mixin/]: Mixing MixinTextureAtlas from witherstormmod.mixins.json into net.minecraft.client.renderer.texture.TextureAtlas [12мая2024 17:31:18.925] [main/DEBUG] [mixin/]: Mixing MixinInventoryMenu from fastbench.mixins.json into net.minecraft.world.inventory.InventoryMenu [12мая2024 17:31:18.928] [main/DEBUG] [mixin/]: Mixing MixinInventoryMenu from majruszlibrary-common.mixins.json into net.minecraft.world.inventory.InventoryMenu [12мая2024 17:31:19.012] [main/DEBUG] [mixin/]: Mixing MixinVertexFormatElement from mixins.oculus.vertexformat.json into com.mojang.blaze3d.vertex.VertexFormatElement [12мая2024 17:31:19.012] [main/DEBUG] [mixin/]: mixins.oculus.vertexformat.json:MixinVertexFormatElement: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_8 supports class version 52) [12мая2024 17:31:19.042] [main/DEBUG] [mixin/]: Mixing core.render.VertexFormatAccessor from rubidium.mixins.json into com.mojang.blaze3d.vertex.VertexFormat [12мая2024 17:31:19.042] [main/DEBUG] [mixin/]: Mixing MixinVertexFormat from mixins.oculus.vertexformat.json into com.mojang.blaze3d.vertex.VertexFormat [12мая2024 17:31:19.042] [main/DEBUG] [mixin/]: mixins.oculus.vertexformat.json:MixinVertexFormat: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_8 supports class version 52) [12мая2024 17:31:19.058] [main/DEBUG] [mixin/]: Mixing render.RenderLayerMixin$MultiPhaseParametersAccessor from mixins.satin.client.json into net.minecraft.client.renderer.RenderType$CompositeState [12мая2024 17:31:19.058] [main/DEBUG] [mixin/]: mixins.satin.client.json:render.RenderLayerMixin$MultiPhaseParametersAccessor: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) [12мая2024 17:31:19.062] [main/DEBUG] [mixin/]: Mixing CompositeStateAccessor from oculus-batched-entity-rendering.mixins.json into net.minecraft.client.renderer.RenderType$CompositeState [12мая2024 17:31:19.063] [main/DEBUG] [mixin/]: oculus-batched-entity-rendering.mixins.json:CompositeStateAccessor: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_8 supports class version 52) [12мая2024 17:31:19.064] [main/DEBUG] [mixin/]: Unexpected: Registered method getTransparency()Lnet/minecraft/client/renderer/RenderStateShard$TransparencyStateShard; in net.minecraft.client.renderer.RenderType$CompositeState was not merged [12мая2024 17:31:19.096] [main/DEBUG] [mixin/]: Mixing perf.faster_item_rendering.ItemRendererMixin from modernfix-common.mixins.json into net.minecraft.client.renderer.entity.ItemRenderer [12мая2024 17:31:19.103] [main/DEBUG] [mixin/]: Mixing features.render.model.item.ItemRendererMixin from rubidium.mixins.json into net.minecraft.client.renderer.entity.ItemRenderer [12мая2024 17:31:19.110] [main/DEBUG] [mixin/]: Mixing perf.dynamic_resources.ItemRendererMixin from modernfix-common.mixins.json into net.minecraft.client.renderer.entity.ItemRenderer [12мая2024 17:31:19.110] [main/DEBUG] [mixin/]: Mixing entity_render_context.MixinItemRenderer from mixins.oculus.json into net.minecraft.client.renderer.entity.ItemRenderer [12мая2024 17:31:19.110] [main/DEBUG] [mixin/]: mixins.oculus.json:entity_render_context.MixinItemRenderer: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_8 supports class version 52) [12мая2024 17:31:19.148] [main/DEBUG] [mixin/]: Mixing perf.dynamic_resources.ItemModelShaperMixin from modernfix-common.mixins.json into net.minecraft.client.renderer.ItemModelShaper [12мая2024 17:31:19.148] [main/DEBUG] [mixin/]: Renaming synthetic method lambda$replaceLocationMap$1(Ljava/lang/Integer;)Lnet/minecraft/client/resources/model/BakedModel; to md359651$lambda$replaceLocationMap$1$0 in modernfix-common.mixins.json:perf.dynamic_resources.ItemModelShaperMixin [12мая2024 17:31:19.148] [main/DEBUG] [mixin/]: Renaming synthetic method lambda$new$0(Ljava/lang/Object;)Lnet/minecraft/client/resources/model/BakedModel; to md359651$lambda$new$0$1 in modernfix-common.mixins.json:perf.dynamic_resources.ItemModelShaperMixin [12мая2024 17:31:19.175] [main/DEBUG] [mixin/]: Mixing perf.dynamic_resources.ItemModelMesherForgeMixin from modernfix-forge.mixins.json into net.minecraftforge.client.model.ForgeItemModelShaper [12мая2024 17:31:19.176] [main/DEBUG] [mixin/]: Renaming synthetic method lambda$new$0(Ljava/lang/Object;)Lnet/minecraft/client/resources/model/BakedModel; to md359651$lambda$new$0$0 in modernfix-forge.mixins.json:perf.dynamic_resources.ItemModelMesherForgeMixin [12мая2024 17:31:19.195] [main/DEBUG] [mixin/]: Mixing ModelResourceLocationMixin from ferritecore.mrl.mixin.json into net.minecraft.client.resources.model.ModelResourceLocation [12мая2024 17:31:19.223] [main/DEBUG] [mixin/]: Mixing MixinTheEndPortalRenderer from mixins.oculus.json into net.minecraft.client.renderer.blockentity.TheEndPortalRenderer [12мая2024 17:31:19.224] [main/DEBUG] [mixin/]: mixins.oculus.json:MixinTheEndPortalRenderer: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_8 supports class version 52) [12мая2024 17:31:19.347] [Render thread/DEBUG] [mixin/]: Mixing workarounds.event_loop.RenderSystemMixin from rubidium.mixins.json into com.mojang.blaze3d.systems.RenderSystem [12мая2024 17:31:19.348] [Render thread/DEBUG] [mixin/]: Mixing MixinGlStateManager from mixins.oculus.json into com.mojang.blaze3d.systems.RenderSystem [12мая2024 17:31:19.348] [Render thread/DEBUG] [mixin/]: mixins.oculus.json:MixinGlStateManager: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_8 supports class version 52) [12мая2024 17:31:19.348] [Render thread/DEBUG] [mixin/]: Mixing MixinRenderSystem from mixins.oculus.json into com.mojang.blaze3d.systems.RenderSystem [12мая2024 17:31:19.348] [Render thread/DEBUG] [mixin/]: mixins.oculus.json:MixinRenderSystem: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_8 supports class version 52) [12мая2024 17:31:19.373] [Render thread/DEBUG] [mixin/]: Mixing statelisteners.MixinRenderSystem from mixins.oculus.json into com.mojang.blaze3d.systems.RenderSystem [12мая2024 17:31:19.374] [Render thread/DEBUG] [mixin/]: mixins.oculus.json:statelisteners.MixinRenderSystem: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_8 supports class version 52) [12мая2024 17:31:19.374] [Render thread/DEBUG] [mixin/]: Renaming synthetic method lambda$static$1(Ljava/lang/Runnable;)V to md359651$lambda$static$1$0 in mixins.oculus.json:statelisteners.MixinRenderSystem [12мая2024 17:31:19.374] [Render thread/DEBUG] [mixin/]: Renaming synthetic method lambda$static$0(Ljava/lang/Runnable;)V to md359651$lambda$static$0$1 in mixins.oculus.json:statelisteners.MixinRenderSystem [12мая2024 17:31:19.375] [Render thread/DEBUG] [mixin/]: Mixing MixinRenderSystemAccessor from witherstormmod.mixins.json into com.mojang.blaze3d.systems.RenderSystem [12мая2024 17:31:19.375] [Render thread/DEBUG] [mixin/]: Renaming @Accessor method witherstormmod$getShaderLightDirections()[Lorg/joml/Vector3f; to witherstormmod$getShaderLightDirections_$md$359651$2 in witherstormmod.mixins.json:MixinRenderSystemAccessor [12мая2024 17:31:19.445] [Render thread/DEBUG] [mixin/]: Mixing block_rendering.MixinBufferBuilder_SeparateAo from mixins.oculus.vertexformat.json into com.mojang.blaze3d.vertex.BufferBuilder [12мая2024 17:31:19.450] [Render thread/DEBUG] [mixin/]: mixins.oculus.vertexformat.json:block_rendering.MixinBufferBuilder_SeparateAo: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_8 supports class version 52) [12мая2024 17:31:19.451] [Render thread/DEBUG] [mixin/]: Mixing client.MixinBufferBuilder from notenoughcrashes.mixins.json into com.mojang.blaze3d.vertex.BufferBuilder [12мая2024 17:31:19.452] [Render thread/DEBUG] [mixin/]: Mixing core.render.immediate.consumer.BufferBuilderMixin from rubidium.mixins.json into com.mojang.blaze3d.vertex.BufferBuilder [12мая2024 17:31:19.481] [Render thread/DEBUG] [mixin/]: Mixing features.render.immediate.buffer_builder.BufferBuilderMixin from rubidium.mixins.json into com.mojang.blaze3d.vertex.BufferBuilder [12мая2024 17:31:19.484] [Render thread/DEBUG] [mixin/]: Mixing features.render.immediate.buffer_builder.intrinsics.BufferBuilderMixin from rubidium.mixins.json into com.mojang.blaze3d.vertex.BufferBuilder [12мая2024 17:31:19.492] [Render thread/DEBUG] [mixin/]: Mixing features.render.immediate.buffer_builder.sorting.BufferBuilderMixin from rubidium.mixins.json into com.mojang.blaze3d.vertex.BufferBuilder [12мая2024 17:31:19.497] [Render thread/DEBUG] [mixin/]: Mixing MixinBufferBuilder from epicfight.mixins.json into com.mojang.blaze3d.vertex.BufferBuilder [12мая2024 17:31:19.508] [Render thread/DEBUG] [mixin/]: Mixing MixinBufferBuilder from entity_texture_features-common.mixins.json into com.mojang.blaze3d.vertex.BufferBuilder [12мая2024 17:31:19.509] [Render thread/DEBUG] [mixin/]: Renaming synthetic method lambda$etf$initETFVertexConsumer$0(Lnet/minecraft/resources/ResourceLocation;)V to md359651$lambda$etf$initETFVertexConsumer$0$0 in entity_texture_features-common.mixins.json:MixinBufferBuilder [12мая2024 17:31:19.510] [Render thread/DEBUG] [mixin/]: Mixing BufferBuilderAccessor from creativecore.mixins.json into com.mojang.blaze3d.vertex.BufferBuilder [12мая2024 17:31:19.511] [Render thread/DEBUG] [mixin/]: Mixing MixinBufferBuilder from mixins.oculus.vertexformat.json into com.mojang.blaze3d.vertex.BufferBuilder [12мая2024 17:31:19.513] [Render thread/DEBUG] [mixin/]: mixins.oculus.vertexformat.json:MixinBufferBuilder: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_8 supports class version 52) [12мая2024 17:31:19.549] [Render thread/DEBUG] [mixin/]: Mixing MixinBufferBuilder from oculus-batched-entity-rendering.mixins.json into com.mojang.blaze3d.vertex.BufferBuilder [12мая2024 17:31:19.549] [Render thread/DEBUG] [mixin/]: oculus-batched-entity-rendering.mixins.json:MixinBufferBuilder: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_8 supports class version 52) [12мая2024 17:31:19.570] [Render thread/DEBUG] [mixin/]: Mixing MixinBufferBuilder from witherstormmod.mixins.json into com.mojang.blaze3d.vertex.BufferBuilder [12мая2024 17:31:19.571] [Render thread/DEBUG] [mixin/]: Mixing core.MixinBufferBuilder from immediatelyfast-common.mixins.json into com.mojang.blaze3d.vertex.BufferBuilder [12мая2024 17:31:19.583] [Render thread/DEBUG] [mixin/]: Mixing MixinBufferBuilder_SegmentRendering from oculus-batched-entity-rendering.mixins.json into com.mojang.blaze3d.vertex.BufferBuilder [12мая2024 17:31:19.584] [Render thread/DEBUG] [mixin/]: oculus-batched-entity-rendering.mixins.json:MixinBufferBuilder_SegmentRendering: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_8 supports class version 52) [12мая2024 17:31:19.587] [Render thread/DEBUG] [mixin/]: Mixing bugfix.buffer_builder_leak.BufferBuilderMixin from modernfix-common.mixins.json into com.mojang.blaze3d.vertex.BufferBuilder [12мая2024 17:31:19.903] [Render thread/DEBUG] [mixin/]: Mixing features.render.immediate.buffer_builder.sorting.VertexSorterMixin from rubidium.mixins.json into com.mojang.blaze3d.vertex.VertexSorting [12мая2024 17:31:19.910] [Render thread/DEBUG] [mixin/]: Mixing features.render.immediate.matrix_stack.MatrixStackMixin from rubidium.mixins.json into com.mojang.blaze3d.vertex.PoseStack [12мая2024 17:31:19.914] [Render thread/DEBUG] [mixin/]: Mixing bugfix.entity_pose_stack.PoseStackAccessor from modernfix-forge.mixins.json into com.mojang.blaze3d.vertex.PoseStack [12мая2024 17:31:19.932] [Render thread/DEBUG] [mixin/]: Mixing MixinTitleScreen from mixins.oculus.json into net.minecraft.client.gui.screens.TitleScreen [12мая2024 17:31:19.932] [Render thread/DEBUG] [mixin/]: mixins.oculus.json:MixinTitleScreen: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_8 supports class version 52) [12мая2024 17:31:19.932] [Render thread/DEBUG] [mixin/]: Mixing MixinTitleScreen from witherstormmod.mixins.json into net.minecraft.client.gui.screens.TitleScreen [12мая2024 17:31:19.933] [Render thread/DEBUG] [mixin/]: Renaming synthetic method lambda$static$0(Lnet/minecraft/client/renderer/CubeMap;)V to md359651$lambda$static$0$0 in witherstormmod.mixins.json:MixinTitleScreen [12мая2024 17:31:19.949] [Render thread/DEBUG] [mixin/]: Mixing MixinLevelEvent from architectury.mixins.json into net.minecraftforge.event.level.LevelEvent [12мая2024 17:31:19.973] [Render thread/DEBUG] [mixin/]: Mixing AbstractContainerScreenAccessor from balm.mixins.json into net.minecraft.client.gui.screens.inventory.AbstractContainerScreen [12мая2024 17:31:19.974] [Render thread/DEBUG] [mixin/]: Mixing MixinAbstractContainerScreen from majruszlibrary-forge.mixins.json into net.minecraft.client.gui.screens.inventory.AbstractContainerScreen [12мая2024 17:31:19.988] [Render thread/DEBUG] [mixin/]: Mixing features.gui.screen.LevelLoadingScreenMixin from rubidium.mixins.json into net.minecraft.client.gui.screens.LevelLoadingScreen [12мая2024 17:31:19.989] [Render thread/DEBUG] [mixin/]: Renaming synthetic method lambda$drawChunkMap$0(Lit/unimi/dsi/fastutil/objects/Object2IntMap$Entry;)V to md359651$lambda$drawChunkMap$0$0 in rubidium.mixins.json:features.gui.screen.LevelLoadingScreenMixin [12мая2024 17:31:20.018] [Render thread/DEBUG] [mixin/]: Mixing gl.CustomFormatFramebufferMixin from mixins.satin.client.json into com.mojang.blaze3d.pipeline.RenderTarget [12мая2024 17:31:20.018] [Render thread/DEBUG] [mixin/]: mixins.satin.client.json:gl.CustomFormatFramebufferMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) [12мая2024 17:31:20.020] [Render thread/DEBUG] [mixin/]: Mixing MixinRenderTarget from mixins.oculus.json into com.mojang.blaze3d.pipeline.RenderTarget [12мая2024 17:31:20.020] [Render thread/DEBUG] [mixin/]: mixins.oculus.json:MixinRenderTarget: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_8 supports class version 52) [12мая2024 17:31:20.021] [Render thread/DEBUG] [mixin/]: Mixing state_tracking.MixinRenderTarget from mixins.oculus.json into com.mojang.blaze3d.pipeline.RenderTarget [12мая2024 17:31:20.022] [Render thread/DEBUG] [mixin/]: mixins.oculus.json:state_tracking.MixinRenderTarget: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_8 supports class version 52) [12мая2024 17:31:20.022] [Render thread/DEBUG] [mixin/]: Renaming synthetic method lambda$iris$onBindFramebuffer$0(ZLnet/irisshaders/iris/pipeline/WorldRenderingPipeline;)V to md359651$lambda$iris$onBindFramebuffer$0$0 in mixins.oculus.json:state_tracking.MixinRenderTarget [12мая2024 17:31:20.057] [Render thread/DEBUG] [mixin/]: Mixing gui.MixinGui from mixins.oculus.json into net.minecraft.client.gui.Gui [12мая2024 17:31:20.058] [Render thread/DEBUG] [mixin/]: mixins.oculus.json:gui.MixinGui: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_8 supports class version 52) [12мая2024 17:31:20.059] [Render thread/DEBUG] [mixin/]: Mixing MixinGui from witherstormmod.mixins.json into net.minecraft.client.gui.Gui [12мая2024 17:31:20.062] [Render thread/DEBUG] [mixin/]: Mixing hud_batching.MixinInGameHud from immediatelyfast-common.mixins.json into net.minecraft.client.gui.Gui [12мая2024 17:31:20.082] [Render thread/DEBUG] [mixin/]: Mixing gui.MixinForgeGui from mixins.oculus.json into net.minecraftforge.client.gui.overlay.ForgeGui [12мая2024 17:31:20.083] [Render thread/DEBUG] [mixin/]: mixins.oculus.json:gui.MixinForgeGui: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_8 supports class version 52) [12мая2024 17:31:20.083] [Render thread/DEBUG] [mixin/]: Mixing hud_batching.MixinForgeGui from immediatelyfast-forge.mixins.json into net.minecraftforge.client.gui.overlay.ForgeGui [12мая2024 17:31:20.114] [Render thread/DEBUG] [mixin/]: Mixing ConditionHackMixin from moonlight.mixins.json into net.minecraft.server.packs.resources.SimplePreparableReloadListener [12мая2024 17:31:20.140] [Render thread/DEBUG] [mixin/]: Mixing MixinResourceReload_backport from entity_model_features-common.mixins.json into net.minecraft.client.ResourceLoadStateTracker [12мая2024 17:31:20.141] [Render thread/DEBUG] [mixin/]: Mixing reloading.MixinResourceReload from entity_texture_features-common.mixins.json into net.minecraft.client.ResourceLoadStateTracker [12мая2024 17:31:20.345] [Render thread/DEBUG] [mixin/]: Mixing VanillaPackResourcesAccessor from creativecore.mixins.json into net.minecraft.server.packs.VanillaPackResources [12мая2024 17:31:20.359] [Render thread/WARN] [net.minecraft.server.packs.VanillaPackResourcesBuilder/]: Assets URL 'union:/D:/.minecraft/libraries/net/minecraft/client/1.20.1-20230612.114412/client-1.20.1-20230612.114412-srg.jar%23293!/assets/.mcassetsroot' uses unexpected schema [12мая2024 17:31:20.361] [Render thread/WARN] [net.minecraft.server.packs.VanillaPackResourcesBuilder/]: Assets URL 'union:/D:/.minecraft/libraries/net/minecraft/client/1.20.1-20230612.114412/client-1.20.1-20230612.114412-srg.jar%23293!/data/.mcassetsroot' uses unexpected schema [12мая2024 17:31:20.487] [Render thread/INFO] [com.mojang.authlib.yggdrasil.YggdrasilAuthenticationService/]: Environment: authHost='https://authserver.mojang.com', accountsHost='https://api.mojang.com', sessionHost='https://sessionserver.mojang.com', servicesHost='https://api.minecraftservices.com', name='PROD' [12мая2024 17:31:22.105] [Render thread/ERROR] [net.minecraft.client.Minecraft/]: Failed to verify authentication com.mojang.authlib.exceptions.InvalidCredentialsException: Status: 401     at com.mojang.authlib.exceptions.MinecraftClientHttpException.toAuthenticationException(MinecraftClientHttpException.java:60) ~[1.19.1-pre5-23w32a.jar%23120!/:?]     at com.mojang.authlib.yggdrasil.YggdrasilUserApiService.fetchProperties(YggdrasilUserApiService.java:150) ~[1.19.1-pre5-23w32a.jar%23120!/:?]     at com.mojang.authlib.yggdrasil.YggdrasilUserApiService.<init>(YggdrasilUserApiService.java:60) ~[1.19.1-pre5-23w32a.jar%23120!/:?]     at com.mojang.authlib.yggdrasil.YggdrasilAuthenticationService.createUserApiService(YggdrasilAuthenticationService.java:181) ~[1.19.1-pre5-23w32a.jar%23120!/:?]     at net.minecraft.client.Minecraft.m_193585_(Minecraft.java:649) ~[client-1.20.1-20230612.114412-srg.jar%23293!/:?]     at net.minecraft.client.Minecraft.<init>(Minecraft.java:413) ~[client-1.20.1-20230612.114412-srg.jar%23293!/:?]     at net.minecraft.client.main.Main.main(Main.java:182) ~[Forge%201.20.1.jar:?]     at jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:?]     at jdk.internal.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:?]     at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:?]     at java.lang.reflect.Method.invoke(Unknown Source) ~[?:?]     at net.minecraftforge.fml.loading.targets.CommonLaunchHandler.runTarget(CommonLaunchHandler.java:111) ~[fmlloader-1.20.1-47.2.20.jar:?]     at net.minecraftforge.fml.loading.targets.CommonLaunchHandler.clientService(CommonLaunchHandler.java:99) ~[fmlloader-1.20.1-47.2.20.jar:?]     at net.minecraftforge.fml.loading.targets.CommonClientLaunchHandler.lambda$makeService$0(CommonClientLaunchHandler.java:25) ~[fmlloader-1.20.1-47.2.20.jar:?]     at cpw.mods.modlauncher.LaunchServiceHandlerDecorator.launch(LaunchServiceHandlerDecorator.java:30) ~[modlauncher-10.0.9.jar:?]     at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:53) ~[modlauncher-10.0.9.jar:?]     at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:71) ~[modlauncher-10.0.9.jar:?]     at cpw.mods.modlauncher.Launcher.run(Launcher.java:108) ~[modlauncher-10.0.9.jar:?]     at cpw.mods.modlauncher.Launcher.main(Launcher.java:78) ~[modlauncher-10.0.9.jar:?]     at cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:26) ~[modlauncher-10.0.9.jar:?]     at cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:23) ~[modlauncher-10.0.9.jar:?]     at cpw.mods.bootstraplauncher.BootstrapLauncher.main(BootstrapLauncher.java:141) ~[bootstraplauncher-1.1.2.jar:?] Caused by: com.mojang.authlib.exceptions.MinecraftClientHttpException: Status: 401     at com.mojang.authlib.minecraft.client.MinecraftClient.readInputStream(MinecraftClient.java:93) ~[1.19.1-pre5-23w32a.jar%23120!/:?]     at com.mojang.authlib.minecraft.client.MinecraftClient.get(MinecraftClient.java:57) ~[1.19.1-pre5-23w32a.jar%23120!/:?]     at com.mojang.authlib.yggdrasil.YggdrasilUserApiService.fetchProperties(YggdrasilUserApiService.java:131) ~[1.19.1-pre5-23w32a.jar%23120!/:?]     ... 20 more [12мая2024 17:31:22.110] [Render thread/INFO] [net.minecraft.client.Minecraft/]: Setting user: LOLMANXD432 [12мая2024 17:31:22.112] [Render thread/DEBUG] [mixin/]: Mixing KeyMappingAccessor from balm.mixins.json into net.minecraft.client.KeyMapping [12мая2024 17:31:22.113] [Render thread/DEBUG] [mixin/]: Mixing KeyMappingMixin from balm.mixins.json into net.minecraft.client.KeyMapping [12мая2024 17:31:22.126] [Render thread/DEBUG] [mixin/]: Mixing perf.dynamic_dfu.DataFixersMixin from modernfix-common.mixins.json into net.minecraft.util.datafix.DataFixers [12мая2024 17:31:22.126] [Render thread/DEBUG] [mixin/]: Renaming synthetic method lambda$createLazyFixerUpper$0(Ljava/util/Set;)Lcom/mojang/datafixers/DataFixer; to md359651$lambda$createLazyFixerUpper$0$0 in modernfix-common.mixins.json:perf.dynamic_dfu.DataFixersMixin [12мая2024 17:31:22.612] [Render thread/INFO] [ModernFix/]: Bypassed Mojang DFU [12мая2024 17:31:22.618] [Render thread/DEBUG] [mixin/]: Mixing report.ToastComponentMixin from klmaster.mixins.json into net.minecraft.client.gui.components.toasts.ToastComponent [12мая2024 17:31:22.619] [Render thread/DEBUG] [mixin/]: klmaster.mixins.json:report.ToastComponentMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_8 supports class version 52) [12мая2024 17:31:22.622] [Render thread/DEBUG] [mixin/]: Mixing MixinToastManager from forge-badoptimizations.mixins.json into net.minecraft.client.gui.components.toasts.ToastComponent [12мая2024 17:31:22.635] [Render thread/DEBUG] [mixin/]: Mixing MixinOptions_Entrypoint from mixins.oculus.json into net.minecraft.client.Options [12мая2024 17:31:22.635] [Render thread/DEBUG] [mixin/]: mixins.oculus.json:MixinOptions_Entrypoint: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_8 supports class version 52) [12мая2024 17:31:22.636] [Render thread/DEBUG] [mixin/]: Mixing GameOptionsMixin from forge-sfcr-common.mixins.json into net.minecraft.client.Options [12мая2024 17:31:22.636] [Render thread/DEBUG] [mixin/]: forge-sfcr-common.mixins.json:GameOptionsMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_8 supports class version 52) [12мая2024 17:31:22.637] [Render thread/DEBUG] [mixin/]: Mixing client.OptionsMixin from alexscaves.mixins.json into net.minecraft.client.Options [12мая2024 17:31:22.638] [Render thread/DEBUG] [mixin/]: Mixing MixinMaxFpsCrashFix from mixins.oculus.fixes.maxfpscrash.json into net.minecraft.client.Options [12мая2024 17:31:22.638] [Render thread/DEBUG] [mixin/]: mixins.oculus.fixes.maxfpscrash.json:MixinMaxFpsCrashFix: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_8 supports class version 52) [12мая2024 17:31:22.639] [Render thread/DEBUG] [mixin/]: Mixing sky.MixinOptions_CloudsOverride from mixins.oculus.json into net.minecraft.client.Options [12мая2024 17:31:22.640] [Render thread/DEBUG] [mixin/]: mixins.oculus.json:sky.MixinOptions_CloudsOverride: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_8 supports class version 52) [12мая2024 17:31:22.640] [Render thread/DEBUG] [mixin/]: Renaming synthetic method lambda$iris$overrideCloudsType$0(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;Lnet/irisshaders/iris/pipeline/WorldRenderingPipeline;)V to md359651$lambda$iris$overrideCloudsType$0$0 in mixins.oculus.json:sky.MixinOptions_CloudsOverride [12мая2024 17:31:22.731] [Render thread/DEBUG] [mixin/]: Mixing accessor.TooltipAccessor from entity_texture_features-common.mixins.json into net.minecraft.client.gui.components.Tooltip [12мая2024 17:31:22.797] [Render thread/DEBUG] [mixin/]: Mixing client.ChatComponentMixin from placebo.mixins.json into net.minecraft.client.gui.components.ChatComponent [12мая2024 17:31:22.798] [Render thread/DEBUG] [mixin/]: Mixing hud_batching.MixinChatHud from immediatelyfast-common.mixins.json into net.minecraft.client.gui.components.ChatComponent [12мая2024 17:31:22.802] [Render thread/INFO] [mixin/]: BeforeConstant is searching for constants in method with descriptor (Lnet/minecraft/network/chat/Component;Lnet/minecraft/client/GuiMessageTag;)V [12мая2024 17:31:22.803] [Render thread/INFO] [mixin/]:   BeforeConstant found STRING constant: value = , stringValue = null [12мая2024 17:31:22.804] [Render thread/INFO] [mixin/]:     BeforeConstant found a matching constant TYPE at ordinal 0 [12мая2024 17:31:22.804] [Render thread/INFO] [mixin/]:       BeforeConstant found LdcInsn [12мая2024 17:31:22.805] [Render thread/INFO] [mixin/]:   BeforeConstant found STRING constant: value = \\r, stringValue = null [12мая2024 17:31:22.805] [Render thread/INFO] [mixin/]:     BeforeConstant found a matching constant TYPE at ordinal 1 [12мая2024 17:31:22.805] [Render thread/INFO] [mixin/]:       BeforeConstant found LdcInsn \\r [12мая2024 17:31:22.805] [Render thread/INFO] [mixin/]:   BeforeConstant found STRING constant: value =  , stringValue = null [12мая2024 17:31:22.805] [Render thread/INFO] [mixin/]:     BeforeConstant found a matching constant TYPE at ordinal 2 [12мая2024 17:31:22.806] [Render thread/INFO] [mixin/]:       BeforeConstant found LdcInsn  [12мая2024 17:31:22.806] [Render thread/INFO] [mixin/]:   BeforeConstant found STRING constant: value = \\n, stringValue = null [12мая2024 17:31:22.806] [Render thread/INFO] [mixin/]:     BeforeConstant found a matching constant TYPE at ordinal 3 [12мая2024 17:31:22.806] [Render thread/INFO] [mixin/]:       BeforeConstant found LdcInsn \\n [12мая2024 17:31:22.806] [Render thread/INFO] [mixin/]:   BeforeConstant found CLASS constant: value = Ljava/lang/String;, typeValue = null [12мая2024 17:31:22.808] [Render thread/INFO] [mixin/]:   BeforeConstant found STRING constant: value = [{}] [CHAT] {}, stringValue = null [12мая2024 17:31:22.811] [Render thread/INFO] [mixin/]:     BeforeConstant found a matching constant TYPE at ordinal 4 [12мая2024 17:31:22.811] [Render thread/INFO] [mixin/]:       BeforeConstant found LdcInsn [{}] [CHAT] {} [12мая2024 17:31:22.812] [Render thread/INFO] [mixin/]:   BeforeConstant found STRING constant: value = [CHAT] {}, stringValue = null [12мая2024 17:31:22.812] [Render thread/INFO] [mixin/]:     BeforeConstant found a matching constant TYPE at ordinal 5 [12мая2024 17:31:22.812] [Render thread/INFO] [mixin/]:       BeforeConstant found LdcInsn [CHAT] {} [12мая2024 17:31:22.846] [Render thread/DEBUG] [mixin/]: Mixing tick.MixinTutorial from forge-badoptimizations.mixins.json into net.minecraft.client.tutorial.Tutorial [12мая2024 17:31:23.052] [Render thread/INFO] [net.minecraft.client.Minecraft/]: Backend library: LWJGL version 3.3.1 build 7 [12мая2024 17:31:23.054] [Render thread/DEBUG] [mixin/]: Mixing workarounds.context_creation.WindowMixin from rubidium.mixins.json into com.mojang.blaze3d.platform.Window [12мая2024 17:31:23.059] [Render thread/DEBUG] [mixin/]: Mixing core.MixinWindow from immediatelyfast-common.mixins.json into com.mojang.blaze3d.platform.Window [12мая2024 17:31:23.059] [Render thread/DEBUG] [mixin/]: Mixing MixinWindow from mixins.oculus.json into com.mojang.blaze3d.platform.Window [12мая2024 17:31:23.060] [Render thread/DEBUG] [mixin/]: mixins.oculus.json:MixinWindow: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_8 supports class version 52) [12мая2024 17:31:23.121] [Render thread/DEBUG] [mixin/]: Mixing feature.branding.BrandingControlMixin from modernfix-forge.mixins.json into net.minecraftforge.internal.BrandingControl [12мая2024 17:31:23.133] [Render thread/DEBUG] [mixin/]: Mixing options.MixinSodiumGameOptions from mixins.oculus.compat.sodium.json into me.jellysquid.mods.sodium.client.gui.SodiumGameOptions [12мая2024 17:31:23.133] [Render thread/DEBUG] [mixin/]: mixins.oculus.compat.sodium.json:options.MixinSodiumGameOptions: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_8 supports class version 52) [12мая2024 17:31:23.137] [Render thread/FATAL] [mixin/]: Mixin apply failed mixins.oculus.compat.sodium.json:options.MixinSodiumGameOptions -> me.jellysquid.mods.sodium.client.gui.SodiumGameOptions: org.spongepowered.asm.mixin.injection.throwables.InvalidInjectionException Critical injection failure: @Inject annotation on iris$writeIrisConfig could not find any targets matching 'writeToDisk' in me.jellysquid.mods.sodium.client.gui.SodiumGameOptions. Using refmap sodiumCompatibility-oculus-mixins-refmap.json [PREINJECT Applicator Phase -> mixins.oculus.compat.sodium.json:options.MixinSodiumGameOptions -> Prepare Injections ->  -> handler$cap000$iris$writeIrisConfig(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V -> Parse] org.spongepowered.asm.mixin.injection.throwables.InvalidInjectionException: Critical injection failure: @Inject annotation on iris$writeIrisConfig could not find any targets matching 'writeToDisk' in me.jellysquid.mods.sodium.client.gui.SodiumGameOptions. Using refmap sodiumCompatibility-oculus-mixins-refmap.json [PREINJECT Applicator Phase -> mixins.oculus.compat.sodium.json:options.MixinSodiumGameOptions -> Prepare Injections ->  -> handler$cap000$iris$writeIrisConfig(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V -> Parse]     at org.spongepowered.asm.mixin.injection.struct.InjectionInfo.validateTargets(InjectionInfo.java:656) ~[mixin-0.8.5.jar:0.8.5+Jenkins-b310.git-155314e6e91465dad727e621a569906a410cd6f4]     at org.spongepowered.asm.mixin.injection.struct.InjectionInfo.findTargets(InjectionInfo.java:587) ~[mixin-0.8.5.jar:0.8.5+Jenkins-b310.git-155314e6e91465dad727e621a569906a410cd6f4]     at org.spongepowered.asm.mixin.injection.struct.InjectionInfo.readAnnotation(InjectionInfo.java:330) ~[mixin-0.8.5.jar:0.8.5+Jenkins-b310.git-155314e6e91465dad727e621a569906a410cd6f4]     at org.spongepowered.asm.mixin.injection.struct.InjectionInfo.<init>(InjectionInfo.java:316) ~[mixin-0.8.5.jar:0.8.5+Jenkins-b310.git-155314e6e91465dad727e621a569906a410cd6f4]     at org.spongepowered.asm.mixin.injection.struct.InjectionInfo.<init>(InjectionInfo.java:308) ~[mixin-0.8.5.jar:0.8.5+Jenkins-b310.git-155314e6e91465dad727e621a569906a410cd6f4]     at org.spongepowered.asm.mixin.injection.struct.CallbackInjectionInfo.<init>(CallbackInjectionInfo.java:46) ~[mixin-0.8.5.jar:0.8.5+Jenkins-b310.git-155314e6e91465dad727e621a569906a410cd6f4]     at jdk.internal.reflect.GeneratedConstructorAccessor22.newInstance(Unknown Source) ~[?:?]     at jdk.internal.reflect.DelegatingConstructorAccessorImpl.newInstance(Unknown Source) ~[?:?]     at java.lang.reflect.Constructor.newInstanceWithCaller(Unknown Source) ~[?:?]     at java.lang.reflect.Constructor.newInstance(Unknown Source) ~[?:?]     at org.spongepowered.asm.mixin.injection.struct.InjectionInfo$InjectorEntry.create(InjectionInfo.java:149) ~[mixin-0.8.5.jar:0.8.5+Jenkins-b310.git-155314e6e91465dad727e621a569906a410cd6f4]     at org.spongepowered.asm.mixin.injection.struct.InjectionInfo.parse(InjectionInfo.java:708) ~[mixin-0.8.5.jar:0.8.5+Jenkins-b310.git-155314e6e91465dad727e621a569906a410cd6f4]     at org.spongepowered.asm.mixin.transformer.MixinTargetContext.prepareInjections(MixinTargetContext.java:1311) ~[mixin-0.8.5.jar:0.8.5+Jenkins-b310.git-155314e6e91465dad727e621a569906a410cd6f4]     at org.spongepowered.asm.mixin.transformer.MixinApplicatorStandard.prepareInjections(MixinApplicatorStandard.java:1042) ~[mixin-0.8.5.jar:0.8.5+Jenkins-b310.git-155314e6e91465dad727e621a569906a410cd6f4]     at org.spongepowered.asm.mixin.transformer.MixinApplicatorStandard.applyMixin(MixinApplicatorStandard.java:393) ~[mixin-0.8.5.jar:0.8.5+Jenkins-b310.git-155314e6e91465dad727e621a569906a410cd6f4]     at org.spongepowered.asm.mixin.transformer.MixinApplicatorStandard.apply(MixinApplicatorStandard.java:325) ~[mixin-0.8.5.jar:0.8.5+Jenkins-b310.git-155314e6e91465dad727e621a569906a410cd6f4]     at org.spongepowered.asm.mixin.transformer.TargetClassContext.apply(TargetClassContext.java:383) ~[mixin-0.8.5.jar:0.8.5+Jenkins-b310.git-155314e6e91465dad727e621a569906a410cd6f4]     at org.spongepowered.asm.mixin.transformer.TargetClassContext.applyMixins(TargetClassContext.java:365) ~[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(Unknown Source) ~[?:?]     at me.jellysquid.mods.sodium.client.SodiumClientMod.loadConfig(SodiumClientMod.java:53) ~[rubidium-mc1.20.1-0.7.1a.jar%23270!/:?]     at me.jellysquid.mods.sodium.client.SodiumClientMod.<clinit>(SodiumClientMod.java:22) ~[rubidium-mc1.20.1-0.7.1a.jar%23270!/:?]     at com.mojang.blaze3d.platform.Window.redirect$zhg000$wrapGlfwCreateWindow(Window.java:535) ~[client-1.20.1-20230612.114412-srg.jar%23293!/:?]     at com.mojang.blaze3d.platform.Window.<init>(Window.java:86) ~[client-1.20.1-20230612.114412-srg.jar%23293!/:?]     at net.minecraft.client.renderer.VirtualScreen.m_110872_(VirtualScreen.java:21) ~[client-1.20.1-20230612.114412-srg.jar%23293!/:?]     at net.minecraft.client.Minecraft.<init>(Minecraft.java:440) ~[client-1.20.1-20230612.114412-srg.jar%23293!/:?]     at net.minecraft.client.main.Main.main(Main.java:182) ~[Forge%201.20.1.jar:?]     at jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:?]     at jdk.internal.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:?]     at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:?]     at java.lang.reflect.Method.invoke(Unknown Source) ~[?:?]     at net.minecraftforge.fml.loading.targets.CommonLaunchHandler.runTarget(CommonLaunchHandler.java:111) ~[fmlloader-1.20.1-47.2.20.jar:?]     at net.minecraftforge.fml.loading.targets.CommonLaunchHandler.clientService(CommonLaunchHandler.java:99) ~[fmlloader-1.20.1-47.2.20.jar:?]     at net.minecraftforge.fml.loading.targets.CommonClientLaunchHandler.lambda$makeService$0(CommonClientLaunchHandler.java:25) ~[fmlloader-1.20.1-47.2.20.jar:?]     at cpw.mods.modlauncher.LaunchServiceHandlerDecorator.launch(LaunchServiceHandlerDecorator.java:30) ~[modlauncher-10.0.9.jar:?]     at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:53) ~[modlauncher-10.0.9.jar:?]     at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:71) ~[modlauncher-10.0.9.jar:?]     at cpw.mods.modlauncher.Launcher.run(Launcher.java:108) ~[modlauncher-10.0.9.jar:?]     at cpw.mods.modlauncher.Launcher.main(Launcher.java:78) ~[modlauncher-10.0.9.jar:?]     at cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:26) ~[modlauncher-10.0.9.jar:?]     at cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:23) ~[modlauncher-10.0.9.jar:?]     at cpw.mods.bootstraplauncher.BootstrapLauncher.main(BootstrapLauncher.java:141) ~[bootstraplauncher-1.1.2.jar:?] [12мая2024 17:31:23.373] [Render thread/DEBUG] [oshi.util.FileUtil/]: No oshi.architecture.properties file found from ClassLoader cpw.mods.modlauncher.TransformingClassLoader@286855ea [12мая2024 17:31:23.611] [Render thread/DEBUG] [mixin/]: Mixing core.MixinGlDebug from immediatelyfast-common.mixins.json into com.mojang.blaze3d.platform.GlDebug [12мая2024 17:31:23.642] [Render thread/DEBUG] [mixin/]: Mixing renderer.entity.MixinEntityRendererDispatcher from forge-badoptimizations.mixins.json into net.minecraft.client.renderer.entity.EntityRenderDispatcher [12мая2024 17:31:23.643] [Render thread/DEBUG] [mixin/]: Mixing accessor.EntityRenderDispatcherAccessor from entity_model_features-common.mixins.json into net.minecraft.client.renderer.entity.EntityRenderDispatcher [12мая2024 17:31:23.644] [Render thread/DEBUG] [mixin/]: Mixing rendering.MixinEntityRenderDispatcher from entity_model_features-common.mixins.json into net.minecraft.client.renderer.entity.EntityRenderDispatcher [12мая2024 17:31:23.647] [Render thread/DEBUG] [mixin/]: Mixing entity.misc.MixinEntityRenderDispatcher from entity_texture_features-common.mixins.json into net.minecraft.client.renderer.entity.EntityRenderDispatcher [12мая2024 17:31:23.649] [Render thread/DEBUG] [mixin/]: Mixing MixinEntityRenderDispatcher from mixins.oculus.json into net.minecraft.client.renderer.entity.EntityRenderDispatcher [12мая2024 17:31:23.649] [Render thread/DEBUG] [mixin/]: mixins.oculus.json:MixinEntityRenderDispatcher: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_8 supports class version 52) [12мая2024 17:31:23.653] [Render thread/DEBUG] [mixin/]: Mixing entity_render_context.MixinEntityRenderDispatcher from mixins.oculus.json into net.minecraft.client.renderer.entity.EntityRenderDispatcher [12мая2024 17:31:23.654] [Render thread/DEBUG] [mixin/]: mixins.oculus.json:entity_render_context.MixinEntityRenderDispatcher: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_8 supports class version 52) [12мая2024 17:31:23.654] [Render thread/DEBUG] [mixin/]: Renaming synthetic method lambda$iris$beginEntityRender$0(Lnet/minecraft/client/renderer/MultiBufferSource;Lnet/minecraft/client/renderer/RenderType;)Lcom/mojang/blaze3d/vertex/VertexConsumer; to md359651$lambda$iris$beginEntityRender$0$0 in mixins.oculus.json:entity_render_context.MixinEntityRenderDispatcher [12мая2024 17:31:23.657] [Render thread/DEBUG] [mixin/]: Mixing copyEntity.shadows.EntityRenderDispatcherMixin from mixins.oculus.compat.sodium.json into net.minecraft.client.renderer.entity.EntityRenderDispatcher [12мая2024 17:31:23.657] [Render thread/DEBUG] [mixin/]: mixins.oculus.compat.sodium.json:copyEntity.shadows.EntityRenderDispatcherMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_8 supports class version 52) [12мая2024 17:31:23.664] [Render thread/DEBUG] [mixin/]: Mixing MixinEntityRenderDispatcher from witherstormmod.mixins.json into net.minecraft.client.renderer.entity.EntityRenderDispatcher [12мая2024 17:31:23.667] [Render thread/DEBUG] [mixin/]: Mixing vertex_format.entity.MixinEntityRenderDispatcher from mixins.oculus.compat.sodium.json into net.minecraft.client.renderer.entity.EntityRenderDispatcher [12мая2024 17:31:23.668] [Render thread/DEBUG] [mixin/]: mixins.oculus.compat.sodium.json:vertex_format.entity.MixinEntityRenderDispatcher: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_8 supports class version 52) [12мая2024 17:31:23.711] [Render thread/DEBUG] [mixin/]: Mixing core.world.map.ClientPlayNetworkHandlerMixin from rubidium.mixins.json into net.minecraft.client.multiplayer.ClientPacketListener [12мая2024 17:31:23.713] [Render thread/DEBUG] [mixin/]: Mixing client.ClientPacketListenerMixin from fastsuite.mixins.json into net.minecraft.client.multiplayer.ClientPacketListener [12мая2024 17:31:23.714] [Render thread/DEBUG] [mixin/]: Mixing client.ClientPacketListenerMixin from alexscaves.mixins.json into net.minecraft.client.multiplayer.ClientPacketListener [12мая2024 17:31:23.719] [Render thread/DEBUG] [mixin/]: Mixing ClientPacketListenerMixin from moonlight-common.mixins.json into net.minecraft.client.multiplayer.ClientPacketListener [12мая2024 17:31:23.721] [Render thread/DEBUG] [mixin/]: Mixing ClientPacketListenerMixin from iceberg.mixins.json into net.minecraft.client.multiplayer.ClientPacketListener [12мая2024 17:31:23.723] [Render thread/DEBUG] [mixin/]: Mixing MixinClientPacketListener from mixins.oculus.json into net.minecraft.client.multiplayer.ClientPacketListener [12мая2024 17:31:23.723] [Render thread/DEBUG] [mixin/]: mixins.oculus.json:MixinClientPacketListener: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_8 supports class version 52) [12мая2024 17:31:23.724] [Render thread/DEBUG] [mixin/]: Renaming synthetic method lambda$iris$showUpdateMessage$1(Ljava/lang/Exception;)V to md359651$lambda$iris$showUpdateMessage$1$0 in mixins.oculus.json:MixinClientPacketListener [12мая2024 17:31:23.724] [Render thread/DEBUG] [mixin/]: Renaming synthetic method lambda$iris$showUpdateMessage$0(Ljava/lang/Exception;Lnet/minecraft/network/chat/Style;)Lnet/minecraft/network/chat/Style; to md359651$lambda$iris$showUpdateMessage$0$1 in mixins.oculus.json:MixinClientPacketListener [12мая2024 17:31:23.729] [Render thread/DEBUG] [mixin/]: Mixing client.multiplayer.ClientPacketListenerMixin from starlight.mixins.json into net.minecraft.client.multiplayer.ClientPacketListener [12мая2024 17:31:23.782] [Render thread/DEBUG] [mixin/]: Mixing client.IntegratedServerMixin from smoothboot.mixins.json into net.minecraft.client.server.IntegratedServer [12мая2024 17:31:23.792] [Render thread/DEBUG] [mixin/]: Mixing allocations.server_directory.MinecraftServerMixin from saturn.mixins.json into net.minecraft.server.MinecraftServer [12мая2024 17:31:23.793] [Render thread/DEBUG] [mixin/]: Mixing client.MixinMinecraftServerClientOnly from notenoughcrashes.mixins.json into net.minecraft.server.MinecraftServer [12мая2024 17:31:23.793] [Render thread/DEBUG] [mixin/]: Mixing MinecraftServerMixin from citadel.mixins.json into net.minecraft.server.MinecraftServer [12мая2024 17:31:23.794] [Render thread/DEBUG] [mixin/]: Mixing perf.dedicated_reload_executor.MinecraftServerMixin from modernfix-common.mixins.json into net.minecraft.server.MinecraftServer [12мая2024 17:31:23.795] [Render thread/DEBUG] [mixin/]: Mixing MinecraftServerMixin from balm.mixins.json into net.minecraft.server.MinecraftServer [12мая2024 17:31:23.795] [Render thread/DEBUG] [mixin/]: Renaming synthetic method lambda$reloadResources$0(Ljava/lang/Void;)V to md359651$lambda$reloadResources$0$0 in balm.mixins.json:MinecraftServerMixin [12мая2024 17:31:23.796] [Render thread/DEBUG] [mixin/]: Mixing MixinMinecraftServer from majruszlibrary-common.mixins.json into net.minecraft.server.MinecraftServer [12мая2024 17:31:23.796] [Render thread/DEBUG] [mixin/]: Renaming synthetic method lambda$loadLevel$2(Lit/unimi/dsi/fastutil/ints/Int2ObjectMap;Ljava/lang/Integer;Ljava/util/List;)V to md359651$lambda$loadLevel$2$1 in majruszlibrary-common.mixins.json:MixinMinecraftServer [12мая2024 17:31:23.797] [Render thread/DEBUG] [mixin/]: Renaming synthetic method lambda$loadLevel$1(I)[Lnet/minecraft/world/entity/npc/VillagerTrades$ItemListing; to md359651$lambda$loadLevel$1$2 in majruszlibrary-common.mixins.json:MixinMinecraftServer [12мая2024 17:31:23.797] [Render thread/DEBUG] [mixin/]: Renaming synthetic method lambda$loadLevel$0(Lit/unimi/dsi/fastutil/ints/Int2ObjectMap;Ljava/lang/Integer;[Lnet/minecraft/world/entity/npc/VillagerTrades$ItemListing;)V to md359651$lambda$loadLevel$0$3 in majruszlibrary-common.mixins.json:MixinMinecraftServer [12мая2024 17:31:23.933] [Render thread/DEBUG] [mixin/]: Mixing MixinMusicManager from witherstormmod.mixins.json into net.minecraft.client.sounds.MusicManager [12мая2024 17:31:23.947] [Render thread/DEBUG] [mixin/]: Mixing MixinRenderBuffers from oculus-batched-entity-rendering.mixins.json into net.minecraft.client.renderer.RenderBuffers [12мая2024 17:31:23.948] [Render thread/DEBUG] [mixin/]: oculus-batched-entity-rendering.mixins.json:MixinRenderBuffers: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_8 supports class version 52) [12мая2024 17:31:23.949] [Render thread/DEBUG] [mixin/]: Renaming synthetic method lambda$freeAndDeleteBuffers$1(Lnet/minecraft/client/renderer/RenderType;Lcom/mojang/blaze3d/vertex/BufferBuilder;)V to md359651$lambda$freeAndDeleteBuffers$1$0 in oculus-batched-entity-rendering.mixins.json:MixinRenderBuffers [12мая2024 17:31:23.949] [Render thread/DEBUG] [mixin/]: Renaming synthetic method lambda$freeAndDeleteBuffers$0(Lcom/mojang/blaze3d/vertex/BufferBuilder;)V to md359651$lambda$freeAndDeleteBuffers$0$1 in oculus-batched-entity-rendering.mixins.json:MixinRenderBuffers [12мая2024 17:31:23.961] [Render thread/DEBUG] [mixin/]: Mixing safety.ItemColorsMixin from modernfix-common.mixins.json into net.minecraft.client.color.item.ItemColors [12мая2024 17:31:23.962] [Render thread/DEBUG] [mixin/]: Mixing core.model.colors.ItemColorsMixin from rubidium.mixins.json into net.minecraft.client.color.item.ItemColors [12мая2024 17:31:23.967] [Render thread/DEBUG] [mixin/]: Mixing MixinItemColors from majruszlibrary-common.mixins.json into net.minecraft.client.color.item.ItemColors [12мая2024 17:31:23.977] [Render thread/DEBUG] [mixin/]: Mixing MixinEntityModelLoader from entity_model_features-common.mixins.json into net.minecraft.client.model.geom.EntityModelSet [12мая2024 17:31:23.978] [Render thread/DEBUG] [mixin/]: Mixing IMixinEntityModelSet from witherstormmod.mixins.json into net.minecraft.client.model.geom.EntityModelSet [12мая2024 17:31:23.987] [Render thread/DEBUG] [mixin/]: Mixing report.ChatListenerMixin from klmaster.mixins.json into net.minecraft.client.multiplayer.chat.ChatListener [12мая2024 17:31:23.987] [Render thread/DEBUG] [mixin/]: klmaster.mixins.json:report.ChatListenerMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_8 supports class version 52) [12мая2024 17:31:24.001] [Render thread/DEBUG] [mixin/]: Mixing telemetry.ClientTelemetryManagerMixin from klmaster.mixins.json into net.minecraft.client.telemetry.ClientTelemetryManager [12мая2024 17:31:24.001] [Render thread/DEBUG] [mixin/]: klmaster.mixins.json:telemetry.ClientTelemetryManagerMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_8 supports class version 52) [12мая2024 17:31:24.007] [Render thread/DEBUG] [mixin/]: Mixing perf.dedicated_reload_executor.WorldOpenFlowsMixin from modernfix-common.mixins.json into net.minecraft.client.gui.screens.worldselection.WorldOpenFlows [12мая2024 17:31:24.018] [Render thread/DEBUG] [mixin/]: Mixing perf.cache_profile_texture_url.SkinManagerMixin from modernfix-common.mixins.json into net.minecraft.client.resources.SkinManager [12мая2024 17:31:24.020] [Render thread/DEBUG] [mixin/]: Mixing accessor.PlayerSkinProviderAccessor from entity_texture_features-common.mixins.json into net.minecraft.client.resources.SkinManager [12мая2024 17:31:24.026] [Render thread/DEBUG] [mixin/]: Mixing renderer.blockentity.MixinBlockEntityRenderDispatcher from forge-badoptimizations.mixins.json into net.minecraft.client.renderer.blockentity.BlockEntityRenderDispatcher [12мая2024 17:31:24.027] [Render thread/DEBUG] [mixin/]: Mixing rendering.MixinBlockEntityRenderDispatcher from entity_model_features-common.mixins.json into net.minecraft.client.renderer.blockentity.BlockEntityRenderDispatcher [12мая2024 17:31:24.028] [Render thread/DEBUG] [mixin/]: Mixing entity.misc.MixinBlockEntityRenderDispatcher from entity_texture_features-common.mixins.json into net.minecraft.client.renderer.blockentity.BlockEntityRenderDispatcher [12мая2024 17:31:24.028] [Render thread/DEBUG] [mixin/]: Mixing entity_render_context.MixinBlockEntityRenderDispatcher from mixins.oculus.json into net.minecraft.client.renderer.blockentity.BlockEntityRenderDispatcher [12мая2024 17:31:24.029] [Render thread/DEBUG] [mixin/]: mixins.oculus.json:entity_render_context.MixinBlockEntityRenderDispatcher: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_8 supports class version 52) [12мая2024 17:31:24.029] [Render thread/DEBUG] [mixin/]: Renaming synthetic method lambda$iris$wrapBufferSource$0(Lnet/minecraft/client/renderer/MultiBufferSource;Lnet/minecraft/client/renderer/RenderType;)Lcom/mojang/blaze3d/vertex/VertexConsumer; to md359651$lambda$iris$wrapBufferSource$0$0 in mixins.oculus.json:entity_render_context.MixinBlockEntityRenderDispatcher [12мая2024 17:31:24.030] [Render thread/DEBUG] [mixin/]: Mixing BlockEntityRenderDispatcherMixin from entityculling.mixins.json into net.minecraft.client.renderer.blockentity.BlockEntityRenderDispatcher [12мая2024 17:31:24.031] [Render thread/DEBUG] [mixin/]: entityculling.mixins.json:BlockEntityRenderDispatcherMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) [12мая2024 17:31:24.040] [Render thread/DEBUG] [mixin/]: Mixing safety.BlockColorsMixin from modernfix-common.mixins.json into net.minecraft.client.color.block.BlockColors [12мая2024 17:31:24.041] [Render thread/DEBUG] [mixin/]: Mixing core.model.colors.BlockColorsMixin from rubidium.mixins.json into net.minecraft.client.color.block.BlockColors [12мая2024 17:31:24.048] [Render thread/DEBUG] [mixin/]: Mixing perf.dynamic_resources.ModelManagerMixin from modernfix-common.mixins.json into net.minecraft.client.resources.model.ModelManager [12мая2024 17:31:24.049] [Render thread/DEBUG] [mixin/]: Renaming synthetic method lambda$loadSingleBlockState$3(Lnet/minecraft/server/packs/resources/Resource;)Lnet/minecraft/client/resources/model/ModelBakery$LoadedJson; to md359651$lambda$loadSingleBlockState$3$0 in modernfix-common.mixins.json:perf.dynamic_resources.ModelManagerMixin [12мая2024 17:31:24.049] [Render thread/DEBUG] [mixin/]: Renaming synthetic method lambda$loadSingleBlockModel$2(Lnet/minecraft/server/packs/resources/Resource;)Lnet/minecraft/client/renderer/block/model/BlockModel; to md359651$lambda$loadSingleBlockModel$2$1 in modernfix-common.mixins.json:perf.dynamic_resources.ModelManagerMixin [12мая2024 17:31:24.050] [Render thread/DEBUG] [mixin/]: Renaming synthetic method lambda$deferBlockStateLoad$1(Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/resources/ResourceLocation;)Ljava/util/List; to md359651$lambda$deferBlockStateLoad$1$2 in modernfix-common.mixins.json:perf.dynamic_resources.ModelManagerMixin [12мая2024 17:31:24.050] [Render thread/DEBUG] [mixin/]: Renaming synthetic method lambda$deferBlockModelLoad$0(Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/client/renderer/block/model/BlockModel; to md359651$lambda$deferBlockModelLoad$0$3 in modernfix-common.mixins.json:perf.dynamic_resources.ModelManagerMixin [12мая2024 17:31:24.071] [Render thread/DEBUG] [mixin/]: Mixing MixinSplashManager from witherstormmod.mixins.json into net.minecraft.client.resources.SplashManager [12мая2024 17:31:24.079] [Render thread/DEBUG] [mixin/]: Mixing texture.MixinTextureManager from mixins.oculus.json into net.minecraft.client.renderer.texture.TextureManager [12мая2024 17:31:24.079] [Render thread/DEBUG] [mixin/]: mixins.oculus.json:texture.MixinTextureManager: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_8 supports class version 52) [12мая2024 17:31:24.081] [Render thread/DEBUG] [mixin/]: Mixing core.MixinTextureManager from immediatelyfast-common.mixins.json into net.minecraft.client.renderer.texture.TextureManager [12мая2024 17:31:24.088] [Render thread/DEBUG] [mixin/]: Mixing bugfix.removed_dimensions.LevelStorageSourceMixin from modernfix-forge.mixins.json into net.minecraft.world.level.storage.LevelStorageSource  
    • Hi, can anybody tell me what's wrong? public class SoulDrinkerItem extends Item { public SoulDrinkerItem(Properties pProperties) { super(pProperties); } @Override public boolean onLeftClickEntity(ItemStack stack, Player player, Entity entity) { if (entity instanceof Player){ Player victim = (Player) entity; if(!victim.isDeadOrDying() && victim.getHealth()>0){ victim.setHealth(0); return true; } } return false; } @Override public void setDamage(ItemStack stack, int damage) { super.setDamage(stack, 0); } } The code above is the custom item class. I'm trying to make a Sword-of-the-Cosmos-like item that basically does .setHealth(0) for every single entity it hits. When I go into the game, the attack damage is just 1.
    • Thanks. But how can I work with these attribute modifiers?
    • I can't undestand why some events caught using EventHandler and other using SubscribeEvent. What's the difference between them?
  • Topics

×
×
  • Create New...

Important Information

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