diff --git a/client/src/client/renderer/EntityRenderer.java b/client/src/client/renderer/EntityRenderer.java index 9e5bf48..d9dd6a3 100755 --- a/client/src/client/renderer/EntityRenderer.java +++ b/client/src/client/renderer/EntityRenderer.java @@ -1314,14 +1314,14 @@ public class EntityRenderer { } else if (/* world.getBiomeGenerator().getTemperatureAtHeight( */ f2 /* , j2) */ > 0.0F) { - if (mode != 0) + if (mode != (f2 <= 5.0f ? 3 : 0)) { if (mode >= 0) { Tessellator.draw(); } - mode = 0; + mode = f2 <= 5.0f ? 3 : 0; this.gm.getTextureManager().bindTexture(f2 <= 5.0f ? locationHailPng : locationRainPng); worldrenderer.begin(GL11.GL_QUADS, DefaultVertexFormats.PARTICLE_POSITION_TEX_COLOR_LMAP); } diff --git a/client/src/client/world/EmptyChunk.java b/client/src/client/world/EmptyChunk.java index 190c2d7..3557561 100755 --- a/client/src/client/world/EmptyChunk.java +++ b/client/src/client/world/EmptyChunk.java @@ -88,7 +88,7 @@ public class EmptyChunk extends Chunk { public void getEntities(Class clazz, BoundingBox bb, List list, Predicate pred) { } - public boolean isDirty() { + public boolean isDirty(long time) { return false; }