(IBlockAccess blockAccess, BlockPos blockPos)
| 909 | } |
| 910 | |
| 911 | protected static BiomeGenBase getColorBiome(IBlockAccess blockAccess, BlockPos blockPos) |
| 912 | { |
| 913 | BiomeGenBase biomegenbase = blockAccess.getBiomeGenForCoords(blockPos); |
| 914 | |
| 915 | if (biomegenbase == BiomeGenBase.swampland && !Config.isSwampColors()) |
| 916 | { |
| 917 | biomegenbase = BiomeGenBase.plains; |
| 918 | } |
| 919 | |
| 920 | return biomegenbase; |
| 921 | } |
| 922 | |
| 923 | private static CustomColormap getBlockColormap(IBlockState blockState) |
| 924 | { |
no test coverage detected