Updated CraftBukkit to 1.2

This commit is contained in:
Nathan Adams
2012-03-01 10:49:23 +00:00
parent e9ca87000c
commit 543c4879fe
143 changed files with 3710 additions and 4433 deletions

View File

@@ -34,6 +34,14 @@ public class WorldData {
this.type = WorldType.getType(s);
if (this.type == null) {
this.type = WorldType.NORMAL;
} else if (this.type.c()) {
int i = 0;
if (nbttagcompound.hasKey("generatorVersion")) {
i = nbttagcompound.getInt("generatorVersion");
}
this.type = this.type.a(i);
}
}
@@ -126,6 +134,7 @@ public class WorldData {
private void a(NBTTagCompound nbttagcompound, NBTTagCompound nbttagcompound1) {
nbttagcompound.setLong("RandomSeed", this.seed);
nbttagcompound.setString("generatorName", this.type.name());
nbttagcompound.setInt("generatorVersion", this.type.getVersion());
nbttagcompound.setInt("GameType", this.gameType);
nbttagcompound.setBoolean("MapFeatures", this.useMapFeatures);
nbttagcompound.setInt("SpawnX", this.spawnX);
@@ -166,11 +175,7 @@ public class WorldData {
return this.time;
}
public long g() {
return this.sizeOnDisk;
}
public int h() {
public int g() {
return this.dimension;
}
@@ -178,10 +183,6 @@ public class WorldData {
this.time = i;
}
public void b(long i) {
this.sizeOnDisk = i;
}
public void setSpawn(int i, int j, int k) {
this.spawnX = i;
this.spawnY = j;
@@ -192,7 +193,7 @@ public class WorldData {
this.name = s;
}
public int i() {
public int h() {
return this.version;
}
@@ -251,4 +252,8 @@ public class WorldData {
public WorldType getType() {
return this.type;
}
public void setType(WorldType worldtype) {
this.type = worldtype;
}
}