Fixed warning unchecked enum value at Chunk.cpp line 841
This commit is contained in:
parent
a99bece3fa
commit
c78f67dcc0
@ -1,4 +1,3 @@
|
|||||||
|
|
||||||
#include "Globals.h" // NOTE: MSVC stupidness requires this to be the same across all modules
|
#include "Globals.h" // NOTE: MSVC stupidness requires this to be the same across all modules
|
||||||
|
|
||||||
#ifndef _WIN32
|
#ifndef _WIN32
|
||||||
@ -908,8 +907,11 @@ void cChunk::ApplyWeatherToTop()
|
|||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
} // case (snowy biomes)
|
} // case (snowy biomes)
|
||||||
|
|
||||||
// TODO: Rainy biomes should check for farmland and cauldrons
|
// TODO: Rainy biomes should check for farmland and cauldrons
|
||||||
|
default:
|
||||||
|
{
|
||||||
|
break;
|
||||||
|
}
|
||||||
} // switch (biome)
|
} // switch (biome)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user