Skip to content

Commit

Permalink
Implement missing FakeWorld methods (#3002)
Browse files Browse the repository at this point in the history
  • Loading branch information
triagonal committed Feb 9, 2020
1 parent 13f454a commit 9e89cfa
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions Essentials/src/com/earth2me/essentials/craftbukkit/FakeWorld.java
Original file line number Diff line number Diff line change
Expand Up @@ -448,6 +448,26 @@ public Block getHighestBlockAt(Location lctn) {
throw new UnsupportedOperationException("Not supported yet.");
}

@Override
public int getHighestBlockYAt(int i, int i1, HeightMap heightMap) {
throw new UnsupportedOperationException("Not supported yet.");
}

@Override
public int getHighestBlockYAt(Location location, HeightMap heightMap) {
throw new UnsupportedOperationException("Not supported yet.");
}

@Override
public Block getHighestBlockAt(int i, int i1, HeightMap heightMap) {
throw new UnsupportedOperationException("Not supported yet.");
}

@Override
public Block getHighestBlockAt(Location location, HeightMap heightMap) {
throw new UnsupportedOperationException("Not supported yet.");
}

@Override
public Biome getBiome(int i, int i1) {
throw new UnsupportedOperationException("Not supported yet.");
Expand Down

0 comments on commit 9e89cfa

Please sign in to comment.