Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Mapgen: Add 4D fractal mapgen
  • Loading branch information
paramat committed Oct 6, 2015
1 parent ce1a70c commit e62eac4
Show file tree
Hide file tree
Showing 4 changed files with 733 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/CMakeLists.txt
Expand Up @@ -352,6 +352,7 @@ set(common_SRCS
map.cpp
mapblock.cpp
mapgen.cpp
mapgen_fractal.cpp
mapgen_singlenode.cpp
mapgen_v5.cpp
mapgen_v6.cpp
Expand Down
2 changes: 2 additions & 0 deletions src/emerge.cpp
Expand Up @@ -34,6 +34,7 @@ with this program; if not, write to the Free Software Foundation, Inc.,
#include "log.h"
#include "map.h"
#include "mapblock.h"
#include "mapgen_fractal.h"
#include "mapgen_v5.h"
#include "mapgen_v6.h"
#include "mapgen_v7.h"
Expand Down Expand Up @@ -104,6 +105,7 @@ MapgenDesc g_reg_mapgens[] = {
{"v5", new MapgenFactoryV5, true},
{"v6", new MapgenFactoryV6, true},
{"v7", new MapgenFactoryV7, true},
{"fractal", new MapgenFactoryFractal, false},
{"singlenode", new MapgenFactorySinglenode, false},
};

Expand Down

1 comment on commit e62eac4

@duane-r
Copy link
Contributor

@duane-r duane-r commented on e62eac4 Oct 6, 2015

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Is this causing issues with the android compile on jenkins? I'm getting an error, referring to MapgenFractal, when github tries to check a commit on a pull request I made.
https://jenkins.unix-experience.fr/job/minetest-Android-OfficialRepository/1463/console

Please sign in to comment.