summaryrefslogtreecommitdiffstats
path: root/src/BiomeDef.h
diff options
context:
space:
mode:
authorTycho <work.tycho+git@gmail.com>2014-02-03 22:01:12 +0100
committerTycho <work.tycho+git@gmail.com>2014-02-03 22:01:12 +0100
commitd9fb83300cf831ea31a74d509f9be9f2ed4f1189 (patch)
tree3168d88fa61eaf37d4511b1d45e8fcdc87f70784 /src/BiomeDef.h
parentRemoved unused lookups (diff)
downloadcuberite-d9fb83300cf831ea31a74d509f9be9f2ed4f1189.tar
cuberite-d9fb83300cf831ea31a74d509f9be9f2ed4f1189.tar.gz
cuberite-d9fb83300cf831ea31a74d509f9be9f2ed4f1189.tar.bz2
cuberite-d9fb83300cf831ea31a74d509f9be9f2ed4f1189.tar.lz
cuberite-d9fb83300cf831ea31a74d509f9be9f2ed4f1189.tar.xz
cuberite-d9fb83300cf831ea31a74d509f9be9f2ed4f1189.tar.zst
cuberite-d9fb83300cf831ea31a74d509f9be9f2ed4f1189.zip
Diffstat (limited to 'src/BiomeDef.h')
-rw-r--r--src/BiomeDef.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/BiomeDef.h b/src/BiomeDef.h
index f015dd836..474d4df76 100644
--- a/src/BiomeDef.h
+++ b/src/BiomeDef.h
@@ -77,7 +77,7 @@ enum EMCSBiome
biVariant = 128,
// Release 1.7 biome variants:
- biFirstVarientBiome = 129,
+ biFirstVariantBiome = 129,
biSunflowerPlains = 129,
biDesertM = 130,
biExtremeHillsM = 131,
@@ -100,8 +100,8 @@ enum EMCSBiome
biMesaPlateauFM = 166,
biMesaPlateauM = 167,
// Automatically capture the maximum consecutive biome value into biVarientMaxBiome:
- biNumVarientBiomes, // True number of biomes, since they are zero-based
- biMaxVarientBiome = biNumVarientBiomes - 1, // The maximum biome value
+ biNumVariantBiomes, // True number of biomes, since they are zero-based
+ biMaxVariantBiome = biNumVariantBiomes - 1, // The maximum biome value
} ;
/// Translates a biome string to biome enum. Takes either a number or a biome alias (built-in). Returns biInvalidBiome on failure.