Update CraftBukkit to 1.6.2

This commit is contained in:
mbax
2013-07-08 19:43:37 -04:00
parent 2d9a9d8cea
commit f6a0b1e426
87 changed files with 1162 additions and 1112 deletions

View File

@@ -5,6 +5,7 @@ public class TileEntitySign extends TileEntity {
public String[] lines = new String[] { "", "", "", ""};
public int b = -1;
public boolean isEditable = true; // CraftBukkit - private -> public
private EntityHuman d;
public TileEntitySign() {}
@@ -47,4 +48,12 @@ public class TileEntitySign extends TileEntity {
public boolean a() {
return this.isEditable;
}
public void a(EntityHuman entityhuman) {
this.d = entityhuman;
}
public EntityHuman b() {
return this.d;
}
}