()
| 185 | } |
| 186 | |
| 187 | private final void setSpecial() { |
| 188 | for (Map.Entry<String, List<BlockPos>> entry : specialBlockLocations.entrySet()) { |
| 189 | for (BlockPos pos : entry.getValue()) { |
| 190 | special.put(getPositionIndex(pos.getX(), pos.getY(), pos.getZ()), entry.getKey()); |
| 191 | } |
| 192 | } |
| 193 | } |
| 194 | |
| 195 | public final BlockState getBlock(int x, int y, int z, DimensionType dimension) { |
| 196 | int index = getPositionIndex(x, y, z); |
no test coverage detected