missing comma in mapgen fix for dirt

pull/8/head
Герхард PICCORO Lenz McKAY 2021-11-24 13:02:58 -04:00
parent d5b84dfe46
commit 0f9d6c3982
1 changed files with 1 additions and 1 deletions

View File

@ -128,7 +128,7 @@ MapgenV6::MapgenV6(int mapgenid, MapgenV6Params *params, EmergeManager *emerge)
if (c_stair_desert_stone == CONTENT_IGNORE)
c_stair_desert_stone = c_desert_stone;
if (c_dirt_with_grass == CONTENT_IGNORE)
c_dirt_with_grass = c_dirt
c_dirt_with_grass = c_dirt;
if (c_lava_source == CONTENT_IGNORE)
c_lava_source = c_water_source;
}