Changed EditSessionBlockDelegate.getHeight's return to match what Bukkit's worldheightheight methods return

This commit is contained in:
zml2008 2011-12-12 20:05:38 -08:00
parent 98216e2762
commit 914dd647b5

View File

@ -58,6 +58,6 @@ public class EditSessionBlockChangeDelegate implements BlockChangeDelegate {
} }
public int getHeight() { public int getHeight() {
return editSession.getWorld().getMaxY(); return editSession.getWorld().getMaxY() + 1;
} }
} }