1
0

Updated unnecessary function :/

This commit is contained in:
Tiger Wang 2014-06-11 13:10:10 +01:00
parent c5010ebcc1
commit 711113cd2b

View File

@ -710,9 +710,13 @@ public:
/** Returns true if the current weather is sun */
bool IsWeatherSunny(void) const { return (m_Weather == wSunny); }
/** Returns true if it is sunny at the specified location. This takes into accunt biomes. */
/** Returns true if it is sunny at the specified location. This takes into accunt biomes.
This function is identical to IsWeatherSunny except for two extra parameters that aren't used, but bearbin insists :/
*/
bool IsWeatherSunnyAt(int a_BlockX, int a_BlockZ) const
{
UNUSED(a_BlockX);
UNUSED(a_BlockZ);
return (m_Weather == wSunny)
}