1
0
mirror of https://github.com/luanti-org/luanti.git synced 2025-10-18 02:45:21 +02:00

Fix MgStoneType and BiomeType enum names

This commit is contained in:
kwolekr
2016-05-02 02:45:59 -04:00
parent 87bc39dca7
commit 9b5c492be5
9 changed files with 34 additions and 34 deletions

View File

@@ -33,13 +33,13 @@ class BiomeManager;
#define BIOME_NONE ((u8)0)
enum BiomeType
{
BIOME_NORMAL,
BIOME_LIQUID,
BIOME_NETHER,
BIOME_AETHER,
BIOME_FLAT
// TODO(hmmmm): Decide whether this is obsolete or will be used in the future
enum BiomeType {
BIOMETYPE_NORMAL,
BIOMETYPE_LIQUID,
BIOMETYPE_NETHER,
BIOMETYPE_AETHER,
BIOMETYPE_FLAT,
};
class Biome : public ObjDef, public NodeResolver {