Changeset - r15554:222c13a26310
[Not reviewed]
master
0 1 0
frosch - 14 years ago 2010-07-26 17:37:50
frosch@openttd.org
(svn r20224) -Fix [FS#3976]: Depot did not become unsnowy, when snowline rises.
1 file changed with 1 insertions and 3 deletions:
0 comments (0 inline, 0 general)
src/rail_cmd.cpp
Show inline comments
 
@@ -2407,11 +2407,9 @@ static void TileLoop_Track(TileIndex til
 
			break;
 
	}
 

	
 
	if (!IsPlainRail(tile)) return;
 

	
 
	new_ground = RAIL_GROUND_GRASS;
 

	
 
	if (old_ground != RAIL_GROUND_BARREN) { // wait until bottom is green
 
	if (IsPlainRail(tile) && old_ground != RAIL_GROUND_BARREN) { // wait until bottom is green
 
		/* determine direction of fence */
 
		TrackBits rail = GetTrackBits(tile);
 

	
0 comments (0 inline, 0 general)