Updated to use mc-dev rename revision 1

This commit is contained in:
Nathan Adams
2011-11-29 23:17:43 +00:00
parent 8665161eaa
commit 8fbe78a2c3
117 changed files with 907 additions and 1161 deletions

View File

@@ -46,11 +46,11 @@ public final class CraftMapView implements MapView {
}
public Scale getScale() {
return Scale.valueOf(worldMap.e);
return Scale.valueOf(worldMap.scale);
}
public void setScale(Scale scale) {
worldMap.e = scale.getValue();
worldMap.scale = scale.getValue();
}
public World getWorld() {
@@ -68,19 +68,19 @@ public final class CraftMapView implements MapView {
}
public int getCenterX() {
return worldMap.b;
return worldMap.centerX;
}
public int getCenterZ() {
return worldMap.c;
return worldMap.centerZ;
}
public void setCenterX(int x) {
worldMap.b = x;
worldMap.centerX = x;
}
public void setCenterZ(int z) {
worldMap.c = z;
worldMap.centerZ = z;
}
public List<MapRenderer> getRenderers() {