diff options
author | md_5 <git@md-5.net> | 2017-08-03 23:00:00 +1000 |
---|---|---|
committer | md_5 <git@md-5.net> | 2017-08-03 23:00:00 +1000 |
commit | 0aeac440c05a3ae3b69095e109372b7400f0feae (patch) | |
tree | f8f85c7abeaf3e54a4ecb29c2731e3d1a817106a /src | |
parent | 0ce77bc4b3825b1665b34f7dd6dc4b01a02e9443 (diff) | |
download | bukkit-0aeac440c05a3ae3b69095e109372b7400f0feae.tar bukkit-0aeac440c05a3ae3b69095e109372b7400f0feae.tar.gz bukkit-0aeac440c05a3ae3b69095e109372b7400f0feae.tar.lz bukkit-0aeac440c05a3ae3b69095e109372b7400f0feae.tar.xz bukkit-0aeac440c05a3ae3b69095e109372b7400f0feae.zip |
Update to Minecraft 1.12.1
Diffstat (limited to 'src')
-rw-r--r-- | src/main/java/org/bukkit/entity/LivingEntity.java | 29 |
1 files changed, 0 insertions, 29 deletions
diff --git a/src/main/java/org/bukkit/entity/LivingEntity.java b/src/main/java/org/bukkit/entity/LivingEntity.java index fc41a43d..5a30fa93 100644 --- a/src/main/java/org/bukkit/entity/LivingEntity.java +++ b/src/main/java/org/bukkit/entity/LivingEntity.java @@ -60,19 +60,6 @@ public interface LivingEntity extends Attributable, Entity, Damageable, Projecti /** * Gets the block that the living entity has targeted. * - * @param transparent HashSet containing all transparent block IDs (set to - * null for only air) - * @param maxDistance this is the maximum distance to scan (may be limited - * by server by at least 100 blocks, no less) - * @return block that the living entity has targeted - * @deprecated Magic value - */ - @Deprecated - public Block getTargetBlock(HashSet<Byte> transparent, int maxDistance); - - /** - * Gets the block that the living entity has targeted. - * * @param transparent HashSet containing all transparent block Materials (set to * null for only air) * @param maxDistance this is the maximum distance to scan (may be limited @@ -86,22 +73,6 @@ public interface LivingEntity extends Attributable, Entity, Damageable, Projecti * <p> * The target block will be the last block in the list. * - * @param transparent HashSet containing all transparent block IDs (set to - * null for only air) - * @param maxDistance this is the maximum distance to scan. This may be - * further limited by the server, but never to less than 100 blocks - * @return list containing the last 2 blocks along the living entity's - * line of sight - * @deprecated Magic value - */ - @Deprecated - public List<Block> getLastTwoTargetBlocks(HashSet<Byte> transparent, int maxDistance); - - /** - * Gets the last two blocks along the living entity's line of sight. - * <p> - * The target block will be the last block in the list. - * * @param transparent HashSet containing all transparent block Materials (set to * null for only air) * @param maxDistance this is the maximum distance to scan. This may be |