Add support for experimental Caves and Caverns data pack

This commit is contained in:
Mike Primm 2021-08-21 18:03:07 -05:00
parent feb29208a6
commit 809e45631c
17 changed files with 152 additions and 109 deletions

View file

@ -63,7 +63,7 @@ public class ForgeWorld extends DynmapWorld
}
public ForgeWorld(String name, int height, int sealevel, boolean nether, boolean the_end, String deftitle)
{
super(name, (height > maxWorldHeight)?maxWorldHeight:height, sealevel);
super(name, (height > maxWorldHeight)?maxWorldHeight:height, sealevel, 0);
world = null;
setTitle(deftitle);
isnether = nether;