This commit is contained in:
KHobbits 2012-08-28 03:08:06 +01:00
parent 88140f0610
commit 413a7beaa4
2 changed files with 12 additions and 0 deletions

View File

@ -1099,4 +1099,10 @@ public class OfflinePlayer implements Player
{
throw new UnsupportedOperationException("Not supported yet.");
}
@Override
public void playSound(Location arg0, Sound arg1, float arg2, float arg3)
{
throw new UnsupportedOperationException("Not supported yet.");
}
}

View File

@ -693,4 +693,10 @@ public class FakeWorld implements World
{
throw new UnsupportedOperationException("Not supported yet.");
}
@Override
public void playSound(Location arg0, Sound arg1, float arg2, float arg3)
{
throw new UnsupportedOperationException("Not supported yet.");
}
}