diff options
Diffstat (limited to 'src/mapgen/mapgen.h')
-rw-r--r-- | src/mapgen/mapgen.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mapgen/mapgen.h b/src/mapgen/mapgen.h index e58d4d892..f97eabf82 100644 --- a/src/mapgen/mapgen.h +++ b/src/mapgen/mapgen.h @@ -41,7 +41,7 @@ typedef u8 biome_t; // copy from mg_biome.h to avoid an unnecessary include class Settings; class MMVManip; -class INodeDefManager; +class NodeDefManager; extern FlagDesc flagdesc_mapgen[]; extern FlagDesc flagdesc_gennotify[]; @@ -170,7 +170,7 @@ public: int id = -1; MMVManip *vm = nullptr; - INodeDefManager *ndef = nullptr; + const NodeDefManager *ndef = nullptr; u32 blockseed; s16 *heightmap = nullptr; |