mirror of
https://github.com/PaperMC/Paper.git
synced 2025-08-15 12:13:54 -07:00
Update for Minecraft 1.8
This commit is contained in:
@@ -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;
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user