]> git.lizzy.rs Git - minetest.git/blobdiff - src/mapgen_v6.h
Fix segfaults caused by the Environment not being initialized yet
[minetest.git] / src / mapgen_v6.h
index c729c04e7360a600b88305b05459cb051f9c0a4c..c71cf3c535fb0e1fbc83800fc861002340e94427 100644 (file)
@@ -29,7 +29,7 @@ with this program; if not, write to the Free Software Foundation, Inc.,
 #define FREQ_HOT 0.4
 #define FREQ_SNOW -0.4
 #define FREQ_TAIGA 0.5
-#define FREQ_JUNGLE 0.7
+#define FREQ_JUNGLE 0.5
 
 //////////// Mapgen V6 flags
 #define MGV6_JUNGLES    0x01
@@ -111,18 +111,16 @@ class MapgenV6 : public Mapgen {
        content_t c_water_source;
        content_t c_lava_source;
        content_t c_gravel;
-       content_t c_cobble;
-       content_t c_desert_sand;
        content_t c_desert_stone;
+       content_t c_desert_sand;
        content_t c_dirt_with_snow;
        content_t c_snow;
        content_t c_snowblock;
        content_t c_ice;
 
+       content_t c_cobble;
        content_t c_mossycobble;
-       content_t c_sandbrick;
        content_t c_stair_cobble;
-       content_t c_stair_sandstone;
 
        MapgenV6(int mapgenid, MapgenParams *params, EmergeManager *emerge);
        ~MapgenV6();