summaryrefslogtreecommitdiff
path: root/src/mapgen_v7.h
diff options
context:
space:
mode:
authorparamat <mat.gregory@virginmedia.com>2015-05-12 02:20:18 +0100
committerparamat <mat.gregory@virginmedia.com>2015-05-12 04:40:53 +0100
commit02805af36ed4f3f11738c5439b5edd9e1db659ea (patch)
tree9a7ffa4da92d53563eaa9786498fc51234adfc73 /src/mapgen_v7.h
parent82e35edff52d88dcd64a9bfc9d2c4c93f1341b78 (diff)
downloadminetest-02805af36ed4f3f11738c5439b5edd9e1db659ea.tar.gz
minetest-02805af36ed4f3f11738c5439b5edd9e1db659ea.tar.bz2
minetest-02805af36ed4f3f11738c5439b5edd9e1db659ea.zip
Mapgen v5/6/7: Cleanup node resolver and aliases
Diffstat (limited to 'src/mapgen_v7.h')
-rw-r--r--src/mapgen_v7.h14
1 files changed, 5 insertions, 9 deletions
diff --git a/src/mapgen_v7.h b/src/mapgen_v7.h
index f5dc4ff2b..46dd79b66 100644
--- a/src/mapgen_v7.h
+++ b/src/mapgen_v7.h
@@ -84,20 +84,16 @@ public:
Noise *noise_humidity;
content_t c_stone;
- content_t c_dirt;
- content_t c_dirt_with_grass;
- content_t c_sand;
content_t c_water_source;
content_t c_lava_source;
+ content_t c_desert_stone;
content_t c_ice;
- content_t c_gravel;
+
content_t c_cobble;
- content_t c_desert_sand;
- content_t c_desert_stone;
- content_t c_mossycobble;
- content_t c_sandbrick;
content_t c_stair_cobble;
- content_t c_stair_sandstone;
+ content_t c_mossycobble;
+ content_t c_sandstonebrick;
+ content_t c_stair_sandstonebrick;
MapgenV7(int mapgenid, MapgenParams *params, EmergeManager *emerge);
~MapgenV7();