(svn r12093) -Fix: do not set station owner for buoys when merging company

This commit is contained in:
smatz 2008-02-09 12:20:50 +00:00
parent cebb86777a
commit 221494bd3f
1 changed files with 1 additions and 1 deletions

View File

@ -2887,7 +2887,7 @@ static void ChangeTileOwner_Station(TileIndex tile, PlayerID old_player, PlayerI
Station* st = GetStationByTile(tile);
SetTileOwner(tile, new_player);
st->owner = new_player;
if (!IsBuoy(tile)) st->owner = new_player; // do not set st->owner for buoys
RebuildStationLists();
InvalidateWindowClasses(WC_STATION_LIST);
} else {