Interface UseItemCallback
public interface UseItemCallback
Callback for right-clicking ("using") an item.
Is hooked in before the spectator check, so make sure to check for the player's game mode as well!
Upon return:
- SUCCESS cancels further processing and, on the client, sends a packet to the server.
- PASS falls back to further processing.
- FAIL cancels further processing and does not send a packet to the server.
-
Field Summary
-
Method Summary
Modifier and TypeMethodDescriptionnet.minecraft.util.TypedActionResult<net.minecraft.item.ItemStack>
interact
(net.minecraft.entity.player.PlayerEntity player, net.minecraft.world.World world, net.minecraft.util.Hand hand)
-
Field Details
-
EVENT
-
-
Method Details
-
interact
net.minecraft.util.TypedActionResult<net.minecraft.item.ItemStack> interact(net.minecraft.entity.player.PlayerEntity player, net.minecraft.world.World world, net.minecraft.util.Hand hand)
-