Update for Minecraft 1.8

This commit is contained in:
Dinnerbone
2011-09-15 01:23:52 +01:00
parent 54bcd1c1f3
commit 5b2c774edc
107 changed files with 4415 additions and 3504 deletions

View File

@@ -4,7 +4,7 @@ public class TileEntitySign extends TileEntity {
public String[] lines = new String[] { "", "", "", ""};
public int b = -1;
private boolean isEditable = true;
public boolean isEditable = true; // CraftBukkit - priv to public
public TileEntitySign() {}
@@ -28,7 +28,7 @@ public class TileEntitySign extends TileEntity {
}
}
public Packet f() {
public Packet l() {
String[] astring = new String[4];
for (int i = 0; i < 4; ++i) {
@@ -47,8 +47,4 @@ public class TileEntitySign extends TileEntity {
public boolean a() {
return this.isEditable;
}
public void a(boolean flag) {
this.isEditable = flag;
}
}