(svn r11707) -Fix: do not allow refitting flooded (destroyed) vehicles

This commit is contained in:
smatz
2007-12-27 14:10:47 +00:00
parent 722613f7f3
commit c10d3da133
5 changed files with 6 additions and 4 deletions

View File

@@ -1720,6 +1720,7 @@ CommandCost CmdRefitRailVehicle(TileIndex tile, uint32 flags, uint32 p1, uint32
if (v->type != VEH_TRAIN || !CheckOwnership(v->owner)) return CMD_ERROR;
if (CheckTrainStoppedInDepot(v) < 0) return_cmd_error(STR_TRAIN_MUST_BE_STOPPED);
if (v->vehstatus & VS_CRASHED) return_cmd_error(STR_CAN_T_REFIT_DESTROYED_VEHICLE);
/* Check cargo */
if (new_cid >= NUM_CARGO) return CMD_ERROR;