Jump to content

Entity Spawns, "Rests", then Despawns :/


Jimmeh

Recommended Posts

Hey there! So I have a custom entity that I'm spawning when a player left clicks in the air. I'm doing this via a custom packet sent to the server telling it to spawn that entity. That's all good and well. However, the entity spawns in, doesn't do anything, then despawns after a few seconds. I have no idea where I'm going wrong. I believe I've done the packet handling, entity class, and AI correctly. Here's the respective code:

 

Packet and IMessageHandler classes:

public class PacketEntityRockSpawn implements IMessage {

    //sent from client to server telling it to spawn an EntityRock
    //Don't need to return anything because we'll keep rock count on server side

    private String entityID;

    public PacketEntityRockSpawn(){}

    public PacketEntityRockSpawn(String id){
        this.entityID = id;
    }

    @Override
    public void fromBytes(ByteBuf buf) {
        entityID = ByteBufUtils.readUTF8String(buf);
    }

    @Override
    public void toBytes(ByteBuf buf) { ByteBufUtils.writeUTF8String(buf, entityID);
    }

    public static class HandlerEntityRockSpawn implements IMessageHandler<PacketEntityRockSpawn, IMessage> {

        public HandlerEntityRockSpawn(){}

        @Override
        public IMessage onMessage(PacketEntityRockSpawn message, MessageContext ctx) {

            //received packet from client
            EntityPlayer player = ctx.getServerHandler().playerEntity;
            Entity entity = EntityList.createEntityByIDFromName(Test.MODID + "." + message.entityID, player.worldObj);
            World worldIn = player.worldObj;

            if (entity instanceof EntityRock && player.worldObj instanceof WorldServer)
            {
                ((WorldServer)player.worldObj).addScheduledTask(new Runnable() {
                    @Override
                    public void run() {
                        EntityRock entityRock = (EntityRock) entity;
                        entityRock.setOwner(player);
                        entityRock.onInitialSpawn(worldIn.getDifficultyForLocation(new BlockPos(entityRock)), (IEntityLivingData) null);
                        worldIn.spawnEntityInWorld(entity);
                        entityRock.playLivingSound();
                        PlayerHandler.getClientInfo(player).rocks.add(entityRock);
                        System.out.println("" + PlayerHandler.getClientInfo(player).rocks.size());
                    }
                });
            }

            return null;
        }
    }
}

 

Custom Entity Class:

public class EntityRock extends EntityAbilityBase{
    
    private EntityLivingBase owner;
    private double maxTravelDistance;
    private BlockPos startPosition;

    private final int HOME_RADIUS = 10;

    private static final DataParameter<Boolean> DATA_FOLLOWING = EntityDataManager.createKey(EntityRock.class, DataSerializers.BOOLEAN);
    private static final DataParameter<Boolean> DATA_LAUNCHED = EntityDataManager.createKey(EntityRock.class, DataSerializers.BOOLEAN);

    public EntityRock(World worldIn) {
        super(worldIn);

        this.setSize(1f, 1f);
        this.experienceValue = 200;
        this.stepHeight = 1;
    }

    public void setOwner(EntityLivingBase base){
        this.owner = base;
        this.setOwnerId(owner.getUniqueID());
        this.posX = owner.posX + this.rand.nextInt(3);
        this.posY = owner.posY + owner.getEyeHeight();
        this.posZ = owner.posZ + this.rand.nextInt(3);
        setHomePosAndDistance(getOwner().getPosition(), HOME_RADIUS);
    }

    @Override
    protected void entityInit(){
        super.entityInit();

        dataManager.register(DATA_FOLLOWING, true);
        dataManager.register(DATA_LAUNCHED, false);
    }

    @Override
    protected void initEntityAI(){
        System.out.println("TASK ADDED");
        this.tasks.addTask(0, new EntityAIFollowBender(this, 1.0, 2.0));
    }

    @Override
    protected void applyEntityAttributes(){
        super.applyEntityAttributes();

        this.getEntityAttribute(SharedMonsterAttributes.MAX_HEALTH).setBaseValue(200.0D); //100 full hearts
        this.getEntityAttribute(SharedMonsterAttributes.MOVEMENT_SPEED).setBaseValue(1.0D);
    }

    @Override
    protected PathNavigate getNewNavigator(World world){
        return new PathNavigateFlying(this, world);
    }

    /**
     * Called frequently so the entity can update its state every tick as required. For example, zombies and skeletons
     * use this to react to sunlight and start to burn.
     */
    public void onLivingUpdate()
    {
        if(isServerWorld() && getOwner() != null && !getOwner().isDead){
            if(dataManager.get(DATA_FOLLOWING)){
                setHomePosAndDistance(getOwner().getPosition(), HOME_RADIUS);
            } else if(dataManager.get(DATA_LAUNCHED)){
                setHomePosAndDistance(this.getPosition(), HOME_RADIUS);
            }
        }
        super.onLivingUpdate();
    }

    public void launch(EntityPlayer player) {
        int yaw = (int)player.rotationYaw;

        if(yaw<0) {            //due to the yaw running a -360 to positive 360
            yaw += 360;
        }        //not sure why it's that way
        yaw+=22;     //centers coordinates you may want to drop this line
        yaw%=360;  //and this one if you want a strict interpretation of the zones

        int facing = yaw/45;   //  360degrees divided by 45 == 8 zones (4 normal direction, 4 diagonal)

        //-----------------------
        RayTraceResult result = player.worldObj.rayTraceBlocks(player.getPositionEyes(1.0f), player.getLookVec());
        //remove task of following owner
        //add task of going to target
        //turn step height to 0
        //mark start position
        //play sound

        if(result == null)
            return;

        /*if(result.typeOfHit != RayTraceResult.Type.MISS)
            this.tasks.removeTask(followTask);

        if(result.typeOfHit == RayTraceResult.Type.BLOCK) {
            BlockPos pos = new BlockPos(result.hitVec);
            this.tasks.addTask(0, launhTask = new EntityAITargetBlock(this, 2.0D, Integer.MAX_VALUE, pos));
        }
        else if(result.typeOfHit == RayTraceResult.Type.ENTITY && result.entityHit instanceof EntityLivingBase)
            this.tasks.addTask(0, entityLaunchTask = new EntityAITargetEntity(this, false, (EntityLivingBase) result.entityHit));

        this.stepHeight = 0;
        this.startPosition = new BlockPos(this.getPositionVector());*/

    }

    @Override
    public boolean processInteract(EntityPlayer player, EnumHand hand, ItemStack stack){
        if(hand.equals(EnumHand.MAIN_HAND)){

        }
        //remove task of following owner
        //add task of going to target
        //turn step height to 0
        //mark start position
        //play sound
        return true;
    }


    @Override
    public void writeEntityToNBT(NBTTagCompound compound){
        super.writeEntityToNBT(compound);
    }

    @Override
    public void readFromNBT(NBTTagCompound compound){
        super.readFromNBT(compound);
    }

    @Override
    public EntityAgeable createChild(EntityAgeable ageable) {
        return null;
    }

    @Override
    public boolean canBePushed(){
        return false;
    }

    @Override
    public void fall(float distance, float damageMultiplier)
    {
    }

    @Override
    public boolean isAIDisabled(){return false;}

    protected SoundEvent getAmbientSound(){
        return TestSounds.Guard;
    }
    protected SoundEvent getHurtSound(){return TestSounds.Guard;}
    protected SoundEvent getDeathSound(){return TestSounds.Guard;}


 

The "base" class it extends:

public class EntityAbilityBase extends EntityTameable {

    public EntityAbilityBase(World worldIn) {
        super(worldIn);
    }

    @Override
    public EntityAgeable createChild(EntityAgeable ageable) {
        return null;
    }

    /**
     * Checks if this entity is running on a client.
     *
     * Required since MCP's isClientWorld returns the exact opposite...
     *
     * @return true if the entity runs on a client or false if it runs on a server
     */
    public final boolean isClient() {
        return worldObj.isRemote;
    }

    /**
     * Checks if this entity is running on a server.
     *
     * @return true if the entity runs on a server or false if it runs on a client
     */
    public final boolean isServer() {
        return !worldObj.isRemote;
    }
}

 

The AI task that it gets:

public class EntityAIFollowBender  extends EntityAIAbilityBase
{
    private EntityLivingBase owner;
    private double minRadius;
    public EntityAIFollowBender(EntityAbilityBase ability, double speed, double minRadius) {
        super(ability, speed);
        this.minRadius = minRadius;
    }

    @Override
    public boolean shouldExecute(){
        owner = ability.getOwner();
        if(owner == null || owner.isDead || (owner != null && owner.getPositionVector().distanceTo(ability.getPositionVector()) <= minRadius)){
            System.out.println("NOT EXECUTE");
            return false;
        }
        System.out.println("EXECUTE");
        return true;
    }

    @Override
    public void updateTask(){
        //if(ability.getNavigator() instanceof PathNavigateFlying){
          //  ((PathNavigateFlying) ability.getNavigator()).tryMoveToBender(owner, speed);
        //} else {
            ability.getNavigator().tryMoveToEntityLiving(owner, speed);
        //}
    }
}

 

The base class that the AI task extends:

public class EntityAIAbilityBase extends EntityAIBase {

    protected final EntityAbilityBase ability;
    protected final World world;
    protected final Random random;
    protected final double speed;

    public EntityAIAbilityBase(EntityAbilityBase ability, double speed){
        this.ability = ability;
        this.world = ability.worldObj;
        this.random = ability.getRNG();
        this.speed = speed;
    }

    @Override
    public boolean shouldExecute() {
        return true;
    }

    protected boolean tryMoveToBlockPos(BlockPos pos){
        return ability.getNavigator().tryMoveToXYZ(pos.getX() + 0.5, pos.getY() + 0.5, pos.getZ() + 0.5, speed);
    }
}

 

The custom PathNavigate:

public class PathNavigateFlying extends PathNavigateSwimmer {

    private Random rand = new Random();
    private double posX, posY, posZ;

    public PathNavigateFlying(EntityLiving entitylivingIn, World worldIn) {
        super(entitylivingIn, worldIn);
    }

    @Override
    protected PathFinder getPathFinder(){
        return new PathFinder(new NodeProcessorFlying());
    }

    @Override
    protected boolean canNavigate(){
        return true;
    }

    public boolean tryMoveToBender(Entity entity, double speed){
        this.posX = entity.posX + Offsets.values()[this.rand.nextInt(3)].getOutput();
        this.posY = entity.posY + entity.getEyeHeight();
        this.posZ = entity.posZ + Offsets.values()[this.rand.nextInt(3)].getOutput();
        boolean a = super.tryMoveToXYZ(posX, posY, posZ, speed);
        System.out.println("move: " + String.valueOf(this.currentPath == null)
                + " " + String.valueOf(this.currentPath.getCurrentPathLength() == 0));
        return a;
    }

    private enum Offsets{
        ONE(0),
        TWO(0.5),
        THREE(1.0);

        private double output;

        Offsets(double in){output = in;}

        public double getOutput() {
            return output;
        }
    }
}

 

And finally the custom node processor:

public class NodeProcessorFlying extends SwimNodeProcessor {

    /**
     * Returns PathPoint for given coordinates
     */
    @Override
    public PathPoint getPathPointToCoords(double x, double y, double target){
        return openPoint(
                MathHelper.floor_double(x - (entity.width / 2.0)),
                MathHelper.floor_double(y + 0.5),
                MathHelper.floor_double(target - (entity.width / 2.0))
        );
    }

    @Override
    public int findPathOptions(PathPoint[] pathOptions, PathPoint currentPoint, PathPoint targetPoint, float maxDistance){
        int i = 0;

        for(EnumFacing facing: EnumFacing.values()){
            PathPoint pathPoint = getSafePoint(entity,
                    currentPoint.xCoord + facing.getFrontOffsetX(),
                    currentPoint.yCoord + facing.getFrontOffsetY(),
                    currentPoint.zCoord + facing.getFrontOffsetZ()
            );

            if(pathPoint != null && !pathPoint.visited && pathPoint.distanceTo(targetPoint) < maxDistance){
                pathOptions[i++] = pathPoint;
            }
        }

        return i;
    }

    /**
     * Returns a point that the entity can safely move to
     */
    private PathPoint getSafePoint(Entity entityIn, int x, int y, int z){
        BlockPos pos = new BlockPos(x, y, z);

        entitySizeX = MathHelper.floor_float(entityIn.width + 1);
        entitySizeY = MathHelper.floor_float(entityIn.height + 1);
        entitySizeZ = MathHelper.floor_float(entityIn.width + 1);

        for(int ix = 0; ix < entitySizeX; ix++){
            for(int iy = 0; iy < entitySizeY; iy++){
                for(int iz = 0; iz < entitySizeZ; iz++){
                    IBlockState state = blockaccess.getBlockState(pos.add(ix, iy, iz));
                    if(state.getMaterial() != Material.AIR){
                        return null;
                    }
                }
            }
        }

        return openPoint(x, y, z);
    }

 

I know this is a lot to look at, so any help is greatly appreciated! :D

Link to comment
Share on other sites

Hi

 

I think the first place to start is to see if you can figure out why the entity despawns.

 

Try adding

System.out.println("XXX:side=" + (this.worldObj.isRemote ? "client" : "server"));

to suitable places in your entity code (for example onUpdate(), setDead()).  Or breakpoints.

 

-TGG

 

Hey, so I just tested that. It's immediately despawning server-side right after it's spawned in, however, the client-representation isn't "despawned" for a few seconds after, which I find weird. Unfortunately, I have no idea where to go from here xD Any direction is greatly appreciated!

Link to comment
Share on other sites

Okay, so I think I've kinda narrowed it down. I've added printing stacktraces to "despawnEntity()" and "setDead()". The results seem to be this:

 

- Entity spawns

- Immediately despawns (despawnEntity()) server side

- Client isn't "updated" about this because I still get "onLivingUpdate()" calls client-side

- Entity eventually is setDead() client side after a few seconds.

 

I have absolutely no idea where to go from here. There seems to be a break in server -> client synchronicity. That's the best guess I have right now xD

 

Here's the entity class that I'm using:

public class EntityAbilityBase extends EntityTameable {

    public EntityAbilityBase(World worldIn) {
        super(worldIn);
    }

    @Override
    public EntityAgeable createChild(EntityAgeable ageable) {
        return null;
    }

    /**
     * Checks if this entity is running on a client.
     *
     * Required since MCP's isClientWorld returns the exact opposite...
     *
     * @return true if the entity runs on a client or false if it runs on a server
     */
    public final boolean isClient() {
        return worldObj.isRemote;
    }

    /**
     * Checks if this entity is running on a server.
     *
     * @return true if the entity runs on a server or false if it runs on a client
     */
    public final boolean isServer() {
        return !worldObj.isRemote;
    }

    @Override
    protected void despawnEntity(){
        System.out.println("DESPAWNED " + this.worldObj.isRemote);
        for (StackTraceElement ste : Thread.currentThread().getStackTrace()) {
            System.out.println(ste);
        }
        super.despawnEntity();
    }

    @Override
    public void setDead(){
        for (StackTraceElement ste : Thread.currentThread().getStackTrace()) {
            System.out.println(ste);
        }
        super.setDead();
    }
}

 

Here's the server console log:

http://hastebin.com/ulijiloyuq.css

 

And here's the client console log, which finally has setDead() called seconds after the server despawns:

http://hastebin.com/aharugajuf.md

 

As always, any help is now beyond appreciated xD Thanks!

Link to comment
Share on other sites

Hi

 

The lag between server and client isn't anything particular to worry about at this stage, I think.

 

I think you need to figure out what's causing your entity to despawn in such a hurry.

 

I can't tell what those obfuscated methods are (and MCPBot is not talking to me today, not sure why!), but in any case I would suggest you put a breakpoint in the server despawn instead.  Or run your test in an integrated server from Eclipse (or IDEA) instead of a built version in dedicated server.

 

-TGG

Link to comment
Share on other sites

Alrighty. So I've managed to get the deobfuscated console logs for the client and server. I've sat here trying to trace it one method to the next to figure out why this thing keeps despawning, but I can't seem to figure it out. I've added breakpoints every where I can think to put them, especially within EntityLiving#despawnEntity(). I even added the LivingEntitySpawn.AllowDespawn event, setting that result to Result.DENY, and that did absolutely nothing (in fact, it didn't even fire). I'm completely lost on what to do D:

 

Here's the server console log:

http://hastebin.com/acidipizuw.css

 

Here's the EntityAbilityBase referred to in that log:

http://hastebin.com/rinejibele.java

 

And lastly, the EntityRock referred to as well:

http://hastebin.com/mudoquguwe.java

 

Once again, any help is greatly appreciated, because right now, I can't make custom entities :/

Link to comment
Share on other sites

Hi

 

The name of the despawn method is actually a bit misleading.  It just checks for whether the entity needs to be despawned (i.e. because it's too far away from the player); usually it doesn't do anything.

 

Try putting the breakpoint into setDead() instead, and posting us the stack trace from there.

 

-TGG

 

 

Link to comment
Share on other sites

Sorry about the late reply. I've been pretty busy! Okay, so I have the deobfuscated console logs of the server and client here. I've tried to "cross reference" them to figure things out, but I'm still having a difficult time. setDead() is only being called clientside, I've noticed.

 

Here's the server:

http://hastebin.com/pahiqamasu.css

 

Here's the console:

http://hastebin.com/ayihawusez.sql

 

And here's the class in which I've overridden the despawnEntity() and setDead() methods (I left in the whole class that way the line numbers would line up correctly):

http://hastebin.com/xehapoquyi.java

 

Once again, all help is greatly appreciated! Thank you!

Link to comment
Share on other sites

Entity being killed onlyon client means that it's considered as "memory garbage" - it's too far, not in render or does not meet client stay conditions.

 

Try tracing origin of client entity remove packet and put a few breakpoints there to find which criteria is validated/invalidated.

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
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.



  • Recently Browsing

    • No registered users viewing this page.
  • Posts

    • I don't understand why minecraft crashes when I log in to the server https://mclo.gs/jZVia3x crash log
    • ---- Minecraft Crash Report ---- // You're mean. Time: 3/29/23 9:20 PM Description: Exception ticking world java.util.ConcurrentModificationException: null     at java.util.ArrayList$ArrayListSpliterator.forEachRemaining(ArrayList.java:1380) ~[?:1.8.0_51] {}     at java.util.stream.AbstractPipeline.copyInto(AbstractPipeline.java:512) ~[?:1.8.0_51] {}     at java.util.stream.AbstractPipeline.wrapAndCopyInto(AbstractPipeline.java:502) ~[?:1.8.0_51] {}     at java.util.stream.StreamSpliterators$WrappingSpliterator.forEachRemaining(StreamSpliterators.java:312) ~[?:1.8.0_51] {}     at java.util.stream.Streams$ConcatSpliterator.forEachRemaining(Streams.java:743) ~[?:1.8.0_51] {}     at java.util.stream.ReferencePipeline$Head.forEach(ReferencePipeline.java:580) ~[?:1.8.0_51] {}     at net.minecraft.world.IServerWorld.func_242417_l(SourceFile:11) ~[?:?] {re:mixin,re:computing_frames,re:classloading}     at net.minecraft.world.spawner.WorldEntitySpawner.func_234966_a_(WorldEntitySpawner.java:178) ~[?:?] {re:mixin,re:classloading,pl:mixin:APP:enhancedcelestials.mixins.json:MixinWorldEntitySpawner,pl:mixin:APP:enhancedcelestials.mixins.json:access.WorldEntitySpawnerAccess,pl:mixin:A}     at net.minecraft.world.spawner.WorldEntitySpawner.func_234967_a_(WorldEntitySpawner.java:124) ~[?:?] {re:mixin,re:classloading,pl:mixin:APP:enhancedcelestials.mixins.json:MixinWorldEntitySpawner,pl:mixin:APP:enhancedcelestials.mixins.json:access.WorldEntitySpawnerAccess,pl:mixin:A}     at net.minecraft.world.spawner.WorldEntitySpawner.func_234979_a_(WorldEntitySpawner.java:110) ~[?:?] {re:mixin,re:classloading,pl:mixin:APP:enhancedcelestials.mixins.json:MixinWorldEntitySpawner,pl:mixin:APP:enhancedcelestials.mixins.json:access.WorldEntitySpawnerAccess,pl:mixin:A}     at net.minecraft.world.server.ServerChunkProvider.func_241099_a_(ServerChunkProvider.java:364) ~[?:?] {re:mixin,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B,pl:mixin:APP:roadrunner.mixins.json:alloc.chunk_ticking.ServerChunkManagerMixin,pl:mixin:APP:roadrunner.mixins.json:world.chunk_access.ServerChunkManagerMixin,pl:mixin:APP:enhancedcelestials.mixins.json:MixinServerChunkProvider,pl:mixin:A}     at net.minecraft.world.server.ServerChunkProvider$$Lambda$56374/371688629.accept(Unknown Source) ~[?:?] {}     at java.util.ArrayList.forEach(ArrayList.java:1249) ~[?:1.8.0_51] {}     at net.minecraft.world.server.ServerChunkProvider.func_217220_m(ServerChunkProvider.java:351) ~[?:?] {re:mixin,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B,pl:mixin:APP:roadrunner.mixins.json:alloc.chunk_ticking.ServerChunkManagerMixin,pl:mixin:APP:roadrunner.mixins.json:world.chunk_access.ServerChunkManagerMixin,pl:mixin:APP:enhancedcelestials.mixins.json:MixinServerChunkProvider,pl:mixin:A}     at net.minecraft.world.server.ServerChunkProvider.func_217207_a(ServerChunkProvider.java:326) ~[?:?] {re:mixin,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B,pl:mixin:APP:roadrunner.mixins.json:alloc.chunk_ticking.ServerChunkManagerMixin,pl:mixin:APP:roadrunner.mixins.json:world.chunk_access.ServerChunkManagerMixin,pl:mixin:APP:enhancedcelestials.mixins.json:MixinServerChunkProvider,pl:mixin:A}     at net.minecraft.world.server.ServerWorld.func_72835_b(ServerWorld.java:333) ~[?:?] {re:mixin,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B,pl:mixin:APP:cavesandcliffs.mixins.json:common.world.gen.ServerWorldMixin,pl:mixin:APP:library_of_exile-mixins.json:ServerWorldMixin,pl:mixin:APP:architects_palette.mixins.json:ServerWorldMixin,pl:mixin:APP:abnormals_core.mixins.json:ServerWorldMixin,pl:mixin:APP:endergetic.mixins.json:ServerWorldMixin,pl:mixin:APP:roadrunner.mixins.json:alloc.chunk_random.ServerWorldMixin,pl:mixin:APP:roadrunner.mixins.json:alloc.world_ticking.ServerWorldMixin,pl:mixin:APP:roadrunner.mixins.json:entity.inactive_navigations.ServerWorldMixin,pl:mixin:APP:roadrunner.mixins.json:world.tick_scheduler.ServerWorldMixin,pl:mixin:APP:quark.mixins.json:ServerWorldMixin,pl:mixin:APP:enhancedcelestials.mixins.json:MixinServerWorld,pl:mixin:A}     at net.minecraft.server.MinecraftServer.func_71190_q(MinecraftServer.java:851) ~[?:?] {re:mixin,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B,pl:mixin:APP:structure_gel.mixins.json:MinecraftServerMixin,pl:mixin:APP:paxi.mixins.json:MixinMinecraftServer,pl:mixin:APP:mixins.shrines.json:MixinMinecraftServer,pl:mixin:APP:roadrunner.mixins.json:world.light_batching.MinecraftServerMixin,pl:mixin:APP:betterendforge.mixins.json:MinecraftServerMixin,pl:mixin:APP:byg.mixins.json:server.MixinMinecraftServer,pl:mixin:A}     at net.minecraft.server.MinecraftServer.func_71217_p(MinecraftServer.java:787) ~[?:?] {re:mixin,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B,pl:mixin:APP:structure_gel.mixins.json:MinecraftServerMixin,pl:mixin:APP:paxi.mixins.json:MixinMinecraftServer,pl:mixin:APP:mixins.shrines.json:MixinMinecraftServer,pl:mixin:APP:roadrunner.mixins.json:world.light_batching.MinecraftServerMixin,pl:mixin:APP:betterendforge.mixins.json:MinecraftServerMixin,pl:mixin:APP:byg.mixins.json:server.MixinMinecraftServer,pl:mixin:A}     at net.minecraft.server.integrated.IntegratedServer.func_71217_p(IntegratedServer.java:78) ~[?:?] {re:classloading,pl:runtimedistcleaner:A}     at net.minecraft.server.MinecraftServer.func_240802_v_(MinecraftServer.java:642) [?:?] {re:mixin,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B,pl:mixin:APP:structure_gel.mixins.json:MinecraftServerMixin,pl:mixin:APP:paxi.mixins.json:MixinMinecraftServer,pl:mixin:APP:mixins.shrines.json:MixinMinecraftServer,pl:mixin:APP:roadrunner.mixins.json:world.light_batching.MinecraftServerMixin,pl:mixin:APP:betterendforge.mixins.json:MinecraftServerMixin,pl:mixin:APP:byg.mixins.json:server.MixinMinecraftServer,pl:mixin:A}     at net.minecraft.server.MinecraftServer.func_240783_a_(MinecraftServer.java:232) [?:?] {re:mixin,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B,pl:mixin:APP:structure_gel.mixins.json:MinecraftServerMixin,pl:mixin:APP:paxi.mixins.json:MixinMinecraftServer,pl:mixin:APP:mixins.shrines.json:MixinMinecraftServer,pl:mixin:APP:roadrunner.mixins.json:world.light_batching.MinecraftServerMixin,pl:mixin:APP:betterendforge.mixins.json:MinecraftServerMixin,pl:mixin:APP:byg.mixins.json:server.MixinMinecraftServer,pl:mixin:A}     at net.minecraft.server.MinecraftServer$$Lambda$54373/611958440.run(Unknown Source) [?:?] {}     at java.lang.Thread.run(Thread.java:745) [?:1.8.0_51] {} A detailed walkthrough of the error, its code path and all known details is as follows: --------------------------------------------------------------------------------------- -- Head -- Thread: Server thread Stacktrace:     at java.util.ArrayList$ArrayListSpliterator.forEachRemaining(ArrayList.java:1380) ~[?:1.8.0_51] {}     at java.util.stream.AbstractPipeline.copyInto(AbstractPipeline.java:512) ~[?:1.8.0_51] {}     at java.util.stream.AbstractPipeline.wrapAndCopyInto(AbstractPipeline.java:502) ~[?:1.8.0_51] {}     at java.util.stream.StreamSpliterators$WrappingSpliterator.forEachRemaining(StreamSpliterators.java:312) ~[?:1.8.0_51] {}     at java.util.stream.Streams$ConcatSpliterator.forEachRemaining(Streams.java:743) ~[?:1.8.0_51] {}     at java.util.stream.ReferencePipeline$Head.forEach(ReferencePipeline.java:580) ~[?:1.8.0_51] {}     at net.minecraft.world.IServerWorld.func_242417_l(SourceFile:11) ~[?:?] {re:mixin,re:computing_frames,re:classloading}     at net.minecraft.world.spawner.WorldEntitySpawner.func_234966_a_(WorldEntitySpawner.java:178) ~[?:?] {re:mixin,re:classloading,pl:mixin:APP:enhancedcelestials.mixins.json:MixinWorldEntitySpawner,pl:mixin:APP:enhancedcelestials.mixins.json:access.WorldEntitySpawnerAccess,pl:mixin:A}     at net.minecraft.world.spawner.WorldEntitySpawner.func_234967_a_(WorldEntitySpawner.java:124) ~[?:?] {re:mixin,re:classloading,pl:mixin:APP:enhancedcelestials.mixins.json:MixinWorldEntitySpawner,pl:mixin:APP:enhancedcelestials.mixins.json:access.WorldEntitySpawnerAccess,pl:mixin:A}     at net.minecraft.world.spawner.WorldEntitySpawner.func_234979_a_(WorldEntitySpawner.java:110) ~[?:?] {re:mixin,re:classloading,pl:mixin:APP:enhancedcelestials.mixins.json:MixinWorldEntitySpawner,pl:mixin:APP:enhancedcelestials.mixins.json:access.WorldEntitySpawnerAccess,pl:mixin:A}     at net.minecraft.world.server.ServerChunkProvider.func_241099_a_(ServerChunkProvider.java:364) ~[?:?] {re:mixin,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B,pl:mixin:APP:roadrunner.mixins.json:alloc.chunk_ticking.ServerChunkManagerMixin,pl:mixin:APP:roadrunner.mixins.json:world.chunk_access.ServerChunkManagerMixin,pl:mixin:APP:enhancedcelestials.mixins.json:MixinServerChunkProvider,pl:mixin:A}     at net.minecraft.world.server.ServerChunkProvider$$Lambda$56374/371688629.accept(Unknown Source) ~[?:?] {}     at java.util.ArrayList.forEach(ArrayList.java:1249) ~[?:1.8.0_51] {}     at net.minecraft.world.server.ServerChunkProvider.func_217220_m(ServerChunkProvider.java:351) ~[?:?] {re:mixin,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B,pl:mixin:APP:roadrunner.mixins.json:alloc.chunk_ticking.ServerChunkManagerMixin,pl:mixin:APP:roadrunner.mixins.json:world.chunk_access.ServerChunkManagerMixin,pl:mixin:APP:enhancedcelestials.mixins.json:MixinServerChunkProvider,pl:mixin:A}     at net.minecraft.world.server.ServerChunkProvider.func_217207_a(ServerChunkProvider.java:326) ~[?:?] {re:mixin,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B,pl:mixin:APP:roadrunner.mixins.json:alloc.chunk_ticking.ServerChunkManagerMixin,pl:mixin:APP:roadrunner.mixins.json:world.chunk_access.ServerChunkManagerMixin,pl:mixin:APP:enhancedcelestials.mixins.json:MixinServerChunkProvider,pl:mixin:A}     at net.minecraft.world.server.ServerWorld.func_72835_b(ServerWorld.java:333) ~[?:?] {re:mixin,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B,pl:mixin:APP:cavesandcliffs.mixins.json:common.world.gen.ServerWorldMixin,pl:mixin:APP:library_of_exile-mixins.json:ServerWorldMixin,pl:mixin:APP:architects_palette.mixins.json:ServerWorldMixin,pl:mixin:APP:abnormals_core.mixins.json:ServerWorldMixin,pl:mixin:APP:endergetic.mixins.json:ServerWorldMixin,pl:mixin:APP:roadrunner.mixins.json:alloc.chunk_random.ServerWorldMixin,pl:mixin:APP:roadrunner.mixins.json:alloc.world_ticking.ServerWorldMixin,pl:mixin:APP:roadrunner.mixins.json:entity.inactive_navigations.ServerWorldMixin,pl:mixin:APP:roadrunner.mixins.json:world.tick_scheduler.ServerWorldMixin,pl:mixin:APP:quark.mixins.json:ServerWorldMixin,pl:mixin:APP:enhancedcelestials.mixins.json:MixinServerWorld,pl:mixin:A} -- Affected level -- Details:     All players: 1 total; [ServerPlayerEntity['Vy_Victory'/2269, l='ServerLevel[New World test]', x=-232.37, y=67.00, z=-57.79]]     Chunk stats: ServerChunkCache: 2025     Level dimension: minecraft:overworld     Level spawn location: World: (-123,63,-149), Chunk: (at 5,3,11 in -8,-10; contains blocks -128,0,-160 to -113,255,-145), Region: (-1,-1; contains chunks -32,-32 to -1,-1, blocks -512,0,-512 to -1,255,-1)     Level time: 1009 game time, 1009 day time     Level name: New World test     Level game mode: Game mode: survival (ID 0). Hardcore: false. Cheats: false     Level weather: Rain time: 35160 (now: false), thunder time: 32599 (now: false)     Known server brands: forge     Level was modded: true     Level storage version: 0x04ABD - Anvil Stacktrace:     at net.minecraft.server.MinecraftServer.func_71190_q(MinecraftServer.java:851) ~[?:?] {re:mixin,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B,pl:mixin:APP:structure_gel.mixins.json:MinecraftServerMixin,pl:mixin:APP:paxi.mixins.json:MixinMinecraftServer,pl:mixin:APP:mixins.shrines.json:MixinMinecraftServer,pl:mixin:APP:roadrunner.mixins.json:world.light_batching.MinecraftServerMixin,pl:mixin:APP:betterendforge.mixins.json:MinecraftServerMixin,pl:mixin:APP:byg.mixins.json:server.MixinMinecraftServer,pl:mixin:A}     at net.minecraft.server.MinecraftServer.func_71217_p(MinecraftServer.java:787) ~[?:?] {re:mixin,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B,pl:mixin:APP:structure_gel.mixins.json:MinecraftServerMixin,pl:mixin:APP:paxi.mixins.json:MixinMinecraftServer,pl:mixin:APP:mixins.shrines.json:MixinMinecraftServer,pl:mixin:APP:roadrunner.mixins.json:world.light_batching.MinecraftServerMixin,pl:mixin:APP:betterendforge.mixins.json:MinecraftServerMixin,pl:mixin:APP:byg.mixins.json:server.MixinMinecraftServer,pl:mixin:A}     at net.minecraft.server.integrated.IntegratedServer.func_71217_p(IntegratedServer.java:78) ~[?:?] {re:classloading,pl:runtimedistcleaner:A}     at net.minecraft.server.MinecraftServer.func_240802_v_(MinecraftServer.java:642) [?:?] {re:mixin,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B,pl:mixin:APP:structure_gel.mixins.json:MinecraftServerMixin,pl:mixin:APP:paxi.mixins.json:MixinMinecraftServer,pl:mixin:APP:mixins.shrines.json:MixinMinecraftServer,pl:mixin:APP:roadrunner.mixins.json:world.light_batching.MinecraftServerMixin,pl:mixin:APP:betterendforge.mixins.json:MinecraftServerMixin,pl:mixin:APP:byg.mixins.json:server.MixinMinecraftServer,pl:mixin:A}     at net.minecraft.server.MinecraftServer.func_240783_a_(MinecraftServer.java:232) [?:?] {re:mixin,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B,pl:mixin:APP:structure_gel.mixins.json:MinecraftServerMixin,pl:mixin:APP:paxi.mixins.json:MixinMinecraftServer,pl:mixin:APP:mixins.shrines.json:MixinMinecraftServer,pl:mixin:APP:roadrunner.mixins.json:world.light_batching.MinecraftServerMixin,pl:mixin:APP:betterendforge.mixins.json:MinecraftServerMixin,pl:mixin:APP:byg.mixins.json:server.MixinMinecraftServer,pl:mixin:A}     at net.minecraft.server.MinecraftServer$$Lambda$54373/611958440.run(Unknown Source) [?:?] {}     at java.lang.Thread.run(Thread.java:745) [?:1.8.0_51] {} -- System Details -- Details:     Minecraft Version: 1.16.5     Minecraft Version ID: 1.16.5     Operating System: Windows 10 (amd64) version 10.0     Java Version: 1.8.0_51, Oracle Corporation     Java VM Version: Java HotSpot(TM) 64-Bit Server VM (mixed mode), Oracle Corporation     Memory: 5491559560 bytes (5237 MB) / 11145314304 bytes (10629 MB) up to 11185160192 bytes (10667 MB)     CPUs: 12     JVM Flags: 6 total; -XX:HeapDumpPath=MojangTricksIntelDriversForPerformance_javaw.exe_minecraft.exe.heapdump -Xss1M -Xmx12288m -Xms256m -Xmx12000m -Xms12000m     ModLauncher: 8.1.3+8.1.3+main-8.1.x.c94d18ec     ModLauncher launch target: fmlclient     ModLauncher naming: srg     ModLauncher services:          /mixin-0.8.4.jar mixin PLUGINSERVICE          /eventbus-4.0.0.jar eventbus PLUGINSERVICE          /forge-1.16.5-36.2.34.jar object_holder_definalize PLUGINSERVICE          /forge-1.16.5-36.2.34.jar runtime_enum_extender PLUGINSERVICE          /accesstransformers-3.0.1.jar accesstransformer PLUGINSERVICE          /forge-1.16.5-36.2.34.jar capability_inject_definalize PLUGINSERVICE          /forge-1.16.5-36.2.34.jar runtimedistcleaner PLUGINSERVICE          /mixin-0.8.4.jar mixin TRANSFORMATIONSERVICE          /forge-1.16.5-36.2.34.jar fml TRANSFORMATIONSERVICE      FML: 36.2     Forge: net.minecraftforge:36.2.34     FML Language Providers:          javafml@36.2         minecraft@1         kotlinforforge@1.17.0     Mod List:          dynamiclightsreforged-mc1.16.5_v1.0.1.jar         |Dynamic Lights Reforged       |dynamiclightsreforged         |mc1.16.5_v1.0.1     |DONE      |Manifest: NOSIGNATURE         create-stuff-additions1.16.5_v1.1.6.jar           |Create Stuff Additions        |create_stuff_additions        |1.1.6               |DONE      |Manifest: NOSIGNATURE         BetterDungeons-1.16.4-1.2.1.jar                   |YUNG's Better Dungeons        |betterdungeons                |1.16.4-1.2.1        |DONE      |Manifest: NOSIGNATURE         ftb-essentials-1605.1.5-build.32.jar              |FTB Essentials                |ftbessentials                 |1605.1.5-build.32   |DONE      |Manifest: NOSIGNATURE         infernal-expansion-1.16.5-2.5.0.jar               |Infernal Expansion            |infernalexp                   |2.5.0               |DONE      |Manifest: NOSIGNATURE         nether-s-exoticism-1.16.5-1.1.10.jar              |Nether's Exoticism            |nethers_exoticism             |1.1.10              |DONE      |Manifest: NOSIGNATURE         mcw-windows-2.0.3-mc1.16.5.jar                    |Macaw's Windows               |mcwwindows                    |2.0.3               |DONE      |Manifest: NOSIGNATURE         stalwart-dungeons-1.16.5-1.1.7.jar                |Stalwart Dungeons             |stalwart_dungeons             |1.1.7               |DONE      |Manifest: NOSIGNATURE         strawgolem-1.16-1.9.jar                           |Straw Golem                   |strawgolem                    |1.16-1.9            |DONE      |Manifest: NOSIGNATURE         BetterCaves-Forge-1.16.4-1.1.2.jar                |YUNG's Better Caves           |bettercaves                   |1.16.4-1.1.2        |DONE      |Manifest: NOSIGNATURE         farmersdelightintegrations-1.16.5-1.2.jar         |Farmer's Delight Compats      |farmersdelightintegrations    |1.16.5-1.2          |DONE      |Manifest: NOSIGNATURE         YungsApi-1.16.4-Forge-13.jar                      |YUNG's API                    |yungsapi                      |1.16.4-Forge-13     |DONE      |Manifest: NOSIGNATURE         upgradednetherite_items-1.16.5-1.1.0.2-release.jar|Upgraded Netherite : Items    |upgradednetherite_items       |1.16.5-1.1.0.2-relea|DONE      |Manifest: NOSIGNATURE         lootbeams-1.16.5-release-july1722.jar             |LootBeams                     |lootbeams                     |1.16.5              |DONE      |Manifest: NOSIGNATURE         guardvillagers-1.16.5.1.2.6.jar                   |Guard Villagers               |guardvillagers                |1.2.6               |DONE      |Manifest: NOSIGNATURE         randompatches-2.4.4-forge.jar                     |RandomPatches                 |randompatches                 |2.4.4-forge         |DONE      |Manifest: 92:f6:29:d4:09:89:f5:f5:98:5e:20:34:31:d0:7b:58:22:06:bd:a5:d1:6a:92:6e:ac:3d:8d:18:c5:b2:5b:d7         HarderSpawners-1.16.5-1.36.0.18.jar               |Harder Spawners Mod           |harderspawners                |1.36.0.17           |DONE      |Manifest: NOSIGNATURE         Apotheosis-1.16.5-4.8.9A0.jar                     |Apotheosis                    |apotheosis                    |4.8.9A0             |DONE      |Manifest: NOSIGNATURE         abyg-1.2-forge.jar                                |[BYG Addon] Enhanced Vanilla B|bygvanillabiomes              |1.0.0               |DONE      |Manifest: NOSIGNATURE         what_did_you_vote_for-1.16.5-1.0.5.jar            |What Did You Vote For?        |whatareyouvotingfor           |1.0                 |DONE      |Manifest: NOSIGNATURE         JustEnoughResources-1.16.5-0.12.1.133.jar         |Just Enough Resources         |jeresources                   |0.12.1.133          |DONE      |Manifest: NOSIGNATURE         TinkersDelight-1.16-1.8.jar                       |Tinker's Delight              |tdelight                      |1.16-1.8            |DONE      |Manifest: NOSIGNATURE         Paraglider-1.16.5-1.3.2.10.jar                    |Paraglider                    |paraglider                    |1.3.2.10            |DONE      |Manifest: NOSIGNATURE         RevampedWolf-1.16.4-0.7.1.jar                     |RevampedWolf                  |revampedwolf                  |1.16.4-0.7.1        |DONE      |Manifest: NOSIGNATURE         supplementaries-1.16.5-0.18.4b.jar                |Supplementaries               |supplementaries               |0.18.2              |DONE      |Manifest: NOSIGNATURE         upgradednetherite-1.16.5-2.1.0.1-release.jar      |Upgraded Netherite            |upgradednetherite             |1.16.5-2.1.0.1-relea|DONE      |Manifest: NOSIGNATURE         structure_gel-1.16.5-1.7.8.jar                    |Structure Gel API             |structure_gel                 |1.7.8               |DONE      |Manifest: NOSIGNATURE         corpse-1.16.5-1.0.6.jar                           |Corpse                        |corpse                        |1.16.5-1.0.6        |DONE      |Manifest: NOSIGNATURE         TinySkeletons-v1.0.1-1.16.5-Forge.jar             |Tiny Skeletons                |tinyskeletons                 |1.0.1               |DONE      |Manifest: 9a:09:85:98:65:c4:8c:11:c5:49:f6:d6:33:23:39:df:8d:b4:ff:92:84:b8:bd:a5:83:9f:ac:7f:2a:d1:4b:6a         TenshiLib-1.16.3-1.3.0.jar                        |TenshiLib                     |tenshilib                     |1.16.3-1.3.0        |DONE      |Manifest: NOSIGNATURE         cleancut-mc1.16-2.2-forge.jar                     |Clean Cut                     |cleancut                      |2.2                 |DONE      |Manifest: NOSIGNATURE         torchmaster-2.3.8.jar                             |Torchmaster                   |torchmaster                   |2.3.8               |DONE      |Manifest: NOSIGNATURE         repurposed_structures_forge-3.4.7+1.16.5.jar      |Repurposed Structures         |repurposed_structures         |3.4.7+1.16.5        |DONE      |Manifest: NOSIGNATURE         morevillagers-FORGE-1.16.5-1.5.5.jar              |More Villagers                |morevillagers                 |1.5.5               |DONE      |Manifest: NOSIGNATURE         BetterCompatibilityChecker-1.0.7-build.22+mc1.16.5|Better Compatibility Checker  |bcc                           |1.0.7-build.22+mc1.1|DONE      |Manifest: NOSIGNATURE         MorePaths-1.16.1-1.3.2.jar                        |MorePaths                     |morepaths                     |1.16-1.3.2          |DONE      |Manifest: NOSIGNATURE         Aquamirae 3.0.0.jar                               |Aquamirae                     |ob_aquamirae                  |3.0.0               |DONE      |Manifest: NOSIGNATURE         dungeons_plus-1.16.5-1.1.5.jar                    |Dungeons Plus                 |dungeons_plus                 |1.1.5               |DONE      |Manifest: NOSIGNATURE         UnusualEnd1.16_V1.1.8.jar                         |Unusual End                   |unusualend                    |1.1.0               |DONE      |Manifest: NOSIGNATURE         mcw-trapdoors-1.0.7-mc1.16.5.jar                  |Macaw's Trapdoors             |mcwtrpdoors                   |1.0.7               |DONE      |Manifest: NOSIGNATURE         silent-gear-1.16.5-2.6.30.jar                     |Silent Gear                   |silentgear                    |2.6.30              |DONE      |Manifest: NOSIGNATURE         supermartijn642corelib-1.0.19-forge-mc1.16.5.jar  |SuperMartijn642's Core Lib    |supermartijn642corelib        |1.0.19              |DONE      |Manifest: NOSIGNATURE         BetterDefaultBiomes-1.16.4+-Alpha 2.6.1.jar       |Better Default Biomes         |betterdefaultbiomes           |Alpha 2.6.0         |DONE      |Manifest: NOSIGNATURE         YungsBridges-Forge-1.16.4-1.0.1.jar               |YUNG's Bridges                |yungsbridges                  |1.16.4-1.0.1        |DONE      |Manifest: NOSIGNATURE         cavesandcliffs-1.16.5-7.2.0.jar                   |Caves and Cliffs Backport     |cavesandcliffs                |1.16.5-7.2.0        |DONE      |Manifest: NOSIGNATURE         darkerdepths-1.16.5-1.1.4.jar                     |Darker Depths                 |darkerdepths                  |1.1.4               |DONE      |Manifest: NOSIGNATURE         Highlighter-1.16.5-1.1.1.jar                      |Highlighter                   |highlighter                   |1.1.1               |DONE      |Manifest: NOSIGNATURE         spark-1.9.1-forge.jar                             |spark                         |spark                         |1.9.1               |DONE      |Manifest: NOSIGNATURE         curios-forge-1.16.5-4.0.5.3.jar                   |Curios API                    |curios                        |1.16.5-4.0.5.3      |DONE      |Manifest: NOSIGNATURE         Quality_Equipment-1.0.6_1.16.5.jar                |Quality Equipment             |quality_equipment             |1.0.6               |DONE      |Manifest: NOSIGNATURE         extendedmushrooms-1.16.5-1.7.0.5.jar              |Extended Mushrooms            |extendedmushrooms             |1.16.5-1.7.0.5      |DONE      |Manifest: NOSIGNATURE         levelhearts-1.16.5-2.4.0.jar                      |LevelHearts                   |levelhearts                   |2.4.0               |DONE      |Manifest: NOSIGNATURE         advancednetherite-1.12.4-1.16.5.jar               |Advanced Netherite            |advancednetherite             |1.12.4              |DONE      |Manifest: NOSIGNATURE         specialai-1.16.5-1.0.2.jar                        |Special AI                    |specialai                     |NONE                |DONE      |Manifest: NOSIGNATURE         YungsExtras-Forge-1.16.4-1.0.jar                  |YUNG's Extras                 |yungsextras                   |Forge-1.16.4-1.0    |DONE      |Manifest: NOSIGNATURE         Infinite_Dungeons-1.16.5-1.0.9.jar                |Infinite Dungeons             |infinite_dungeons             |NONE                |DONE      |Manifest: NOSIGNATURE         bettervillage-forge-1.16.5-2.1.0.jar              |Better village                |bettervillage                 |2.1.0               |DONE      |Manifest: NOSIGNATURE         obfuscate-0.6.3-1.16.5.jar                        |Obfuscate                     |obfuscate                     |0.6.3               |DONE      |Manifest: NOSIGNATURE         TheAbyss2 2.2.3-4 1.16.5.jar                      |TheAbyss                      |theabyss                      |2.2.3-4             |DONE      |Manifest: NOSIGNATURE         majruszs-difficulty-1.16.4-1.1.0.jar              |Majrusz's Progressive Difficul|majruszs_difficulty           |1.1.0               |DONE      |Manifest: NOSIGNATURE         mcw-roofs-2.2.1-mc1.16.5-forge.jar                |Macaw's Roofs                 |mcwroofs                      |2.2.1               |DONE      |Manifest: NOSIGNATURE         Project_MMO-1.16.5-3.69.0.jar                     |Project MMO                   |pmmo                          |1.16.5-3.69.0       |DONE      |Manifest: NOSIGNATURE         mutantmore-1.16.5-1.0.1.jar                       |Mutant More                   |mutantmore                    |1.0.3               |DONE      |Manifest: NOSIGNATURE         cfm-7.0.0pre22-1.16.3.jar                         |MrCrayfish's Furniture Mod    |cfm                           |7.0.0-pre22         |DONE      |Manifest: NOSIGNATURE         mcw-furniture-3.0.2-mc1.16.5.jar                  |Macaw's Furniture             |mcwfurnitures                 |3.0.2               |DONE      |Manifest: NOSIGNATURE         ItemPhysic_v1.4.18_mc1.16.5.jar                   |ItemPhysic                    |itemphysic                    |1.6.0               |DONE      |Manifest: NOSIGNATURE         cloth-config-4.16.91-forge.jar                    |Cloth Config v4 API           |cloth-config                  |4.16.91             |DONE      |Manifest: NOSIGNATURE         EnhancedAI-1.2.3-mc1.16.5.jar                     |Enhanced AI                   |enhancedai                    |1.2.3               |DONE      |Manifest: NOSIGNATURE         BetterShieldsMC1.16.3-1.2.1.jar                   |Better Shields                |bettershields                 |1.2.1               |DONE      |Manifest: NOSIGNATURE         Babel-1.0.5.jar                                   |Babel                         |babel                         |1.0.5               |DONE      |Manifest: NOSIGNATURE         JEPB-1.0.0.jar                                    |Just Enough Piglin Bartering  |jepb                          |1.0.0               |DONE      |Manifest: NOSIGNATURE         BetterMineshafts-Forge-1.16.4-2.0.4.jar           |YUNG's Better Mineshafts      |bettermineshafts              |1.16.4-2.0.4        |DONE      |Manifest: NOSIGNATURE         BetterModsButton-v1.0.5-1.16.5-Forge.jar          |Better Mods Button            |bettermodsbutton              |1.0.5               |DONE      |Manifest: 9a:09:85:98:65:c4:8c:11:c5:49:f6:d6:33:23:39:df:8d:b4:ff:92:84:b8:bd:a5:83:9f:ac:7f:2a:d1:4b:6a         DarkPaintings-1.16.5-6.0.11.jar                   |DarkPaintings                 |darkpaintings                 |6.0.11              |DONE      |Manifest: eb:c4:b1:67:8b:f9:0c:db:dc:4f:01:b1:8e:61:64:39:4c:10:85:0b:a6:c4:c7:48:f0:fa:95:f2:cb:08:3a:e5         treasure-bags-1.16.3-1.4.0.jar                    |Treasure Bags                 |treasurebags                  |1.4.0               |DONE      |Manifest: NOSIGNATURE         mcw-lights-1.0.4-mc1.16.5.jar                     |Macaw's Lights and Lamps      |mcwlights                     |1.0.4               |DONE      |Manifest: NOSIGNATURE         QuarkOddities-1.16.3.jar                          |Quark Oddities                |quarkoddities                 |1.16.3              |DONE      |Manifest: NOSIGNATURE         Kiwi-1.16.5-3.6.1.jar                             |Kiwi                          |kiwi                          |3.6.1               |DONE      |Manifest: NOSIGNATURE         mowziesmobs-1.5.26.jar                            |Mowzie's Mobs                 |mowziesmobs                   |1.5.26              |DONE      |Manifest: NOSIGNATURE         mining_helmet-1.16.5-2.0.1.jar                    |Mining Helmet                 |mining_helmet                 |2.0.1               |DONE      |Manifest: NOSIGNATURE         ConfigMenusForge-v1.2.0-1.16.5-Forge.jar          |Config Menus for Forge        |configmenusforge              |1.2.0               |DONE      |Manifest: 9a:09:85:98:65:c4:8c:11:c5:49:f6:d6:33:23:39:df:8d:b4:ff:92:84:b8:bd:a5:83:9f:ac:7f:2a:d1:4b:6a         TheComfortZone-1.16.5-1.0.3.jar                   |The Comfort Zone              |thecomfortzone                |1.16.5-1.0.3        |DONE      |Manifest: NOSIGNATURE         jei-1.16.5-7.7.1.153.jar                          |Just Enough Items             |jei                           |7.7.1.153           |DONE      |Manifest: NOSIGNATURE         jei-professions-1.0.0-1.16.4.jar                  |JEI Professions               |jeiprofessions                |1.0.0               |DONE      |Manifest: NOSIGNATURE         VisualWorkbench-v1.1.0-1.16.5.jar                 |Visual Workbench              |visualworkbench               |1.1.0               |DONE      |Manifest: 9a:09:85:98:65:c4:8c:11:c5:49:f6:d6:33:23:39:df:8d:b4:ff:92:84:b8:bd:a5:83:9f:ac:7f:2a:d1:4b:6a         The_Graveyard_2.1_(FORGE)_for_1.16.4-1.16.5.jar   |The Graveyard (FORGE)         |graveyard                     |2.1                 |DONE      |Manifest: NOSIGNATURE         enderlinginvaders-1.16.5-1.0.7.jar                |Enderling Invaders            |enderlinginvaders             |1.0.7               |DONE      |Manifest: NOSIGNATURE         ComfortableNether5.2.1.jar                        |Comfortable Nether            |comfortable_nether            |1.0.0               |DONE      |Manifest: NOSIGNATURE         AttributeFix-1.16.5-10.1.4.jar                    |AttributeFix                  |attributefix                  |10.1.4              |DONE      |Manifest: eb:c4:b1:67:8b:f9:0c:db:dc:4f:01:b1:8e:61:64:39:4c:10:85:0b:a6:c4:c7:48:f0:fa:95:f2:cb:08:3a:e5         libraryferret-forge-1.16.5-4.0.0.jar              |Library ferret                |libraryferret                 |4.0.0               |DONE      |Manifest: NOSIGNATURE         goblintraders-1.7.3-1.16.5.jar                    |Goblin Traders                |goblintraders                 |1.7.3               |DONE      |Manifest: NOSIGNATURE         caelus-forge-1.16.5-2.1.3.2.jar                   |Caelus API                    |caelus                        |1.16.5-2.1.3.2      |DONE      |Manifest: NOSIGNATURE         Paxi-Forge-1.16.4-1.0.jar                         |Paxi                          |paxi                          |1.16.4-1.0          |DONE      |Manifest: NOSIGNATURE         Space-BossTools-1.16.5-5.5e.jar                   |Space-BossTools               |boss_tools                    |5.5e                |DONE      |Manifest: NOSIGNATURE         HarderBranchMining-1.16.5-1.36.0.11.jar           |Harder Branch Mining Mod      |harderbranchmining            |1.16.5-1.36.0.11    |DONE      |Manifest: NOSIGNATURE         awesomedungeon-forge-1.16.5-3.1.0.jar             |Awesome dungeon               |awesomedungeon                |3.1.0               |DONE      |Manifest: NOSIGNATURE         Organics-1.16.5-0.1.9.jar                         |Organics                      |organics                      |0.1.9               |DONE      |Manifest: NOSIGNATURE         NaturesCompass-1.16.5-1.9.1-forge.jar             |Nature's Compass              |naturescompass                |1.16.5-1.9.1-forge  |DONE      |Manifest: NOSIGNATURE         1.16.5-additionalbars-2.0.3.jar                   |Additional Bars               |additionalbars                |2.0.3               |DONE      |Manifest: NOSIGNATURE         SereneSeasons-1.16.5-4.0.1.126-universal.jar      |Serene Seasons                |sereneseasons                 |1.16.5-4.0.1.126    |DONE      |Manifest: NOSIGNATURE         HQM-1.16.5-5.5.17-forge.jar                       |Hardcore Questing Mode        |hardcorequesting              |1.16.5-5.5.17       |DONE      |Manifest: NOSIGNATURE         stoneholm-1.2.2.jar                               |Stoneholm                     |stoneholm                     |1.2                 |DONE      |Manifest: NOSIGNATURE         champions-forge-1.16.5-2.0.1.16.jar               |Champions                     |champions                     |1.16.5-2.0.1.16     |DONE      |Manifest: NOSIGNATURE         curioofundying-forge-1.16.5-5.2.0.0.jar           |Curio of Undying              |curioofundying                |1.16.5-5.2.0.0      |DONE      |Manifest: NOSIGNATURE         snowundertrees-1.16.5-v1.3.jar                    |Snow Under Trees              |snowundertrees                |v1.3                |DONE      |Manifest: NOSIGNATURE         sulfuric-1.1.jar                                  |Sulfuric                      |sulfuric                      |1.0                 |DONE      |Manifest: NOSIGNATURE         outvoted-1.16.5-1.2.4.jar                         |Outvoted                      |outvoted                      |1.2.4               |DONE      |Manifest: NOSIGNATURE         additional_lights-1.16.4-2.1.3.jar                |Additional Lights             |additional_lights             |2.1.3               |DONE      |Manifest: NOSIGNATURE         JEITweaker-1.16.5-1.1.0.49.jar                    |JEI Tweaker                   |jeitweaker                    |1.1.0.49            |DONE      |Manifest: NOSIGNATURE         CraftTweaker-1.16.5-7.1.2.515.jar                 |CraftTweaker                  |crafttweaker                  |7.1.2.515           |DONE      |Manifest: NOSIGNATURE         crumbs-forge-1.0.7.jar                            |Crumbs                        |crumbs                        |1.0.7               |DONE      |Manifest: NOSIGNATURE         forge-1.16.5-36.2.34-universal.jar                |Forge                         |forge                         |36.2.34             |DONE      |Manifest: 22:af:21:d8:19:82:7f:93:94:fe:2b:ac:b7:e4:41:57:68:39:87:b1:a7:5c:c6:44:f9:25:74:21:14:f5:0d:90         Atum-1.16.5-2.2.12.jar                            |Atum 2                        |atum                          |1.16.5-2.2.12       |DONE      |Manifest: NOSIGNATURE         subwild-1.3.1.jar                                 |Subterranean Wilderness       |subwild                       |1.3.1               |DONE      |Manifest: NOSIGNATURE         idas_forge-1.5.5+1.16.5.jar                       |Integrated Dungeons and Struct|idas                          |1.5.5+1.16.5        |DONE      |Manifest: NOSIGNATURE         DungeonsArise-1.16.5-2.1.49-beta.jar              |When Dungeons Arise           |dungeons_arise                |2.1.49              |DONE      |Manifest: NOSIGNATURE         awesomedungeonocean-forge-1.16.5-3.2.0.jar        |Awesome dungeon edition ocean |awesomedungeonocean           |3.1.0               |DONE      |Manifest: NOSIGNATURE         forge-1.16.5-36.2.34-client.jar                   |Minecraft                     |minecraft                     |1.16.5              |DONE      |Manifest: NOSIGNATURE         sons-of-sins-1.16.5-1.0.9.jar                     |sons of sins                  |sons_of_sins                  |1.0.9               |DONE      |Manifest: NOSIGNATURE         MouseTweaks-2.14-mc1.16.2.jar                     |Mouse Tweaks                  |mousetweaks                   |2.14                |DONE      |Manifest: NOSIGNATURE         awesomedungeonnether-forge-1.16.5-3.1.1.jar       |Awesome dungeon nether        |awesomedungeonnether          |3.1.1               |DONE      |Manifest: NOSIGNATURE         totw_additions-1.1.0.jar                          |Towers of the Wild: Additions |totw_additions                |1.1.0               |DONE      |Manifest: NOSIGNATURE         storage_overhaul-1.16.5-1.0.4.jar                 |Storage Overhaul              |storage_overhaul              |1.16.5-1.0.4        |DONE      |Manifest: NOSIGNATURE         CavesCliffsBackportAdditions-3.4.1jar.jar         |CavesandCliffsbackportaddition|cavesandcliffsbackportaddition|3.4                 |DONE      |Manifest: NOSIGNATURE         paintings-1.16.4-7.0.0.1.jar                      |Paintings ++                  |paintings                     |1.16.4-6.0.1.5      |DONE      |Manifest: NOSIGNATURE         majrusz-library-1.16.4-2.0.1.jar                  |Majrusz Library               |majrusz_library               |2.0.1               |DONE      |Manifest: NOSIGNATURE         dimdungeons-1.13.1.jar                            |Dimensional Dungeons          |dimdungeons                   |1.16.4-1.13.1       |DONE      |Manifest: NOSIGNATURE         whisperwoods-1.16.5-2.1.1-forge.jar               |Whisperwoods                  |whisperwoods                  |1.16.5-2.1.1        |DONE      |Manifest: NOSIGNATURE         flywheel-1.16-0.2.5.jar                           |Flywheel                      |flywheel                      |1.16-0.2.5          |DONE      |Manifest: NOSIGNATURE         Mantle-1.16.5-1.6.157.jar                         |Mantle                        |mantle                        |1.6.157             |DONE      |Manifest: NOSIGNATURE         ftb-backups-2.1.2.2.jar                           |FTB Backups                   |ftbbackups                    |2.1.2.2             |DONE      |Manifest: NOSIGNATURE         polymorph-forge-1.16.5-0.41.jar                   |Polymorph                     |polymorph                     |1.16.5-0.41         |DONE      |Manifest: NOSIGNATURE         AutoRegLib-1.6-49.jar                             |AutoRegLib                    |autoreglib                    |1.6-49              |DONE      |Manifest: NOSIGNATURE         earthmobsmod-1.16.4-0.4.2.jar                     |Earth Mobs Mod                |earthmobsmod                  |1.16.4-0.4.2        |DONE      |Manifest: NOSIGNATURE         norecipeadvancements-1.0.1.jar                    |No Recipe Advancements        |norecipeadvancements          |1.0.1               |DONE      |Manifest: NOSIGNATURE         Library_of_Exile-1.16.5-1.2.3.jar                 |Library Of Exile              |library_of_exile              |NONE                |DONE      |Manifest: NOSIGNATURE         appleskin-forge-mc1.16.x-2.4.0.jar                |AppleSkin                     |appleskin                     |2.4.0+mc1.16.4      |DONE      |Manifest: NOSIGNATURE         lootr-1.16.5-0.1.15.46.jar                        |Lootr                         |lootr                         |0.1.14.45           |DONE      |Manifest: NOSIGNATURE         upgradednetherite_ultimate-1.16.5-1.1.0.3-release.|Upgraded Netherite : Ultimerit|upgradednetherite_ultimate    |1.16.5-1.1.0.3-relea|DONE      |Manifest: NOSIGNATURE         PuzzlesLib-v1.0.15-1.16.5-Forge.jar               |Puzzles Lib                   |puzzleslib                    |1.0.15              |DONE      |Manifest: 9a:09:85:98:65:c4:8c:11:c5:49:f6:d6:33:23:39:df:8d:b4:ff:92:84:b8:bd:a5:83:9f:ac:7f:2a:d1:4b:6a         slimy-stuff-1.16.5-1.0.6.jar                      |Slimy Stuff                   |slimy_stuff                   |1.0.6               |DONE      |Manifest: NOSIGNATURE         Obscuria's Essentials 3.0.0.jar                   |Obscuria's Essentials         |ob_core                       |3.0.0               |DONE      |Manifest: NOSIGNATURE         HarderFarther-1.16.5-1.36.0.6.jar                 |Harder Farther Mod            |harderfarther                 |1.36.0.6            |DONE      |Manifest: NOSIGNATURE         Betterlands-1.16.5-0.5.0.jar                      |Betterlands                   |betterlands                   |1.16.5-0.5.0        |DONE      |Manifest: NOSIGNATURE         CosmeticArmorReworked-1.16.5-v5.jar               |CosmeticArmorReworked         |cosmeticarmorreworked         |1.16.5-v5           |DONE      |Manifest: 5e:ed:25:99:e4:44:14:c0:dd:89:c1:a9:4c:10:b5:0d:e4:b1:52:50:45:82:13:d8:d0:32:89:67:56:57:01:53         moreplates-1.16.5-7.4.4.jar                       |More Plates                   |moreplates                    |7.4.4               |DONE      |Manifest: NOSIGNATURE         xptome-1.16.5-v2.1.5.jar                          |XP Tome                       |xpbook                        |v2.1.5              |DONE      |Manifest: NOSIGNATURE         tetra-1.16.5-3.20.0.jar                           |Tetra                         |tetra                         |3.20.0              |DONE      |Manifest: NOSIGNATURE         tetranomicon-1.3.jar                              |Tetranomicon                  |tetranomicon                  |1.3                 |DONE      |Manifest: NOSIGNATURE         TreeChop-1.16.4-0.14.6-fixed.jar                  |HT's TreeChop                 |treechop                      |0.14.6              |DONE      |Manifest: NOSIGNATURE         litewolfcore-1.16.5v1.0.1.jar                     |LiteWolf Core                 |litewolfcore                  |1.16.5v1.0          |DONE      |Manifest: NOSIGNATURE         DungeonsMod-1.16.3-1.4.43.jar                     |Dungeons Mod                  |dungeonsmod                   |1.16.3-1.4.43       |DONE      |Manifest: NOSIGNATURE         blue_skies-1.16.5-1.1.3.jar                       |Blue Skies                    |blue_skies                    |1.1.3               |DONE      |Manifest: NOSIGNATURE         Piglin Expansion 1.2.jar                          |Piglin Expansion              |piglin_expansion              |1.1.0               |DONE      |Manifest: NOSIGNATURE         roughmobsrevamped-1.16.5-0.0.3.jar                |Rough Mobs Revamped           |roughmobsrevamped             |version             |DONE      |Manifest: NOSIGNATURE         NetherPortalFix_1.16.3-7.2.1.jar                  |NetherPortalFix               |netherportalfix               |7.2.1               |DONE      |Manifest: NOSIGNATURE         Wyrmroost-1.16.3-1.2.11.jar                       |Wyrmroost                     |wyrmroost                     |1.16.3-1.2.11       |DONE      |Manifest: NOSIGNATURE         AdditionalBanners-1.16.5-6.0.3.jar                |AdditionalBanners             |additionalbanners             |6.0.3               |DONE      |Manifest: eb:c4:b1:67:8b:f9:0c:db:dc:4f:01:b1:8e:61:64:39:4c:10:85:0b:a6:c4:c7:48:f0:fa:95:f2:cb:08:3a:e5         HealthOverlay-1.16.5-3.0.1.jar                    |Health Overlay                |healthoverlay                 |3.0.1               |DONE      |Manifest: NOSIGNATURE         Architects-Palette-1.16.4-1.1.5.jar               |Architect's Palette           |architects_palette            |1.1.2               |DONE      |Manifest: NOSIGNATURE         morecfm-1.3.1-1.16.3.jar                          |MrCrayfish's More Furniture Mo|morecfm                       |1.3.1               |DONE      |Manifest: NOSIGNATURE         DoggyTalents-1.16.5-2.1.15.jar                    |Doggy Talents 2               |doggytalents                  |2.1.15              |DONE      |Manifest: NOSIGNATURE         kingvillager-1.6.3.jar                            |The King of the villagers     |kingvillager                  |1.6.3               |DONE      |Manifest: NOSIGNATURE         KleeSlabs_1.16.5-9.2.1.jar                        |KleeSlabs                     |kleeslabs                     |9.2.1               |DONE      |Manifest: NOSIGNATURE         InsaneLib-1.4.2-mc1.16.5.jar                      |InsaneLib                     |insanelib                     |1.4.2               |DONE      |Manifest: NOSIGNATURE         villagernames_1.16.5-4.3.jar                      |Villager Names                |villagernames                 |4.3                 |DONE      |Manifest: NOSIGNATURE         XaerosWorldMap_1.28.3_Forge_1.16.5.jar            |Xaero's World Map             |xaeroworldmap                 |1.28.3              |DONE      |Manifest: NOSIGNATURE         Controlling-7.0.0.29.jar                          |Controlling                   |controlling                   |7.0.0.29            |DONE      |Manifest: NOSIGNATURE         Prism-1.16.5-1.0.1.jar                            |Prism                         |prism                         |1.0.1               |DONE      |Manifest: NOSIGNATURE         Placebo-1.16.5-4.7.0.jar                          |Placebo                       |placebo                       |4.7.0               |DONE      |Manifest: NOSIGNATURE         citadel-1.8.1-1.16.5.jar                          |Citadel                       |citadel                       |1.8.1               |DONE      |Manifest: NOSIGNATURE         alexsmobs-1.12.1.jar                              |Alex's Mobs                   |alexsmobs                     |1.12.1              |DONE      |Manifest: NOSIGNATURE         iceandfire-2.1.11-1.16.5.jar                      |Ice and Fire                  |iceandfire                    |2.1.11-1.16.5       |DONE      |Manifest: NOSIGNATURE         lootintegrations-1.2.jar                          |Lootintegrations mod          |lootintegrations              |1.2                 |DONE      |Manifest: NOSIGNATURE         moreminecarts-1.3.16.jar                          |More Minecarts                |moreminecarts                 |1.3.16              |DONE      |Manifest: NOSIGNATURE         MutantBeasts-1.16.4-1.1.3.jar                     |Mutant Beasts                 |mutantbeasts                  |1.16.4-1.1.3        |DONE      |Manifest: d9:be:bd:b6:9a:e4:14:aa:05:67:fb:84:06:77:a0:c5:10:ec:27:15:1b:d6:c0:88:49:9a:ef:26:77:61:0b:5e         Bookshelf-Forge-1.16.5-10.4.32.jar                |Bookshelf                     |bookshelf                     |10.4.32             |DONE      |Manifest: eb:c4:b1:67:8b:f9:0c:db:dc:4f:01:b1:8e:61:64:39:4c:10:85:0b:a6:c4:c7:48:f0:fa:95:f2:cb:08:3a:e5         sophisticatedbackpacks-1.16.5-3.15.19.721.jar     |Sophisticated Backpacks       |sophisticatedbackpacks        |1.16.5-3.15.19.721  |DONE      |Manifest: NOSIGNATURE         ProgressiveBosses-3.4.3-mc1.16.5.jar              |Progressive Bosses            |progressivebosses             |3.4.3               |DONE      |Manifest: NOSIGNATURE         mcw-doors-1.0.7-mc1.16.5.jar                      |Macaw's Doors                 |mcwdoors                      |1.0.7               |DONE      |Manifest: NOSIGNATURE         bygonenether-1.2.1-1.16.5.jar                     |Bygone Nether                 |bygonenether                  |1.2.1               |DONE      |Manifest: NOSIGNATURE         carryon-1.16.5-1.15.5.22.jar                      |Carry On                      |carryon                       |1.15.5.22           |DONE      |Manifest: NOSIGNATURE         omnis-1.16.5-1.2.3.jar                            |Omnis                         |omnis                         |1.16.5-1.0          |DONE      |Manifest: NOSIGNATURE         Tidbits-0.1.3.jar                                 |Tidbits                       |tidbits                       |0.1.2               |DONE      |Manifest: NOSIGNATURE         createcafe-1.16.5-2.4.jar                         |Create Cafe                   |createcafe                    |1.16.5-2.4          |DONE      |Manifest: NOSIGNATURE         cuneiform-1.16.3-1.2.5.jar                        |Cuneiform                     |cuneiform                     |1.16.3-1.2.5        |DONE      |Manifest: NOSIGNATURE         chipped-1.16.5-1.2.1-forge.jar                    |Chipped                       |chipped                       |1.16.5-1.2.1-forge  |DONE      |Manifest: NOSIGNATURE         createplus-1.16.4_v0.3.2.1.jar                    |Create Plus                   |createplus                    |1.16.4_v0.3.2.1     |DONE      |Manifest: NOSIGNATURE         chocolate-1.3.0-1.16.4.jar                        |Chocolate                     |chocolate                     |1.3.0-1.16.4        |DONE      |Manifest: NOSIGNATURE         mcw-bridges-2.0.5-mc1.16.5forge.jar               |Macaw's Bridges               |mcwbridges                    |2.0.5               |DONE      |Manifest: NOSIGNATURE         FarmersDelight-1.16.5-0.6.0.jar                   |Farmer's Delight              |farmersdelight                |1.16.5-0.6.0        |DONE      |Manifest: NOSIGNATURE         fd_cookbook-2.0.jar                               |Farmers Delight Cookbook      |fd_cookbook                   |2.0                 |DONE      |Manifest: NOSIGNATURE         culturaldelights-1.16.5-0.9.2.jar                 |Cultural Delights             |culturaldelights              |0.9.2               |DONE      |Manifest: NOSIGNATURE         farmersdelightintegration-1.16.5-1.0.3.jar        |Farmer's Delight Integration  |farmersdelightintegration     |1.16.5-1.0.3        |DONE      |Manifest: NOSIGNATURE         DustrialDecor-1.3.1.jar                           |'Dustrial Decor               |dustrial_decor                |1.2.8               |DONE      |Manifest: NOSIGNATURE         simpleshops-1.1.3.jar                             |Simple Shops                  |simpleshops                   |1.1.3               |DONE      |Manifest: NOSIGNATURE         projectvibrantjourneys-1.16.5-3.2.11.jar          |Project: Vibrant Journeys     |projectvibrantjourneys        |1.16.5-3.2.11       |DONE      |Manifest: NOSIGNATURE         MobZReborn-3.0.2.jar                              |MobZ                          |mobz                          |3.0.2               |DONE      |Manifest: NOSIGNATURE         Treasure2-mc1.16.5-f36.2.34-v2.4.0.jar            |Treasure2                     |treasure2                     |2.4.0               |DONE      |Manifest: NOSIGNATURE         GottschCore-mc1.16.5-f36.2.34-v1.8.0.jar          |GottschCore                   |gottschcore                   |1.8.0               |DONE      |Manifest: NOSIGNATURE         Talpm 1.0.0 1.16.5.jar                            |TheAbyss LPM Integration      |talpm                         |1.0.0               |DONE      |Manifest: NOSIGNATURE         mcw-fences-1.0.6-mc1.16.5.jar                     |Macaw's Fences and Walls      |mcwfences                     |1.0.6               |DONE      |Manifest: NOSIGNATURE         dungeons_enhanced-1.16.5-1.8.1.jar                |Dungeons Enhanced             |dungeons_enhanced             |1.8.1               |DONE      |Manifest: NOSIGNATURE         bettercompat-0.4.2-1.16.5-36.2.34.jar             |Tinkers Better Compat         |bettercompat                  |0.4.2               |DONE      |Manifest: NOSIGNATURE         Bountiful-1.16.4-3.3.1.jar                        |Bountiful                     |bountiful                     |1.16.4-3.3.1        |DONE      |Manifest: NOSIGNATURE         CNB-1.16.3_5-1.2.11.jar                           |Creatures and Beasts          |cnb                           |1.2.11              |DONE      |Manifest: NOSIGNATURE         geckolib-forge-1.16.5-3.0.103.jar                 |GeckoLib                      |geckolib3                     |3.0.103             |DONE      |Manifest: NOSIGNATURE         Goblins_Dungeons_1.0.6-1.16.jar                   |Goblins & Dungeons            |goblinsanddungeons            |1.0.6               |DONE      |Manifest: NOSIGNATURE         L_Enders Cataclysm-0.40-1.16.5.jar                |Cataclysm Mod                 |cataclysm                     |1.0                 |DONE      |Manifest: NOSIGNATURE         Patchouli-1.16.4-53.3.jar                         |Patchouli                     |patchouli                     |1.16.4-53.3         |DONE      |Manifest: NOSIGNATURE         collective-1.16.5-5.15.jar                        |Collective                    |collective                    |5.15                |DONE      |Manifest: NOSIGNATURE         villagertools-1.16.5-1.0.2.jar                    |villagertools                 |villagertools                 |1.16.5-1.0.2        |DONE      |Manifest: 1f:47:ac:b1:61:82:96:b8:47:19:16:d2:61:81:11:60:3a:06:4b:61:31:56:7d:44:31:1e:0c:6f:22:5b:4c:ed         elevatorid-1.16.5-1.7.13.jar                      |Elevator Mod                  |elevatorid                    |1.16.5-1.7.13       |DONE      |Manifest: NOSIGNATURE         BetterStrongholds-1.16.4-1.2.1.jar                |YUNG's Better Strongholds     |betterstrongholds             |1.16.4-1.2.1        |DONE      |Manifest: NOSIGNATURE         EnigmaticLegacy-2.11.12.jar                       |Enigmatic Legacy              |enigmaticlegacy               |2.11.12             |DONE      |Manifest: NOSIGNATURE         travelers_index-1.16.4-1.0.2.jar                  |Traveler's Index              |travelers_index               |1.16.4-1.0.2        |DONE      |Manifest: NOSIGNATURE         starterkit_1.16.5-3.9.jar                         |Starter Kit                   |starterkit                    |3.9                 |DONE      |Manifest: NOSIGNATURE         cavebiomeapi-1.16.5-1.4.2.jar                     |CaveBiomeAPI                  |cavebiomeapi                  |1.16.5-1.4.2        |DONE      |Manifest: NOSIGNATURE         architectury-1.32.66.jar                          |Architectury                  |architectury                  |1.32.66             |DONE      |Manifest: NOSIGNATURE         ftb-library-forge-1605.3.4-build.90.jar           |FTB Library                   |ftblibrary                    |1605.3.4-build.90   |DONE      |Manifest: NOSIGNATURE         ftb-teams-forge-1605.2.3-build.40.jar             |FTB Teams                     |ftbteams                      |1605.2.3-build.40   |DONE      |Manifest: NOSIGNATURE         ftb-ranks-forge-1605.1.6-build.33.jar             |FTB Ranks                     |ftbranks                      |1605.1.6-build.33   |DONE      |Manifest: NOSIGNATURE         curiouselytra-forge-1.16.5-4.0.2.4.jar            |Curious Elytra                |curiouselytra                 |1.16.5-4.0.2.4      |DONE      |Manifest: NOSIGNATURE         AI-Improvements-1.16.5-0.5.0.jar                  |AI-Improvements               |aiimprovements                |0.4.0               |DONE      |Manifest: NOSIGNATURE         meetle-8.6.jar                                    |Marquot                       |marquot                       |1.0.0               |DONE      |Manifest: NOSIGNATURE         The_Undergarden-1.16.5-0.5.5.jar                  |The Undergarden               |undergarden                   |0.5.5               |DONE      |Manifest: NOSIGNATURE         enchantwithmob-1.16.5-1.5.2.jar                   |Enchant With Mob              |enchantwithmob                |1.16.5-1.5.2        |DONE      |Manifest: NOSIGNATURE         depth-1.0.2-1.16.5.jar                            |Depth                         |depth                         |1.0.1               |DONE      |Manifest: NOSIGNATURE         smallships-1.16.5-1.10.1.jar                      |Small Ships Mod               |smallships                    |1.10.1              |DONE      |Manifest: NOSIGNATURE         voidtotem-1.16.5-1.4.0.jar                        |Void Totem                    |voidtotem                     |1.16.5-1.4.0        |DONE      |Manifest: NOSIGNATURE         TradingPost-v1.0.2-1.16.5.jar                     |Trading Post                  |tradingpost                   |1.0.2               |DONE      |Manifest: 9a:09:85:98:65:c4:8c:11:c5:49:f6:d6:33:23:39:df:8d:b4:ff:92:84:b8:bd:a5:83:9f:ac:7f:2a:d1:4b:6a         awesomedungeonend-forge-1.16.5-3.1.1.jar          |Awesome dungeon the end       |awesomedungeonend             |3.1.1               |DONE      |Manifest: NOSIGNATURE         Shrines-1.16.5-2.3.0.jar                          |Shrines                       |shrines                       |1.16.5-2.3.0        |DONE      |Manifest: NOSIGNATURE         Nourished Nether Release V15.1 Backport.jar       |Nourished Nether              |nourished_nether              |1.1.5               |DONE      |Manifest: NOSIGNATURE         item-filters-forge-1605.2.5-build.9.jar           |Item Filters                  |itemfilters                   |1605.2.5-build.9    |DONE      |Manifest: NOSIGNATURE         ftb-quests-forge-1605.3.6-build.98.jar            |FTB Quests                    |ftbquests                     |1605.3.6-build.98   |DONE      |Manifest: NOSIGNATURE         EasyMagic-v1.0.4-1.16.5.jar                       |Easy Magic                    |easymagic                     |1.0.4               |DONE      |Manifest: 9a:09:85:98:65:c4:8c:11:c5:49:f6:d6:33:23:39:df:8d:b4:ff:92:84:b8:bd:a5:83:9f:ac:7f:2a:d1:4b:6a         NourishedEndV9-1.16.5Backport.jar                 |Nourished End                 |nourished_end                 |1.0.8               |DONE      |Manifest: NOSIGNATURE         Druidcraft-1.16.5-0.4.54.jar                      |Druidcraft                    |druidcraft                    |0.4.52              |DONE      |Manifest: NOSIGNATURE         the-conjurer-1.16.4-1.0.13.jar                    |The Conjurer                  |conjurer_illager              |1.0.13              |DONE      |Manifest: NOSIGNATURE         abnormals_core-1.16.5-3.3.1.jar                   |Abnormals Core                |abnormals_core                |3.3.1               |DONE      |Manifest: NOSIGNATURE         environmental-1.16.5-1.1.1.jar                    |Environmental                 |environmental                 |1.1.1               |DONE      |Manifest: NOSIGNATURE         bamboo_blocks-1.16.5-3.0.1.jar                    |Bamboo Blocks                 |bamboo_blocks                 |3.0.1               |DONE      |Manifest: NOSIGNATURE         copperpot-1.16.5-1.2.0.jar                        |Copper Pot                    |copperpot                     |1.16.5-1.2.0        |DONE      |Manifest: NOSIGNATURE         upgrade_aquatic-1.16.5-3.1.2.jar                  |Upgrade Aquatic               |upgrade_aquatic               |3.1.2               |DONE      |Manifest: NOSIGNATURE         Better-Badlands-1.16.5-2.0.3.jar                  |Better Badlands               |better_badlands               |1.16.5-2.0.3        |DONE      |Manifest: NOSIGNATURE         irregularchef-1.16.5-1.0.1.jar                    |The Irregular Chef            |irregularchef                 |1.16.5-1.0.1        |DONE      |Manifest: NOSIGNATURE         endergetic-1.16.5-3.0.2.jar                       |The Endergetic Expansion      |endergetic                    |3.0.2               |DONE      |Manifest: NOSIGNATURE         neapolitan-1.16.5-2.2.1.jar                       |Neapolitan                    |neapolitan                    |2.2.1               |DONE      |Manifest: NOSIGNATURE         personality-1.16.5-1.0.3.jar                      |Personality                   |personality                   |1.0.3               |DONE      |Manifest: NOSIGNATURE         savageandravage-1.16.5-3.2.0.jar                  |Savage & Ravage               |savageandravage               |3.2.0               |DONE      |Manifest: NOSIGNATURE         autumnity-1.16.5-2.1.2.jar                        |Autumnity                     |autumnity                     |2.1.2               |DONE      |Manifest: NOSIGNATURE         nethers_delight-2.1.jar                           |Nethers Delight               |nethers_delight               |2.1                 |DONE      |Manifest: NOSIGNATURE         buzzier_bees-1.16.5-3.0.3.jar                     |Buzzier Bees                  |buzzier_bees                  |3.0.3               |DONE      |Manifest: NOSIGNATURE         Enhanced-Mushrooms-1.16.5-3.0.9.jar               |Enhanced Mushrooms            |enhanced_mushrooms            |1.16.5-3.0.9        |DONE      |Manifest: NOSIGNATURE         extraboats-1.16.5-2.1.1.jar                       |Extra Boats                   |extraboats                    |2.1.1               |DONE      |Manifest: NOSIGNATURE         create-mc1.16.5_v0.3.2g.jar                       |Create                        |create                        |v0.3.2g             |DONE      |Manifest: NOSIGNATURE         morecreatestuffs-mc1.16-1.4.1b.jar                |More Create Stuffs            |morecreatestuffs              |mc1.16-1.4.1b       |DONE      |Manifest: NOSIGNATURE         Waystones_1.16.5-7.6.4.jar                        |Waystones                     |waystones                     |7.6.4               |DONE      |Manifest: NOSIGNATURE         MerchantMarkers-1.16.5-1.2.2.jar                  |Merchant Markers              |merchantmarkers               |1.2.2               |DONE      |Manifest: NOSIGNATURE         Xaeros_Minimap_22.16.2_Forge_1.16.5.jar           |Xaero's Minimap               |xaerominimap                  |22.16.2             |DONE      |Manifest: NOSIGNATURE         mcw-paintings-1.0.4-mc1.16.5.jar                  |Macaw's Paintings             |mcwpaintings                  |1.0.4               |DONE      |Manifest: NOSIGNATURE         Clumps-6.0.0.28.jar                               |Clumps                        |clumps                        |6.0.0.28            |DONE      |Manifest: NOSIGNATURE         mgui-1.16.5-3.3.0.jar                             |mgui                          |mgui                          |3.3.0               |DONE      |Manifest: NOSIGNATURE         tetrapak-1.16.5-0.3.4.jar                         |Tetra Pak                     |tetrapak                      |1.16.5-0.3.4        |DONE      |Manifest: NOSIGNATURE         village-employment-1.16.5-1.4.1.jar               |Village Employment            |village_employment            |1.4.1               |DONE      |Manifest: NOSIGNATURE         RoadRunner-mc1.16.5-1.4.1.jar                     |Meep Meep! (Road Runner)      |roadrunner                    |1.4.1               |DONE      |Manifest: NOSIGNATURE         comforts-forge-1.16.5-4.0.1.5.jar                 |Comforts                      |comforts                      |1.16.5-4.0.1.5      |DONE      |Manifest: NOSIGNATURE         campful-1.16.5-3.1.0.jar                          |Campful                       |campful                       |2.0                 |DONE      |Manifest: NOSIGNATURE         SimpleStorageNetwork-1.16.5-1.5.3.jar             |Simple Storage Network        |storagenetwork                |1.16.5-1.5.3        |DONE      |Manifest: 1f:47:ac:b1:61:82:96:b8:47:19:16:d2:61:81:11:60:3a:06:4b:61:31:56:7d:44:31:1e:0c:6f:22:5b:4c:ed         ItemBorders-1.16.5-1.1.6.jar                      |Item Borders                  |itemborders                   |1.1.6               |DONE      |Manifest: NOSIGNATURE         DungeonCrawl-1.16.5-2.3.12.jar                    |Dungeon Crawl                 |dungeoncrawl                  |2.3.12              |DONE      |Manifest: NOSIGNATURE         BadMobs-1.16.5-9.1.8.jar                          |BadMobs                       |badmobs                       |9.1.8               |DONE      |Manifest: eb:c4:b1:67:8b:f9:0c:db:dc:4f:01:b1:8e:61:64:39:4c:10:85:0b:a6:c4:c7:48:f0:fa:95:f2:cb:08:3a:e5         Obscuria's Tooltips 1.0.0.jar                     |Obscuria's Tooltips           |ob_tooltips                   |1.0.0               |DONE      |Manifest: NOSIGNATURE         create-confectionery1.16.5_v1.0.2.jar             |Create Confectionery          |create_confectionery          |1.0.2               |DONE      |Manifest: NOSIGNATURE         deepdark_4.2.jar                                  |Dead Guy's Untitled Deep Dark |dead_guys_untitled_deep_dark_ |Frist Version!      |DONE      |Manifest: NOSIGNATURE         ExplorersCompass-1.16.5-1.1.2-forge.jar           |Explorer's Compass            |explorerscompass              |1.16.5-1.1.2-forge  |DONE      |Manifest: NOSIGNATURE         netherdepthsupgrade-1.1.1-1.16.5.jar              |Nether Depths Upgrade         |netherdepthsupgrade           |1.1.1-1.16.5        |DONE      |Manifest: NOSIGNATURE         farsight-1.7.jar                                  |Farsight mod                  |farsight_view                 |1.7                 |DONE      |Manifest: NOSIGNATURE         miningmaster-1.16.5-3.0.6.jar                     |Mining Master                 |miningmaster                  |3.0.6               |DONE      |Manifest: NOSIGNATURE         AkashicTome-1.4-16.jar                            |Akashic Tome                  |akashictome                   |1.4-16              |DONE      |Manifest: NOSIGNATURE         ftb-chunks-forge-1605.3.2-build.115.jar           |FTB Chunks                    |ftbchunks                     |1605.3.2-build.115  |DONE      |Manifest: NOSIGNATURE         IntoTheVoid-1.16.5_V1.0.4.jar                     |Into The Void                 |intothevoid                   |1.0.0               |DONE      |Manifest: NOSIGNATURE         scuba-gear-1.16.5-1.0.3.jar                       |Scuba Gear                    |scuba_gear                    |1.0.3               |DONE      |Manifest: NOSIGNATURE         twist-1.4.1.jar                                   |Twist                         |twist                         |4.0.0               |DONE      |Manifest: NOSIGNATURE         selene-1.16.5-1.9.0.jar                           |Selene                        |selene                        |1.16.5-1.0          |DONE      |Manifest: NOSIGNATURE         TConstruct-1.16.5-3.3.4.335.jar                   |Tinkers' Construct            |tconstruct                    |3.3.4.335           |DONE      |Manifest: NOSIGNATURE         JER-Integration-1.1.1.jar                         |JER Integration               |jerintegration                |1.1.1               |DONE      |Manifest: NOSIGNATURE         ToolBelt-1.16.5-1.16.2.jar                        |Tool Belt                     |toolbelt                      |1.16.2              |DONE      |Manifest: NOSIGNATURE         Alex's Delight 1.1.3 - Forge 1.16.5.jar           |Alex's Delight                |amfd                          |1.1.3               |DONE      |Manifest: NOSIGNATURE         silent-lib-1.16.3-4.9.6.jar                       |Silent Lib                    |silentlib                     |4.9.6               |DONE      |Manifest: NOSIGNATURE         Jade-1.16.4-2.8.3.jar                             |Jade                          |jade                          |2.8.3               |DONE      |Manifest: NOSIGNATURE         CreativeCore_v2.2.1_mc1.16.5.jar                  |CreativeCore                  |creativecore                  |2.0.0               |DONE      |Manifest: NOSIGNATURE         Undergarden-Tetra Patch-1.2.1.jar                 |Undergarden/Tetra Patch       |undergardenpatch              |1.2.1               |DONE      |Manifest: NOSIGNATURE         towers_of_the_wild-1.16.3-2.1.0.1.jar             |Towers Of The Wild            |towers_of_the_wild            |1.16.3-2.1.0        |DONE      |Manifest: NOSIGNATURE         atmospheric-1.16.5-3.1.1.jar                      |Atmospheric                   |atmospheric                   |3.1.1               |DONE      |Manifest: NOSIGNATURE         plushies-1.2-1.16.5-forge.jar                     |Plushie Mod                   |plushies                      |1.2                 |DONE      |Manifest: NOSIGNATURE         Iceberg-1.16.5-1.0.45.jar                         |Iceberg                       |iceberg                       |1.0.45              |DONE      |Manifest: NOSIGNATURE         Quark-r2.4-322.jar                                |Quark                         |quark                         |r2.4-322            |DONE      |Manifest: NOSIGNATURE         terraincognita-1.16.3-1.7.3.jar                   |Terra Incognita               |terraincognita                |1.16.3-1.7.3        |DONE      |Manifest: NOSIGNATURE         LegendaryTooltips-1.16.5-1.3.1.jar                |Legendary Tooltips            |legendarytooltips             |1.3.1               |DONE      |Manifest: NOSIGNATURE         brutalbosses-4.7.jar                              |brutalbosses mod              |brutalbosses                  |4.7                 |DONE      |Manifest: NOSIGNATURE         malum-1.16.5-0.3.0.jar                            |Malum                         |malum                         |1.16.5-0.3.0        |DONE      |Manifest: NOSIGNATURE         kryptonreforged-mc1.16.5_v1.0.0.jar               |Krypton Reforged              |kryptonreforged               |mc1.16.5_v1.0.0     |DONE      |Manifest: NOSIGNATURE         abnormals_delight-1.16.5-1.2.1.jar                |Abnormals Delight             |abnormals_delight             |1.2.1               |DONE      |Manifest: NOSIGNATURE         StorageDrawers-1.16.3-8.5.2.jar                   |Storage Drawers               |storagedrawers                |8.5.2               |DONE      |Manifest: NOSIGNATURE         morestoragedrawers-1.16.5-1.1.2.jar               |More Storage Drawers          |morestoragedrawers            |1.16.5-1.1.2        |DONE      |Manifest: NOSIGNATURE         betterendforge-1.16.5-2.5.jar                     |BetterEnd Forge               |betterendforge                |1.16.5-2.5          |DONE      |Manifest: NOSIGNATURE         BiomesOPlenty-1.16.5-13.1.0.477-universal.jar     |Biomes O' Plenty              |biomesoplenty                 |1.16.5-13.1.0.477   |DONE      |Manifest: NOSIGNATURE         byg-1.3.6.jar                                     |Oh The Biomes You'll Go       |byg                           |1.3.4               |DONE      |Manifest: NOSIGNATURE         Aquaculture-1.16.5-2.1.23.jar                     |Aquaculture 2                 |aquaculture                   |1.16.5-2.1.23       |DONE      |Manifest: NOSIGNATURE         additionalbarsbop-2.0.3.jar                       |Additional Bars (Biomes o' Ple|additionalbarsbop             |2.0.3               |DONE      |Manifest: NOSIGNATURE         eidolon-0.2.7.jar                                 |Eidolon                       |eidolon                       |0.2.7               |DONE      |Manifest: NOSIGNATURE         twilightforest-1.16.5-4.0.870-universal.jar       |The Twilight Forest           |twilightforest                |NONE                |DONE      |Manifest: NOSIGNATURE         Compat-O-Plenty-1.16.5-1.0.7.jar                  |Compat O' Plenty              |compatoplenty                 |1.16.5-1.0.7        |DONE      |Manifest: NOSIGNATURE         OuterEnd-0.2.14.jar                               |The Outer End                 |outer_end                     |0.2.9               |DONE      |Manifest: NOSIGNATURE         ToughAsNails-1.16.5-4.1.0.9-universal.jar         |Tough As Nails                |toughasnails                  |1.16.5-4.0.1.8      |DONE      |Manifest: NOSIGNATURE         muchmoremodcompat-na.jar                          |Much More Mod Compat          |muchmoremodcompat             |NONE                |DONE      |Manifest: NOSIGNATURE         decorative_blocks-1.16.4-1.7.2.jar                |Decorative Blocks             |decorative_blocks             |1.7.2               |DONE      |Manifest: NOSIGNATURE         decorative_blocks_abnormals-1.2.jar               |Decorative Blocks Abnormals   |decorative_blocks_abnormals   |1.2                 |DONE      |Manifest: NOSIGNATURE         combustivefishing-forge-1.16.3-4.0.0.1.jar        |Combustive Fishing            |combustivefishing             |1.16.3-4.0.0.1      |DONE      |Manifest: NOSIGNATURE         upgradedcore-1.16.5-1.1.0.3-release.jar           |Upgraded Core                 |upgradedcore                  |1.16.5-1.1.0.3-relea|DONE      |Manifest: NOSIGNATURE         HunterIllager-1.16.5-1.4.0.jar                    |Hunter Illager                |hunterillager                 |1.16.5-1.4.0        |DONE      |Manifest: NOSIGNATURE         illagersweararmor-1.0.5.jar                       |Illagers Wear Armor           |illagersweararmor             |1.0.5               |DONE      |Manifest: NOSIGNATURE         ferritecore-2.1.1-forge.jar                       |Ferrite Core                  |ferritecore                   |2.1.1               |DONE      |Manifest: 41:ce:50:66:d1:a0:05:ce:a1:0e:02:85:9b:46:64:e0:bf:2e:cf:60:30:9a:fe:0c:27:e0:63:66:9a:84:ce:8a         enhancedcelestials-2.0.9-1.16.5.jar               |Enhanced Celestials           |enhancedcelestials            |2.0.9-1.16.5        |DONE      |Manifest: NOSIGNATURE         SilentGems-1.16.3-3.7.16.jar                      |Silent's Gems 3               |silentgems                    |3.7.16              |DONE      |Manifest: NOSIGNATURE         illagers_plus-1.16.5v1.0.2.jar                    |Illagers+                     |illagers_plus                 |1.16.5v1.0.2        |DONE      |Manifest: NOSIGNATURE         improvedmobs-1.16.5-1.10.13.jar                   |Improved Mobs Mod             |improvedmobs                  |1.16.5-1.10.13      |DONE      |Manifest: NOSIGNATURE         valhelsia_core-16.0.15.jar                        |Valhelsia Core                |valhelsia_core                |16.0.15             |DONE      |Manifest: NOSIGNATURE         valhelsia_structures-1.16.5-0.1.6.jar             |Valhelsia Structures          |valhelsia_structures          |1.16.5-0.1.6        |DONE      |Manifest: NOSIGNATURE         forbidden_arcanus-16.2.3.jar                      |Forbidden & Arcanus           |forbidden_arcanus             |16.2.3              |DONE      |Manifest: NOSIGNATURE         NatureExpansion1.5.jar                            |Nature Expansion              |nature_expansion              |1.3.0               |DONE      |Manifest: NOSIGNATURE         createaddition-1.16.5-20220129a.jar               |Create Crafts & Additions     |createaddition                |1.16.5-20220129a    |DONE      |Manifest: NOSIGNATURE     Crash Report UUID: c5fe311f-37f3-43e9-9904-fc38ae725018     RoadRunner != Lithium: This instance was launched using RoadRunner, which is an *unofficial* Lithium fork! Please **do not** report bugs to them!     Kiwi Modules:               Patchouli open book context: n/a     Player Count: 1 / 8; [ServerPlayerEntity['Vy_Victory'/2269, l='ServerLevel[New World test]', x=-232.37, y=67.00, z=-57.79]]     Data Packs: vanilla, mod:dynamiclightsreforged, mod:create_stuff_additions, mod:betterdungeons, mod:ftbessentials, mod:infernalexp (incompatible), mod:nethers_exoticism, mod:mcwwindows, mod:stalwart_dungeons, mod:strawgolem, mod:bettercaves (incompatible), mod:farmersdelightintegrations, mod:yungsapi, mod:upgradednetherite_items, mod:lootbeams, mod:guardvillagers, mod:randompatches, mod:harderspawners (incompatible), mod:apotheosis (incompatible), mod:bygvanillabiomes, mod:whatareyouvotingfor, mod:jeresources, mod:tdelight, mod:paraglider, mod:revampedwolf, mod:supplementaries, mod:upgradednetherite, mod:structure_gel, mod:corpse, mod:tinyskeletons, mod:tenshilib (incompatible), mod:cleancut (incompatible), mod:torchmaster (incompatible), mod:repurposed_structures, mod:morevillagers, mod:bcc (incompatible), mod:morepaths (incompatible), mod:ob_aquamirae, mod:dungeons_plus, mod:unusualend, mod:mcwtrpdoors, mod:silentgear, mod:supermartijn642corelib, mod:betterdefaultbiomes, mod:yungsbridges, mod:cavesandcliffs, mod:darkerdepths, mod:highlighter, mod:spark, mod:curios, mod:quality_equipment, mod:extendedmushrooms, mod:levelhearts (incompatible), mod:advancednetherite, mod:specialai, mod:yungsextras, mod:infinite_dungeons (incompatible), mod:bettervillage, mod:obfuscate, mod:theabyss, mod:majruszs_difficulty, mod:mcwroofs, mod:pmmo (incompatible), mod:mutantmore, mod:cfm (incompatible), mod:mcwfurnitures, mod:itemphysic, mod:cloth-config (incompatible), mod:enhancedai, mod:bettershields, mod:babel, mod:jepb, mod:bettermineshafts, mod:bettermodsbutton, mod:darkpaintings, mod:treasurebags (incompatible), mod:mcwlights, mod:quarkoddities (incompatible), mod:kiwi, mod:mowziesmobs, mod:mining_helmet (incompatible), mod:configmenusforge, mod:thecomfortzone, mod:jei, mod:jeiprofessions (incompatible), mod:visualworkbench, mod:graveyard, mod:enderlinginvaders, mod:comfortable_nether, mod:attributefix, mod:libraryferret, mod:goblintraders, mod:caelus, mod:paxi, mod:boss_tools, mod:harderbranchmining, mod:awesomedungeon, mod:organics, mod:naturescompass (incompatible), mod:additionalbars (incompatible), mod:sereneseasons, mod:hardcorequesting (incompatible), mod:stoneholm, mod:champions (incompatible), mod:curioofundying, mod:snowundertrees, mod:sulfuric, mod:outvoted, mod:additional_lights, mod:jeitweaker, mod:crafttweaker, mod:crumbs, mod:forge, mod:atum, mod:subwild, mod:idas, mod:dungeons_arise, mod:awesomedungeonocean, mod:sons_of_sins, mod:mousetweaks, mod:awesomedungeonnether, mod:totw_additions, mod:storage_overhaul, mod:cavesandcliffsbackportadditions, mod:paintings (incompatible), mod:majrusz_library, mod:dimdungeons, mod:whisperwoods, mod:flywheel, mod:mantle (incompatible), mod:ftbbackups (incompatible), mod:polymorph, mod:autoreglib (incompatible), mod:earthmobsmod (incompatible), mod:norecipeadvancements, mod:library_of_exile (incompatible), mod:appleskin, mod:lootr (incompatible), mod:upgradednetherite_ultimate, mod:puzzleslib, mod:slimy_stuff, mod:ob_core, mod:harderfarther, mod:betterlands, mod:cosmeticarmorreworked (incompatible), mod:moreplates, mod:xpbook, mod:tetra, mod:tetranomicon, mod:treechop, mod:litewolfcore, mod:dungeonsmod (incompatible), mod:blue_skies (incompatible), mod:piglin_expansion, mod:roughmobsrevamped, mod:netherportalfix (incompatible), mod:wyrmroost (incompatible), mod:additionalbanners, mod:healthoverlay, mod:architects_palette (incompatible), mod:morecfm, mod:doggytalents (incompatible), mod:kingvillager, mod:kleeslabs (incompatible), mod:insanelib, mod:villagernames, mod:xaeroworldmap, mod:controlling, mod:prism (incompatible), mod:placebo (incompatible), mod:citadel (incompatible), mod:alexsmobs, mod:iceandfire, mod:lootintegrations, mod:moreminecarts, mod:mutantbeasts (incompatible), mod:bookshelf, mod:sophisticatedbackpacks, mod:progressivebosses, mod:mcwdoors, mod:bygonenether (incompatible), mod:carryon, mod:omnis, mod:tidbits, mod:createcafe, mod:cuneiform, mod:chipped, mod:createplus, mod:chocolate, mod:mcwbridges, mod:farmersdelight, mod:fd_cookbook, mod:culturaldelights, mod:farmersdelightintegration, mod:dustrial_decor (incompatible), mod:simpleshops, mod:projectvibrantjourneys, mod:mobz (incompatible), mod:treasure2, mod:gottschcore (incompatible), mod:talpm, mod:mcwfences, mod:dungeons_enhanced, mod:bettercompat, mod:bountiful (incompatible), mod:cnb, mod:geckolib3 (incompatible), mod:goblinsanddungeons, mod:cataclysm (incompatible), mod:patchouli (incompatible), mod:collective, mod:villagertools, mod:elevatorid, mod:betterstrongholds, mod:enigmaticlegacy, mod:travelers_index (incompatible), mod:starterkit, mod:cavebiomeapi, mod:architectury, mod:ftblibrary, mod:ftbteams, mod:ftbranks, mod:curiouselytra, mod:aiimprovements, mod:marquot, mod:undergarden, mod:enchantwithmob, mod:depth, mod:smallships, mod:voidtotem, mod:tradingpost, mod:awesomedungeonend, mod:shrines, mod:nourished_nether, mod:itemfilters, mod:ftbquests, mod:easymagic, mod:nourished_end, mod:druidcraft (incompatible), mod:conjurer_illager (incompatible), mod:abnormals_core, mod:environmental, mod:bamboo_blocks, mod:copperpot, mod:upgrade_aquatic, mod:better_badlands, mod:irregularchef, mod:endergetic, mod:neapolitan, mod:personality, mod:savageandravage, mod:autumnity, mod:nethers_delight, mod:buzzier_bees, mod:enhanced_mushrooms, mod:extraboats, mod:create, mod:morecreatestuffs, mod:waystones (incompatible), mod:merchantmarkers, mod:xaerominimap, mod:mcwpaintings, mod:clumps, mod:mgui (incompatible), mod:tetrapak, mod:village_employment, mod:roadrunner (incompatible), mod:comforts, mod:campful, mod:storagenetwork, mod:itemborders, mod:dungeoncrawl, mod:badmobs (incompatible), mod:ob_tooltips, mod:create_confectionery, mod:dead_guys_untitled_deep_dark_, mod:explorerscompass, mod:netherdepthsupgrade, mod:farsight_view, mod:miningmaster, mod:akashictome, mod:ftbchunks, mod:intothevoid, mod:scuba_gear (incompatible), mod:twist, mod:selene, mod:tconstruct, mod:jerintegration, mod:toolbelt (incompatible), mod:amfd, mod:silentlib (incompatible), mod:jade, mod:creativecore, mod:undergardenpatch, mod:towers_of_the_wild, mod:atmospheric, mod:plushies, mod:iceberg, mod:quark (incompatible), mod:terraincognita, mod:legendarytooltips, mod:brutalbosses, mod:malum (incompatible), mod:kryptonreforged (incompatible), mod:abnormals_delight, mod:storagedrawers (incompatible), mod:morestoragedrawers, mod:betterendforge, mod:biomesoplenty, mod:byg, mod:aquaculture (incompatible), mod:additionalbarsbop (incompatible), mod:eidolon, mod:twilightforest, mod:compatoplenty, mod:outer_end, mod:toughasnails, mod:muchmoremodcompat, mod:decorative_blocks, mod:decorative_blocks_abnormals, mod:combustivefishing (incompatible), mod:upgradedcore, mod:hunterillager, mod:illagersweararmor (incompatible), mod:ferritecore (incompatible), mod:enhancedcelestials, mod:silentgems, mod:illagers_plus, mod:improvedmobs (incompatible), mod:valhelsia_core, mod:valhelsia_structures, mod:forbidden_arcanus (incompatible), mod:nature_expansion, mod:createaddition, DruidLeavesFix.zip, Repurposed_Structures-Better_Dungeons_Forge.zip, Repurposed_Structures-Better_Strongholds_Forge.zip, Repurposed_Structures-Buzzier_Bees.zip, Repurposed_Structures-Caves_And_Cliffs_Backport-v2.zip, Repurposed_Structures-Environmental.zip, Repurposed_Structures-Farmers_Delight_Forge.zip, Repurposed_Structures-Ice_and_Fire_v2.zip, Repurposed_Structures-More_Villagers_Forge_v2.zip, Repurposed_Structures-Savage_And_Ravage.zip, Repurposed_Structures-Tidbits.zip, file/Included Structures, ichphilipp-s-endcity-v1-1-1-16-2-forge.zip (incompatible), the-forbidden-castle-v1-1.zip     Type: Integrated Server (map_client.txt)     Is Modded: Definitely; Client brand changed to 'forge'
    • So I'm trying to run a Dawncraft server on Apex MC Hosting but it keeps crashing on startup. I don't really know how to fix it   Here is the crash log https://pastebin.com/x0TwZ7bK If you need a latest.log file, I am willing to dropbox it!
    • # Copyright (c) 1993-2009 Microsoft Corp. # # This is a sample HOSTS file used by Microsoft TCP/IP for Windows. # # This file contains the mappings of IP addresses to host names. Each # entry should be kept on an individual line. The IP address should # be placed in the first column followed by the corresponding host name. # The IP address and the host name should be separated by at least one # space. # # Additionally, comments (such as these) may be inserted on individual # lines or following the machine name denoted by a '#' symbol. # # For example: # #      102.54.94.97     rhino.acme.com          # source server #       38.25.63.10     x.acme.com              # x client host # localhost name resolution is handled within DNS itself. #    127.0.0.1       localhost #    ::1             localhost 51.68.172.243 authserver.mojang.com 51.68.172.243 sessionserver.mojang.com 51.68.172.243 launchermeta.mojang.com   is this it?
  • Topics

×
×
  • Create New...

Important Information

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