script 400-499 start

This commit is contained in:
Nikolay Korolev 2019-10-12 22:00:31 +03:00
parent a34870645a
commit c78fff8d54
6 changed files with 421 additions and 10 deletions

View file

@ -33,3 +33,15 @@ void CWeather::ReleaseWeather()
{
ForcedWeatherType = -1;
}
void CWeather::ForceWeather(int16 weather)
{
ForcedWeatherType = weather;
}
void CWeather::ForceWeatherNow(int16 weather)
{
OldWeatherType = weather;
NewWeatherType = weather;
ForcedWeatherType = weather;
}