Skip to content
This repository has been archived by the owner on May 29, 2022. It is now read-only.

Commit

Permalink
fix compiling
Browse files Browse the repository at this point in the history
  • Loading branch information
crafter23456 committed Mar 1, 2022
1 parent c58cf15 commit 7c8bf14
Showing 1 changed file with 1 addition and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ public class TileEntitySign extends TileEntity {
public final IChatBaseComponent[] lines = new IChatBaseComponent[] { new ChatComponentText(""), new ChatComponentText(""), new ChatComponentText(""), new ChatComponentText("")};
public int f = -1;
public boolean isEditable = true;
//private EntityHuman h; // Paper
private final CommandObjectiveExecutor i = new CommandObjectiveExecutor();
public java.util.UUID signEditor; // Paper

Expand Down Expand Up @@ -122,14 +121,7 @@ public boolean b() {
}

public void a(EntityHuman entityhuman) {
// Paper start
//this.h = entityhuman;
signEditor = entityhuman != null ? entityhuman.getUniqueID() : null;
// Paper end
}

public EntityHuman c() {
return this.h;
signEditor = entityhuman != null ? entityhuman.getUniqueID() : null; // Paper
}

public boolean b(final EntityHuman entityhuman) {
Expand Down

0 comments on commit 7c8bf14

Please sign in to comment.