PlayerWrapper: new base functions of cb#766

git-svn-id: https://svn.java.net/svn/essentials~svn/trunk@1406 e251c2fe-e539-e718-e476-b85c1f46cddb
This commit is contained in:
snowleo 2011-05-10 18:21:09 +00:00
parent 1d0127bc68
commit 4176d3f0da
1 changed files with 3 additions and 3 deletions

View File

@ -491,16 +491,16 @@ public class PlayerWrapper implements Player
public void playNote(Location lctn, byte b, byte b1)
{
throw new UnsupportedOperationException("Not supported yet.");
base.playNote(lctn, b, b1);
}
public void sendBlockChange(Location lctn, Material mtrl, byte b)
{
throw new UnsupportedOperationException("Not supported yet.");
base.sendBlockChange(lctn, mtrl, b);
}
public void sendBlockChange(Location lctn, int i, byte b)
{
throw new UnsupportedOperationException("Not supported yet.");
base.sendBlockChange(lctn, i, b);
}
}