mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-02-01 02:45:32 +00:00
Remove redundant fast forward check
This commit is contained in:
parent
4fd00a75d5
commit
d9a7986b3a
1 changed files with 1 additions and 1 deletions
|
@ -675,7 +675,7 @@ void WeatherManager::advanceTime(double hours, bool incremental)
|
||||||
// In Morrowind, when the player sleeps/waits, serves jail time, travels, or trains, all weather transitions are
|
// In Morrowind, when the player sleeps/waits, serves jail time, travels, or trains, all weather transitions are
|
||||||
// immediately applied, regardless of whatever transition time might have been remaining.
|
// immediately applied, regardless of whatever transition time might have been remaining.
|
||||||
mTimePassed += hours;
|
mTimePassed += hours;
|
||||||
mFastForward = (!mFastForward && !incremental) ? true : mFastForward;
|
mFastForward = !incremental ? true : mFastForward;
|
||||||
}
|
}
|
||||||
|
|
||||||
unsigned int WeatherManager::getWeatherID() const
|
unsigned int WeatherManager::getWeatherID() const
|
||||||
|
|
Loading…
Reference in a new issue