this->ystride = csize.X; //////fix this
this->heightmap = new s16[csize.X * csize.Z];
- memset(this->heightmap, 0, csize.X * csize.Z * sizeof(*this->heightmap));
MapgenV6Params *sp = (MapgenV6Params *)params->sparams;
this->spflags = sp->spflags;
generateExperimental();
+ // Create initial heightmap to limit caves
+ updateHeightmap(node_min, node_max);
+
const s16 max_spread_amount = MAP_BLOCKSIZE;
// Limit dirt flow area by 1 because mud is flown into neighbors.
s16 mudflow_minpos = -max_spread_amount + 1;
}
- // Create heightmap after mudflow
+ // Update heightmap after mudflow
updateHeightmap(node_min, node_max);
// Add dungeons