From c9ceb74e5ca2028cc0282ad0352f77432199e275 Mon Sep 17 00:00:00 2001
From: scrawl <scrawl@baseoftrash.de>
Date: Mon, 27 Feb 2012 12:21:00 +0100
Subject: [PATCH] transition fix

---
 apps/openmw/mwworld/weather.cpp | 7 +++++--
 1 file changed, 5 insertions(+), 2 deletions(-)

diff --git a/apps/openmw/mwworld/weather.cpp b/apps/openmw/mwworld/weather.cpp
index 3d97acb04..7cb9f3dfc 100644
--- a/apps/openmw/mwworld/weather.cpp
+++ b/apps/openmw/mwworld/weather.cpp
@@ -328,9 +328,12 @@ void WeatherManager::setWeather(const String& weather, bool instant)
     }
     else
     {
-        // if there's another transition that hasn't finished yet, just apply it immediately
         if (mNextWeather != "")
-            mCurrentWeather = mNextWeather;
+        {
+            // transition more than 50% finished?
+            if (mRemainingTransitionTime/(mWeatherSettings[mCurrentWeather].mTransitionDelta*24.f*60) <= 0.5)
+                mCurrentWeather = mNextWeather;
+        }
             
         mNextWeather = weather;
         mRemainingTransitionTime = mWeatherSettings[mCurrentWeather].mTransitionDelta*24.f*60;