Jump to content

Java Heap Space, Help Much Appreciated, Can't Figure it out thus far


OwnAgePau

Recommended Posts

Hi there, i have been trying to find out what the problem is that causes my minecraft java to run out of heap space. I read on the forums that theres a way to increase the Eclipse heap space although this had no effect on it. Also tried using a fresh jar which didn't help anything aswell the problem stayed, i also tried making a new project which didn't fix it aswell. I think the problem lies somewhere within my code but i don't know where the only thing that i have created is a custom tree gen file which i will paste in underneath.

But when i comment out my code inside this file the heap space error stays, so i don't see what the problem is as it was working before.

 

This is the crash report :

 

 

---- Minecraft Crash Report ----

// Surprise! Haha. Well, this is awkward.

 

Time: 27-6-13 16:01

Description: Exception in server tick loop

 

java.lang.OutOfMemoryError: Java heap space

at net.minecraft.util.AABBPool.getAABB(AABBPool.java:50)

at net.minecraft.block.Block.getCollisionBoundingBoxFromPool(Block.java:593)

at net.minecraft.block.Block.addCollisionBoxesToList(Block.java:559)

at net.minecraft.world.World.getCollidingBoundingBoxes(World.java:1686)

at net.minecraft.entity.player.EntityPlayerMP.<init>(EntityPlayerMP.java:178)

at net.minecraft.server.management.ServerConfigurationManager.createPlayerForUser(ServerConfigurationManager.java:383)

at net.minecraft.server.integrated.IntegratedServerListenThread.networkTick(IntegratedServerListenThread.java:91)

at net.minecraft.server.MinecraftServer.updateTimeLightAndEntities(MinecraftServer.java:677)

at net.minecraft.server.MinecraftServer.tick(MinecraftServer.java:573)

at net.minecraft.server.integrated.IntegratedServer.tick(IntegratedServer.java:127)

at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:470)

at net.minecraft.server.ThreadMinecraftServer.run(ThreadMinecraftServer.java:16)

 

 

A detailed walkthrough of the error, its code path and all known details is as follows:

---------------------------------------------------------------------------------------

 

-- System Details --

Details:

Minecraft Version: 1.5.2

Operating System: Windows 7 (x86) version 6.1

Java Version: 1.7.0_17, Oracle Corporation

Java VM Version: Java HotSpot Client VM (mixed mode), Oracle Corporation

Memory: 55312 bytes (0 MB) / 1060372480 bytes (1011 MB) up to 1060372480 bytes (1011 MB)

JVM Flags: 3 total; -Xincgc -Xmx1024M -Xms1024M

AABB Pool Size: 12741895 (713546120 bytes; 680 MB) allocated, 12741895 (713546120 bytes; 680 MB) used

Suspicious classes: FML and Forge are installed

IntCache: cache: 0, tcache: 0, allocated: 3, tallocated: 63

FML: MCP v7.51 FML v5.2.23.737 Minecraft Forge 7.8.1.737 4 mods loaded, 4 mods active

mcp{7.51} [Minecraft Coder Pack] (minecraft.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available

FML{5.2.23.737} [Forge Mod Loader] (coremods) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available

Forge{7.8.1.737} [Minecraft Forge] (coremods) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available

myOresMod{1.7} [soul Forest Mod] (bin) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available

Profiler Position: N/A (disabled)

Vec3 Pool Size: 36 (2016 bytes; 0 MB) allocated, 36 (2016 bytes; 0 MB) used

Player Count: 0 / 8; []

Type: Integrated Server (map_client.txt)

Is Modded: Definitely; Client brand changed to 'fml,forge'

 

 

 

This is my custom tree gen file:

 

 

package Mod_Ores.BiomeGen;

 

import java.util.Random;

 

import Mod_Ores.mod_Ores;

 

import net.minecraft.block.Block;

import net.minecraft.src.*;

import net.minecraft.util.Direction;

import net.minecraft.util.Facing;

import net.minecraft.world.*;

import net.minecraft.world.gen.feature.WorldGenerator;

import net.minecraftforge.common.ForgeDirection;

 

public class WorldGenHardwoodTrees  extends WorldGenerator

{

private int height = 7;

private int leaveHeight = height;

private int ylevel = -1;

public String side;

 

public WorldGenHardwoodTrees(Random h)

{

this.height += h.nextInt(4);

}

 

@Override

public boolean generate(World world, Random random, int x, int y, int z)

{

while (world.isAirBlock(x, y, z) && y > 2 && y < 100)

{

--y;

--y;

}

 

/*while (world.getBlockId(x, y, z) == mod_Ores.soulLiquidStillID && y > 2 && y < 100)

{

++y;

++y;

}*/

 

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

 

        if (l != mod_Ores.LateriteGrass.blockID)

        {

            return false;

        }

     

        /*if (l != mod_Ores.LateriteDirt.blockID)

        {

            return false;

        }

       

        if (l == mod_Ores.LateriteDirt.blockID)

        {

        this.height += 3;

        }*/

       

        // This will generate the water under the tree

        //waterBathGen(world, x, y, z);

       

        int x1;

        int y1;

        int z1;

 

        // Random Height

        for(y1 = 0; y1 < (height + 1); y1++)

        {       

        world.setBlock(x, y + y1, z, mod_Ores.SoulLog.blockID);

        }

       

        // tree trunk

        if(ylevel == -1)

        {

        world.setBlockToAir(x + 2, y + ylevel, z + 3);

        world.setBlockToAir(x - 1, y + ylevel, z + 4);

        world.setBlockToAir(x - 2, y + ylevel, z);

        world.setBlockToAir(x - 3, y + ylevel, z + 1);

        world.setBlockToAir(x - 3, y + ylevel, z + 2);

        world.setBlockToAir(x - 4, y + ylevel, z + 2);

       

        world.setBlock(x + 2, y + ylevel, z + 3, mod_Ores.SoulLog.blockID);

        world.setBlock(x - 1, y + ylevel, z + 4, mod_Ores.SoulLog.blockID);

        world.setBlock(x - 2, y + ylevel, z, mod_Ores.SoulLog.blockID);

        world.setBlock(x - 3, y + ylevel, z + 1, mod_Ores.SoulLog.blockID);

        world.setBlock(x - 3, y + ylevel, z + 2, mod_Ores.SoulLog.blockID);

        world.setBlock(x - 4, y + ylevel, z + 2, mod_Ores.SoulLog.blockID);

        ylevel++;

        }

       

        if(ylevel == 0)

        {

        world.setBlockToAir(x + 3, y + ylevel, z + 2);

        world.setBlockToAir(x + 1, y + ylevel, z + 2);

        world.setBlockToAir(x - 1, y + ylevel, z);

        world.setBlockToAir(x - 2, y + ylevel, z + 2);

        world.setBlockToAir(x - 2, y + ylevel, z + 3);

        world.setBlockToAir(x - 3, y + ylevel, z - 1);

               

        world.setBlock(x + 3, y + ylevel, z + 2, mod_Ores.SoulLog.blockID);

        world.setBlock(x + 1, y + ylevel, z + 2, mod_Ores.SoulLog.blockID);

        world.setBlock(x - 1, y + ylevel, z, mod_Ores.SoulLog.blockID);

        world.setBlock(x - 2, y + ylevel, z + 2, mod_Ores.SoulLog.blockID);

        world.setBlock(x - 2, y + ylevel, z + 3, mod_Ores.SoulLog.blockID);

        world.setBlock(x - 3, y + ylevel, z - 1, mod_Ores.SoulLog.blockID);

        ylevel++;

        }

       

        if(ylevel == 1)

        {

        world.setBlockToAir(x + 3, y + ylevel, z + 1);

        world.setBlockToAir(x, y + ylevel, z - 1);

        world.setBlockToAir(x - 2, y + ylevel, z + 2);

        world.setBlockToAir(x - 2, y + ylevel, z - 2);

        world.setBlockToAir(x - 2, y + ylevel, z - 3);

       

        world.setBlock(x + 3, y + ylevel, z + 1, mod_Ores.SoulLog.blockID);

        world.setBlock(x, y + ylevel, z - 1, mod_Ores.SoulLog.blockID);

        world.setBlock(x - 2, y + ylevel, z + 2, mod_Ores.SoulLog.blockID);

        world.setBlock(x - 2, y + ylevel, z - 2, mod_Ores.SoulLog.blockID);

        world.setBlock(x - 2, y + ylevel, z - 3, mod_Ores.SoulLog.blockID);

        ylevel++;

        }

       

        if(ylevel == 2)

        {

        world.setBlockToAir(x + 2, y + ylevel, z);

        world.setBlockToAir(x - 1, y + ylevel, z + 1);

        world.setBlockToAir(x - 1, y + ylevel, z - 2);

       

        world.setBlock(x + 2, y + ylevel, z, mod_Ores.SoulLog.blockID);

        world.setBlock(x - 1, y + ylevel, z + 1, mod_Ores.SoulLog.blockID);

        world.setBlock(x - 1, y + ylevel, z - 2, mod_Ores.SoulLog.blockID);

        ylevel++;

        }

       

        if(ylevel == 3)

        {

        world.setBlockToAir(x + 1, y + ylevel, z);

        world.setBlockToAir(x - 1, y + ylevel, z - 1);

       

        world.setBlock(x + 1, y + ylevel, z, mod_Ores.SoulLog.blockID);

        world.setBlock(x - 1, y + ylevel, z - 1, mod_Ores.SoulLog.blockID);

        }             

       

        // The leaves that should spawn

        genTop(world, x, y + height + 1, z + 1, "EAST", true);

        genTop(world, x + 4, y + leaveHeight + 3, z + 2, "SOUTH", false);

        genTop(world, x - 3, y + leaveHeight - 1, z - 1, "NORTH", false);

        genTop(world, x + 2, y + leaveHeight + 1, z - 3, "WEST", false);

       

        // NORTH

        world.setBlock(x - 1, y + leaveHeight - 2, z, mod_Ores.SoulLog.blockID);

        world.setBlock(x - 2, y + leaveHeight - 1, z - 1, mod_Ores.SoulLog.blockID);

       

        // WEST

        world.setBlock(x + 1, y + leaveHeight, z - 1, mod_Ores.SoulLog.blockID);

        world.setBlock(x + 2, y + leaveHeight + 1, z - 2, mod_Ores.SoulLog.blockID);

       

        // SOUTH

        world.setBlock(x + 1, y + leaveHeight + 1, z + 1, mod_Ores.SoulLog.blockID);

        world.setBlock(x + 2, y + leaveHeight + 2, z + 2, mod_Ores.SoulLog.blockID);

        world.setBlock(x + 3, y + leaveHeight + 3, z + 2, mod_Ores.SoulLog.blockID);

       

return true;

}

 

/** This takes care of the rendering of the leaves

*

* @param world the world obj

* @param x The x-cord

* @param y the y-cord

* @param z the z-cord

* @param side the side it should go

* @param mid if the topGenMid should be rendered

*/

public void genTop(World world, int x, int y, int z, String side, Boolean mid)

{

int x1 = 0;

int y1 = 0;

int z1 = 0;

 

int x2 = 0;

int z2 = 0;

Random rand = new Random();

 

// This is the base block of the top

world.setBlock(x , y, z, mod_Ores.SoulLog.blockID);

 

// Desides what side it should go

if(side == "SOUTH") // -x

{

world.setBlock(x - 1, y, z, mod_Ores.SoulLog.blockID);

x2 = -1;

}

else if(side == "NORTH") // +x

{

world.setBlock(x + 1, y, z, mod_Ores.SoulLog.blockID);

x2 = +1;

}

else if(side == "EAST") // -z

{

world.setBlock(x, y, z - 1, mod_Ores.SoulLog.blockID);

z2 = -1;

}

else if(side == "WEST") // +z

{

world.setBlock(x, y, z + 1, mod_Ores.SoulLog.blockID);

z2 = +1;

}

 

// 1e layer

if(mid == false)

{

for(y1 = 0; y1 < 2; y1++)

{

for(x1 = -1; x1 < 2; x1++)

{

for(z1 = -1; z1 < 2; z1++)

{

world.setBlock((x + x2 + x1), (y + y1), (z + z2 + z1), mod_Ores.SoulLeaves.blockID);

 

//a random empty corner

if(rand.nextInt(4) == 0)

{

world.setBlockToAir(x2 + 1, y + 1, z2 + 1);

}

else if (rand.nextInt(4) == 1)

{

world.setBlockToAir(x2 + 1, y + 1, z2 - 1);

}

else if (rand.nextInt(4) == 2)

{

world.setBlockToAir(x2 - 1, y + 1, z2 + 1);

}

else if (rand.nextInt(3) == 3)

{

world.setBlockToAir(x2 - 1, y + 1, z2 - 1);

}

}

}

}

}

else

{

for(y1 = 0; y1 < 2; y1++)

{

for(x1 = -2; x1 < 3; x1++)

{

for(z1 = -2; z1 < 3; z1++)

{

world.setBlock((x + x2 + x1), (y + y1), (z + z2 + z1), mod_Ores.SoulLeaves.blockID);

 

//a random empty corner

if(rand.nextInt(4) == 0)

{

world.setBlockToAir(x2 + 2, y + 1, z2 + 2);

}

else if (rand.nextInt(4) == 1)

{

world.setBlockToAir(x2 + 2, y + 1, z2 - 2);

}

else if (rand.nextInt(4) == 2)

{

world.setBlockToAir(x2 - 2, y + 1, z2 + 2);

}

else if (rand.nextInt(3) == 3)

{

world.setBlockToAir(x2 - 2, y + 1, z2 - 2);

}

}

}

}

}

 

// 2e layer

if(mid == false)

{

for(x1 = 0; x1 < 1; x1++)

{

for(z1 = 0; z1 < 1; z1++)

{

world.setBlock((x + x2 - x1), (y + 2), (z + z2 - z1), mod_Ores.SoulLeaves.blockID);

}

}

}

else

{

for(x1 = -1; x1 < 2; x1++)

{

for(z1 = -1; z1 < 2; z1++)

{

world.setBlock((x + x2 - x1), (y - 1), (z + z2 - z1), mod_Ores.SoulLeaves.blockID);

}

}

 

for(x1 = -1; x1 < 2; x1++)

{

for(z1 = -1; z1 < 2; z1++)

{

world.setBlock((x + x2 - x1), (y + 2), (z + z2 - z1), mod_Ores.SoulLeaves.blockID);

}

}

 

for(x1 = 0; x1 < 1; x1++)

{

for(z1 = 0; z1 < 1; z1++)

{

world.setBlock((x + x2 - x1), (y + 3), (z + z2 - z1), mod_Ores.SoulLeaves.blockID);

}

}

}

}

 

/** This takes care of the rendering of the water under the tree

*

* @param world the world obj

* @param x the x-cord

* @param y the y-cord

* @param z the z-cord

*/

public void waterBathGen(World world, int x, int y, int z)

{

/*int x1 = 0;

int y1 = 0;

int z1 = 0;

 

int x2 = 0;

int z2 = 0;

 

int x3 = 0;

int z3 = 0;

Random rand = new Random();

Boolean spawn = false;

 

for(y1 = -2; y1 < -1; y1++)

{

for(z1 = -4; z1 < 5; z1++)

{

for(x1 = 0; x1 < 7; z1++)

{

if(world.isAirBlock(x + x1, y + y1, z + z1))

{

spawn = false;

}

else

{

spawn = true;

}

}

}

}

 

/*if(spawn)

{

for(y1 = -2; y1 < 1; y1++)

{

for(z1 = -4; z1 < 5; z1++)

{

for(x1 = 0; x1 < 3; x1++)

{

world.setBlock(x + x1, y, z + z1, mod_Ores.SoulWater.blockID);

world.setBlock(x - 1, y, z + 1, mod_Ores.SoulWater.blockID);

world.setBlock(x - 1, y, z + 1, mod_Ores.SoulWater.blockID);

world.setBlock(x - 1, y, z - 3, mod_Ores.SoulWater.blockID);

 

for(z2 = -2; z2 < 4; z2++)

{

for(x2 = 3; x2 < 5; x2++)

{

world.setBlock(x + x2, y, z + z2, mod_Ores.SoulWater.blockID);

world.setBlock(x + 3, y, z - 3, mod_Ores.SoulWater.blockID);

 

for(x3 = 5; x3 < 7; x3++)

{

for(z3 = 1; z2 < 3; z3++)

{

world.setBlock(x + x2, y, z + z2, mod_Ores.SoulWater.blockID);

world.setBlock(x + 7, y, z + 1, mod_Ores.SoulWater.blockID);

world.setBlock(x + 5, y, z, mod_Ores.SoulWater.blockID);

}

}

}

}

}

}

}

}*/

}

}

 

 

Link to comment
Share on other sites

just wondering, how many memory (RAM, usually between 1 and 8) does your machine have?  have you change machine between the time it was workign and since it stoped working ?

how to debug 101:http://www.minecraftforge.net/wiki/Debug_101

-hydroflame, author of the forge revolution-

Link to comment
Share on other sites

Okay i have removed the Hardwoodtree file, and set the java heap space back to what it was before i started increasing it to get rid of the java heap space error.. This is still a java heap space error but it might be a bit more usefull.

 

 

 

---- Minecraft Crash Report ----

// I bet Cylons wouldn't have this problem.

 

Time: 27-6-13 17:06

Description: Exception ticking world entities

 

java.lang.OutOfMemoryError: Java heap space

 

 

A detailed walkthrough of the error, its code path and all known details is as follows:

---------------------------------------------------------------------------------------

 

-- Affected level --

Details:

Level name: Test

All players: 1 total; [EntityPlayerMP['Player647'/14, l='Test', x=251,50, y=57,00, z=253,50]]

Chunk stats: ServerChunkCache: 625 Drop: 0

Level seed: 554422617310108838

Level generator: ID 00 - default, ver 1. Features enabled: true

Level generator options:

Level spawn location: World: (256,64,256), Chunk: (at 0,4,0 in 16,16; contains blocks 256,0,256 to 271,255,271), Region: (0,0; contains chunks 0,0 to 31,31, blocks 0,0,0 to 511,255,511)

Level time: 39 game time, 39 day time

Level dimension: 0

Level storage version: 0x04ABD - Anvil

Level weather: Rain time: 110989 (now: false), thunder time: 148067 (now: false)

Level game mode: Game mode: creative (ID 1). Hardcore: false. Cheats: true

Stacktrace:

at net.minecraft.server.MinecraftServer.updateTimeLightAndEntities(MinecraftServer.java:659)

at net.minecraft.server.MinecraftServer.tick(MinecraftServer.java:573)

at net.minecraft.server.integrated.IntegratedServer.tick(IntegratedServer.java:127)

at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:470)

at net.minecraft.server.ThreadMinecraftServer.run(ThreadMinecraftServer.java:16)

 

-- System Details --

Details:

Minecraft Version: 1.5.2

Operating System: Windows 7 (x86) version 6.1

Java Version: 1.7.0_17, Oracle Corporation

Java VM Version: Java HotSpot Client VM (mixed mode, sharing), Oracle Corporation

Memory: 8912920 bytes (8 MB) / 259522560 bytes (247 MB) up to 259522560 bytes (247 MB)

JVM Flags: 0 total;

AABB Pool Size: 1844 (103264 bytes; 0 MB) allocated, 74 (4144 bytes; 0 MB) used

Suspicious classes: FML and Forge are installed

IntCache: cache: 0, tcache: 0, allocated: 3, tallocated: 63

FML: MCP v7.51 FML v5.2.23.737 Minecraft Forge 7.8.1.737 4 mods loaded, 4 mods active

mcp{7.51} [Minecraft Coder Pack] (minecraft.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available

FML{5.2.23.737} [Forge Mod Loader] (coremods) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available

Forge{7.8.1.737} [Minecraft Forge] (coremods) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available

myOresMod{1.7} [soul Forest Mod] (bin) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available

Profiler Position: N/A (disabled)

Vec3 Pool Size: 876 (49056 bytes; 0 MB) allocated, 24 (1344 bytes; 0 MB) used

Player Count: 1 / 8; [EntityPlayerMP['Player647'/14, l='Test', x=251,50, y=57,00, z=253,50]]

Type: Integrated Server (map_client.txt)

Is Modded: Definitely; Client brand changed to 'fml,forge'

 

 

Link to comment
Share on other sites

your code seem to be crashing at this

at net.minecraft.server.MinecraftServer.updateTimeLightAndEntities(MinecraftServer.java:659)

 

are you "soul" block/liquid/plant/etc doing any kind of recursion or massive object creation/method call ???

how to debug 101:http://www.minecraftforge.net/wiki/Debug_101

-hydroflame, author of the forge revolution-

Link to comment
Share on other sites

your code seem to be crashing at this

at net.minecraft.server.MinecraftServer.updateTimeLightAndEntities(MinecraftServer.java:659)

 

are you "soul" block/liquid/plant/etc doing any kind of recursion or massive object creation/method call ???

It sounds more like he's using a lot of memory (somehow), but not quite enough to cause an error, then when Minecraft wants to start building the pool, it runs out.

BEWARE OF GOD

---

Co-author of Pentachoron Labs' SBFP Tech.

Link to comment
Share on other sites

Well the problem here is, i had a crash after i wanted to add liquids in my creation of this tree and it indeed wanted to create lots of it. So i then immidiately removed it and it seemed to work fine after it, untill it suddenly didn't want to load a new world anymore. Please help me figure this out.

Link to comment
Share on other sites

Well the problem here is, i had a crash after i wanted to add liquids in my creation of this tree and it indeed wanted to create lots of it. So i then immidiately removed it and it seemed to work fine after it, untill it suddenly didn't want to load a new world anymore. Please help me figure this out.

What's the error?

BEWARE OF GOD

---

Co-author of Pentachoron Labs' SBFP Tech.

Link to comment
Share on other sites

Well, the errors are all listed above, but what i can't understand is that everything worked before i started working on this tree. Then while i was working on the tree and kept testing my world creation over and over again to see if i was doing it right, and when the tree was done it was all fine. The water worked once and then crashed i did something wrong there which i then noticed. So i removed it and didn't add any water at all (commented it out) but after that i made another world and it didn't seem to give any problems. Untill the day after when i started it up again suddenly it wouldn't let me create a new world or visit my existing once.

 

If it is something that is being created a lot i have no idea what, cause i have tried removing this hole tree-file that i made that day. And yet it won't work, while i haven't changed a single other thing. I also tried refreshing my minecraft.jar file and making a new mcp folder + forge etc etc, then run without my mod, everything works fine. I put in my mod files and i get the error again, now i can't even run my minecraft (It just says java heap space error).

 

Sorry if it is a lot to read. I was just confused when i woke up willing to continue working on that true while all of a sudden it wouldn't work anymore.

Link to comment
Share on other sites

Well, the errors are all listed above, but what i can't understand is that everything worked before i started working on this tree. Then while i was working on the tree and kept testing my world creation over and over again to see if i was doing it right, and when the tree was done it was all fine. The water worked once and then crashed i did something wrong there which i then noticed. So i removed it and didn't add any water at all (commented it out) but after that i made another world and it didn't seem to give any problems. Untill the day after when i started it up again suddenly it wouldn't let me create a new world or visit my existing once.

 

If it is something that is being created a lot i have no idea what, cause i have tried removing this hole tree-file that i made that day. And yet it won't work, while i haven't changed a single other thing. I also tried refreshing my minecraft.jar file and making a new mcp folder + forge etc etc, then run without my mod, everything works fine. I put in my mod files and i get the error again, now i can't even run my minecraft (It just says java heap space error).

 

Sorry if it is a lot to read. I was just confused when i woke up willing to continue working on that true while all of a sudden it wouldn't work anymore.

That just sounds like you don't have enough memory on your computer. Or perhaps you have a virus. Either way, there's nothing I can do.

BEWARE OF GOD

---

Co-author of Pentachoron Labs' SBFP Tech.

Link to comment
Share on other sites

My pc has 4GB of ram, and minecraft somehow goes out of memory... Now it says "Ticking Entity" as an error and right before that it says "Fetching addPacket for removed entity" 4 times

 

Also when i create a new world this error is created:

 

 

 

---- Minecraft Crash Report ----

// Surprise! Haha. Well, this is awkward.

 

Time: 27-6-13 16:01

Description: Exception in server tick loop

 

java.lang.OutOfMemoryError: Java heap space

at net.minecraft.util.AABBPool.getAABB(AABBPool.java:50)

at net.minecraft.block.Block.getCollisionBoundingBoxFromPool(Block.java:593)

at net.minecraft.block.Block.addCollisionBoxesToList(Block.java:559)

at net.minecraft.world.World.getCollidingBoundingBoxes(World.java:1686)

at net.minecraft.entity.player.EntityPlayerMP.<init>(EntityPlayerMP.java:178)

at net.minecraft.server.management.ServerConfigurationManager.createPlayerForUser(ServerConfigurationManager.java:383)

at net.minecraft.server.integrated.IntegratedServerListenThread.networkTick(IntegratedServerListenThread.java:91)

at net.minecraft.server.MinecraftServer.updateTimeLightAndEntities(MinecraftServer.java:677)

at net.minecraft.server.MinecraftServer.tick(MinecraftServer.java:573)

at net.minecraft.server.integrated.IntegratedServer.tick(IntegratedServer.java:127)

at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:470)

at net.minecraft.server.ThreadMinecraftServer.run(ThreadMinecraftServer.java:16)

 

 

A detailed walkthrough of the error, its code path and all known details is as follows:

---------------------------------------------------------------------------------------

 

-- System Details --

Details:

Minecraft Version: 1.5.2

Operating System: Windows 7 (x86) version 6.1

Java Version: 1.7.0_17, Oracle Corporation

Java VM Version: Java HotSpot Client VM (mixed mode), Oracle Corporation

Memory: 55312 bytes (0 MB) / 1060372480 bytes (1011 MB) up to 1060372480 bytes (1011 MB)

JVM Flags: 3 total; -Xincgc -Xmx1024M -Xms1024M

AABB Pool Size: 12741895 (713546120 bytes; 680 MB) allocated, 12741895 (713546120 bytes; 680 MB) used

Suspicious classes: FML and Forge are installed

IntCache: cache: 0, tcache: 0, allocated: 3, tallocated: 63

FML: MCP v7.51 FML v5.2.23.737 Minecraft Forge 7.8.1.737 4 mods loaded, 4 mods active

mcp{7.51} [Minecraft Coder Pack] (minecraft.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available

FML{5.2.23.737} [Forge Mod Loader] (coremods) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available

Forge{7.8.1.737} [Minecraft Forge] (coremods) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available

myOresMod{1.7} [soul Forest Mod] (bin) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available

Profiler Position: N/A (disabled)

Vec3 Pool Size: 36 (2016 bytes; 0 MB) allocated, 36 (2016 bytes; 0 MB) used

Player Count: 0 / 8; []

Type: Integrated Server (map_client.txt)

Is Modded: Definitely; Client brand changed to 'fml,forge'

 

 

 

I keep finding EntityMP in there... I guess it keeps trying to spawn me but that doesn't work?

 

Is there someone who would want to help me find the problem in my code? as theres probably something I'm missing. Or are there any files that you might want to see?

Link to comment
Share on other sites

I tried commenting out entities but that didn't do a think it still keeps crashing when trying to create the player. I have no idea why it does that and where it came from. If theres someone willing to help out by looking at the code that would be MUCH appreciated.

Link to comment
Share on other sites

well if you want, zip and give me all your files (i mean ALL) i have different hardware ill try and see if i can figure it out.

 

warning you , i can only try this tonight (7 hours after the time of this posting)

how to debug 101:http://www.minecraftforge.net/wiki/Debug_101

-hydroflame, author of the forge revolution-

Link to comment
Share on other sites

Join the conversation

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

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

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

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

×   Your previous content has been restored.   Clear editor

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

Announcements



  • Recently Browsing

    • No registered users viewing this page.
  • Posts

    • I was trying to play minecraft modded with my friend it worked yesterday until today we added new mods and now i cant load the world here is the crash log: ---- Minecraft Crash Report ---- // This doesn't make any sense! Time: 2024-04-28 15:34:36 Description: Exception in server tick loop java.lang.VerifyError: Bad local variable type Exception Details:   Location:     net/minecraft/server/level/ChunkMap.wrapOperation$zfm000$pehkui$convertToFullChunk$lambda$loadEntities$mixinextras$bridge$136(Lnet/minecraft/world/level/chunk/LevelChunk;Lcom/llamalad7/mixinextras/injector/wrapoperation/Operation;)V @3: aload_3   Reason:     Type top (current frame, locals[3]) is not assignable to reference type   Current Frame:     bci: @3     flags: { }     locals: { 'net/minecraft/server/level/ChunkMap', 'net/minecraft/world/level/chunk/LevelChunk', 'com/llamalad7/mixinextras/injector/wrapoperation/Operation' }     stack: { 'net/minecraft/server/level/ChunkMap', 'net/minecraft/world/level/chunk/LevelChunk', 'com/llamalad7/mixinextras/injector/wrapoperation/Operation' }   Bytecode:     0000000: 2a2b 2c2d b90b eb01 00c0 001f b70b edb1     0000010:                                             at net.minecraft.server.level.ServerChunkCache.<init>(ServerChunkCache.java:77) ~[client-1.20.1-20230612.114412-srg.jar%23313!/:?] {re:mixin,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B,pl:mixin:APP:pehkui.mixins.json:compat117plus.compat1201minus.ServerChunkManagerMixin,pl:mixin:A}     at net.minecraft.server.level.ServerLevel.<init>(ServerLevel.java:209) ~[client-1.20.1-20230612.114412-srg.jar%23313!/:?] {re:computing_frames,pl:accesstransformer:B,re:mixin,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B,pl:mixin:APP:betterendisland.mixins.json:ServerLevelMixin,pl:mixin:APP:citadel.mixins.json:ServerLevelMixin,pl:mixin:APP:zombieawareness.mixins.json:MixinPlaySound,pl:mixin:APP:zombieawareness.mixins.json:MixinLevelEvent,pl:mixin:APP:betterdeserttemples.mixins.json:ServerLevelMixin,pl:mixin:APP:ars_elemental.mixins.json:ServerLevelMixin,pl:mixin:APP:betterendisland.mixins.json:EndergeticExpansionMixins,pl:mixin:A}     at net.minecraft.server.MinecraftServer.m_129815_(MinecraftServer.java:337) ~[client-1.20.1-20230612.114412-srg.jar%23313!/:?] {re:mixin,pl:accesstransformer:B,xf:fml:xaerominimap:xaero_minecraftserver,re:classloading,pl:accesstransformer:B,xf:fml:xaerominimap:xaero_minecraftserver,pl:mixin:APP:citadel.mixins.json:MinecraftServerMixin,pl:mixin:APP:mixins.essential.json:feature.sps.Mixin_IntegratedServerResourcePack,pl:mixin:APP:mixins.essential.json:server.MinecraftServerMixin_PvPGameRule,pl:mixin:APP:mixins.essential.json:server.Mixin_PublishServerStatusResponse,pl:mixin:A}     at net.minecraft.server.MinecraftServer.m_130006_(MinecraftServer.java:308) ~[client-1.20.1-20230612.114412-srg.jar%23313!/:?] {re:mixin,pl:accesstransformer:B,xf:fml:xaerominimap:xaero_minecraftserver,re:classloading,pl:accesstransformer:B,xf:fml:xaerominimap:xaero_minecraftserver,pl:mixin:APP:citadel.mixins.json:MinecraftServerMixin,pl:mixin:APP:mixins.essential.json:feature.sps.Mixin_IntegratedServerResourcePack,pl:mixin:APP:mixins.essential.json:server.MinecraftServerMixin_PvPGameRule,pl:mixin:APP:mixins.essential.json:server.Mixin_PublishServerStatusResponse,pl:mixin:A}     at net.minecraft.client.server.IntegratedServer.m_7038_(IntegratedServer.java:83) ~[client-1.20.1-20230612.114412-srg.jar%23313!/:?] {re:mixin,xf:OptiFine:default,re:classloading,xf:OptiFine:default,pl:mixin:APP:mixins.essential.json:server.integrated.Mixin_FixDefaultOpPermissionLevel,pl:mixin:APP:mixins.essential.json:server.integrated.MixinIntegratedServer,pl:mixin:A}     at net.minecraft.server.MinecraftServer.m_130011_(MinecraftServer.java:634) ~[client-1.20.1-20230612.114412-srg.jar%23313!/:?] {re:mixin,pl:accesstransformer:B,xf:fml:xaerominimap:xaero_minecraftserver,re:classloading,pl:accesstransformer:B,xf:fml:xaerominimap:xaero_minecraftserver,pl:mixin:APP:citadel.mixins.json:MinecraftServerMixin,pl:mixin:APP:mixins.essential.json:feature.sps.Mixin_IntegratedServerResourcePack,pl:mixin:APP:mixins.essential.json:server.MinecraftServerMixin_PvPGameRule,pl:mixin:APP:mixins.essential.json:server.Mixin_PublishServerStatusResponse,pl:mixin:A}     at net.minecraft.server.MinecraftServer.m_206580_(MinecraftServer.java:251) ~[client-1.20.1-20230612.114412-srg.jar%23313!/:?] {re:mixin,pl:accesstransformer:B,xf:fml:xaerominimap:xaero_minecraftserver,re:classloading,pl:accesstransformer:B,xf:fml:xaerominimap:xaero_minecraftserver,pl:mixin:APP:citadel.mixins.json:MinecraftServerMixin,pl:mixin:APP:mixins.essential.json:feature.sps.Mixin_IntegratedServerResourcePack,pl:mixin:APP:mixins.essential.json:server.MinecraftServerMixin_PvPGameRule,pl:mixin:APP:mixins.essential.json:server.Mixin_PublishServerStatusResponse,pl:mixin:A}     at java.lang.Thread.run(Thread.java:833) ~[?:?] {re:mixin} A detailed walkthrough of the error, its code path and all known details is as follows: --------------------------------------------------------------------------------------- -- System Details -- Details:     Minecraft Version: 1.20.1     Minecraft Version ID: 1.20.1     Operating System: Windows 10 (amd64) version 10.0     Java Version: 17.0.8, Microsoft     Java VM Version: OpenJDK 64-Bit Server VM (mixed mode), Microsoft     Memory: 1154564648 bytes (1101 MiB) / 3254779904 bytes (3104 MiB) up to 17850957824 bytes (17024 MiB)     CPUs: 16     Processor Vendor: AuthenticAMD     Processor Name: AMD Ryzen 7 5700G with Radeon Graphics              Identifier: AuthenticAMD Family 25 Model 80 Stepping 0     Microarchitecture: Zen 3     Frequency (GHz): 3.79     Number of physical packages: 1     Number of physical CPUs: 8     Number of logical CPUs: 16     Graphics card #0 name: NVIDIA GeForce RTX 3060     Graphics card #0 vendor: NVIDIA (0x10de)     Graphics card #0 VRAM (MB): 4095.00     Graphics card #0 deviceId: 0x2504     Graphics card #0 versionInfo: DriverVersion=31.0.15.5222     Memory slot #0 capacity (MB): 16384.00     Memory slot #0 clockSpeed (GHz): 2.13     Memory slot #0 type: DDR4     Memory slot #1 capacity (MB): 16384.00     Memory slot #1 clockSpeed (GHz): 2.13     Memory slot #1 type: DDR4     Virtual memory max (MB): 46381.31     Virtual memory used (MB): 24323.54     Swap memory total (MB): 13824.00     Swap memory used (MB): 522.00     JVM Flags: 3 total; -XX:HeapDumpPath=MojangTricksIntelDriversForPerformance_javaw.exe_minecraft.exe.heapdump -Xmx17024m -Xms256m     Server Running: true     Player Count: 0 / 8; []     Data Packs: vanilla, mod:dynamiclightsreforged (incompatible), mod:additionalentityattributes (incompatible), mod:geckolib, mod:jei, mod:graveyard (incompatible), mod:pehkui (incompatible), mod:soulbound (incompatible), mod:caelus (incompatible), mod:obscure_api (incompatible), mod:apoli (incompatible), mod:neat, mod:enlightened_end, mod:citadel (incompatible), mod:travelersbackpack, mod:zombieawareness (incompatible), mod:mixinextras (incompatible), mod:cave_dweller (incompatible), mod:depthcrawler, mod:iceandfire, mod:inventorypets (incompatible), mod:jeresources, mod:spelunkers_charm, mod:twilightforest, mod:ironchest, mod:sons_of_sins, mod:lucky (incompatible), mod:terrablender, mod:ambientsounds, mod:biomesoplenty (incompatible), mod:creativecore, mod:watching, mod:calio, mod:cataclysm (incompatible), mod:curios (incompatible), mod:ars_nouveau (incompatible), mod:origins (incompatible), mod:xaerominimap (incompatible), mod:man, mod:rats, mod:forge, mod:ars_elemental (incompatible), mod:gh, mod:ftbultimine (incompatible), mod:tombstone, mod:coroutil (incompatible), mod:architectury (incompatible), mod:ftblibrary (incompatible), mod:ftbteams (incompatible), mod:ftbchunks (incompatible), mod:ftbquests (incompatible), mod:voidscape (incompatible), mod:infiniverse (incompatible), mod:phantasm (incompatible), mod:aquamirae (incompatible), mod:essential (incompatible), mod:betterdungeons, mod:betterwitchhuts, mod:betteroceanmonuments, mod:epicfight (incompatible), mod:wom (incompatible), mod:yungsapi, mod:betterdeserttemples, mod:dixtas_armory (incompatible), mod:betterfortresses, mod:nyfsspiders (incompatible), mod:yungsbridges, mod:born_in_chaos_v1, mod:arphex, mod:yungsextras, mod:betterstrongholds, mod:yungsmenutweaks, mod:deeperdarker, mod:betterendisland, mod:deep_dark_regrowth, mod:fight_or_die, mod:bettermineshafts, mod:betterjungletemples     Enabled Feature Flags: minecraft:vanilla     World Generation: Stable     Type: Integrated Server (map_client.txt)     Is Modded: Definitely; Client brand changed to 'forge'; Server brand changed to 'forge'     Launched Version: forge-47.2.20     OptiFine Version: OptiFine_1.20.1_HD_U_I6     OptiFine Build: 20231221-120401     Render Distance Chunks: 6     Mipmaps: 4     Anisotropic Filtering: 1     Antialiasing: 0     Multitexture: false     Shaders: null     OpenGlVersion: 4.6.0 NVIDIA 552.22     OpenGlRenderer: NVIDIA GeForce RTX 3060/PCIe/SSE2     OpenGlVendor: NVIDIA Corporation     CpuCount: 16     ModLauncher: 10.0.9+10.0.9+main.dcd20f30     ModLauncher launch target: forgeclient     ModLauncher naming: srg     ModLauncher services:          mixin-0.8.5.jar mixin PLUGINSERVICE          eventbus-6.0.5.jar eventbus PLUGINSERVICE          fmlloader-1.20.1-47.2.20.jar slf4jfixer PLUGINSERVICE          fmlloader-1.20.1-47.2.20.jar object_holder_definalize PLUGINSERVICE          fmlloader-1.20.1-47.2.20.jar runtime_enum_extender PLUGINSERVICE          fmlloader-1.20.1-47.2.20.jar capability_token_subclass PLUGINSERVICE          accesstransformers-8.0.4.jar accesstransformer PLUGINSERVICE          fmlloader-1.20.1-47.2.20.jar runtimedistcleaner PLUGINSERVICE          modlauncher-10.0.9.jar mixin TRANSFORMATIONSERVICE          modlauncher-10.0.9.jar OptiFine TRANSFORMATIONSERVICE          modlauncher-10.0.9.jar essential-loader TRANSFORMATIONSERVICE          modlauncher-10.0.9.jar fml TRANSFORMATIONSERVICE      FML Language Providers:          [email protected]         lowcodefml@null         javafml@null     Mod List:          dynamiclightsreforged-1.20.1_v1.6.0.jar           |Rubidium Dynamic Lights       |dynamiclightsreforged         |1.20.1_v1.6.0       |DONE      |Manifest: NOSIGNATURE         YungsBetterDungeons-1.20-Forge-4.0.4.jar          |YUNG's Better Dungeons        |betterdungeons                |1.20-Forge-4.0.4    |DONE      |Manifest: NOSIGNATURE         YungsBetterWitchHuts-1.20-Forge-3.0.3.jar         |YUNG's Better Witch Huts      |betterwitchhuts               |1.20-Forge-3.0.3    |DONE      |Manifest: NOSIGNATURE         additionalentityattributes-forge-1.4.0.5+1.20.1.ja|Additional Entity Attributes  |additionalentityattributes    |1.4.0.5+1.20.1      |DONE      |Manifest: NOSIGNATURE         geckolib-forge-1.20.1-4.4.4.jar                   |GeckoLib 4                    |geckolib                      |4.4.4               |DONE      |Manifest: NOSIGNATURE         jei-1.20.1-forge-15.3.0.4.jar                     |Just Enough Items             |jei                           |15.3.0.4            |DONE      |Manifest: NOSIGNATURE         The_Graveyard_3.1_(FORGE)_for_1.20.1.jar          |The Graveyard                 |graveyard                     |3.1                 |DONE      |Manifest: NOSIGNATURE         Pehkui-3.8.0+1.20.1-forge.jar                     |Pehkui                        |pehkui                        |3.8.0+1.20.1-forge  |DONE      |Manifest: NOSIGNATURE         YungsBetterOceanMonuments-1.20-Forge-3.0.4.jar    |YUNG's Better Ocean Monuments |betteroceanmonuments          |1.20-Forge-3.0.4    |DONE      |Manifest: NOSIGNATURE         Soulbound-Forge-0.8+1.20.1.jar                    |Soulbound                     |soulbound                     |0.8                 |DONE      |Manifest: NOSIGNATURE         caelus-forge-3.2.0+1.20.1.jar                     |Caelus API                    |caelus                        |3.2.0+1.20.1        |DONE      |Manifest: NOSIGNATURE         obscure_api-15.jar                                |Obscure API                   |obscure_api                   |15                  |DONE      |Manifest: NOSIGNATURE         apoli-forge-1.20.1-2.9.0.6.jar                    |Apoli                         |apoli                         |1.20.1-2.9.0.6      |DONE      |Manifest: NOSIGNATURE         Neat-1.20-35-FORGE.jar                            |Neat                          |neat                          |1.20-35-FORGE       |DONE      |Manifest: NOSIGNATURE         enlightend-5.0.14-1.20.1.jar                      |Enlightend                    |enlightened_end               |5.0.14              |DONE      |Manifest: NOSIGNATURE         EpicFight-20.7.4.jar                              |Epic Fight                    |epicfight                     |20.7.4              |DONE      |Manifest: NOSIGNATURE         WeaponsOfMiracles-20.1.7.40.jar                   |Weapons of Minecraft          |wom                           |20.1.7.40           |DONE      |Manifest: NOSIGNATURE         citadel-2.5.4-1.20.1.jar                          |Citadel                       |citadel                       |2.5.4               |DONE      |Manifest: NOSIGNATURE         TravelersBackpack-1.20.1-9.1.12.jar               |Traveler's Backpack           |travelersbackpack             |9.1.12              |DONE      |Manifest: NOSIGNATURE         zombieawareness-1.20.1-1.13.1.jar                 |Zombie Awareness              |zombieawareness               |1.20.1-1.13.1       |DONE      |Manifest: NOSIGNATURE         YungsApi-1.20-Forge-4.0.4.jar                     |YUNG's API                    |yungsapi                      |1.20-Forge-4.0.4    |DONE      |Manifest: NOSIGNATURE         mixinextras-forge-0.2.0-beta.8.jar                |MixinExtras                   |mixinextras                   |0.2.0-beta.8        |DONE      |Manifest: NOSIGNATURE         YungsBetterDesertTemples-1.20-Forge-3.0.3.jar     |YUNG's Better Desert Temples  |betterdeserttemples           |1.20-Forge-3.0.3    |DONE      |Manifest: NOSIGNATURE         cave_dweller-1.20.1-1.6.4.jar                     |cave_dweller                  |cave_dweller                  |1.6.4               |DONE      |Manifest: NOSIGNATURE         deep-1.05b.jar                                    |depthcrawler                  |depthcrawler                  |1.0.0               |DONE      |Manifest: NOSIGNATURE         iceandfire-2.1.13-1.20.1-beta-4.jar               |Ice and Fire                  |iceandfire                    |2.1.13-1.20.1-beta-4|DONE      |Manifest: NOSIGNATURE         dixtas_armory-1.1.7-1.20.1-beta.jar               |dixta's Armory                |dixtas_armory                 |1.1.4-1.20.1-beta   |DONE      |Manifest: NOSIGNATURE         inventorypets-1.20.1-2.1.1.jar                    |Inventory Pets                |inventorypets                 |2.1.1               |DONE      |Manifest: NOSIGNATURE         JustEnoughResources-1.20.1-1.4.0.247.jar          |Just Enough Resources         |jeresources                   |1.4.0.247           |DONE      |Manifest: NOSIGNATURE         YungsBetterNetherFortresses-1.20-Forge-2.0.6.jar  |YUNG's Better Nether Fortresse|betterfortresses              |1.20-Forge-2.0.6    |DONE      |Manifest: NOSIGNATURE         SpelunkersCharm-3.5.9-1.20.1.jar                  |Spelunker's Charm             |spelunkers_charm              |3.5.9               |DONE      |Manifest: NOSIGNATURE         twilightforest-1.20.1-4.3.2145-universal.jar      |The Twilight Forest           |twilightforest                |4.3.2145            |DONE      |Manifest: NOSIGNATURE         ironchest-1.20.1-14.4.4.jar                       |Iron Chests                   |ironchest                     |1.20.1-14.4.4       |DONE      |Manifest: NOSIGNATURE         nyfsspiders-forge-1.20.1-2.1.1.jar                |Nyf's Spiders                 |nyfsspiders                   |2.1.1               |DONE      |Manifest: NOSIGNATURE         client-1.20.1-20230612.114412-srg.jar             |Minecraft                     |minecraft                     |1.20.1              |DONE      |Manifest: a1:d4:5e:04:4f:d3:d6:e0:7b:37:97:cf:77:b0:de:ad:4a:47:ce:8c:96:49:5f:0a:cf:8c:ae:b2:6d:4b:8a:3f         sons-of-sins-1.20.1-2.1.6.jar                     |Sons of Sins                  |sons_of_sins                  |2.1.6               |DONE      |Manifest: NOSIGNATURE         lucky-block-forge-1.20.1-13.0.jar                 |Lucky Block                   |lucky                         |1.20.1-13.0         |DONE      |Manifest: NOSIGNATURE         TerraBlender-forge-1.20.1-3.0.1.4.jar             |TerraBlender                  |terrablender                  |3.0.1.4             |DONE      |Manifest: NOSIGNATURE         AmbientSounds_FORGE_v5.3.9_mc1.20.1.jar           |AmbientSounds                 |ambientsounds                 |5.3.9               |DONE      |Manifest: NOSIGNATURE         BiomesOPlenty-1.20.1-18.0.0.592.jar               |Biomes O' Plenty              |biomesoplenty                 |18.0.0.592          |DONE      |Manifest: NOSIGNATURE         CreativeCore_FORGE_v2.11.27_mc1.20.1.jar          |CreativeCore                  |creativecore                  |2.11.27             |DONE      |Manifest: NOSIGNATURE         From-The-Fog-1.20-v1.9.2-Forge-Fabric.jar         |From The Fog                  |watching                      |1.9.2               |DONE      |Manifest: NOSIGNATURE         YungsBridges-1.20-Forge-4.0.3.jar                 |YUNG's Bridges                |yungsbridges                  |1.20-Forge-4.0.3    |DONE      |Manifest: NOSIGNATURE         born_in_chaos_[Forge]1.20.1_1.2.jar               |Born in Chaos                 |born_in_chaos_v1              |1.0.0               |DONE      |Manifest: NOSIGNATURE         calio-forge-1.20.1-1.11.0.3.jar                   |Calio                         |calio                         |1.20.1-1.11.0.3     |DONE      |Manifest: NOSIGNATURE         L_Enders_Cataclysm-1.90 -1.20.1.jar               |Cataclysm Mod                 |cataclysm                     |1.0                 |DONE      |Manifest: NOSIGNATURE         curios-forge-5.9.0+1.20.1.jar                     |Curios API                    |curios                        |5.9.0+1.20.1        |DONE      |Manifest: NOSIGNATURE         ars_nouveau-1.20.1-4.10.0-all.jar                 |Ars Nouveau                   |ars_nouveau                   |4.10.0              |DONE      |Manifest: NOSIGNATURE         origins-forge-1.20.1-1.10.0.7-all.jar             |Origins                       |origins                       |1.20.1-1.10.0.7     |DONE      |Manifest: NOSIGNATURE         Xaeros_Minimap_24.1.1_Forge_1.20.jar              |Xaero's Minimap               |xaerominimap                  |24.1.1              |DONE      |Manifest: NOSIGNATURE         The-Man-From-The-Fog-1.2.4a-1.20.1.jar            |The Man From The Fog          |man                           |1.2.4               |DONE      |Manifest: NOSIGNATURE         Rats-1.20.1-8.1.2.jar                             |Rats                          |rats                          |1.20.1-8.1.2        |DONE      |Manifest: NOSIGNATURE         forge-1.20.1-47.2.20-universal.jar                |Forge                         |forge                         |47.2.20             |DONE      |Manifest: 84:ce:76:e8:45:35:e4:0e:63:86:df:47:59:80:0f:67:6c:c1:5f:6e:5f:4d:b3:54:47:1a:9f:7f:ed:5e:f2:90         ArPhEx_1.8.12_1.20.1.jar                          |Arthropod Phobia Expansions   |arphex                        |1.8.12              |DONE      |Manifest: NOSIGNATURE         ars_elemental-1.20.1-0.6.5.jar                    |Ars Elemental                 |ars_elemental                 |1.20.1-0.6.5        |DONE      |Manifest: NOSIGNATURE         YungsExtras-1.20-Forge-4.0.3.jar                  |YUNG's Extras                 |yungsextras                   |1.20-Forge-4.0.3    |DONE      |Manifest: NOSIGNATURE         Gods-and-Heroes-1.6.1.jar                         |Gods and Heroes               |gh                            |1.6.1_Forge&Fabric  |DONE      |Manifest: NOSIGNATURE         ftb-ultimine-forge-2001.1.4.jar                   |FTB Ultimine                  |ftbultimine                   |2001.1.4            |DONE      |Manifest: NOSIGNATURE         YungsBetterStrongholds-1.20-Forge-4.0.3.jar       |YUNG's Better Strongholds     |betterstrongholds             |1.20-Forge-4.0.3    |DONE      |Manifest: NOSIGNATURE         tombstone-1.20.1-8.6.5.jar                        |Corail Tombstone              |tombstone                     |8.6.5               |DONE      |Manifest: NOSIGNATURE         YungsMenuTweaks-1.20.1-Forge-1.0.2.jar            |YUNG's Menu Tweaks            |yungsmenutweaks               |1.20.1-Forge-1.0.2  |DONE      |Manifest: NOSIGNATURE         coroutil-forge-1.20.1-1.3.7.jar                   |CoroUtil                      |coroutil                      |1.20.1-1.3.7        |DONE      |Manifest: NOSIGNATURE         deeperdarker-forge-1.20.1-1.2.1.jar               |Deeper and Darker             |deeperdarker                  |1.2.1               |DONE      |Manifest: NOSIGNATURE         architectury-9.2.14-forge.jar                     |Architectury                  |architectury                  |9.2.14              |DONE      |Manifest: NOSIGNATURE         ftb-library-forge-2001.1.5.jar                    |FTB Library                   |ftblibrary                    |2001.1.5            |DONE      |Manifest: NOSIGNATURE         ftb-teams-forge-2001.1.4.jar                      |FTB Teams                     |ftbteams                      |2001.1.4            |DONE      |Manifest: NOSIGNATURE         ftb-chunks-forge-2001.2.7.jar                     |FTB Chunks                    |ftbchunks                     |2001.2.7            |DONE      |Manifest: NOSIGNATURE         ftb-quests-forge-2001.3.5.jar                     |FTB Quests                    |ftbquests                     |2001.3.5            |DONE      |Manifest: NOSIGNATURE         YungsBetterEndIsland-1.20-Forge-2.0.6.jar         |YUNG's Better End Island      |betterendisland               |1.20-Forge-2.0.6    |DONE      |Manifest: NOSIGNATURE         Deep Dark Regrowth 1.2.5.1 - 1.20.1.jar           |Deep Dark: Regrowth           |deep_dark_regrowth            |1.2.5.1             |DONE      |Manifest: NOSIGNATURE         Voidscape-1.20.1-1.5.389.jar                      |Voidscape                     |voidscape                     |1.20.1-1.5.389      |DONE      |Manifest: NOSIGNATURE         infiniverse-1.20.1-1.0.0.5.jar                    |Infiniverse                   |infiniverse                   |1.0.0.5             |DONE      |Manifest: NOSIGNATURE         fight_or_die-1.20.1-1.1.4.jar                     |Fight or Die Mutations        |fight_or_die                  |1.20.1-1.1.4        |DONE      |Manifest: NOSIGNATURE         YungsBetterMineshafts-1.20-Forge-4.0.4.jar        |YUNG's Better Mineshafts      |bettermineshafts              |1.20-Forge-4.0.4    |DONE      |Manifest: NOSIGNATURE         phantasm-forge-0.1.jar                            |End's Phantasm                |phantasm                      |0.1                 |DONE      |Manifest: NOSIGNATURE         aquamirae-6.API15.jar                             |Aquamirae                     |aquamirae                     |6.API15             |DONE      |Manifest: NOSIGNATURE         Essential (forge_1.20.1).jar                      |Essential                     |essential                     |1.3.1.3+g88238d7752 |DONE      |Manifest: NOSIGNATURE         YungsBetterJungleTemples-1.20-Forge-2.0.4.jar     |YUNG's Better Jungle Temples  |betterjungletemples           |1.20-Forge-2.0.4    |DONE      |Manifest: NOSIGNATURE     Crash Report UUID: 093f2885-caf5-4a87-965d-511fd2c9d9ae     FML: 47.2     Forge: net.minecraftforge:47.2.20
    • I get a death message in chat every time I take damage example: [16:29:13] [Render thread/INFO]: [System] [CHAT] fall,Syndrick hit the ground too hard. I didn't die from that fall. I remember the exact moment it started happening, and what mods I had added. I have since removed said mods trying to fix it, and nothing has worked. I have also disabled a bunch of other mods that could be the cause, but that hasn't worked either. I've gone through the logs with chatgpt, and that hasn't helped either. This is my last resort, so if anyone can help me, that'd be insanely appreciated. Thank You.
    • The error is due to being unable to setup the server on the IP address or port number you specified in the server settings. (Failed to bind to port)  I usually get this myself when i have a VPN turned on, or if the server is already open in the background. If you do not have a VPN turned on then try changing the port number in the server.config file to use something other than the default 25565 port. Also check your firewall settings to make sure Minecraft is not blocked in any way Hope this helps!   
    • Crash log and latest.txt https://paste.ee/p/7t93I
    • I don't know what do about this I tried support. This happens when I go into a server and I don't own it. I have the exact same mods, same version, same everything. I have enough ram on Minecraft.   Logs: content://media/external/downloads/1000004919 
  • Topics

×
×
  • Create New...

Important Information

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