# HG changeset patch # User orudge # Date 2005-05-30 10:18:18 # Node ID 9cf427764e8e6f4f3a906d66a0c4f7d4baca7897 # Parent 2a425c622bbee6f1d39ca2233c6e497578685bb4 (svn r2380) - Fix: Build year for mail compartment of planes was not set correctly, affected station ratings (Asterix_) diff --git a/aircraft_cmd.c b/aircraft_cmd.c --- a/aircraft_cmd.c +++ b/aircraft_cmd.c @@ -295,7 +295,7 @@ int32 CmdBuildAircraft(int x, int y, uin v->service_interval = _patches.servint_aircraft; v->date_of_last_service = _date; - v->build_year = _cur_year; + v->build_year = u->build_year = _cur_year; v->cur_image = u->cur_image = 0xEA0;