diff options
author | rubidium <rubidium@openttd.org> | 2010-05-12 19:21:00 +0000 |
---|---|---|
committer | rubidium <rubidium@openttd.org> | 2010-05-12 19:21:00 +0000 |
commit | 93ff7d78e17ca68684065924942e40a355b58670 (patch) | |
tree | 2b363403e4e6b54d778ab55d78c2f15c27df8141 /src/rail_cmd.cpp | |
parent | 863ff6522b671ce69a1265fe246149b25e83a847 (diff) | |
download | openttd-93ff7d78e17ca68684065924942e40a355b58670.tar.xz |
(svn r19799) -Change: give depots an unique name in the same manner buoys and waypoints are named
Diffstat (limited to 'src/rail_cmd.cpp')
-rw-r--r-- | src/rail_cmd.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rail_cmd.cpp b/src/rail_cmd.cpp index 81bd3a5bc..abba2058f 100644 --- a/src/rail_cmd.cpp +++ b/src/rail_cmd.cpp @@ -867,10 +867,10 @@ CommandCost CmdBuildTrainDepot(TileIndex tile, DoCommandFlag flags, uint32 p1, u if (flags & DC_EXEC) { Depot *d = new Depot(tile); - d->town_index = ClosestTownFromTile(tile, UINT_MAX)->index; MakeRailDepot(tile, _current_company, d->index, dir, railtype); MarkTileDirtyByTile(tile); + MakeDefaultName(d); AddSideToSignalBuffer(tile, INVALID_DIAGDIR, _current_company); YapfNotifyTrackLayoutChange(tile, DiagDirToDiagTrack(dir)); |