summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKHobbits <rob@khobbits.co.uk>2012-08-28 03:08:06 +0100
committerKHobbits <rob@khobbits.co.uk>2012-08-28 03:08:06 +0100
commitfa65eb9e590542a4e7262d2750718f7e6cff4f6f (patch)
tree28384b233fb653e0fe8d41c4a651e21c76934ef2
parentc81ff7dd4d791bb97d3cb048f7807c940240dffc (diff)
downloadEssentials-fa65eb9e590542a4e7262d2750718f7e6cff4f6f.tar
Essentials-fa65eb9e590542a4e7262d2750718f7e6cff4f6f.tar.gz
Essentials-fa65eb9e590542a4e7262d2750718f7e6cff4f6f.tar.lz
Essentials-fa65eb9e590542a4e7262d2750718f7e6cff4f6f.tar.xz
Essentials-fa65eb9e590542a4e7262d2750718f7e6cff4f6f.zip
Fix CB.
-rw-r--r--Essentials/src/com/earth2me/essentials/OfflinePlayer.java6
-rw-r--r--Essentials/src/com/earth2me/essentials/craftbukkit/FakeWorld.java6
2 files changed, 12 insertions, 0 deletions
diff --git a/Essentials/src/com/earth2me/essentials/OfflinePlayer.java b/Essentials/src/com/earth2me/essentials/OfflinePlayer.java
index eb9729fa3..e861056ad 100644
--- a/Essentials/src/com/earth2me/essentials/OfflinePlayer.java
+++ b/Essentials/src/com/earth2me/essentials/OfflinePlayer.java
@@ -1099,4 +1099,10 @@ public class OfflinePlayer implements Player
{
throw new UnsupportedOperationException("Not supported yet.");
}
+
+ @Override
+ public void playSound(Location arg0, Sound arg1, float arg2, float arg3)
+ {
+ throw new UnsupportedOperationException("Not supported yet.");
+ }
}
diff --git a/Essentials/src/com/earth2me/essentials/craftbukkit/FakeWorld.java b/Essentials/src/com/earth2me/essentials/craftbukkit/FakeWorld.java
index c08dc08b8..1ac37e459 100644
--- a/Essentials/src/com/earth2me/essentials/craftbukkit/FakeWorld.java
+++ b/Essentials/src/com/earth2me/essentials/craftbukkit/FakeWorld.java
@@ -693,4 +693,10 @@ public class FakeWorld implements World
{
throw new UnsupportedOperationException("Not supported yet.");
}
+
+ @Override
+ public void playSound(Location arg0, Sound arg1, float arg2, float arg3)
+ {
+ throw new UnsupportedOperationException("Not supported yet.");
+ }
}