diff options
author | truelight <truelight@openttd.org> | 2006-01-05 11:18:58 +0000 |
---|---|---|
committer | truelight <truelight@openttd.org> | 2006-01-05 11:18:58 +0000 |
commit | 1d88dfd4602de2fce8610ff965aca892c7bfd3ee (patch) | |
tree | 65d4df3b0ebbd231d06f09875633bf7f1aed62c1 | |
parent | 4b464093e7e69272728afc730874d1d10a9a5d35 (diff) | |
download | openttd-1d88dfd4602de2fce8610ff965aca892c7bfd3ee.tar.xz |
(svn r3363) -Fix: 'fixed' the transfer problem. This doesn't really fix it, but gives a bit more fair amount of money. Can only be fixed correctly with CargoPackets as suggested in branch.
-rw-r--r-- | economy.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1450,7 +1450,7 @@ int LoadUnloadVehicle(Vehicle *v) st->time_since_load = 0; // And record the source of the cargo, and the days in travel. - v->cargo_source = st->index; //changed this for feeder systems + v->cargo_source = ge->enroute_from; v->cargo_days = ge->enroute_time; result |= 2; st->last_vehicle = v->index; |