static float getRainfall(int i, int j, int k) {
return getBiomeGenAt(i, j, k).getFloatRainfall();
}
static int getWaterColorMultiplier(int i, int j, int k) {
BiomeGenBase biome = getBiomeGenAt(i, j, k);
if (getWaterColorMultiplier != null) {
try {
return ((Integer)getWaterColorMultiplier.invoke(biome, new Object[0])).intValue();
} catch (Throwable var5) {