Core/Weather: Move static function to WeatherMgr.

This commit is contained in:
Spp
2011-09-28 11:55:01 +02:00
parent d0ce7d2367
commit 71228f90bb
5 changed files with 11 additions and 10 deletions

View File

@@ -197,14 +197,6 @@ void Weather::SendWeatherUpdateToPlayer(Player* player)
player->GetSession()->SendPacket(&data);
}
void Weather::SendFineWeatherUpdateToPlayer(Player* player)
{
WorldPacket data(SMSG_WEATHER, (4+4+4));
data << (uint32)WEATHER_STATE_FINE << (float)0.0f << uint8(0);
player->GetSession()->SendPacket(&data);
}
/// Send the new weather to all players in the zone
bool Weather::UpdateWeather()
{