Merge pull request #2635 from traksag/interact-fix

Fix interact handling for sneaking players
This commit is contained in:
Matt 2019-12-18 22:23:42 -05:00 committed by GitHub
commit 4d1d3a165c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1925,13 +1925,21 @@ import java.util.regex.Pattern;
case RIGHT_CLICK_BLOCK: {
Material blockType = block.getType();
eventType = PlayerBlockEventType.INTERACT_BLOCK;
if (blockType.isInteractable() && player.isSneaking()) {
return; //this returns so the block place event is called
}
blocktype1 = BukkitAdapter.asBlockType(block.getType());
if (!player.isSneaking()) {
break;
if (blockType.isInteractable()) {
if (!player.isSneaking()) {
break;
}
ItemStack hand = player.getInventory().getItemInMainHand();
ItemStack offHand = player.getInventory().getItemInOffHand();
// sneaking players interact with blocks if both hands are empty
if (hand.getType() == Material.AIR && offHand.getType() == Material.AIR) {
break;
}
}
Material type = event.getMaterial();
// in the following, lb needs to have the material of the item in hand i.e. type