1
0
mirror of https://github.com/essentials/Essentials.git synced 2025-09-25 13:49:12 +02:00

Update CB

Bukkit 1533 || Craftbukkit 2345 (1.3.1-R2.1)
This commit is contained in:
KHobbits
2012-08-21 19:56:14 +01:00
parent 71708f9d44
commit 997846d9e9
2 changed files with 49 additions and 1 deletions

View File

@@ -1069,4 +1069,34 @@ public class OfflinePlayer implements Player
{ {
throw new UnsupportedOperationException("Not supported yet."); 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.");
}
} }

View File

@@ -675,4 +675,22 @@ public class FakeWorld implements World
{ {
throw new UnsupportedOperationException("Not supported yet."); 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.");
}
} }