Skip to content

Commit

Permalink
Add missing FakeWorld methods
Browse files Browse the repository at this point in the history
  • Loading branch information
mdcfe committed Dec 29, 2018
1 parent d91d6a4 commit 0202271
Showing 1 changed file with 16 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -137,6 +137,21 @@ public boolean refreshChunk(int i, int i1) {
throw new UnsupportedOperationException("Not supported yet.");
}

@Override
public boolean isChunkForceLoaded(int x, int z) {
throw new UnsupportedOperationException("Not supported yet.");
}

@Override
public void setChunkForceLoaded(int x, int z, boolean forced) {
throw new UnsupportedOperationException("Not supported yet.");
}

@Override
public Collection<Chunk> getForceLoadedChunks() {
throw new UnsupportedOperationException("Not supported yet.");
}

@Override
public Item dropItem(Location lctn, ItemStack is) {
throw new UnsupportedOperationException("Not supported yet.");
Expand Down Expand Up @@ -164,7 +179,7 @@ public boolean generateTree(Location lctn, TreeType tt) {

@Override
public boolean generateTree(Location loc, TreeType type, BlockChangeDelegate delegate) {
return false;
throw new UnsupportedOperationException("Not supported yet.");
}

@Override
Expand Down

0 comments on commit 0202271

Please sign in to comment.