...
public ActionResultType use(BlockState stateBlock, World worldIn, BlockPos posBlock, PlayerEntity playerIn, Hand playerHand, BlockRayTraceResult traceBlock)
{
if (!worldIn.isClientSide) {
worldIn.setBlock(new BlockPos(posBlock.getX(), posBlock.getY() + 1, posBlock.getZ()), Blocks.OBSIDIAN.defaultBlockState(), 1);
}
}
...
If I do so, the block will spawn invisible
For example, I will spawn a block under a certain condition (when clicking on the block), I need to compare both on the server and on the client, right? And also when I click, the tile value is checked, but for some reason it changes on the client, and the value remains default on the server.
I have a block interface in which I use this.addButton(new Button(...)) to create buttons. I need that when clicking on any button, data is saved in Tileentity. The click check occurs in the Screen class, which is inherited from ContainerScreen<...>. How is it possible to get a Tile Entity in this class for further modification. Or are there any other ways?