X-Git-Url: https://git.lizzy.rs/?a=blobdiff_plain;f=src%2Fmapgen_v6.h;h=c71cf3c535fb0e1fbc83800fc861002340e94427;hb=868a1a5c13a0c086aa1ff3414a1eb12076821c27;hp=c729c04e7360a600b88305b05459cb051f9c0a4c;hpb=75cbd80e5b78af52eae2ec9960d408e64d33adca;p=minetest.git diff --git a/src/mapgen_v6.h b/src/mapgen_v6.h index c729c04e7..c71cf3c53 100644 --- a/src/mapgen_v6.h +++ b/src/mapgen_v6.h @@ -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();