mirror of
https://github.com/PaperMC/Paper.git
synced 2024-11-24 19:46:21 +01:00
Deprecated Block.getFace(Face) and Block.getFace(Face,int); use getRelative()
This commit is contained in:
parent
f3a86eaaca
commit
f7712eb20c
@ -535,13 +535,13 @@ public abstract class Entity {
|
||||
org.bukkit.block.Block block = this.world.getWorld().getBlockAt(MathHelper.floor(this.locX), MathHelper.floor(this.locY - 0.20000000298023224D - (double) this.height), MathHelper.floor(this.locZ));
|
||||
|
||||
if (d5 > d0) {
|
||||
block = block.getFace(BlockFace.SOUTH);
|
||||
block = block.getRelative(BlockFace.SOUTH);
|
||||
} else if (d5 < d0) {
|
||||
block = block.getFace(BlockFace.NORTH);
|
||||
block = block.getRelative(BlockFace.NORTH);
|
||||
} else if (d7 > d2) {
|
||||
block = block.getFace(BlockFace.WEST);
|
||||
block = block.getRelative(BlockFace.WEST);
|
||||
} else if (d7 < d2) {
|
||||
block = block.getFace(BlockFace.EAST);
|
||||
block = block.getRelative(BlockFace.EAST);
|
||||
}
|
||||
|
||||
VehicleBlockCollisionEvent event = new VehicleBlockCollisionEvent(vehicle, block);
|
||||
|
@ -182,7 +182,7 @@ public class CraftBlock implements Block {
|
||||
* @return Block at the given face
|
||||
*/
|
||||
public Block getFace(final BlockFace face) {
|
||||
return getFace(face, 1);
|
||||
return getRelative(face, 1);
|
||||
}
|
||||
|
||||
/**
|
||||
@ -201,7 +201,7 @@ public class CraftBlock implements Block {
|
||||
* @return Block at the given face
|
||||
*/
|
||||
public Block getFace(final BlockFace face, final int distance) {
|
||||
return getRelative(face.getModX() * distance, face.getModY() * distance, face.getModZ() * distance);
|
||||
return getRelative(face, distance);
|
||||
}
|
||||
|
||||
/**
|
||||
|
Loading…
Reference in New Issue
Block a user