Skip to content

Commit

Permalink
Fixed conversion plans
Browse files Browse the repository at this point in the history
  • Loading branch information
Jebzou committed Dec 3, 2023
1 parent 9531ac4 commit e00bec7
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -350,7 +350,7 @@ private List<IEquipmentPlanItemViewModel> GetUpgradeChildrenForRequiredEquipment
// Look for assigned plans
List<IEquipmentPlanItemViewModel> plans =
EquipmentUpgradePlanManager.PlannedUpgrades
.Where(plan => plan.Parent == Plan && plan.EquipmentMasterDataId == id)
.Where(plan => plan.Parent == Plan && plan.ShouldBeConvertedInto == id)
.Cast<IEquipmentPlanItemViewModel>()
.ToList();

Expand Down

0 comments on commit e00bec7

Please sign in to comment.