public boolean isRaining() {
return this.getCurrent().isRaining();
}
public boolean isSnowingAt(int x, int y, int z) {
Biome biome = getWorld().getBiome(x, y, z);
if (biome instanceof VanillaBiome) {
VanillaBiome vb = (VanillaBiome) biome;
if (vb.getClimate().hasSnowfall()) {
return getCurrent().isRaining() && y > getWorld().getSurfaceHeight(x, z);
}