Added maximumheight to configuration for somewhat better nether rendering.

This commit is contained in:
FrozenCow 2011-02-13 22:33:33 +01:00
parent 9a2b9ccac0
commit f3a1d53277
4 changed files with 21 additions and 12 deletions

View file

@ -8,7 +8,6 @@ public class KzedMapTile extends MapTile {
public KzedMap map;
public MapTileRenderer renderer;
public int px, py;
public int mx, my, mz;
// Hack.
public File file = null;
@ -19,10 +18,6 @@ public class KzedMapTile extends MapTile {
this.renderer = renderer;
this.px = px;
this.py = py;
mx = KzedMap.anchorx + px / 2 + py / 2;
my = KzedMap.anchory;
mz = KzedMap.anchorz + px / 2 - py / 2;
}
@Override