Renamed y to z in DynmapChunk.

This commit is contained in:
FrozenCow 2011-02-09 00:42:16 +01:00
parent fb1b5df3d0
commit 5c209c2a5e
2 changed files with 7 additions and 7 deletions

View file

@ -1,10 +1,10 @@
package org.dynmap;
public class DynmapChunk {
public int x, y;
public int x, z;
public DynmapChunk(int x, int y) {
public DynmapChunk(int x, int z) {
this.x = x;
this.y = y;
this.z = z;
}
}