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
|
||||
|
||||
#ifndef _WIN32
|
||||
@ -908,8 +907,11 @@ void cChunk::ApplyWeatherToTop()
|
||||
}
|
||||
break;
|
||||
} // case (snowy biomes)
|
||||
|
||||
// TODO: Rainy biomes should check for farmland and cauldrons
|
||||
default:
|
||||
{
|
||||
break;
|
||||
}
|
||||
} // switch (biome)
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user