Skip to content

Commit

Permalink
Fixing bug #4163. This allows the left thruster to be a missing part …
Browse files Browse the repository at this point in the history
…correctly.

It does not clear excess missing Thrusters, but they won't return.
  • Loading branch information
TenkawaBC committed Nov 26, 2024
1 parent 3979544 commit 79c9dcd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion MekHQ/src/mekhq/campaign/parts/Thrusters.java
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@ public void remove(boolean salvage) {

@Override
public MissingPart getMissingPart() {
return new MissingThrusters(getUnitTonnage(), campaign);
return new MissingThrusters(getUnitTonnage(), campaign, isLeftThrusters);
}

@Override
Expand Down

0 comments on commit 79c9dcd

Please sign in to comment.