(@NotNull Vector direction)
| 185 | } |
| 186 | |
| 187 | private BlockFace getYFace(@NotNull Vector direction) { |
| 188 | return ((direction.getY() > 0) ? BlockFace.UP : BlockFace.DOWN); |
| 189 | } |
| 190 | |
| 191 | private BlockFace getZFace(@NotNull Vector direction) { |
| 192 | return ((direction.getZ() > 0) ? BlockFace.SOUTH : BlockFace.NORTH); |