Jump to content

Recommended Posts

Posted

Good morning,

I am trying to move a block and his attached tile entity by right-clicking it, because I need the same tile entity data but at another position.

Right now I am moving the block one to the north. Then I get the tile entity at the new position and assign the value of the old tile entity to the new one.

It works, but is there an easier way to solve this without a lot of reassigning?

I tried TileEntity#setPos as well but it doesn't work.

 

This is my code:

Spoiler
TransferTrackSensorRailTile tileEntity = (TransferTrackSensorRailTile) worldIn.getTileEntity(pos);

//Move block state to north
worldIn.setBlockState(pos.north(), state);

//Get tile entity at new pos and reassign the "old" value
TransferTrackSensorRailTile te = (TransferTrackSensorRailTile) worldIn.getTileEntity(pos.north());
te.setSensorType(tileEntity.getSensorType());

//Set current pos to Air
worldIn.setBlockState(pos, Blocks.AIR.getDefaultState());

 

 

Posted

You mean save it in the tile entity nbt itself or where do you mean? Because if I destroy the block, the tile entity gets destroyed as well right?

Posted

How can I get and save the tile entity nbt in my block class? Do you have any tutorial or minecraft example?

Because in onBlockActivated you don't have access to any Compund Tag.

Posted

Ok thanks but there is no save and load method if I type

TileEntity.save()
TileEntity.load()
//or
tileEntity.save()
tileEntity.load()

Did I misunterstand you?

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.