Implement missing FakeWorld methods

This commit is contained in:
md678685 2019-08-28 21:13:50 +01:00
parent 219012bc35
commit deaeb46ce9
1 changed files with 10 additions and 0 deletions

View File

@ -768,6 +768,16 @@ public class FakeWorld implements World {
throw new UnsupportedOperationException("Not supported yet.");
}
@Override
public Raid locateNearestRaid(Location location, int radius) {
throw new UnsupportedOperationException("Not supported yet.");
}
@Override
public List<Raid> getRaids() {
throw new UnsupportedOperationException("Not supported yet.");
}
@Override
public List<Entity> getNearbyEntities(Location loc, double x, double y, double z) {
throw new UnsupportedOperationException("Not supported yet.");