mirror of
https://github.com/TotalFreedomMC/TF-EssentialsX.git
synced 2025-02-11 11:49:12 +00:00
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:
parent
1d0127bc68
commit
4176d3f0da
1 changed files with 3 additions and 3 deletions
|
@ -491,16 +491,16 @@ public class PlayerWrapper implements Player
|
||||||
|
|
||||||
public void playNote(Location lctn, byte b, byte b1)
|
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)
|
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)
|
public void sendBlockChange(Location lctn, int i, byte b)
|
||||||
{
|
{
|
||||||
throw new UnsupportedOperationException("Not supported yet.");
|
base.sendBlockChange(lctn, i, b);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue