(svn r25320) -Fix [FS#5577]: link graph start time was not accounted for when cheating dates

This commit is contained in:
rubidium
2013-06-04 15:06:22 +00:00
parent 254c3834d0
commit 0fbc7140c5
4 changed files with 28 additions and 1 deletions

View File

@@ -18,6 +18,7 @@
#include "date_func.h"
#include "vehicle_base.h"
#include "rail_gui.h"
#include "linkgraph/linkgraph.h"
#include "saveload/saveload.h"
Year _cur_year; ///< Current year, starting at 0
@@ -211,6 +212,9 @@ static void OnNewYear()
_date -= days_this_year;
FOR_ALL_VEHICLES(v) v->date_of_last_service -= days_this_year;
LinkGraph *lg;
FOR_ALL_LINK_GRAPHS(lg) lg->ShiftDates(-days_this_year);
#ifdef ENABLE_NETWORK
/* Because the _date wraps here, and text-messages expire by game-days, we have to clean out
* all of them if the date is set back, else those messages will hang for ever */