Changeset - r14684:18ea0ce1f33d
[Not reviewed]
master
0 1 0
terkhen - 14 years ago 2010-02-27 16:27:15
terkhen@openttd.org
(svn r19276) -Fix [FS#3649](r19229): Newly built road stops were not always repainted.
1 file changed with 2 insertions and 0 deletions:
0 comments (0 inline, 0 general)
src/station_cmd.cpp
Show inline comments
 
@@ -1757,12 +1757,14 @@ CommandCost CmdBuildRoadStop(TileIndex t
 
			if (is_drive_through) {
 
				MakeDriveThroughRoadStop(cur_tile, st->owner, road_owner, tram_owner, st->index, rs_type, rts, DiagDirToAxis(ddir));
 
				road_stop->MakeDriveThrough();
 
			} else {
 
				MakeRoadStop(cur_tile, st->owner, st->index, rs_type, rts, ddir);
 
			}
 

	
 
			MarkTileDirtyByTile(cur_tile);
 
		}
 
	}
 

	
 
	if (st != NULL) {
 
		st->UpdateVirtCoord();
 
		UpdateStationAcceptance(st, false);
0 comments (0 inline, 0 general)