(svn r20215) -Fix [FS#3971]: Remove all road pieces rather than aborting at the first ownership error (Krille).

This commit is contained in:
alberth 2010-07-25 10:04:13 +00:00
parent 177358f552
commit 43b4d23b07
1 changed files with 1 additions and 3 deletions

View File

@ -860,10 +860,8 @@ CommandCost CmdRemoveLongRoad(TileIndex start_tile, DoCommandFlag flags, uint32
cost.AddCost(ret);
had_success = true;
} else {
last_error = ret;
/* Ownership errors are more important. */
if (last_error.GetErrorMessage() == STR_ERROR_OWNED_BY) break;
if (last_error.GetErrorMessage() != STR_ERROR_OWNED_BY) last_error = ret;
}
}