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 a836576211
commit b9cfd44588
4 changed files with 49 additions and 1 deletions

View file

@ -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.");
}
}

View file

@ -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.");
}
}

Binary file not shown.

Binary file not shown.