Add sealevel and world height for client info

This commit is contained in:
Mike Primm 2012-02-22 21:12:29 -06:00
parent 35cf3ed8fa
commit cac8527d76

View File

@ -15,7 +15,7 @@ public class BukkitWorld extends DynmapWorld {
private World world;
public BukkitWorld(World w) {
super(w.getName(), w.getMaxHeight());
super(w.getName(), w.getMaxHeight(), w.getSeaLevel());
world = w;
}