From b9cfd44588ed35d061614d65cb34be5ba9a502a1 Mon Sep 17 00:00:00 2001 From: KHobbits Date: Tue, 21 Aug 2012 19:56:14 +0100 Subject: Update CB Bukkit 1533 || Craftbukkit 2345 (1.3.1-R2.1) --- .../src/com/earth2me/essentials/OfflinePlayer.java | 32 ++++++++++++++++++++- .../earth2me/essentials/craftbukkit/FakeWorld.java | 18 ++++++++++++ lib/bukkit.jar | Bin 4745347 -> 4746130 bytes lib/craftbukkit.jar | Bin 11697717 -> 11711697 bytes 4 files changed, 49 insertions(+), 1 deletion(-) diff --git a/Essentials/src/com/earth2me/essentials/OfflinePlayer.java b/Essentials/src/com/earth2me/essentials/OfflinePlayer.java index e7241f0f8..eb9729fa3 100644 --- a/Essentials/src/com/earth2me/essentials/OfflinePlayer.java +++ b/Essentials/src/com/earth2me/essentials/OfflinePlayer.java @@ -1068,5 +1068,35 @@ public class OfflinePlayer implements Player public boolean isValid() { throw new UnsupportedOperationException("Not supported yet."); - } + } + + @Override + public void setFlySpeed(float value) throws IllegalArgumentException + { + throw new UnsupportedOperationException("Not supported yet."); + } + + @Override + public void setWalkSpeed(float value) throws IllegalArgumentException + { + throw new UnsupportedOperationException("Not supported yet."); + } + + @Override + public float getFlySpeed() + { + throw new UnsupportedOperationException("Not supported yet."); + } + + @Override + public float getWalkSpeed() + { + throw new UnsupportedOperationException("Not supported yet."); + } + + @Override + public Inventory getEnderChest() + { + 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 93a33fcea..c08dc08b8 100644 --- a/Essentials/src/com/earth2me/essentials/craftbukkit/FakeWorld.java +++ b/Essentials/src/com/earth2me/essentials/craftbukkit/FakeWorld.java @@ -675,4 +675,22 @@ public class FakeWorld implements World { throw new UnsupportedOperationException("Not supported yet."); } + + @Override + public boolean isChunkInUse(int x, int z) + { + throw new UnsupportedOperationException("Not supported yet."); + } + + @Override + public FallingBlock spawnFallingBlock(Location location, Material material, byte data) throws IllegalArgumentException + { + throw new UnsupportedOperationException("Not supported yet."); + } + + @Override + public FallingBlock spawnFallingBlock(Location location, int blockId, byte blockData) throws IllegalArgumentException + { + throw new UnsupportedOperationException("Not supported yet."); + } } diff --git a/lib/bukkit.jar b/lib/bukkit.jar index 393018b17..2ba5130a8 100644 Binary files a/lib/bukkit.jar and b/lib/bukkit.jar differ diff --git a/lib/craftbukkit.jar b/lib/craftbukkit.jar index bfde8874f..af761eebc 100644 Binary files a/lib/craftbukkit.jar and b/lib/craftbukkit.jar differ -- cgit v1.2.3