diff options
author | rubidium <rubidium@openttd.org> | 2007-05-28 20:46:59 +0000 |
---|---|---|
committer | rubidium <rubidium@openttd.org> | 2007-05-28 20:46:59 +0000 |
commit | 6a48a58104f4fbbbcad8c1f0dba4d6d2fa228471 (patch) | |
tree | 3fa593a7c330097e50d616cb7ce72a59e1ded4a2 | |
parent | 4f9a0f750a3dac48130f973bb9e34c7c21fddde4 (diff) | |
download | openttd-6a48a58104f4fbbbcad8c1f0dba4d6d2fa228471.tar.xz |
(svn r9965) -Fix: the ownership of drive through road stops on town owned roads wasn't properly reset when the road stop was removed.
-rw-r--r-- | src/station_cmd.cpp | 19 |
1 files changed, 5 insertions, 14 deletions
diff --git a/src/station_cmd.cpp b/src/station_cmd.cpp index 1d9b986c4..b863481b8 100644 --- a/src/station_cmd.cpp +++ b/src/station_cmd.cpp @@ -1438,20 +1438,11 @@ int32 CmdRemoveRoadStop(TileIndex tile, uint32 flags, uint32 p1, uint32 p2) /* If the stop was a drive-through stop replace the road */ if ((flags & DC_EXEC) && !CmdFailed(ret) && is_drive_through) { - uint index = 0; - Owner cur_owner = _current_player; - - if (is_towns_road) { - index = ClosestTownFromTile(tile, (uint)-1)->index; - _current_player = OWNER_TOWN; - } - if (HASBIT(rts, ROADTYPE_ROAD)) { - DoCommand(tile, ROADTYPE_ROAD << 4 | road_bits, index, DC_EXEC, CMD_BUILD_ROAD); - } - if (HASBIT(rts, ROADTYPE_TRAM)) { - DoCommand(tile, ROADTYPE_TRAM << 4 | road_bits, index, DC_EXEC, CMD_BUILD_ROAD); - } - _current_player = cur_owner; + /* Rebuild the drive throuhg road stop. As a road stop can only be + * removed by the owner of the roadstop, _current_player is the + * owner of the road stop. */ + MakeRoadNormal(tile, road_bits, rts, is_towns_road ? ClosestTownFromTile(tile, (uint)-1)->index : 0, + is_towns_road ? OWNER_TOWN : _current_player, _current_player, _current_player); } return ret; |