Changeset - r6698:d615ffc91a9b
[Not reviewed]
master
0 1 0
rubidium - 17 years ago 2007-05-26 09:13:59
rubidium@openttd.org
(svn r9930) -Fix (r9838): obiwan could cause vehicles to way a long time (2.5 years) at stations.
1 file changed with 1 insertions and 1 deletions:
0 comments (0 inline, 0 general)
src/economy.cpp
Show inline comments
 
@@ -1582,7 +1582,7 @@ static void LoadUnloadVehicle(Vehicle *v
 

	
 
			/* Skip loading this vehicle if another train/vehicle is already handling
 
			 * the same cargo type at this station */
 
			if (_patches.improved_load && cargo_left[v->cargo_type] < 0) {
 
			if (_patches.improved_load && cargo_left[v->cargo_type] <= 0) {
 
				SETBIT(cargo_not_full, v->cargo_type);
 
				continue;
 
			}
0 comments (0 inline, 0 general)