diff options
author | rubidium <rubidium@openttd.org> | 2007-05-26 23:18:42 +0000 |
---|---|---|
committer | rubidium <rubidium@openttd.org> | 2007-05-26 23:18:42 +0000 |
commit | fe9bf75436abb5db6567857982375911e876c8a9 (patch) | |
tree | 170ca27dde12587beba547b98e7e705a50a53a56 | |
parent | 9e8f500f7fce1e011b2be4ddb33e8340591b54ba (diff) | |
download | openttd-fe9bf75436abb5db6567857982375911e876c8a9.tar.xz |
(svn r9949) -Fix: (road) depots got deowned on bankrupts.
-rw-r--r-- | src/road_cmd.cpp | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/src/road_cmd.cpp b/src/road_cmd.cpp index 2f51656bb..1d1eace2c 100644 --- a/src/road_cmd.cpp +++ b/src/road_cmd.cpp @@ -1284,10 +1284,12 @@ static uint32 VehicleEnter_Road(Vehicle *v, TileIndex tile, int x, int y) static void ChangeTileOwner_Road(TileIndex tile, PlayerID old_player, PlayerID new_player) { if (GetRoadTileType(tile) == ROAD_TILE_DEPOT) { - if (new_player == PLAYER_SPECTATOR) { - DoCommand(tile, 0, 0, DC_EXEC, CMD_LANDSCAPE_CLEAR); - } else { - SetTileOwner(tile, new_player); + if (GetTileOwner(tile) == old_player) { + if (new_player == PLAYER_SPECTATOR) { + DoCommand(tile, 0, 0, DC_EXEC, CMD_LANDSCAPE_CLEAR); + } else { + SetTileOwner(tile, new_player); + } } return; } |