Browse Source

Unnecessary initialization.

magicbox-1.5.2
MagicBot 1 year ago
parent
commit
7793fab5d2
  1. 8
      src/engine/InterestManagement/HeightMap.java

8
src/engine/InterestManagement/HeightMap.java

@ -417,10 +417,10 @@ public class HeightMap { @@ -417,10 +417,10 @@ public class HeightMap {
//get height of the 4 vertices.
float topLeftHeight = 0;
float topRightHeight = 0;
float bottomLeftHeight = 0;
float bottomRightHeight = 0;
float topLeftHeight;
float topRightHeight;
float bottomLeftHeight;
float bottomRightHeight;
int nextY = gridY + 1;
int nextX = gridX + 1;

Loading…
Cancel
Save