Changeset - r1337:f65714b3e438
[Not reviewed]
master
0 1 0
celestar - 20 years ago 2005-02-07 12:47:29
celestar@openttd.org
(svn r1841) -Fix: [ 1117538 ] non-stop orders are no longer accidently skipped
1 file changed with 1 insertions and 1 deletions:
0 comments (0 inline, 0 general)
train_cmd.c
Show inline comments
 
@@ -1891,7 +1891,7 @@ static bool ProcessTrainOrder(Vehicle *v
 

	
 
	// check if we've reached a non-stop station while TTDPatch nonstop is enabled..
 
	if (_patches.new_nonstop && v->current_order.flags & OF_NON_STOP &&
 
			v->current_order.station == _map2[v->tile]) {
 
		v->current_order.station == _map2[v->tile] && IsTileType(v->tile, MP_STATION) ) {
 
		v->cur_order_index++;
 
	}
 

	
0 comments (0 inline, 0 general)