Jump to content

Trick Block


majesticmadman98

Recommended Posts

i want this block to be seen but can also be passed through by the player.

 

 

package a.Screens;

 

import java.util.Random;

 

import net.minecraft.block.Block;

import net.minecraft.block.material.Material;

import net.minecraft.client.renderer.texture.IconRegister;

import net.minecraft.creativetab.CreativeTabs;

import net.minecraft.util.AxisAlignedBB;

import net.minecraft.util.Icon;

import net.minecraft.world.IBlockAccess;

import net.minecraft.world.World;

import net.minecraftforge.common.ForgeDirection;

 

public class Ghost extends Block {

public static Block instance;

public int renderType = 0;

 

public Ghost(int par1, Material air) {

super(par1, Material.rock);

setUnlocalizedName("Ghost");

setResistance(2F);

setHardness(0.5F);

 

        this.setCreativeTab(CreativeTabs.tabBlock);

}

 

@Override

    public void registerIcons(IconRegister iconRegister)

    {

        blockIcon = iconRegister.registerIcon("oomod:Ghost");

    }

 

@Override

public boolean isBlockSolidOnSide(World world, int x, int y, int z, ForgeDirection side)

    {

return true;

    }

 

public Icon getBlockTexture(IBlockAccess world, int x, int y, int z, int side)

    {

//int mymeta = world.getBlockMetadata(x, y, z);

//if(mymeta == 0) {

int[] id = {world.getBlockId(x, y-1, z),world.getBlockId(x-1, y, z),world.getBlockId(x+1, y, z),world.getBlockId(x, y, z-1),world.getBlockId(x, y, z+1),world.getBlockId(x, y+1, z)};

int[] meta = {world.getBlockMetadata(x, y-1, z),world.getBlockMetadata(x-1, y, z),world.getBlockMetadata(x+1, y, z),world.getBlockMetadata(x, y, z-1),world.getBlockMetadata(x, y, z+1),world.getBlockMetadata(x, y+1, z)};

//.get.getBlockTextureFromSideAndMetadata(par5, par1IBlockAccess.getBlockMetadata(par2, par3, par4));

for(int i = 0; i < id.length; i++) {

Block block = Block.blocksList[id];

if(block != null) {

if(block != this && block.isOpaqueCube()) {

Icon icon = block.getIcon(side, meta);

if(icon != null) {

return icon;

}

}

else if(block == this) {

Icon icon = Block.grass.getBlockTextureFromSide(1);

switch(i) {

case 0:

icon = ((Light)block).getBlockTextureDirectional(world, x, y-1, z, side, 0);

break;

case 1:

icon = ((Light)block).getBlockTextureDirectional(world, x-1, y, z, side, 2);

break;

case 2:

icon = ((Light)block).getBlockTextureDirectional(world, x+1, y, z, side, 3);

break;

case 3:

icon = ((Light)block).getBlockTextureDirectional(world, x, y, z-1, side, 4);

break;

case 4:

icon = ((Light)block).getBlockTextureDirectional(world, x, y, z+1, side, 5);

break;

case 5:

icon = ((Light)block).getBlockTextureDirectional(world, x, y+1, z, side, 1);

break;

}

if(icon != null && icon != Block.grass.getBlockTextureFromSide(1)) {

return icon;

}

}

}

}

return Block.grass.getBlockTextureFromSide(1);

/*}

else {

return blockIcon;

}*/

    }

 

public Icon getBlockTextureDirectional(IBlockAccess world, int x, int y, int z, int side, int direction) {

 

int id = world.getBlockId(x, y, z);

int meta = world.getBlockMetadata(x, y, z);

Block block = Block.blocksList[id];

if(block != null) {

if(block != this) {

Icon icon = block.getIcon(side, meta);

        if(icon != null) {

        return icon;

        }

}

else {

Icon icon = Block.grass.getBlockTextureFromSide(1);

    switch(direction) {

    case 0:

        icon = ((Light)block).getBlockTextureDirectional(world, x, y-1, z, side, 0);

        break;

    case 1:

        icon = ((Light)block).getBlockTextureDirectional(world, x, y+1, z, side, 1);

        break;

    case 2:

        icon = ((Light)block).getBlockTextureDirectional(world, x-1, y, z, side, 2);

        break;

    case 3:

        icon = ((Light)block).getBlockTextureDirectional(world, x+1, y, z, side, 3);

        break;

    case 4:

        icon = ((Light)block).getBlockTextureDirectional(world, x, y, z-1, side, 4);

        break;

    case 5:

        icon = ((Light)block).getBlockTextureDirectional(world, x, y, z+1, side, 5);

        break;

    }

    return icon;

}

}

return Block.grass.getBlockTextureFromSide(1);

}

 

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

    {

return null;

    }

 

public void setBlockBoundsBasedOnState(IBlockAccess world, int x, int y, int z) {

this.setBlockBounds(0.0F, 0.0F, 0.0F, 1.0F, 1.0F, 1.0F);

}

 

public boolean isOpaqueCube()

    {

        return false;

    }

 

public boolean getBlocksMovement(IBlockAccess par1IBlockAccess, int par2, int par3, int par4)

    {

        return false;

    }

 

/**

* Returns which pass should this block be rendered on. 0 for solids and 1 for alpha

*/

    public int getRenderBlockPass()

    {

        return 1;

    }

   

    public boolean renderAsNormalBlock()

    {

        return false;

    }

   

    @Override

    public boolean shouldSideBeRendered(IBlockAccess world, int x, int y, int z, int side)

    {

    if(world.getBlockId(x, y, z) == blockID || world.isBlockOpaqueCube(x, y, z))

    return false;

        return true;

    }

   

    @Override

    public int getRenderType() {

    return renderType;

    }

 

@Override

public int quantityDropped(Random par1Random)

    {

        return 0;

    }

}

 

 

 

 

 

 

 

 

Link to comment
Share on other sites

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

 

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

 

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

Link to comment
Share on other sites

What's the block doing right now? Are you getting a crash? Please provide some useful information for us so we can help.

Don't PM me with questions. They will be ignored! Make a thread on the appropriate board for support.

 

1.12 -> 1.13 primer by williewillus.

 

1.7.10 and older versions of Minecraft are no longer supported due to it's age! Update to the latest version for support.

 

http://www.howoldisminecraft1710.today/

Link to comment
Share on other sites

dude, look at Draco's code, I think it does exactly what you want and it's not very complicated.

 

The most complicated thing in it is the camouflage code (getTexture).  And that's not even relevant here.

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

 

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

 

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

Link to comment
Share on other sites

ok, the block now works in most cases as i want but I require it to do leaves but they greyscale.

 

 

package a.Screens;

 

import java.util.Random;

 

import net.minecraft.block.Block;

import net.minecraft.block.material.Material;

import net.minecraft.client.renderer.texture.IconRegister;

import net.minecraft.creativetab.CreativeTabs;

import net.minecraft.util.AxisAlignedBB;

import net.minecraft.util.Icon;

import net.minecraft.world.IBlockAccess;

import net.minecraft.world.World;

import net.minecraftforge.common.ForgeDirection;

 

public class Ghost extends Block {

public static Block instance;

public int renderType = 0;

 

public Ghost(int par1, Material rock) {

super(par1, Material.rock);

setUnlocalizedName("Ghost");

this.setCreativeTab(CreativeTabs.tabBlock);

}

 

@Override

    public void registerIcons(IconRegister iconRegister)

    {

        blockIcon = iconRegister.registerIcon("oomod:ghost");

    }

 

@Override

public boolean isBlockSolidOnSide(World world, int x, int y, int z, ForgeDirection side)

    {

return true;

    }

 

public Icon getBlockTexture(IBlockAccess world, int x, int y, int z, int side)

    {

 

int[] id = {world.getBlockId(x, y-1, z),world.getBlockId(x-1, y, z),world.getBlockId(x+1, y, z),world.getBlockId(x, y, z-1),world.getBlockId(x, y, z+1),world.getBlockId(x, y+1, z)};

int[] meta = {world.getBlockMetadata(x, y-1, z),world.getBlockMetadata(x-1, y, z),world.getBlockMetadata(x+1, y, z),world.getBlockMetadata(x, y, z-1),world.getBlockMetadata(x, y, z+1),world.getBlockMetadata(x, y+1, z)};

 

for(int i = 0; i < id.length; i++) {

Block block = Block.blocksList[id];

if(block != null) {

if(block != this && block.isOpaqueCube()) {

Icon icon = block.getIcon(side, meta);

if(icon != null) {

return icon;

}

}

else if(block == this) {

Icon icon = Block.grass.getBlockTextureFromSide(1);

switch(i) {

case 0:

icon = ((Ghost)block).getBlockTextureDirectional(world, x, y-1, z, side, 0);

break;

case 1:

icon = ((Ghost)block).getBlockTextureDirectional(world, x-1, y, z, side, 2);

break;

case 2:

icon = ((Ghost)block).getBlockTextureDirectional(world, x+1, y, z, side, 3);

break;

case 3:

icon = ((Ghost)block).getBlockTextureDirectional(world, x, y, z-1, side, 4);

break;

case 4:

icon = ((Ghost)block).getBlockTextureDirectional(world, x, y, z+1, side, 5);

break;

case 5:

icon = ((Ghost)block).getBlockTextureDirectional(world, x, y+1, z, side, 1);

break;

}

if(icon != null && icon != Block.grass.getBlockTextureFromSide(1)) {

return icon;

}

}

}

}

return Block.grass.getBlockTextureFromSide(1);

 

    }

 

public Icon getBlockTextureDirectional(IBlockAccess world, int x, int y, int z, int side, int direction) {

 

int id = world.getBlockId(x, y, z);

int meta = world.getBlockMetadata(x, y, z);

Block block = Block.blocksList[id];

if(block != null) {

if(block != this) {

Icon icon = block.getIcon(side, meta);

        if(icon != null) {

        return icon;

        }

}

else {

Icon icon = Block.grass.getBlockTextureFromSide(1);

    switch(direction) {

    case 0:

        icon = ((Ghost)block).getBlockTextureDirectional(world, x, y-1, z, side, 0);

        break;

    case 1:

        icon = ((Ghost)block).getBlockTextureDirectional(world, x, y+1, z, side, 1);

        break;

    case 2:

        icon = ((Ghost)block).getBlockTextureDirectional(world, x-1, y, z, side, 2);

        break;

    case 3:

        icon = ((Ghost)block).getBlockTextureDirectional(world, x+1, y, z, side, 3);

        break;

    case 4:

        icon = ((Ghost)block).getBlockTextureDirectional(world, x, y, z-1, side, 4);

        break;

    case 5:

        icon = ((Ghost)block).getBlockTextureDirectional(world, x, y, z+1, side, 5);

        break;

    }

    return icon;

}

}

return Block.grass.getBlockTextureFromSide(1);

}

 

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

    {

return null;

    }

 

public void setBlockBoundsBasedOnState(IBlockAccess world, int x, int y, int z) {

this.setBlockBounds(0.0F, 0.0F, 0.0F, 1.0F, 1.0F, 1.0F);

}

 

public boolean isOpaqueCube()

    {

        return false;

    }

 

public boolean getBlocksMovement(IBlockAccess par1IBlockAccess, int par2, int par3, int par4)

    {

        return false;

    }

 

 

    public int getRenderBlockPass()

    {

        return 1;

    }

   

    public boolean renderAsNormalBlock()

    {

        return false;

    }

   

    @Override

    public boolean shouldSideBeRendered(IBlockAccess world, int x, int y, int z, int side)

    {

    if(world.getBlockId(x, y, z) == blockID || world.isBlockOpaqueCube(x, y, z))

    return false;

        return true;

    }

   

    @Override

    public int getRenderType() {

    return renderType;

    }

 

@Override

public int quantityDropped(Random par1Random)

    {

        return 0;

    }

}

 

Link to comment
Share on other sites

You'd need to override the getColor() function.  Not sure if there's one that passes the world object to it or not.

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

 

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

 

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

Link to comment
Share on other sites

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

    • Are there dungeon mods? If yes, make a test without these
    • that worked I seriously have no idea how I didn't notice that
    • Remove rubidium - you are already using embeddium, which is a fork of rubidium
    • Remove textrues_embeddium_options or add embeddium
    • 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  
  • Topics

×
×
  • Create New...

Important Information

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