Jump to content

Recommended Posts

Posted

Hi everyone!

I've been having issues with having potion effects on my liquid, and I thought that I finally solved them, because I took some code from Minefactory Reloaded. I ran the game and everything seemed fine. I created a new world, place down my liquid, and then the game crashed, saying that it was some sort of server issue. I don't know what to do now, so I am posting here.

 

This is the only relevant code, the code for the BlockCorrosiveAcid class:

package com.leonardude.zether.liquids;

import net.minecraft.block.Block;
import net.minecraft.block.material.Material;
import net.minecraft.creativetab.CreativeTabs;
import net.minecraft.entity.Entity;
import net.minecraft.entity.EntityLiving;
import net.minecraft.entity.monster.EntityMob;
import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.potion.Potion;
import net.minecraft.potion.PotionEffect;
import net.minecraft.util.Icon;
import net.minecraft.world.IBlockAccess;
import net.minecraft.world.World;
import net.minecraftforge.fluids.BlockFluidClassic;

import com.leonardude.zether.main.Zether;

import cpw.mods.fml.relauncher.Side;
import cpw.mods.fml.relauncher.SideOnly;

public class BlockCorrosiveAcid extends BlockFluidClassic {

public BlockCorrosiveAcid(int id) {
	super(id, Zether.fluidCorrosiveAcid, Material.water);
	this.setCreativeTab(CreativeTabs.tabBlock);
	Zether.fluidCorrosiveAcid.setBlockID(id);
}

@Override
public void onEntityCollidedWithBlock( World world, int x, int y, int z, Entity entity ) {

	if (world.isRemote) {
                return;
        }

	if(entity instanceof EntityPlayer || entity instanceof EntityMob && !((EntityLiving)entity).isEntityUndead()) {
		((EntityLiving)entity).addPotionEffect(new PotionEffect(Potion.moveSlowdown.id, 200, 1));
	}

	super.onEntityCollidedWithBlock(world, x, y, z, entity);
}

@Override
@SideOnly(Side.CLIENT)
public Icon getIcon(int side, int meta) {
	return Block.waterMoving.getIcon(side, meta);
}

@Override
public int colorMultiplier(IBlockAccess iblockaccess, int x, int y, int z) {
	return 0x66FF00;
}

}

 

Thanks for putting up with the longish post and thanks in advance for answering!

 

;D ;D ;D ;D

Leonardude

Posted

I totally forgot to paste the crash logs!

This is the what the console said:

2013-11-03 15:06:58 [iNFO] [sTDERR] net.minecraft.util.ReportedException: Colliding entity with tile
2013-11-03 15:06:58 [iNFO] [sTDERR] 	at net.minecraft.server.MinecraftServer.updateTimeLightAndEntities(MinecraftServer.java:674)
2013-11-03 15:06:58 [iNFO] [sTDERR] 	at net.minecraft.server.MinecraftServer.tick(MinecraftServer.java:587)
2013-11-03 15:06:58 [iNFO] [sTDERR] 	at net.minecraft.server.integrated.IntegratedServer.tick(IntegratedServer.java:129)
2013-11-03 15:06:58 [iNFO] [sTDERR] 	at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:484)
2013-11-03 15:06:58 [iNFO] [sTDERR] 	at net.minecraft.server.ThreadMinecraftServer.run(ThreadMinecraftServer.java:16)
2013-11-03 15:06:58 [iNFO] [sTDERR] Caused by: java.lang.ClassCastException: net.minecraft.entity.item.EntityItem cannot be cast to net.minecraft.entity.EntityLiving
2013-11-03 15:06:58 [iNFO] [sTDERR] 	at com.leonardude.zether.liquids.BlockCorrosiveAcid.onEntityCollidedWithBlock(BlockCorrosiveAcid.java:38)
2013-11-03 15:06:58 [iNFO] [sTDERR] 	at net.minecraft.entity.Entity.doBlockCollisions(Entity.java:1018)
2013-11-03 15:06:58 [iNFO] [sTDERR] 	at net.minecraft.entity.Entity.moveEntity(Entity.java:951)
2013-11-03 15:06:58 [iNFO] [sTDERR] 	at net.minecraft.entity.item.EntityItem.onUpdate(EntityItem.java:113)
2013-11-03 15:06:58 [iNFO] [sTDERR] 	at net.minecraft.world.World.updateEntityWithOptionalForce(World.java:2350)
2013-11-03 15:06:58 [iNFO] [sTDERR] 	at net.minecraft.world.WorldServer.updateEntityWithOptionalForce(WorldServer.java:719)
2013-11-03 15:06:58 [iNFO] [sTDERR] 	at net.minecraft.world.World.updateEntity(World.java:2311)
2013-11-03 15:06:58 [iNFO] [sTDERR] 	at net.minecraft.world.World.updateEntities(World.java:2157)
2013-11-03 15:06:58 [iNFO] [sTDERR] 	at net.minecraft.world.WorldServer.updateEntities(WorldServer.java:550)
2013-11-03 15:06:58 [iNFO] [sTDERR] 	at net.minecraft.server.MinecraftServer.updateTimeLightAndEntities(MinecraftServer.java:668)
2013-11-03 15:06:58 [iNFO] [sTDERR] 	... 4 more
2013-11-03 15:06:58 [sEVERE] [Minecraft-Server] Encountered an unexpected exception ReportedException
net.minecraft.util.ReportedException: Colliding entity with tile
at net.minecraft.server.MinecraftServer.updateTimeLightAndEntities(MinecraftServer.java:674)
at net.minecraft.server.MinecraftServer.tick(MinecraftServer.java:587)
at net.minecraft.server.integrated.IntegratedServer.tick(IntegratedServer.java:129)
at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:484)
at net.minecraft.server.ThreadMinecraftServer.run(ThreadMinecraftServer.java:16)
Caused by: java.lang.ClassCastException: net.minecraft.entity.item.EntityItem cannot be cast to net.minecraft.entity.EntityLiving
at com.leonardude.zether.liquids.BlockCorrosiveAcid.onEntityCollidedWithBlock(BlockCorrosiveAcid.java:38)
at net.minecraft.entity.Entity.doBlockCollisions(Entity.java:1018)
at net.minecraft.entity.Entity.moveEntity(Entity.java:951)
at net.minecraft.entity.item.EntityItem.onUpdate(EntityItem.java:113)
at net.minecraft.world.World.updateEntityWithOptionalForce(World.java:2350)
at net.minecraft.world.WorldServer.updateEntityWithOptionalForce(WorldServer.java:719)
at net.minecraft.world.World.updateEntity(World.java:2311)
at net.minecraft.world.World.updateEntities(World.java:2157)
at net.minecraft.world.WorldServer.updateEntities(WorldServer.java:550)
at net.minecraft.server.MinecraftServer.updateTimeLightAndEntities(MinecraftServer.java:668)
... 4 more
2013-11-03 15:06:58 [sEVERE] [Minecraft-Server] This crash report has been saved to: /Users/Shared/Videos_Captured/LeoCoding/Minecraft Modding/forge/mcp/jars/./crash-reports/crash-2013-11-03_15.06.58-server.txt
2013-11-03 15:06:58 [iNFO] [Minecraft-Server] Stopping server
2013-11-03 15:06:58 [iNFO] [Minecraft-Server] Saving players
2013-11-03 15:06:58 [iNFO] [Minecraft-Server] Player182 left the game
2013-11-03 15:06:58 [iNFO] [Minecraft-Server] Saving worlds
2013-11-03 15:06:58 [iNFO] [Minecraft-Server] Saving chunks for level 'New World'/Overworld
2013-11-03 15:06:58 [iNFO] [sTDOUT] ---- Minecraft Crash Report ----
2013-11-03 15:06:59 [iNFO] [sTDOUT] // I'm sorry, Dave.
2013-11-03 15:06:59 [iNFO] [sTDOUT] 
2013-11-03 15:06:59 [iNFO] [sTDOUT] Time: 11/3/13 3:06 PM
2013-11-03 15:06:59 [iNFO] [sTDOUT] Description: Colliding entity with tile
2013-11-03 15:06:59 [iNFO] [sTDOUT] 
2013-11-03 15:06:59 [iNFO] [sTDOUT] java.lang.ClassCastException: net.minecraft.entity.item.EntityItem cannot be cast to net.minecraft.entity.EntityLiving
2013-11-03 15:06:59 [iNFO] [sTDOUT] 	at com.leonardude.zether.liquids.BlockCorrosiveAcid.onEntityCollidedWithBlock(BlockCorrosiveAcid.java:38)
2013-11-03 15:06:59 [iNFO] [sTDOUT] 	at net.minecraft.entity.Entity.doBlockCollisions(Entity.java:1018)
2013-11-03 15:06:59 [iNFO] [sTDOUT] 	at net.minecraft.entity.Entity.moveEntity(Entity.java:951)
2013-11-03 15:06:59 [iNFO] [sTDOUT] 	at net.minecraft.entity.item.EntityItem.onUpdate(EntityItem.java:113)
2013-11-03 15:06:59 [iNFO] [sTDOUT] 	at net.minecraft.world.World.updateEntityWithOptionalForce(World.java:2350)
2013-11-03 15:06:59 [iNFO] [sTDOUT] 	at net.minecraft.world.WorldServer.updateEntityWithOptionalForce(WorldServer.java:719)
2013-11-03 15:06:59 [iNFO] [sTDOUT] 	at net.minecraft.world.World.updateEntity(World.java:2311)
2013-11-03 15:06:59 [iNFO] [sTDOUT] 	at net.minecraft.world.World.updateEntities(World.java:2157)
2013-11-03 15:06:59 [iNFO] [sTDOUT] 	at net.minecraft.world.WorldServer.updateEntities(WorldServer.java:550)
2013-11-03 15:06:59 [iNFO] [sTDOUT] 	at net.minecraft.server.MinecraftServer.updateTimeLightAndEntities(MinecraftServer.java:668)
2013-11-03 15:06:59 [iNFO] [sTDOUT] 	at net.minecraft.server.MinecraftServer.tick(MinecraftServer.java:587)
2013-11-03 15:06:59 [iNFO] [sTDOUT] 	at net.minecraft.server.integrated.IntegratedServer.tick(IntegratedServer.java:129)
2013-11-03 15:06:59 [iNFO] [sTDOUT] 	at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:484)
2013-11-03 15:06:59 [iNFO] [sTDOUT] 	at net.minecraft.server.ThreadMinecraftServer.run(ThreadMinecraftServer.java:16)
2013-11-03 15:06:59 [iNFO] [sTDOUT] 
2013-11-03 15:06:59 [iNFO] [sTDOUT] 
2013-11-03 15:06:59 [iNFO] [sTDOUT] A detailed walkthrough of the error, its code path and all known details is as follows:
2013-11-03 15:06:59 [iNFO] [sTDOUT] ---------------------------------------------------------------------------------------
2013-11-03 15:06:59 [iNFO] [sTDOUT] 
2013-11-03 15:06:59 [iNFO] [sTDOUT] -- Head --
2013-11-03 15:06:59 [iNFO] [sTDOUT] Stacktrace:
2013-11-03 15:06:59 [iNFO] [sTDOUT] 	at com.leonardude.zether.liquids.BlockCorrosiveAcid.onEntityCollidedWithBlock(BlockCorrosiveAcid.java:38)
2013-11-03 15:06:59 [iNFO] [sTDOUT] 
2013-11-03 15:06:59 [iNFO] [sTDOUT] -- Tile being collided with --
2013-11-03 15:06:59 [iNFO] [sTDOUT] Details:
2013-11-03 15:06:59 [iNFO] [sTDOUT] 	Block type: ID #3200 (tile.null // com.leonardude.zether.liquids.BlockCorrosiveAcid)
2013-11-03 15:06:59 [iNFO] [sTDOUT] 	Block data value: 0 / 0x0 / 0b0000
2013-11-03 15:06:59 [iNFO] [sTDOUT] 	Block location: World: (-259,65,250), Chunk: (at 13,4,10 in -17,15; contains blocks -272,0,240 to -257,255,255), Region: (-1,0; contains chunks -32,0 to -1,31, blocks -512,0,0 to -1,255,511)
2013-11-03 15:06:59 [iNFO] [sTDOUT] Stacktrace:
2013-11-03 15:06:59 [iNFO] [sTDOUT] 	at net.minecraft.entity.Entity.doBlockCollisions(Entity.java:1018)
2013-11-03 15:06:59 [iNFO] [sTDOUT] 
2013-11-03 15:06:59 [iNFO] [sTDOUT] -- Entity being checked for collision --
2013-11-03 15:06:59 [iNFO] [sTDOUT] Details:
2013-11-03 15:06:59 [iNFO] [sTDOUT] 	Entity Type: Item (net.minecraft.entity.item.EntityItem)
2013-11-03 15:06:59 [iNFO] [sTDOUT] 	Entity ID: 8885
2013-11-03 15:06:59 [iNFO] [sTDOUT] 	Entity Name: item.item.seeds
2013-11-03 15:06:59 [iNFO] [sTDOUT] 	Entity's Exact location: -258.00, 65.13, 251.06
2013-11-03 15:06:59 [iNFO] [sTDOUT] 	Entity's Block location: World: (-259,65,251), Chunk: (at 13,4,11 in -17,15; contains blocks -272,0,240 to -257,255,255), Region: (-1,0; contains chunks -32,0 to -1,31, blocks -512,0,0 to -1,255,511)
2013-11-03 15:06:59 [iNFO] [sTDOUT] 	Entity's Momentum: -0.00, 0.00, 0.00
2013-11-03 15:06:59 [iNFO] [sTDOUT] Stacktrace:
2013-11-03 15:06:59 [iNFO] [sTDOUT] 	at net.minecraft.entity.Entity.moveEntity(Entity.java:951)
2013-11-03 15:06:59 [iNFO] [sTDOUT] 	at net.minecraft.entity.item.EntityItem.onUpdate(EntityItem.java:113)
2013-11-03 15:06:59 [iNFO] [sTDOUT] 	at net.minecraft.world.World.updateEntityWithOptionalForce(World.java:2350)
2013-11-03 15:06:59 [iNFO] [sTDOUT] 	at net.minecraft.world.WorldServer.updateEntityWithOptionalForce(WorldServer.java:719)
2013-11-03 15:06:59 [iNFO] [sTDOUT] 	at net.minecraft.world.World.updateEntity(World.java:2311)
2013-11-03 15:06:59 [iNFO] [sTDOUT] 
2013-11-03 15:06:59 [iNFO] [sTDOUT] -- Entity being ticked --
2013-11-03 15:06:59 [iNFO] [sTDOUT] Details:
2013-11-03 15:06:59 [iNFO] [sTDOUT] 	Entity Type: Item (net.minecraft.entity.item.EntityItem)
2013-11-03 15:06:59 [iNFO] [sTDOUT] 	Entity ID: 8885
2013-11-03 15:06:59 [iNFO] [sTDOUT] 	Entity Name: item.item.seeds
2013-11-03 15:06:59 [iNFO] [sTDOUT] 	Entity's Exact location: -258.00, 65.13, 251.06
2013-11-03 15:06:59 [iNFO] [sTDOUT] 	Entity's Block location: World: (-259,65,251), Chunk: (at 13,4,11 in -17,15; contains blocks -272,0,240 to -257,255,255), Region: (-1,0; contains chunks -32,0 to -1,31, blocks -512,0,0 to -1,255,511)
2013-11-03 15:06:59 [iNFO] [sTDOUT] 	Entity's Momentum: -0.00, 0.00, 0.00
2013-11-03 15:06:59 [iNFO] [sTDOUT] Stacktrace:
2013-11-03 15:06:59 [iNFO] [sTDOUT] 	at net.minecraft.world.World.updateEntities(World.java:2157)
2013-11-03 15:06:59 [iNFO] [sTDOUT] 	at net.minecraft.world.WorldServer.updateEntities(WorldServer.java:550)
2013-11-03 15:06:59 [iNFO] [sTDOUT] 
2013-11-03 15:06:59 [iNFO] [sTDOUT] -- Affected level --
2013-11-03 15:06:59 [iNFO] [sTDOUT] Details:
2013-11-03 15:06:59 [iNFO] [sTDOUT] 	Level name: New World
2013-11-03 15:06:59 [iNFO] [sTDOUT] 	All players: 1 total; [EntityPlayerMP['Player182'/214, l='New World', x=-260.10, y=65.00, z=249.63]]
2013-11-03 15:06:59 [iNFO] [sTDOUT] 	Chunk stats: ServerChunkCache: 625 Drop: 0
2013-11-03 15:06:59 [iNFO] [sTDOUT] 	Level seed: -332537413799752399
2013-11-03 15:06:59 [iNFO] [sTDOUT] 	Level generator: ID 00 - default, ver 1. Features enabled: true
2013-11-03 15:06:59 [iNFO] [sTDOUT] 	Level generator options: 
2013-11-03 15:06:59 [iNFO] [sTDOUT] 	Level spawn location: World: (-268,64,244), Chunk: (at 4,4,4 in -17,15; contains blocks -272,0,240 to -257,255,255), Region: (-1,0; contains chunks -32,0 to -1,31, blocks -512,0,0 to -1,255,511)
2013-11-03 15:06:59 [iNFO] [sTDOUT] 	Level time: 404 game time, 404 day time
2013-11-03 15:06:59 [iNFO] [sTDOUT] 	Level dimension: 0
2013-11-03 15:06:59 [iNFO] [sTDOUT] 	Level storage version: 0x04ABD - Anvil
2013-11-03 15:06:59 [iNFO] [sTDOUT] 	Level weather: Rain time: 57505 (now: false), thunder time: 73378 (now: false)
2013-11-03 15:06:59 [iNFO] [sTDOUT] 	Level game mode: Game mode: creative (ID 1). Hardcore: false. Cheats: true
2013-11-03 15:06:59 [iNFO] [sTDOUT] Stacktrace:
2013-11-03 15:06:59 [iNFO] [sTDOUT] 	at net.minecraft.server.MinecraftServer.updateTimeLightAndEntities(MinecraftServer.java:668)
2013-11-03 15:06:59 [iNFO] [sTDOUT] 	at net.minecraft.server.MinecraftServer.tick(MinecraftServer.java:587)
2013-11-03 15:06:59 [iNFO] [sTDOUT] 	at net.minecraft.server.integrated.IntegratedServer.tick(IntegratedServer.java:129)
2013-11-03 15:06:59 [iNFO] [sTDOUT] 	at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:484)
2013-11-03 15:06:59 [iNFO] [sTDOUT] 	at net.minecraft.server.ThreadMinecraftServer.run(ThreadMinecraftServer.java:16)
2013-11-03 15:06:59 [iNFO] [sTDOUT] 
2013-11-03 15:06:59 [iNFO] [sTDOUT] -- System Details --
2013-11-03 15:06:59 [iNFO] [sTDOUT] Details:
2013-11-03 15:06:59 [iNFO] [sTDOUT] 	Minecraft Version: 1.6.4
2013-11-03 15:06:59 [iNFO] [sTDOUT] 	Operating System: Mac OS X (x86_64) version 10.7.5
2013-11-03 15:06:59 [iNFO] [sTDOUT] 	Java Version: 1.6.0_65, Apple Inc.
2013-11-03 15:06:59 [iNFO] [sTDOUT] 	Java VM Version: Java HotSpot(TM) 64-Bit Server VM (mixed mode), Apple Inc.
2013-11-03 15:06:59 [iNFO] [sTDOUT] 	Memory: 869286192 bytes (829 MB) / 1065025536 bytes (1015 MB) up to 1065025536 bytes (1015 MB)
2013-11-03 15:06:59 [iNFO] [sTDOUT] 	JVM Flags: 3 total; -Xincgc -Xmx1024M -Xms1024M
2013-11-03 15:06:59 [iNFO] [sTDOUT] 	AABB Pool Size: 14372 (804832 bytes; 0 MB) allocated, 4237 (237272 bytes; 0 MB) used
2013-11-03 15:06:59 [iNFO] [sTDOUT] 	Suspicious classes: FML and Forge are installed
2013-11-03 15:06:59 [iNFO] [sTDOUT] 	IntCache: cache: 2, tcache: 0, allocated: 1, tallocated: 63
2013-11-03 15:06:59 [iNFO] [sTDOUT] 	FML: MCP v8.11 FML v6.4.20.916 Minecraft Forge 9.11.1.916 4 mods loaded, 4 mods active
2013-11-03 15:06:59 [iNFO] [sTDOUT] 	mcp{8.09} [Minecraft Coder Pack] (minecraft.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available
2013-11-03 15:06:59 [iNFO] [sTDOUT] 	FML{6.4.20.916} [Forge Mod Loader] (bin) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available
2013-11-03 15:06:59 [iNFO] [sTDOUT] 	Forge{9.11.1.916} [Minecraft Forge] (bin) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available
2013-11-03 15:06:59 [iNFO] [sTDOUT] 	leonardude_zether{1.0} [Zether] (bin) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available
2013-11-03 15:06:59 [iNFO] [sTDOUT] 	Profiler Position: N/A (disabled)
2013-11-03 15:06:59 [iNFO] [sTDOUT] 	Vec3 Pool Size: 2363 (132328 bytes; 0 MB) allocated, 2253 (126168 bytes; 0 MB) used
2013-11-03 15:06:59 [iNFO] [sTDOUT] 	Player Count: 1 / 8; [EntityPlayerMP['Player182'/214, l='New World', x=-260.10, y=65.00, z=249.63]]
2013-11-03 15:06:59 [iNFO] [sTDOUT] 	Type: Integrated Server (map_client.txt)
2013-11-03 15:06:59 [iNFO] [sTDOUT] 	Is Modded: Definitely; Client brand changed to 'fml,forge'
2013-11-03 15:06:59 [iNFO] [sTDOUT] #@!@# Game crashed! Crash report saved to: #@!@# ./crash-reports/crash-2013-11-03_15.06.58-server.txt
2013-11-03 15:06:59 [iNFO] [Minecraft-Server] Stopping server
2013-11-03 15:06:59 [iNFO] [Minecraft-Server] Saving players
2013-11-03 15:06:59 [iNFO] [Minecraft-Server] Saving worlds
2013-11-03 15:06:59 [iNFO] [Minecraft-Server] Saving chunks for level 'New World'/Overworld
AL lib: (EE) alc_cleanup: 1 device not closed

 

And this is what was in the crash log:

---- Minecraft Crash Report ----
// Quite honestly, I wouldn't worry myself about that.

Time: 11/3/13 3:06 PM
Description: Colliding entity with tile

java.lang.ClassCastException: net.minecraft.entity.item.EntityItem cannot be cast to net.minecraft.entity.EntityLiving
at com.leonardude.zether.liquids.BlockCorrosiveAcid.onEntityCollidedWithBlock(BlockCorrosiveAcid.java:38)
at net.minecraft.entity.Entity.doBlockCollisions(Entity.java:1018)
at net.minecraft.entity.Entity.moveEntity(Entity.java:951)
at net.minecraft.entity.item.EntityItem.onUpdate(EntityItem.java:113)
at net.minecraft.world.World.updateEntityWithOptionalForce(World.java:2350)
at net.minecraft.world.WorldServer.updateEntityWithOptionalForce(WorldServer.java:719)
at net.minecraft.world.World.updateEntity(World.java:2311)
at net.minecraft.world.World.updateEntities(World.java:2157)
at net.minecraft.world.WorldServer.updateEntities(WorldServer.java:550)
at net.minecraft.server.MinecraftServer.updateTimeLightAndEntities(MinecraftServer.java:668)
at net.minecraft.server.MinecraftServer.tick(MinecraftServer.java:587)
at net.minecraft.server.integrated.IntegratedServer.tick(IntegratedServer.java:129)
at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:484)
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:
---------------------------------------------------------------------------------------

-- Head --
Stacktrace:
at com.leonardude.zether.liquids.BlockCorrosiveAcid.onEntityCollidedWithBlock(BlockCorrosiveAcid.java:38)

-- Tile being collided with --
Details:
Block type: ID #3200 (tile.null // com.leonardude.zether.liquids.BlockCorrosiveAcid)
Block data value: 0 / 0x0 / 0b0000
Block location: World: (-259,65,250), Chunk: (at 13,4,10 in -17,15; contains blocks -272,0,240 to -257,255,255), Region: (-1,0; contains chunks -32,0 to -1,31, blocks -512,0,0 to -1,255,511)
Stacktrace:
at net.minecraft.entity.Entity.doBlockCollisions(Entity.java:1018)

-- Entity being checked for collision --
Details:
Entity Type: Item (net.minecraft.entity.item.EntityItem)
Entity ID: 8885
Entity Name: item.item.seeds
Entity's Exact location: -258.00, 65.13, 251.06
Entity's Block location: World: (-259,65,251), Chunk: (at 13,4,11 in -17,15; contains blocks -272,0,240 to -257,255,255), Region: (-1,0; contains chunks -32,0 to -1,31, blocks -512,0,0 to -1,255,511)
Entity's Momentum: -0.00, 0.00, 0.00
Stacktrace:
at net.minecraft.entity.Entity.moveEntity(Entity.java:951)
at net.minecraft.entity.item.EntityItem.onUpdate(EntityItem.java:113)
at net.minecraft.world.World.updateEntityWithOptionalForce(World.java:2350)
at net.minecraft.world.WorldServer.updateEntityWithOptionalForce(WorldServer.java:719)
at net.minecraft.world.World.updateEntity(World.java:2311)

-- Entity being ticked --
Details:
Entity Type: Item (net.minecraft.entity.item.EntityItem)
Entity ID: 8885
Entity Name: item.item.seeds
Entity's Exact location: -258.00, 65.13, 251.06
Entity's Block location: World: (-259,65,251), Chunk: (at 13,4,11 in -17,15; contains blocks -272,0,240 to -257,255,255), Region: (-1,0; contains chunks -32,0 to -1,31, blocks -512,0,0 to -1,255,511)
Entity's Momentum: -0.00, 0.00, 0.00
Stacktrace:
at net.minecraft.world.World.updateEntities(World.java:2157)
at net.minecraft.world.WorldServer.updateEntities(WorldServer.java:550)

-- Affected level --
Details:
Level name: New World
All players: 1 total; [EntityPlayerMP['Player182'/214, l='New World', x=-260.10, y=65.00, z=249.63]]
Chunk stats: ServerChunkCache: 625 Drop: 0
Level seed: -332537413799752399
Level generator: ID 00 - default, ver 1. Features enabled: true
Level generator options: 
Level spawn location: World: (-268,64,244), Chunk: (at 4,4,4 in -17,15; contains blocks -272,0,240 to -257,255,255), Region: (-1,0; contains chunks -32,0 to -1,31, blocks -512,0,0 to -1,255,511)
Level time: 404 game time, 404 day time
Level dimension: 0
Level storage version: 0x04ABD - Anvil
Level weather: Rain time: 57505 (now: false), thunder time: 73378 (now: false)
Level game mode: Game mode: creative (ID 1). Hardcore: false. Cheats: true
Stacktrace:
at net.minecraft.server.MinecraftServer.updateTimeLightAndEntities(MinecraftServer.java:668)
at net.minecraft.server.MinecraftServer.tick(MinecraftServer.java:587)
at net.minecraft.server.integrated.IntegratedServer.tick(IntegratedServer.java:129)
at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:484)
at net.minecraft.server.ThreadMinecraftServer.run(ThreadMinecraftServer.java:16)

-- System Details --
Details:
Minecraft Version: 1.6.4
Operating System: Mac OS X (x86_64) version 10.7.5
Java Version: 1.6.0_65, Apple Inc.
Java VM Version: Java HotSpot(TM) 64-Bit Server VM (mixed mode), Apple Inc.
Memory: 869286192 bytes (829 MB) / 1065025536 bytes (1015 MB) up to 1065025536 bytes (1015 MB)
JVM Flags: 3 total; -Xincgc -Xmx1024M -Xms1024M
AABB Pool Size: 14372 (804832 bytes; 0 MB) allocated, 4237 (237272 bytes; 0 MB) used
Suspicious classes: FML and Forge are installed
IntCache: cache: 2, tcache: 0, allocated: 1, tallocated: 63
FML: MCP v8.11 FML v6.4.20.916 Minecraft Forge 9.11.1.916 4 mods loaded, 4 mods active
mcp{8.09} [Minecraft Coder Pack] (minecraft.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available
FML{6.4.20.916} [Forge Mod Loader] (bin) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available
Forge{9.11.1.916} [Minecraft Forge] (bin) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available
leonardude_zether{1.0} [Zether] (bin) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available
Profiler Position: N/A (disabled)
Vec3 Pool Size: 2363 (132328 bytes; 0 MB) allocated, 2253 (126168 bytes; 0 MB) used
Player Count: 1 / 8; [EntityPlayerMP['Player182'/214, l='New World', x=-260.10, y=65.00, z=249.63]]
Type: Integrated Server (map_client.txt)
Is Modded: Definitely; Client brand changed to 'fml,forge'

 

Thanks!

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 bestow up to thee, for thy contributions to my enjoyment of this game, my kindest regards, and most heartfelt blessings. May both sides of your pillow be cold tonight. 
    • I wasn't excepting this to be seen this fast and left the post marinating for a while, but thank you for such a quick reply! Regarding what the console shows me when the server fails to boot, you can find those logs on this pastebin link here. From what I could gather, the issue here is with the mod Night Lights. Should I remove this mod, I get the same issue with Rings of Ascension, and lastly with Oh The Biomes We've Gone. When I remove these three mods, the issue goes away, but since the world was generated with the biome mod, I would rather not part ways with it. Thank you for taking some time to read my extensive description, hope the link with the logs helps!
    • Please see https://forums.minecraftforge.net/topic/125488-rules-and-frequently-asked-questions-faq/ for information on how to post your log correctly.
    • Hello!  The detailed description of how you got to where you are is certainly valuable.  But, at the end of the day (well, any time of the day actually), it is going to be the actual logs that going to provide the necessary details to hopefully solve your startup issue. Part of me wonders if you have installed a client-only mod on a dedicated server.  But I may very well be wrong, and it will be the logs that will tell that story.
    • Hello there! I didn't quite know where to go regarding this, but ended up deciding to post it here. I have been running a forge server with around 200 mods for me and some friends to play on casually, but have recently started to get an issue when booting the server. This all started after I decided to add some new mods to the server. Like usual, I add a mod, test run the server for any issues, and if all is well, I'll add a next one and so on until I have added all that I wanted to. After doing so, in all test runs, it all seemed to work just fine. However, the next day, after trying to boot the server, I kept getting an error regarding java.lang.NullPointerException, towards one of the mods I had recently added. So far so good, I removed the mod that was causing the issue, started up the server again, and here in when things took a turn for the worse. I received another java.lang.NullPointerException null error that wouldn't allow me to boot the server, but this time with a mod that wasn't part of the new ones I had recently added. I found this weird, but nonetheless, I removed it thinking it might be causing some conflicts with some of the new ones. Afterwards, booting the server again proved to be impossible, as it gave me another java.lang.NullPointerException null error with the 3rd mod I had ever installed on the server! This mod was there since the start, it added some biomes and had been just fine so far. This turn of events made me remove all the newer mods I had recently added in hopes to fix this whole ordeal, but alas, to no avail. Same error, with that same biome mod that had been there since day one. Reluctantly, I removed the biome mod, booted the server, and voila! The server was running, although without a major mod that had always been there to begin with. As I do not wish to part ways with this mod, specially since it had been working so far without any issues, I tried to bring everything back to how it was before I added those new mods, but kept on getting the same java.lang.NullPointerException null error for the biome mod. Even adding the newer mods won't cause me this error, with exception of the one that started it all, which I find quite odd since the mods I had been using without any issues are now giving me the same error the newer one that started it all gave me. Now, I have checked that everything is up to date regarding the mods, forge (forge-1.20.1-47.3.12) and java. The modpack runs perfectly fine when I start Minecraft itself, and play singleplayer, or even when I open a LAN world, everything works. Everything aside from the server. From what I could gather, this java.lang.NullPointerException null error would point to a missing value of sorts, for an item perhaps, within the mod that is causing the error, but aside from removing the whole mod, I lack the knowledge on how to fix this. With this in mind, if anyone would be so kind as to shine some light into this situation, with a way to fix all this blunder, I would be most grateful!
  • Topics

×
×
  • Create New...

Important Information

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