Jump to content

Trying to sync server -> client configs, but maybe I'm doing it wrong.


Insane96MCP

Recommended Posts

I'm trying to sync server config with client, and I've came up with this IMessage. https://github.com/Insane-96/NetherGoldOre/blob/1.12/common/net/insane96mcp/nethergoldore/network/ConfigSync.java

package net.insane96mcp.nethergoldore.network;

import io.netty.buffer.ByteBuf;
import net.insane96mcp.nethergoldore.lib.Properties;
import net.minecraft.client.Minecraft;
import net.minecraft.util.IThreadListener;
import net.minecraftforge.fml.common.network.simpleimpl.IMessage;
import net.minecraftforge.fml.common.network.simpleimpl.IMessageHandler;
import net.minecraftforge.fml.common.network.simpleimpl.MessageContext;

public class ConfigSync implements IMessage {

	int minNuggetsPerOre, maxNuggetsPerOre, minExperienceDrop, maxExperienceDrop, orePerVein, minY, maxY;
	float veinPerChunk, pigmanAggroChance, pigmanAggroRadius;
	
	@Override
	public void fromBytes(ByteBuf buf) {
		minNuggetsPerOre = buf.readInt();
		maxNuggetsPerOre = buf.readInt();
		minExperienceDrop = buf.readInt();
		maxExperienceDrop = buf.readInt();
		orePerVein = buf.readInt();
		veinPerChunk = buf.readFloat();
		minY = buf.readInt();
		maxY = buf.readInt();
		pigmanAggroChance = buf.readFloat();
		pigmanAggroRadius = buf.readFloat();
	}

	@Override
	public void toBytes(ByteBuf buf) {
		buf.writeInt(Properties.config.drops.minNuggetsPerOre);
		buf.writeInt(Properties.config.drops.maxNuggetsPerOre);
		buf.writeInt(Properties.config.drops.minExperienceDrop);
		buf.writeInt(Properties.config.drops.maxExperienceDrop);
		buf.writeInt(Properties.config.generation.orePerVein);
		buf.writeFloat(Properties.config.generation.veinPerChunk);
		buf.writeInt(Properties.config.generation.minY);
		buf.writeInt(Properties.config.generation.maxY);
		buf.writeFloat(Properties.config.oreProperties.pigmanAggroChance);
		buf.writeFloat(Properties.config.oreProperties.pigmanAggroRadius);
	}

	public class Handler implements IMessageHandler<ConfigSync, IMessage> {

		@Override
		public IMessage onMessage(ConfigSync message, MessageContext ctx) {
			IThreadListener iThreadListener = Minecraft.getMinecraft();
			iThreadListener.addScheduledTask(new Runnable() {
				
				@Override
				public void run() {
					Properties.config.drops.minNuggetsPerOre = message.minNuggetsPerOre;
					Properties.config.drops.maxNuggetsPerOre = message.maxNuggetsPerOre;
					Properties.config.drops.minExperienceDrop = message.minExperienceDrop;
					Properties.config.drops.maxExperienceDrop = message.maxExperienceDrop;
					Properties.config.generation.orePerVein = message.orePerVein;
					Properties.config.generation.veinPerChunk = message.veinPerChunk;
					Properties.config.generation.minY = message.minY;
					Properties.config.generation.maxY = message.maxY;
					Properties.config.oreProperties.pigmanAggroChance = message.pigmanAggroChance;
					Properties.config.oreProperties.pigmanAggroRadius = message.pigmanAggroRadius;
				}
			});
			return null;
		}
		
	}
}

The fact is that I think there's a better way to do so, I find this way clunky. Any advice is appreciated.

Edited by Insane96MCP
Link to comment
Share on other sites

3 hours ago, Insane96MCP said:

The fact is that I think there's a better way to do so, I find this way clunky.

This is a pretty good way to sync the config values. The only problem with this approach is that when the player leaves the server it's config values will still be the server's so I would also keep a backup copy before accepting server configs and revert to it when the player disconnects.

 

You could iterate the properties in the config, write their values to the buffer prefixing everything with the size of the property map, then read them as raw byte arrays as long as there is something to read from the buffer, then recreate the values in the handler from the byte arrays. This approach is however worse than the one you are using since

  • It assumes that all values in the config are 4-byte values(but there are ways around that but that makes the packet way longer and thus adds even more data to be transferred to the client when they log in)
  • It will not work well if the config versions differ from client to server(a new mod version or something) but to be fair your current approach won't work either and again there are ways around that but again that would make the packet even longer. 
Link to comment
Share on other sites

  • 2 weeks later...
On 10/23/2018 at 2:56 PM, V0idWa1k3r said:

The only problem with this approach is that when the player leaves the server it's config values will still be the server's so I would also keep a backup copy before accepting server configs and revert to it when the player disconnects

I'm having some slight problems reverting config back on logout. I have this event: 

@SubscribeEvent
public static void EventClientDisconnectionFromServer(ClientDisconnectionFromServerEvent event) {
  Properties.config = Properties.localConfig;
  System.out.println(Arrays.toString(Properties.config.hardness.blockHardness) + " " + Arrays.toString(Properties.localConfig.hardness.blockHardness));
}

The problem is that for some reasons the localConfig is changed to the server config too, without anyone touching it. (https://github.com/Insane-96/IguanaTweaksReborn/blob/master/common/net/insane96mcp/iguanatweaks/lib/Properties.java#L26

https://github.com/Insane-96/IguanaTweaksReborn/blob/master/common/net/insane96mcp/iguanatweaks/network/ConfigSync.java#L54)
 

My guess is that since ConfigOptions is static, changing the config object, changes the one in localConfig too.

Edited by Insane96MCP
Link to comment
Share on other sites

If you only want the variables normally controlled by your config to change on the client *for the current session* I would not directly overwrite the variables being controlled by the client's config at all (backup or no).

 

Instead, I would use two variables; the normal client config variables, and a separate set of variables sent by the server, which take precedence over the client ones.  This will prevent any possibility of the actual config file on the client being changed.

 

On the client side, you will of course need to clear the values of the "server-set" when disconnecting from the current server.

Link to comment
Share on other sites

9 hours ago, Insane96MCP said:

My guess is that since ConfigOptions is static, changing the config object, changes the one in localConfig too.

Well, yes, if the fields are static then they are not instance-based and thus you can't simply create another instance and be content. You need a different approach.

 

3 hours ago, Laike_Endaril said:

If you only want the variables normally controlled by your config to change on the client *for the current session* I would not directly overwrite the variables being controlled by the client's config at all (backup or no).

 

Instead, I would use two variables; the normal client config variables, and a separate set of variables sent by the server, which take precedence over the client ones.  This will prevent any possibility of the actual config file on the client being changed.

 

On the client side, you will of course need to clear the values of the "server-set" when disconnecting from the current server.

I kinda see your point but this is ultimately more work than the one config idea. Keeping two configs means that you now need to write the ugly:

int hardness = player.isConnectedToAServer() ? ServerConfig.hardness : ClientConfig.hardness;

everywhere(pseudo-code obviously). 

Link to comment
Share on other sites

5 minutes ago, V0idWa1k3r said:

I kinda see your point but this is ultimately more work than the one config idea. Keeping two configs means that you now need to write the ugly:

int hardness = player.isConnectedToAServer() ? ServerConfig.hardness : ClientConfig.hardness;

everywhere(pseudo-code obviously). 

I was thinking something more like this...

 

Normal config class:

import net.minecraftforge.common.config.Config;

@Config(modid = YourMod.MODID)
public class ClientConfig
{
    public static int powerLevel = 9001;
}

 

CombinedConfig, the class handling the combination ofc:

Spoiler

import io.netty.buffer.ByteBuf;
import net.minecraftforge.common.MinecraftForge;
import net.minecraftforge.fml.common.eventhandler.SubscribeEvent;
import net.minecraftforge.fml.common.network.FMLNetworkEvent;
import net.minecraftforge.fml.common.network.simpleimpl.IMessage;

public class CombinedConfig implements IMessage
{
    public static int powerLevel = ClientConfig.powerLevel;

    public CombinedConfig()
    {
        MinecraftForge.EVENT_BUS.register(CombinedConfig.class);
    }

    @Override
    public void fromBytes(ByteBuf buf)
    {
        powerLevel = buf.readInt();
    }

    @SubscribeEvent
    public static void EventClientDisconnectionFromServer(FMLNetworkEvent.ClientDisconnectionFromServerEvent event)
    {
        powerLevel = ClientConfig.powerLevel;
    }

    @Override
    public void toBytes(ByteBuf buf) {}
}

 

 

At this point, you should simply be able to reference CombinedConfig.powerLevel throughout the rest of your project.  Or you can put a getter in CombinedConfig and make that variable private if you're worried about public access to it.

  • Like 1
Link to comment
Share on other sites

On 11/5/2018 at 9:15 PM, Laike_Endaril said:

I was thinking something more like this...

 

Normal config class:


import net.minecraftforge.common.config.Config;

@Config(modid = YourMod.MODID)
public class ClientConfig
{
    public static int powerLevel = 9001;
}

 

CombinedConfig, the class handling the combination ofc:

  Hide contents


import io.netty.buffer.ByteBuf;
import net.minecraftforge.common.MinecraftForge;
import net.minecraftforge.fml.common.eventhandler.SubscribeEvent;
import net.minecraftforge.fml.common.network.FMLNetworkEvent;
import net.minecraftforge.fml.common.network.simpleimpl.IMessage;

public class CombinedConfig implements IMessage
{
    public static int powerLevel = ClientConfig.powerLevel;

    public CombinedConfig()
    {
        MinecraftForge.EVENT_BUS.register(CombinedConfig.class);
    }

    @Override
    public void fromBytes(ByteBuf buf)
    {
        powerLevel = buf.readInt();
    }

    @SubscribeEvent
    public static void EventClientDisconnectionFromServer(FMLNetworkEvent.ClientDisconnectionFromServerEvent event)
    {
        powerLevel = ClientConfig.powerLevel;
    }

    @Override
    public void toBytes(ByteBuf buf) {}
}

 

 

At this point, you should simply be able to reference CombinedConfig.powerLevel throughout the rest of your project.  Or you can put a getter in CombinedConfig and make that variable private if you're worried about public access to it.

With this the problem is that if I have lots of properties I have to double them.

Link to comment
Share on other sites

1 hour ago, Insane96MCP said:

With this the problem is that if I have lots of properties I have to double them.

If you mean in RAM, then yes, but if the alternative is to keep a copy of the previous value of each config option and reset them to what they were before joining the server, well...that also keeps a 2nd copy of each config option.  Both methods will also require you to reset something when leaving a server.

 

Other than that, my method only has one advantage.  Because mine never touches the client config directly, even if the client's game process is interrupted while connected to a server, their config file will not be corrupted...whereas if you are changing the actual client config, even temporarily, using the server's settings, the server's settings will be their new "client" settings from then on out until they either manually change them or log onto a different server and the same thing happens there.  You could prevent that issue by saving the entire client config to a separate file (not a config file) and deal with saving/loading that, but that would be an over-complicated workaround.

 

And ofc. when I say "the client's game process is interrupted" I mean either...

1. The game crashes

2. The client user ends the game process

3. Probably if the client user presses alt+f4, though I haven't tested that so don't take my word on it

4. The client's power goes out

5. Possibly if the client's OS decides to suddenly force a restart to install updates...

 

It's a bit of a niche advantage, but I don't really see a disadvantage.  That said it's not my mod, that's just how I would do it.

 

 

Edit 1 ===================================

Just in case you were thinking there was a 2nd config FILE, no there is not.  I may have named the class "CombinedConfig" but it doesn't generate or use a config file itself.

Edited by Laike_Endaril
Link to comment
Share on other sites

@Insane96MCP You could also just reload your config on disconnect or when the client opens another server or a singleplayer world.

VANILLA MINECRAFT CLASSES ARE THE BEST RESOURCES WHEN MODDING

I will be posting 1.15.2 modding tutorials on this channel. If you want to be notified of it do the normal YouTube stuff like subscribing, ect.

Forge and vanilla BlockState generator.

Link to comment
Share on other sites

  • 2 weeks later...
8 hours ago, Insane96MCP said:

How I can reload config from file?

You could probably just post a OnConfigChangeEvent to the event bus.

VANILLA MINECRAFT CLASSES ARE THE BEST RESOURCES WHEN MODDING

I will be posting 1.15.2 modding tutorials on this channel. If you want to be notified of it do the normal YouTube stuff like subscribing, ect.

Forge and vanilla BlockState generator.

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.