Jump to content

[SOLVED] Change block properties in an if statement.


Flayr

Recommended Posts

EDIT: Thanks for all the help and support, I got everything in my mod working now and am going to release it after some testing.

 

My goal is to create a block that cannot be interacted with at all unless you are holding a specific item. I already have this in my Block class:

@Override
public MovingObjectPosition collisionRayTrace(World par1World, int par2, int par3, int par4, Vec3 par5Vec3, Vec3 par6Vec3)
{
return null;
}

What I cant figure out is how to make it so that it only returns null when a certain item is held but returns how it normally would otherwise. The biggest problem is that if i do make a basic if statement that will be true to test it I don't know what to return to make it normal. (because I already used @Override).

Link to comment
Share on other sites

Hello,

 

You can get the normal ray-trace by returning this:

 

return super.collisionRayTrace(par1World, par2, par3, par4, par5Vec3, par6Vec3);

 

That should give it the behaviour of a normal block.

 

Is it that what you want?:

 

 

ss7

You sir are a god damn hero.

Link to comment
Share on other sites

His problem is figuring out if the player is holding a given item.

 

Which is harder.

 

Your best bet is to poll the world for all Players in interaction range (4 blocks) and then check their active item.

 

Here's the hard part:

 

AxisAlignedBB aabb = AxisAlignedBB.getAABBPool().getAABB(xCoord-32, yCoord-32, zCoord-32, xCoord+32, yCoord+32, zCoord+32);
		List w = worldObj.getEntitiesWithinAABB(EntityPlayer.class, aabb);
		if(w.size() > 0) {
		     //at least one player in range
		     EntityPlayer player;
		     for(int i = 0; i < w.size; i++) {
		         player = w.get(i);
		         player.getHeldItem();//active item as ItemStack
		     }
		}

Apparently I'm a complete and utter jerk and come to this forum just like to make fun of people, be confrontational, and make your personal life miserable.  If you think this is the case, JUST REPORT ME.  Otherwise you're just going to get reported when you reply to my posts and point it out, because odds are, I was trying to be nice.

 

Exception: If you do not understand Java, I WILL NOT HELP YOU and your thread will get locked.

 

DO NOT PM ME WITH PROBLEMS. No help will be given.

Link to comment
Share on other sites

I was actually having trouble with both things, although checking the players held item was a bigger one. The return statement works perfectly find, but I cannot seem to get it to read the closest player's held item. Could you explain in a bit more what the implementation of this code would be?

 

AxisAlignedBB aabb = AxisAlignedBB.getAABBPool().getAABB(xCoord-32, yCoord-32, zCoord-32, xCoord+32, yCoord+32, zCoord+32);
		List w = worldObj.getEntitiesWithinAABB(EntityPlayer.class, aabb);
		if(w.size() > 0) {
		     //at least one player in range
		     EntityPlayer player;
		     for(int i = 0; i < w.size; i++) {
		         player = w.get(i);
		         player.getHeldItem();//active item as ItemStack
		     }
		}

Link to comment
Share on other sites

That locates every player inside a 65x65x65 cube (I meant to make it smaller, forgot) and then loops through the list of players inside that volume, and gets their currently active item.

 

All you have to do then is look at that item and decide if that's the item you want to have break the block or not.

Apparently I'm a complete and utter jerk and come to this forum just like to make fun of people, be confrontational, and make your personal life miserable.  If you think this is the case, JUST REPORT ME.  Otherwise you're just going to get reported when you reply to my posts and point it out, because odds are, I was trying to be nice.

 

Exception: If you do not understand Java, I WILL NOT HELP YOU and your thread will get locked.

 

DO NOT PM ME WITH PROBLEMS. No help will be given.

Link to comment
Share on other sites

Here is the method that i am working on:

	@Override
	public MovingObjectPosition collisionRayTrace(World par1World, int x, int y, int z, Vec3 par5Vec3, Vec3 par6Vec3)
	{
		AxisAlignedBB aabb = AxisAlignedBB.getAABBPool().getAABB(x-4, y-4, z-4, x+4, y+4, z+4);
		List w = par1World.getEntitiesWithinAABB(EntityPlayer.class, aabb);
		if(w.size() > 0) {
		     //at least one player in range
		     EntityPlayer player;
		     for(int i = 0; i < w.size(); i++) {
[b]			         player = w.get(i);[/b]
		     }
		     if(player.getHeldItem() == new ItemStack(MagicLights.lightStaff)){
		    	 return null; 
		     }else{return super.collisionRayTrace(par1World, x, y, z, par5Vec3, par6Vec3);}
	    }else{return super.collisionRayTrace(par1World, x, y, z, par5Vec3, par6Vec3);}
	}

First, is this correct, second I am getting an error on the line "player = w.get(i);"

Link to comment
Share on other sites

This is where your IDE comes in.  If you look at the error it tells you that the objects don't match and to add a cast.

 

player = (EntityPlayer) w.get(i);

Apparently I'm a complete and utter jerk and come to this forum just like to make fun of people, be confrontational, and make your personal life miserable.  If you think this is the case, JUST REPORT ME.  Otherwise you're just going to get reported when you reply to my posts and point it out, because odds are, I was trying to be nice.

 

Exception: If you do not understand Java, I WILL NOT HELP YOU and your thread will get locked.

 

DO NOT PM ME WITH PROBLEMS. No help will be given.

Link to comment
Share on other sites

Well, it is error free now but when I run minecraft i cannot select the block regardless of weather I am holding the staff or not. Here is my current code.

	@Override
	public MovingObjectPosition collisionRayTrace(World par1World, int x, int y, int z, Vec3 par5Vec3, Vec3 par6Vec3)
	{
		AxisAlignedBB aabb = AxisAlignedBB.getAABBPool().getAABB(x-4, y-4, z-4, x+4, y+4, z+4);
		List w = par1World.getEntitiesWithinAABB(EntityPlayer.class, aabb);
		if(w.size() > 0) {
		     //at least one player in range
		     EntityPlayer player;
		     for(int i = 0; i < w.size() {
		    	 player = (EntityPlayer) w.get(i);
			     if(player.getHeldItem() == new ItemStack(MagicLights.lightStaff)){
			    	 return super.collisionRayTrace(par1World, x, y, z, par5Vec3, par6Vec3);
			     }else{return null;}
		     }
		     return null;
	    }else{return null;}
	}

Link to comment
Share on other sites

if(player.getHeldItem() == new ItemStack(MagicLights.lightStaff)){

 

That is not how you check to see if two item stacks are equal.  You need to use the ItemStack.equal(stack, stack) function.

Apparently I'm a complete and utter jerk and come to this forum just like to make fun of people, be confrontational, and make your personal life miserable.  If you think this is the case, JUST REPORT ME.  Otherwise you're just going to get reported when you reply to my posts and point it out, because odds are, I was trying to be nice.

 

Exception: If you do not understand Java, I WILL NOT HELP YOU and your thread will get locked.

 

DO NOT PM ME WITH PROBLEMS. No help will be given.

Link to comment
Share on other sites

I tried this same approach, but I am getting a  java.util.ConcurrentModificationException when I try to access the list. Here is my code for a custom potioneffect that collects all the entities that: 1.are not the players and 2.extend EntityLivingBase. Then I simply print out what their names with the entity.getName() method i.e. (Zombie, Pig, Cow, Sheep)

 

 

package eclipse.MoreApples.potion;

import java.util.ArrayList;
import java.util.List;

import net.minecraft.entity.Entity;
import net.minecraft.entity.EntityLivingBase;
import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.potion.PotionEffect;
import net.minecraft.util.AxisAlignedBB;

public class FriendlyPotionEffect extends PotionEffect{

private EntityPlayer p;
private boolean shouldCheck;
private List<Entity> list;
private AxisAlignedBB aabb;

public FriendlyPotionEffect(int par1, int par2) {
	super(par1, par2);
	shouldCheck = true;
	// TODO Auto-generated constructor stub
}

@Override
public boolean onUpdate(EntityLivingBase par1EntityLivingBase)
{
	p = (EntityPlayer) par1EntityLivingBase;
	aabb = AxisAlignedBB.getAABBPool().getAABB(p.posX-8, p.posY-8, p.posZ-8, p.posX+8, p.posY+8, p.posZ+;
	list = p.worldObj.getEntitiesWithinAABBExcludingEntity(p, aabb);
	for(Entity e : list)
	{
		if(!(e instanceof EntityLivingBase) || e instanceof EntityPlayer)
			list.remove(e);
	}
	for (Entity b : list)
	{
		p.addChatMessage("A " + b.getEntityName() + " is near you");	
	}


	if(duration <= 1)
	{
		p.addChatMessage("Potion effect ending");
	}
	return super.onUpdate(par1EntityLivingBase);
}


}

 

 

I am getting the error

java.util.ConcurrentModificationException

on the line

for(Entity e : list)

and the description says

net.minecraft.util.ReportedException: Ticking player

 

Thanks for helping! =)

Link to comment
Share on other sites

I am not sure. I am getting a list of all entities of EntityLivingBase that are around the player. I am not sure how to check what is a server-side object.

 

if(!this.worldObj.isRemote) {

  //I am on the server, therefore all objects I can see are on the server

}

Apparently I'm a complete and utter jerk and come to this forum just like to make fun of people, be confrontational, and make your personal life miserable.  If you think this is the case, JUST REPORT ME.  Otherwise you're just going to get reported when you reply to my posts and point it out, because odds are, I was trying to be nice.

 

Exception: If you do not understand Java, I WILL NOT HELP YOU and your thread will get locked.

 

DO NOT PM ME WITH PROBLEMS. No help will be given.

Link to comment
Share on other sites

Hi

 

I'm not sure but I think the PotionEffect.onUpdate might be run on both the client and the server.  If your custom code runs on the client it will cause problems.

 

Try putting this as the first line of your method

 

if (this.worldObj.isRemote) {  // Don't run entity search on client side

  return super.onUpdate(par1EntityLivingBase);   

}

 

-TGG

Link to comment
Share on other sites

EDIT:

This was solved earlier but then I ran into a problem that stems from this one.

So the block that needed to be unelectable when a certain item was held  also needs to change what type of tile entity is spawned when this item is held. The problem is that that method does not have x, y and z as parameters so I cannot use the same code. How would I do this? Also, if it would be easier to put the detecting in the renderer to change the texture that would work too. The current code for the original method:

	@Override
	public MovingObjectPosition collisionRayTrace(World par1World, int x, int y, int z, Vec3 par5Vec3, Vec3 par6Vec3)
	{
		AxisAlignedBB aabb = AxisAlignedBB.getAABBPool().getAABB(x-4, y-4, z-4, x+4, y+4, z+4);
		List w = par1World.getEntitiesWithinAABB(EntityPlayer.class, aabb);
		if(w.size() > 0) {
		     //at least one player in range
		     EntityPlayer player;
		     for(int i = 0; i < w.size() {
		    	 player = (EntityPlayer) w.get(i);
		    	 ItemStack stack = player.getHeldItem();
		    	 ItemStack stack2 = new ItemStack(MagicLights.lightStaff);
			     if(ItemStack.areItemStacksEqual(stack, stack2)){
			    	 return super.collisionRayTrace(par1World, x, y, z, par5Vec3, par6Vec3);
			     }else{return null;}
		     }
		     return null;
	    }else{return null;}
	}

Link to comment
Share on other sites

Hi

 

I would suggest repeating your "are any players nearby" code in the place you spawn the TileEntity.  You must have access to the [x,y,z] somehow because otherwise how can you spawn the TileEntity in the right place?

 

You could put the code in the TileEntity renderer instead but it would have a different effect - i.e.

do you want the appearance to change when the special item moves in or out of the vicinity?  Or do you want it to stay fixed after the initial placement, depending on whether the item was in the vicinity at the time it was place?

 

-TGG

Link to comment
Share on other sites

I would suggest repeating your "are any players nearby" code in the place you spawn the TileEntity.  You must have access to the [x,y,z] somehow because otherwise how can you spawn the TileEntity in the right place?

 

You haven't actually used a TileEntity have you?

When you (the modder) creates one, you don't have block coordinates.  You only have the world:

 

	@Override
public TileEntity createNewTileEntity(World world) {
	return new MyTileEntity();
}

 

Vanilla code handles the rest.

Apparently I'm a complete and utter jerk and come to this forum just like to make fun of people, be confrontational, and make your personal life miserable.  If you think this is the case, JUST REPORT ME.  Otherwise you're just going to get reported when you reply to my posts and point it out, because odds are, I was trying to be nice.

 

Exception: If you do not understand Java, I WILL NOT HELP YOU and your thread will get locked.

 

DO NOT PM ME WITH PROBLEMS. No help will be given.

Link to comment
Share on other sites

I would suggest repeating your "are any players nearby" code in the place you spawn the TileEntity.  You must have access to the [x,y,z] somehow because otherwise how can you spawn the TileEntity in the right place?

 

You haven't actually used a TileEntity have you?

When you (the modder) creates one, you don't have block coordinates.  You only have the world:

 

	@Override
public TileEntity createNewTileEntity(World world) {
	return new MyTileEntity();
}

 

Vanilla code handles the rest.

That is the problem I have, how would i best do the same thing I did with the MovingObjectPosition collisionRayTrace method in a CreateNewTileEntity method because it only has the parameter world.

Link to comment
Share on other sites

Use block metadata.  When the block is placed, set its metadata to a value based on its position (etc.etc.) and then create a tile entity based on the metadata using:

 

public TileEntity createTileEntity(World world, int metadata) { }

Apparently I'm a complete and utter jerk and come to this forum just like to make fun of people, be confrontational, and make your personal life miserable.  If you think this is the case, JUST REPORT ME.  Otherwise you're just going to get reported when you reply to my posts and point it out, because odds are, I was trying to be nice.

 

Exception: If you do not understand Java, I WILL NOT HELP YOU and your thread will get locked.

 

DO NOT PM ME WITH PROBLEMS. No help will be given.

Link to comment
Share on other sites

Hi Draco & Flayr

 

I guess I phrased my reply a bit confusingly.  What I meant was that the code responsible for placing the Block and associated TileEntity must know its location in the World.  You are right that this isn't directly accessible from inside createNewTileEntity.  Fortunately there are at least two other ways, for example

* if you only have a few different TileEntity types, you could set the Block metadata and use that in overridden Block.createTileEntity to decide what to create.  Or

* after creating the block, you can manually place (or replace) the TileEntity at your target [x,y,z] with the correct type - see the vanilla code in setBlockIDWithMetadata.

 

this.worldObj.setBlockTileEntity(j2, par2, k2, tileentity);

 

Personally I've never needed to do either of them, I used a single TileEntity and modified its data to make it act in different ways.  I have seen the first method used before.  Rumour has it that the second way works, have never tried it myself.

 

-TGG

 

Link to comment
Share on other sites

		AxisAlignedBB aabb = AxisAlignedBB.getAABBPool().getAABB(x-4, y-4, z-4, x+4, y+4, z+4);
		List w = par1World.getEntitiesWithinAABB(EntityPlayer.class, aabb);
		if(w.size() > 0) {
		     //at least one player in range
		     EntityPlayer player;
		     for(int i = 0; i < w.size() {
		    	 player = (EntityPlayer) w.get(i);
		    	 ItemStack stack = player.getHeldItem();
		    	 ItemStack stack2 = new ItemStack(MagicLights.lightStaff);
			     if(ItemStack.areItemStacksEqual(stack, stack2)){

 

So I wrote code that did change the TileEntity but it was kind of glitchy, I could go back to that but it seems like it would be better to put the code in the Renderer. How would I implement it in the renderer? The only problem is that there is no world object parameter in the renderer method, how would I change this code to work with entities instead of blocks?

Link to comment
Share on other sites

Hi

 

I think the best way forward is if you could describe more exactly what you're trying to do, i.e. a paragraph describing what this item is, what effects it has, on which blocks.  For example

 

"The staff of opening causes all wooden and iron doors within a 10m radius of the player to spontaneously open while the player is nearby."

 

At the moment I can't really give you any advice because it's not clear to me the behaviour you need, and hence whether you need TileEntities or not, whether the renderer is the best place, whether you can use metadata or you need something else, etc.

 

-TGG

 

Link to comment
Share on other sites

Hi

 

I think the best way forward is if you could describe more exactly what you're trying to do, i.e. a paragraph describing what this item is, what effects it has, on which blocks.  For example

 

"The staff of opening causes all wooden and iron doors within a 10m radius of the player to spontaneously open while the player is nearby."

 

At the moment I can't really give you any advice because it's not clear to me the behavior you need, and hence whether you need TileEntities or not, whether the renderer is the best place, whether you can use metadata or you need something else, etc.

 

-TGG

Sorry, have not been on the forums lately so this response is a bit late.

 

First, here is the GitHub for my sourcecode: https://github.com/TheJawrey/Magic-Lights/

Basically, what the mod does so far is add a single item, Staff of Light(lightStaff in the code) that on right click creates the block Light. The block light can be walked through, seen through and is also not editable without holding the Staff of Light, the object Light also creates a tile entity TileEntityLight that renderers a 2D object witch rotates to face the player. What I need to do is make it so that when you are holding the staff the rendered objects are visible and when the staff is not held they are invisible, basically acting like air that makes light.

Link to comment
Share on other sites

Hi

 

OK, that's much clearer now.

 

I have some suggestions on how you could go about it - some of this I've never tried before so it might take a bit of work to get it right.

 

(1) Create a BlockLight that is

  (a)  renderAsNormalBlock false

  (b) isOpaqueCube false

  ©  public AxisAlignedBB getCollisionBoundingBoxFromPool(World par1World, int par2, int par3, int par4)

    {

        return null;

    }

  (d) collisionRayTrace - return super.collisionRayTrace if player is holding the staff, NULL otherwise

(2) Have a single TileEntity associated with the block.  In the custom renderer for the TileEntity, check if the player has the staff equipped  and if so, render the TileEntity using the player's coordinates to determine which way the object should face.

 

Do you want the Light block to act like a torch when the staff is held (i.e. light up nearby blocks)?  That is a bit trickier because it means you would need to force an update of the blocklight map when you equip/unequip the item.

 

This is a bit different to some of your earlier posts, where the blocks would be interactable by any player, if there is another player holding the staff nearby.  What I've written above only allows the player holding the staff to interact, which is what I think you wanted?

 

-TGG

 

 

 

 

Link to comment
Share on other sites

Join the conversation

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

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

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

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

×   Your previous content has been restored.   Clear editor

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

Announcements



  • Recently Browsing

    • No registered users viewing this page.
  • Posts

    • I've been experiencing this mod crashing my server, and it's a vital mod for the modpack. If there is any fix for it, please reply. (for testing purposes, I removed all the other mods in the server to test if any mods were conflicting and still got the same result which is bellow in the logs) Here's the log:  [04May2024 07:40:48.957] [main/INFO] [cpw.mods.modlauncher.Launcher/MODLAUNCHER]: ModLauncher running: args [--gameDir, ., --launchTarget, fmlserver, --fml.forgeVersion, 36.2.39, --fml.mcpVersion, 20210115.111550, --fml.mcVersion, 1.16.5, --fml.forgeGroup, net.minecraftforge] [04May2024 07:40:48.979] [main/INFO] [cpw.mods.modlauncher.Launcher/MODLAUNCHER]: ModLauncher 8.1.3+8.1.3+main-8.1.x.c94d18ec starting: java version 11.0.20 by GraalVM Community [04May2024 07:40:50.614] [main/INFO] [net.minecraftforge.fml.loading.FixSSL/CORE]: Added Lets Encrypt root certificates as additional trust [04May2024 07:40:51.064] [main/INFO] [mixin/]: SpongePowered MIXIN Subsystem Version=0.8.4 Source=file:/home/container/libraries/org/spongepowered/mixin/0.8.4/mixin-0.8.4.jar Service=ModLauncher Env=SERVER [04May2024 07:40:53.196] [main/INFO] [STDERR/]: [jdk.nashorn.api.scripting.NashornScriptEngine:<init>:143]: Warning: Nashorn engine is planned to be removed from a future JDK release [04May2024 07:40:53.869] [main/INFO] [STDERR/]: [jdk.nashorn.api.scripting.NashornScriptEngine:<init>:143]: Warning: Nashorn engine is planned to be removed from a future JDK release [04May2024 07:40:53.906] [main/INFO] [STDERR/]: [jdk.nashorn.api.scripting.NashornScriptEngine:<init>:143]: Warning: Nashorn engine is planned to be removed from a future JDK release [04May2024 07:41:00.494] [main/INFO] [cpw.mods.modlauncher.LaunchServiceHandler/MODLAUNCHER]: Launching target 'fmlserver' with arguments [--gameDir, .] [04May2024 07:41:08.109] [main/INFO] [MixinExtras|Service/]: Initializing MixinExtras via virtuoel.mixinextras.service.MixinExtrasServiceImpl(version=0.3.5). [04May2024 07:41:45.791] [modloading-worker-0/INFO] [net.minecraftforge.common.ForgeMod/FORGEMOD]: Forge mod loading, version 36.2.39, for MC 1.16.5 with MCP 20210115.111550 [04May2024 07:41:45.858] [modloading-worker-0/INFO] [net.minecraftforge.common.MinecraftForge/FORGE]: MinecraftForge v36.2.39 Initialized [04May2024 07:41:51.758] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [forge] Starting version check at https://files.minecraftforge.net/net/minecraftforge/forge/promotions_slim.json [04May2024 07:41:55.270] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [forge] Found status: OUTDATED Current: 36.2.39 Target: 36.2.42 [04May2024 07:42:11.497] [main/INFO] [com.mojang.authlib.yggdrasil.YggdrasilAuthenticationService/]: Environment: authHost='https://authserver.mojang.com', accountsHost='https://api.mojang.com', sessionHost='https://sessionserver.mojang.com', servicesHost='https://api.minecraftservices.com', name='PROD' [04May2024 07:42:15.558] [main/WARN] [net.minecraft.command.Commands/]: Ambiguity between arguments [scale, compute, scale_type, entity] and [scale, compute, scale_type, scalingFactor] with inputs: [0123] [04May2024 07:42:15.664] [main/WARN] [net.minecraft.command.Commands/]: Ambiguity between arguments [scale, compute, scale_type, scalingFactor] and [scale, compute, scale_type, entity] with inputs: [0, -1, -.5, 1.2, .5, -1234.56] [04May2024 07:42:15.674] [main/WARN] [net.minecraft.command.Commands/]: Ambiguity between arguments [scale, delay, get, scale_type] and [scale, delay, get, entity] with inputs: [base] [04May2024 07:42:15.685] [main/WARN] [net.minecraft.command.Commands/]: Ambiguity between arguments [scale, delay, reset, scale_type] and [scale, delay, reset, targets] with inputs: [base] [04May2024 07:42:15.700] [main/WARN] [net.minecraft.command.Commands/]: Ambiguity between arguments [scale, easing, get, scale_type] and [scale, easing, get, entity] with inputs: [base] [04May2024 07:42:15.708] [main/WARN] [net.minecraft.command.Commands/]: Ambiguity between arguments [scale, easing, reset, scale_type] and [scale, easing, reset, targets] with inputs: [base] [04May2024 07:42:15.759] [main/WARN] [net.minecraft.command.Commands/]: Ambiguity between arguments [scale, get, entity] and [scale, get, scalingFactor] with inputs: [0123] [04May2024 07:42:15.769] [main/WARN] [net.minecraft.command.Commands/]: Ambiguity between arguments [scale, get, scale_type] and [scale, get, entity] with inputs: [base] [04May2024 07:42:15.775] [main/WARN] [net.minecraft.command.Commands/]: Ambiguity between arguments [scale, get, scale_type, entity] and [scale, get, scale_type, scalingFactor] with inputs: [0123] [04May2024 07:42:15.782] [main/WARN] [net.minecraft.command.Commands/]: Ambiguity between arguments [scale, get, scale_type, scalingFactor] and [scale, get, scale_type, entity] with inputs: [0, -1, -.5, 1.2, .5, -1234.56] [04May2024 07:42:15.790] [main/WARN] [net.minecraft.command.Commands/]: Ambiguity between arguments [scale, get, scalingFactor] and [scale, get, entity] with inputs: [0, -1, -.5, 1.2, .5, -1234.56] [04May2024 07:42:15.797] [main/WARN] [net.minecraft.command.Commands/]: Ambiguity between arguments [scale, persist, reset, scale_type] and [scale, persist, reset, targets] with inputs: [base] [04May2024 07:42:15.805] [main/WARN] [net.minecraft.command.Commands/]: Ambiguity between arguments [scale, reset, scale_type] and [scale, reset, targets] with inputs: [base] [04May2024 07:42:15.877] [main/WARN] [net.minecraft.command.Commands/]: Ambiguity between arguments [teleport, destination] and [teleport, targets] with inputs: [Player, 0123, @e, dd12be42-52a9-4a91-a8a1-11c01849e498] [04May2024 07:42:15.885] [main/WARN] [net.minecraft.command.Commands/]: Ambiguity between arguments [teleport, location] and [teleport, destination] with inputs: [0.1 -0.5 .9, 0 0 0] [04May2024 07:42:15.892] [main/WARN] [net.minecraft.command.Commands/]: Ambiguity between arguments [teleport, location] and [teleport, targets] with inputs: [0.1 -0.5 .9, 0 0 0] [04May2024 07:42:15.898] [main/WARN] [net.minecraft.command.Commands/]: Ambiguity between arguments [teleport, targets] and [teleport, destination] with inputs: [Player, 0123, dd12be42-52a9-4a91-a8a1-11c01849e498] [04May2024 07:42:15.905] [main/WARN] [net.minecraft.command.Commands/]: Ambiguity between arguments [teleport, targets, location] and [teleport, targets, destination] with inputs: [0.1 -0.5 .9, 0 0 0] [04May2024 07:42:15.969] [main/INFO] [net.minecraft.resources.SimpleReloadableResourceManager/]: Reloading ResourceManager: Default, Pehkui-3.8.0+1.16.5-forge.jar, Marvel-a1.4.jar, forge-1.16.5-36.2.39-universal.jar [04May2024 07:42:26.693] [Worker-Main-2/INFO] [net.minecraft.item.crafting.RecipeManager/]: Loaded 7 recipes [04May2024 07:42:30.961] [Worker-Main-2/INFO] [net.minecraft.advancements.AdvancementList/]: Loaded 982 advancements [04May2024 07:42:38.883] [Server thread/INFO] [net.minecraft.server.dedicated.DedicatedServer/]: Starting minecraft server version 1.16.5 [04May2024 07:42:38.885] [Server thread/INFO] [net.minecraft.server.dedicated.DedicatedServer/]: Loading properties [04May2024 07:42:38.886] [Server thread/INFO] [net.minecraft.server.dedicated.DedicatedServer/]: Default game type: SURVIVAL [04May2024 07:42:38.888] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: Generating keypair [04May2024 07:42:39.374] [Server thread/INFO] [net.minecraft.server.dedicated.DedicatedServer/]: Starting Minecraft server on 0.0.0.0:25575 [04May2024 07:42:39.517] [Server thread/INFO] [net.minecraft.network.NetworkSystem/]: Using epoll channel type [04May2024 07:42:40.473] [Server thread/WARN] [net.minecraftforge.common.ForgeConfigSpec/CORE]: Configuration file ./InfiniteAdventia/serverconfig/pehkui-server.toml is not correct. Correcting [04May2024 07:42:40.478] [Server thread/WARN] [net.minecraftforge.common.ForgeConfigSpec/CORE]: Incorrect key server was corrected from null to its default, SimpleCommentedConfig:{}.  [04May2024 07:42:40.479] [Server thread/WARN] [net.minecraftforge.common.ForgeConfigSpec/CORE]: Incorrect key server.scale_limits was corrected from null to its default, SimpleCommentedConfig:{}.  [04May2024 07:42:40.480] [Server thread/WARN] [net.minecraftforge.common.ForgeConfigSpec/CORE]: Incorrect key server.scale_limits.base was corrected from null to its default, SimpleCommentedConfig:{}.  [04May2024 07:42:40.482] [Server thread/WARN] [net.minecraftforge.common.ForgeConfigSpec/CORE]: Incorrect key server.scale_limits.base.minimum was corrected from null to its default, 1.2621774483536189E-29.  [04May2024 07:42:40.484] [Server thread/WARN] [net.minecraftforge.common.ForgeConfigSpec/CORE]: Incorrect key server.scale_limits.base.maximum was corrected from null to its default, 3.4028234663852886E38.  [04May2024 07:42:40.485] [Server thread/WARN] [net.minecraftforge.common.ForgeConfigSpec/CORE]: Incorrect key server.scale_limits.width was corrected from null to its default, SimpleCommentedConfig:{}.  [04May2024 07:42:40.487] [Server thread/WARN] [net.minecraftforge.common.ForgeConfigSpec/CORE]: Incorrect key server.scale_limits.width.minimum was corrected from null to its default, 1.2621774483536189E-29.  [04May2024 07:42:40.489] [Server thread/WARN] [net.minecraftforge.common.ForgeConfigSpec/CORE]: Incorrect key server.scale_limits.width.maximum was corrected from null to its default, 3.4028234663852886E38.  [04May2024 07:42:40.490] [Server thread/WARN] [net.minecraftforge.common.ForgeConfigSpec/CORE]: Incorrect key server.scale_limits.height was corrected from null to its default, SimpleCommentedConfig:{}.  [04May2024 07:42:40.492] [Server thread/WARN] [net.minecraftforge.common.ForgeConfigSpec/CORE]: Incorrect key server.scale_limits.height.minimum was corrected from null to its default, 1.2621774483536189E-29.  [04May2024 07:42:40.493] [Server thread/WARN] [net.minecraftforge.common.ForgeConfigSpec/CORE]: Incorrect key server.scale_limits.height.maximum was corrected from null to its default, 3.4028234663852886E38.  [04May2024 07:42:40.495] [Server thread/WARN] [net.minecraftforge.common.ForgeConfigSpec/CORE]: Incorrect key server.scale_limits.eye_height was corrected from null to its default, SimpleCommentedConfig:{}.  [04May2024 07:42:40.496] [Server thread/WARN] [net.minecraftforge.common.ForgeConfigSpec/CORE]: Incorrect key server.scale_limits.eye_height.minimum was corrected from null to its default, 1.2621774483536189E-29.  [04May2024 07:42:40.498] [Server thread/WARN] [net.minecraftforge.common.ForgeConfigSpec/CORE]: Incorrect key server.scale_limits.eye_height.maximum was corrected from null to its default, 3.4028234663852886E38.  [04May2024 07:42:40.499] [Server thread/WARN] [net.minecraftforge.common.ForgeConfigSpec/CORE]: Incorrect key server.scale_limits.hitbox_width was corrected from null to its default, SimpleCommentedConfig:{}.  [04May2024 07:42:40.500] [Server thread/WARN] [net.minecraftforge.common.ForgeConfigSpec/CORE]: Incorrect key server.scale_limits.hitbox_width.minimum was corrected from null to its default, 1.2621774483536189E-29.  [04May2024 07:42:40.502] [Server thread/WARN] [net.minecraftforge.common.ForgeConfigSpec/CORE]: Incorrect key server.scale_limits.hitbox_width.maximum was corrected from null to its default, 3.4028234663852886E38.  [04May2024 07:42:40.555] [Server thread/WARN] [net.minecraftforge.common.ForgeConfigSpec/CORE]: Incorrect key server.scale_limits.hitbox_height was corrected from null to its default, SimpleCommentedConfig:{}.  [04May2024 07:42:40.557] [Server thread/WARN] [net.minecraftforge.common.ForgeConfigSpec/CORE]: Incorrect key server.scale_limits.hitbox_height.minimum was corrected from null to its default, 1.2621774483536189E-29.  [04May2024 07:42:40.558] [Server thread/WARN] [net.minecraftforge.common.ForgeConfigSpec/CORE]: Incorrect key server.scale_limits.hitbox_height.maximum was corrected from null to its default, 3.4028234663852886E38.  [04May2024 07:42:40.559] [Server thread/WARN] [net.minecraftforge.common.ForgeConfigSpec/CORE]: Incorrect key server.scale_limits.interaction_box_width was corrected from null to its default, SimpleCommentedConfig:{}.  [04May2024 07:42:40.560] [Server thread/WARN] [net.minecraftforge.common.ForgeConfigSpec/CORE]: Incorrect key server.scale_limits.interaction_box_width.minimum was corrected from null to its default, 1.401298464324817E-45.  [04May2024 07:42:40.562] [Server thread/WARN] [net.minecraftforge.common.ForgeConfigSpec/CORE]: Incorrect key server.scale_limits.interaction_box_width.maximum was corrected from null to its default, 3.4028234663852886E38.  [04May2024 07:42:40.564] [Server thread/WARN] [net.minecraftforge.common.ForgeConfigSpec/CORE]: Incorrect key server.scale_limits.interaction_box_height was corrected from null to its default, SimpleCommentedConfig:{}.  [04May2024 07:42:40.565] [Server thread/WARN] [net.minecraftforge.common.ForgeConfigSpec/CORE]: Incorrect key server.scale_limits.interaction_box_height.minimum was corrected from null to its default, 1.401298464324817E-45.  [04May2024 07:42:40.568] [Server thread/WARN] [net.minecraftforge.common.ForgeConfigSpec/CORE]: Incorrect key server.scale_limits.interaction_box_height.maximum was corrected from null to its default, 3.4028234663852886E38.  [04May2024 07:42:40.570] [Server thread/WARN] [net.minecraftforge.common.ForgeConfigSpec/CORE]: Incorrect key server.scale_limits.model_width was corrected from null to its default, SimpleCommentedConfig:{}.  [04May2024 07:42:40.571] [Server thread/WARN] [net.minecraftforge.common.ForgeConfigSpec/CORE]: Incorrect key server.scale_limits.model_width.minimum was corrected from null to its default, 1.401298464324817E-45.  [04May2024 07:42:40.572] [Server thread/WARN] [net.minecraftforge.common.ForgeConfigSpec/CORE]: Incorrect key server.scale_limits.model_width.maximum was corrected from null to its default, 3.4028234663852886E38.  [04May2024 07:42:40.573] [Server thread/WARN] [net.minecraftforge.common.ForgeConfigSpec/CORE]: Incorrect key server.scale_limits.model_height was corrected from null to its default, SimpleCommentedConfig:{}.  [04May2024 07:42:40.574] [Server thread/WARN] [net.minecraftforge.common.ForgeConfigSpec/CORE]: Incorrect key server.scale_limits.model_height.minimum was corrected from null to its default, 1.401298464324817E-45.  [04May2024 07:42:40.575] [Server thread/WARN] [net.minecraftforge.common.ForgeConfigSpec/CORE]: Incorrect key server.scale_limits.model_height.maximum was corrected from null to its default, 3.4028234663852886E38.  [04May2024 07:42:40.577] [Server thread/WARN] [net.minecraftforge.common.ForgeConfigSpec/CORE]: Incorrect key server.scale_limits.third_person was corrected from null to its default, SimpleCommentedConfig:{}.  [04May2024 07:42:40.578] [Server thread/WARN] [net.minecraftforge.common.ForgeConfigSpec/CORE]: Incorrect key server.scale_limits.third_person.minimum was corrected from null to its default, 1.401298464324817E-45.  [04May2024 07:42:40.579] [Server thread/WARN] [net.minecraftforge.common.ForgeConfigSpec/CORE]: Incorrect key server.scale_limits.third_person.maximum was corrected from null to its default, 3.4028234663852886E38.  [04May2024 07:42:40.580] [Server thread/WARN] [net.minecraftforge.common.ForgeConfigSpec/CORE]: Incorrect key server.scale_limits.motion was corrected from null to its default, SimpleCommentedConfig:{}.  [04May2024 07:42:40.581] [Server thread/WARN] [net.minecraftforge.common.ForgeConfigSpec/CORE]: Incorrect key server.scale_limits.motion.minimum was corrected from null to its default, 1.401298464324817E-45.  [04May2024 07:42:40.582] [Server thread/WARN] [net.minecraftforge.common.ForgeConfigSpec/CORE]: Incorrect key server.scale_limits.motion.maximum was corrected from null to its default, 3.4028234663852886E38.  [04May2024 07:42:40.583] [Server thread/WARN] [net.minecraftforge.common.ForgeConfigSpec/CORE]: Incorrect key server.scale_limits.falling was corrected from null to its default, SimpleCommentedConfig:{}.  [04May2024 07:42:40.584] [Server thread/WARN] [net.minecraftforge.common.ForgeConfigSpec/CORE]: Incorrect key server.scale_limits.falling.minimum was corrected from null to its default, 1.401298464324817E-45.  [04May2024 07:42:40.586] [Server thread/WARN] [net.minecraftforge.common.ForgeConfigSpec/CORE]: Incorrect key server.scale_limits.falling.maximum was corrected from null to its default, 3.4028234663852886E38.  [04May2024 07:42:40.588] [Server thread/WARN] [net.minecraftforge.common.ForgeConfigSpec/CORE]: Incorrect key server.scale_limits.step_height was corrected from null to its default, SimpleCommentedConfig:{}.  [04May2024 07:42:40.589] [Server thread/WARN] [net.minecraftforge.common.ForgeConfigSpec/CORE]: Incorrect key server.scale_limits.step_height.minimum was corrected from null to its default, 1.401298464324817E-45.  [04May2024 07:42:40.590] [Server thread/WARN] [net.minecraftforge.common.ForgeConfigSpec/CORE]: Incorrect key server.scale_limits.step_height.maximum was corrected from null to its default, 3.4028234663852886E38.  [04May2024 07:42:40.592] [Server thread/WARN] [net.minecraftforge.common.ForgeConfigSpec/CORE]: Incorrect key server.scale_limits.view_bobbing was corrected from null to its default, SimpleCommentedConfig:{}.  [04May2024 07:42:40.592] [Server thread/WARN] [net.minecraftforge.common.ForgeConfigSpec/CORE]: Incorrect key server.scale_limits.view_bobbing.minimum was corrected from null to its default, 1.401298464324817E-45.  [04May2024 07:42:40.593] [Server thread/WARN] [net.minecraftforge.common.ForgeConfigSpec/CORE]: Incorrect key server.scale_limits.view_bobbing.maximum was corrected from null to its default, 3.4028234663852886E38.  [04May2024 07:42:40.595] [Server thread/WARN] [net.minecraftforge.common.ForgeConfigSpec/CORE]: Incorrect key server.scale_limits.visibility was corrected from null to its default, SimpleCommentedConfig:{}.  [04May2024 07:42:40.595] [Server thread/WARN] [net.minecraftforge.common.ForgeConfigSpec/CORE]: Incorrect key server.scale_limits.visibility.minimum was corrected from null to its default, 1.401298464324817E-45.  [04May2024 07:42:40.596] [Server thread/WARN] [net.minecraftforge.common.ForgeConfigSpec/CORE]: Incorrect key server.scale_limits.visibility.maximum was corrected from null to its default, 3.4028234663852886E38.  [04May2024 07:42:40.598] [Server thread/WARN] [net.minecraftforge.common.ForgeConfigSpec/CORE]: Incorrect key server.scale_limits.jump_height was corrected from null to its default, SimpleCommentedConfig:{}.  [04May2024 07:42:40.598] [Server thread/WARN] [net.minecraftforge.common.ForgeConfigSpec/CORE]: Incorrect key server.scale_limits.jump_height.minimum was corrected from null to its default, 1.401298464324817E-45.  [04May2024 07:42:40.600] [Server thread/WARN] [net.minecraftforge.common.ForgeConfigSpec/CORE]: Incorrect key server.scale_limits.jump_height.maximum was corrected from null to its default, 3.4028234663852886E38.  [04May2024 07:42:40.601] [Server thread/WARN] [net.minecraftforge.common.ForgeConfigSpec/CORE]: Incorrect key server.scale_limits.flight was corrected from null to its default, SimpleCommentedConfig:{}.  [04May2024 07:42:40.602] [Server thread/WARN] [net.minecraftforge.common.ForgeConfigSpec/CORE]: Incorrect key server.scale_limits.flight.minimum was corrected from null to its default, 1.401298464324817E-45.  [04May2024 07:42:40.603] [Server thread/WARN] [net.minecraftforge.common.ForgeConfigSpec/CORE]: Incorrect key server.scale_limits.flight.maximum was corrected from null to its default, 3.4028234663852886E38.  [04May2024 07:42:40.604] [Server thread/WARN] [net.minecraftforge.common.ForgeConfigSpec/CORE]: Incorrect key server.scale_limits.reach was corrected from null to its default, SimpleCommentedConfig:{}.  [04May2024 07:42:40.605] [Server thread/WARN] [net.minecraftforge.common.ForgeConfigSpec/CORE]: Incorrect key server.scale_limits.reach.minimum was corrected from null to its default, 1.401298464324817E-45.  [04May2024 07:42:40.656] [Server thread/WARN] [net.minecraftforge.common.ForgeConfigSpec/CORE]: Incorrect key server.scale_limits.reach.maximum was corrected from null to its default, 3.4028234663852886E38.  [04May2024 07:42:40.658] [Server thread/WARN] [net.minecraftforge.common.ForgeConfigSpec/CORE]: Incorrect key server.scale_limits.block_reach was corrected from null to its default, SimpleCommentedConfig:{}.  [04May2024 07:42:40.658] [Server thread/WARN] [net.minecraftforge.common.ForgeConfigSpec/CORE]: Incorrect key server.scale_limits.block_reach.minimum was corrected from null to its default, 1.401298464324817E-45.  [04May2024 07:42:40.659] [Server thread/WARN] [net.minecraftforge.common.ForgeConfigSpec/CORE]: Incorrect key server.scale_limits.block_reach.maximum was corrected from null to its default, 128.0.  [04May2024 07:42:40.660] [Server thread/WARN] [net.minecraftforge.common.ForgeConfigSpec/CORE]: Incorrect key server.scale_limits.entity_reach was corrected from null to its default, SimpleCommentedConfig:{}.  [04May2024 07:42:40.661] [Server thread/WARN] [net.minecraftforge.common.ForgeConfigSpec/CORE]: Incorrect key server.scale_limits.entity_reach.minimum was corrected from null to its default, 1.401298464324817E-45.  [04May2024 07:42:40.662] [Server thread/WARN] [net.minecraftforge.common.ForgeConfigSpec/CORE]: Incorrect key server.scale_limits.entity_reach.maximum was corrected from null to its default, 128.0.  [04May2024 07:42:40.663] [Server thread/WARN] [net.minecraftforge.common.ForgeConfigSpec/CORE]: Incorrect key server.scale_limits.mining_speed was corrected from null to its default, SimpleCommentedConfig:{}.  [04May2024 07:42:40.664] [Server thread/WARN] [net.minecraftforge.common.ForgeConfigSpec/CORE]: Incorrect key server.scale_limits.mining_speed.minimum was corrected from null to its default, 1.401298464324817E-45.  [04May2024 07:42:40.665] [Server thread/WARN] [net.minecraftforge.common.ForgeConfigSpec/CORE]: Incorrect key server.scale_limits.mining_speed.maximum was corrected from null to its default, 3.4028234663852886E38.  [04May2024 07:42:40.666] [Server thread/WARN] [net.minecraftforge.common.ForgeConfigSpec/CORE]: Incorrect key server.scale_limits.attack_speed was corrected from null to its default, SimpleCommentedConfig:{}.  [04May2024 07:42:40.667] [Server thread/WARN] [net.minecraftforge.common.ForgeConfigSpec/CORE]: Incorrect key server.scale_limits.attack_speed.minimum was corrected from null to its default, 1.401298464324817E-45.  [04May2024 07:42:40.668] [Server thread/WARN] [net.minecraftforge.common.ForgeConfigSpec/CORE]: Incorrect key server.scale_limits.attack_speed.maximum was corrected from null to its default, 3.4028234663852886E38.  [04May2024 07:42:40.669] [Server thread/WARN] [net.minecraftforge.common.ForgeConfigSpec/CORE]: Incorrect key server.scale_limits.knockback was corrected from null to its default, SimpleCommentedConfig:{}.  [04May2024 07:42:40.670] [Server thread/WARN] [net.minecraftforge.common.ForgeConfigSpec/CORE]: Incorrect key server.scale_limits.knockback.minimum was corrected from null to its default, 1.401298464324817E-45.  [04May2024 07:42:40.671] [Server thread/WARN] [net.minecraftforge.common.ForgeConfigSpec/CORE]: Incorrect key server.scale_limits.knockback.maximum was corrected from null to its default, 3.4028234663852886E38.  [04May2024 07:42:40.842] [Server thread/WARN] [net.minecraftforge.common.ForgeConfigSpec/CORE]: Incorrect key server.scale_limits.attack was corrected from null to its default, SimpleCommentedConfig:{}.  [04May2024 07:42:40.844] [Server thread/WARN] [net.minecraftforge.common.ForgeConfigSpec/CORE]: Incorrect key server.scale_limits.attack.minimum was corrected from null to its default, 1.401298464324817E-45.  [04May2024 07:42:40.845] [Server thread/WARN] [net.minecraftforge.common.ForgeConfigSpec/CORE]: Incorrect key server.scale_limits.attack.maximum was corrected from null to its default, 3.4028234663852886E38.  [04May2024 07:42:40.846] [Server thread/WARN] [net.minecraftforge.common.ForgeConfigSpec/CORE]: Incorrect key server.scale_limits.defense was corrected from null to its default, SimpleCommentedConfig:{}.  [04May2024 07:42:40.847] [Server thread/WARN] [net.minecraftforge.common.ForgeConfigSpec/CORE]: Incorrect key server.scale_limits.defense.minimum was corrected from null to its default, 1.401298464324817E-45.  [04May2024 07:42:40.848] [Server thread/WARN] [net.minecraftforge.common.ForgeConfigSpec/CORE]: Incorrect key server.scale_limits.defense.maximum was corrected from null to its default, 3.4028234663852886E38.  [04May2024 07:42:40.849] [Server thread/WARN] [net.minecraftforge.common.ForgeConfigSpec/CORE]: Incorrect key server.scale_limits.health was corrected from null to its default, SimpleCommentedConfig:{}.  [04May2024 07:42:40.850] [Server thread/WARN] [net.minecraftforge.common.ForgeConfigSpec/CORE]: Incorrect key server.scale_limits.health.minimum was corrected from null to its default, 1.401298464324817E-45.  [04May2024 07:42:40.851] [Server thread/WARN] [net.minecraftforge.common.ForgeConfigSpec/CORE]: Incorrect key server.scale_limits.health.maximum was corrected from null to its default, 3.4028234663852886E38.  [04May2024 07:42:40.856] [Server thread/WARN] [net.minecraftforge.common.ForgeConfigSpec/CORE]: Incorrect key server.scale_limits.drops was corrected from null to its default, SimpleCommentedConfig:{}.  [04May2024 07:42:40.857] [Server thread/WARN] [net.minecraftforge.common.ForgeConfigSpec/CORE]: Incorrect key server.scale_limits.drops.minimum was corrected from null to its default, 1.401298464324817E-45.  [04May2024 07:42:40.858] [Server thread/WARN] [net.minecraftforge.common.ForgeConfigSpec/CORE]: Incorrect key server.scale_limits.drops.maximum was corrected from null to its default, 3.4028234663852886E38.  [04May2024 07:42:40.860] [Server thread/WARN] [net.minecraftforge.common.ForgeConfigSpec/CORE]: Incorrect key server.scale_limits.held_item was corrected from null to its default, SimpleCommentedConfig:{}.  [04May2024 07:42:40.861] [Server thread/WARN] [net.minecraftforge.common.ForgeConfigSpec/CORE]: Incorrect key server.scale_limits.held_item.minimum was corrected from null to its default, 1.401298464324817E-45.  [04May2024 07:42:40.862] [Server thread/WARN] [net.minecraftforge.common.ForgeConfigSpec/CORE]: Incorrect key server.scale_limits.held_item.maximum was corrected from null to its default, 3.4028234663852886E38.  [04May2024 07:42:40.863] [Server thread/WARN] [net.minecraftforge.common.ForgeConfigSpec/CORE]: Incorrect key server.scale_limits.projectiles was corrected from null to its default, SimpleCommentedConfig:{}.  [04May2024 07:42:40.864] [Server thread/WARN] [net.minecraftforge.common.ForgeConfigSpec/CORE]: Incorrect key server.scale_limits.projectiles.minimum was corrected from null to its default, 1.401298464324817E-45.  [04May2024 07:42:40.866] [Server thread/WARN] [net.minecraftforge.common.ForgeConfigSpec/CORE]: Incorrect key server.scale_limits.projectiles.maximum was corrected from null to its default, 3.4028234663852886E38.  [04May2024 07:42:40.867] [Server thread/WARN] [net.minecraftforge.common.ForgeConfigSpec/CORE]: Incorrect key server.scale_limits.explosions was corrected from null to its default, SimpleCommentedConfig:{}.  [04May2024 07:42:40.868] [Server thread/WARN] [net.minecraftforge.common.ForgeConfigSpec/CORE]: Incorrect key server.scale_limits.explosions.minimum was corrected from null to its default, 1.401298464324817E-45.  [04May2024 07:42:40.869] [Server thread/WARN] [net.minecraftforge.common.ForgeConfigSpec/CORE]: Incorrect key server.scale_limits.explosions.maximum was corrected from null to its default, 3.4028234663852886E38.  [04May2024 07:42:41.076] [Server thread/WARN] [net.minecraftforge.common.ForgeConfigSpec/CORE]: Configuration file ./InfiniteAdventia/serverconfig/forge-server.toml is not correct. Correcting [04May2024 07:42:41.079] [Server thread/WARN] [net.minecraftforge.common.ForgeConfigSpec/CORE]: Incorrect key server was corrected from null to its default, SimpleCommentedConfig:{}.  [04May2024 07:42:41.079] [Server thread/WARN] [net.minecraftforge.common.ForgeConfigSpec/CORE]: Incorrect key server.removeErroringEntities was corrected from null to its default, false.  [04May2024 07:42:41.080] [Server thread/WARN] [net.minecraftforge.common.ForgeConfigSpec/CORE]: Incorrect key server.removeErroringTileEntities was corrected from null to its default, false.  [04May2024 07:42:41.081] [Server thread/WARN] [net.minecraftforge.common.ForgeConfigSpec/CORE]: Incorrect key server.fullBoundingBoxLadders was corrected from null to its default, false.  [04May2024 07:42:41.082] [Server thread/WARN] [net.minecraftforge.common.ForgeConfigSpec/CORE]: Incorrect key server.zombieBaseSummonChance was corrected from null to its default, 0.1.  [04May2024 07:42:41.083] [Server thread/WARN] [net.minecraftforge.common.ForgeConfigSpec/CORE]: Incorrect key server.zombieBabyChance was corrected from null to its default, 0.05.  [04May2024 07:42:41.084] [Server thread/WARN] [net.minecraftforge.common.ForgeConfigSpec/CORE]: Incorrect key server.logCascadingWorldGeneration was corrected from null to its default, true.  [04May2024 07:42:41.085] [Server thread/WARN] [net.minecraftforge.common.ForgeConfigSpec/CORE]: Incorrect key server.fixVanillaCascading was corrected from null to its default, false.  [04May2024 07:42:41.086] [Server thread/WARN] [net.minecraftforge.common.ForgeConfigSpec/CORE]: Incorrect key server.dimensionUnloadQueueDelay was corrected from null to its default, 0.  [04May2024 07:42:41.088] [Server thread/WARN] [net.minecraftforge.common.ForgeConfigSpec/CORE]: Incorrect key server.treatEmptyTagsAsAir was corrected from null to its default, false.  [04May2024 07:42:41.090] [Server thread/WARN] [net.minecraftforge.common.ForgeConfigSpec/CORE]: Incorrect key server.fixAdvancementLoading was corrected from null to its default, true.  [04May2024 07:42:41.207] [Server thread/INFO] [net.minecraft.server.dedicated.DedicatedServer/]: Preparing level "InfiniteAdventia" [04May2024 07:43:12.365] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: Preparing start region for dimension minecraft:overworld [04May2024 07:43:13.192] [Worker-Main-2/INFO] [net.minecraft.world.chunk.listener.LoggingChunkStatusListener/]: Preparing spawn area: 0% [04May2024 07:43:13.393] [Worker-Main-2/INFO] [net.minecraft.world.chunk.listener.LoggingChunkStatusListener/]: Preparing spawn area: 0% [04May2024 07:43:13.395] [Worker-Main-2/INFO] [net.minecraft.world.chunk.listener.LoggingChunkStatusListener/]: Preparing spawn area: 0% [04May2024 07:43:13.877] [Worker-Main-2/INFO] [net.minecraft.world.chunk.listener.LoggingChunkStatusListener/]: Preparing spawn area: 0% [04May2024 07:43:14.367] [Worker-Main-2/INFO] [net.minecraft.world.chunk.listener.LoggingChunkStatusListener/]: Preparing spawn area: 0% [04May2024 07:43:14.899] [Worker-Main-2/INFO] [net.minecraft.world.chunk.listener.LoggingChunkStatusListener/]: Preparing spawn area: 0% [04May2024 07:43:15.663] [Worker-Main-2/INFO] [net.minecraft.world.chunk.listener.LoggingChunkStatusListener/]: Preparing spawn area: 0% [04May2024 07:43:15.980] [Worker-Main-2/INFO] [net.minecraft.world.chunk.listener.LoggingChunkStatusListener/]: Preparing spawn area: 0% [04May2024 07:43:16.376] [Worker-Main-2/INFO] [net.minecraft.world.chunk.listener.LoggingChunkStatusListener/]: Preparing spawn area: 0% [04May2024 07:43:17.067] [Worker-Main-2/INFO] [net.minecraft.world.chunk.listener.LoggingChunkStatusListener/]: Preparing spawn area: 0% [04May2024 07:43:17.458] [Worker-Main-2/INFO] [net.minecraft.world.chunk.listener.LoggingChunkStatusListener/]: Preparing spawn area: 0% [04May2024 07:43:18.162] [Worker-Main-2/INFO] [net.minecraft.world.chunk.listener.LoggingChunkStatusListener/]: Preparing spawn area: 0% [04May2024 07:43:18.617] [Worker-Main-2/INFO] [net.minecraft.world.chunk.listener.LoggingChunkStatusListener/]: Preparing spawn area: 0% [04May2024 07:43:18.965] [Worker-Main-2/INFO] [net.minecraft.world.chunk.listener.LoggingChunkStatusListener/]: Preparing spawn area: 0% [04May2024 07:43:19.661] [Worker-Main-2/INFO] [net.minecraft.world.chunk.listener.LoggingChunkStatusListener/]: Preparing spawn area: 0% [04May2024 07:43:20.055] [Worker-Main-2/INFO] [net.minecraft.world.chunk.listener.LoggingChunkStatusListener/]: Preparing spawn area: 0% [04May2024 07:43:20.368] [Worker-Main-2/INFO] [net.minecraft.world.chunk.listener.LoggingChunkStatusListener/]: Preparing spawn area: 0% [04May2024 07:43:20.872] [Worker-Main-2/INFO] [net.minecraft.world.chunk.listener.LoggingChunkStatusListener/]: Preparing spawn area: 0% [04May2024 07:43:21.384] [Worker-Main-2/INFO] [net.minecraft.world.chunk.listener.LoggingChunkStatusListener/]: Preparing spawn area: 0% [04May2024 07:43:21.874] [Worker-Main-2/INFO] [net.minecraft.world.chunk.listener.LoggingChunkStatusListener/]: Preparing spawn area: 0% [04May2024 07:43:22.391] [Worker-Main-2/INFO] [net.minecraft.world.chunk.listener.LoggingChunkStatusListener/]: Preparing spawn area: 0% [04May2024 07:43:23.480] [Worker-Main-2/INFO] [net.minecraft.world.chunk.listener.LoggingChunkStatusListener/]: Preparing spawn area: 0% [04May2024 07:43:23.483] [Worker-Main-2/INFO] [net.minecraft.world.chunk.listener.LoggingChunkStatusListener/]: Preparing spawn area: 0% [04May2024 07:43:23.887] [Worker-Main-2/INFO] [net.minecraft.world.chunk.listener.LoggingChunkStatusListener/]: Preparing spawn area: 0% [04May2024 07:43:25.357] [Worker-Main-2/INFO] [net.minecraft.world.chunk.listener.LoggingChunkStatusListener/]: Preparing spawn area: 0% [04May2024 07:43:25.358] [Worker-Main-2/INFO] [net.minecraft.world.chunk.listener.LoggingChunkStatusListener/]: Preparing spawn area: 0% [04May2024 07:43:26.186] [Worker-Main-2/INFO] [net.minecraft.world.chunk.listener.LoggingChunkStatusListener/]: Preparing spawn area: 0% [04May2024 07:43:26.188] [Worker-Main-2/INFO] [net.minecraft.world.chunk.listener.LoggingChunkStatusListener/]: Preparing spawn area: 0% [04May2024 07:43:26.378] [Worker-Main-2/INFO] [net.minecraft.world.chunk.listener.LoggingChunkStatusListener/]: Preparing spawn area: 0% [04May2024 07:43:26.908] [Worker-Main-2/INFO] [net.minecraft.world.chunk.listener.LoggingChunkStatusListener/]: Preparing spawn area: 0% [04May2024 07:43:28.382] [Worker-Main-2/INFO] [net.minecraft.world.chunk.listener.LoggingChunkStatusListener/]: Preparing spawn area: 0% [04May2024 07:43:28.385] [Worker-Main-2/INFO] [net.minecraft.world.chunk.listener.LoggingChunkStatusListener/]: Preparing spawn area: 0% [04May2024 07:43:29.675] [Worker-Main-2/INFO] [net.minecraft.world.chunk.listener.LoggingChunkStatusListener/]: Preparing spawn area: 0% [04May2024 07:43:29.685] [Worker-Main-2/INFO] [net.minecraft.world.chunk.listener.LoggingChunkStatusListener/]: Preparing spawn area: 0% [04May2024 07:43:29.687] [Worker-Main-2/INFO] [net.minecraft.world.chunk.listener.LoggingChunkStatusListener/]: Preparing spawn area: 0% [04May2024 07:43:29.900] [Worker-Main-2/INFO] [net.minecraft.world.chunk.listener.LoggingChunkStatusListener/]: Preparing spawn area: 1% [04May2024 07:43:31.264] [Worker-Main-2/INFO] [net.minecraft.world.chunk.listener.LoggingChunkStatusListener/]: Preparing spawn area: 1% [04May2024 07:43:31.265] [Worker-Main-2/INFO] [net.minecraft.world.chunk.listener.LoggingChunkStatusListener/]: Preparing spawn area: 1% [04May2024 07:43:31.371] [Worker-Main-2/INFO] [net.minecraft.world.chunk.listener.LoggingChunkStatusListener/]: Preparing spawn area: 1% [04May2024 07:43:31.900] [Worker-Main-2/INFO] [net.minecraft.world.chunk.listener.LoggingChunkStatusListener/]: Preparing spawn area: 1% [04May2024 07:43:32.396] [Worker-Main-2/INFO] [net.minecraft.world.chunk.listener.LoggingChunkStatusListener/]: Preparing spawn area: 1% [04May2024 07:43:32.880] [Worker-Main-2/INFO] [net.minecraft.world.chunk.listener.LoggingChunkStatusListener/]: Preparing spawn area: 1% [04May2024 07:43:33.379] [Worker-Main-2/INFO] [net.minecraft.world.chunk.listener.LoggingChunkStatusListener/]: Preparing spawn area: 1% [04May2024 07:43:33.885] [Worker-Main-2/INFO] [net.minecraft.world.chunk.listener.LoggingChunkStatusListener/]: Preparing spawn area: 1% [04May2024 07:43:34.478] [Worker-Main-2/INFO] [net.minecraft.world.chunk.listener.LoggingChunkStatusListener/]: Preparing spawn area: 1% [04May2024 07:43:35.693] [Worker-Main-2/INFO] [net.minecraft.world.chunk.listener.LoggingChunkStatusListener/]: Preparing spawn area: 1% [04May2024 07:43:35.805] [Worker-Main-2/INFO] [net.minecraft.world.chunk.listener.LoggingChunkStatusListener/]: Preparing spawn area: 1% [04May2024 07:43:35.895] [Worker-Main-2/INFO] [net.minecraft.world.chunk.listener.LoggingChunkStatusListener/]: Preparing spawn area: 2% [04May2024 07:43:36.700] [Worker-Main-2/INFO] [net.minecraft.world.chunk.listener.LoggingChunkStatusListener/]: Preparing spawn area: 2% [04May2024 07:43:36.922] [Worker-Main-2/INFO] [net.minecraft.world.chunk.listener.LoggingChunkStatusListener/]: Preparing spawn area: 2% [04May2024 07:43:37.456] [Worker-Main-2/INFO] [net.minecraft.world.chunk.listener.LoggingChunkStatusListener/]: Preparing spawn area: 2% [04May2024 07:43:37.901] [Worker-Main-2/INFO] [net.minecraft.world.chunk.listener.LoggingChunkStatusListener/]: Preparing spawn area: 2% [04May2024 07:43:38.755] [Worker-Main-2/INFO] [net.minecraft.world.chunk.listener.LoggingChunkStatusListener/]: Preparing spawn area: 3% [04May2024 07:43:39.069] [Worker-Main-2/INFO] [net.minecraft.world.chunk.listener.LoggingChunkStatusListener/]: Preparing spawn area: 3% [04May2024 07:43:39.410] [Worker-Main-2/INFO] [net.minecraft.world.chunk.listener.LoggingChunkStatusListener/]: Preparing spawn area: 3% [04May2024 07:43:40.071] [Worker-Main-2/INFO] [net.minecraft.world.chunk.listener.LoggingChunkStatusListener/]: Preparing spawn area: 3% [04May2024 07:43:40.477] [Worker-Main-2/INFO] [net.minecraft.world.chunk.listener.LoggingChunkStatusListener/]: Preparing spawn area: 3% [04May2024 07:43:40.873] [Worker-Main-2/INFO] [net.minecraft.world.chunk.listener.LoggingChunkStatusListener/]: Preparing spawn area: 4% [04May2024 07:43:41.376] [Worker-Main-2/INFO] [net.minecraft.world.chunk.listener.LoggingChunkStatusListener/]: Preparing spawn area: 4% [04May2024 07:43:41.882] [Worker-Main-2/INFO] [net.minecraft.world.chunk.listener.LoggingChunkStatusListener/]: Preparing spawn area: 4% [04May2024 07:43:42.507] [Worker-Main-2/INFO] [net.minecraft.world.chunk.listener.LoggingChunkStatusListener/]: Preparing spawn area: 4% [04May2024 07:43:42.919] [Worker-Main-2/INFO] [net.minecraft.world.chunk.listener.LoggingChunkStatusListener/]: Preparing spawn area: 5% [04May2024 07:43:43.663] [Worker-Main-2/INFO] [net.minecraft.world.chunk.listener.LoggingChunkStatusListener/]: Preparing spawn area: 5% [04May2024 07:43:43.868] [Worker-Main-2/INFO] [net.minecraft.world.chunk.listener.LoggingChunkStatusListener/]: Preparing spawn area: 5% [04May2024 07:43:44.448] [Worker-Main-2/INFO] [net.minecraft.world.chunk.listener.LoggingChunkStatusListener/]: Preparing spawn area: 5% [04May2024 07:43:44.963] [Worker-Main-2/INFO] [net.minecraft.world.chunk.listener.LoggingChunkStatusListener/]: Preparing spawn area: 6% [04May2024 07:43:45.377] [Worker-Main-2/INFO] [net.minecraft.world.chunk.listener.LoggingChunkStatusListener/]: Preparing spawn area: 6% [04May2024 07:43:45.914] [Worker-Main-2/INFO] [net.minecraft.world.chunk.listener.LoggingChunkStatusListener/]: Preparing spawn area: 6% [04May2024 07:43:46.373] [Worker-Main-2/INFO] [net.minecraft.world.chunk.listener.LoggingChunkStatusListener/]: Preparing spawn area: 7% [04May2024 07:43:46.997] [Worker-Main-2/INFO] [net.minecraft.world.chunk.listener.LoggingChunkStatusListener/]: Preparing spawn area: 7% [04May2024 07:43:47.497] [Worker-Main-2/INFO] [net.minecraft.world.chunk.listener.LoggingChunkStatusListener/]: Preparing spawn area: 7% [04May2024 07:43:47.889] [Worker-Main-2/INFO] [net.minecraft.world.chunk.listener.LoggingChunkStatusListener/]: Preparing spawn area: 7% [04May2024 07:43:48.371] [Worker-Main-2/INFO] [net.minecraft.world.chunk.listener.LoggingChunkStatusListener/]: Preparing spawn area: 8% [04May2024 07:43:48.976] [Worker-Main-2/INFO] [net.minecraft.world.chunk.listener.LoggingChunkStatusListener/]: Preparing spawn area: 8% [04May2024 07:43:49.487] [Worker-Main-2/INFO] [net.minecraft.world.chunk.listener.LoggingChunkStatusListener/]: Preparing spawn area: 9% [04May2024 07:43:49.881] [Worker-Main-2/INFO] [net.minecraft.world.chunk.listener.LoggingChunkStatusListener/]: Preparing spawn area: 9% [04May2024 07:43:50.391] [Worker-Main-2/INFO] [net.minecraft.world.chunk.listener.LoggingChunkStatusListener/]: Preparing spawn area: 9% [04May2024 07:43:50.893] [Worker-Main-2/INFO] [net.minecraft.world.chunk.listener.LoggingChunkStatusListener/]: Preparing spawn area: 9% [04May2024 07:43:51.378] [Worker-Main-2/INFO] [net.minecraft.world.chunk.listener.LoggingChunkStatusListener/]: Preparing spawn area: 9% [04May2024 07:43:52.090] [Worker-Main-2/INFO] [net.minecraft.world.chunk.listener.LoggingChunkStatusListener/]: Preparing spawn area: 9% [04May2024 07:43:52.367] [Worker-Main-2/INFO] [net.minecraft.world.chunk.listener.LoggingChunkStatusListener/]: Preparing spawn area: 10% [04May2024 07:43:52.979] [Worker-Main-2/INFO] [net.minecraft.world.chunk.listener.LoggingChunkStatusListener/]: Preparing spawn area: 10% [04May2024 07:43:53.382] [Worker-Main-2/INFO] [net.minecraft.world.chunk.listener.LoggingChunkStatusListener/]: Preparing spawn area: 10% [04May2024 07:43:54.076] [Worker-Main-2/INFO] [net.minecraft.world.chunk.listener.LoggingChunkStatusListener/]: Preparing spawn area: 11% [04May2024 07:43:54.484] [Worker-Main-2/INFO] [net.minecraft.world.chunk.listener.LoggingChunkStatusListener/]: Preparing spawn area: 11% [04May2024 07:43:55.086] [Worker-Main-2/INFO] [net.minecraft.world.chunk.listener.LoggingChunkStatusListener/]: Preparing spawn area: 11% [04May2024 07:43:55.755] [Worker-Main-2/INFO] [net.minecraft.world.chunk.listener.LoggingChunkStatusListener/]: Preparing spawn area: 12% [04May2024 07:43:55.879] [Worker-Main-2/INFO] [net.minecraft.world.chunk.listener.LoggingChunkStatusListener/]: Preparing spawn area: 12% [04May2024 07:43:56.368] [Worker-Main-2/INFO] [net.minecraft.world.chunk.listener.LoggingChunkStatusListener/]: Preparing spawn area: 12% [04May2024 07:43:56.905] [Worker-Main-2/INFO] [net.minecraft.world.chunk.listener.LoggingChunkStatusListener/]: Preparing spawn area: 12% [04May2024 07:43:57.369] [Worker-Main-2/INFO] [net.minecraft.world.chunk.listener.LoggingChunkStatusListener/]: Preparing spawn area: 13% [04May2024 07:43:57.883] [Worker-Main-2/INFO] [net.minecraft.world.chunk.listener.LoggingChunkStatusListener/]: Preparing spawn area: 13% [04May2024 07:43:58.556] [Worker-Main-2/INFO] [net.minecraft.world.chunk.listener.LoggingChunkStatusListener/]: Preparing spawn area: 13% [04May2024 07:43:59.101] [Worker-Main-2/INFO] [net.minecraft.world.chunk.listener.LoggingChunkStatusListener/]: Preparing spawn area: 14% [04May2024 07:43:59.628] [Worker-Main-2/INFO] [net.minecraft.world.chunk.listener.LoggingChunkStatusListener/]: Preparing spawn area: 14% [04May2024 07:43:59.867] [Worker-Main-2/INFO] [net.minecraft.world.chunk.listener.LoggingChunkStatusListener/]: Preparing spawn area: 15% [04May2024 07:44:00.373] [Worker-Main-2/INFO] [net.minecraft.world.chunk.listener.LoggingChunkStatusListener/]: Preparing spawn area: 15% [04May2024 07:44:00.887] [Worker-Main-2/INFO] [net.minecraft.world.chunk.listener.LoggingChunkStatusListener/]: Preparing spawn area: 15% [04May2024 07:44:01.376] [Worker-Main-2/INFO] [net.minecraft.world.chunk.listener.LoggingChunkStatusListener/]: Preparing spawn area: 15% [04May2024 07:44:02.011] [Worker-Main-2/INFO] [net.minecraft.world.chunk.listener.LoggingChunkStatusListener/]: Preparing spawn area: 15% [04May2024 07:44:02.385] [Worker-Main-2/INFO] [net.minecraft.world.chunk.listener.LoggingChunkStatusListener/]: Preparing spawn area: 15% [04May2024 07:44:03.107] [Worker-Main-2/INFO] [net.minecraft.world.chunk.listener.LoggingChunkStatusListener/]: Preparing spawn area: 16% [04May2024 07:44:03.459] [Worker-Main-2/INFO] [net.minecraft.world.chunk.listener.LoggingChunkStatusListener/]: Preparing spawn area: 16% [04May2024 07:44:03.893] [Worker-Main-2/INFO] [net.minecraft.world.chunk.listener.LoggingChunkStatusListener/]: Preparing spawn area: 17% [04May2024 07:44:04.374] [Worker-Main-2/INFO] [net.minecraft.world.chunk.listener.LoggingChunkStatusListener/]: Preparing spawn area: 17% [04May2024 07:44:05.170] [Worker-Main-2/INFO] [net.minecraft.world.chunk.listener.LoggingChunkStatusListener/]: Preparing spawn area: 17% [04May2024 07:44:05.449] [Worker-Main-2/INFO] [net.minecraft.world.chunk.listener.LoggingChunkStatusListener/]: Preparing spawn area: 17% [04May2024 07:44:06.004] [Worker-Main-2/INFO] [net.minecraft.world.chunk.listener.LoggingChunkStatusListener/]: Preparing spawn area: 18% [04May2024 07:44:06.391] [Worker-Main-2/INFO] [net.minecraft.world.chunk.listener.LoggingChunkStatusListener/]: Preparing spawn area: 18% [04May2024 07:44:06.870] [Worker-Main-2/INFO] [net.minecraft.world.chunk.listener.LoggingChunkStatusListener/]: Preparing spawn area: 19% [04May2024 07:44:07.686] [Worker-Main-2/INFO] [net.minecraft.world.chunk.listener.LoggingChunkStatusListener/]: Preparing spawn area: 19% [04May2024 07:44:07.935] [Worker-Main-2/INFO] [net.minecraft.world.chunk.listener.LoggingChunkStatusListener/]: Preparing spawn area: 20% [04May2024 07:44:08.410] [Worker-Main-2/INFO] [net.minecraft.world.chunk.listener.LoggingChunkStatusListener/]: Preparing spawn area: 20% [04May2024 07:44:08.882] [Worker-Main-2/INFO] [net.minecraft.world.chunk.listener.LoggingChunkStatusListener/]: Preparing spawn area: 21% [04May2024 07:44:09.490] [Worker-Main-2/INFO] [net.minecraft.world.chunk.listener.LoggingChunkStatusListener/]: Preparing spawn area: 21% [04May2024 07:44:09.874] [Worker-Main-2/INFO] [net.minecraft.world.chunk.listener.LoggingChunkStatusListener/]: Preparing spawn area: 21% [04May2024 07:44:10.483] [Worker-Main-2/INFO] [net.minecraft.world.chunk.listener.LoggingChunkStatusListener/]: Preparing spawn area: 22% [04May2024 07:44:10.990] [Worker-Main-2/INFO] [net.minecraft.world.chunk.listener.LoggingChunkStatusListener/]: Preparing spawn area: 22% [04May2024 07:44:11.368] [Worker-Main-2/INFO] [net.minecraft.world.chunk.listener.LoggingChunkStatusListener/]: Preparing spawn area: 22% [04May2024 07:44:11.874] [Worker-Main-2/INFO] [net.minecraft.world.chunk.listener.LoggingChunkStatusListener/]: Preparing spawn area: 23% [04May2024 07:44:12.382] [Worker-Main-2/INFO] [net.minecraft.world.chunk.listener.LoggingChunkStatusListener/]: Preparing spawn area: 23% [04May2024 07:44:12.894] [Worker-Main-2/INFO] [net.minecraft.world.chunk.listener.LoggingChunkStatusListener/]: Preparing spawn area: 23% [04May2024 07:44:13.416] [Worker-Main-2/INFO] [net.minecraft.world.chunk.listener.LoggingChunkStatusListener/]: Preparing spawn area: 24% [04May2024 07:44:13.869] [Worker-Main-2/INFO] [net.minecraft.world.chunk.listener.LoggingChunkStatusListener/]: Preparing spawn area: 24% [04May2024 07:44:14.510] [Worker-Main-2/INFO] [net.minecraft.world.chunk.listener.LoggingChunkStatusListener/]: Preparing spawn area: 24% [04May2024 07:44:14.979] [Worker-Main-2/INFO] [net.minecraft.world.chunk.listener.LoggingChunkStatusListener/]: Preparing spawn area: 25% [04May2024 07:44:15.494] [Worker-Main-2/INFO] [net.minecraft.world.chunk.listener.LoggingChunkStatusListener/]: Preparing spawn area: 25% [04May2024 07:44:16.286] [Worker-Main-2/INFO] [net.minecraft.world.chunk.listener.LoggingChunkStatusListener/]: Preparing spawn area: 25% [04May2024 07:44:16.391] [Worker-Main-2/INFO] [net.minecraft.world.chunk.listener.LoggingChunkStatusListener/]: Preparing spawn area: 26% [04May2024 07:44:16.656] [Netty Epoll Server IO #1/INFO] [net.minecraftforge.fml.server.ServerLifecycleHooks/SERVERHOOKS]: Disconnecting Player (server is still starting): Server is still starting! Please wait before reconnecting. [04May2024 07:44:16.887] [Worker-Main-2/INFO] [net.minecraft.world.chunk.listener.LoggingChunkStatusListener/]: Preparing spawn area: 26% [04May2024 07:44:17.377] [Worker-Main-2/INFO] [net.minecraft.world.chunk.listener.LoggingChunkStatusListener/]: Preparing spawn area: 26% [04May2024 07:44:17.973] [Worker-Main-2/INFO] [net.minecraft.world.chunk.listener.LoggingChunkStatusListener/]: Preparing spawn area: 27% [04May2024 07:44:18.380] [Worker-Main-2/INFO] [net.minecraft.world.chunk.listener.LoggingChunkStatusListener/]: Preparing spawn area: 27% [04May2024 07:44:18.879] [Worker-Main-2/INFO] [net.minecraft.world.chunk.listener.LoggingChunkStatusListener/]: Preparing spawn area: 27% [04May2024 07:44:19.380] [Worker-Main-2/INFO] [net.minecraft.world.chunk.listener.LoggingChunkStatusListener/]: Preparing spawn area: 27% [04May2024 07:44:19.907] [Worker-Main-2/INFO] [net.minecraft.world.chunk.listener.LoggingChunkStatusListener/]: Preparing spawn area: 27% [04May2024 07:44:20.367] [Worker-Main-2/INFO] [net.minecraft.world.chunk.listener.LoggingChunkStatusListener/]: Preparing spawn area: 28% [04May2024 07:44:20.912] [Worker-Main-2/INFO] [net.minecraft.world.chunk.listener.LoggingChunkStatusListener/]: Preparing spawn area: 29% [04May2024 07:44:21.480] [Worker-Main-2/INFO] [net.minecraft.world.chunk.listener.LoggingChunkStatusListener/]: Preparing spawn area: 29% [04May2024 07:44:21.874] [Worker-Main-2/INFO] [net.minecraft.world.chunk.listener.LoggingChunkStatusListener/]: Preparing spawn area: 30% [04May2024 07:44:22.388] [Worker-Main-2/INFO] [net.minecraft.world.chunk.listener.LoggingChunkStatusListener/]: Preparing spawn area: 30% [04May2024 07:44:22.993] [Worker-Main-2/INFO] [net.minecraft.world.chunk.listener.LoggingChunkStatusListener/]: Preparing spawn area: 30% [04May2024 07:44:23.757] [Worker-Main-2/INFO] [net.minecraft.world.chunk.listener.LoggingChunkStatusListener/]: Preparing spawn area: 31% [04May2024 07:44:23.867] [Worker-Main-2/INFO] [net.minecraft.world.chunk.listener.LoggingChunkStatusListener/]: Preparing spawn area: 31% [04May2024 07:44:24.372] [Worker-Main-2/INFO] [net.minecraft.world.chunk.listener.LoggingChunkStatusListener/]: Preparing spawn area: 31% [04May2024 07:44:24.890] [Worker-Main-2/INFO] [net.minecraft.world.chunk.listener.LoggingChunkStatusListener/]: Preparing spawn area: 31% [04May2024 07:44:25.368] [Worker-Main-2/INFO] [net.minecraft.world.chunk.listener.LoggingChunkStatusListener/]: Preparing spawn area: 32% [04May2024 07:44:25.869] [Worker-Main-2/INFO] [net.minecraft.world.chunk.listener.LoggingChunkStatusListener/]: Preparing spawn area: 33% [04May2024 07:44:26.610] [Worker-Main-2/INFO] [net.minecraft.world.chunk.listener.LoggingChunkStatusListener/]: Preparing spawn area: 33% [04May2024 07:44:26.881] [Worker-Main-2/INFO] [net.minecraft.world.chunk.listener.LoggingChunkStatusListener/]: Preparing spawn area: 33% [04May2024 07:44:27.402] [Worker-Main-2/INFO] [net.minecraft.world.chunk.listener.LoggingChunkStatusListener/]: Preparing spawn area: 33% [04May2024 07:44:27.870] [Worker-Main-2/INFO] [net.minecraft.world.chunk.listener.LoggingChunkStatusListener/]: Preparing spawn area: 34% [04May2024 07:44:28.392] [Worker-Main-2/INFO] [net.minecraft.world.chunk.listener.LoggingChunkStatusListener/]: Preparing spawn area: 34% [04May2024 07:44:28.899] [Worker-Main-2/INFO] [net.minecraft.world.chunk.listener.LoggingChunkStatusListener/]: Preparing spawn area: 35% [04May2024 07:44:29.385] [Worker-Main-2/INFO] [net.minecraft.world.chunk.listener.LoggingChunkStatusListener/]: Preparing spawn area: 36% [04May2024 07:44:29.867] [Worker-Main-2/INFO] [net.minecraft.world.chunk.listener.LoggingChunkStatusListener/]: Preparing spawn area: 36% [04May2024 07:44:30.371] [Worker-Main-2/INFO] [net.minecraft.world.chunk.listener.LoggingChunkStatusListener/]: Preparing spawn area: 36% [04May2024 07:44:31.121] [Worker-Main-2/INFO] [net.minecraft.world.chunk.listener.LoggingChunkStatusListener/]: Preparing spawn area: 37% [04May2024 07:44:31.368] [Worker-Main-2/INFO] [net.minecraft.world.chunk.listener.LoggingChunkStatusListener/]: Preparing spawn area: 37% [04May2024 07:44:31.967] [Worker-Main-2/INFO] [net.minecraft.world.chunk.listener.LoggingChunkStatusListener/]: Preparing spawn area: 37% [04May2024 07:44:32.374] [Worker-Main-2/INFO] [net.minecraft.world.chunk.listener.LoggingChunkStatusListener/]: Preparing spawn area: 37% [04May2024 07:44:32.869] [Worker-Main-2/INFO] [net.minecraft.world.chunk.listener.LoggingChunkStatusListener/]: Preparing spawn area: 38% [04May2024 07:44:33.517] [Worker-Main-2/INFO] [net.minecraft.world.chunk.listener.LoggingChunkStatusListener/]: Preparing spawn area: 38% [04May2024 07:44:33.972] [Worker-Main-2/INFO] [net.minecraft.world.chunk.listener.LoggingChunkStatusListener/]: Preparing spawn area: 38% [04May2024 07:44:34.525] [Worker-Main-2/INFO] [net.minecraft.world.chunk.listener.LoggingChunkStatusListener/]: Preparing spawn area: 39% [04May2024 07:44:35.271] [Worker-Main-2/INFO] [net.minecraft.world.chunk.listener.LoggingChunkStatusListener/]: Preparing spawn area: 39% [04May2024 07:44:35.561] [Worker-Main-2/INFO] [net.minecraft.world.chunk.listener.LoggingChunkStatusListener/]: Preparing spawn area: 39% [04May2024 07:44:35.957] [Worker-Main-2/INFO] [net.minecraft.world.chunk.listener.LoggingChunkStatusListener/]: Preparing spawn area: 40% [04May2024 07:44:36.385] [Worker-Main-2/INFO] [net.minecraft.world.chunk.listener.LoggingChunkStatusListener/]: Preparing spawn area: 40% [04May2024 07:44:37.011] [Worker-Main-2/INFO] [net.minecraft.world.chunk.listener.LoggingChunkStatusListener/]: Preparing spawn area: 41% [04May2024 07:44:37.486] [Worker-Main-2/INFO] [net.minecraft.world.chunk.listener.LoggingChunkStatusListener/]: Preparing spawn area: 41% [04May2024 07:44:37.895] [Worker-Main-2/INFO] [net.minecraft.world.chunk.listener.LoggingChunkStatusListener/]: Preparing spawn area: 42% [04May2024 07:44:38.377] [Worker-Main-2/INFO] [net.minecraft.world.chunk.listener.LoggingChunkStatusListener/]: Preparing spawn area: 42% [04May2024 07:44:38.908] [Worker-Main-2/INFO] [net.minecraft.world.chunk.listener.LoggingChunkStatusListener/]: Preparing spawn area: 42% [04May2024 07:44:39.380] [Worker-Main-2/INFO] [net.minecraft.world.chunk.listener.LoggingChunkStatusListener/]: Preparing spawn area: 42% [04May2024 07:44:39.896] [Worker-Main-2/INFO] [net.minecraft.world.chunk.listener.LoggingChunkStatusListener/]: Preparing spawn area: 42% [04May2024 07:44:40.408] [Worker-Main-2/INFO] [net.minecraft.world.chunk.listener.LoggingChunkStatusListener/]: Preparing spawn area: 42% [04May2024 07:44:40.887] [Worker-Main-2/INFO] [net.minecraft.world.chunk.listener.LoggingChunkStatusListener/]: Preparing spawn area: 43% [04May2024 07:44:41.388] [Worker-Main-2/INFO] [net.minecraft.world.chunk.listener.LoggingChunkStatusListener/]: Preparing spawn area: 43% [04May2024 07:44:41.872] [Worker-Main-2/INFO] [net.minecraft.world.chunk.listener.LoggingChunkStatusListener/]: Preparing spawn area: 45% [04May2024 07:44:42.386] [Worker-Main-2/INFO] [net.minecraft.world.chunk.listener.LoggingChunkStatusListener/]: Preparing spawn area: 46% [04May2024 07:44:43.017] [Worker-Main-2/INFO] [net.minecraft.world.chunk.listener.LoggingChunkStatusListener/]: Preparing spawn area: 46% [04May2024 07:44:43.403] [Worker-Main-2/INFO] [net.minecraft.world.chunk.listener.LoggingChunkStatusListener/]: Preparing spawn area: 46% [04May2024 07:44:43.867] [Worker-Main-2/INFO] [net.minecraft.world.chunk.listener.LoggingChunkStatusListener/]: Preparing spawn area: 47% [04May2024 07:44:44.377] [Worker-Main-2/INFO] [net.minecraft.world.chunk.listener.LoggingChunkStatusListener/]: Preparing spawn area: 48% [04May2024 07:44:44.991] [Worker-Main-2/INFO] [net.minecraft.world.chunk.listener.LoggingChunkStatusListener/]: Preparing spawn area: 48% [04May2024 07:44:45.376] [Worker-Main-2/INFO] [net.minecraft.world.chunk.listener.LoggingChunkStatusListener/]: Preparing spawn area: 48% [04May2024 07:44:45.966] [Worker-Main-2/INFO] [net.minecraft.world.chunk.listener.LoggingChunkStatusListener/]: Preparing spawn area: 48% [04May2024 07:44:46.697] [Worker-Main-2/INFO] [net.minecraft.world.chunk.listener.LoggingChunkStatusListener/]: Preparing spawn area: 49% [04May2024 07:44:46.891] [Worker-Main-2/INFO] [net.minecraft.world.chunk.listener.LoggingChunkStatusListener/]: Preparing spawn area: 49% [04May2024 07:44:47.375] [Worker-Main-2/INFO] [net.minecraft.world.chunk.listener.LoggingChunkStatusListener/]: Preparing spawn area: 50% [04May2024 07:44:47.868] [Worker-Main-2/INFO] [net.minecraft.world.chunk.listener.LoggingChunkStatusListener/]: Preparing spawn area: 51% [04May2024 07:44:48.402] [Worker-Main-2/INFO] [net.minecraft.world.chunk.listener.LoggingChunkStatusListener/]: Preparing spawn area: 51% [04May2024 07:44:48.907] [Worker-Main-2/INFO] [net.minecraft.world.chunk.listener.LoggingChunkStatusListener/]: Preparing spawn area: 52% [04May2024 07:44:49.374] [Worker-Main-2/INFO] [net.minecraft.world.chunk.listener.LoggingChunkStatusListener/]: Preparing spawn area: 52% [04May2024 07:44:50.061] [Worker-Main-2/INFO] [net.minecraft.world.chunk.listener.LoggingChunkStatusListener/]: Preparing spawn area: 52% [04May2024 07:44:50.477] [Worker-Main-2/INFO] [net.minecraft.world.chunk.listener.LoggingChunkStatusListener/]: Preparing spawn area: 53% [04May2024 07:44:50.919] [Worker-Main-2/INFO] [net.minecraft.world.chunk.listener.LoggingChunkStatusListener/]: Preparing spawn area: 53% [04May2024 07:44:51.380] [Worker-Main-2/INFO] [net.minecraft.world.chunk.listener.LoggingChunkStatusListener/]: Preparing spawn area: 54% [04May2024 07:44:51.868] [Worker-Main-2/INFO] [net.minecraft.world.chunk.listener.LoggingChunkStatusListener/]: Preparing spawn area: 54% [04May2024 07:44:52.405] [Worker-Main-2/INFO] [net.minecraft.world.chunk.listener.LoggingChunkStatusListener/]: Preparing spawn area: 55% [04May2024 07:44:52.867] [Worker-Main-2/INFO] [net.minecraft.world.chunk.listener.LoggingChunkStatusListener/]: Preparing spawn area: 57% [04May2024 07:44:53.373] [Worker-Main-2/INFO] [net.minecraft.world.chunk.listener.LoggingChunkStatusListener/]: Preparing spawn area: 57% [04May2024 07:44:53.872] [Worker-Main-2/INFO] [net.minecraft.world.chunk.listener.LoggingChunkStatusListener/]: Preparing spawn area: 57% [04May2024 07:44:54.410] [Worker-Main-2/INFO] [net.minecraft.world.chunk.listener.LoggingChunkStatusListener/]: Preparing spawn area: 57% [04May2024 07:44:54.916] [Worker-Main-2/INFO] [net.minecraft.world.chunk.listener.LoggingChunkStatusListener/]: Preparing spawn area: 57% [04May2024 07:44:55.368] [Worker-Main-2/INFO] [net.minecraft.world.chunk.listener.LoggingChunkStatusListener/]: Preparing spawn area: 58% [04May2024 07:44:55.973] [Worker-Main-2/INFO] [net.minecraft.world.chunk.listener.LoggingChunkStatusListener/]: Preparing spawn area: 58% [04May2024 07:44:56.399] [Worker-Main-2/INFO] [net.minecraft.world.chunk.listener.LoggingChunkStatusListener/]: Preparing spawn area: 58% [04May2024 07:44:56.888] [Worker-Main-2/INFO] [net.minecraft.world.chunk.listener.LoggingChunkStatusListener/]: Preparing spawn area: 59% [04May2024 07:44:57.904] [Worker-Main-2/INFO] [net.minecraft.world.chunk.listener.LoggingChunkStatusListener/]: Preparing spawn area: 59% [04May2024 07:44:57.905] [Worker-Main-2/INFO] [net.minecraft.world.chunk.listener.LoggingChunkStatusListener/]: Preparing spawn area: 59% [04May2024 07:44:58.785] [Worker-Main-2/INFO] [net.minecraft.world.chunk.listener.LoggingChunkStatusListener/]: Preparing spawn area: 59% [04May2024 07:44:59.105] [Worker-Main-2/INFO] [net.minecraft.world.chunk.listener.LoggingChunkStatusListener/]: Preparing spawn area: 59% [04May2024 07:44:59.372] [Worker-Main-2/INFO] [net.minecraft.world.chunk.listener.LoggingChunkStatusListener/]: Preparing spawn area: 60% [04May2024 07:44:59.867] [Worker-Main-2/INFO] [net.minecraft.world.chunk.listener.LoggingChunkStatusListener/]: Preparing spawn area: 60% [04May2024 07:45:00.721] [Worker-Main-2/INFO] [net.minecraft.world.chunk.listener.LoggingChunkStatusListener/]: Preparing spawn area: 60% [04May2024 07:45:01.479] [Worker-Main-2/INFO] [net.minecraft.world.chunk.listener.LoggingChunkStatusListener/]: Preparing spawn area: 61% [04May2024 07:45:01.558] [Worker-Main-2/INFO] [net.minecraft.world.chunk.listener.LoggingChunkStatusListener/]: Preparing spawn area: 61% [04May2024 07:45:01.961] [Worker-Main-2/INFO] [net.minecraft.world.chunk.listener.LoggingChunkStatusListener/]: Preparing spawn area: 62% [04May2024 07:45:02.433] [Worker-Main-2/INFO] [net.minecraft.world.chunk.listener.LoggingChunkStatusListener/]: Preparing spawn area: 63% [04May2024 07:45:02.897] [Worker-Main-2/INFO] [net.minecraft.world.chunk.listener.LoggingChunkStatusListener/]: Preparing spawn area: 63% [04May2024 07:45:03.658] [Worker-Main-2/INFO] [net.minecraft.world.chunk.listener.LoggingChunkStatusListener/]: Preparing spawn area: 63% [04May2024 07:45:03.970] [Worker-Main-2/INFO] [net.minecraft.world.chunk.listener.LoggingChunkStatusListener/]: Preparing spawn area: 63% [04May2024 07:45:05.600] [Worker-Main-2/INFO] [net.minecraft.world.chunk.listener.LoggingChunkStatusListener/]: Preparing spawn area: 64% [04May2024 07:45:05.618] [Worker-Main-2/INFO] [net.minecraft.world.chunk.listener.LoggingChunkStatusListener/]: Preparing spawn area: 64% [04May2024 07:45:05.624] [Worker-Main-2/INFO] [net.minecraft.world.chunk.listener.LoggingChunkStatusListener/]: Preparing spawn area: 64% [04May2024 07:45:05.871] [Worker-Main-2/INFO] [net.minecraft.world.chunk.listener.LoggingChunkStatusListener/]: Preparing spawn area: 64% [04May2024 07:45:06.368] [Worker-Main-2/INFO] [net.minecraft.world.chunk.listener.LoggingChunkStatusListener/]: Preparing spawn area: 65% [04May2024 07:45:06.972] [Worker-Main-2/INFO] [net.minecraft.world.chunk.listener.LoggingChunkStatusListener/]: Preparing spawn area: 65% [04May2024 07:45:07.513] [Worker-Main-2/INFO] [net.minecraft.world.chunk.listener.LoggingChunkStatusListener/]: Preparing spawn area: 65% [04May2024 07:45:07.871] [Worker-Main-2/INFO] [net.minecraft.world.chunk.listener.LoggingChunkStatusListener/]: Preparing spawn area: 66% [04May2024 07:45:08.563] [Worker-Main-2/INFO] [net.minecraft.world.chunk.listener.LoggingChunkStatusListener/]: Preparing spawn area: 66% [04May2024 07:45:08.870] [Worker-Main-2/INFO] [net.minecraft.world.chunk.listener.LoggingChunkStatusListener/]: Preparing spawn area: 67% [04May2024 07:45:09.377] [Worker-Main-2/INFO] [net.minecraft.world.chunk.listener.LoggingChunkStatusListener/]: Preparing spawn area: 68% [04May2024 07:45:09.870] [Worker-Main-2/INFO] [net.minecraft.world.chunk.listener.LoggingChunkStatusListener/]: Preparing spawn area: 68% [04May2024 07:45:10.483] [Worker-Main-2/INFO] [net.minecraft.world.chunk.listener.LoggingChunkStatusListener/]: Preparing spawn area: 68% [04May2024 07:45:10.881] [Worker-Main-2/INFO] [net.minecraft.world.chunk.listener.LoggingChunkStatusListener/]: Preparing spawn area: 68% [04May2024 07:45:11.397] [Worker-Main-2/INFO] [net.minecraft.world.chunk.listener.LoggingChunkStatusListener/]: Preparing spawn area: 68% [04May2024 07:45:11.983] [Worker-Main-2/INFO] [net.minecraft.world.chunk.listener.LoggingChunkStatusListener/]: Preparing spawn area: 70% [04May2024 07:45:12.372] [Worker-Main-2/INFO] [net.minecraft.world.chunk.listener.LoggingChunkStatusListener/]: Preparing spawn area: 71% [04May2024 07:45:12.887] [Worker-Main-2/INFO] [net.minecraft.world.chunk.listener.LoggingChunkStatusListener/]: Preparing spawn area: 71% [04May2024 07:45:13.426] [Worker-Main-2/INFO] [net.minecraft.world.chunk.listener.LoggingChunkStatusListener/]: Preparing spawn area: 72% [04May2024 07:45:13.919] [Worker-Main-2/INFO] [net.minecraft.world.chunk.listener.LoggingChunkStatusListener/]: Preparing spawn area: 72% [04May2024 07:45:14.369] [Worker-Main-2/INFO] [net.minecraft.world.chunk.listener.LoggingChunkStatusListener/]: Preparing spawn area: 73% [04May2024 07:45:15.004] [Worker-Main-2/INFO] [net.minecraft.world.chunk.listener.LoggingChunkStatusListener/]: Preparing spawn area: 73% [04May2024 07:45:15.391] [Worker-Main-2/INFO] [net.minecraft.world.chunk.listener.LoggingChunkStatusListener/]: Preparing spawn area: 73% [04May2024 07:45:16.292] [Worker-Main-2/INFO] [net.minecraft.world.chunk.listener.LoggingChunkStatusListener/]: Preparing spawn area: 73% [04May2024 07:45:16.716] [Worker-Main-2/INFO] [net.minecraft.world.chunk.listener.LoggingChunkStatusListener/]: Preparing spawn area: 73% [04May2024 07:45:17.002] [Worker-Main-2/INFO] [net.minecraft.world.chunk.listener.LoggingChunkStatusListener/]: Preparing spawn area: 73% [04May2024 07:45:17.369] [Worker-Main-2/INFO] [net.minecraft.world.chunk.listener.LoggingChunkStatusListener/]: Preparing spawn area: 75% [04May2024 07:45:18.001] [Worker-Main-2/INFO] [net.minecraft.world.chunk.listener.LoggingChunkStatusListener/]: Preparing spawn area: 75% [04May2024 07:45:18.419] [Worker-Main-2/INFO] [net.minecraft.world.chunk.listener.LoggingChunkStatusListener/]: Preparing spawn area: 75% [04May2024 07:45:18.982] [Worker-Main-2/INFO] [net.minecraft.world.chunk.listener.LoggingChunkStatusListener/]: Preparing spawn area: 76% [04May2024 07:45:19.407] [Worker-Main-2/INFO] [net.minecraft.world.chunk.listener.LoggingChunkStatusListener/]: Preparing spawn area: 77% [04May2024 07:45:19.882] [Worker-Main-2/INFO] [net.minecraft.world.chunk.listener.LoggingChunkStatusListener/]: Preparing spawn area: 78% [04May2024 07:45:20.374] [Worker-Main-2/INFO] [net.minecraft.world.chunk.listener.LoggingChunkStatusListener/]: Preparing spawn area: 78% [04May2024 07:45:20.984] [Worker-Main-2/INFO] [net.minecraft.world.chunk.listener.LoggingChunkStatusListener/]: Preparing spawn area: 78% [04May2024 07:45:21.901] [Worker-Main-2/INFO] [net.minecraft.world.chunk.listener.LoggingChunkStatusListener/]: Preparing spawn area: 79% [04May2024 07:45:21.909] [Worker-Main-2/INFO] [net.minecraft.world.chunk.listener.LoggingChunkStatusListener/]: Preparing spawn area: 79% [04May2024 07:45:22.389] [Worker-Main-2/INFO] [net.minecraft.world.chunk.listener.LoggingChunkStatusListener/]: Preparing spawn area: 79% [04May2024 07:45:22.884] [Worker-Main-2/INFO] [net.minecraft.world.chunk.listener.LoggingChunkStatusListener/]: Preparing spawn area: 81% [04May2024 07:45:23.374] [Worker-Main-2/INFO] [net.minecraft.world.chunk.listener.LoggingChunkStatusListener/]: Preparing spawn area: 81% [04May2024 07:45:23.868] [Worker-Main-2/INFO] [net.minecraft.world.chunk.listener.LoggingChunkStatusListener/]: Preparing spawn area: 81% [04May2024 07:45:24.396] [Worker-Main-2/INFO] [net.minecraft.world.chunk.listener.LoggingChunkStatusListener/]: Preparing spawn area: 82% [04May2024 07:45:25.001] [Worker-Main-2/INFO] [net.minecraft.world.chunk.listener.LoggingChunkStatusListener/]: Preparing spawn area: 82% [04May2024 07:45:25.372] [Worker-Main-2/INFO] [net.minecraft.world.chunk.listener.LoggingChunkStatusListener/]: Preparing spawn area: 83% [04May2024 07:45:25.927] [Worker-Main-2/INFO] [net.minecraft.world.chunk.listener.LoggingChunkStatusListener/]: Preparing spawn area: 83% [04May2024 07:45:26.370] [Worker-Main-2/INFO] [net.minecraft.world.chunk.listener.LoggingChunkStatusListener/]: Preparing spawn area: 84% [04May2024 07:45:26.867] [Worker-Main-2/INFO] [net.minecraft.world.chunk.listener.LoggingChunkStatusListener/]: Preparing spawn area: 84% [04May2024 07:45:27.369] [Worker-Main-2/INFO] [net.minecraft.world.chunk.listener.LoggingChunkStatusListener/]: Preparing spawn area: 84% [04May2024 07:45:27.983] [Worker-Main-2/INFO] [net.minecraft.world.chunk.listener.LoggingChunkStatusListener/]: Preparing spawn area: 85% [04May2024 07:45:28.376] [Worker-Main-2/INFO] [net.minecraft.world.chunk.listener.LoggingChunkStatusListener/]: Preparing spawn area: 87% [04May2024 07:45:28.966] [Worker-Main-2/INFO] [net.minecraft.world.chunk.listener.LoggingChunkStatusListener/]: Preparing spawn area: 87% [04May2024 07:45:29.376] [Worker-Main-2/INFO] [net.minecraft.world.chunk.listener.LoggingChunkStatusListener/]: Preparing spawn area: 88% [04May2024 07:45:29.867] [Worker-Main-2/INFO] [net.minecraft.world.chunk.listener.LoggingChunkStatusListener/]: Preparing spawn area: 88% [04May2024 07:45:30.368] [Worker-Main-2/INFO] [net.minecraft.world.chunk.listener.LoggingChunkStatusListener/]: Preparing spawn area: 89% [04May2024 07:45:30.879] [Worker-Main-2/INFO] [net.minecraft.world.chunk.listener.LoggingChunkStatusListener/]: Preparing spawn area: 89% [04May2024 07:45:31.368] [Worker-Main-2/INFO] [net.minecraft.world.chunk.listener.LoggingChunkStatusListener/]: Preparing spawn area: 89% [04May2024 07:45:31.993] [Worker-Main-2/INFO] [net.minecraft.world.chunk.listener.LoggingChunkStatusListener/]: Preparing spawn area: 89% [04May2024 07:45:32.409] [Worker-Main-2/INFO] [net.minecraft.world.chunk.listener.LoggingChunkStatusListener/]: Preparing spawn area: 90% [04May2024 07:45:32.895] [Worker-Main-2/INFO] [net.minecraft.world.chunk.listener.LoggingChunkStatusListener/]: Preparing spawn area: 90% [04May2024 07:45:33.421] [Worker-Main-2/INFO] [net.minecraft.world.chunk.listener.LoggingChunkStatusListener/]: Preparing spawn area: 91% [04May2024 07:45:33.989] [Worker-Main-2/INFO] [net.minecraft.world.chunk.listener.LoggingChunkStatusListener/]: Preparing spawn area: 92% [04May2024 07:45:34.418] [Worker-Main-2/INFO] [net.minecraft.world.chunk.listener.LoggingChunkStatusListener/]: Preparing spawn area: 92% [04May2024 07:45:34.884] [Worker-Main-2/INFO] [net.minecraft.world.chunk.listener.LoggingChunkStatusListener/]: Preparing spawn area: 94% [04May2024 07:45:35.381] [Worker-Main-2/INFO] [net.minecraft.world.chunk.listener.LoggingChunkStatusListener/]: Preparing spawn area: 94% [04May2024 07:45:35.877] [Worker-Main-2/INFO] [net.minecraft.world.chunk.listener.LoggingChunkStatusListener/]: Preparing spawn area: 94% [04May2024 07:45:36.817] [Worker-Main-2/INFO] [net.minecraft.world.chunk.listener.LoggingChunkStatusListener/]: Preparing spawn area: 94% [04May2024 07:45:37.015] [Worker-Main-2/INFO] [net.minecraft.world.chunk.listener.LoggingChunkStatusListener/]: Preparing spawn area: 94% [04May2024 07:45:37.509] [Worker-Main-2/INFO] [net.minecraft.world.chunk.listener.LoggingChunkStatusListener/]: Preparing spawn area: 94% [04May2024 07:45:37.879] [Worker-Main-2/INFO] [net.minecraft.world.chunk.listener.LoggingChunkStatusListener/]: Preparing spawn area: 94% [04May2024 07:45:38.368] [Worker-Main-2/INFO] [net.minecraft.world.chunk.listener.LoggingChunkStatusListener/]: Preparing spawn area: 96% [04May2024 07:45:38.880] [Worker-Main-2/INFO] [net.minecraft.world.chunk.listener.LoggingChunkStatusListener/]: Preparing spawn area: 96% [04May2024 07:45:39.420] [Worker-Main-2/INFO] [net.minecraft.world.chunk.listener.LoggingChunkStatusListener/]: Preparing spawn area: 96% [04May2024 07:45:39.784] [Server thread/INFO] [net.minecraft.world.chunk.listener.LoggingChunkStatusListener/]: Time elapsed: 147418 ms [04May2024 07:45:39.790] [Server thread/INFO] [net.minecraft.server.dedicated.DedicatedServer/]: Done (179.389s)! For help, type "help" [04May2024 07:45:50.093] [Server thread/WARN] [net.minecraft.server.MinecraftServer/]: Can't keep up! Is the server overloaded? Running 10170ms or 203 ticks behind [04May2024 07:45:50.978] [User Authenticator #1/INFO] [net.minecraft.network.login.ServerLoginNetHandler/]: UUID of player ImAcidic is 413cbc21-6365-4d04-98df-d2bef5e5e430 [04May2024 07:45:56.765] [Server thread/INFO] [net.minecraftforge.common.AdvancementLoadFix/]: Using new advancement loading for net.minecraft.advancements.PlayerAdvancements@7f1ec744 [04May2024 07:45:56.879] [Server thread/INFO] [net.minecraft.server.management.PlayerList/]: ImAcidic[/86.158.192.2:54962] logged in with entity id 208 at (-250.5, 85.0, -155.5) [04May2024 07:45:57.184] [Server thread/INFO] [net.minecraft.server.dedicated.DedicatedServer/]: ImAcidic joined the game [04May2024 07:45:59.078] [Server thread/ERROR] [net.minecraftforge.eventbus.EventBus/EVENTBUS]: Exception caught during firing event: 'void net.minecraft.entity.player.PlayerAbilities.func_195931_a(float)'     Index: 4     Listeners:         0: NORMAL         1: ASM: com.ulto.marvel.procedures.MjolnirGiveTagProcedure@5051887a onPlayerTick(Lnet/minecraftforge/event/TickEvent$PlayerTickEvent;)V         2: ASM: class com.ulto.marvel.procedures.HeartShapedHerbEffectsProcedure$GlobalTrigger onPlayerTick(Lnet/minecraftforge/event/TickEvent$PlayerTickEvent;)V         3: ASM: class com.ulto.marvel.procedures.SSSGiveProcedure$GlobalTrigger onPlayerTick(Lnet/minecraftforge/event/TickEvent$PlayerTickEvent;)V         4: ASM: class com.ulto.marvel.procedures.Mark19FlightProcedure$GlobalTrigger onPlayerTick(Lnet/minecraftforge/event/TickEvent$PlayerTickEvent;)V         5: ASM: class com.ulto.marvel.procedures.FlightProcedure$GlobalTrigger onPlayerTick(Lnet/minecraftforge/event/TickEvent$PlayerTickEvent;)V         6: ASM: class com.ulto.marvel.procedures.MutantCheckProcedure$GlobalTrigger onPlayerTick(Lnet/minecraftforge/event/TickEvent$PlayerTickEvent;)V         7: ASM: class com.ulto.marvel.procedures.MutantEntityTickProcedure$GlobalTrigger onPlayerTick(Lnet/minecraftforge/event/TickEvent$PlayerTickEvent;)V         8: ASM: class com.ulto.marvel.procedures.AntmanSizeDamageProcedure$GlobalTrigger onPlayerTick(Lnet/minecraftforge/event/TickEvent$PlayerTickEvent;)V         9: ASM: class com.ulto.marvel.procedures.RemoveAntmanStuffProcedure$GlobalTrigger onPlayerTick(Lnet/minecraftforge/event/TickEvent$PlayerTickEvent;)V         10: ASM: class com.ulto.marvel.procedures.RadioactivePowersProcedure$GlobalTrigger onPlayerTick(Lnet/minecraftforge/event/TickEvent$PlayerTickEvent;)V         11: ASM: class com.ulto.marvel.procedures.IronManFlightParticlesProcedure$GlobalTrigger onPlayerTick(Lnet/minecraftforge/event/TickEvent$PlayerTickEvent;)V         12: ASM: class com.ulto.marvel.procedures.TemporaryWebTickProcedure$GlobalTrigger onPlayerTick(Lnet/minecraftforge/event/TickEvent$PlayerTickEvent;)V         13: ASM: class com.ulto.marvel.procedures.MarkNumberUpdaterProcedure$GlobalTrigger onPlayerTick(Lnet/minecraftforge/event/TickEvent$PlayerTickEvent;)V         14: ASM: class com.ulto.marvel.procedures.RemoveIronManWeaponsProcedure$GlobalTrigger onPlayerTick(Lnet/minecraftforge/event/TickEvent$PlayerTickEvent;)V java.lang.NoSuchMethodError: 'void net.minecraft.entity.player.PlayerAbilities.func_195931_a(float)'     at com.ulto.marvel.procedures.Mark19FlightProcedure.executeProcedure(Mark19FlightProcedure.java:53)     at com.ulto.marvel.procedures.Mark19FlightProcedure$GlobalTrigger.onPlayerTick(Mark19FlightProcedure.java:35)     at net.minecraftforge.eventbus.ASMEventHandler_62_GlobalTrigger_onPlayerTick_PlayerTickEvent.invoke(.dynamic)     at net.minecraftforge.eventbus.ASMEventHandler.invoke(ASMEventHandler.java:85)     at net.minecraftforge.eventbus.EventBus.post(EventBus.java:302)     at net.minecraftforge.eventbus.EventBus.post(EventBus.java:283)     at net.minecraftforge.fml.hooks.BasicEventHooks.onPlayerPostTick(BasicEventHooks.java:76)     at net.minecraft.entity.player.PlayerEntity.func_70071_h_(PlayerEntity.java:266)     at net.minecraft.entity.player.ServerPlayerEntity.func_71127_g(ServerPlayerEntity.java:404)     at net.minecraft.network.play.ServerPlayNetHandler.func_73660_a(ServerPlayNetHandler.java:207)     at net.minecraft.network.NetworkManager.func_74428_b(NetworkManager.java:226)     at net.minecraft.network.NetworkSystem.func_151269_c(NetworkSystem.java:134)     at net.minecraft.server.MinecraftServer.func_71190_q(MinecraftServer.java:865)     at net.minecraft.server.dedicated.DedicatedServer.func_71190_q(DedicatedServer.java:291)     at net.minecraft.server.MinecraftServer.func_71217_p(MinecraftServer.java:787)     at net.minecraft.server.MinecraftServer.func_240802_v_(MinecraftServer.java:642)     at net.minecraft.server.MinecraftServer.func_240783_a_(MinecraftServer.java:232)     at java.base/java.lang.Thread.run(Thread.java:829) [04May2024 07:45:59.181] [Server thread/FATAL] [net.minecraftforge.common.ForgeMod/]: Preparing crash report with UUID e36e9d5a-7cf8-48ba-af32-ba694530bfae [04May2024 07:45:59.191] [Server thread/WARN] [net.minecraft.network.NetworkSystem/]: Failed to handle packet for /86.158.192.2:54962 net.minecraft.crash.ReportedException: Ticking player     at net.minecraft.entity.player.ServerPlayerEntity.func_71127_g(ServerPlayerEntity.java:467) ~[?:?]     at net.minecraft.network.play.ServerPlayNetHandler.func_73660_a(ServerPlayNetHandler.java:207) ~[?:?]     at net.minecraft.network.NetworkManager.func_74428_b(NetworkManager.java:226) ~[?:?]     at net.minecraft.network.NetworkSystem.func_151269_c(NetworkSystem.java:134) ~[?:?]     at net.minecraft.server.MinecraftServer.func_71190_q(MinecraftServer.java:865) ~[?:?]     at net.minecraft.server.dedicated.DedicatedServer.func_71190_q(DedicatedServer.java:291) ~[?:?]     at net.minecraft.server.MinecraftServer.func_71217_p(MinecraftServer.java:787) ~[?:?]     at net.minecraft.server.MinecraftServer.func_240802_v_(MinecraftServer.java:642) ~[?:?]     at net.minecraft.server.MinecraftServer.func_240783_a_(MinecraftServer.java:232) ~[?:?]     at java.lang.Thread.run(Thread.java:829) [?:?] Caused by: java.lang.NoSuchMethodError: 'void net.minecraft.entity.player.PlayerAbilities.func_195931_a(float)'     at com.ulto.marvel.procedures.Mark19FlightProcedure.executeProcedure(Mark19FlightProcedure.java:53) ~[marvel:?]     at com.ulto.marvel.procedures.Mark19FlightProcedure$GlobalTrigger.onPlayerTick(Mark19FlightProcedure.java:35) ~[marvel:?]     at net.minecraftforge.eventbus.ASMEventHandler_62_GlobalTrigger_onPlayerTick_PlayerTickEvent.invoke(.dynamic) ~[?:?]     at net.minecraftforge.eventbus.ASMEventHandler.invoke(ASMEventHandler.java:85) ~[eventbus-4.0.0.jar:?]     at net.minecraftforge.eventbus.EventBus.post(EventBus.java:302) ~[eventbus-4.0.0.jar:?]     at net.minecraftforge.eventbus.EventBus.post(EventBus.java:283) ~[eventbus-4.0.0.jar:?]     at net.minecraftforge.fml.hooks.BasicEventHooks.onPlayerPostTick(BasicEventHooks.java:76) ~[forge:?]     at net.minecraft.entity.player.PlayerEntity.func_70071_h_(PlayerEntity.java:266) ~[?:?]     at net.minecraft.entity.player.ServerPlayerEntity.func_71127_g(ServerPlayerEntity.java:404) ~[?:?]     ... 9 more [04May2024 07:46:00.679] [Server thread/ERROR] [net.minecraftforge.eventbus.EventBus/EVENTBUS]: Exception caught during firing event: 'void net.minecraft.entity.player.PlayerAbilities.func_195931_a(float)'     Index: 4     Listeners:         0: NORMAL         1: ASM: com.ulto.marvel.procedures.MjolnirGiveTagProcedure@5051887a onPlayerTick(Lnet/minecraftforge/event/TickEvent$PlayerTickEvent;)V         2: ASM: class com.ulto.marvel.procedures.HeartShapedHerbEffectsProcedure$GlobalTrigger onPlayerTick(Lnet/minecraftforge/event/TickEvent$PlayerTickEvent;)V         3: ASM: class com.ulto.marvel.procedures.SSSGiveProcedure$GlobalTrigger onPlayerTick(Lnet/minecraftforge/event/TickEvent$PlayerTickEvent;)V         4: ASM: class com.ulto.marvel.procedures.Mark19FlightProcedure$GlobalTrigger onPlayerTick(Lnet/minecraftforge/event/TickEvent$PlayerTickEvent;)V         5: ASM: class com.ulto.marvel.procedures.FlightProcedure$GlobalTrigger onPlayerTick(Lnet/minecraftforge/event/TickEvent$PlayerTickEvent;)V         6: ASM: class com.ulto.marvel.procedures.MutantCheckProcedure$GlobalTrigger onPlayerTick(Lnet/minecraftforge/event/TickEvent$PlayerTickEvent;)V         7: ASM: class com.ulto.marvel.procedures.MutantEntityTickProcedure$GlobalTrigger onPlayerTick(Lnet/minecraftforge/event/TickEvent$PlayerTickEvent;)V         8: ASM: class com.ulto.marvel.procedures.AntmanSizeDamageProcedure$GlobalTrigger onPlayerTick(Lnet/minecraftforge/event/TickEvent$PlayerTickEvent;)V         9: ASM: class com.ulto.marvel.procedures.RemoveAntmanStuffProcedure$GlobalTrigger onPlayerTick(Lnet/minecraftforge/event/TickEvent$PlayerTickEvent;)V         10: ASM: class com.ulto.marvel.procedures.RadioactivePowersProcedure$GlobalTrigger onPlayerTick(Lnet/minecraftforge/event/TickEvent$PlayerTickEvent;)V         11: ASM: class com.ulto.marvel.procedures.IronManFlightParticlesProcedure$GlobalTrigger onPlayerTick(Lnet/minecraftforge/event/TickEvent$PlayerTickEvent;)V         12: ASM: class com.ulto.marvel.procedures.TemporaryWebTickProcedure$GlobalTrigger onPlayerTick(Lnet/minecraftforge/event/TickEvent$PlayerTickEvent;)V         13: ASM: class com.ulto.marvel.procedures.MarkNumberUpdaterProcedure$GlobalTrigger onPlayerTick(Lnet/minecraftforge/event/TickEvent$PlayerTickEvent;)V         14: ASM: class com.ulto.marvel.procedures.RemoveIronManWeaponsProcedure$GlobalTrigger onPlayerTick(Lnet/minecraftforge/event/TickEvent$PlayerTickEvent;)V java.lang.NoSuchMethodError: 'void net.minecraft.entity.player.PlayerAbilities.func_195931_a(float)'     at com.ulto.marvel.procedures.Mark19FlightProcedure.executeProcedure(Mark19FlightProcedure.java:53)     at com.ulto.marvel.procedures.Mark19FlightProcedure$GlobalTrigger.onPlayerTick(Mark19FlightProcedure.java:35)     at net.minecraftforge.eventbus.ASMEventHandler_62_GlobalTrigger_onPlayerTick_PlayerTickEvent.invoke(.dynamic)     at net.minecraftforge.eventbus.ASMEventHandler.invoke(ASMEventHandler.java:85)     at net.minecraftforge.eventbus.EventBus.post(EventBus.java:302)     at net.minecraftforge.eventbus.EventBus.post(EventBus.java:283)     at net.minecraftforge.fml.hooks.BasicEventHooks.onPlayerPostTick(BasicEventHooks.java:76)     at net.minecraft.entity.player.PlayerEntity.func_70071_h_(PlayerEntity.java:266)     at net.minecraft.entity.player.ServerPlayerEntity.func_71127_g(ServerPlayerEntity.java:404)     at net.minecraft.network.play.ServerPlayNetHandler.func_73660_a(ServerPlayNetHandler.java:207)     at net.minecraft.network.NetworkManager.func_74428_b(NetworkManager.java:226)     at net.minecraft.network.NetworkSystem.func_151269_c(NetworkSystem.java:134)     at net.minecraft.server.MinecraftServer.func_71190_q(MinecraftServer.java:865)     at net.minecraft.server.dedicated.DedicatedServer.func_71190_q(DedicatedServer.java:291)     at net.minecraft.server.MinecraftServer.func_71217_p(MinecraftServer.java:787)     at net.minecraft.server.MinecraftServer.func_240802_v_(MinecraftServer.java:642)     at net.minecraft.server.MinecraftServer.func_240783_a_(MinecraftServer.java:232)     at java.base/java.lang.Thread.run(Thread.java:829) [04May2024 07:46:00.690] [Server thread/FATAL] [net.minecraftforge.common.ForgeMod/]: Preparing crash report with UUID 5c433435-6ad2-4287-803a-bdf63ae27629 [04May2024 07:46:00.694] [Server thread/WARN] [net.minecraft.network.NetworkSystem/]: Failed to handle packet for /86.158.192.2:54962 net.minecraft.crash.ReportedException: Ticking player     at net.minecraft.entity.player.ServerPlayerEntity.func_71127_g(ServerPlayerEntity.java:467) ~[?:?]     at net.minecraft.network.play.ServerPlayNetHandler.func_73660_a(ServerPlayNetHandler.java:207) ~[?:?]     at net.minecraft.network.NetworkManager.func_74428_b(NetworkManager.java:226) ~[?:?]     at net.minecraft.network.NetworkSystem.func_151269_c(NetworkSystem.java:134) ~[?:?]     at net.minecraft.server.MinecraftServer.func_71190_q(MinecraftServer.java:865) ~[?:?]     at net.minecraft.server.dedicated.DedicatedServer.func_71190_q(DedicatedServer.java:291) ~[?:?]     at net.minecraft.server.MinecraftServer.func_71217_p(MinecraftServer.java:787) ~[?:?]     at net.minecraft.server.MinecraftServer.func_240802_v_(MinecraftServer.java:642) ~[?:?]     at net.minecraft.server.MinecraftServer.func_240783_a_(MinecraftServer.java:232) ~[?:?]     at java.lang.Thread.run(Thread.java:829) [?:?] Caused by: java.lang.NoSuchMethodError: 'void net.minecraft.entity.player.PlayerAbilities.func_195931_a(float)'     at com.ulto.marvel.procedures.Mark19FlightProcedure.executeProcedure(Mark19FlightProcedure.java:53) ~[marvel:?]     at com.ulto.marvel.procedures.Mark19FlightProcedure$GlobalTrigger.onPlayerTick(Mark19FlightProcedure.java:35) ~[marvel:?]     at net.minecraftforge.eventbus.ASMEventHandler_62_GlobalTrigger_onPlayerTick_PlayerTickEvent.invoke(.dynamic) ~[?:?]     at net.minecraftforge.eventbus.ASMEventHandler.invoke(ASMEventHandler.java:85) ~[eventbus-4.0.0.jar:?]     at net.minecraftforge.eventbus.EventBus.post(EventBus.java:302) ~[eventbus-4.0.0.jar:?]     at net.minecraftforge.eventbus.EventBus.post(EventBus.java:283) ~[eventbus-4.0.0.jar:?]     at net.minecraftforge.fml.hooks.BasicEventHooks.onPlayerPostTick(BasicEventHooks.java:76) ~[forge:?]     at net.minecraft.entity.player.PlayerEntity.func_70071_h_(PlayerEntity.java:266) ~[?:?]     at net.minecraft.entity.player.ServerPlayerEntity.func_71127_g(ServerPlayerEntity.java:404) ~[?:?]     ... 9 more [04May2024 07:46:01.859] [Server thread/ERROR] [net.minecraftforge.eventbus.EventBus/EVENTBUS]: Exception caught during firing event: 'void net.minecraft.entity.player.PlayerAbilities.func_195931_a(float)'     Index: 4     Listeners:         0: NORMAL         1: ASM: com.ulto.marvel.procedures.MjolnirGiveTagProcedure@5051887a onPlayerTick(Lnet/minecraftforge/event/TickEvent$PlayerTickEvent;)V         2: ASM: class com.ulto.marvel.procedures.HeartShapedHerbEffectsProcedure$GlobalTrigger onPlayerTick(Lnet/minecraftforge/event/TickEvent$PlayerTickEvent;)V         3: ASM: class com.ulto.marvel.procedures.SSSGiveProcedure$GlobalTrigger onPlayerTick(Lnet/minecraftforge/event/TickEvent$PlayerTickEvent;)V         4: ASM: class com.ulto.marvel.procedures.Mark19FlightProcedure$GlobalTrigger onPlayerTick(Lnet/minecraftforge/event/TickEvent$PlayerTickEvent;)V         5: ASM: class com.ulto.marvel.procedures.FlightProcedure$GlobalTrigger onPlayerTick(Lnet/minecraftforge/event/TickEvent$PlayerTickEvent;)V         6: ASM: class com.ulto.marvel.procedures.MutantCheckProcedure$GlobalTrigger onPlayerTick(Lnet/minecraftforge/event/TickEvent$PlayerTickEvent;)V         7: ASM: class com.ulto.marvel.procedures.MutantEntityTickProcedure$GlobalTrigger onPlayerTick(Lnet/minecraftforge/event/TickEvent$PlayerTickEvent;)V         8: ASM: class com.ulto.marvel.procedures.AntmanSizeDamageProcedure$GlobalTrigger onPlayerTick(Lnet/minecraftforge/event/TickEvent$PlayerTickEvent;)V         9: ASM: class com.ulto.marvel.procedures.RemoveAntmanStuffProcedure$GlobalTrigger onPlayerTick(Lnet/minecraftforge/event/TickEvent$PlayerTickEvent;)V         10: ASM: class com.ulto.marvel.procedures.RadioactivePowersProcedure$GlobalTrigger onPlayerTick(Lnet/minecraftforge/event/TickEvent$PlayerTickEvent;)V         11: ASM: class com.ulto.marvel.procedures.IronManFlightParticlesProcedure$GlobalTrigger onPlayerTick(Lnet/minecraftforge/event/TickEvent$PlayerTickEvent;)V         12: ASM: class com.ulto.marvel.procedures.TemporaryWebTickProcedure$GlobalTrigger onPlayerTick(Lnet/minecraftforge/event/TickEvent$PlayerTickEvent;)V         13: ASM: class com.ulto.marvel.procedures.MarkNumberUpdaterProcedure$GlobalTrigger onPlayerTick(Lnet/minecraftforge/event/TickEvent$PlayerTickEvent;)V         14: ASM: class com.ulto.marvel.procedures.RemoveIronManWeaponsProcedure$GlobalTrigger onPlayerTick(Lnet/minecraftforge/event/TickEvent$PlayerTickEvent;)V java.lang.NoSuchMethodError: 'void net.minecraft.entity.player.PlayerAbilities.func_195931_a(float)'     at com.ulto.marvel.procedures.Mark19FlightProcedure.executeProcedure(Mark19FlightProcedure.java:53)     at com.ulto.marvel.procedures.Mark19FlightProcedure$GlobalTrigger.onPlayerTick(Mark19FlightProcedure.java:35)     at net.minecraftforge.eventbus.ASMEventHandler_62_GlobalTrigger_onPlayerTick_PlayerTickEvent.invoke(.dynamic)     at net.minecraftforge.eventbus.ASMEventHandler.invoke(ASMEventHandler.java:85)     at net.minecraftforge.eventbus.EventBus.post(EventBus.java:302)     at net.minecraftforge.eventbus.EventBus.post(EventBus.java:283)     at net.minecraftforge.fml.hooks.BasicEventHooks.onPlayerPostTick(BasicEventHooks.java:76)     at net.minecraft.entity.player.PlayerEntity.func_70071_h_(PlayerEntity.java:266)     at net.minecraft.entity.player.ServerPlayerEntity.func_71127_g(ServerPlayerEntity.java:404)     at net.minecraft.network.play.ServerPlayNetHandler.func_73660_a(ServerPlayNetHandler.java:207)     at net.minecraft.network.NetworkManager.func_74428_b(NetworkManager.java:226)     at net.minecraft.network.NetworkSystem.func_151269_c(NetworkSystem.java:134)     at net.minecraft.server.MinecraftServer.func_71190_q(MinecraftServer.java:865)     at net.minecraft.server.dedicated.DedicatedServer.func_71190_q(DedicatedServer.java:291)     at net.minecraft.server.MinecraftServer.func_71217_p(MinecraftServer.java:787)     at net.minecraft.server.MinecraftServer.func_240802_v_(MinecraftServer.java:642)     at net.minecraft.server.MinecraftServer.func_240783_a_(MinecraftServer.java:232)     at java.base/java.lang.Thread.run(Thread.java:829) [04May2024 07:46:01.882] [Server thread/FATAL] [net.minecraftforge.common.ForgeMod/]: Preparing crash report with UUID 8b15bb43-526b-4dca-9af7-3bcb3b494ada [04May2024 07:46:01.893] [Server thread/WARN] [net.minecraft.network.NetworkSystem/]: Failed to handle packet for /86.158.192.2:54962 net.minecraft.crash.ReportedException: Ticking player     at net.minecraft.entity.player.ServerPlayerEntity.func_71127_g(ServerPlayerEntity.java:467) ~[?:?]     at net.minecraft.network.play.ServerPlayNetHandler.func_73660_a(ServerPlayNetHandler.java:207) ~[?:?]     at net.minecraft.network.NetworkManager.func_74428_b(NetworkManager.java:226) ~[?:?]     at net.minecraft.network.NetworkSystem.func_151269_c(NetworkSystem.java:134) ~[?:?]     at net.minecraft.server.MinecraftServer.func_71190_q(MinecraftServer.java:865) ~[?:?]     at net.minecraft.server.dedicated.DedicatedServer.func_71190_q(DedicatedServer.java:291) ~[?:?]     at net.minecraft.server.MinecraftServer.func_71217_p(MinecraftServer.java:787) ~[?:?]     at net.minecraft.server.MinecraftServer.func_240802_v_(MinecraftServer.java:642) ~[?:?]     at net.minecraft.server.MinecraftServer.func_240783_a_(MinecraftServer.java:232) ~[?:?]     at java.lang.Thread.run(Thread.java:829) [?:?] Caused by: java.lang.NoSuchMethodError: 'void net.minecraft.entity.player.PlayerAbilities.func_195931_a(float)'     at com.ulto.marvel.procedures.Mark19FlightProcedure.executeProcedure(Mark19FlightProcedure.java:53) ~[marvel:?]     at com.ulto.marvel.procedures.Mark19FlightProcedure$GlobalTrigger.onPlayerTick(Mark19FlightProcedure.java:35) ~[marvel:?]     at net.minecraftforge.eventbus.ASMEventHandler_62_GlobalTrigger_onPlayerTick_PlayerTickEvent.invoke(.dynamic) ~[?:?]     at net.minecraftforge.eventbus.ASMEventHandler.invoke(ASMEventHandler.java:85) ~[eventbus-4.0.0.jar:?]     at net.minecraftforge.eventbus.EventBus.post(EventBus.java:302) ~[eventbus-4.0.0.jar:?]     at net.minecraftforge.eventbus.EventBus.post(EventBus.java:283) ~[eventbus-4.0.0.jar:?]     at net.minecraftforge.fml.hooks.BasicEventHooks.onPlayerPostTick(BasicEventHooks.java:76) ~[forge:?]     at net.minecraft.entity.player.PlayerEntity.func_70071_h_(PlayerEntity.java:266) ~[?:?]     at net.minecraft.entity.player.ServerPlayerEntity.func_71127_g(ServerPlayerEntity.java:404) ~[?:?]     ... 9 more [04May2024 07:46:02.820] [Server thread/ERROR] [net.minecraftforge.eventbus.EventBus/EVENTBUS]: Exception caught during firing event: 'void net.minecraft.entity.player.PlayerAbilities.func_195931_a(float)'     Index: 4     Listeners:         0: NORMAL         1: ASM: com.ulto.marvel.procedures.MjolnirGiveTagProcedure@5051887a onPlayerTick(Lnet/minecraftforge/event/TickEvent$PlayerTickEvent;)V         2: ASM: class com.ulto.marvel.procedures.HeartShapedHerbEffectsProcedure$GlobalTrigger onPlayerTick(Lnet/minecraftforge/event/TickEvent$PlayerTickEvent;)V         3: ASM: class com.ulto.marvel.procedures.SSSGiveProcedure$GlobalTrigger onPlayerTick(Lnet/minecraftforge/event/TickEvent$PlayerTickEvent;)V         4: ASM: class com.ulto.marvel.procedures.Mark19FlightProcedure$GlobalTrigger onPlayerTick(Lnet/minecraftforge/event/TickEvent$PlayerTickEvent;)V         5: ASM: class com.ulto.marvel.procedures.FlightProcedure$GlobalTrigger onPlayerTick(Lnet/minecraftforge/event/TickEvent$PlayerTickEvent;)V         6: ASM: class com.ulto.marvel.procedures.MutantCheckProcedure$GlobalTrigger onPlayerTick(Lnet/minecraftforge/event/TickEvent$PlayerTickEvent;)V         7: ASM: class com.ulto.marvel.procedures.MutantEntityTickProcedure$GlobalTrigger onPlayerTick(Lnet/minecraftforge/event/TickEvent$PlayerTickEvent;)V         8: ASM: class com.ulto.marvel.procedures.AntmanSizeDamageProcedure$GlobalTrigger onPlayerTick(Lnet/minecraftforge/event/TickEvent$PlayerTickEvent;)V         9: ASM: class com.ulto.marvel.procedures.RemoveAntmanStuffProcedure$GlobalTrigger onPlayerTick(Lnet/minecraftforge/event/TickEvent$PlayerTickEvent;)V         10: ASM: class com.ulto.marvel.procedures.RadioactivePowersProcedure$GlobalTrigger onPlayerTick(Lnet/minecraftforge/event/TickEvent$PlayerTickEvent;)V         11: ASM: class com.ulto.marvel.procedures.IronManFlightParticlesProcedure$GlobalTrigger onPlayerTick(Lnet/minecraftforge/event/TickEvent$PlayerTickEvent;)V         12: ASM: class com.ulto.marvel.procedures.TemporaryWebTickProcedure$GlobalTrigger onPlayerTick(Lnet/minecraftforge/event/TickEvent$PlayerTickEvent;)V         13: ASM: class com.ulto.marvel.procedures.MarkNumberUpdaterProcedure$GlobalTrigger onPlayerTick(Lnet/minecraftforge/event/TickEvent$PlayerTickEvent;)V         14: ASM: class com.ulto.marvel.procedures.RemoveIronManWeaponsProcedure$GlobalTrigger onPlayerTick(Lnet/minecraftforge/event/TickEvent$PlayerTickEvent;)V java.lang.NoSuchMethodError: 'void net.minecraft.entity.player.PlayerAbilities.func_195931_a(float)'     at com.ulto.marvel.procedures.Mark19FlightProcedure.executeProcedure(Mark19FlightProcedure.java:53)     at com.ulto.marvel.procedures.Mark19FlightProcedure$GlobalTrigger.onPlayerTick(Mark19FlightProcedure.java:35)     at net.minecraftforge.eventbus.ASMEventHandler_62_GlobalTrigger_onPlayerTick_PlayerTickEvent.invoke(.dynamic)     at net.minecraftforge.eventbus.ASMEventHandler.invoke(ASMEventHandler.java:85)     at net.minecraftforge.eventbus.EventBus.post(EventBus.java:302)     at net.minecraftforge.eventbus.EventBus.post(EventBus.java:283)     at net.minecraftforge.fml.hooks.BasicEventHooks.onPlayerPostTick(BasicEventHooks.java:76)     at net.minecraft.entity.player.PlayerEntity.func_70071_h_(PlayerEntity.java:266)     at net.minecraft.entity.player.ServerPlayerEntity.func_71127_g(ServerPlayerEntity.java:404)     at net.minecraft.network.play.ServerPlayNetHandler.func_73660_a(ServerPlayNetHandler.java:207)     at net.minecraft.network.NetworkManager.func_74428_b(NetworkManager.java:226)     at net.minecraft.network.NetworkSystem.func_151269_c(NetworkSystem.java:134)     at net.minecraft.server.MinecraftServer.func_71190_q(MinecraftServer.java:865)     at net.minecraft.server.dedicated.DedicatedServer.func_71190_q(DedicatedServer.java:291)     at net.minecraft.server.MinecraftServer.func_71217_p(MinecraftServer.java:787)     at net.minecraft.server.MinecraftServer.func_240802_v_(MinecraftServer.java:642)     at net.minecraft.server.MinecraftServer.func_240783_a_(MinecraftServer.java:232)     at java.base/java.lang.Thread.run(Thread.java:829) [04May2024 07:46:02.826] [Server thread/FATAL] [net.minecraftforge.common.ForgeMod/]: Preparing crash report with UUID b4f4a6e9-5453-4528-9a54-eefabeeebf4d [04May2024 07:46:02.828] [Server thread/WARN] [net.minecraft.network.NetworkSystem/]: Failed to handle packet for /86.158.192.2:54962 net.minecraft.crash.ReportedException: Ticking player     at net.minecraft.entity.player.ServerPlayerEntity.func_71127_g(ServerPlayerEntity.java:467) ~[?:?]     at net.minecraft.network.play.ServerPlayNetHandler.func_73660_a(ServerPlayNetHandler.java:207) ~[?:?]     at net.minecraft.network.NetworkManager.func_74428_b(NetworkManager.java:226) ~[?:?]     at net.minecraft.network.NetworkSystem.func_151269_c(NetworkSystem.java:134) ~[?:?]     at net.minecraft.server.MinecraftServer.func_71190_q(MinecraftServer.java:865) ~[?:?]     at net.minecraft.server.dedicated.DedicatedServer.func_71190_q(DedicatedServer.java:291) ~[?:?]     at net.minecraft.server.MinecraftServer.func_71217_p(MinecraftServer.java:787) ~[?:?]     at net.minecraft.server.MinecraftServer.func_240802_v_(MinecraftServer.java:642) ~[?:?]     at net.minecraft.server.MinecraftServer.func_240783_a_(MinecraftServer.java:232) ~[?:?]     at java.lang.Thread.run(Thread.java:829) [?:?] Caused by: java.lang.NoSuchMethodError: 'void net.minecraft.entity.player.PlayerAbilities.func_195931_a(float)'     at com.ulto.marvel.procedures.Mark19FlightProcedure.executeProcedure(Mark19FlightProcedure.java:53) ~[marvel:?]     at com.ulto.marvel.procedures.Mark19FlightProcedure$GlobalTrigger.onPlayerTick(Mark19FlightProcedure.java:35) ~[marvel:?]     at net.minecraftforge.eventbus.ASMEventHandler_62_GlobalTrigger_onPlayerTick_PlayerTickEvent.invoke(.dynamic) ~[?:?]     at net.minecraftforge.eventbus.ASMEventHandler.invoke(ASMEventHandler.java:85) ~[eventbus-4.0.0.jar:?]     at net.minecraftforge.eventbus.EventBus.post(EventBus.java:302) ~[eventbus-4.0.0.jar:?]     at net.minecraftforge.eventbus.EventBus.post(EventBus.java:283) ~[eventbus-4.0.0.jar:?]     at net.minecraftforge.fml.hooks.BasicEventHooks.onPlayerPostTick(BasicEventHooks.java:76) ~[forge:?]     at net.minecraft.entity.player.PlayerEntity.func_70071_h_(PlayerEntity.java:266) ~[?:?]     at net.minecraft.entity.player.ServerPlayerEntity.func_71127_g(ServerPlayerEntity.java:404) ~[?:?]     ... 9 more [04May2024 07:46:03.058] [Server thread/ERROR] [net.minecraftforge.eventbus.EventBus/EVENTBUS]: Exception caught during firing event: 'void net.minecraft.entity.player.PlayerAbilities.func_195931_a(float)'     Index: 4     Listeners:         0: NORMAL         1: ASM: com.ulto.marvel.procedures.MjolnirGiveTagProcedure@5051887a onPlayerTick(Lnet/minecraftforge/event/TickEvent$PlayerTickEvent;)V         2: ASM: class com.ulto.marvel.procedures.HeartShapedHerbEffectsProcedure$GlobalTrigger onPlayerTick(Lnet/minecraftforge/event/TickEvent$PlayerTickEvent;)V         3: ASM: class com.ulto.marvel.procedures.SSSGiveProcedure$GlobalTrigger onPlayerTick(Lnet/minecraftforge/event/TickEvent$PlayerTickEvent;)V         4: ASM: class com.ulto.marvel.procedures.Mark19FlightProcedure$GlobalTrigger onPlayerTick(Lnet/minecraftforge/event/TickEvent$PlayerTickEvent;)V         5: ASM: class com.ulto.marvel.procedures.FlightProcedure$GlobalTrigger onPlayerTick(Lnet/minecraftforge/event/TickEvent$PlayerTickEvent;)V         6: ASM: class com.ulto.marvel.procedures.MutantCheckProcedure$GlobalTrigger onPlayerTick(Lnet/minecraftforge/event/TickEvent$PlayerTickEvent;)V         7: ASM: class com.ulto.marvel.procedures.MutantEntityTickProcedure$GlobalTrigger onPlayerTick(Lnet/minecraftforge/event/TickEvent$PlayerTickEvent;)V         8: ASM: class com.ulto.marvel.procedures.AntmanSizeDamageProcedure$GlobalTrigger onPlayerTick(Lnet/minecraftforge/event/TickEvent$PlayerTickEvent;)V         9: ASM: class com.ulto.marvel.procedures.RemoveAntmanStuffProcedure$GlobalTrigger onPlayerTick(Lnet/minecraftforge/event/TickEvent$PlayerTickEvent;)V         10: ASM: class com.ulto.marvel.procedures.RadioactivePowersProcedure$GlobalTrigger onPlayerTick(Lnet/minecraftforge/event/TickEvent$PlayerTickEvent;)V         11: ASM: class com.ulto.marvel.procedures.IronManFlightParticlesProcedure$GlobalTrigger onPlayerTick(Lnet/minecraftforge/event/TickEvent$PlayerTickEvent;)V         12: ASM: class com.ulto.marvel.procedures.TemporaryWebTickProcedure$GlobalTrigger onPlayerTick(Lnet/minecraftforge/event/TickEvent$PlayerTickEvent;)V         13: ASM: class com.ulto.marvel.procedures.MarkNumberUpdaterProcedure$GlobalTrigger onPlayerTick(Lnet/minecraftforge/event/TickEvent$PlayerTickEvent;)V         14: ASM: class com.ulto.marvel.procedures.RemoveIronManWeaponsProcedure$GlobalTrigger onPlayerTick(Lnet/minecraftforge/event/TickEvent$PlayerTickEvent;)V java.lang.NoSuchMethodError: 'void net.minecraft.entity.player.PlayerAbilities.func_195931_a(float)'     at com.ulto.marvel.procedures.Mark19FlightProcedure.executeProcedure(Mark19FlightProcedure.java:53)     at com.ulto.marvel.procedures.Mark19FlightProcedure$GlobalTrigger.onPlayerTick(Mark19FlightProcedure.java:35)     at net.minecraftforge.eventbus.ASMEventHandler_62_GlobalTrigger_onPlayerTick_PlayerTickEvent.invoke(.dynamic)     at net.minecraftforge.eventbus.ASMEventHandler.invoke(ASMEventHandler.java:85)     at net.minecraftforge.eventbus.EventBus.post(EventBus.java:302)     at net.minecraftforge.eventbus.EventBus.post(EventBus.java:283)     at net.minecraftforge.fml.hooks.BasicEventHooks.onPlayerPostTick(BasicEventHooks.java:76)     at net.minecraft.entity.player.PlayerEntity.func_70071_h_(PlayerEntity.java:266)     at net.minecraft.entity.player.ServerPlayerEntity.func_71127_g(ServerPlayerEntity.java:404)     at net.minecraft.network.play.ServerPlayNetHandler.func_73660_a(ServerPlayNetHandler.java:207)     at net.minecraft.network.NetworkManager.func_74428_b(NetworkManager.java:226)     at net.minecraft.network.NetworkSystem.func_151269_c(NetworkSystem.java:134)     at net.minecraft.server.MinecraftServer.func_71190_q(MinecraftServer.java:865)     at net.minecraft.server.dedicated.DedicatedServer.func_71190_q(DedicatedServer.java:291)     at net.minecraft.server.MinecraftServer.func_71217_p(MinecraftServer.java:787)     at net.minecraft.server.MinecraftServer.func_240802_v_(MinecraftServer.java:642)     at net.minecraft.server.MinecraftServer.func_240783_a_(MinecraftServer.java:232)     at java.base/java.lang.Thread.run(Thread.java:829) [04May2024 07:46:03.072] [Server thread/FATAL] [net.minecraftforge.common.ForgeMod/]: Preparing crash report with UUID e6fd54fe-a082-4bea-8eaf-038fc62c8fec [04May2024 07:46:03.075] [Server thread/WARN] [net.minecraft.network.NetworkSystem/]: Failed to handle packet for /86.158.192.2:54962 net.minecraft.crash.ReportedException: Ticking player     at net.minecraft.entity.player.ServerPlayerEntity.func_71127_g(ServerPlayerEntity.java:467) ~[?:?]     at net.minecraft.network.play.ServerPlayNetHandler.func_73660_a(ServerPlayNetHandler.java:207) ~[?:?]     at net.minecraft.network.NetworkManager.func_74428_b(NetworkManager.java:226) ~[?:?]     at net.minecraft.network.NetworkSystem.func_151269_c(NetworkSystem.java:134) ~[?:?]     at net.minecraft.server.MinecraftServer.func_71190_q(MinecraftServer.java:865) ~[?:?]     at net.minecraft.server.dedicated.DedicatedServer.func_71190_q(DedicatedServer.java:291) ~[?:?]     at net.minecraft.server.MinecraftServer.func_71217_p(MinecraftServer.java:787) ~[?:?]     at net.minecraft.server.MinecraftServer.func_240802_v_(MinecraftServer.java:642) ~[?:?]     at net.minecraft.server.MinecraftServer.func_240783_a_(MinecraftServer.java:232) ~[?:?]     at java.lang.Thread.run(Thread.java:829) [?:?] Caused by: java.lang.NoSuchMethodError: 'void net.minecraft.entity.player.PlayerAbilities.func_195931_a(float)'     at com.ulto.marvel.procedures.Mark19FlightProcedure.executeProcedure(Mark19FlightProcedure.java:53) ~[marvel:?]     at com.ulto.marvel.procedures.Mark19FlightProcedure$GlobalTrigger.onPlayerTick(Mark19FlightProcedure.java:35) ~[marvel:?]     at net.minecraftforge.eventbus.ASMEventHandler_62_GlobalTrigger_onPlayerTick_PlayerTickEvent.invoke(.dynamic) ~[?:?]     at net.minecraftforge.eventbus.ASMEventHandler.invoke(ASMEventHandler.java:85) ~[eventbus-4.0.0.jar:?]     at net.minecraftforge.eventbus.EventBus.post(EventBus.java:302) ~[eventbus-4.0.0.jar:?]     at net.minecraftforge.eventbus.EventBus.post(EventBus.java:283) ~[eventbus-4.0.0.jar:?]     at net.minecraftforge.fml.hooks.BasicEventHooks.onPlayerPostTick(BasicEventHooks.java:76) ~[forge:?]     at net.minecraft.entity.player.PlayerEntity.func_70071_h_(PlayerEntity.java:266) ~[?:?]     at net.minecraft.entity.player.ServerPlayerEntity.func_71127_g(ServerPlayerEntity.java:404) ~[?:?]     ... 9 more [04May2024 07:46:03.562] [Server thread/ERROR] [net.minecraftforge.eventbus.EventBus/EVENTBUS]: Exception caught during firing event: 'void net.minecraft.entity.player.PlayerAbilities.func_195931_a(float)'     Index: 4     Listeners:         0: NORMAL         1: ASM: com.ulto.marvel.procedures.MjolnirGiveTagProcedure@5051887a onPlayerTick(Lnet/minecraftforge/event/TickEvent$PlayerTickEvent;)V         2: ASM: class com.ulto.marvel.procedures.HeartShapedHerbEffectsProcedure$GlobalTrigger onPlayerTick(Lnet/minecraftforge/event/TickEvent$PlayerTickEvent;)V         3: ASM: class com.ulto.marvel.procedures.SSSGiveProcedure$GlobalTrigger onPlayerTick(Lnet/minecraftforge/event/TickEvent$PlayerTickEvent;)V         4: ASM: class com.ulto.marvel.procedures.Mark19FlightProcedure$GlobalTrigger onPlayerTick(Lnet/minecraftforge/event/TickEvent$PlayerTickEvent;)V         5: ASM: class com.ulto.marvel.procedures.FlightProcedure$GlobalTrigger onPlayerTick(Lnet/minecraftforge/event/TickEvent$PlayerTickEvent;)V         6: ASM: class com.ulto.marvel.procedures.MutantCheckProcedure$GlobalTrigger onPlayerTick(Lnet/minecraftforge/event/TickEvent$PlayerTickEvent;)V         7: ASM: class com.ulto.marvel.procedures.MutantEntityTickProcedure$GlobalTrigger onPlayerTick(Lnet/minecraftforge/event/TickEvent$PlayerTickEvent;)V         8: ASM: class com.ulto.marvel.procedures.AntmanSizeDamageProcedure$GlobalTrigger onPlayerTick(Lnet/minecraftforge/event/TickEvent$PlayerTickEvent;)V         9: ASM: class com.ulto.marvel.procedures.RemoveAntmanStuffProcedure$GlobalTrigger onPlayerTick(Lnet/minecraftforge/event/TickEvent$PlayerTickEvent;)V         10: ASM: class com.ulto.marvel.procedures.RadioactivePowersProcedure$GlobalTrigger onPlayerTick(Lnet/minecraftforge/event/TickEvent$PlayerTickEvent;)V         11: ASM: class com.ulto.marvel.procedures.IronManFlightParticlesProcedure$GlobalTrigger onPlayerTick(Lnet/minecraftforge/event/TickEvent$PlayerTickEvent;)V         12: ASM: class com.ulto.marvel.procedures.TemporaryWebTickProcedure$GlobalTrigger onPlayerTick(Lnet/minecraftforge/event/TickEvent$PlayerTickEvent;)V         13: ASM: class com.ulto.marvel.procedures.MarkNumberUpdaterProcedure$GlobalTrigger onPlayerTick(Lnet/minecraftforge/event/TickEvent$PlayerTickEvent;)V         14: ASM: class com.ulto.marvel.procedures.RemoveIronManWeaponsProcedure$GlobalTrigger onPlayerTick(Lnet/minecraftforge/event/TickEvent$PlayerTickEvent;)V java.lang.NoSuchMethodError: 'void net.minecraft.entity.player.PlayerAbilities.func_195931_a(float)'     at com.ulto.marvel.procedures.Mark19FlightProcedure.executeProcedure(Mark19FlightProcedure.java:53)     at com.ulto.marvel.procedures.Mark19FlightProcedure$GlobalTrigger.onPlayerTick(Mark19FlightProcedure.java:35)     at net.minecraftforge.eventbus.ASMEventHandler_62_GlobalTrigger_onPlayerTick_PlayerTickEvent.invoke(.dynamic)     at net.minecraftforge.eventbus.ASMEventHandler.invoke(ASMEventHandler.java:85)     at net.minecraftforge.eventbus.EventBus.post(EventBus.java:302)     at net.minecraftforge.eventbus.EventBus.post(EventBus.java:283)     at net.minecraftforge.fml.hooks.BasicEventHooks.onPlayerPostTick(BasicEventHooks.java:76)     at net.minecraft.entity.player.PlayerEntity.func_70071_h_(PlayerEntity.java:266)     at net.minecraft.entity.player.ServerPlayerEntity.func_71127_g(ServerPlayerEntity.java:404)     at net.minecraft.network.play.ServerPlayNetHandler.func_73660_a(ServerPlayNetHandler.java:207)     at net.minecraft.network.NetworkManager.func_74428_b(NetworkManager.java:226)     at net.minecraft.network.NetworkSystem.func_151269_c(NetworkSystem.java:134)     at net.minecraft.server.MinecraftServer.func_71190_q(MinecraftServer.java:865)     at net.minecraft.server.dedicated.DedicatedServer.func_71190_q(DedicatedServer.java:291)     at net.minecraft.server.MinecraftServer.func_71217_p(MinecraftServer.java:787)     at net.minecraft.server.MinecraftServer.func_240802_v_(MinecraftServer.java:642)     at net.minecraft.server.MinecraftServer.func_240783_a_(MinecraftServer.java:232)     at java.base/java.lang.Thread.run(Thread.java:829) [04May2024 07:46:03.570] [Server thread/FATAL] [net.minecraftforge.common.ForgeMod/]: Preparing crash report with UUID 2c99e3a3-744a-4dcb-a73d-518effd39148 [04May2024 07:46:03.573] [Server thread/WARN] [net.minecraft.network.NetworkSystem/]: Failed to handle packet for /86.158.192.2:54962 net.minecraft.crash.ReportedException: Ticking player     at net.minecraft.entity.player.ServerPlayerEntity.func_71127_g(ServerPlayerEntity.java:467) ~[?:?]     at net.minecraft.network.play.ServerPlayNetHandler.func_73660_a(ServerPlayNetHandler.java:207) ~[?:?]     at net.minecraft.network.NetworkManager.func_74428_b(NetworkManager.java:226) ~[?:?]     at net.minecraft.network.NetworkSystem.func_151269_c(NetworkSystem.java:134) ~[?:?]     at net.minecraft.server.MinecraftServer.func_71190_q(MinecraftServer.java:865) ~[?:?]     at net.minecraft.server.dedicated.DedicatedServer.func_71190_q(DedicatedServer.java:291) ~[?:?]     at net.minecraft.server.MinecraftServer.func_71217_p(MinecraftServer.java:787) ~[?:?]     at net.minecraft.server.MinecraftServer.func_240802_v_(MinecraftServer.java:642) ~[?:?]     at net.minecraft.server.MinecraftServer.func_240783_a_(MinecraftServer.java:232) ~[?:?]     at java.lang.Thread.run(Thread.java:829) [?:?] Caused by: java.lang.NoSuchMethodError: 'void net.minecraft.entity.player.PlayerAbilities.func_195931_a(float)'     at com.ulto.marvel.procedures.Mark19FlightProcedure.executeProcedure(Mark19FlightProcedure.java:53) ~[marvel:?]     at com.ulto.marvel.procedures.Mark19FlightProcedure$GlobalTrigger.onPlayerTick(Mark19FlightProcedure.java:35) ~[marvel:?]     at net.minecraftforge.eventbus.ASMEventHandler_62_GlobalTrigger_onPlayerTick_PlayerTickEvent.invoke(.dynamic) ~[?:?]     at net.minecraftforge.eventbus.ASMEventHandler.invoke(ASMEventHandler.java:85) ~[eventbus-4.0.0.jar:?]     at net.minecraftforge.eventbus.EventBus.post(EventBus.java:302) ~[eventbus-4.0.0.jar:?]     at net.minecraftforge.eventbus.EventBus.post(EventBus.java:283) ~[eventbus-4.0.0.jar:?]     at net.minecraftforge.fml.hooks.BasicEventHooks.onPlayerPostTick(BasicEventHooks.java:76) ~[forge:?]     at net.minecraft.entity.player.PlayerEntity.func_70071_h_(PlayerEntity.java:266) ~[?:?]     at net.minecraft.entity.player.ServerPlayerEntity.func_71127_g(ServerPlayerEntity.java:404) ~[?:?]     ... 9 more [04May2024 07:46:04.204] [Server thread/ERROR] [net.minecraftforge.eventbus.EventBus/EVENTBUS]: Exception caught during firing event: 'void net.minecraft.entity.player.PlayerAbilities.func_195931_a(float)'     Index: 4     Listeners:         0: NORMAL         1: ASM: com.ulto.marvel.procedures.MjolnirGiveTagProcedure@5051887a onPlayerTick(Lnet/minecraftforge/event/TickEvent$PlayerTickEvent;)V         2: ASM: class com.ulto.marvel.procedures.HeartShapedHerbEffectsProcedure$GlobalTrigger onPlayerTick(Lnet/minecraftforge/event/TickEvent$PlayerTickEvent;)V         3: ASM: class com.ulto.marvel.procedures.SSSGiveProcedure$GlobalTrigger onPlayerTick(Lnet/minecraftforge/event/TickEvent$PlayerTickEvent;)V         4: ASM: class com.ulto.marvel.procedures.Mark19FlightProcedure$GlobalTrigger onPlayerTick(Lnet/minecraftforge/event/TickEvent$PlayerTickEvent;)V         5: ASM: class com.ulto.marvel.procedures.FlightProcedure$GlobalTrigger onPlayerTick(Lnet/minecraftforge/event/TickEvent$PlayerTickEvent;)V         6: ASM: class com.ulto.marvel.procedures.MutantCheckProcedure$GlobalTrigger onPlayerTick(Lnet/minecraftforge/event/TickEvent$PlayerTickEvent;)V         7: ASM: class com.ulto.marvel.procedures.MutantEntityTickProcedure$GlobalTrigger onPlayerTick(Lnet/minecraftforge/event/TickEvent$PlayerTickEvent;)V         8: ASM: class com.ulto.marvel.procedures.AntmanSizeDamageProcedure$GlobalTrigger onPlayerTick(Lnet/minecraftforge/event/TickEvent$PlayerTickEvent;)V         9: ASM: class com.ulto.marvel.procedures.RemoveAntmanStuffProcedure$GlobalTrigger onPlayerTick(Lnet/minecraftforge/event/TickEvent$PlayerTickEvent;)V         10: ASM: class com.ulto.marvel.procedures.RadioactivePowersProcedure$GlobalTrigger onPlayerTick(Lnet/minecraftforge/event/TickEvent$PlayerTickEvent;)V         11: ASM: class com.ulto.marvel.procedures.IronManFlightParticlesProcedure$GlobalTrigger onPlayerTick(Lnet/minecraftforge/event/TickEvent$PlayerTickEvent;)V         12: ASM: class com.ulto.marvel.procedures.TemporaryWebTickProcedure$GlobalTrigger onPlayerTick(Lnet/minecraftforge/event/TickEvent$PlayerTickEvent;)V         13: ASM: class com.ulto.marvel.procedures.MarkNumberUpdaterProcedure$GlobalTrigger onPlayerTick(Lnet/minecraftforge/event/TickEvent$PlayerTickEvent;)V         14: ASM: class com.ulto.marvel.procedures.RemoveIronManWeaponsProcedure$GlobalTrigger onPlayerTick(Lnet/minecraftforge/event/TickEvent$PlayerTickEvent;)V java.lang.NoSuchMethodError: 'void net.minecraft.entity.player.PlayerAbilities.func_195931_a(float)'     at com.ulto.marvel.procedures.Mark19FlightProcedure.executeProcedure(Mark19FlightProcedure.java:53)     at com.ulto.marvel.procedures.Mark19FlightProcedure$GlobalTrigger.onPlayerTick(Mark19FlightProcedure.java:35)     at net.minecraftforge.eventbus.ASMEventHandler_62_GlobalTrigger_onPlayerTick_PlayerTickEvent.invoke(.dynamic)     at net.minecraftforge.eventbus.ASMEventHandler.invoke(ASMEventHandler.java:85)     at net.minecraftforge.eventbus.EventBus.post(EventBus.java:302)     at net.minecraftforge.eventbus.EventBus.post(EventBus.java:283)     at net.minecraftforge.fml.hooks.BasicEventHooks.onPlayerPostTick(BasicEventHooks.java:76)     at net.minecraft.entity.player.PlayerEntity.func_70071_h_(PlayerEntity.java:266)     at net.minecraft.entity.player.ServerPlayerEntity.func_71127_g(ServerPlayerEntity.java:404)     at net.minecraft.network.play.ServerPlayNetHandler.func_73660_a(ServerPlayNetHandler.java:207)     at net.minecraft.network.NetworkManager.func_74428_b(NetworkManager.java:226)     at net.minecraft.network.NetworkSystem.func_151269_c(NetworkSystem.java:134)     at net.minecraft.server.MinecraftServer.func_71190_q(MinecraftServer.java:865)     at net.minecraft.server.dedicated.DedicatedServer.func_71190_q(DedicatedServer.java:291)     at net.minecraft.server.MinecraftServer.func_71217_p(MinecraftServer.java:787)     at net.minecraft.server.MinecraftServer.func_240802_v_(MinecraftServer.java:642)     at net.minecraft.server.MinecraftServer.func_240783_a_(MinecraftServer.java:232)     at java.base/java.lang.Thread.run(Thread.java:829) [04May2024 07:46:04.256] [Server thread/FATAL] [net.minecraftforge.common.ForgeMod/]: Preparing crash report with UUID 0b41ad85-c6ae-43bc-8d8c-c846dde4cbfb [04May2024 07:46:04.259] [Server thread/WARN] [net.minecraft.network.NetworkSystem/]: Failed to handle packet for /86.158.192.2:54962 net.minecraft.crash.ReportedException: Ticking player     at net.minecraft.entity.player.ServerPlayerEntity.func_71127_g(ServerPlayerEntity.java:467) ~[?:?]     at net.minecraft.network.play.ServerPlayNetHandler.func_73660_a(ServerPlayNetHandler.java:207) ~[?:?]     at net.minecraft.network.NetworkManager.func_74428_b(NetworkManager.java:226) ~[?:?]     at net.minecraft.network.NetworkSystem.func_151269_c(NetworkSystem.java:134) ~[?:?]     at net.minecraft.server.MinecraftServer.func_71190_q(MinecraftServer.java:865) ~[?:?]     at net.minecraft.server.dedicated.DedicatedServer.func_71190_q(DedicatedServer.java:291) ~[?:?]     at net.minecraft.server.MinecraftServer.func_71217_p(MinecraftServer.java:787) ~[?:?]     at net.minecraft.server.MinecraftServer.func_240802_v_(MinecraftServer.java:642) ~[?:?]     at net.minecraft.server.MinecraftServer.func_240783_a_(MinecraftServer.java:232) ~[?:?]     at java.lang.Thread.run(Thread.java:829) [?:?] Caused by: java.lang.NoSuchMethodError: 'void net.minecraft.entity.player.PlayerAbilities.func_195931_a(float)'     at com.ulto.marvel.procedures.Mark19FlightProcedure.executeProcedure(Mark19FlightProcedure.java:53) ~[marvel:?]     at com.ulto.marvel.procedures.Mark19FlightProcedure$GlobalTrigger.onPlayerTick(Mark19FlightProcedure.java:35) ~[marvel:?]     at net.minecraftforge.eventbus.ASMEventHandler_62_GlobalTrigger_onPlayerTick_PlayerTickEvent.invoke(.dynamic) ~[?:?]     at net.minecraftforge.eventbus.ASMEventHandler.invoke(ASMEventHandler.java:85) ~[eventbus-4.0.0.jar:?]     at net.minecraftforge.eventbus.EventBus.post(EventBus.java:302) ~[eventbus-4.0.0.jar:?]     at net.minecraftforge.eventbus.EventBus.post(EventBus.java:283) ~[eventbus-4.0.0.jar:?]     at net.minecraftforge.fml.hooks.BasicEventHooks.onPlayerPostTick(BasicEventHooks.java:76) ~[forge:?]     at net.minecraft.entity.player.PlayerEntity.func_70071_h_(PlayerEntity.java:266) ~[?:?]     at net.minecraft.entity.player.ServerPlayerEntity.func_71127_g(ServerPlayerEntity.java:404) ~[?:?]     ... 9 more [04May2024 07:46:05.163] [Server thread/ERROR] [net.minecraftforge.eventbus.EventBus/EVENTBUS]: Exception caught during firing event: 'void net.minecraft.entity.player.PlayerAbilities.func_195931_a(float)'     Index: 4     Listeners:         0: NORMAL         1: ASM: com.ulto.marvel.procedures.MjolnirGiveTagProcedure@5051887a onPlayerTick(Lnet/minecraftforge/event/TickEvent$PlayerTickEvent;)V         2: ASM: class com.ulto.marvel.procedures.HeartShapedHerbEffectsProcedure$GlobalTrigger onPlayerTick(Lnet/minecraftforge/event/TickEvent$PlayerTickEvent;)V         3: ASM: class com.ulto.marvel.procedures.SSSGiveProcedure$GlobalTrigger onPlayerTick(Lnet/minecraftforge/event/TickEvent$PlayerTickEvent;)V         4: ASM: class com.ulto.marvel.procedures.Mark19FlightProcedure$GlobalTrigger onPlayerTick(Lnet/minecraftforge/event/TickEvent$PlayerTickEvent;)V         5: ASM: class com.ulto.marvel.procedures.FlightProcedure$GlobalTrigger onPlayerTick(Lnet/minecraftforge/event/TickEvent$PlayerTickEvent;)V         6: ASM: class com.ulto.marvel.procedures.MutantCheckProcedure$GlobalTrigger onPlayerTick(Lnet/minecraftforge/event/TickEvent$PlayerTickEvent;)V         7: ASM: class com.ulto.marvel.procedures.MutantEntityTickProcedure$GlobalTrigger onPlayerTick(Lnet/minecraftforge/event/TickEvent$PlayerTickEvent;)V         8: ASM: class com.ulto.marvel.procedures.AntmanSizeDamageProcedure$GlobalTrigger onPlayerTick(Lnet/minecraftforge/event/TickEvent$PlayerTickEvent;)V         9: ASM: class com.ulto.marvel.procedures.RemoveAntmanStuffProcedure$GlobalTrigger onPlayerTick(Lnet/minecraftforge/event/TickEvent$PlayerTickEvent;)V         10: ASM: class com.ulto.marvel.procedures.RadioactivePowersProcedure$GlobalTrigger onPlayerTick(Lnet/minecraftforge/event/TickEvent$PlayerTickEvent;)V         11: ASM: class com.ulto.marvel.procedures.IronManFlightParticlesProcedure$GlobalTrigger onPlayerTick(Lnet/minecraftforge/event/TickEvent$PlayerTickEvent;)V         12: ASM: class com.ulto.marvel.procedures.TemporaryWebTickProcedure$GlobalTrigger onPlayerTick(Lnet/minecraftforge/event/TickEvent$PlayerTickEvent;)V         13: ASM: class com.ulto.marvel.procedures.MarkNumberUpdaterProcedure$GlobalTrigger onPlayerTick(Lnet/minecraftforge/event/TickEvent$PlayerTickEvent;)V         14: ASM: class com.ulto.marvel.procedures.RemoveIronManWeaponsProcedure$GlobalTrigger onPlayerTick(Lnet/minecraftforge/event/TickEvent$PlayerTickEvent;)V java.lang.NoSuchMethodError: 'void net.minecraft.entity.player.PlayerAbilities.func_195931_a(float)'     at com.ulto.marvel.procedures.Mark19FlightProcedure.executeProcedure(Mark19FlightProcedure.java:53)     at com.ulto.marvel.procedures.Mark19FlightProcedure$GlobalTrigger.onPlayerTick(Mark19FlightProcedure.java:35)     at net.minecraftforge.eventbus.ASMEventHandler_62_GlobalTrigger_onPlayerTick_PlayerTickEvent.invoke(.dynamic)     at net.minecraftforge.eventbus.ASMEventHandler.invoke(ASMEventHandler.java:85)     at net.minecraftforge.eventbus.EventBus.post(EventBus.java:302)     at net.minecraftforge.eventbus.EventBus.post(EventBus.java:283)     at net.minecraftforge.fml.hooks.BasicEventHooks.onPlayerPostTick(BasicEventHooks.java:76)     at net.minecraft.entity.player.PlayerEntity.func_70071_h_(PlayerEntity.java:266)     at net.minecraft.entity.player.ServerPlayerEntity.func_71127_g(ServerPlayerEntity.java:404)     at net.minecraft.network.play.ServerPlayNetHandler.func_73660_a(ServerPlayNetHandler.java:207)     at net.minecraft.network.NetworkManager.func_74428_b(NetworkManager.java:226)     at net.minecraft.network.NetworkSystem.func_151269_c(NetworkSystem.java:134)     at net.minecraft.server.MinecraftServer.func_71190_q(MinecraftServer.java:865)     at net.minecraft.server.dedicated.DedicatedServer.func_71190_q(DedicatedServer.java:291)     at net.minecraft.server.MinecraftServer.func_71217_p(MinecraftServer.java:787)     at net.minecraft.server.MinecraftServer.func_240802_v_(MinecraftServer.java:642)     at net.minecraft.server.MinecraftServer.func_240783_a_(MinecraftServer.java:232)     at java.base/java.lang.Thread.run(Thread.java:829) [04May2024 07:46:05.178] [Server thread/FATAL] [net.minecraftforge.common.ForgeMod/]: Preparing crash report with UUID d23d1951-578f-426e-9e48-7801b79690a1 [04May2024 07:46:05.180] [Server thread/WARN] [net.minecraft.network.NetworkSystem/]: Failed to handle packet for /86.158.192.2:54962 net.minecraft.crash.ReportedException: Ticking player     at net.minecraft.entity.player.ServerPlayerEntity.func_71127_g(ServerPlayerEntity.java:467) ~[?:?]     at net.minecraft.network.play.ServerPlayNetHandler.func_73660_a(ServerPlayNetHandler.java:207) ~[?:?]     at net.minecraft.network.NetworkManager.func_74428_b(NetworkManager.java:226) ~[?:?]     at net.minecraft.network.NetworkSystem.func_151269_c(NetworkSystem.java:134) ~[?:?]     at net.minecraft.server.MinecraftServer.func_71190_q(MinecraftServer.java:865) ~[?:?]     at net.minecraft.server.dedicated.DedicatedServer.func_71190_q(DedicatedServer.java:291) ~[?:?]     at net.minecraft.server.MinecraftServer.func_71217_p(MinecraftServer.java:787) ~[?:?]     at net.minecraft.server.MinecraftServer.func_240802_v_(MinecraftServer.java:642) ~[?:?]     at net.minecraft.server.MinecraftServer.func_240783_a_(MinecraftServer.java:232) ~[?:?]     at java.lang.Thread.run(Thread.java:829) [?:?] Caused by: java.lang.NoSuchMethodError: 'void net.minecraft.entity.player.PlayerAbilities.func_195931_a(float)'     at com.ulto.marvel.procedures.Mark19FlightProcedure.executeProcedure(Mark19FlightProcedure.java:53) ~[marvel:?]     at com.ulto.marvel.procedures.Mark19FlightProcedure$GlobalTrigger.onPlayerTick(Mark19FlightProcedure.java:35) ~[marvel:?]     at net.minecraftforge.eventbus.ASMEventHandler_62_GlobalTrigger_onPlayerTick_PlayerTickEvent.invoke(.dynamic) ~[?:?]     at net.minecraftforge.eventbus.ASMEventHandler.invoke(ASMEventHandler.java:85) ~[eventbus-4.0.0.jar:?]     at net.minecraftforge.eventbus.EventBus.post(EventBus.java:302) ~[eventbus-4.0.0.jar:?]     at net.minecraftforge.eventbus.EventBus.post(EventBus.java:283) ~[eventbus-4.0.0.jar:?]     at net.minecraftforge.fml.hooks.BasicEventHooks.onPlayerPostTick(BasicEventHooks.java:76) ~[forge:?]     at net.minecraft.entity.player.PlayerEntity.func_70071_h_(PlayerEntity.java:266) ~[?:?]     at net.minecraft.entity.player.ServerPlayerEntity.func_71127_g(ServerPlayerEntity.java:404) ~[?:?]     ... 9 more [04May2024 07:46:05.559] [Server thread/INFO] [net.minecraft.network.play.ServerPlayNetHandler/]: ImAcidic lost connection: Internal server error [04May2024 07:46:05.561] [Server thread/INFO] [net.minecraft.server.dedicated.DedicatedServer/]: ImAcidic left the game [04May2024 07:46:28.993] [Server thread/WARN] [net.minecraft.server.MinecraftServer/]: Can't keep up! Is the server overloaded? Running 23919ms or 478 ticks behind  
    • Doesn't work https://mclo.gs/XaTwdOZ
    • Another Update: Updating the Forge MDL version worked. My conjecture to this weird bug or issue of sorts is that the plugin was downloading mappings and MDK from the latest forge minecraft version instead of the set forge minecraft version. This could be the only possible case of explanation, because clearing gradle cache does not work for me. I have tried this for over hours and just upgrading the MDK worked for me. Build and compile gradlew commands also works now, which further proves my guess. This is probably a bug on the plugin's side somehow, but it just doesn't make sense since at start trying the 40.2.18 MDL works fine and then deleting the cache breaks it.
    • Update: It seems like the forge version I was using was broken entirely, somehow... I am now using the Forge MDL 1.18.2-40.2.21 (previous used 40.2.18) version and now everything is working sort-of fine.... adding extra dependencies seems to break it again. It is so weird... Did anyone have similar issues with this before? I'm also using the Minecraft Development plugin for IntelliJ IDEA
    • Hello! I'm currently having issues while building a jar file for my Minecraft 1.18.2 Forge mod. I've attached a link to imgur below that holds two screenshots of the errors. I'm using Jetbrains IntelliJ IDEA 2024.1 and Gradle 8.4. This is my repo: Mod Repo When I was modding, I needed to build the mod in order to test the mod, which didn't work, as the first screenshot gives. It throws errors for each classes in the forge registry class (or whatever the hell that mess is) and is just generally confusing. Now I have deleted everything in my project folder and re-pulled the repo from github, which now gives the errors in the second image where all forge classes are not imported somehow. When I try to build it now, it just repeats the same errors in the first image. https://imgur.com/a/DYwSKqJ Please I need help desparately
  • Topics

×
×
  • Create New...

Important Information

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