Don't cancel normal suffocation

This commit is contained in:
KennyTV 2019-05-20 10:30:42 +02:00
parent ca1ba4f422
commit 5cc421cff9
1 changed files with 8 additions and 1 deletions

View File

@ -102,7 +102,14 @@ public class PlayerSneakListener extends ViaBukkitListener {
Player player = (Player) event.getEntity();
if (!sneakingUuids.contains(player.getUniqueId())) return;
event.setCancelled(true);
// Don't cancel when they should actually be suffocating; Essentially cancel when the head is in the top block only ever so slightly
// ~0.041 should suffice, but gotta stay be safe
double y = player.getEyeLocation().getY() + 0.045;
y -= (int) y;
if (y < 0.09) {
event.setCancelled(true);
}
}
@EventHandler