The patch notes for the August update state:
This can be fixed with the following code:
However, while the event duration and notification turns were increased by 2 (7 to 9, & 6 to 8), the turn # for the regrowth & additional production were left at 6. So essentially what happens is the burnt state remains the same as before the update up to turn 6 (instead of 8) when the forest/jungle regrows, but the notification doesn't arrive until 2 turns later.Forest/Jungle Fires now remain in the burnt state longer.
This can be fixed with the following code:
Code:
UPDATE RandomEvent_Yields SET Turn = 8 WHERE RandomEventType = 'RANDOM_EVENT_JUNGLE_FIRE' AND YieldType = 'YIELD_PRODUCTION';
UPDATE RandomEvent_Yields SET Turn = 8 WHERE RandomEventType = 'RANDOM_EVENT_FOREST_FIRE' AND YieldType = 'YIELD_PRODUCTION';