misc fixes, rendering
This commit is contained in:
parent
7b6cff41c5
commit
26c71df542
3 changed files with 8 additions and 7 deletions
|
@ -1753,7 +1753,7 @@ public class Client implements IThreadListener {
|
|||
+ String.format("%.3f", this.world.getCelestialAngle(1.0f));
|
||||
}
|
||||
|
||||
float temp = this.world.getTempOffset() + (biome != null ? biome.getTemperature(blockpos) : 0.0f);
|
||||
float temp = Math.max(this.world.getTempOffset() + (biome != null ? biome.getTemperature(blockpos) : 0.0f), 0.0f);
|
||||
long ticked = System.currentTimeMillis() - this.lastTicked;
|
||||
|
||||
return
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue