use of arekkuusu.solar.common.block.tile.TileMechanicalTranslocator in project Solar by ArekkuusuJerii.
the class BlockMechanicalTranslocator method getItem.
@Override
public ItemStack getItem(World world, BlockPos pos, IBlockState state) {
Optional<TileMechanicalTranslocator> optional = getTile(TileMechanicalTranslocator.class, world, pos);
if (optional.isPresent()) {
TileMechanicalTranslocator tile = optional.get();
ItemStack stack = new ItemStack(Item.getItemFromBlock(this));
tile.getKey().ifPresent(uuid -> {
((IEntangledStack) stack.getItem()).setKey(stack, uuid);
});
return stack;
}
return super.getItem(world, pos, state);
}
Aggregations