diff options
author | celestar <celestar@openttd.org> | 2006-04-18 08:50:17 +0000 |
---|---|---|
committer | celestar <celestar@openttd.org> | 2006-04-18 08:50:17 +0000 |
commit | e75e4e8f74614e360414c7ec43899b8c461c911f (patch) | |
tree | 30ec24c2a1d82c9e46e78489ed951320b67741d9 /economy.c | |
parent | 62f7907d3a5210160a1a3bf134e95213382c9c90 (diff) | |
download | openttd-e75e4e8f74614e360414c7ec43899b8c461c911f.tar.xz |
(svn r4466) -Fix: (FS#71) Game no longer crashes when the last vehicle serving a station has been deleted.
-Negative side effect: upon loading old games, stations whose last vehicle was a station have (temporarily) lower ratings.
-Positive side effect: station.h no longer includes vehicle.h (breaks the station.h->vehicle.h->rail.h chain)
Diffstat (limited to 'economy.c')
-rw-r--r-- | economy.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1435,7 +1435,7 @@ int LoadUnloadVehicle(Vehicle *v) v->cargo_source = ge->enroute_from; v->cargo_days = ge->enroute_time; result |= 2; - st->last_vehicle = v->index; + st->last_vehicle_type = v->type; } } |