Block.getFace(BlockFace) is an override for Block.getFace(BlockFace, int)

By: Dinnerbone <dinnerbone@dinnerbone.com>
This commit is contained in:
CraftBukkit/Spigot 2011-01-07 10:48:09 +00:00
parent 4938549777
commit 4cd2b9af93

View file

@ -153,7 +153,7 @@ public class CraftBlock implements Block {
* @return Block at the given face
*/
public Block getFace(final BlockFace face) {
return getRelative(face.getModX(), face.getModY(), face.getModZ());
return getFace(face, 1);
}
/**