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

@@ -246,18 +246,18 @@ public class EntityPainting extends Entity {
}
public void b(NBTTagCompound nbttagcompound) {
nbttagcompound.a("Dir", (byte) this.a);
nbttagcompound.setByte("Dir", (byte) this.a);
nbttagcompound.setString("Motive", this.e.A);
nbttagcompound.a("TileX", this.b);
nbttagcompound.a("TileY", this.c);
nbttagcompound.a("TileZ", this.d);
nbttagcompound.setInt("TileX", this.b);
nbttagcompound.setInt("TileY", this.c);
nbttagcompound.setInt("TileZ", this.d);
}
public void a(NBTTagCompound nbttagcompound) {
this.a = nbttagcompound.d("Dir");
this.b = nbttagcompound.f("TileX");
this.c = nbttagcompound.f("TileY");
this.d = nbttagcompound.f("TileZ");
this.a = nbttagcompound.getByte("Dir");
this.b = nbttagcompound.getInt("TileX");
this.c = nbttagcompound.getInt("TileY");
this.d = nbttagcompound.getInt("TileZ");
String s = nbttagcompound.getString("Motive");
EnumArt[] aenumart = EnumArt.values();
int i = aenumart.length;