Fix building above bounds.

This commit is contained in:
wizjany 2019-04-15 20:44:02 -04:00
parent 2a1fdf470f
commit 99da55dc94

View File

@ -428,7 +428,7 @@ public class ForgeWorld extends AbstractWorld {
@Override
public int getMaxY() {
return getWorld().getHeight();
return getWorld().getHeight() - 1;
}
@Override