1
0
Fork 0

(svn r16967) -Fix [FS#0356]: assert when UFO tried to destroy rail

release/1.0
rubidium 2009-07-27 11:59:36 +00:00
parent 2ec12a3f58
commit b76cad419e
1 changed files with 1 additions and 1 deletions

View File

@ -62,7 +62,7 @@ static void DisasterClearSquare(TileIndex tile)
switch (GetTileType(tile)) {
case MP_RAILWAY:
if (Company::IsHumanID(GetTileOwner(tile)) && !IsRailWaypoint(tile)) {
if (Company::IsHumanID(GetTileOwner(tile))) {
CompanyID old_company = _current_company;
_current_company = OWNER_WATER;
DoCommand(tile, 0, 0, DC_EXEC, CMD_LANDSCAPE_CLEAR);