From fed03048ad699fb8bc4e216c8ad2ae4d57e5a17f Mon Sep 17 00:00:00 2001 From: 12xx12 <44411062+12xx12@users.noreply.github.com> Date: Sun, 9 Aug 2020 22:49:40 +0200 Subject: Adding Emeralds to generation (#4817) * Adding Emeralds to generation * fixed crash * fixed documentation and changed function name to match others * forgot to change the name in the doc * removed debug output - sorry build servers Co-authored-by: 12xx12 <12xx12100@gmail.com> --- src/BiomeDef.h | 3 +++ 1 file changed, 3 insertions(+) (limited to 'src/BiomeDef.h') diff --git a/src/BiomeDef.h b/src/BiomeDef.h index 9c7afd478..050c641d3 100644 --- a/src/BiomeDef.h +++ b/src/BiomeDef.h @@ -151,6 +151,9 @@ extern bool IsBiomeVeryCold(EMCSBiome a_Biome); Doesn't report Very Cold biomes, use IsBiomeVeryCold() for those. */ extern bool IsBiomeCold(EMCSBiome a_Biome); +/** Returns true if the biome is a mountain type */ +extern bool IsBiomeMountain(EMCSBiome a_Biome); + /** Returns the height when a biome when a biome starts snowing. */ extern int GetSnowStartHeight(EMCSBiome a_Biome); -- cgit v1.2.3