summaryrefslogtreecommitdiffstats
path: root/Essentials/src/com/earth2me/essentials/OfflinePlayer.java
diff options
context:
space:
mode:
Diffstat (limited to 'Essentials/src/com/earth2me/essentials/OfflinePlayer.java')
-rw-r--r--Essentials/src/com/earth2me/essentials/OfflinePlayer.java13
1 files changed, 6 insertions, 7 deletions
diff --git a/Essentials/src/com/earth2me/essentials/OfflinePlayer.java b/Essentials/src/com/earth2me/essentials/OfflinePlayer.java
index de183e5f0..5fbdb289d 100644
--- a/Essentials/src/com/earth2me/essentials/OfflinePlayer.java
+++ b/Essentials/src/com/earth2me/essentials/OfflinePlayer.java
@@ -30,7 +30,6 @@ public class OfflinePlayer implements Player
private final transient IEssentials ess;
private transient Location location = new Location(null, 0, 0, 0, 0, 0);
private transient World world;
- private final transient UUID uniqueId = UUID.randomUUID();
@Delegate(types = org.bukkit.OfflinePlayer.class)
private transient org.bukkit.OfflinePlayer base;
private boolean allowFlight = false;
@@ -637,12 +636,6 @@ public class OfflinePlayer implements Player
}
@Override
- public UUID getUniqueId()
- {
- return uniqueId;
- }
-
- @Override
public void playNote(Location lctn, Instrument i, Note note)
{
throw new UnsupportedOperationException("Not supported yet.");
@@ -1434,4 +1427,10 @@ public class OfflinePlayer implements Player
{
throw new UnsupportedOperationException("Not supported yet.");
}
+
+ @Override
+ public void sendSignChange(Location arg0, String[] arg1) throws IllegalArgumentException
+ {
+ throw new UnsupportedOperationException("Not supported yet.");
+ }
}