Jump to content

[1.8] Trouble setting TileEntity data when block is placed


Mystify

Recommended Posts

I have a block that needs extra data stored on it, so I  am using a tileEntity to store 1 integers.  When I create the ItemStack containing the block, I add extra data to it storing these extra values. This part works fine. What I need to  happen is, upon placing the block, a TileEntity is created for it and the values from the ItemStack are stored on it.

 

The behavior I am seeing is that I am creating the TileEntity, setting the values, and they exist on the TileEntity, but then it creates another tileEntity without the right values and overwrites the old one.

 

 

 

Relevant Code:

 

 

public class AlienSaplingBlock extends BlockSapling implements ITileEntityProvider{
public void onBlockPlacedBy(World worldIn, BlockPos pos, IBlockState state, EntityLivingBase placer, ItemStack stack){
	 NBTTagCompound tags = stack.getTagCompound().getCompoundTag("BlockEntityTag");
	 int dimension = tags.getInteger("homeworld");
	 int type = tags.getInteger("treeType");
	 TileEntity tileEntity = worldIn.getTileEntity(pos);
	 ((TileEntityAlienSapling)tileEntity).setParams(dimension, type);
	 System.out.println("setting tile entity "+dimension+" "+type+" "+tileEntity +" "+pos);
	 tileEntity.markDirty();
 }

@SideOnly(Side.CLIENT)
    public void getSubBlocks(Item itemIn, CreativeTabs tab, List list)
    {   
	  for(Integer dimension: DimensionManager.getIDs()){
		  AlienWorldParameters parameters = AlienWorldParameters.getWorldParameters(dimension);
		  if(parameters!=null){
			for(int treeType =0; treeType < parameters.getTreeTypeCount(); treeType++){
					ItemStack saplingStack =new ItemStack(itemIn, 1, 0);
					NBTTagCompound nbt = new NBTTagCompound();
					nbt.setInteger("homeworld", dimension);
					nbt.setInteger("treeType", treeType);
					NBTTagCompound compoundToTransfer = new NBTTagCompound();
					compoundToTransfer.setTag("BlockEntityTag", nbt);
					saplingStack.setTagCompound(compoundToTransfer);					
					list.add(saplingStack);					
			}
		  }
	  } 
    }

@Override
public TileEntity createNewTileEntity(World worldIn, int meta) {		
	return new TileEntityAlienSapling(0,meta);
}

 public void breakBlock(World worldIn, BlockPos pos, IBlockState state)
 {
   super.breakBlock(worldIn, pos, state);
   worldIn.removeTileEntity(pos);
 }

 public boolean onBlockEventReceived(World worldIn, BlockPos pos, IBlockState state, int eventID, int eventParam)
 {
    super.onBlockEventReceived(worldIn, pos, state, eventID, eventParam);
    TileEntity tileentity = worldIn.getTileEntity(pos);
    return tileentity == null ? false : tileentity.receiveClientEvent(eventID, eventParam);
 }

}

 

 

 

 

 

ublic class TileEntityAlienSapling extends TileEntity {
private static final String homeKey="homeworld";
private static final String typeKey="treeType";
int homeDimension=0;
int treeType=0;

public TileEntityAlienSapling(int homeDimension, int treeType){
	this.homeDimension=homeDimension;
	this.treeType=treeType;
	System.out.println("setting initial dimension "+homeDimension+" and type"+ treeType+" for "+this);	
	(new Exception()).printStackTrace();
	this.markDirty();
}

public TileEntityAlienSapling(){

	System.out.println("creating blank sapling dimension "+homeDimension+" and type"+ treeType+" for "+this);	
}

public void setParams(int homeDimension, int treeType){
	this.homeDimension=homeDimension;
	this.treeType=treeType;
	System.out.println("setting params to dimension "+homeDimension+" and type"+ treeType+" for "+this);	
}

public int getHomeDimension(){
	System.out.println("getting dimension "+homeDimension+" from "+this);		
	return homeDimension;
}

public int getTreeType(){
	System.out.println("getting treeType "+treeType+" from "+this);
	return treeType;
}

public void readFromNBT(NBTTagCompound compound)
    {
        super.readFromNBT(compound);
        homeDimension=compound.getInteger(homeKey);
        treeType=compound.getInteger(typeKey);
        System.out.println("reading dimension "+homeDimension+" and type"+ treeType+" for "+this);		
    }

    public void writeToNBT(NBTTagCompound compound)
    {
        super.writeToNBT(compound);
        compound.setInteger(homeKey, homeDimension);
        compound.setInteger(typeKey,treeType);
        System.out.println("writing dimension "+homeDimension+" and type"+ treeType+" for "+this);		
    }
    
    @Override
    public Packet getDescriptionPacket(){
    	NBTTagCompound tileTag = new NBTTagCompound();
    	this.writeToNBT(tileTag);
    	return new S35PacketUpdateTileEntity(this.getPos(), 0, tileTag);
    }
    
    @Override 
    public void onDataPacket(net.minecraft.network.NetworkManager net, net.minecraft.network.play.server.S35PacketUpdateTileEntity pkt){
    	this.readFromNBT(pkt.getNbtCompound());
    }

}

 

 

 

Sample output from placing a block

 

 

[23:52:25] [Client thread/INFO] [sTDOUT]: [com.mystify.galacticPlanets.world.mapGen.Tree.TileEntityAlienSapling:<init>:20]: setting initial dimension 0 and type0 for com.mystify.galacticPlanets.world.mapGen.Tree.TileEntityAlienSapling@5eb2b6b

[23:52:25] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: java.lang.Exception

[23:52:25] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at com.mystify.galacticPlanets.world.mapGen.Tree.TileEntityAlienSapling.<init>(TileEntityAlienSapling.java:21)

[23:52:25] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at com.mystify.galacticPlanets.world.mapGen.Tree.AlienSaplingBlock.createNewTileEntity(AlienSaplingBlock.java:165)

[23:52:25] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.block.Block.createTileEntity(Block.java:1249)

[23:52:25] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.world.chunk.Chunk.setBlockState(Chunk.java:725)

[23:52:25] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.world.World.setBlockState(World.java:329)

[23:52:25] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.item.ItemBlock.placeBlockAt(ItemBlock.java:163)

[23:52:25] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.item.ItemBlock.onItemUse(ItemBlock.java:66)

[23:52:25] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.item.ItemStack.onItemUse(ItemStack.java:133)

[23:52:25] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.client.multiplayer.PlayerControllerMP.func_178890_a(PlayerControllerMP.java:407)

[23:52:25] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.client.Minecraft.rightClickMouse(Minecraft.java:1483)

[23:52:25] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.client.Minecraft.runTick(Minecraft.java:2033)

[23:52:25] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.client.Minecraft.runGameLoop(Minecraft.java:1021)

[23:52:25] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.client.Minecraft.run(Minecraft.java:345)

[23:52:25] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.client.main.Main.main(Main.java:117)

[23:52:25] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)

[23:52:25] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)

[23:52:25] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)

[23:52:25] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at java.lang.reflect.Method.invoke(Unknown Source)

[23:52:25] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.launchwrapper.Launch.launch(Launch.java:135)

[23:52:25] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.launchwrapper.Launch.main(Launch.java:28)

[23:52:25] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraftforge.gradle.GradleStartCommon.launch(GradleStartCommon.java:78)

[23:52:25] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at GradleStart.main(GradleStart.java:45)

[23:52:25] [Client thread/INFO] [sTDOUT]: [com.mystify.galacticPlanets.world.mapGen.Tree.TileEntityAlienSapling:writeToNBT:59]: writing dimension 0 and type0 for com.mystify.galacticPlanets.world.mapGen.Tree.TileEntityAlienSapling@5eb2b6b

[23:52:25] [Client thread/INFO] [sTDOUT]: [com.mystify.galacticPlanets.world.mapGen.Tree.TileEntityAlienSapling:readFromNBT:51]: reading dimension 0 and type9 for com.mystify.galacticPlanets.world.mapGen.Tree.TileEntityAlienSapling@5eb2b6b

[23:52:25] [Client thread/INFO] [sTDOUT]: [com.mystify.galacticPlanets.world.mapGen.Tree.TileEntityAlienSapling:setParams:33]: setting params to dimension 0 and type9 for com.mystify.galacticPlanets.world.mapGen.Tree.TileEntityAlienSapling@5eb2b6b

[23:52:25] [Client thread/INFO] [sTDOUT]: [com.mystify.galacticPlanets.world.mapGen.Tree.AlienSaplingBlock:onBlockPlacedBy:84]: setting tile entity 0 9 com.mystify.galacticPlanets.world.mapGen.Tree.TileEntityAlienSapling@5eb2b6b BlockPos{x=1261, y=77, z=-539}

[23:52:25] [server thread/INFO] [sTDOUT]: [com.mystify.galacticPlanets.world.mapGen.Tree.TileEntityAlienSapling:<init>:20]: setting initial dimension 0 and type0 for com.mystify.galacticPlanets.world.mapGen.Tree.TileEntityAlienSapling@767d094d

[23:52:25] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: java.lang.Exception

[23:52:25] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at com.mystify.galacticPlanets.world.mapGen.Tree.TileEntityAlienSapling.<init>(TileEntityAlienSapling.java:21)

[23:52:25] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at com.mystify.galacticPlanets.world.mapGen.Tree.AlienSaplingBlock.createNewTileEntity(AlienSaplingBlock.java:165)

[23:52:25] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.block.Block.createTileEntity(Block.java:1249)

[23:52:25] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.world.chunk.Chunk.setBlockState(Chunk.java:725)

[23:52:25] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.world.World.setBlockState(World.java:329)

[23:52:25] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.item.ItemBlock.placeBlockAt(ItemBlock.java:163)

[23:52:25] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.item.ItemBlock.onItemUse(ItemBlock.java:66)

[23:52:25] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraftforge.common.ForgeHooks.onPlaceItemIntoWorld(ForgeHooks.java:562)

[23:52:25] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.item.ItemStack.onItemUse(ItemStack.java:132)

[23:52:25] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.server.management.ItemInWorldManager.activateBlockOrUseItem(ItemInWorldManager.java:446)

[23:52:25] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.network.NetHandlerPlayServer.processPlayerBlockPlacement(NetHandlerPlayServer.java:595)

[23:52:25] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.network.play.client.C08PacketPlayerBlockPlacement.processPacket(C08PacketPlayerBlockPlacement.java:61)

[23:52:25] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.network.play.client.C08PacketPlayerBlockPlacement.processPacket(C08PacketPlayerBlockPlacement.java:96)

[23:52:25] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.network.PacketThreadUtil$1.run(PacketThreadUtil.java:18)

[23:52:25] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at java.util.concurrent.Executors$RunnableAdapter.call(Unknown Source)

[23:52:25] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at java.util.concurrent.FutureTask.run(Unknown Source)

[23:52:25] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraftforge.fml.common.FMLCommonHandler.callFuture(FMLCommonHandler.java:676)

[23:52:25] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.server.MinecraftServer.updateTimeLightAndEntities(MinecraftServer.java:655)

[23:52:25] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.server.MinecraftServer.tick(MinecraftServer.java:598)

[23:52:25] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.server.integrated.IntegratedServer.tick(IntegratedServer.java:164)

[23:52:25] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:478)

[23:52:25] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at java.lang.Thread.run(Unknown Source)

[23:52:25] [server thread/INFO] [sTDOUT]: [com.mystify.galacticPlanets.world.mapGen.Tree.TileEntityAlienSapling:writeToNBT:59]: writing dimension 0 and type0 for com.mystify.galacticPlanets.world.mapGen.Tree.TileEntityAlienSapling@767d094d

[23:52:25] [server thread/INFO] [sTDOUT]: [com.mystify.galacticPlanets.world.mapGen.Tree.TileEntityAlienSapling:readFromNBT:51]: reading dimension 0 and type9 for com.mystify.galacticPlanets.world.mapGen.Tree.TileEntityAlienSapling@767d094d

[23:52:25] [server thread/INFO] [sTDOUT]: [com.mystify.galacticPlanets.world.mapGen.Tree.TileEntityAlienSapling:setParams:33]: setting params to dimension 0 and type9 for com.mystify.galacticPlanets.world.mapGen.Tree.TileEntityAlienSapling@767d094d

[23:52:25] [server thread/INFO] [sTDOUT]: [com.mystify.galacticPlanets.world.mapGen.Tree.AlienSaplingBlock:onBlockPlacedBy:84]: setting tile entity 0 9 com.mystify.galacticPlanets.world.mapGen.Tree.TileEntityAlienSapling@767d094d BlockPos{x=1261, y=77, z=-539}

[23:52:25] [server thread/INFO] [sTDOUT]: [com.mystify.galacticPlanets.world.mapGen.Tree.TileEntityAlienSapling:writeToNBT:59]: writing dimension 0 and type9 for com.mystify.galacticPlanets.world.mapGen.Tree.TileEntityAlienSapling@767d094d

[23:52:25] [Client thread/INFO] [sTDOUT]: [com.mystify.galacticPlanets.world.mapGen.Tree.TileEntityAlienSapling:readFromNBT:51]: reading dimension 0 and type9 for com.mystify.galacticPlanets.world.mapGen.Tree.TileEntityAlienSapling@5eb2b6b

 

 

....

 

[23:52:44] [server thread/INFO] [sTDOUT]: [com.mystify.galacticPlanets.world.mapGen.Tree.TileEntityAlienSapling:writeToNBT:59]: writing dimension 0 and type9 for com.mystify.galacticPlanets.world.mapGen.Tree.TileEntityAlienSapling@767d094d

[23:52:44] [server thread/INFO] [sTDOUT]: [com.mystify.galacticPlanets.world.mapGen.Tree.TileEntityAlienSapling:<init>:20]: setting initial dimension 0 and type8 for com.mystify.galacticPlanets.world.mapGen.Tree.TileEntityAlienSapling@774664b0

[23:52:44] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: java.lang.Exception

[23:52:44] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at com.mystify.galacticPlanets.world.mapGen.Tree.TileEntityAlienSapling.<init>(TileEntityAlienSapling.java:21)

[23:52:44] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at com.mystify.galacticPlanets.world.mapGen.Tree.AlienSaplingBlock.createNewTileEntity(AlienSaplingBlock.java:165)

[23:52:44] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.block.Block.createTileEntity(Block.java:1249)

[23:52:44] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.world.chunk.Chunk.setBlockState(Chunk.java:725)

[23:52:44] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.world.World.setBlockState(World.java:329)

[23:52:44] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.block.BlockSapling.grow(BlockSapling.java:59)

[23:52:44] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.block.BlockSapling.grow(BlockSapling.java:220)

[23:52:44] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.item.ItemDye.applyBonemeal(ItemDye.java:123)

[23:52:44] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.item.ItemDye.onItemUse(ItemDye.java:51)

[23:52:44] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraftforge.common.ForgeHooks.onPlaceItemIntoWorld(ForgeHooks.java:562)

[23:52:44] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.item.ItemStack.onItemUse(ItemStack.java:132)

[23:52:44] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.server.management.ItemInWorldManager.activateBlockOrUseItem(ItemInWorldManager.java:446)

[23:52:44] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.network.NetHandlerPlayServer.processPlayerBlockPlacement(NetHandlerPlayServer.java:595)

[23:52:44] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.network.play.client.C08PacketPlayerBlockPlacement.processPacket(C08PacketPlayerBlockPlacement.java:61)

[23:52:44] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.network.play.client.C08PacketPlayerBlockPlacement.processPacket(C08PacketPlayerBlockPlacement.java:96)

[23:52:44] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.network.PacketThreadUtil$1.run(PacketThreadUtil.java:18)

[23:52:44] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at java.util.concurrent.Executors$RunnableAdapter.call(Unknown Source)

[23:52:44] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at java.util.concurrent.FutureTask.run(Unknown Source)

[23:52:44] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraftforge.fml.common.FMLCommonHandler.callFuture(FMLCommonHandler.java:676)

[23:52:44] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.server.MinecraftServer.updateTimeLightAndEntities(MinecraftServer.java:655)

[23:52:44] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.server.MinecraftServer.tick(MinecraftServer.java:598)

[23:52:44] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.server.integrated.IntegratedServer.tick(IntegratedServer.java:164)

[23:52:44] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:478)

[23:52:44] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at java.lang.Thread.run(Unknown Source)

[23:52:44] [Client thread/INFO] [sTDOUT]: [com.mystify.galacticPlanets.world.mapGen.Tree.TileEntityAlienSapling:<init>:20]: setting initial dimension 0 and type8 for com.mystify.galacticPlanets.world.mapGen.Tree.TileEntityAlienSapling@76e516e2

[23:52:44] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: java.lang.Exception

[23:52:44] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at com.mystify.galacticPlanets.world.mapGen.Tree.TileEntityAlienSapling.<init>(TileEntityAlienSapling.java:21)

[23:52:44] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at com.mystify.galacticPlanets.world.mapGen.Tree.AlienSaplingBlock.createNewTileEntity(AlienSaplingBlock.java:165)

[23:52:44] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.block.Block.createTileEntity(Block.java:1249)

[23:52:44] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.world.chunk.Chunk.setBlockState(Chunk.java:725)

[23:52:44] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.world.World.setBlockState(World.java:329)

[23:52:44] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.client.multiplayer.WorldClient.func_180503_b(WorldClient.java:252)

[23:52:44] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.client.network.NetHandlerPlayClient.handleBlockChange(NetHandlerPlayClient.java:694)

[23:52:44] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.network.play.server.S23PacketBlockChange.func_180727_a(S23PacketBlockChange.java:43)

[23:52:44] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.network.play.server.S23PacketBlockChange.processPacket(S23PacketBlockChange.java:54)

[23:52:44] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.network.PacketThreadUtil$1.run(PacketThreadUtil.java:18)

[23:52:44] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at java.util.concurrent.Executors$RunnableAdapter.call(Unknown Source)

[23:52:44] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at java.util.concurrent.FutureTask.run(Unknown Source)

[23:52:44] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraftforge.fml.common.FMLCommonHandler.callFuture(FMLCommonHandler.java:676)

[23:52:44] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.client.Minecraft.runGameLoop(Minecraft.java:1011)

[23:52:44] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.client.Minecraft.run(Minecraft.java:345)

[23:52:44] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.client.main.Main.main(Main.java:117)

[23:52:44] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)

[23:52:44] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)

[23:52:44] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)

[23:52:44] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at java.lang.reflect.Method.invoke(Unknown Source)

[23:52:44] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.launchwrapper.Launch.launch(Launch.java:135)

[23:52:44] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.launchwrapper.Launch.main(Launch.java:28)

[23:52:44] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraftforge.gradle.GradleStartCommon.launch(GradleStartCommon.java:78)

[23:52:44] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at GradleStart.main(GradleStart.java:45)

[23:52:44] [server thread/WARN]: Can't keep up! Did the system time change, or is the server overloaded? Running 3602ms behind, skipping 72 tick(s)

[23:52:45] [server thread/INFO] [sTDOUT]: [com.mystify.galacticPlanets.world.mapGen.Tree.TileEntityAlienSapling:getHomeDimension:37]: getting dimension 0 from com.mystify.galacticPlanets.world.mapGen.Tree.TileEntityAlienSapling@774664b0

[23:52:45] [server thread/INFO] [sTDOUT]: [com.mystify.galacticPlanets.world.mapGen.Tree.TileEntityAlienSapling:getTreeType:42]: getting treeType 8 from com.mystify.galacticPlanets.world.mapGen.Tree.TileEntityAlienSapling@774664b0

[23:52:45] [server thread/INFO] [sTDOUT]: [com.mystify.galacticPlanets.world.mapGen.Tree.AlienSaplingBlock:generateTree:124]: tile entity homeworld:type 0, 8

[23:52:45] [server thread/INFO] [sTDOUT]: [com.mystify.galacticPlanets.world.mapGen.Tree.TileEntityAlienSapling:writeToNBT:59]: writing dimension 0 and type8 for com.mystify.galacticPlanets.world.mapGen.Tree.TileEntityAlienSapling@774664b0

 

 

 

The first part is from initially placing the block. I see it create an unitialized tile enity, as expected. I then see it read a 0,9 block; this is also expected, as this should be the NBT data from the itemstack getting applied to the TileEntity and read in. Then there is a setting params call; this part should be redundant, and ws added as part of my expiremtnation, but it is just setting the 0,9 data again. Then it creates a new 0,0 unitialized tileentity.

The stack trace shows this one is coming from teh code

tileentity = this.getTileEntity(pos, Chunk.EnumCreateEntityType.CHECK);

                    if (tileentity == null)
                    {
                        tileentity = block.createTileEntity(this.worldObj, state);

on Chunk.

which implies that the tileEntity from before is not on the chunk, so it is trying to load it again and overwrites the one with stored data. This again goes through the "load NBT data", and "set paramters" calls, and seems to end with the correct 0,9 data saved.

 

After the ..., I triggered the block to read the data. It says "writing" and stores the correct 0,9 data, but then another call to create a TileEntity is made.

This again seems to come from the Chunk call, where it is not finding a TileEntity at the the positon, and so makes a new one. I am changing the BlockState at this point, but it is the same block with a different blockstate, and it should be able to continue on with the existing TileEntity. This gets a 0,8 pair, since the getMetaFromState happens to return an 8, but that shouldn't be getting called in teh first place. This happens several times, leaving me with a different set of data than I inteded.

 

This all seems to be stemming from the Chunk.getTileEntity returning null.

Link to comment
Share on other sites

That was the last thing I tried doing.

 

Here is the output without that

 

 

 

[08:42:42] [Client thread/INFO] [sTDOUT]: [com.mystify.galacticPlanets.world.mapGen.Tree.TileEntityAlienSapling:<init>:20]: setting initial dimension 0 and type0 for com.mystify.galacticPlanets.world.mapGen.Tree.TileEntityAlienSapling@57164e4c

[08:42:42] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: java.lang.Exception

[08:42:42] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at com.mystify.galacticPlanets.world.mapGen.Tree.TileEntityAlienSapling.<init>(TileEntityAlienSapling.java:21)

[08:42:42] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at com.mystify.galacticPlanets.world.mapGen.Tree.AlienSaplingBlock.createNewTileEntity(AlienSaplingBlock.java:165)

[08:42:42] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.block.Block.createTileEntity(Block.java:1249)

[08:42:42] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.world.chunk.Chunk.setBlockState(Chunk.java:725)

[08:42:42] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.world.World.setBlockState(World.java:329)

[08:42:42] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.item.ItemBlock.placeBlockAt(ItemBlock.java:163)

[08:42:42] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.item.ItemBlock.onItemUse(ItemBlock.java:66)

[08:42:42] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.item.ItemStack.onItemUse(ItemStack.java:133)

[08:42:42] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.client.multiplayer.PlayerControllerMP.func_178890_a(PlayerControllerMP.java:407)

[08:42:42] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.client.Minecraft.rightClickMouse(Minecraft.java:1483)

[08:42:42] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.client.Minecraft.runTick(Minecraft.java:2033)

[08:42:42] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.client.Minecraft.runGameLoop(Minecraft.java:1021)

[08:42:42] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.client.Minecraft.run(Minecraft.java:345)

[08:42:42] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.client.main.Main.main(Main.java:117)

[08:42:42] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)

[08:42:42] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)

[08:42:42] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)

[08:42:42] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at java.lang.reflect.Method.invoke(Unknown Source)

[08:42:42] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.launchwrapper.Launch.launch(Launch.java:135)

[08:42:42] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.launchwrapper.Launch.main(Launch.java:28)

[08:42:42] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraftforge.gradle.GradleStartCommon.launch(GradleStartCommon.java:78)

[08:42:42] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at GradleStart.main(GradleStart.java:45)

[08:42:42] [Client thread/INFO] [sTDOUT]: [com.mystify.galacticPlanets.world.mapGen.Tree.TileEntityAlienSapling:writeToNBT:59]: writing dimension 0 and type0 for com.mystify.galacticPlanets.world.mapGen.Tree.TileEntityAlienSapling@57164e4c

[08:42:42] [Client thread/INFO] [sTDOUT]: [com.mystify.galacticPlanets.world.mapGen.Tree.TileEntityAlienSapling:readFromNBT:51]: reading dimension 0 and type9 for com.mystify.galacticPlanets.world.mapGen.Tree.TileEntityAlienSapling@57164e4c

[08:42:42] [Client thread/INFO] [sTDOUT]: [com.mystify.galacticPlanets.world.mapGen.Tree.TileEntityAlienSapling:setParams:33]: setting params to dimension 0 and type9 for com.mystify.galacticPlanets.world.mapGen.Tree.TileEntityAlienSapling@57164e4c

[08:42:42] [Client thread/INFO] [sTDOUT]: [com.mystify.galacticPlanets.world.mapGen.Tree.AlienSaplingBlock:onBlockPlacedBy:84]: setting tile entity 0 9 com.mystify.galacticPlanets.world.mapGen.Tree.TileEntityAlienSapling@57164e4c BlockPos{x=-1115, y=77, z=-416}

[08:42:42] [server thread/INFO] [sTDOUT]: [com.mystify.galacticPlanets.world.mapGen.Tree.TileEntityAlienSapling:<init>:20]: setting initial dimension 0 and type0 for com.mystify.galacticPlanets.world.mapGen.Tree.TileEntityAlienSapling@762de6fc

[08:42:42] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: java.lang.Exception

[08:42:42] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at com.mystify.galacticPlanets.world.mapGen.Tree.TileEntityAlienSapling.<init>(TileEntityAlienSapling.java:21)

[08:42:42] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at com.mystify.galacticPlanets.world.mapGen.Tree.AlienSaplingBlock.createNewTileEntity(AlienSaplingBlock.java:165)

[08:42:42] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.block.Block.createTileEntity(Block.java:1249)

[08:42:42] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.world.chunk.Chunk.setBlockState(Chunk.java:725)

[08:42:42] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.world.World.setBlockState(World.java:329)

[08:42:42] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.item.ItemBlock.placeBlockAt(ItemBlock.java:163)

[08:42:42] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.item.ItemBlock.onItemUse(ItemBlock.java:66)

[08:42:42] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraftforge.common.ForgeHooks.onPlaceItemIntoWorld(ForgeHooks.java:562)

[08:42:42] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.item.ItemStack.onItemUse(ItemStack.java:132)

[08:42:42] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.server.management.ItemInWorldManager.activateBlockOrUseItem(ItemInWorldManager.java:446)

[08:42:42] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.network.NetHandlerPlayServer.processPlayerBlockPlacement(NetHandlerPlayServer.java:595)

[08:42:42] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.network.play.client.C08PacketPlayerBlockPlacement.processPacket(C08PacketPlayerBlockPlacement.java:61)

[08:42:42] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.network.play.client.C08PacketPlayerBlockPlacement.processPacket(C08PacketPlayerBlockPlacement.java:96)

[08:42:42] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.network.PacketThreadUtil$1.run(PacketThreadUtil.java:18)

[08:42:42] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at java.util.concurrent.Executors$RunnableAdapter.call(Unknown Source)

[08:42:42] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at java.util.concurrent.FutureTask.run(Unknown Source)

[08:42:42] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraftforge.fml.common.FMLCommonHandler.callFuture(FMLCommonHandler.java:676)

[08:42:42] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.server.MinecraftServer.updateTimeLightAndEntities(MinecraftServer.java:655)

[08:42:42] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.server.MinecraftServer.tick(MinecraftServer.java:598)

[08:42:42] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.server.integrated.IntegratedServer.tick(IntegratedServer.java:164)

[08:42:42] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:478)

[08:42:42] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at java.lang.Thread.run(Unknown Source)

[08:42:42] [server thread/INFO] [sTDOUT]: [com.mystify.galacticPlanets.world.mapGen.Tree.TileEntityAlienSapling:writeToNBT:59]: writing dimension 0 and type0 for com.mystify.galacticPlanets.world.mapGen.Tree.TileEntityAlienSapling@762de6fc

[08:42:42] [server thread/INFO] [sTDOUT]: [com.mystify.galacticPlanets.world.mapGen.Tree.TileEntityAlienSapling:readFromNBT:51]: reading dimension 0 and type9 for com.mystify.galacticPlanets.world.mapGen.Tree.TileEntityAlienSapling@762de6fc

[08:42:42] [server thread/INFO] [sTDOUT]: [com.mystify.galacticPlanets.world.mapGen.Tree.TileEntityAlienSapling:setParams:33]: setting params to dimension 0 and type9 for com.mystify.galacticPlanets.world.mapGen.Tree.TileEntityAlienSapling@762de6fc

[08:42:42] [server thread/INFO] [sTDOUT]: [com.mystify.galacticPlanets.world.mapGen.Tree.AlienSaplingBlock:onBlockPlacedBy:84]: setting tile entity 0 9 com.mystify.galacticPlanets.world.mapGen.Tree.TileEntityAlienSapling@762de6fc BlockPos{x=-1115, y=77, z=-416}

[08:42:42] [server thread/INFO] [sTDOUT]: [com.mystify.galacticPlanets.world.mapGen.Tree.TileEntityAlienSapling:writeToNBT:59]: writing dimension 0 and type9 for com.mystify.galacticPlanets.world.mapGen.Tree.TileEntityAlienSapling@762de6fc

[08:42:42] [Client thread/INFO] [sTDOUT]: [com.mystify.galacticPlanets.world.mapGen.Tree.TileEntityAlienSapling:readFromNBT:51]: reading dimension 0 and type9 for com.mystify.galacticPlanets.world.mapGen.Tree.TileEntityAlienSapling@57164e4c

[08:42:50] [server thread/INFO] [sTDOUT]: [com.mystify.galacticPlanets.world.mapGen.Tree.TileEntityAlienSapling:writeToNBT:59]: writing dimension 0 and type9 for com.mystify.galacticPlanets.world.mapGen.Tree.TileEntityAlienSapling@762de6fc

 

 

....

[08:44:05] [server thread/INFO] [sTDOUT]: [com.mystify.galacticPlanets.world.mapGen.Tree.TileEntityAlienSapling:writeToNBT:59]: writing dimension 0 and type9 for com.mystify.galacticPlanets.world.mapGen.Tree.TileEntityAlienSapling@762de6fc

[08:44:05] [server thread/INFO] [sTDOUT]: [com.mystify.galacticPlanets.world.mapGen.Tree.TileEntityAlienSapling:<init>:20]: setting initial dimension 0 and type8 for com.mystify.galacticPlanets.world.mapGen.Tree.TileEntityAlienSapling@1fed83b4

[08:44:05] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: java.lang.Exception

[08:44:05] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at com.mystify.galacticPlanets.world.mapGen.Tree.TileEntityAlienSapling.<init>(TileEntityAlienSapling.java:21)

[08:44:05] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at com.mystify.galacticPlanets.world.mapGen.Tree.AlienSaplingBlock.createNewTileEntity(AlienSaplingBlock.java:165)

[08:44:05] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.block.Block.createTileEntity(Block.java:1249)

[08:44:05] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.world.chunk.Chunk.setBlockState(Chunk.java:725)

[08:44:05] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.world.World.setBlockState(World.java:329)

[08:44:05] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.block.BlockSapling.grow(BlockSapling.java:59)

[08:44:05] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.block.BlockSapling.grow(BlockSapling.java:220)

[08:44:05] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.item.ItemDye.applyBonemeal(ItemDye.java:123)

[08:44:05] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.item.ItemDye.onItemUse(ItemDye.java:51)

[08:44:05] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraftforge.common.ForgeHooks.onPlaceItemIntoWorld(ForgeHooks.java:562)

[08:44:05] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.item.ItemStack.onItemUse(ItemStack.java:132)

[08:44:05] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.server.management.ItemInWorldManager.activateBlockOrUseItem(ItemInWorldManager.java:446)

[08:44:05] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.network.NetHandlerPlayServer.processPlayerBlockPlacement(NetHandlerPlayServer.java:595)

[08:44:05] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.network.play.client.C08PacketPlayerBlockPlacement.processPacket(C08PacketPlayerBlockPlacement.java:61)

[08:44:05] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.network.play.client.C08PacketPlayerBlockPlacement.processPacket(C08PacketPlayerBlockPlacement.java:96)

[08:44:05] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.network.PacketThreadUtil$1.run(PacketThreadUtil.java:18)

[08:44:05] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at java.util.concurrent.Executors$RunnableAdapter.call(Unknown Source)

[08:44:05] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at java.util.concurrent.FutureTask.run(Unknown Source)

[08:44:05] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraftforge.fml.common.FMLCommonHandler.callFuture(FMLCommonHandler.java:676)

[08:44:05] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.server.MinecraftServer.updateTimeLightAndEntities(MinecraftServer.java:655)

[08:44:05] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.server.MinecraftServer.tick(MinecraftServer.java:598)

[08:44:05] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.server.integrated.IntegratedServer.tick(IntegratedServer.java:164)

[08:44:05] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:478)

[08:44:05] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at java.lang.Thread.run(Unknown Source)

[08:44:05] [Client thread/INFO] [sTDOUT]: [com.mystify.galacticPlanets.world.mapGen.Tree.TileEntityAlienSapling:<init>:20]: setting initial dimension 0 and type8 for com.mystify.galacticPlanets.world.mapGen.Tree.TileEntityAlienSapling@629d870a

[08:44:05] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: java.lang.Exception

[08:44:05] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at com.mystify.galacticPlanets.world.mapGen.Tree.TileEntityAlienSapling.<init>(TileEntityAlienSapling.java:21)

[08:44:05] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at com.mystify.galacticPlanets.world.mapGen.Tree.AlienSaplingBlock.createNewTileEntity(AlienSaplingBlock.java:165)

[08:44:05] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.block.Block.createTileEntity(Block.java:1249)

[08:44:05] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.world.chunk.Chunk.setBlockState(Chunk.java:725)

[08:44:05] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.world.World.setBlockState(World.java:329)

[08:44:05] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.client.multiplayer.WorldClient.func_180503_b(WorldClient.java:252)

[08:44:05] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.client.network.NetHandlerPlayClient.handleBlockChange(NetHandlerPlayClient.java:694)

[08:44:05] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.network.play.server.S23PacketBlockChange.func_180727_a(S23PacketBlockChange.java:43)

[08:44:05] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.network.play.server.S23PacketBlockChange.processPacket(S23PacketBlockChange.java:54)

[08:44:05] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.network.PacketThreadUtil$1.run(PacketThreadUtil.java:18)

[08:44:05] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at java.util.concurrent.Executors$RunnableAdapter.call(Unknown Source)

[08:44:05] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at java.util.concurrent.FutureTask.run(Unknown Source)

[08:44:05] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraftforge.fml.common.FMLCommonHandler.callFuture(FMLCommonHandler.java:676)

[08:44:05] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.client.Minecraft.runGameLoop(Minecraft.java:1011)

[08:44:05] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.client.Minecraft.run(Minecraft.java:345)

[08:44:05] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.client.main.Main.main(Main.java:117)

[08:44:05] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)

[08:44:05] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)

[08:44:05] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)

[08:44:05] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at java.lang.reflect.Method.invoke(Unknown Source)

[08:44:05] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.launchwrapper.Launch.launch(Launch.java:135)

[08:44:05] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.launchwrapper.Launch.main(Launch.java:28)

[08:44:05] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraftforge.gradle.GradleStartCommon.launch(GradleStartCommon.java:78)

[08:44:05] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at GradleStart.main(GradleStart.java:45)

[08:44:05] [server thread/INFO] [sTDOUT]: [com.mystify.galacticPlanets.world.mapGen.Tree.TileEntityAlienSapling:getHomeDimension:37]: getting dimension 0 from com.mystify.galacticPlanets.world.mapGen.Tree.TileEntityAlienSapling@1fed83b4

[08:44:05] [server thread/INFO] [sTDOUT]: [com.mystify.galacticPlanets.world.mapGen.Tree.TileEntityAlienSapling:getTreeType:42]: getting treeType 8 from com.mystify.galacticPlanets.world.mapGen.Tree.TileEntityAlienSapling@1fed83b4

[08:44:05] [server thread/INFO] [sTDOUT]: [com.mystify.galacticPlanets.world.mapGen.Tree.AlienSaplingBlock:generateTree:124]: tile entity homeworld:type 0, 8

[08:44:05] [server thread/INFO] [sTDOUT]: [com.mystify.galacticPlanets.world.mapGen.Tree.TileEntityAlienSapling:writeToNBT:59]: writing dimension 0 and type8 for com.mystify.galacticPlanets.world.mapGen.Tree.TileEntityAlienSapling@1fed83b4

 

 

 

 

This does look a bit cleaner, but the basic issue is the same; it comes in and overwrites the TileEntity with a fresh one at the .Chunk.setBlockState(Chunk.java:725) call.

I'll also remove the onBlockPlacedBy method, as it seems to be redundant.

 

 

 

[08:52:36] [Client thread/INFO] [sTDOUT]: [com.mystify.galacticPlanets.world.mapGen.Tree.TileEntityAlienSapling:<init>:20]: setting initial dimension 0 and type0 for com.mystify.galacticPlanets.world.mapGen.Tree.TileEntityAlienSapling@3dd1f2cc

[08:52:36] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: java.lang.Exception

[08:52:36] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at com.mystify.galacticPlanets.world.mapGen.Tree.TileEntityAlienSapling.<init>(TileEntityAlienSapling.java:21)

[08:52:36] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at com.mystify.galacticPlanets.world.mapGen.Tree.AlienSaplingBlock.createNewTileEntity(AlienSaplingBlock.java:165)

[08:52:36] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.block.Block.createTileEntity(Block.java:1249)

[08:52:36] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.world.chunk.Chunk.setBlockState(Chunk.java:725)

[08:52:36] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.world.World.setBlockState(World.java:329)

[08:52:36] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.item.ItemBlock.placeBlockAt(ItemBlock.java:163)

[08:52:36] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.item.ItemBlock.onItemUse(ItemBlock.java:66)

[08:52:36] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.item.ItemStack.onItemUse(ItemStack.java:133)

[08:52:36] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.client.multiplayer.PlayerControllerMP.func_178890_a(PlayerControllerMP.java:407)

[08:52:36] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.client.Minecraft.rightClickMouse(Minecraft.java:1483)

[08:52:36] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.client.Minecraft.runTick(Minecraft.java:2033)

[08:52:36] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.client.Minecraft.runGameLoop(Minecraft.java:1021)

[08:52:36] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.client.Minecraft.run(Minecraft.java:345)

[08:52:36] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.client.main.Main.main(Main.java:117)

[08:52:36] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)

[08:52:36] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)

[08:52:36] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)

[08:52:36] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at java.lang.reflect.Method.invoke(Unknown Source)

[08:52:36] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.launchwrapper.Launch.launch(Launch.java:135)

[08:52:36] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.launchwrapper.Launch.main(Launch.java:28)

[08:52:36] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraftforge.gradle.GradleStartCommon.launch(GradleStartCommon.java:78)

[08:52:36] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at GradleStart.main(GradleStart.java:45)

[08:52:36] [Client thread/INFO] [sTDOUT]: [com.mystify.galacticPlanets.world.mapGen.Tree.TileEntityAlienSapling:writeToNBT:59]: writing dimension 0 and type0 for com.mystify.galacticPlanets.world.mapGen.Tree.TileEntityAlienSapling@3dd1f2cc

[08:52:36] [Client thread/INFO] [sTDOUT]: [com.mystify.galacticPlanets.world.mapGen.Tree.TileEntityAlienSapling:readFromNBT:51]: reading dimension 0 and type9 for com.mystify.galacticPlanets.world.mapGen.Tree.TileEntityAlienSapling@3dd1f2cc

[08:52:36] [server thread/INFO] [sTDOUT]: [com.mystify.galacticPlanets.world.mapGen.Tree.TileEntityAlienSapling:<init>:20]: setting initial dimension 0 and type0 for com.mystify.galacticPlanets.world.mapGen.Tree.TileEntityAlienSapling@72dab2e0

[08:52:36] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: java.lang.Exception

[08:52:36] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at com.mystify.galacticPlanets.world.mapGen.Tree.TileEntityAlienSapling.<init>(TileEntityAlienSapling.java:21)

[08:52:36] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at com.mystify.galacticPlanets.world.mapGen.Tree.AlienSaplingBlock.createNewTileEntity(AlienSaplingBlock.java:165)

[08:52:36] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.block.Block.createTileEntity(Block.java:1249)

[08:52:36] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.world.chunk.Chunk.setBlockState(Chunk.java:725)

[08:52:36] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.world.World.setBlockState(World.java:329)

[08:52:36] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.item.ItemBlock.placeBlockAt(ItemBlock.java:163)

[08:52:36] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.item.ItemBlock.onItemUse(ItemBlock.java:66)

[08:52:36] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraftforge.common.ForgeHooks.onPlaceItemIntoWorld(ForgeHooks.java:562)

[08:52:36] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.item.ItemStack.onItemUse(ItemStack.java:132)

[08:52:36] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.server.management.ItemInWorldManager.activateBlockOrUseItem(ItemInWorldManager.java:446)

[08:52:36] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.network.NetHandlerPlayServer.processPlayerBlockPlacement(NetHandlerPlayServer.java:595)

[08:52:36] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.network.play.client.C08PacketPlayerBlockPlacement.processPacket(C08PacketPlayerBlockPlacement.java:61)

[08:52:36] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.network.play.client.C08PacketPlayerBlockPlacement.processPacket(C08PacketPlayerBlockPlacement.java:96)

[08:52:36] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.network.PacketThreadUtil$1.run(PacketThreadUtil.java:18)

[08:52:36] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at java.util.concurrent.Executors$RunnableAdapter.call(Unknown Source)

[08:52:36] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at java.util.concurrent.FutureTask.run(Unknown Source)

[08:52:36] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraftforge.fml.common.FMLCommonHandler.callFuture(FMLCommonHandler.java:676)

[08:52:36] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.server.MinecraftServer.updateTimeLightAndEntities(MinecraftServer.java:655)

[08:52:36] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.server.MinecraftServer.tick(MinecraftServer.java:598)

[08:52:36] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.server.integrated.IntegratedServer.tick(IntegratedServer.java:164)

[08:52:36] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:478)

[08:52:36] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at java.lang.Thread.run(Unknown Source)

[08:52:36] [server thread/INFO] [sTDOUT]: [com.mystify.galacticPlanets.world.mapGen.Tree.TileEntityAlienSapling:writeToNBT:59]: writing dimension 0 and type0 for com.mystify.galacticPlanets.world.mapGen.Tree.TileEntityAlienSapling@72dab2e0

[08:52:36] [server thread/INFO] [sTDOUT]: [com.mystify.galacticPlanets.world.mapGen.Tree.TileEntityAlienSapling:readFromNBT:51]: reading dimension 0 and type9 for com.mystify.galacticPlanets.world.mapGen.Tree.TileEntityAlienSapling@72dab2e0

[08:52:36] [server thread/INFO] [sTDOUT]: [com.mystify.galacticPlanets.world.mapGen.Tree.TileEntityAlienSapling:writeToNBT:59]: writing dimension 0 and type9 for com.mystify.galacticPlanets.world.mapGen.Tree.TileEntityAlienSapling@72dab2e0

[08:52:36] [Client thread/INFO] [sTDOUT]: [com.mystify.galacticPlanets.world.mapGen.Tree.TileEntityAlienSapling:readFromNBT:51]: reading dimension 0 and type9 for com.mystify.galacticPlanets.world.mapGen.Tree.TileEntityAlienSapling@3dd1f2cc

 

...

 

[08:53:09] [server thread/INFO] [sTDOUT]: [com.mystify.galacticPlanets.world.mapGen.Tree.TileEntityAlienSapling:writeToNBT:59]: writing dimension 0 and type9 for com.mystify.galacticPlanets.world.mapGen.Tree.TileEntityAlienSapling@72dab2e0

[08:53:54] [server thread/INFO] [sTDOUT]: [com.mystify.galacticPlanets.world.mapGen.Tree.TileEntityAlienSapling:writeToNBT:59]: writing dimension 0 and type9 for com.mystify.galacticPlanets.world.mapGen.Tree.TileEntityAlienSapling@72dab2e0

[08:54:27] [server thread/INFO] [sTDOUT]: [com.mystify.galacticPlanets.world.mapGen.Tree.TileEntityAlienSapling:writeToNBT:59]: writing dimension 0 and type9 for com.mystify.galacticPlanets.world.mapGen.Tree.TileEntityAlienSapling@72dab2e0

[08:54:27] [server thread/INFO] [sTDOUT]: [com.mystify.galacticPlanets.world.mapGen.Tree.TileEntityAlienSapling:<init>:20]: setting initial dimension 0 and type8 for com.mystify.galacticPlanets.world.mapGen.Tree.TileEntityAlienSapling@15aee596

[08:54:27] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: java.lang.Exception

[08:54:27] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at com.mystify.galacticPlanets.world.mapGen.Tree.TileEntityAlienSapling.<init>(TileEntityAlienSapling.java:21)

[08:54:27] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at com.mystify.galacticPlanets.world.mapGen.Tree.AlienSaplingBlock.createNewTileEntity(AlienSaplingBlock.java:165)

[08:54:27] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.block.Block.createTileEntity(Block.java:1249)

[08:54:27] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.world.chunk.Chunk.setBlockState(Chunk.java:725)

[08:54:27] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.world.World.setBlockState(World.java:329)

[08:54:27] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.block.BlockSapling.grow(BlockSapling.java:59)

[08:54:27] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.block.BlockSapling.grow(BlockSapling.java:220)

[08:54:27] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.item.ItemDye.applyBonemeal(ItemDye.java:123)

[08:54:27] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.item.ItemDye.onItemUse(ItemDye.java:51)

[08:54:27] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraftforge.common.ForgeHooks.onPlaceItemIntoWorld(ForgeHooks.java:562)

[08:54:27] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.item.ItemStack.onItemUse(ItemStack.java:132)

[08:54:27] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.server.management.ItemInWorldManager.activateBlockOrUseItem(ItemInWorldManager.java:446)

[08:54:27] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.network.NetHandlerPlayServer.processPlayerBlockPlacement(NetHandlerPlayServer.java:595)

[08:54:27] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.network.play.client.C08PacketPlayerBlockPlacement.processPacket(C08PacketPlayerBlockPlacement.java:61)

[08:54:27] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.network.play.client.C08PacketPlayerBlockPlacement.processPacket(C08PacketPlayerBlockPlacement.java:96)

[08:54:27] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.network.PacketThreadUtil$1.run(PacketThreadUtil.java:18)

[08:54:27] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at java.util.concurrent.Executors$RunnableAdapter.call(Unknown Source)

[08:54:27] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at java.util.concurrent.FutureTask.run(Unknown Source)

[08:54:27] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraftforge.fml.common.FMLCommonHandler.callFuture(FMLCommonHandler.java:676)

[08:54:27] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.server.MinecraftServer.updateTimeLightAndEntities(MinecraftServer.java:655)

[08:54:27] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.server.MinecraftServer.tick(MinecraftServer.java:598)

[08:54:27] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.server.integrated.IntegratedServer.tick(IntegratedServer.java:164)

[08:54:27] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:478)

[08:54:27] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at java.lang.Thread.run(Unknown Source)

[08:54:27] [Client thread/INFO] [sTDOUT]: [com.mystify.galacticPlanets.world.mapGen.Tree.TileEntityAlienSapling:<init>:20]: setting initial dimension 0 and type8 for com.mystify.galacticPlanets.world.mapGen.Tree.TileEntityAlienSapling@57e8454c

[08:54:27] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: java.lang.Exception

[08:54:27] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at com.mystify.galacticPlanets.world.mapGen.Tree.TileEntityAlienSapling.<init>(TileEntityAlienSapling.java:21)

[08:54:27] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at com.mystify.galacticPlanets.world.mapGen.Tree.AlienSaplingBlock.createNewTileEntity(AlienSaplingBlock.java:165)

[08:54:27] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.block.Block.createTileEntity(Block.java:1249)

[08:54:27] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.world.chunk.Chunk.setBlockState(Chunk.java:725)

[08:54:27] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.world.World.setBlockState(World.java:329)

[08:54:27] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.client.multiplayer.WorldClient.func_180503_b(WorldClient.java:252)

[08:54:27] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.client.network.NetHandlerPlayClient.handleBlockChange(NetHandlerPlayClient.java:694)

[08:54:27] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.network.play.server.S23PacketBlockChange.func_180727_a(S23PacketBlockChange.java:43)

[08:54:27] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.network.play.server.S23PacketBlockChange.processPacket(S23PacketBlockChange.java:54)

[08:54:27] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.network.PacketThreadUtil$1.run(PacketThreadUtil.java:18)

[08:54:27] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at java.util.concurrent.Executors$RunnableAdapter.call(Unknown Source)

[08:54:27] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at java.util.concurrent.FutureTask.run(Unknown Source)

[08:54:27] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraftforge.fml.common.FMLCommonHandler.callFuture(FMLCommonHandler.java:676)

[08:54:27] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.client.Minecraft.runGameLoop(Minecraft.java:1011)

[08:54:27] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.client.Minecraft.run(Minecraft.java:345)

[08:54:27] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.client.main.Main.main(Main.java:117)

[08:54:27] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)

[08:54:27] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)

[08:54:27] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)

[08:54:27] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at java.lang.reflect.Method.invoke(Unknown Source)

[08:54:27] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.launchwrapper.Launch.launch(Launch.java:135)

[08:54:27] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.launchwrapper.Launch.main(Launch.java:28)

[08:54:27] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraftforge.gradle.GradleStartCommon.launch(GradleStartCommon.java:78)

[08:54:27] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at GradleStart.main(GradleStart.java:45)

[08:54:28] [server thread/INFO] [sTDOUT]: [com.mystify.galacticPlanets.world.mapGen.Tree.TileEntityAlienSapling:getHomeDimension:37]: getting dimension 0 from com.mystify.galacticPlanets.world.mapGen.Tree.TileEntityAlienSapling@15aee596

[08:54:28] [server thread/INFO] [sTDOUT]: [com.mystify.galacticPlanets.world.mapGen.Tree.TileEntityAlienSapling:getTreeType:42]: getting treeType 8 from com.mystify.galacticPlanets.world.mapGen.Tree.TileEntityAlienSapling@15aee596

[08:54:28] [server thread/INFO] [sTDOUT]: [com.mystify.galacticPlanets.world.mapGen.Tree.AlienSaplingBlock:generateTree:124]: tile entity homeworld:type 0, 8

[08:54:28] [server thread/INFO] [sTDOUT]: [com.mystify.galacticPlanets.world.mapGen.Tree.TileEntityAlienSapling:writeToNBT:59]: writing dimension 0 and type8 for com.mystify.galacticPlanets.world.mapGen.Tree.TileEntityAlienSapling@15aee596

 

 

 

This makes the placement look like I want; it gets placed, then it loads the extra NBT data I wanted, setting the parameters, then writes them back out.

However, the second part is still smashing over it with the wrong data.

 

Link to comment
Share on other sites

I figured out my issue. The shouldRefresh method on TileEntity tells whether the tile entity should be removed if the blockstate is update. Its default implementation has a "!isVanilla" on the test, so the non-vanilla tile entities always returns true, and hence the TileEntity gets deleted, even when the block itself hasn't changed.

I had to override this method, and this prevented my TileEntity from getting deleted before I was ready.

Link to comment
Share on other sites

Its not quite spontaneous, but if you change the blockstate, it happens. With vanilla blocks, changing the blockstate to a different blockstate for the same block is fine, but not for non-vanilla blocks. I don't know why they felt that non-vanilla blocks should have a different default behavior.

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



×
×
  • Create New...

Important Information

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