Skip to content

Commit

Permalink
GetSnowStartHeight returns an int
Browse files Browse the repository at this point in the history
  • Loading branch information
NiLSPACE committed Feb 28, 2015
1 parent 81e8577 commit 224df08
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/BiomeDef.cpp
Expand Up @@ -223,7 +223,7 @@ bool IsBiomeCold(EMCSBiome a_Biome)



unsigned GetSnowStartHeight(EMCSBiome a_Biome)
int GetSnowStartHeight(EMCSBiome a_Biome)
{
switch (a_Biome)
{
Expand Down
2 changes: 1 addition & 1 deletion src/BiomeDef.h
Expand Up @@ -130,6 +130,6 @@ Doesn't report Very Cold biomes, use IsBiomeVeryCold() for those. */
extern bool IsBiomeCold(EMCSBiome a_Biome);

/** Returns the height when a biome when a biome starts snowing.*/
extern unsigned GetSnowStartHeight(EMCSBiome a_Biome);
extern int GetSnowStartHeight(EMCSBiome a_Biome);

// tolua_end

0 comments on commit 224df08

Please sign in to comment.