(@NotNull Vector direction)
| 181 | } |
| 182 | |
| 183 | private BlockFace getXFace(@NotNull Vector direction) { |
| 184 | return ((direction.getX() > 0) ? BlockFace.EAST : BlockFace.WEST); |
| 185 | } |
| 186 | |
| 187 | private BlockFace getYFace(@NotNull Vector direction) { |
| 188 | return ((direction.getY() > 0) ? BlockFace.UP : BlockFace.DOWN); |