30 lines
1.2 KiB
Java
30 lines
1.2 KiB
Java
package net.minecraft.world.item;
|
|
|
|
import net.minecraft.world.InteractionHand;
|
|
import net.minecraft.world.InteractionResult;
|
|
import net.minecraft.world.InteractionResultHolder;
|
|
import net.minecraft.world.entity.player.Player;
|
|
import net.minecraft.world.item.context.UseOnContext;
|
|
import net.minecraft.world.level.ClipContext;
|
|
import net.minecraft.world.level.Level;
|
|
import net.minecraft.world.level.block.Block;
|
|
import net.minecraft.world.phys.BlockHitResult;
|
|
|
|
public class PlaceOnWaterBlockItem extends BlockItem {
|
|
public PlaceOnWaterBlockItem(Block block, Item.Properties properties) {
|
|
super(block, properties);
|
|
}
|
|
|
|
@Override
|
|
public InteractionResult useOn(UseOnContext context) {
|
|
return InteractionResult.PASS;
|
|
}
|
|
|
|
@Override
|
|
public InteractionResultHolder<ItemStack> use(Level level, Player player, InteractionHand usedHand) {
|
|
BlockHitResult blockHitResult = getPlayerPOVHitResult(level, player, ClipContext.Fluid.SOURCE_ONLY);
|
|
BlockHitResult blockHitResult2 = blockHitResult.withPosition(blockHitResult.getBlockPos().above());
|
|
InteractionResult interactionResult = super.useOn(new UseOnContext(player, usedHand, blockHitResult2));
|
|
return new InteractionResultHolder<>(interactionResult, player.getItemInHand(usedHand));
|
|
}
|
|
}
|