mirror of
https://github.com/PaperMC/Paper.git
synced 2025-08-14 19:55:52 -07:00
Update CraftBukkit to 1.6.2
This commit is contained in:
@@ -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;
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user