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

    • Im Dolphin Erin from LA United State, i was involved with an FX trade 2019, i invested a total sum of 3.0966511 BTC, have been trying to make withdraw of my funds since 05/2020, all triers and progress towards getting out the funds as been a failure, I meant with Alien Wizbot Crypto Recovery on CNN news paper while reading and i reached t to their contact email Alienwizbot(@)gmail I hard an encounter with Allen who owns the Alien Wizbot Firm, we both had a discussion and agree to the process,  their timing was 36 hours and they got me surprised with different things, they beat the time, my funds with seen on my private wallet exactly 28 hours, i received 12 BTC, i was taught how to cleans my funds without being scammed. Alien Wizbot is the best place to run to for scammed funds recovery. 
    • I was wrong, the problematic plugin turned out to be: Polar's Mad Tweaks
    • I tried to find a log and this one is the only one I could find. Because when I try to launch the forge universal it does not generate a log. or at least I am not seeing where it is generating its logs   [12May2024 10:56:37.462] [main/INFO] [cpw.mods.modlauncher.Launcher/MODLAUNCHER]: ModLauncher running: args [--launchTarget, forgeserver, --fml.forgeVersion, 47.2.0, --fml.mcVersion, 1.20.1, --fml.forgeGroup, net.minecraftforge, --fml.mcpVersion, 20230612.114412] [12May2024 10:56:37.468] [main/INFO] [cpw.mods.modlauncher.Launcher/MODLAUNCHER]: ModLauncher 10.0.9+10.0.9+main.dcd20f30 starting: java version 22.0.1 by Oracle Corporation; OS Windows 10 arch amd64 version 10.0 [12May2024 10:56:37.507] [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] [12May2024 10:56:37.525] [main/DEBUG] [cpw.mods.modlauncher.NameMappingServiceHandler/MODLAUNCHER]: Found naming services : [srgtomcp] [12May2024 10:56:37.545] [main/DEBUG] [cpw.mods.modlauncher.LaunchPluginHandler/MODLAUNCHER]: Found launch plugins: [mixin,eventbus,slf4jfixer,object_holder_definalize,runtime_enum_extender,capability_token_subclass,accesstransformer,runtimedistcleaner] [12May2024 10:56:37.564] [main/DEBUG] [cpw.mods.modlauncher.TransformationServicesHandler/MODLAUNCHER]: Discovering transformation services [12May2024 10:56:37.571] [main/DEBUG] [net.minecraftforge.fml.loading.FMLPaths/CORE]: Path GAMEDIR is C:\Users\calpo\AppData\Roaming\Minecraft server [12May2024 10:56:37.572] [main/DEBUG] [net.minecraftforge.fml.loading.FMLPaths/CORE]: Path MODSDIR is C:\Users\calpo\AppData\Roaming\Minecraft server\mods [12May2024 10:56:37.572] [main/DEBUG] [net.minecraftforge.fml.loading.FMLPaths/CORE]: Path CONFIGDIR is C:\Users\calpo\AppData\Roaming\Minecraft server\config [12May2024 10:56:37.572] [main/DEBUG] [net.minecraftforge.fml.loading.FMLPaths/CORE]: Path FMLCONFIG is C:\Users\calpo\AppData\Roaming\Minecraft server\config\fml.toml [12May2024 10:56:37.939] [main/DEBUG] [cpw.mods.modlauncher.TransformationServicesHandler/MODLAUNCHER]: Found additional transformation services from discovery services:  [12May2024 10:56:37.946] [main/INFO] [net.minecraftforge.fml.loading.ImmediateWindowHandler/]: ImmediateWindowProvider not loading because launch target is forgeserver [12May2024 10:56:37.957] [main/DEBUG] [cpw.mods.modlauncher.TransformationServicesHandler/MODLAUNCHER]: Found transformer services : [mixin,fml] [12May2024 10:56:37.957] [main/DEBUG] [cpw.mods.modlauncher.TransformationServicesHandler/MODLAUNCHER]: Transformation services loading [12May2024 10:56:37.958] [main/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator/MODLAUNCHER]: Loading service mixin [12May2024 10:56:37.958] [main/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator/MODLAUNCHER]: Loaded service mixin [12May2024 10:56:37.958] [main/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator/MODLAUNCHER]: Loading service fml [12May2024 10:56:37.960] [main/DEBUG] [net.minecraftforge.fml.loading.LauncherVersion/CORE]: Found FMLLauncher version 1.0 [12May2024 10:56:37.960] [main/DEBUG] [net.minecraftforge.fml.loading.FMLLoader/CORE]: FML 1.0 loading [12May2024 10:56:37.960] [main/DEBUG] [net.minecraftforge.fml.loading.FMLLoader/CORE]: FML found ModLauncher version : 10.0.9+10.0.9+main.dcd20f30 [12May2024 10:56:37.961] [main/DEBUG] [net.minecraftforge.fml.loading.FMLLoader/CORE]: FML found AccessTransformer version : 8.0.4+66+master.c09db6d7 [12May2024 10:56:37.961] [main/DEBUG] [net.minecraftforge.fml.loading.FMLLoader/CORE]: FML found EventBus version : 6.0.5+6.0.5+master.eb8e549b [12May2024 10:56:37.961] [main/DEBUG] [net.minecraftforge.fml.loading.FMLLoader/CORE]: Found Runtime Dist Cleaner [12May2024 10:56:37.963] [main/DEBUG] [net.minecraftforge.fml.loading.FMLLoader/CORE]: FML found CoreMod version : 5.0.1+15+master.dc5a2922 [12May2024 10:56:37.965] [main/DEBUG] [net.minecraftforge.fml.loading.FMLLoader/CORE]: Found ForgeSPI package implementation version 7.0.1+7.0.1+master.d2b38bf6 [12May2024 10:56:37.965] [main/DEBUG] [net.minecraftforge.fml.loading.FMLLoader/CORE]: Found ForgeSPI package specification 5 [12May2024 10:56:37.965] [main/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator/MODLAUNCHER]: Loaded service fml [12May2024 10:56:37.967] [main/DEBUG] [cpw.mods.modlauncher.TransformationServicesHandler/MODLAUNCHER]: Configuring option handling for services [12May2024 10:56:37.974] [main/DEBUG] [cpw.mods.modlauncher.TransformationServicesHandler/MODLAUNCHER]: Transformation services initializing [12May2024 10:56:37.975] [main/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator/MODLAUNCHER]: Initializing transformation service mixin [12May2024 10:56:37.994] [main/DEBUG] [mixin/]: MixinService [ModLauncher] was successfully booted in cpw.mods.cl.ModuleClassLoader@2f8f5f62 [12May2024 10:56:38.012] [main/INFO] [mixin/]: SpongePowered MIXIN Subsystem Version=0.8.5 Source=union:/C:/Users/calpo/AppData/Roaming/Minecraft%20server/libraries/org/spongepowered/mixin/0.8.5/mixin-0.8.5.jar%2365!/ Service=ModLauncher Env=SERVER [12May2024 10:56:38.016] [main/DEBUG] [mixin/]: Initialising Mixin Platform Manager [12May2024 10:56:38.017] [main/DEBUG] [mixin/]: Adding mixin platform agents for container ModLauncher Root Container(ModLauncher:4f56a0a2) [12May2024 10:56:38.017] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for ModLauncher Root Container(ModLauncher:4f56a0a2) [12May2024 10:56:38.018] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container ModLauncher Root Container(ModLauncher:4f56a0a2) [12May2024 10:56:38.018] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for ModLauncher Root Container(ModLauncher:4f56a0a2) [12May2024 10:56:38.018] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container ModLauncher Root Container(ModLauncher:4f56a0a2) [12May2024 10:56:38.021] [main/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator/MODLAUNCHER]: Initialized transformation service mixin [12May2024 10:56:38.021] [main/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator/MODLAUNCHER]: Initializing transformation service fml [12May2024 10:56:38.021] [main/DEBUG] [net.minecraftforge.fml.loading.FMLServiceProvider/CORE]: Setting up basic FML game directories [12May2024 10:56:38.022] [main/DEBUG] [net.minecraftforge.fml.loading.FMLPaths/CORE]: Path GAMEDIR is C:\Users\calpo\AppData\Roaming\Minecraft server [12May2024 10:56:38.022] [main/DEBUG] [net.minecraftforge.fml.loading.FMLPaths/CORE]: Path MODSDIR is C:\Users\calpo\AppData\Roaming\Minecraft server\mods [12May2024 10:56:38.023] [main/DEBUG] [net.minecraftforge.fml.loading.FMLPaths/CORE]: Path CONFIGDIR is C:\Users\calpo\AppData\Roaming\Minecraft server\config [12May2024 10:56:38.023] [main/DEBUG] [net.minecraftforge.fml.loading.FMLPaths/CORE]: Path FMLCONFIG is C:\Users\calpo\AppData\Roaming\Minecraft server\config\fml.toml [12May2024 10:56:38.023] [main/DEBUG] [net.minecraftforge.fml.loading.FMLServiceProvider/CORE]: Loading configuration [12May2024 10:56:38.026] [main/DEBUG] [net.minecraftforge.fml.loading.FMLServiceProvider/CORE]: Preparing ModFile [12May2024 10:56:38.030] [main/DEBUG] [net.minecraftforge.fml.loading.FMLServiceProvider/CORE]: Preparing launch handler [12May2024 10:56:38.031] [main/DEBUG] [net.minecraftforge.fml.loading.FMLLoader/CORE]: Using forgeserver as launch service [12May2024 10:56:38.049] [main/DEBUG] [net.minecraftforge.fml.loading.FMLLoader/CORE]: Received command line version data  : VersionInfo[forgeVersion=47.2.0, mcVersion=1.20.1, mcpVersion=20230612.114412, forgeGroup=net.minecraftforge] [12May2024 10:56:38.051] [main/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator/MODLAUNCHER]: Initialized transformation service fml [12May2024 10:56:38.051] [main/DEBUG] [cpw.mods.modlauncher.NameMappingServiceHandler/MODLAUNCHER]: Current naming domain is 'srg' [12May2024 10:56:38.052] [main/DEBUG] [cpw.mods.modlauncher.NameMappingServiceHandler/MODLAUNCHER]: Identified name mapping providers {} [12May2024 10:56:38.052] [main/DEBUG] [cpw.mods.modlauncher.TransformationServicesHandler/MODLAUNCHER]: Transformation services begin scanning [12May2024 10:56:38.053] [main/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator/MODLAUNCHER]: Beginning scan trigger - transformation service mixin [12May2024 10:56:38.053] [main/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator/MODLAUNCHER]: End scan trigger - transformation service mixin [12May2024 10:56:38.053] [main/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator/MODLAUNCHER]: Beginning scan trigger - transformation service fml [12May2024 10:56:38.053] [main/DEBUG] [net.minecraftforge.fml.loading.FMLServiceProvider/CORE]: Initiating mod scan [12May2024 10:56:38.069] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModListHandler/CORE]: Found mod coordinates from lists: [] [12May2024 10:56:38.074] [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) [12May2024 10:56:38.074] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModDiscoverer/CORE]: Found Dependency Locators : (JarInJar:null) [12May2024 10:56:38.088] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Users\calpo\AppData\Roaming\Minecraft server\mods\advancednetherite-forge-2.1.0-1.20.1.jar [12May2024 10:56:38.146] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file advancednetherite-forge-2.1.0-1.20.1.jar with {advancednetherite} mods - versions {2.1.0} [12May2024 10:56:38.151] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Users\calpo\AppData\Roaming\Minecraft server\mods\ApothicAttributes-1.20.1-1.3.4.jar [12May2024 10:56:38.153] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file ApothicAttributes-1.20.1-1.3.4.jar with {attributeslib} mods - versions {1.3.4} [12May2024 10:56:38.158] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Users\calpo\AppData\Roaming\Minecraft server\mods\caelus-forge-3.2.0+1.20.1.jar [12May2024 10:56:38.161] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file caelus-forge-3.2.0+1.20.1.jar with {caelus} mods - versions {3.2.0+1.20.1} [12May2024 10:56:38.166] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Users\calpo\AppData\Roaming\Minecraft server\mods\collective-1.20.1-7.57.jar [12May2024 10:56:38.167] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file collective-1.20.1-7.57.jar with {collective} mods - versions {7.57} [12May2024 10:56:38.173] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Users\calpo\AppData\Roaming\Minecraft server\mods\Controlling-forge-1.20.1-12.0.2.jar [12May2024 10:56:38.176] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file Controlling-forge-1.20.1-12.0.2.jar with {controlling} mods - versions {12.0.2} [12May2024 10:56:38.181] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Users\calpo\AppData\Roaming\Minecraft server\mods\curios-forge-5.9.0+1.20.1.jar [12May2024 10:56:38.183] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file curios-forge-5.9.0+1.20.1.jar with {curios} mods - versions {5.9.0+1.20.1} [12May2024 10:56:38.188] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Users\calpo\AppData\Roaming\Minecraft server\mods\Dungeon Crawl-1.20.1-2.3.14.jar [12May2024 10:56:38.190] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file Dungeon Crawl-1.20.1-2.3.14.jar with {dungeoncrawl} mods - versions {2.3.14} [12May2024 10:56:38.196] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Users\calpo\AppData\Roaming\Minecraft server\mods\DungeonsArise-1.20.x-2.1.58-release.jar [12May2024 10:56:38.197] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file DungeonsArise-1.20.x-2.1.58-release.jar with {dungeons_arise} mods - versions {2.1.58-1.20.x} [12May2024 10:56:38.205] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Users\calpo\AppData\Roaming\Minecraft server\mods\ferritecore-6.0.1-forge.jar [12May2024 10:56:38.206] [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} [12May2024 10:56:38.210] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Users\calpo\AppData\Roaming\Minecraft server\mods\fishontheline-1.20.1-3.2.jar [12May2024 10:56:38.211] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file fishontheline-1.20.1-3.2.jar with {fishontheline} mods - versions {3.2} [12May2024 10:56:38.216] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Users\calpo\AppData\Roaming\Minecraft server\mods\FpsReducer2-forge-1.20-2.5.jar [12May2024 10:56:38.218] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file FpsReducer2-forge-1.20-2.5.jar with {fpsreducer} mods - versions {1.20-2.5} [12May2024 10:56:38.223] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Users\calpo\AppData\Roaming\Minecraft server\mods\GatewaysToEternity-1.20.1-4.2.4.jar [12May2024 10:56:38.224] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file GatewaysToEternity-1.20.1-4.2.4.jar with {gateways} mods - versions {4.2.4} [12May2024 10:56:38.229] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Users\calpo\AppData\Roaming\Minecraft server\mods\geckolib-forge-1.20.1-4.4.4.jar [12May2024 10:56:38.230] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file geckolib-forge-1.20.1-4.4.4.jar with {geckolib} mods - versions {4.4.4} [12May2024 10:56:38.235] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Users\calpo\AppData\Roaming\Minecraft server\mods\inventorysorter-1.20.1-23.0.1.jar [12May2024 10:56:38.236] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file inventorysorter-1.20.1-23.0.1.jar with {inventorysorter} mods - versions {23.0.1} [12May2024 10:56:38.243] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Users\calpo\AppData\Roaming\Minecraft server\mods\irons_spellbooks-1.20.1-3.1.4.jar [12May2024 10:56:38.245] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file irons_spellbooks-1.20.1-3.1.4.jar with {irons_spellbooks} mods - versions {1.20.1-3.1.4} [12May2024 10:56:38.250] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Users\calpo\AppData\Roaming\Minecraft server\mods\jei-1.20.1-forge-15.3.0.4.jar [12May2024 10:56:38.251] [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} [12May2024 10:56:38.258] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Users\calpo\AppData\Roaming\Minecraft server\mods\journeymap-1.20.1-5.9.21-forge.jar [12May2024 10:56:38.259] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file journeymap-1.20.1-5.9.21-forge.jar with {journeymap} mods - versions {5.9.21} [12May2024 10:56:38.263] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Users\calpo\AppData\Roaming\Minecraft server\mods\modernfix-forge-5.17.0+mc1.20.1.jar [12May2024 10:56:38.265] [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} [12May2024 10:56:38.269] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Users\calpo\AppData\Roaming\Minecraft server\mods\MouseTweaks-forge-mc1.20-2.25.jar [12May2024 10:56:38.270] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file MouseTweaks-forge-mc1.20-2.25.jar with {mousetweaks} mods - versions {2.25} [12May2024 10:56:38.275] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Users\calpo\AppData\Roaming\Minecraft server\mods\NaturesCompass-1.20.1-1.11.2-forge.jar [12May2024 10:56:38.276] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file NaturesCompass-1.20.1-1.11.2-forge.jar with {naturescompass} mods - versions {1.20.1-1.11.2-forge} [12May2024 10:56:38.280] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Users\calpo\AppData\Roaming\Minecraft server\mods\passiveshield-1.20.1-3.4.jar [12May2024 10:56:38.281] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file passiveshield-1.20.1-3.4.jar with {passiveshield} mods - versions {3.4} [12May2024 10:56:38.286] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Users\calpo\AppData\Roaming\Minecraft server\mods\Placebo-1.20.1-8.6.1.jar [12May2024 10:56:38.286] [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} [12May2024 10:56:38.291] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Users\calpo\AppData\Roaming\Minecraft server\mods\player-animation-lib-forge-1.0.2-rc1+1.20.jar [12May2024 10:56:38.292] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file player-animation-lib-forge-1.0.2-rc1+1.20.jar with {playeranimator} mods - versions {1.0.2-rc1+1.20} [12May2024 10:56:38.296] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Users\calpo\AppData\Roaming\Minecraft server\mods\polymorph-forge-0.49.3+1.20.1.jar [12May2024 10:56:38.297] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file polymorph-forge-0.49.3+1.20.1.jar with {polymorph} mods - versions {0.49.3+1.20.1} [12May2024 10:56:38.302] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Users\calpo\AppData\Roaming\Minecraft server\mods\Searchables-forge-1.20.1-1.0.3.jar [12May2024 10:56:38.303] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file Searchables-forge-1.20.1-1.0.3.jar with {searchables} mods - versions {1.0.3} [12May2024 10:56:38.307] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Users\calpo\AppData\Roaming\Minecraft server\mods\stackrefill-1.20.1-4.2.jar [12May2024 10:56:38.308] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file stackrefill-1.20.1-4.2.jar with {stackrefill} mods - versions {4.2} [12May2024 10:56:38.312] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Users\calpo\AppData\Roaming\Minecraft server\mods\tombstone-1.20.1-8.6.5.jar [12May2024 10:56:38.313] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file tombstone-1.20.1-8.6.5.jar with {tombstone} mods - versions {8.6.5} [12May2024 10:56:38.318] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Users\calpo\AppData\Roaming\Minecraft server\mods\travelersbackpack-forge-1.20.1-9.1.14.jar [12May2024 10:56:38.319] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file travelersbackpack-forge-1.20.1-9.1.14.jar with {travelersbackpack} mods - versions {9.1.14} [12May2024 10:56:38.324] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Users\calpo\AppData\Roaming\Minecraft server\mods\veinmining-forge-1.4.1+1.20.1.jar [12May2024 10:56:38.324] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file veinmining-forge-1.4.1+1.20.1.jar with {veinmining} mods - versions {1.4.1+1.20.1} [12May2024 10:56:38.472] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file server-1.20.1-20230612.114412-srg.jar with {minecraft} mods - versions {1.20.1} [12May2024 10:56:38.479] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Users\calpo\AppData\Roaming\Minecraft server\libraries\net\minecraftforge\fmlcore\1.20.1-47.2.0\fmlcore-1.20.1-47.2.0.jar [12May2024 10:56:38.479] [main/WARN] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Mod file C:\Users\calpo\AppData\Roaming\Minecraft server\libraries\net\minecraftforge\fmlcore\1.20.1-47.2.0\fmlcore-1.20.1-47.2.0.jar is missing mods.toml file [12May2024 10:56:38.486] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Users\calpo\AppData\Roaming\Minecraft server\libraries\net\minecraftforge\javafmllanguage\1.20.1-47.2.0\javafmllanguage-1.20.1-47.2.0.jar [12May2024 10:56:38.486] [main/WARN] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Mod file C:\Users\calpo\AppData\Roaming\Minecraft server\libraries\net\minecraftforge\javafmllanguage\1.20.1-47.2.0\javafmllanguage-1.20.1-47.2.0.jar is missing mods.toml file [12May2024 10:56:38.493] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Users\calpo\AppData\Roaming\Minecraft server\libraries\net\minecraftforge\lowcodelanguage\1.20.1-47.2.0\lowcodelanguage-1.20.1-47.2.0.jar [12May2024 10:56:38.493] [main/WARN] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Mod file C:\Users\calpo\AppData\Roaming\Minecraft server\libraries\net\minecraftforge\lowcodelanguage\1.20.1-47.2.0\lowcodelanguage-1.20.1-47.2.0.jar is missing mods.toml file [12May2024 10:56:38.499] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Users\calpo\AppData\Roaming\Minecraft server\libraries\net\minecraftforge\mclanguage\1.20.1-47.2.0\mclanguage-1.20.1-47.2.0.jar [12May2024 10:56:38.500] [main/WARN] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Mod file C:\Users\calpo\AppData\Roaming\Minecraft server\libraries\net\minecraftforge\mclanguage\1.20.1-47.2.0\mclanguage-1.20.1-47.2.0.jar is missing mods.toml file [12May2024 10:56:38.529] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Users\calpo\AppData\Roaming\Minecraft server\libraries\net\minecraftforge\forge\1.20.1-47.2.0\forge-1.20.1-47.2.0-universal.jar [12May2024 10:56:38.531] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file forge-1.20.1-47.2.0-universal.jar with {forge} mods - versions {47.2.0} [12May2024 10:56:38.546] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF\jarjar\metadata.json from server-1.20.1-20230612.114412-srg.jar, it does not contain dependency information. [12May2024 10:56:38.547] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF\jarjar\metadata.json from inventorysorter-1.20.1-23.0.1.jar, it does not contain dependency information. [12May2024 10:56:38.547] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF\jarjar\metadata.json from MouseTweaks-forge-mc1.20-2.25.jar, it does not contain dependency information. [12May2024 10:56:38.547] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF\jarjar\metadata.json from player-animation-lib-forge-1.0.2-rc1+1.20.jar, it does not contain dependency information. [12May2024 10:56:38.547] [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. [12May2024 10:56:38.547] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF\jarjar\metadata.json from fishontheline-1.20.1-3.2.jar, it does not contain dependency information. [12May2024 10:56:38.547] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF\jarjar\metadata.json from caelus-forge-3.2.0+1.20.1.jar, it does not contain dependency information. [12May2024 10:56:38.547] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF\jarjar\metadata.json from curios-forge-5.9.0+1.20.1.jar, it does not contain dependency information. [12May2024 10:56:38.548] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF\jarjar\metadata.json from collective-1.20.1-7.57.jar, it does not contain dependency information. [12May2024 10:56:38.548] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF\jarjar\metadata.json from advancednetherite-forge-2.1.0-1.20.1.jar, it does not contain dependency information. [12May2024 10:56:38.548] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF\jarjar\metadata.json from journeymap-1.20.1-5.9.21-forge.jar, it does not contain dependency information. [12May2024 10:56:38.548] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF\jarjar\metadata.json from Controlling-forge-1.20.1-12.0.2.jar, it does not contain dependency information. [12May2024 10:56:38.548] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF\jarjar\metadata.json from Searchables-forge-1.20.1-1.0.3.jar, it does not contain dependency information. [12May2024 10:56:38.548] [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. [12May2024 10:56:38.548] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF\jarjar\metadata.json from travelersbackpack-forge-1.20.1-9.1.14.jar, it does not contain dependency information. [12May2024 10:56:38.549] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF\jarjar\metadata.json from NaturesCompass-1.20.1-1.11.2-forge.jar, it does not contain dependency information. [12May2024 10:56:38.549] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF\jarjar\metadata.json from irons_spellbooks-1.20.1-3.1.4.jar, it does not contain dependency information. [12May2024 10:56:38.549] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF\jarjar\metadata.json from ApothicAttributes-1.20.1-1.3.4.jar, it does not contain dependency information. [12May2024 10:56:38.549] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF\jarjar\metadata.json from GatewaysToEternity-1.20.1-4.2.4.jar, it does not contain dependency information. [12May2024 10:56:38.549] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF\jarjar\metadata.json from tombstone-1.20.1-8.6.5.jar, it does not contain dependency information. [12May2024 10:56:38.549] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF\jarjar\metadata.json from Dungeon Crawl-1.20.1-2.3.14.jar, it does not contain dependency information. [12May2024 10:56:38.549] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF\jarjar\metadata.json from passiveshield-1.20.1-3.4.jar, it does not contain dependency information. [12May2024 10:56:38.549] [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. [12May2024 10:56:38.549] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF\jarjar\metadata.json from FpsReducer2-forge-1.20-2.5.jar, it does not contain dependency information. [12May2024 10:56:38.550] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF\jarjar\metadata.json from forge-1.20.1-47.2.0-universal.jar, it does not contain dependency information. [12May2024 10:56:38.550] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF\jarjar\metadata.json from stackrefill-1.20.1-4.2.jar, it does not contain dependency information. [12May2024 10:56:38.550] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF\jarjar\metadata.json from DungeonsArise-1.20.x-2.1.58-release.jar, it does not contain dependency information. [12May2024 10:56:38.550] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF\jarjar\metadata.json from mclanguage-1.20.1-47.2.0.jar, it does not contain dependency information. [12May2024 10:56:38.550] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF\jarjar\metadata.json from javafmllanguage-1.20.1-47.2.0.jar, it does not contain dependency information. [12May2024 10:56:38.550] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF\jarjar\metadata.json from fmlcore-1.20.1-47.2.0.jar, it does not contain dependency information. [12May2024 10:56:38.550] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF\jarjar\metadata.json from lowcodelanguage-1.20.1-47.2.0.jar, it does not contain dependency information. [12May2024 10:56:38.615] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate  [12May2024 10:56:38.616] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file spectrelib-forge-0.13.15+1.20.1.jar with {spectrelib} mods - versions {0.13.15+1.20.1} [12May2024 10:56:38.624] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate  [12May2024 10:56:38.625] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file spectrelib-forge-0.13.15+1.20.1.jar with {spectrelib} mods - versions {0.13.15+1.20.1} [12May2024 10:56:38.626] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate  [12May2024 10:56:38.627] [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} [12May2024 10:56:38.627] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF\jarjar\metadata.json from spectrelib-forge-0.13.15+1.20.1.jar, it does not contain dependency information. [12May2024 10:56:38.627] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF\jarjar\metadata.json from mclib-20.jar, it does not contain dependency information. [12May2024 10:56:38.627] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF\jarjar\metadata.json from spectrelib-forge-0.13.15+1.20.1.jar, it does not contain dependency information. [12May2024 10:56:38.633] [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. [12May2024 10:56:38.658] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate  [12May2024 10:56:38.659] [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} [12May2024 10:56:38.667] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate  [12May2024 10:56:38.668] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file spectrelib-forge-0.13.15+1.20.1.jar with {spectrelib} mods - versions {0.13.15+1.20.1} [12May2024 10:56:38.670] [main/INFO] [net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator/]: Found 4 dependencies adding them to mods collection [12May2024 10:56:38.672] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file server-1.20.1-20230612.114412-srg.jar with {minecraft} mods - versions {1.20.1} [12May2024 10:56:38.675] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file C:\Users\calpo\AppData\Roaming\Minecraft server\libraries\net\minecraft\server\1.20.1-20230612.114412\server-1.20.1-20230612.114412-srg.jar with languages [LanguageSpec[languageName=minecraft, acceptedVersions=1]] [12May2024 10:56:38.677] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Users\calpo\AppData\Roaming\Minecraft server\mods\inventorysorter-1.20.1-23.0.1.jar [12May2024 10:56:38.678] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file inventorysorter-1.20.1-23.0.1.jar with {inventorysorter} mods - versions {23.0.1} [12May2024 10:56:38.678] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file C:\Users\calpo\AppData\Roaming\Minecraft server\mods\inventorysorter-1.20.1-23.0.1.jar with languages [LanguageSpec[languageName=javafml, acceptedVersions=[38,)]] [12May2024 10:56:38.678] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Users\calpo\AppData\Roaming\Minecraft server\mods\MouseTweaks-forge-mc1.20-2.25.jar [12May2024 10:56:38.679] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file MouseTweaks-forge-mc1.20-2.25.jar with {mousetweaks} mods - versions {2.25} [12May2024 10:56:38.679] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file C:\Users\calpo\AppData\Roaming\Minecraft server\mods\MouseTweaks-forge-mc1.20-2.25.jar with languages [LanguageSpec[languageName=javafml, acceptedVersions=[46,)]] [12May2024 10:56:38.679] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Users\calpo\AppData\Roaming\Minecraft server\mods\geckolib-forge-1.20.1-4.4.4.jar [12May2024 10:56:38.680] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file geckolib-forge-1.20.1-4.4.4.jar with {geckolib} mods - versions {4.4.4} [12May2024 10:56:38.680] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file C:\Users\calpo\AppData\Roaming\Minecraft server\mods\geckolib-forge-1.20.1-4.4.4.jar with languages [LanguageSpec[languageName=javafml, acceptedVersions=[47,)]] [12May2024 10:56:38.680] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Users\calpo\AppData\Roaming\Minecraft server\mods\player-animation-lib-forge-1.0.2-rc1+1.20.jar [12May2024 10:56:38.681] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file player-animation-lib-forge-1.0.2-rc1+1.20.jar with {playeranimator} mods - versions {1.0.2-rc1+1.20} [12May2024 10:56:38.681] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file C:\Users\calpo\AppData\Roaming\Minecraft server\mods\player-animation-lib-forge-1.0.2-rc1+1.20.jar with languages [LanguageSpec[languageName=javafml, acceptedVersions=[46.0.0,)]] [12May2024 10:56:38.681] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate  [12May2024 10:56:38.682] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file spectrelib-forge-0.13.15+1.20.1.jar with {spectrelib} mods - versions {0.13.15+1.20.1} [12May2024 10:56:38.682] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file  with languages [LanguageSpec[languageName=javafml, acceptedVersions=[41,)]] [12May2024 10:56:38.682] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Users\calpo\AppData\Roaming\Minecraft server\mods\jei-1.20.1-forge-15.3.0.4.jar [12May2024 10:56:38.683] [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} [12May2024 10:56:38.683] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file C:\Users\calpo\AppData\Roaming\Minecraft server\mods\jei-1.20.1-forge-15.3.0.4.jar with languages [LanguageSpec[languageName=javafml, acceptedVersions=[47,)]] [12May2024 10:56:38.683] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Users\calpo\AppData\Roaming\Minecraft server\mods\fishontheline-1.20.1-3.2.jar [12May2024 10:56:38.684] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file fishontheline-1.20.1-3.2.jar with {fishontheline} mods - versions {3.2} [12May2024 10:56:38.684] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file C:\Users\calpo\AppData\Roaming\Minecraft server\mods\fishontheline-1.20.1-3.2.jar with languages [LanguageSpec[languageName=javafml, acceptedVersions=*]] [12May2024 10:56:38.684] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Users\calpo\AppData\Roaming\Minecraft server\mods\caelus-forge-3.2.0+1.20.1.jar [12May2024 10:56:38.684] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file caelus-forge-3.2.0+1.20.1.jar with {caelus} mods - versions {3.2.0+1.20.1} [12May2024 10:56:38.684] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file C:\Users\calpo\AppData\Roaming\Minecraft server\mods\caelus-forge-3.2.0+1.20.1.jar with languages [LanguageSpec[languageName=javafml, acceptedVersions=[46,)]] [12May2024 10:56:38.685] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Users\calpo\AppData\Roaming\Minecraft server\mods\curios-forge-5.9.0+1.20.1.jar [12May2024 10:56:38.686] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file curios-forge-5.9.0+1.20.1.jar with {curios} mods - versions {5.9.0+1.20.1} [12May2024 10:56:38.686] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file C:\Users\calpo\AppData\Roaming\Minecraft server\mods\curios-forge-5.9.0+1.20.1.jar with languages [LanguageSpec[languageName=javafml, acceptedVersions=[41,)]] [12May2024 10:56:38.686] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Users\calpo\AppData\Roaming\Minecraft server\mods\collective-1.20.1-7.57.jar [12May2024 10:56:38.686] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file collective-1.20.1-7.57.jar with {collective} mods - versions {7.57} [12May2024 10:56:38.687] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file C:\Users\calpo\AppData\Roaming\Minecraft server\mods\collective-1.20.1-7.57.jar with languages [LanguageSpec[languageName=javafml, acceptedVersions=*]] [12May2024 10:56:38.687] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Users\calpo\AppData\Roaming\Minecraft server\mods\advancednetherite-forge-2.1.0-1.20.1.jar [12May2024 10:56:38.687] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file advancednetherite-forge-2.1.0-1.20.1.jar with {advancednetherite} mods - versions {2.1.0} [12May2024 10:56:38.687] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file C:\Users\calpo\AppData\Roaming\Minecraft server\mods\advancednetherite-forge-2.1.0-1.20.1.jar with languages [LanguageSpec[languageName=javafml, acceptedVersions=[47,)]] [12May2024 10:56:38.688] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Users\calpo\AppData\Roaming\Minecraft server\mods\Controlling-forge-1.20.1-12.0.2.jar [12May2024 10:56:38.688] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file Controlling-forge-1.20.1-12.0.2.jar with {controlling} mods - versions {12.0.2} [12May2024 10:56:38.689] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file C:\Users\calpo\AppData\Roaming\Minecraft server\mods\Controlling-forge-1.20.1-12.0.2.jar with languages [LanguageSpec[languageName=javafml, acceptedVersions=[41,)]] [12May2024 10:56:38.689] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Users\calpo\AppData\Roaming\Minecraft server\mods\journeymap-1.20.1-5.9.21-forge.jar [12May2024 10:56:38.689] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file journeymap-1.20.1-5.9.21-forge.jar with {journeymap} mods - versions {5.9.21} [12May2024 10:56:38.690] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file C:\Users\calpo\AppData\Roaming\Minecraft server\mods\journeymap-1.20.1-5.9.21-forge.jar with languages [LanguageSpec[languageName=javafml, acceptedVersions=[44,)]] [12May2024 10:56:38.693] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Found coremod journeymap potion effect transformer with Javascript path potion-effects-shift.js [12May2024 10:56:38.693] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Found coremod potion-effects-shift.js [12May2024 10:56:38.693] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Users\calpo\AppData\Roaming\Minecraft server\mods\modernfix-forge-5.17.0+mc1.20.1.jar [12May2024 10:56:38.694] [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} [12May2024 10:56:38.695] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file C:\Users\calpo\AppData\Roaming\Minecraft server\mods\modernfix-forge-5.17.0+mc1.20.1.jar with languages [LanguageSpec[languageName=javafml, acceptedVersions=[46,)]] [12May2024 10:56:38.695] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Users\calpo\AppData\Roaming\Minecraft server\mods\Placebo-1.20.1-8.6.1.jar [12May2024 10:56:38.695] [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} [12May2024 10:56:38.695] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file C:\Users\calpo\AppData\Roaming\Minecraft server\mods\Placebo-1.20.1-8.6.1.jar with languages [LanguageSpec[languageName=javafml, acceptedVersions=[32,)]] [12May2024 10:56:38.696] [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 [12May2024 10:56:38.696] [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 [12May2024 10:56:38.696] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Found coremod coremods/get_ench_level_event.js [12May2024 10:56:38.696] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Found coremod coremods/get_ench_level_event_specific.js [12May2024 10:56:38.696] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Users\calpo\AppData\Roaming\Minecraft server\mods\polymorph-forge-0.49.3+1.20.1.jar [12May2024 10:56:38.697] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file polymorph-forge-0.49.3+1.20.1.jar with {polymorph} mods - versions {0.49.3+1.20.1} [12May2024 10:56:38.697] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file C:\Users\calpo\AppData\Roaming\Minecraft server\mods\polymorph-forge-0.49.3+1.20.1.jar with languages [LanguageSpec[languageName=javafml, acceptedVersions=[41,)]] [12May2024 10:56:38.697] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Users\calpo\AppData\Roaming\Minecraft server\mods\Searchables-forge-1.20.1-1.0.3.jar [12May2024 10:56:38.698] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file Searchables-forge-1.20.1-1.0.3.jar with {searchables} mods - versions {1.0.3} [12May2024 10:56:38.698] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file C:\Users\calpo\AppData\Roaming\Minecraft server\mods\Searchables-forge-1.20.1-1.0.3.jar with languages [LanguageSpec[languageName=javafml, acceptedVersions=[41,)]] [12May2024 10:56:38.699] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Users\calpo\AppData\Roaming\Minecraft server\mods\NaturesCompass-1.20.1-1.11.2-forge.jar [12May2024 10:56:38.699] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file NaturesCompass-1.20.1-1.11.2-forge.jar with {naturescompass} mods - versions {1.20.1-1.11.2-forge} [12May2024 10:56:38.700] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file C:\Users\calpo\AppData\Roaming\Minecraft server\mods\NaturesCompass-1.20.1-1.11.2-forge.jar with languages [LanguageSpec[languageName=javafml, acceptedVersions=[47,)]] [12May2024 10:56:38.700] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Users\calpo\AppData\Roaming\Minecraft server\mods\travelersbackpack-forge-1.20.1-9.1.14.jar [12May2024 10:56:38.700] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file travelersbackpack-forge-1.20.1-9.1.14.jar with {travelersbackpack} mods - versions {9.1.14} [12May2024 10:56:38.700] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file C:\Users\calpo\AppData\Roaming\Minecraft server\mods\travelersbackpack-forge-1.20.1-9.1.14.jar with languages [LanguageSpec[languageName=javafml, acceptedVersions=[46,)]] [12May2024 10:56:38.701] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Users\calpo\AppData\Roaming\Minecraft server\mods\ApothicAttributes-1.20.1-1.3.4.jar [12May2024 10:56:38.701] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file ApothicAttributes-1.20.1-1.3.4.jar with {attributeslib} mods - versions {1.3.4} [12May2024 10:56:38.701] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file C:\Users\calpo\AppData\Roaming\Minecraft server\mods\ApothicAttributes-1.20.1-1.3.4.jar with languages [LanguageSpec[languageName=javafml, acceptedVersions=[32,)]] [12May2024 10:56:38.702] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Found coremod attributeslib_potion_gui_tooltips with Javascript path coremods/potion_gui_tooltips.js [12May2024 10:56:38.702] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Found coremod coremods/potion_gui_tooltips.js [12May2024 10:56:38.702] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Users\calpo\AppData\Roaming\Minecraft server\mods\irons_spellbooks-1.20.1-3.1.4.jar [12May2024 10:56:38.703] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file irons_spellbooks-1.20.1-3.1.4.jar with {irons_spellbooks} mods - versions {1.20.1-3.1.4} [12May2024 10:56:38.703] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file C:\Users\calpo\AppData\Roaming\Minecraft server\mods\irons_spellbooks-1.20.1-3.1.4.jar with languages [LanguageSpec[languageName=javafml, acceptedVersions=[47,)]] [12May2024 10:56:38.703] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Users\calpo\AppData\Roaming\Minecraft server\mods\GatewaysToEternity-1.20.1-4.2.4.jar [12May2024 10:56:38.704] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file GatewaysToEternity-1.20.1-4.2.4.jar with {gateways} mods - versions {4.2.4} [12May2024 10:56:38.704] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file C:\Users\calpo\AppData\Roaming\Minecraft server\mods\GatewaysToEternity-1.20.1-4.2.4.jar with languages [LanguageSpec[languageName=javafml, acceptedVersions=[32,)]] [12May2024 10:56:38.704] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Users\calpo\AppData\Roaming\Minecraft server\mods\Dungeon Crawl-1.20.1-2.3.14.jar [12May2024 10:56:38.705] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file Dungeon Crawl-1.20.1-2.3.14.jar with {dungeoncrawl} mods - versions {2.3.14} [12May2024 10:56:38.705] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file C:\Users\calpo\AppData\Roaming\Minecraft server\mods\Dungeon Crawl-1.20.1-2.3.14.jar with languages [LanguageSpec[languageName=javafml, acceptedVersions=[47,)]] [12May2024 10:56:38.705] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Users\calpo\AppData\Roaming\Minecraft server\mods\tombstone-1.20.1-8.6.5.jar [12May2024 10:56:38.705] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file tombstone-1.20.1-8.6.5.jar with {tombstone} mods - versions {8.6.5} [12May2024 10:56:38.706] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file C:\Users\calpo\AppData\Roaming\Minecraft server\mods\tombstone-1.20.1-8.6.5.jar with languages [LanguageSpec[languageName=javafml, acceptedVersions=[46,)]] [12May2024 10:56:38.706] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Users\calpo\AppData\Roaming\Minecraft server\mods\passiveshield-1.20.1-3.4.jar [12May2024 10:56:38.706] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file passiveshield-1.20.1-3.4.jar with {passiveshield} mods - versions {3.4} [12May2024 10:56:38.706] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file C:\Users\calpo\AppData\Roaming\Minecraft server\mods\passiveshield-1.20.1-3.4.jar with languages [LanguageSpec[languageName=javafml, acceptedVersions=*]] [12May2024 10:56:38.706] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Users\calpo\AppData\Roaming\Minecraft server\mods\ferritecore-6.0.1-forge.jar [12May2024 10:56:38.707] [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} [12May2024 10:56:38.707] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file C:\Users\calpo\AppData\Roaming\Minecraft server\mods\ferritecore-6.0.1-forge.jar with languages [LanguageSpec[languageName=javafml, acceptedVersions=[28,)]] [12May2024 10:56:38.707] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Users\calpo\AppData\Roaming\Minecraft server\mods\FpsReducer2-forge-1.20-2.5.jar [12May2024 10:56:38.708] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file FpsReducer2-forge-1.20-2.5.jar with {fpsreducer} mods - versions {1.20-2.5} [12May2024 10:56:38.708] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file C:\Users\calpo\AppData\Roaming\Minecraft server\mods\FpsReducer2-forge-1.20-2.5.jar with languages [LanguageSpec[languageName=javafml, acceptedVersions=[46,)]] [12May2024 10:56:38.708] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Users\calpo\AppData\Roaming\Minecraft server\mods\stackrefill-1.20.1-4.2.jar [12May2024 10:56:38.709] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file stackrefill-1.20.1-4.2.jar with {stackrefill} mods - versions {4.2} [12May2024 10:56:38.709] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file C:\Users\calpo\AppData\Roaming\Minecraft server\mods\stackrefill-1.20.1-4.2.jar with languages [LanguageSpec[languageName=javafml, acceptedVersions=*]] [12May2024 10:56:38.709] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Users\calpo\AppData\Roaming\Minecraft server\libraries\net\minecraftforge\forge\1.20.1-47.2.0\forge-1.20.1-47.2.0-universal.jar [12May2024 10:56:38.709] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file forge-1.20.1-47.2.0-universal.jar with {forge} mods - versions {47.2.0} [12May2024 10:56:38.710] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file C:\Users\calpo\AppData\Roaming\Minecraft server\libraries\net\minecraftforge\forge\1.20.1-47.2.0\forge-1.20.1-47.2.0-universal.jar with languages [LanguageSpec[languageName=javafml, acceptedVersions=[24,]]] [12May2024 10:56:38.710] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Found coremod field_to_method with Javascript path coremods/field_to_method.js [12May2024 10:56:38.710] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Found coremod field_to_instanceof with Javascript path coremods/field_to_instanceof.js [12May2024 10:56:38.710] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Found coremod add_bouncer_method with Javascript path coremods/add_bouncer_method.js [12May2024 10:56:38.710] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Found coremod method_redirector with Javascript path coremods/method_redirector.js [12May2024 10:56:38.710] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Found coremod coremods/field_to_method.js [12May2024 10:56:38.710] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Found coremod coremods/field_to_instanceof.js [12May2024 10:56:38.710] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Found coremod coremods/add_bouncer_method.js [12May2024 10:56:38.711] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Found coremod coremods/method_redirector.js [12May2024 10:56:38.711] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Users\calpo\AppData\Roaming\Minecraft server\mods\veinmining-forge-1.4.1+1.20.1.jar [12May2024 10:56:38.711] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file veinmining-forge-1.4.1+1.20.1.jar with {veinmining} mods - versions {1.4.1+1.20.1} [12May2024 10:56:38.711] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file C:\Users\calpo\AppData\Roaming\Minecraft server\mods\veinmining-forge-1.4.1+1.20.1.jar with languages [LanguageSpec[languageName=javafml, acceptedVersions=[41,)]] [12May2024 10:56:38.712] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Users\calpo\AppData\Roaming\Minecraft server\mods\DungeonsArise-1.20.x-2.1.58-release.jar [12May2024 10:56:38.712] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file DungeonsArise-1.20.x-2.1.58-release.jar with {dungeons_arise} mods - versions {2.1.58-1.20.x} [12May2024 10:56:38.712] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file C:\Users\calpo\AppData\Roaming\Minecraft server\mods\DungeonsArise-1.20.x-2.1.58-release.jar with languages [LanguageSpec[languageName=javafml, acceptedVersions=[41,)]] [12May2024 10:56:38.712] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file  with languages [] [12May2024 10:56:38.713] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate  [12May2024 10:56:38.713] [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} [12May2024 10:56:38.713] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file  with languages [LanguageSpec[languageName=javafml, acceptedVersions=*]] [12May2024 10:56:38.713] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file  with languages [] [12May2024 10:56:38.715] [main/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator/MODLAUNCHER]: End scan trigger - transformation service fml [12May2024 10:56:38.726] [main/DEBUG] [net.minecraftforge.fml.loading.LanguageLoadingProvider/CORE]: Found 3 language providers [12May2024 10:56:38.727] [main/DEBUG] [net.minecraftforge.fml.loading.LanguageLoadingProvider/CORE]: Found language provider minecraft, version 1.0 [12May2024 10:56:38.728] [main/DEBUG] [net.minecraftforge.fml.loading.LanguageLoadingProvider/CORE]: Found language provider lowcodefml, version 47 [12May2024 10:56:38.728] [main/DEBUG] [net.minecraftforge.fml.loading.LanguageLoadingProvider/CORE]: Found language provider javafml, version 47 [12May2024 10:56:38.733] [main/DEBUG] [net.minecraftforge.fml.loading.ModSorter/]: Configured system mods: [minecraft, forge] [12May2024 10:56:38.733] [main/DEBUG] [net.minecraftforge.fml.loading.ModSorter/]: Found system mod: minecraft [12May2024 10:56:38.733] [main/DEBUG] [net.minecraftforge.fml.loading.ModSorter/]: Found system mod: forge [12May2024 10:56:38.737] [main/DEBUG] [net.minecraftforge.fml.loading.ModSorter/LOADING]: Found 53 mod requirements (53 mandatory, 0 optional) [12May2024 10:56:38.738] [main/DEBUG] [net.minecraftforge.fml.loading.ModSorter/LOADING]: Found 0 mod requirements missing (0 mandatory, 0 optional) [12May2024 10:56:39.239] [main/DEBUG] [cpw.mods.modlauncher.TransformationServicesHandler/MODLAUNCHER]: Transformation services loading transformers [12May2024 10:56:39.240] [main/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator/MODLAUNCHER]: Initializing transformers for transformation service mixin [12May2024 10:56:39.240] [main/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator/MODLAUNCHER]: Initialized transformers for transformation service mixin [12May2024 10:56:39.241] [main/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator/MODLAUNCHER]: Initializing transformers for transformation service fml [12May2024 10:56:39.241] [main/DEBUG] [net.minecraftforge.fml.loading.FMLServiceProvider/CORE]: Loading coremod transformers [12May2024 10:56:39.241] [main/DEBUG] [net.minecraftforge.coremod.CoreModEngine/COREMOD]: Loading CoreMod from potion-effects-shift.js [12May2024 10:56:39.512] [main/DEBUG] [net.minecraftforge.coremod.CoreModEngine/COREMOD]: CoreMod loaded successfully [12May2024 10:56:39.512] [main/DEBUG] [net.minecraftforge.coremod.CoreModEngine/COREMOD]: Loading CoreMod from coremods/get_ench_level_event.js [12May2024 10:56:39.526] [main/DEBUG] [net.minecraftforge.coremod.CoreModEngine/COREMOD]: CoreMod loaded successfully [12May2024 10:56:39.526] [main/DEBUG] [net.minecraftforge.coremod.CoreModEngine/COREMOD]: Loading CoreMod from coremods/get_ench_level_event_specific.js [12May2024 10:56:39.539] [main/DEBUG] [net.minecraftforge.coremod.CoreModEngine/COREMOD]: CoreMod loaded successfully [12May2024 10:56:39.539] [main/DEBUG] [net.minecraftforge.coremod.CoreModEngine/COREMOD]: Loading CoreMod from coremods/potion_gui_tooltips.js [12May2024 10:56:39.553] [main/DEBUG] [net.minecraftforge.coremod.CoreModEngine/COREMOD]: CoreMod loaded successfully [12May2024 10:56:39.554] [main/DEBUG] [net.minecraftforge.coremod.CoreModEngine/COREMOD]: Loading CoreMod from coremods/field_to_method.js [12May2024 10:56:39.589] [main/DEBUG] [net.minecraftforge.coremod.CoreModEngine/COREMOD]: CoreMod loaded successfully [12May2024 10:56:39.589] [main/DEBUG] [net.minecraftforge.coremod.CoreModEngine/COREMOD]: Loading CoreMod from coremods/field_to_instanceof.js [12May2024 10:56:39.625] [main/DEBUG] [net.minecraftforge.coremod.CoreModEngine/COREMOD]: CoreMod loaded successfully [12May2024 10:56:39.625] [main/DEBUG] [net.minecraftforge.coremod.CoreModEngine/COREMOD]: Loading CoreMod from coremods/add_bouncer_method.js [12May2024 10:56:39.655] [main/DEBUG] [net.minecraftforge.coremod.CoreModEngine/COREMOD]: CoreMod loaded successfully [12May2024 10:56:39.655] [main/DEBUG] [net.minecraftforge.coremod.CoreModEngine/COREMOD]: Loading CoreMod from coremods/method_redirector.js [12May2024 10:56:39.724] [main/DEBUG] [net.minecraftforge.coremod.CoreModEngine/COREMOD]: CoreMod loaded successfully [12May2024 10:56:39.738] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModMethodTransformer@1fedf0a4 to Target : METHOD {Lnet/minecraft/client/gui/Gui;} {m_93028_} {(Lcom/mojang/blaze3d/vertex/PoseStack;)V} [12May2024 10:56:39.739] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModMethodTransformer@1acb74ad to Target : METHOD {Lnet/minecraftforge/common/extensions/IForgeItemStack;} {getAllEnchantments} {()Ljava/util/Map;} [12May2024 10:56:39.739] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModMethodTransformer@7bf01cb to Target : METHOD {Lnet/minecraftforge/common/extensions/IForgeItemStack;} {getEnchantmentLevel} {(Lnet/minecraft/world/item/enchantment/Enchantment;)I} [12May2024 10:56:39.739] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModMethodTransformer@2f382a5e to Target : METHOD {Lnet/minecraft/client/gui/screens/inventory/EffectRenderingInventoryScreen;} {m_280113_} {(Lnet/minecraft/client/gui/GuiGraphics;II)V} [12May2024 10:56:39.740] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@539a138b to Target : CLASS {Lnet/minecraft/world/level/biome/Biome;} {} {V} [12May2024 10:56:39.740] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@2cd4e16a to Target : CLASS {Lnet/minecraft/world/level/levelgen/structure/Structure;} {} {V} [12May2024 10:56:39.740] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@42505474 to Target : CLASS {Lnet/minecraft/world/effect/MobEffectInstance;} {} {V} [12May2024 10:56:39.740] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@7b477141 to Target : CLASS {Lnet/minecraft/world/level/block/LiquidBlock;} {} {V} [12May2024 10:56:39.740] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@784223e9 to Target : CLASS {Lnet/minecraft/world/item/BucketItem;} {} {V} [12May2024 10:56:39.740] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@7316523a to Target : CLASS {Lnet/minecraft/world/level/block/StairBlock;} {} {V} [12May2024 10:56:39.740] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@33a55bd8 to Target : CLASS {Lnet/minecraft/world/level/block/FlowerPotBlock;} {} {V} [12May2024 10:56:39.740] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@73a8e994 to Target : CLASS {Lnet/minecraft/world/item/ItemStack;} {} {V} [12May2024 10:56:39.740] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@1a1cc163 to Target : CLASS {Lnet/minecraft/network/play/client/CClientSettingsPacket;} {} {V} [12May2024 10:56:39.741] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@5b5ac798 to Target : CLASS {Lnet/minecraft/world/entity/monster/Strider;} {} {V} [12May2024 10:56:39.741] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@5b5ac798 to Target : CLASS {Lnet/minecraft/world/level/levelgen/PhantomSpawner;} {} {V} [12May2024 10:56:39.741] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@5b5ac798 to Target : CLASS {Lnet/minecraft/world/entity/animal/frog/Tadpole;} {} {V} [12May2024 10:56:39.741] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@5b5ac798 to Target : CLASS {Lnet/minecraft/world/entity/monster/Spider;} {} {V} [12May2024 10:56:39.741] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@5b5ac798 to Target : CLASS {Lnet/minecraft/world/level/levelgen/structure/structures/SwampHutPiece;} {} {V} [12May2024 10:56:39.741] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@5b5ac798 to Target : CLASS {Lnet/minecraft/world/entity/npc/Villager;} {} {V} [12May2024 10:56:39.741] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@5b5ac798 to Target : CLASS {Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate;} {} {V} [12May2024 10:56:39.741] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@5b5ac798 to Target : CLASS {Lnet/minecraft/world/level/levelgen/PatrolSpawner;} {} {V} [12May2024 10:56:39.741] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@5b5ac798 to Target : CLASS {Lnet/minecraft/world/entity/animal/horse/SkeletonTrapGoal;} {} {V} [12May2024 10:56:39.741] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@5b5ac798 to Target : CLASS {Lnet/minecraft/world/level/NaturalSpawner;} {} {V} [12May2024 10:56:39.741] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@5b5ac798 to Target : CLASS {Lnet/minecraft/world/entity/monster/Zombie;} {} {V} [12May2024 10:56:39.742] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@5b5ac798 to Target : CLASS {Lnet/minecraft/server/commands/RaidCommand;} {} {V} [12May2024 10:56:39.742] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@5b5ac798 to Target : CLASS {Lnet/minecraft/world/level/levelgen/structure/structures/OceanRuinPieces$OceanRuinPiece;} {} {V} [12May2024 10:56:39.742] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@5b5ac798 to Target : CLASS {Lnet/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentPiece;} {} {V} [12May2024 10:56:39.742] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@5b5ac798 to Target : CLASS {Lnet/minecraft/world/entity/monster/ZombieVillager;} {} {V} [12May2024 10:56:39.742] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@5b5ac798 to Target : CLASS {Lnet/minecraft/world/entity/npc/CatSpawner;} {} {V} [12May2024 10:56:39.742] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@5b5ac798 to Target : CLASS {Lnet/minecraft/world/entity/EntityType;} {} {V} [12May2024 10:56:39.742] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@5b5ac798 to Target : CLASS {Lnet/minecraft/world/entity/ai/village/VillageSiege;} {} {V} [12May2024 10:56:39.742] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@5b5ac798 to Target : CLASS {Lnet/minecraft/server/commands/SummonCommand;} {} {V} [12May2024 10:56:39.742] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@5b5ac798 to Target : CLASS {Lnet/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$WoodlandMansionPiece;} {} {V} [12May2024 10:56:39.742] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@5b5ac798 to Target : CLASS {Lnet/minecraft/world/entity/raid/Raid;} {} {V} [12May2024 10:56:39.742] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@5b5ac798 to Target : CLASS {Lnet/minecraft/world/entity/monster/Evoker$EvokerSummonSpellGoal;} {} {V} [12May2024 10:56:39.742] [main/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator/MODLAUNCHER]: Initialized transformers for transformation service fml [12May2024 10:56:40.489] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:ModLauncher Root Container(ModLauncher:4f56a0a2)] [12May2024 10:56:40.489] [main/DEBUG] [mixin/]: Processing launch tasks for PlatformAgent[MixinPlatformAgentDefault:ModLauncher Root Container(ModLauncher:4f56a0a2)] [12May2024 10:56:40.490] [main/DEBUG] [mixin/]: Adding mixin platform agents for container SecureJarResource(minecraft) [12May2024 10:56:40.490] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(minecraft) [12May2024 10:56:40.490] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(minecraft) [12May2024 10:56:40.490] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(minecraft) [12May2024 10:56:40.490] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container SecureJarResource(minecraft) [12May2024 10:56:40.490] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(minecraft)] [12May2024 10:56:40.490] [main/DEBUG] [mixin/]: Adding mixin platform agents for container SecureJarResource(inventorysorter) [12May2024 10:56:40.490] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(inventorysorter) [12May2024 10:56:40.491] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(inventorysorter) [12May2024 10:56:40.491] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(inventorysorter) [12May2024 10:56:40.491] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container SecureJarResource(inventorysorter) [12May2024 10:56:40.491] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(inventorysorter)] [12May2024 10:56:40.491] [main/DEBUG] [mixin/]: Adding mixin platform agents for container SecureJarResource(mousetweaks) [12May2024 10:56:40.491] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(mousetweaks) [12May2024 10:56:40.491] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(mousetweaks) [12May2024 10:56:40.491] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(mousetweaks) [12May2024 10:56:40.492] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container SecureJarResource(mousetweaks) [12May2024 10:56:40.492] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(mousetweaks)] [12May2024 10:56:40.492] [main/DEBUG] [mixin/]: Registering mixin config: mousetweaks.mixins.json [12May2024 10:56:40.510] [main/DEBUG] [mixin/]: Compatibility level JAVA_17 specified by mousetweaks.mixins.json is higher than the maximum level supported by this version of mixin (JAVA_13). [12May2024 10:56:40.517] [main/INFO] [mixin/]: Compatibility level set to JAVA_17 [12May2024 10:56:40.518] [main/DEBUG] [mixin/]: Adding mixin platform agents for container SecureJarResource(geckolib) [12May2024 10:56:40.518] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(geckolib) [12May2024 10:56:40.518] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(geckolib) [12May2024 10:56:40.518] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(geckolib) [12May2024 10:56:40.518] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container SecureJarResource(geckolib) [12May2024 10:56:40.519] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(geckolib)] [12May2024 10:56:40.519] [main/DEBUG] [mixin/]: Registering mixin config: geckolib.mixins.json [12May2024 10:56:40.520] [main/DEBUG] [mixin/]: Adding mixin platform agents for container SecureJarResource(playeranimator) [12May2024 10:56:40.521] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(playeranimator) [12May2024 10:56:40.521] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(playeranimator) [12May2024 10:56:40.521] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(playeranimator) [12May2024 10:56:40.521] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container SecureJarResource(playeranimator) [12May2024 10:56:40.521] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(playeranimator)] [12May2024 10:56:40.521] [main/DEBUG] [mixin/]: Registering mixin config: playerAnimator-common.mixins.json [12May2024 10:56:40.523] [main/DEBUG] [mixin/]: Compatibility level JAVA_16 specified by playerAnimator-common.mixins.json is higher than the maximum level supported by this version of mixin (JAVA_13). [12May2024 10:56:40.523] [main/DEBUG] [mixin/]: Adding mixin platform agents for container SecureJarResource(spectrelib) [12May2024 10:56:40.523] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(spectrelib) [12May2024 10:56:40.523] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(spectrelib) [12May2024 10:56:40.523] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(spectrelib) [12May2024 10:56:40.524] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container SecureJarResource(spectrelib) [12May2024 10:56:40.524] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(spectrelib)] [12May2024 10:56:40.524] [main/DEBUG] [mixin/]: Adding mixin platform agents for container SecureJarResource(jei) [12May2024 10:56:40.524] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(jei) [12May2024 10:56:40.524] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(jei) [12May2024 10:56:40.524] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(jei) [12May2024 10:56:40.524] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container SecureJarResource(jei) [12May2024 10:56:40.524] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(jei)] [12May2024 10:56:40.524] [main/DEBUG] [mixin/]: Adding mixin platform agents for container SecureJarResource(fishontheline) [12May2024 10:56:40.525] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(fishontheline) [12May2024 10:56:40.525] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(fishontheline) [12May2024 10:56:40.525] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(fishontheline) [12May2024 10:56:40.525] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container SecureJarResource(fishontheline) [12May2024 10:56:40.525] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(fishontheline)] [12May2024 10:56:40.525] [main/DEBUG] [mixin/]: Registering mixin config: fishontheline_forge.mixins.json [12May2024 10:56:40.527] [main/DEBUG] [mixin/]: Adding mixin platform agents for container SecureJarResource(caelus) [12May2024 10:56:40.527] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(caelus) [12May2024 10:56:40.528] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(caelus) [12May2024 10:56:40.528] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(caelus) [12May2024 10:56:40.528] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container SecureJarResource(caelus) [12May2024 10:56:40.528] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(caelus)] [12May2024 10:56:40.528] [main/DEBUG] [mixin/]: Registering mixin config: caelus.mixins.json [12May2024 10:56:40.530] [main/DEBUG] [mixin/]: Adding mixin platform agents for container SecureJarResource(curios) [12May2024 10:56:40.530] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(curios) [12May2024 10:56:40.531] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(curios) [12May2024 10:56:40.531] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(curios) [12May2024 10:56:40.531] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container SecureJarResource(curios) [12May2024 10:56:40.531] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(curios)] [12May2024 10:56:40.531] [main/DEBUG] [mixin/]: Registering mixin config: curios.mixins.json [12May2024 10:56:40.533] [main/DEBUG] [mixin/]: Adding mixin platform agents for container SecureJarResource(collective) [12May2024 10:56:40.533] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(collective) [12May2024 10:56:40.533] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(collective) [12May2024 10:56:40.533] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(collective) [12May2024 10:56:40.533] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container SecureJarResource(collective) [12May2024 10:56:40.534] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(collective)] [12May2024 10:56:40.534] [main/DEBUG] [mixin/]: Registering mixin config: collective_forge.mixins.json [12May2024 10:56:40.535] [main/DEBUG] [mixin/]: Adding mixin platform agents for container SecureJarResource(advancednetherite) [12May2024 10:56:40.535] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(advancednetherite) [12May2024 10:56:40.536] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(advancednetherite) [12May2024 10:56:40.536] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(advancednetherite) [12May2024 10:56:40.536] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container SecureJarResource(advancednetherite) [12May2024 10:56:40.536] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(advancednetherite)] [12May2024 10:56:40.536] [main/DEBUG] [mixin/]: Adding mixin platform agents for container SecureJarResource(controlling) [12May2024 10:56:40.536] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(controlling) [12May2024 10:56:40.536] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(controlling) [12May2024 10:56:40.536] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(controlling) [12May2024 10:56:40.536] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container SecureJarResource(controlling) [12May2024 10:56:40.536] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(controlling)] [12May2024 10:56:40.536] [main/DEBUG] [mixin/]: Registering mixin config: controlling.mixins.json [12May2024 10:56:40.538] [main/DEBUG] [mixin/]: Registering mixin config: controlling.forge.mixins.json [12May2024 10:56:40.540] [main/DEBUG] [mixin/]: Adding mixin platform agents for container SecureJarResource(journeymap) [12May2024 10:56:40.540] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(journeymap) [12May2024 10:56:40.540] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(journeymap) [12May2024 10:56:40.540] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(journeymap) [12May2024 10:56:40.540] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container SecureJarResource(journeymap) [12May2024 10:56:40.540] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(journeymap)] [12May2024 10:56:40.541] [main/DEBUG] [mixin/]: Registering mixin config: journeymap.mixins.json [12May2024 10:56:40.543] [main/DEBUG] [mixin/]: Adding mixin platform agents for container SecureJarResource(modernfix) [12May2024 10:56:40.543] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(modernfix) [12May2024 10:56:40.543] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(modernfix) [12May2024 10:56:40.543] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(modernfix) [12May2024 10:56:40.543] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container SecureJarResource(modernfix) [12May2024 10:56:40.543] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(modernfix)] [12May2024 10:56:40.543] [main/DEBUG] [mixin/]: Registering mixin config: modernfix-common.mixins.json [12May2024 10:56:40.546] [main/DEBUG] [mixin/]: Registering mixin config: modernfix-forge.mixins.json [12May2024 10:56:40.548] [main/DEBUG] [mixin/]: Adding mixin platform agents for container SecureJarResource(placebo) [12May2024 10:56:40.548] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(placebo) [12May2024 10:56:40.548] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(placebo) [12May2024 10:56:40.548] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(placebo) [12May2024 10:56:40.548] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container SecureJarResource(placebo) [12May2024 10:56:40.548] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(placebo)] [12May2024 10:56:40.549] [main/DEBUG] [mixin/]: Registering mixin config: placebo.mixins.json [12May2024 10:56:40.550] [main/DEBUG] [mixin/]: Adding mixin platform agents for container SecureJarResource(polymorph) [12May2024 10:56:40.550] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(polymorph) [12May2024 10:56:40.550] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(polymorph) [12May2024 10:56:40.550] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(polymorph) [12May2024 10:56:40.550] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container SecureJarResource(polymorph) [12May2024 10:56:40.550] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(polymorph)] [12May2024 10:56:40.550] [main/DEBUG] [mixin/]: Registering mixin config: polymorph.mixins.json [12May2024 10:56:40.552] [main/DEBUG] [mixin/]: Registering mixin config: polymorph-integrations.forge.mixins.json [12May2024 10:56:40.554] [main/DEBUG] [mixin/]: Compatibility level JAVA_16 specified by polymorph-integrations.forge.mixins.json is higher than the maximum level supported by this version of mixin (JAVA_13). [12May2024 10:56:40.554] [main/DEBUG] [mixin/]: Adding mixin platform agents for container SecureJarResource(searchables) [12May2024 10:56:40.555] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(searchables) [12May2024 10:56:40.555] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(searchables) [12May2024 10:56:40.555] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(searchables) [12May2024 10:56:40.555] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container SecureJarResource(searchables) [12May2024 10:56:40.555] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(searchables)] [12May2024 10:56:40.555] [main/DEBUG] [mixin/]: Registering mixin config: searchables.mixins.json [12May2024 10:56:40.557] [main/DEBUG] [mixin/]: Registering mixin config: searchables.forge.mixins.json [12May2024 10:56:40.559] [main/DEBUG] [mixin/]: Adding mixin platform agents for container SecureJarResource(naturescompass) [12May2024 10:56:40.559] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(naturescompass) [12May2024 10:56:40.559] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(naturescompass) [12May2024 10:56:40.559] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(naturescompass) [12May2024 10:56:40.559] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container SecureJarResource(naturescompass) [12May2024 10:56:40.559] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(naturescompass)] [12May2024 10:56:40.559] [main/DEBUG] [mixin/]: Adding mixin platform agents for container SecureJarResource(travelersbackpack) [12May2024 10:56:40.559] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(travelersbackpack) [12May2024 10:56:40.559] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(travelersbackpack) [12May2024 10:56:40.559] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(travelersbackpack) [12May2024 10:56:40.559] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container SecureJarResource(travelersbackpack) [12May2024 10:56:40.560] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(travelersbackpack)] [12May2024 10:56:40.560] [main/DEBUG] [mixin/]: Adding mixin platform agents for container SecureJarResource(attributeslib) [12May2024 10:56:40.560] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(attributeslib) [12May2024 10:56:40.560] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(attributeslib) [12May2024 10:56:40.560] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(attributeslib) [12May2024 10:56:40.560] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container SecureJarResource(attributeslib) [12May2024 10:56:40.560] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(attributeslib)] [12May2024 10:56:40.560] [main/DEBUG] [mixin/]: Registering mixin config: attributeslib.mixins.json [12May2024 10:56:40.562] [main/DEBUG] [mixin/]: Adding mixin platform agents for container SecureJarResource(irons_spellbooks) [12May2024 10:56:40.562] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(irons_spellbooks) [12May2024 10:56:40.562] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(irons_spellbooks) [12May2024 10:56:40.562] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(irons_spellbooks) [12May2024 10:56:40.562] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container SecureJarResource(irons_spellbooks) [12May2024 10:56:40.562] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(irons_spellbooks)] [12May2024 10:56:40.562] [main/DEBUG] [mixin/]: Registering mixin config: mixins.irons_spellbooks.json [12May2024 10:56:40.563] [main/DEBUG] [mixin/]: Adding mixin platform agents for container SecureJarResource(gateways) [12May2024 10:56:40.564] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(gateways) [12May2024 10:56:40.564] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(gateways) [12May2024 10:56:40.564] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(gateways) [12May2024 10:56:40.564] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container SecureJarResource(gateways) [12May2024 10:56:40.564] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(gateways)] [12May2024 10:56:40.564] [main/DEBUG] [mixin/]: Registering mixin config: gateways.mixins.json [12May2024 10:56:40.565] [main/DEBUG] [mixin/]: Adding mixin platform agents for container SecureJarResource(dungeoncrawl) [12May2024 10:56:40.565] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(dungeoncrawl) [12May2024 10:56:40.565] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(dungeoncrawl) [12May2024 10:56:40.565] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(dungeoncrawl) [12May2024 10:56:40.565] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container SecureJarResource(dungeoncrawl) [12May2024 10:56:40.565] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(dungeoncrawl)] [12May2024 10:56:40.565] [main/DEBUG] [mixin/]: Adding mixin platform agents for container SecureJarResource(tombstone) [12May2024 10:56:40.565] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(tombstone) [12May2024 10:56:40.566] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(tombstone) [12May2024 10:56:40.566] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(tombstone) [12May2024 10:56:40.566] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container SecureJarResource(tombstone) [12May2024 10:56:40.566] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(tombstone)] [12May2024 10:56:40.566] [main/DEBUG] [mixin/]: Registering mixin config: tombstone.mixins.json [12May2024 10:56:40.567] [main/DEBUG] [mixin/]: Adding mixin platform agents for container SecureJarResource(passiveshield) [12May2024 10:56:40.567] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(passiveshield) [12May2024 10:56:40.568] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(passiveshield) [12May2024 10:56:40.568] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(passiveshield) [12May2024 10:56:40.568] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container SecureJarResource(passiveshield) [12May2024 10:56:40.568] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(passiveshield)] [12May2024 10:56:40.568] [main/DEBUG] [mixin/]: Registering mixin config: passiveshield_forge.mixins.json [12May2024 10:56:40.570] [main/DEBUG] [mixin/]: Adding mixin platform agents for container SecureJarResource(ferritecore) [12May2024 10:56:40.570] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(ferritecore) [12May2024 10:56:40.570] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(ferritecore) [12May2024 10:56:40.570] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(ferritecore) [12May2024 10:56:40.570] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container SecureJarResource(ferritecore) [12May2024 10:56:40.571] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(ferritecore)] [12May2024 10:56:40.571] [main/DEBUG] [mixin/]: Registering mixin config: ferritecore.predicates.mixin.json [12May2024 10:56:40.572] [main/DEBUG] [mixin/]: Registering mixin config: ferritecore.fastmap.mixin.json [12May2024 10:56:40.574] [main/DEBUG] [mixin/]: Registering mixin config: ferritecore.mrl.mixin.json [12May2024 10:56:40.575] [main/DEBUG] [mixin/]: Registering mixin config: ferritecore.dedupmultipart.mixin.json [12May2024 10:56:40.577] [main/DEBUG] [mixin/]: Registering mixin config: ferritecore.blockstatecache.mixin.json [12May2024 10:56:40.579] [main/DEBUG] [mixin/]: Registering mixin config: ferritecore.dedupbakedquad.mixin.json [12May2024 10:56:40.580] [main/DEBUG] [mixin/]: Registering mixin config: ferritecore.threaddetec.mixin.json [12May2024 10:56:40.582] [main/DEBUG] [mixin/]: Registering mixin config: ferritecore.modelsides.mixin.json [12May2024 10:56:40.583] [main/DEBUG] [mixin/]: Adding mixin platform agents for container SecureJarResource(fpsreducer) [12May2024 10:56:40.584] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(fpsreducer) [12May2024 10:56:40.584] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(fpsreducer) [12May2024 10:56:40.584] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(fpsreducer) [12May2024 10:56:40.584] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container SecureJarResource(fpsreducer) [12May2024 10:56:40.584] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(fpsreducer)] [12May2024 10:56:40.584] [main/DEBUG] [mixin/]: Registering mixin config: fpsreducer.mixins.json [12May2024 10:56:40.585] [main/DEBUG] [mixin/]: Adding mixin platform agents for container SecureJarResource(stackrefill) [12May2024 10:56:40.585] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(stackrefill) [12May2024 10:56:40.585] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(stackrefill) [12May2024 10:56:40.585] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(stackrefill) [12May2024 10:56:40.586] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container SecureJarResource(stackrefill) [12May2024 10:56:40.586] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(stackrefill)] [12May2024 10:56:40.586] [main/DEBUG] [mixin/]: Registering mixin config: stackrefill_forge.mixins.json [12May2024 10:56:40.587] [main/DEBUG] [mixin/]: Adding mixin platform agents for container SecureJarResource(forge) [12May2024 10:56:40.587] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(forge) [12May2024 10:56:40.587] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(forge) [12May2024 10:56:40.587] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(forge) [12May2024 10:56:40.587] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container SecureJarResource(forge) [12May2024 10:56:40.587] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(forge)] [12May2024 10:56:40.587] [main/DEBUG] [mixin/]: Adding mixin platform agents for container SecureJarResource(veinmining) [12May2024 10:56:40.587] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(veinmining) [12May2024 10:56:40.588] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(veinmining) [12May2024 10:56:40.588] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(veinmining) [12May2024 10:56:40.588] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container SecureJarResource(veinmining) [12May2024 10:56:40.588] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(veinmining)] [12May2024 10:56:40.588] [main/DEBUG] [mixin/]: Registering mixin config: veinmining.mixins.json [12May2024 10:56:40.590] [main/DEBUG] [mixin/]: Adding mixin platform agents for container SecureJarResource(dungeons_arise) [12May2024 10:56:40.590] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(dungeons_arise) [12May2024 10:56:40.590] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(dungeons_arise) [12May2024 10:56:40.590] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(dungeons_arise) [12May2024 10:56:40.590] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container SecureJarResource(dungeons_arise) [12May2024 10:56:40.591] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(dungeons_arise)] [12May2024 10:56:40.591] [main/DEBUG] [mixin/]: Adding mixin platform agents for container SecureJarResource(mclib) [12May2024 10:56:40.591] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(mclib) [12May2024 10:56:40.591] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(mclib) [12May2024 10:56:40.591] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(mclib) [12May2024 10:56:40.591] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container SecureJarResource(mclib) [12May2024 10:56:40.591] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(mclib)] [12May2024 10:56:40.591] [main/DEBUG] [mixin/]: Adding mixin platform agents for container SecureJarResource(mixinextras) [12May2024 10:56:40.591] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(mixinextras) [12May2024 10:56:40.591] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(mixinextras) [12May2024 10:56:40.592] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(mixinextras) [12May2024 10:56:40.592] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container SecureJarResource(mixinextras) [12May2024 10:56:40.592] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(mixinextras)] [12May2024 10:56:40.592] [main/DEBUG] [mixin/]: Registering mixin config: mixinextras.init.mixins.json [12May2024 10:56:40.593] [main/DEBUG] [mixin/]: Adding mixin platform agents for container SecureJarResource(MixinExtras) [12May2024 10:56:40.594] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(MixinExtras) [12May2024 10:56:40.594] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(MixinExtras) [12May2024 10:56:40.594] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(MixinExtras) [12May2024 10:56:40.594] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container SecureJarResource(MixinExtras) [12May2024 10:56:40.594] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(MixinExtras)] [12May2024 10:56:40.594] [main/DEBUG] [mixin/]: inject() running with 36 agents [12May2024 10:56:40.594] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:ModLauncher Root Container(ModLauncher:4f56a0a2)] [12May2024 10:56:40.594] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(minecraft)] [12May2024 10:56:40.594] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(inventorysorter)] [12May2024 10:56:40.594] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(mousetweaks)] [12May2024 10:56:40.595] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(geckolib)] [12May2024 10:56:40.595] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(playeranimator)] [12May2024 10:56:40.595] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(spectrelib)] [12May2024 10:56:40.595] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(jei)] [12May2024 10:56:40.595] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(fishontheline)] [12May2024 10:56:40.595] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(caelus)] [12May2024 10:56:40.595] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(curios)] [12May2024 10:56:40.595] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(collective)] [12May2024 10:56:40.595] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(advancednetherite)] [12May2024 10:56:40.595] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(controlling)] [12May2024 10:56:40.596] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(journeymap)] [12May2024 10:56:40.596] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(modernfix)] [12May2024 10:56:40.596] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(placebo)] [12May2024 10:56:40.596] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(polymorph)] [12May2024 10:56:40.596] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(searchables)] [12May2024 10:56:40.596] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(naturescompass)] [12May2024 10:56:40.596] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(travelersbackpack)] [12May2024 10:56:40.596] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(attributeslib)] [12May2024 10:56:40.596] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(irons_spellbooks)] [12May2024 10:56:40.596] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(gateways)] [12May2024 10:56:40.597] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(dungeoncrawl)] [12May2024 10:56:40.597] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(tombstone)] [12May2024 10:56:40.597] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(passiveshield)] [12May2024 10:56:40.597] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(ferritecore)] [12May2024 10:56:40.597] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(fpsreducer)] [12May2024 10:56:40.597] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(stackrefill)] [12May2024 10:56:40.597] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(forge)] [12May2024 10:56:40.597] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(veinmining)] [12May2024 10:56:40.597] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(dungeons_arise)] [12May2024 10:56:40.597] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(mclib)] [12May2024 10:56:40.597] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(mixinextras)] [12May2024 10:56:40.597] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(MixinExtras)] [12May2024 10:56:40.598] [main/INFO] [cpw.mods.modlauncher.LaunchServiceHandler/MODLAUNCHER]: Launching target 'forgeserver' with arguments [] [12May2024 10:56:40.648] [main/DEBUG] [mixin/]: Error cleaning class output directory: .mixin.out [12May2024 10:56:40.650] [main/DEBUG] [mixin/]: Preparing mixins for MixinEnvironment[DEFAULT] [12May2024 10:56:40.650] [main/DEBUG] [mixin/]: Selecting config mousetweaks.mixins.json [12May2024 10:56:40.654] [main/DEBUG] [mixin/]: Selecting config geckolib.mixins.json [12May2024 10:56:40.655] [main/DEBUG] [mixin/]: Selecting config playerAnimator-common.mixins.json [12May2024 10:56:40.667] [main/DEBUG] [mixin/]: Selecting config fishontheline_forge.mixins.json [12May2024 10:56:40.668] [main/DEBUG] [mixin/]: Selecting config caelus.mixins.json [12May2024 10:56:40.669] [main/DEBUG] [mixin/]: Selecting config curios.mixins.json [12May2024 10:56:40.670] [main/DEBUG] [mixin/]: Selecting config collective_forge.mixins.json [12May2024 10:56:40.671] [main/DEBUG] [mixin/]: Selecting config controlling.mixins.json [12May2024 10:56:40.672] [main/DEBUG] [mixin/]: Selecting config controlling.forge.mixins.json [12May2024 10:56:40.673] [main/DEBUG] [mixin/]: Selecting config journeymap.mixins.json [12May2024 10:56:40.675] [main/DEBUG] [mixin/]: Selecting config modernfix-common.mixins.json [12May2024 10:56:40.765] [main/INFO] [ModernFix/]: Loaded configuration file for ModernFix 5.17.0+mc1.20.1: 78 options available, 0 override(s) found [12May2024 10:56:40.766] [main/INFO] [ModernFix/]: Applying Nashorn fix [12May2024 10:56:40.786] [main/INFO] [ModernFix/]: Applied Forge config corruption patch [12May2024 10:56:40.792] [main/DEBUG] [mixin/]: Selecting config modernfix-forge.mixins.json [12May2024 10:56:40.794] [main/DEBUG] [mixin/]: Selecting config placebo.mixins.json [12May2024 10:56:40.795] [main/DEBUG] [mixin/]: Selecting config polymorph.mixins.json [12May2024 10:56:40.797] [main/DEBUG] [mixin/]: Selecting config polymorph-integrations.forge.mixins.json [12May2024 10:56:40.804] [main/DEBUG] [Polymorph/]: Loaded com.illusivesoulworks.polymorph.platform.ForgeIntegrationPlatform@47829d6d for service interface com.illusivesoulworks.polymorph.platform.services.IIntegrationPlatform [12May2024 10:56:40.805] [main/DEBUG] [Polymorph/]: Loaded com.illusivesoulworks.polymorph.platform.ForgeClientPlatform@59fc6d05 for service interface com.illusivesoulworks.polymorph.platform.services.IClientPlatform [12May2024 10:56:40.809] [main/DEBUG] [Polymorph/]: Loaded com.illusivesoulworks.polymorph.platform.ForgePlatform@64aeaf29 for service interface com.illusivesoulworks.polymorph.platform.services.IPlatform [12May2024 10:56:40.821] [main/DEBUG] [mixin/]: Selecting config searchables.mixins.json [12May2024 10:56:40.822] [main/DEBUG] [mixin/]: Selecting config searchables.forge.mixins.json [12May2024 10:56:40.823] [main/DEBUG] [mixin/]: Selecting config attributeslib.mixins.json [12May2024 10:56:40.825] [main/DEBUG] [mixin/]: Selecting config mixins.irons_spellbooks.json [12May2024 10:56:40.826] [main/DEBUG] [mixin/]: Selecting config gateways.mixins.json [12May2024 10:56:40.826] [main/DEBUG] [mixin/]: Selecting config tombstone.mixins.json [12May2024 10:56:40.828] [main/DEBUG] [mixin/]: Selecting config passiveshield_forge.mixins.json [12May2024 10:56:40.829] [main/DEBUG] [mixin/]: Selecting config ferritecore.predicates.mixin.json [12May2024 10:56:40.846] [main/DEBUG] [mixin/]: Selecting config ferritecore.fastmap.mixin.json [12May2024 10:56:40.847] [main/DEBUG] [mixin/]: Selecting config ferritecore.mrl.mixin.json [12May2024 10:56:40.849] [main/DEBUG] [mixin/]: Selecting config ferritecore.dedupmultipart.mixin.json [12May2024 10:56:40.850] [main/DEBUG] [mixin/]: Selecting config ferritecore.blockstatecache.mixin.json [12May2024 10:56:40.851] [main/DEBUG] [mixin/]: Selecting config ferritecore.dedupbakedquad.mixin.json [12May2024 10:56:40.853] [main/DEBUG] [mixin/]: Selecting config ferritecore.threaddetec.mixin.json [12May2024 10:56:40.854] [main/DEBUG] [mixin/]: Selecting config ferritecore.modelsides.mixin.json [12May2024 10:56:40.856] [main/DEBUG] [mixin/]: Selecting config fpsreducer.mixins.json [12May2024 10:56:40.859] [main/INFO] [fpsreducer/]: OptiFine was NOT detected. [12May2024 10:56:40.861] [main/INFO] [fpsreducer/]: OptiFabric was NOT detected. [12May2024 10:56:40.862] [main/DEBUG] [mixin/]: Selecting config stackrefill_forge.mixins.json [12May2024 10:56:40.863] [main/DEBUG] [mixin/]: Selecting config veinmining.mixins.json [12May2024 10:56:40.864] [main/DEBUG] [mixin/]: Selecting config mixinextras.init.mixins.json [12May2024 10:56:40.890] [main/DEBUG] [MixinExtras|Service/]: com.llamalad7.mixinextras.service.MixinExtrasServiceImpl(version=0.3.2) is taking over from null [12May2024 10:56:40.928] [main/DEBUG] [mixin/]: Registering new injector for @Inject with org.spongepowered.asm.mixin.injection.struct.CallbackInjectionInfo [12May2024 10:56:40.930] [main/DEBUG] [mixin/]: Registering new injector for @ModifyArg with org.spongepowered.asm.mixin.injection.struct.ModifyArgInjectionInfo [12May2024 10:56:40.931] [main/DEBUG] [mixin/]: Registering new injector for @ModifyArgs with org.spongepowered.asm.mixin.injection.struct.ModifyArgsInjectionInfo [12May2024 10:56:40.932] [main/DEBUG] [mixin/]: Registering new injector for @Redirect with org.spongepowered.asm.mixin.injection.struct.RedirectInjectionInfo [12May2024 10:56:40.933] [main/DEBUG] [mixin/]: Registering new injector for @ModifyVariable with org.spongepowered.asm.mixin.injection.struct.ModifyVariableInjectionInfo [12May2024 10:56:40.934] [main/DEBUG] [mixin/]: Registering new injector for @ModifyConstant with org.spongepowered.asm.mixin.injection.struct.ModifyConstantInjectionInfo [12May2024 10:56:40.945] [main/DEBUG] [mixin/]: Preparing mousetweaks.mixins.json (1) [12May2024 10:56:40.946] [main/DEBUG] [mixin/]: Preparing geckolib.mixins.json (1) [12May2024 10:56:40.946] [main/DEBUG] [mixin/]: Preparing playerAnimator-common.mixins.json (14) [12May2024 10:56:40.946] [main/DEBUG] [mixin/]: Preparing fishontheline_forge.mixins.json (0) [12May2024 10:56:40.946] [main/DEBUG] [mixin/]: Preparing caelus.mixins.json (4) [12May2024 10:56:41.021] [main/DEBUG] [mixin/]: Preparing curios.mixins.json (13) [12May2024 10:56:41.099] [main/DEBUG] [mixin/]: Preparing collective_forge.mixins.json (4) [12May2024 10:56:41.107] [main/DEBUG] [mixin/]: Preparing controlling.mixins.json (5) [12May2024 10:56:41.107] [main/DEBUG] [mixin/]: Preparing controlling.forge.mixins.json (0) [12May2024 10:56:41.107] [main/DEBUG] [mixin/]: Preparing journeymap.mixins.json (3) [12May2024 10:56:41.107] [main/DEBUG] [mixin/]: Preparing modernfix-common.mixins.json (82) [12May2024 10:56:41.120] [main/DEBUG] [ModernFix/]: No rules matched mixin 'perf.compact_mojang_registries.MappedRegistryMixin', treating as foreign and disabling! [12May2024 10:56:41.264] [main/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer/COREMOD]: Transforming net/minecraft/world/level/biome/Biome [12May2024 10:56:41.292] [main/DEBUG] [mixin/]: Preparing modernfix-forge.mixins.json (46) [12May2024 10:56:41.378] [main/DEBUG] [mixin/]: Preparing placebo.mixins.json (6) [12May2024 10:56:41.392] [main/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer/COREMOD]: Transforming net/minecraft/world/item/ItemStack [12May2024 10:56:41.407] [main/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer/COREMOD]: Transforming getEnchantmentLevel with desc (Lnet/minecraft/world/item/enchantment/Enchantment;)I [12May2024 10:56:41.428] [main/INFO] [net.minecraftforge.coremod.CoreMod.placebo/COREMODLOG]: Patching IForgeItemStack#getEnchantmentLevel [12May2024 10:56:41.469] [main/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer/COREMOD]: Transforming getAllEnchantments with desc ()Ljava/util/Map; [12May2024 10:56:41.477] [main/INFO] [net.minecraftforge.coremod.CoreMod.placebo/COREMODLOG]: Patching IForgeItemStack#getEnchantmentLevel [12May2024 10:56:41.496] [main/DEBUG] [mixin/]: Preparing polymorph.mixins.json (9) [12May2024 10:56:41.508] [main/DEBUG] [mixin/]: Preparing polymorph-integrations.forge.mixins.json (2) [12May2024 10:56:41.508] [main/DEBUG] [mixin/]: Preparing searchables.mixins.json (1) [12May2024 10:56:41.508] [main/DEBUG] [mixin/]: Preparing searchables.forge.mixins.json (0) [12May2024 10:56:41.509] [main/DEBUG] [mixin/]: Preparing attributeslib.mixins.json (17) [12May2024 10:56:41.538] [main/DEBUG] [mixin/]: Preparing mixins.irons_spellbooks.json (20) [12May2024 10:56:41.552] [main/DEBUG] [mixin/]: Preparing gateways.mixins.json (1) [12May2024 10:56:41.554] [main/DEBUG] [mixin/]: Preparing tombstone.mixins.json (29) [12May2024 10:56:41.578] [main/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer/COREMOD]: Transforming net/minecraft/world/entity/monster/Zombie [12May2024 10:56:41.829] [main/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer/COREMOD]: Transforming net/minecraft/world/entity/npc/Villager [12May2024 10:56:41.952] [main/DEBUG] [mixin/]: Preparing passiveshield_forge.mixins.json (0) [12May2024 10:56:41.952] [main/DEBUG] [mixin/]: Preparing ferritecore.predicates.mixin.json (3) [12May2024 10:56:41.952] [main/DEBUG] [mixin/]: Preparing ferritecore.fastmap.mixin.json (1) [12May2024 10:56:41.957] [main/DEBUG] [mixin/]: Preparing ferritecore.mrl.mixin.json (2) [12May2024 10:56:41.957] [main/DEBUG] [mixin/]: Preparing ferritecore.dedupmultipart.mixin.json (2) [12May2024 10:56:41.957] [main/DEBUG] [mixin/]: Preparing ferritecore.blockstatecache.mixin.json (8) [12May2024 10:56:41.965] [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 [12May2024 10:56:41.971] [main/DEBUG] [mixin/]: Preparing ferritecore.dedupbakedquad.mixin.json (2) [12May2024 10:56:41.971] [main/DEBUG] [mixin/]: Preparing ferritecore.threaddetec.mixin.json (1) [12May2024 10:56:41.972] [main/DEBUG] [mixin/]: Preparing ferritecore.modelsides.mixin.json (1) [12May2024 10:56:41.972] [main/DEBUG] [mixin/]: Preparing fpsreducer.mixins.json (2) [12May2024 10:56:41.972] [main/DEBUG] [mixin/]: Preparing stackrefill_forge.mixins.json (0) [12May2024 10:56:41.972] [main/DEBUG] [mixin/]: Preparing veinmining.mixins.json (2) [12May2024 10:56:41.973] [main/DEBUG] [mixin/]: Preparing mixinextras.init.mixins.json (0) [12May2024 10:56:41.988] [main/WARN] [mixin/]: Error loading class: java/lang/invoke/MethodHandles$Lookup (java.lang.IllegalArgumentException: Unsupported class file major version 66) [12May2024 10:56:41.991] [main/WARN] [mixin/]: Error loading class: java/lang/invoke/MethodHandles$Lookup (java.lang.IllegalArgumentException: Unsupported class file major version 66) [12May2024 10:56:41.992] [main/WARN] [mixin/]: Error loading class: java/lang/invoke/MethodHandles$Lookup (java.lang.IllegalArgumentException: Unsupported class file major version 66) [12May2024 10:56:41.994] [main/WARN] [mixin/]: Error loading class: java/lang/invoke/MethodHandles$Lookup (java.lang.IllegalArgumentException: Unsupported class file major version 66) [12May2024 10:56:42.000] [main/WARN] [mixin/]: Error loading class: java/util/Map$Entry (java.lang.IllegalArgumentException: Unsupported class file major version 66) [12May2024 10:56:42.001] [main/WARN] [mixin/]: Error loading class: java/lang/invoke/MethodHandles$Lookup (java.lang.IllegalArgumentException: Unsupported class file major version 66) [12May2024 10:56:42.002] [main/WARN] [mixin/]: Error loading class: java/lang/invoke/MethodHandles$Lookup (java.lang.IllegalArgumentException: Unsupported class file major version 66) [12May2024 10:56:42.005] [main/WARN] [mixin/]: Error loading class: java/lang/invoke/MethodHandles$Lookup (java.lang.IllegalArgumentException: Unsupported class file major version 66) [12May2024 10:56:42.006] [main/WARN] [mixin/]: Error loading class: java/lang/invoke/MethodHandles$Lookup (java.lang.IllegalArgumentException: Unsupported class file major version 66) [12May2024 10:56:42.007] [main/WARN] [mixin/]: Error loading class: java/lang/invoke/MethodHandles$Lookup (java.lang.IllegalArgumentException: Unsupported class file major version 66) [12May2024 10:56:42.010] [main/WARN] [mixin/]: Error loading class: java/util/concurrent/ForkJoinPool$ForkJoinWorkerThreadFactory (java.lang.IllegalArgumentException: Unsupported class file major version 66) [12May2024 10:56:42.011] [main/WARN] [mixin/]: Error loading class: java/lang/invoke/MethodHandles$Lookup (java.lang.IllegalArgumentException: Unsupported class file major version 66) [12May2024 10:56:42.015] [main/WARN] [mixin/]: Error loading class: java/lang/invoke/MethodHandles$Lookup (java.lang.IllegalArgumentException: Unsupported class file major version 66) [12May2024 10:56:42.018] [main/WARN] [mixin/]: Error loading class: java/lang/invoke/MethodHandles$Lookup (java.lang.IllegalArgumentException: Unsupported class file major version 66) [12May2024 10:56:42.021] [main/WARN] [mixin/]: Error loading class: java/lang/invoke/MethodHandles$Lookup (java.lang.IllegalArgumentException: Unsupported class file major version 66) [12May2024 10:56:42.027] [main/WARN] [mixin/]: Error loading class: java/lang/invoke/MethodHandles$Lookup (java.lang.IllegalArgumentException: Unsupported class file major version 66) [12May2024 10:56:42.028] [main/WARN] [mixin/]: Error loading class: java/lang/invoke/MethodHandles$Lookup (java.lang.IllegalArgumentException: Unsupported class file major version 66) [12May2024 10:56:42.029] [main/WARN] [mixin/]: Error loading class: java/lang/invoke/MethodHandles$Lookup (java.lang.IllegalArgumentException: Unsupported class file major version 66) [12May2024 10:56:42.030] [main/WARN] [mixin/]: Error loading class: java/lang/invoke/MethodHandles$Lookup (java.lang.IllegalArgumentException: Unsupported class file major version 66) [12May2024 10:56:42.032] [main/WARN] [mixin/]: Error loading class: java/lang/invoke/MethodHandles$Lookup (java.lang.IllegalArgumentException: Unsupported class file major version 66) [12May2024 10:56:42.033] [main/WARN] [mixin/]: Error loading class: java/lang/invoke/MethodHandles$Lookup (java.lang.IllegalArgumentException: Unsupported class file major version 66) [12May2024 10:56:42.035] [main/WARN] [mixin/]: Error loading class: java/lang/invoke/MethodHandles$Lookup (java.lang.IllegalArgumentException: Unsupported class file major version 66) [12May2024 10:56:42.036] [main/WARN] [mixin/]: Error loading class: java/lang/invoke/MethodHandles$Lookup (java.lang.IllegalArgumentException: Unsupported class file major version 66) [12May2024 10:56:42.044] [main/WARN] [mixin/]: Error loading class: java/lang/invoke/MethodHandles$Lookup (java.lang.IllegalArgumentException: Unsupported class file major version 66) [12May2024 10:56:42.045] [main/WARN] [mixin/]: Error loading class: java/lang/invoke/MethodHandles$Lookup (java.lang.IllegalArgumentException: Unsupported class file major version 66) [12May2024 10:56:42.047] [main/WARN] [mixin/]: Error loading class: java/lang/invoke/MethodHandles$Lookup (java.lang.IllegalArgumentException: Unsupported class file major version 66) [12May2024 10:56:42.048] [main/WARN] [mixin/]: Error loading class: java/lang/invoke/MethodHandles$Lookup (java.lang.IllegalArgumentException: Unsupported class file major version 66) [12May2024 10:56:42.050] [main/WARN] [mixin/]: Error loading class: java/lang/invoke/MethodHandles$Lookup (java.lang.IllegalArgumentException: Unsupported class file major version 66) [12May2024 10:56:42.051] [main/WARN] [mixin/]: Error loading class: java/lang/invoke/MethodHandles$Lookup (java.lang.IllegalArgumentException: Unsupported class file major version 66) [12May2024 10:56:42.052] [main/WARN] [mixin/]: Error loading class: java/lang/invoke/MethodHandles$Lookup (java.lang.IllegalArgumentException: Unsupported class file major version 66) [12May2024 10:56:42.054] [main/WARN] [mixin/]: Error loading class: java/lang/invoke/MethodHandles$Lookup (java.lang.IllegalArgumentException: Unsupported class file major version 66) [12May2024 10:56:42.059] [main/DEBUG] [mixin/]: Prepared 146 mixins in 1.407 sec (9.6ms avg) (0ms load, 0ms transform, 0ms plugin) [12May2024 10:56:42.074] [main/INFO] [MixinExtras|Service/]: Initializing MixinExtras via com.llamalad7.mixinextras.service.MixinExtrasServiceImpl(version=0.3.2). [12May2024 10:56:42.076] [main/DEBUG] [mixin/]: Registering new injector for @SugarWrapper with com.llamalad7.mixinextras.sugar.impl.SugarWrapperInjectionInfo [12May2024 10:56:42.077] [main/DEBUG] [mixin/]: Registering new injector for @FactoryRedirectWrapper with com.llamalad7.mixinextras.wrapper.factory.FactoryRedirectWrapperInjectionInfo [12May2024 10:56:42.083] [main/DEBUG] [mixin/]: Mixing perf.dedicated_reload_executor.MinecraftServerMixin from modernfix-common.mixins.json into net.minecraft.server.MinecraftServer [12May2024 10:56:42.096] [main/WARN] [mixin/]: Error loading class: java/util/concurrent/Executor (java.lang.IllegalArgumentException: Unsupported class file major version 66) [12May2024 10:56:42.096] [main/DEBUG] [mixin/]: Failed to resolve declared interface java/util/concurrent/Executor on net/minecraft/util/thread/BlockableEventLoop [12May2024 10:56:42.097] [main/WARN] [mixin/]: Error loading class: java/lang/AutoCloseable (java.lang.IllegalArgumentException: Unsupported class file major version 66) [12May2024 10:56:42.097] [main/DEBUG] [mixin/]: Failed to resolve declared interface java/lang/AutoCloseable on net/minecraft/util/thread/ProcessorHandle [12May2024 10:56:42.098] [main/WARN] [mixin/]: Error loading class: java/lang/AutoCloseable (java.lang.IllegalArgumentException: Unsupported class file major version 66) [12May2024 10:56:42.098] [main/DEBUG] [mixin/]: Failed to resolve declared interface java/lang/AutoCloseable on net/minecraft/server/MinecraftServer [12May2024 10:56:42.101] [main/WARN] [mixin/]: Error loading class: java/util/concurrent/Executor (java.lang.IllegalArgumentException: Unsupported class file major version 66) [12May2024 10:56:42.103] [main/INFO] [mixin/]: Instancing error handler class com.illusivesoulworks.polymorph.mixin.IntegratedMixinPlugin [12May2024 10:56:42.104] [main/FATAL] [mixin/]: Mixin apply failed modernfix-common.mixins.json:perf.dedicated_reload_executor.MinecraftServerMixin -> net.minecraft.server.MinecraftServer: org.spongepowered.asm.mixin.transformer.throwables.InvalidMixinException Unexpecteded ClassMetadataNotFoundException whilst transforming the mixin class: [MAIN Applicator Phase -> modernfix-common.mixins.json:perf.dedicated_reload_executor.MinecraftServerMixin -> Apply Methods -> (Ljava/util/concurrent/Executor;)Ljava/util/concurrent/Executor;:modify$zbl000$getReloadExecutor -> Transform Descriptor -> desc=Ljava/util/concurrent/Executor;] org.spongepowered.asm.mixin.transformer.throwables.InvalidMixinException: Unexpecteded ClassMetadataNotFoundException whilst transforming the mixin class: [MAIN Applicator Phase -> modernfix-common.mixins.json:perf.dedicated_reload_executor.MinecraftServerMixin -> Apply Methods -> (Ljava/util/concurrent/Executor;)Ljava/util/concurrent/Executor;:modify$zbl000$getReloadExecutor -> Transform Descriptor -> desc=Ljava/util/concurrent/Executor;]     at org.spongepowered.asm.mixin.transformer.MixinTargetContext.transformMethod(MixinTargetContext.java:491) ~[mixin-0.8.5.jar%2365!/:0.8.5+Jenkins-b310.git-155314e6e91465dad727e621a569906a410cd6f4]     at org.spongepowered.asm.mixin.transformer.MixinApplicatorStandard.applyNormalMethod(MixinApplicatorStandard.java:532) ~[mixin-0.8.5.jar%2365!/:0.8.5+Jenkins-b310.git-155314e6e91465dad727e621a569906a410cd6f4]     at org.spongepowered.asm.mixin.transformer.MixinApplicatorStandard.applyMethods(MixinApplicatorStandard.java:518) ~[mixin-0.8.5.jar%2365!/:0.8.5+Jenkins-b310.git-155314e6e91465dad727e621a569906a410cd6f4]     at org.spongepowered.asm.mixin.transformer.MixinApplicatorStandard.applyMixin(MixinApplicatorStandard.java:386) ~[mixin-0.8.5.jar%2365!/:0.8.5+Jenkins-b310.git-155314e6e91465dad727e621a569906a410cd6f4]     at org.spongepowered.asm.mixin.transformer.MixinApplicatorStandard.apply(MixinApplicatorStandard.java:325) ~[mixin-0.8.5.jar%2365!/:0.8.5+Jenkins-b310.git-155314e6e91465dad727e621a569906a410cd6f4]     at org.spongepowered.asm.mixin.transformer.TargetClassContext.apply(TargetClassContext.java:383) ~[mixin-0.8.5.jar%2365!/:0.8.5+Jenkins-b310.git-155314e6e91465dad727e621a569906a410cd6f4]     at org.spongepowered.asm.mixin.transformer.TargetClassContext.applyMixins(TargetClassContext.java:365) ~[mixin-0.8.5.jar%2365!/:0.8.5+Jenkins-b310.git-155314e6e91465dad727e621a569906a410cd6f4]     at org.spongepowered.asm.mixin.transformer.MixinProcessor.applyMixins(MixinProcessor.java:363) ~[mixin-0.8.5.jar%2365!/:0.8.5+Jenkins-b310.git-155314e6e91465dad727e621a569906a410cd6f4]     at org.spongepowered.asm.mixin.transformer.MixinTransformer.transformClass(MixinTransformer.java:250) ~[mixin-0.8.5.jar%2365!/:0.8.5+Jenkins-b310.git-155314e6e91465dad727e621a569906a410cd6f4]     at org.spongepowered.asm.service.modlauncher.MixinTransformationHandler.processClass(MixinTransformationHandler.java:131) ~[mixin-0.8.5.jar%2365!/:0.8.5+Jenkins-b310.git-155314e6e91465dad727e621a569906a410cd6f4]     at org.spongepowered.asm.launch.MixinLaunchPluginLegacy.processClass(MixinLaunchPluginLegacy.java:131) ~[mixin-0.8.5.jar%2365!/:0.8.5+Jenkins-b310.git-155314e6e91465dad727e621a569906a410cd6f4]     at cpw.mods.modlauncher.serviceapi.ILaunchPluginService.processClassWithFlags(ILaunchPluginService.java:156) ~[modlauncher-10.0.9.jar%2355!/:10.0.9+10.0.9+main.dcd20f30]     at cpw.mods.modlauncher.LaunchPluginHandler.offerClassNodeToPlugins(LaunchPluginHandler.java:88) ~[modlauncher-10.0.9.jar%2355!/:?]     at cpw.mods.modlauncher.ClassTransformer.transform(ClassTransformer.java:120) ~[modlauncher-10.0.9.jar%2355!/:?]     at cpw.mods.modlauncher.TransformingClassLoader.maybeTransformClassBytes(TransformingClassLoader.java:50) ~[modlauncher-10.0.9.jar%2355!/:?]     at cpw.mods.cl.ModuleClassLoader.readerToClass(ModuleClassLoader.java:113) ~[securejarhandler-2.1.10.jar:?]     at cpw.mods.cl.ModuleClassLoader.lambda$findClass$15(ModuleClassLoader.java:219) ~[securejarhandler-2.1.10.jar:?]     at cpw.mods.cl.ModuleClassLoader.loadFromModule(ModuleClassLoader.java:229) ~[securejarhandler-2.1.10.jar:?]     at cpw.mods.cl.ModuleClassLoader.findClass(ModuleClassLoader.java:219) ~[securejarhandler-2.1.10.jar:?]     at cpw.mods.cl.ModuleClassLoader.loadClass(ModuleClassLoader.java:135) ~[securejarhandler-2.1.10.jar:?]     at java.lang.ClassLoader.loadClass(ClassLoader.java:525) ~[?:?]     at java.lang.Class.getDeclaredMethods0(Native Method) ~[?:?]     at java.lang.Class.privateGetDeclaredMethods(Class.java:3601) ~[?:?]     at java.lang.Class.getMethodsRecursive(Class.java:3743) ~[?:?]     at java.lang.Class.getMethod0(Class.java:3728) ~[?:?]     at java.lang.Class.getMethod(Class.java:2403) ~[?:?]     at net.minecraftforge.fml.loading.targets.CommonLaunchHandler.runTarget(CommonLaunchHandler.java:111) ~[fmlloader-1.20.1-47.2.0.jar%2369!/:?]     at net.minecraftforge.fml.loading.targets.CommonLaunchHandler.serverService(CommonLaunchHandler.java:103) ~[fmlloader-1.20.1-47.2.0.jar%2369!/:?]     at net.minecraftforge.fml.loading.targets.CommonServerLaunchHandler.lambda$makeService$0(CommonServerLaunchHandler.java:27) ~[fmlloader-1.20.1-47.2.0.jar%2369!/:?]     at cpw.mods.modlauncher.LaunchServiceHandlerDecorator.launch(LaunchServiceHandlerDecorator.java:30) ~[modlauncher-10.0.9.jar%2355!/:?]     at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:53) ~[modlauncher-10.0.9.jar%2355!/:?]     at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:71) ~[modlauncher-10.0.9.jar%2355!/:?]     at cpw.mods.modlauncher.Launcher.run(Launcher.java:108) ~[modlauncher-10.0.9.jar%2355!/:?]     at cpw.mods.modlauncher.Launcher.main(Launcher.java:78) ~[modlauncher-10.0.9.jar%2355!/:?]     at cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:26) ~[modlauncher-10.0.9.jar%2355!/:?]     at cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:23) ~[modlauncher-10.0.9.jar%2355!/:?]     at cpw.mods.bootstraplauncher.BootstrapLauncher.main(BootstrapLauncher.java:141) ~[bootstraplauncher-1.1.2.jar:?] Caused by: org.spongepowered.asm.mixin.throwables.ClassMetadataNotFoundException: java.util.concurrent.Executor     at org.spongepowered.asm.mixin.transformer.MixinTargetContext.transformSingleDescriptor(MixinTargetContext.java:983) ~[mixin-0.8.5.jar%2365!/:0.8.5+Jenkins-b310.git-155314e6e91465dad727e621a569906a410cd6f4]     at org.spongepowered.asm.mixin.transformer.MixinTargetContext.transformSingleDescriptor(MixinTargetContext.java:943) ~[mixin-0.8.5.jar%2365!/:0.8.5+Jenkins-b310.git-155314e6e91465dad727e621a569906a410cd6f4]     at org.spongepowered.asm.mixin.transformer.MixinTargetContext.transformMethodDescriptor(MixinTargetContext.java:998) ~[mixin-0.8.5.jar%2365!/:0.8.5+Jenkins-b310.git-155314e6e91465dad727e621a569906a410cd6f4]     at org.spongepowered.asm.mixin.transformer.MixinTargetContext.transformDescriptor(MixinTargetContext.java:899) ~[mixin-0.8.5.jar%2365!/:0.8.5+Jenkins-b310.git-155314e6e91465dad727e621a569906a410cd6f4]     at org.spongepowered.asm.mixin.transformer.MixinTargetContext.transformMethod(MixinTargetContext.java:448) ~[mixin-0.8.5.jar%2365!/:0.8.5+Jenkins-b310.git-155314e6e91465dad727e621a569906a410cd6f4]     ... 36 more
    • I made a packet which send the "Y" velocity to the server. public boolean handle(Supplier<Context> ctx) { ctx.get().enqueueWork(() -> { ServerPlayer player = ctx.get().getSender(); if (player != null) { //player.sendSystemMessage(Component.literal(String.valueOf(player.getDeltaMovement()))); player.getAbilities().flying = false; Vec3 vec3 = player.getDeltaMovement(); player.setDeltaMovement(vec3.x, dy, vec3.z); player.hasImpulse = true; //player.sendSystemMessage(Component.literal(String.valueOf(player.getDeltaMovement()))); } }); return true; } Where I trying to set new movement vector (setDeltaMovement) but it is not works. But the "sendSystemMessage" works perfectly here
    • not a bug  when you declaring the block   BlockBehaviour.Properties.ofFullCopy(Blocks.ACACIA_WOOD) the one you are copyng from has different set of properties seems it has horizontal facing but the yours don't 
  • Topics

×
×
  • Create New...

Important Information

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