summaryrefslogtreecommitdiff
path: root/src/mapgen.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mapgen.h')
-rw-r--r--src/mapgen.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/mapgen.h b/src/mapgen.h
index 0342fd46e..f673007b5 100644
--- a/src/mapgen.h
+++ b/src/mapgen.h
@@ -36,6 +36,8 @@ with this program; if not, write to the Free Software Foundation, Inc.,
#define MG_LIGHT 0x10
#define MG_DECORATIONS 0x20
+typedef u8 biome_t; // copy from mg_biome.h to avoid an unnecessary include
+
class Settings;
class MMVManip;
class INodeDefManager;
@@ -161,7 +163,7 @@ public:
u32 blockseed;
s16 *heightmap;
- u8 *biomemap;
+ biome_t *biomemap;
v3s16 csize;
BiomeGen *biomegen;