Jump to content

[1.16.5] move block and tileentity


J3ramy

Recommended Posts

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());

 

 

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.



×
×
  • Create New...

Important Information

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