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

    • Reach Out To Rapid Digital: What sapp Info: +1 41 4 80 7 14 85 Email INFO: rap iddi gita lrecov ery @ exe cs. com Hello, my name is Jayson, and I’m 35 years old from the United Kingdom. My family and I recently endured an incredibly challenging experience that I wouldn’t wish on anyone. We became victims of a cryptocurrency investment fraud scheme that saw us lose a staggering $807,000 in USDT and Bitcoins. The fraudsters had created a convincing facade, and we were lured into investing, only to discover later that the platform was a complete scam. We were left devastated, not just financially, but emotionally, as we had trusted these people and believed in the legitimacy of the investment. After the initial shock wore off, we desperately searched for ways to recover the lost funds. It seemed like an impossible task, and we felt as though there was no hope. That’s when, by sheer luck, we stumbled across a post about Rapid Digital Recovery, a cryptocurrency and funds recovery organization with a proven track record in cybersecurity and fraud recovery. We decided to reach out to them, and from the first interaction, we were impressed with their professionalism and transparency. They explained the recovery process in detail and reassured us that they had the skills and expertise to track down the perpetrators and recover our funds. This gave us a renewed sense of hope, something we hadn’t felt in months. What truly stood out during our experience with Rapid Digital Recovery was their dedication to the recovery process. The team went above and beyond, using sophisticated tracking tools and cyber forensics to gather critical information. Within a matter of weeks, they had successfully located the funds and traced the scam back to the fraudsters responsible. They worked with the authorities to ensure the criminals were held accountable for their actions. To our relief, the team at Rapid Digital Recovery was able to recover every single penny we had lost. The funds were returned in full, and the sense of closure we felt was invaluable. We couldn’t have imagined such a positive outcome in the early stages of our recovery journey, and we are deeply grateful for the work they did. If you ever find yourself in a similar situation, I highly recommend contacting Rapid Digital Recovery. Their expertise, transparency, and dedication to their clients make them the go-to choice for anyone seeking to recover lost cryptocurrency or funds. They truly gave us back our financial future.  
    • This is my first time modding anything, so maybe just skill issue. I'm using Forge 54.0.12 and Temurin 21.0.5+11-LTS I wanted to create a custom keybind and to check whether it works I'd like to send a chat message. I tried using Minecraft.getInstance().player.sendSystemMessage(Component.literal("test")); but IntelliJ couldnt resolve sendSystemMessage(...). Since I saw people using it in earlier versions, I tried the same thing with 1.20.6(- 50.1.0), where it works fine, now I can't figure out if this is intentional and whether there are other options for sending chat messages. On that note, is there more documentation than https://docs.minecraftforge.net/en/1.21.x/? It seems very incomplete compared to something like the Oracle Java docs
    • Hi, i'm having this error and I wanna fix it. we try: -Reload drivers -Eliminate .minecraft -Eliminate Java -Restart launcher -Verify if minecraft is using gpu -Mods  in .minecraft is empty -Install the latest and recomended version of forge idk what i have to do, help me pls. the lastest log is: https://mclo.gs/WAMao8x  
    • Read the FAQ, Rule #2. (https://forums.minecraftforge.net/topic/125488-rules-and-frequently-asked-questions-faq/)  
  • Topics

×
×
  • Create New...

Important Information

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