(svn r3361) - Clone Vehicle: Disallow cloning of crashed rail vehicles after starting removal process.

This commit is contained in:
peter1138 2006-01-04 16:53:00 +00:00
parent f55153ce3c
commit 911a8aa08d
1 changed files with 1 additions and 1 deletions

View File

@ -1508,7 +1508,7 @@ int32 CmdCloneVehicle(int x, int y, uint32 flags, uint32 p1, uint32 p2)
if (!CheckOwnership(v->owner)) return CMD_ERROR;
if (v->type == VEH_Train && !IsFrontEngine(v)) return CMD_ERROR;
if (v->type == VEH_Train && (!IsFrontEngine(v) || v->u.rail.crash_anim_pos >= 4400)) return CMD_ERROR;
// check that we can allocate enough vehicles
if (!(flags & DC_EXEC)) {