(svn r9562) -Fix: When cloning, pay for the refit costs as well.

This commit is contained in:
maedhros
2007-04-04 14:21:46 +00:00
parent 3b8dd00bae
commit abf88b687c
2 changed files with 19 additions and 9 deletions

View File

@@ -455,13 +455,17 @@ bool DoCommandP(TileIndex tile, uint32 p1, uint32 p2, CommandCallback *callback,
* restrictions which may cause the test run to fail (the previous
* road fragments still stay there and the town won't let you
* disconnect the road system), but the exec will succeed and this
* fact will trigger an assertion failure. --pasky */
* fact will trigger an assertion failure. --pasky
* CMD_CLONE_VEHICLE: You can only refit vehicles once they have been
* bought, so you can't estimate the cost of cloning if the vehicle to be
* cloned has been refitted. */
notest =
(cmd & 0xFF) == CMD_CLEAR_AREA ||
(cmd & 0xFF) == CMD_CONVERT_RAIL ||
(cmd & 0xFF) == CMD_LEVEL_LAND ||
(cmd & 0xFF) == CMD_REMOVE_ROAD ||
(cmd & 0xFF) == CMD_REMOVE_LONG_ROAD;
(cmd & 0xFF) == CMD_REMOVE_LONG_ROAD ||
(cmd & 0xFF) == CMD_CLONE_VEHICLE;
_docommand_recursive = 1;