(svn r9982) -Fix (r9874): autoreplacing vehicles from a group could sometimes add the new vehicle twice to the engine (EngineID, not total count) count in the group

This commit is contained in:
bjarni 2007-05-29 20:52:35 +00:00
parent eb5b4ecd4a
commit 7d3d73e104
1 changed files with 0 additions and 4 deletions

View File

@ -234,10 +234,6 @@ static int32 ReplaceVehicle(Vehicle **w, byte flags, int32 total_cost)
if (temp_v != NULL) {
DoCommand(0, (new_v->index << 16) | temp_v->index, 1, DC_EXEC, CMD_MOVE_RAIL_VEHICLE);
}
} else if (!IsDefaultGroupID(old_v->group_id) && IsValidGroupID(old_v->group_id)) {
/* Increase the new num engines of the group for the ships, aircraft, and road vehicles
The old new num engine is decrease in the destroyvehicle function */
GetGroup(old_v->group_id)->num_engines[new_v->engine_type]++;
}
}
/* We are done setting up the new vehicle. Now we move the cargo from the old one to the new one */